/* 
 ====================================================================
 This copyright notice must be untouched at all times.

 The original version of this stylesheet and the associated (x)html
 is available at http://www.stunicholls/gallery/left_right_click.html
 Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
 This stylesheet and the associated (x)html may be modified in any 
 way to fit your requirements.
 ====================================================================
*/

#gallery {
    width: 534px; 
    position: relative;
    height: 60px; 
    padding-top: 356px; 
    margin: 0px 57px 90px 57px;
}

#gallery img.left {
    width: 55px; 
    height: 62px; 
    background: #4c4c4c; 
    float: left;
    cursor: pointer;
}

#gallery img.right {
    width: 55px; 
    height: 62px; 
    background: #4c4c4c;  
    float: left;
    cursor: pointer;
}

#gallery ul {
    list-style: none; 
    padding: 0; 
    margin: 0; 
    float: left; 
    background: #4c4c4c; 
    border: 2px solid #4c4c4c;
    border-width: 5px 2px;
}

#gallery ul li {
    display: inline; 
    width: 50px; 
    height: 50px; 
    float: left; 
    margin: 0 4px; 
    border: 1px solid #000000; 
    cursor: pointer;
}

#gallery ul li.hide {
    display: none;
}

/* using background images  
   ...
   #gallery ul li.img01 {
       background: url(path_to_image/image.jpg);
   }
   ...
*/

/* remove visibility:hidden; if you want to use the original images as thumbnails */
#gallery ul li img {
    visibility: hidden; 
    display: block; 
    width: 50px; 
    height: 50px;
}

#gallery ul li span {
    display: none; 
    position: absolute; 
    left: 61px; 
    top: 430px; 
    width: 411px;
    font-family: verdana, arial, sans-serif; 
    color: #4c4c4c; 
    font-size: 11px; 
    line-height: 15px; 
    text-align: justify;
}

#gallery ul li b {
    color: #4c4c4c;
}

#gallery ul li.chosen {
    border-color: #ffffff;
    cursor: default;
}

#gallery ul li.chosen div {
    position: absolute; 
    left: 0;
    top: 0; 
    width: 532px; 
    height: 355px; 
    background: #4c4c4c;
    border: 1px solid #4c4c4c;
    border-width: 1px 1px 0 1px;
}

#gallery ul li.chosen div i {
    width: 530px; 
    height: 355px; 
    display: table-cell; 
    vertical-align: middle; 
    text-align: center;
} 

#gallery ul li.chosen div i img {
    visibility: visible; 
    width: auto; 
    height: auto; 
    border: 1px solid #ffffff;
    margin: 0 auto;
}

#gallery ul li.chosen span {
    display: block;
}
