@charset "UTF-8";
/* CSS Document */

/* needed for IE to make :active state work first time */
a, a:visited {color:#000;} 


.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 0 2px 2px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 1px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 123px;
left: 0px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
* html .thumbnail:hover span { /*IE only rule. Center Thumbinal hover*/
	left: -64px; /*position where enlarged image should offset horizontally */
}


/* styling for TOP gallery */
#container_top {position:relative; width:425px; height:480px; background:#d1c8c3; border:1px solid #a49188; margin:1em auto;}
#container_top img {border:0;}
#container_top .thumbs {
	position:absolute;
	left:0;
	top:-2px;
	height: auto;
}
#container_top a.gallery:hover span {display:block; position:absolute; width:402px; height:50px; top:90px; left:5px; padding:1px; font-style:italic; color:#fff;  z-index:100;}
#container_top a.gallery:hover span:first-line {font-style:normal; font-weight:bold; font-size:1.1em; color:#000;}
#container_top a.gallery:active, #container_top a.gallery:focus {border:1px solid #000;}
#container_top a.gallery:active em, #container_top a.gallery:focus em {display:block; position:absolute; width:402px; height:325px; top:130px; left:5px; color:#000; padding:2px; border:1px solid #3d330f; z-index:50;}
#container_top h1 {clear:both; margin:0; padding-top:200px; text-align:center; font-family: georgia, "times new roman", serif; font-size:3em; font-weight:normal; color:#fff;}
#container_top h1 em {font-size:0.6em; color:#000;}

