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

/* for floating divs */

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image--consider this the off state*/
position: absolute;
background-color:#666666;
padding: 5px;
left:-330px;
border:none;
visibility: hidden;
color: black;
text-decoration: none;
}

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

.thumbnail:hover span img { /*CSS for enlarged image on hover consider this the on state*/
	visibility: visible;
	top: 0px;
	right:0px;
	white-space:nowrap; /*fixes ie line break of captions*/
}

#popupcontainer {
	margin-top: 0;
}
	
	
	
	
		
	
