@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: 550px;
	margin: 20px auto 0 auto;
	height: 500px; /* 8.2.09 increased size from 410px to 500px to allow for longer navigation bar */
	background-image: url(../gallery/logo.gif);
	background-repeat: no-repeat;
	background-position: 70px 10px;
}
/* Remove list bullets and indentation; add size and position */
#galleryContainer ul {
	padding: 0;
	list-style-type: none;
	list-style-image: none;
	margin: 5px;
	float: right;
	width: 145px;
	height: 410px;
}
#galleryContainer li {
	float:left;
}
/* Preload images, remove images and text from sight */
#galleryContainer a.gallery span {
	position: absolute;
	width: 1px;
	height: 1px;
	top: 5px;
	left: 5px;
	overflow: hidden;
	background: #FFF;
}
/* Set common styles for links */
#galleryContainer a.gallery, #galleryContainer a.gallery:visited {
	display: block;
	color: #000;
	text-decoration: none;
	border: 1px solid #066;
	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: 379px;/* wider than picture to display border on right side */
	height: 380px;
	top: 10px;
	left: 10px;
	color: #000;
	background: #FFF;
}
/* Style images so text will appear to one side if displaying portrait images*/	
#galleryContainer a.gallery:hover img {
	float:left;
	margin-right:5px;
}
/*.leftMargin {
	margin-left: 10px;
}
*/
