@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: 750px;
	margin: 20px auto 40px;
	height: 240px;
	background: #f7dcdc url(../gallery/logo.gif) no-repeat 20px 20px;
	padding-top: 10px;
}
/* Remove list bullets and indentation; add size and position */
#galleryContainer ul {
	list-style-type: none;
	list-style-image: none;
	float: right;
	width: 460px;
	height: 240px;
}
#galleryContainer li {
	float:left;
	margin: 0px 0px 10px 5px;
}
/* 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: #f7dcdc;
	color: #f7dcdc; /* 1px dot same color as background to eliminate artifact */
}
/* Set common styles for links */
#galleryContainer a.gallery, #galleryContainer a.gallery:visited {
	display: block;
	color: #000;
	text-decoration: none;
	border: 1px solid #7b2b46;
	margin: 1px 2px 1px 2px;
	text-align: center;
	cursor: default;
}
/* Set thumbnail border color for hover */
#galleryContainer a.gallery:hover {
	border: 1px solid #369;
}
/* Set the :hover span to display full-size images*/
#galleryContainer a.gallery:hover span {
	position: absolute;
	width: 215px;/* wider than picture to display border on right side */
	height: 170px;
	top: 10px;
	left: 10px;
	color: #f7dcdc;
	background: #f7dcdc;
	margin-top: 10px;
	margin-left: 10px;
}
/* Style images so text will appear to one side if displaying portrait images*/	
#galleryContainer a.gallery:hover img {
	float:left;
	margin-right:5px;
}
img {
	padding-top: 10px;
	padding-left: 11px;
}
