/* CSS Document */
/* CSS Document */


/* choose a suitable font and center the #container div in Internet Explorer */
body {
   text-align:center; 
   font-family: "Trebuchet MS", "Times New Roman"; 
   font-size:14px; 
   }
   
/* The containing box for the gallery. */
#container {
    position:relative; 
    width:550px; /* play with width & height until it looks good */
    height:325px; 
    margin:20px auto 0 auto; 
    border:1px solid #aaa; 
    }
	
/* Removing the list bullets and indentation */
#container ul {
    padding:0; 
    margin:0; 
    list-style-type:none; 
    }
	
/* Remove the images and text from sight */
#container a.gallery span {
    position:absolute;
    width:1px; 
    height:1px; 
    top:5px; 
    left:5px; 
    overflow:hidden; 
    background:#fff;
    }


/* Adding the thumbnail images */
#container a.gallery, #container a.gallery:visited {
    display:block; 
    color:#000; 
    text-decoration:none; 
    border:1px solid #000; 
    margin:1px 2px 1px 2px; 
    text-align:left; 
    cursor:default;
    }
	
#container a.slidea {
background:url(lil/DSCF0006.jpg);
    height:75px; 
    width:100px;
    }
#container a.slideb {
background:url(lil/Meyers2_0437.jpg);
    height:75px; 
    width:100px;
    }
#container a.slidec {
    background:url(lil/Meyers_0305.jpg); 
    height:75px; 
    width:100px;
    }
#container a.slided {
    background:url(lil/Meyers_0295.jpg); 
    height:75px; 
    width:100px;
    }
#container a.slidee {
    background:url(lil/DSCFBoarderBarn.jpg); 
    height:75px; 
    width:100px;
    }
#container a.slidef {
    background:url(lil/DSCF0011_2.jpg); 
    height:75px; 
    width:100px;
    }
#container a.slideg {
    background:url(lil/DSCF0034.jpg); 
    height:75px; 
    width:100px;
    }


/* set the size of the unordered list to neatly house the thumbnails */
#container ul {
    width:212px; 
    height:310px;
    }
	
#container li {
    float:left;
    }
	
/* move the thumbnails into the correct position */
#container ul {
    margin:5px; 
    float:right;
    }
	
/* change the thumbnail border color */
#container a.gallery:hover {
    border:1px solid #fff; 
    }
	
/* styling the :hover span */
#container a.gallery:hover span {
    position:absolute; 
    width:300px; /* I used width of large image */
    height:300px; /*height needs to be a little taller then image height to house the description*/
    top:10px; 
    left:20px; 
    color:#000; 
    background:#fff;
    }
	
#container a.gallery:hover img {
    border:1px solid #fff; 
    float:left; 
    margin-right:5px;
    }
/*	
#container a.slideb:hover img, #container a.slidei:hover img {
    float:right;
    }
*/
	
#container {
    background:#fff url(DSCF0011_2.jpg) 20px 10px no-repeat;
    }


