@charset "ISO-8859-1";
/* Instructions/information at http://www.webreference.com/programming/css_gallery/2.html*/
/* center the #galleryContainer div in Internet Explorer */
body {
	text-align: center;
}
/* Set containing box for the gallery. */
#galleryContainer {
	position: relative;
	width: 500px;
	margin: 20px auto 0 auto;
	height: 270px;
	background: url(../photos/sign.jpg) no-repeat 1px 1px;
}
/* This governs the size of the area for the thumbnail photos */
/* Remove list bullets and indentation; add size and position */
#galleryContainer ul {
	padding: 0;
	margin: 0px; /* aligns thumbnails with top of display image */
	list-style-type: none;
	list-style-image: none;
	float: right;
	width: 225px;
	height: 270px;
}
#galleryContainer li {
	float:left;
}
/* Preload images, remove images and text from sight */
#galleryContainer a.gallery span {
	position: absolute;
	height: 1px;
	top: 1px;
	left: 1px;
	overflow: hidden;
	background: #FFF;
}
/* Set common styles for links, affects appearance of thumbnails */
#galleryContainer a.gallery, #galleryContainer a.gallery:visited {
	display: block;
	text-decoration: none;
	border: 1px solid #036;
	margin: 1px 2px 1px 2px;
	text-align: center;
	cursor: default;
}
/* Set thumbnail border color for hover */
#galleryContainer a.gallery:hover {
	border: 1px solid #FC0;
}
/* Set the :hover span to display full-size images*/
#galleryContainer a.gallery:hover span {
	position: absolute;
	width: 272px; /* wider than picture to display border on right side */
	height: 270px;
	color: #000; /* the color and size of full size image caption is assigned here */
	font-size: 0.83em;
}
/* Style images so text will appear to one side if displaying portrait images*/	
#galleryContainer a.gallery:hover img {
	float:left;
	margin-right:5px;
}



/*****************************************************
            GALLERY DIVS ON INDIVIDUAL PAGES
*****************************************************/			  
