@charset "ISO-8859-1";
/* Instructions/information at http://www.webreference.com/programming/css_gallery/index.html*/
/* center the #galleryContainer div in Internet Explorer */
body {
   text-align: center; 
   }
/* Set containing box for the gallery. */
#galleryContainer {
	position: relative;
	width: 660px;
	margin: 20px auto 0;
	height: 350px;
    }
/* Remove list bullets and indentation; add size and position */
#galleryContainer ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	margin: 5px;
	float: right;
	width: 210px;
    }
#galleryContainer li {
    float:left;
    }
/* 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: 2px solid #663366;
	margin: 1px 2px 1px 2px;
	text-align: left;
	cursor: default;
    }
/* Set thumbnail border color for hover */
#galleryContainer a.gallery:hover {
	border: 2px solid #6633CC;
    }
/* Set the :hover span to display full-size images*/
#galleryContainer a.gallery:hover span {
    position: absolute; 
    width: 372px; 
    height: 2790px; 
    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 {
    border:1px solid #fff; 
    float:left; 
    margin-right:5px;
    }
	.leftMargin {
	margin-left: 10px;
}

