ul.enlarge2017{
list-style-type:none; /*remove the bullet point*/
margin-left:0;
}
ul.enlarge2017 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:1px 35px 0 15px;
}
ul.enlarge2017 img{
background-color:#b8860b;
padding: 4px;
-webkit-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
-moz-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
box-shadow: 0 0 6px rgba(132, 132, 132, .75);
-webkit-border-radius: 4px; 
-moz-border-radius: 4px; 
border-radius: 4px;

}
ul.enlarge2017 span{
position:absolute;
left: -9999px;
background-color:#b8860b;
padding: 30px;
font-family: 'Droid Sans', sans-serif;
font-size:.9em;
font-weight: bold;
text-align: center; 
color: #ffff00; 
-webkit-box-shadow: 0 0 20px rgba(0,0,0, .75));
-moz-box-shadow: 0 0 20px rgba(0,0,0, .75);
box-shadow: 0 0 20px rgba(0,0,0, .75);
-webkit-border-radius: 8px; 
-moz-border-radius: 8px; 
border-radius:8px;
}
ul.enlarge2017 li:hover{
z-index: 50;
cursor:pointer;
}
ul.enlarge2017 span img{
padding:2px;
background:#ccc;
}
ul.enlarge2017 span img{
padding:2px;
background:#ccc;
}
ul.enlarge2017 li:hover span{ 
top: -200px; /*the distance from the bottom of the thumbnail to the top of the popup image*/
left: 50px; /*distance from the left of the thumbnail to the left of the popup image*/
}
ul.enlarge2017 li:hover:nth-child(2) span{
top: -200px;
left: -150px; 
}
ul.enlarge2017 li:hover:nth-child(3) span{
top: -150px;
left: -250px; 
}

ul.enlarge2017 li:hover:nth-child(4) span{
top: -300px;
left: -200px;
}

ul.enlarge2017 li:hover:nth-child(5) span{
top: -400px;
left: -80px;
}


/**IE Hacks - see http://css3pie.com/ for more info on how to use CS3Pie and to download the latest version**/
ul.enlarge2017 img, ul.enlarge2017 span{
behavior: url(pie/PIE.htc); 
}