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

.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 5px 5px 0;
}

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

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color:#FFF;
padding: 5px;
visibility: hidden;
}

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

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 235px;
left: 210px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

#iav, #iav a{
	font:bold 96% arial;
	text-decoration:none;
	color:#000;
	}

#iav, #iav ul {
	padding: 0;
	margin: 0;
	list-style: none;

}

#iav li {
	float:left;
	width: 165px;
	background-color:#FFCD05;
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #000;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #999;
	padding: 2px 2px 2px;
}
	



	
