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

ul.enlarge{
	list-style-type: none; /*remove the bullet point*/
	margin-left: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #000;
	text-align: right;
	float: right;
 }
ul.enlarge li{
 display:inline-block; /*places the images in a line*/
 position: relative;
 z-index: 0; /*resets the stack order of the list items - later we'll increase this*/
 margin:10px 40px 0 20px;
 }
ul.enlarge img{
 
 padding: 6px;
 
 }
ul.enlarge span{
	position: absolute;
	left: -9999px;
	padding: 10px;
	font-family: 'Droid Sans', sans-serif;
	font-size: 1.5em;
	text-align: center;
	color: #FFFF33; 
 }
ul.enlarge li:hover{
 z-index: 50;
 cursor:pointer;
 }
ul.enlarge span img{
 padding:2px;
 background:#ccc;
 }
ul.enlarge li:hover span{
	top: -25%; /*the distance from the bottom of the thumbnail to the top of the popup image*/
	left: -100%; /*distance from the left of the thumbnail to the left of the popup image*/
 }
ul.enlarge li:hover:nth-child(2) span{
 left: -100px; 
 }
ul.enlarge li:hover:nth-child(3) span{
 left: -200px; 
 }
/**IE Hacks - see http://css3pie.com/ for more info on how to use CS3Pie and to download the latest version**/
 ul.enlarge img, ul.enlarge span{
 behavior: url(pie/PIE.htc); 
 }
