/**
 * jQuery gallerific lightBox plugin
 * This jQuery plugin was inspired and based on the jQuery Gallerific plugin by Trent Foley, and the jQuery Lightbox plugin by Leandro Vieira Pinho, 
 * which in turn was inspired by the original Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name gallerificLight.css
 * @author Matt Gifford aka ColdFuMonkeh (http://www.mattgifford.co.uk/)
 * @developed in conjunction with UGC Creative Ltd (http://www.ugccreative.com/)
 * @original author of jquery lightbox plugin Leandro Vieira Pinho - http://leandrovieira.com
 * @original author of jquery gallerific plugin Trent Foley - http://www.twospy.com
 * @version 0.2
 * @date October 12 2008
 * @category jQuery plugin
 * @license CC Attribution-Noncommercial-ShareAlike (http://creativecommons.org/licenses/by-nc-sa/3.0/)
 * @example Visit http://www.mattgifford.co.uk/ for more informations about this jQuery plugin
*/


/* gallerfic styles */
div.content {
    display:block;
    float: left;
    width: 400px;
}
div.controls {
    position:absolute;
}
div.ss-controls {
    clear:both;
    position:relative;
    top:475px;
    text-align:center;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
    -moz-opacity: 0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
}
div.ss-controls:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity:1;
    -khtml-opacity:1;
    opacity:1;
}
div.ss-controls span {
    color: #666666;
    cursor: pointer;
}
div.nav-controls {
    float: left;
    position:relative;
    top:215px;
    width:400px;
}

div.nav-controls .prev, div.nav-controls .next{
    width:31px;
    height:31px;
    display:block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
    -moz-opacity: 0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
}

div.nav-controls .prev:hover, div.nav-controls .next:hover{
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

div.nav-controls .prev{
    float:left;
    display:none;
}

div.nav-controls .next{
    float:right;
    display:none;
}

div.slideshow {

}

div.slideshow-container {
    position: relative;
    top:0;
    left:30px;
    clear: both;
    width:390px;
    height:300px;
    border:0px solid #666666;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    -khtml-border-radius:6px;
    border-radius:6px;
    box-shadow:2px 2px 2px #666666;
}

div.slideshow span.image-wrapper {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
div.slideshow a.advance-link {

}
div.slideshow img {
    vertical-align: middle;
    cursor:pointer;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    -khtml-border-radius:6px;
    border-radius:6px;
}
div.embox {
    display:none;
    /*
    clear: both;
    border: 1px solid #ccc;
    background-color: #eee;
    padding: 12px;
    */
}
div.navigation {
    float:left;
    width:360px;
    margin:20px 0 0 20px;
}
ul.thumbs {
    clear: both;
    margin: 0;
    padding: 0;
    width:420px;
    overflow:hidden;
}
ul.thumbs li {
    float: left;
	width:90px;
	height:90px;
    padding: 0;
    margin: 0 0 10px 10px;
    list-style: none;
}
ul.thumbs li a {
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}
ul.thumbs li.selected a, ul.thumbs li a:hover{
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity:1;
    -khtml-opacity:1;
    opacity:1;
}
ul.thumbs a:focus {
    outline: none;
}
ul.thumbs img {
    border: none;
    display: block;
    -webkit-border-radius:6px;
    -moz-border-radius:6px;
    -khtml-border-radius:6px;
    border-radius:6px;
    box-shadow:2px 2px 2px #666666;
}
div.pagination {
    clear: both;
}
div.navigation div.top {
    margin-bottom: 12px;
    height: 11px;
    display:none;
}
div.navigation div.bottom {
    margin-top: 12px;
}
div.pagination a, div.pagination strong {
    display: block;
    float: left;
    width:26px;
    height:23px;
    _height:26px;
    margin:0 2px 0 0;
    padding:3px 0 0 0;
    text-align:center;
    font-size:18px;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -khtml-border-radius:4px;
    border-radius:4px;
}

div.pagination a{
    color:#999999;
}

div.pagination a:hover {
    background-color: #CCCCCC;
    text-decoration: none;
}
div.pagination strong {
    background-color: #999999;
    color:#FFFFFF;
}


/* jQuery specific overlay styles */

#jquery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 500px;
}
#jquery-lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    text-align: center;
    line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
    position: relative;
    background-color: #fff;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
    position: absolute;
    top: 40%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}
#lightbox-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
    width: 49%;
    height: 100%;
    zoom: 1;
    display: block;
}
#lightbox-nav-btnPrev { 
    left: 0; 
    float: left;
}
#lightbox-nav-btnNext { 
    right: 0; 
    float: right;
}
#lightbox-container-image-data-box {
    font: 10px Verdana, Helvetica, sans-serif;
    background-color: #fff;
    margin: 0 auto;
    line-height: 1.4em;
    overflow: auto;
    width: 100%;
    padding: 0 10px 0;
}
#lightbox-container-image-data {
    padding: 0 10px; 
    color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
    width: 70%; 
    float: left; 
    text-align: left; 
}	
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
    display: block; 
    clear: left; 
    padding-bottom: 1.0em;	
}			
#lightbox-secNav-btnClose {
    width: 66px;
    height:22px;
    float: right;
    padding-bottom: 0.7em;
}
