﻿
    ul.enlarge{
    list-style-type:none; /*remove the bullet point*/
    margin-left:0;
    }
    ul.enlarge li{
    display: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:0px 0px 0px 0px;
    }
    ul.enlarge img{
    background-color:#aa3131;
    padding: 1px;
    -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: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    }
    ul.enlarge span{
    position:absolute;
    left: -9999px;
    background-color:#ffffff;
    padding: 2px;
    font-family: 'Droid Sans', sans-serif;
    font-size:.9em;
    text-align: center;
    color: #353535;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0, .75));
    -moz-box-shadow: 0 0 10px rgba(0,0,0, .75);
    box-shadow: 0 0 10px rgba(0,0,0, .75);
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius:0px;

    }
    ul.enlarge li:hover{
    z-index: 50;
    cursor:pointer;
    }
    ul.enlarge span img{
    padding:1px;
    background:#ccc;

    }
    ul.enlarge li:hover span{
    top: -225px; /*the distance from the bottom of the thumbnail to the top of the popup image*/
    left: 0px; /*distance from the left of the thumbnail to the left of the popup image*/
    }
    ul.enlarge li:hover:nth-child(2) span{
    left: -80px;
    }
    ul.enlarge li:hover:nth-child(3) span{
    left: -160px;
    }
    ul.enlarge li:hover:nth-child(4) span{
    left: -240px;
    }
    /**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{

    }
