/* http://www.menucool.com */

/*slider frame*/
#sliderFrame 
{
    width:750px;
    margin:80px auto; /*this makes the image slider center-aligned. Remove this line if you want to align the whole slider to the left side*/
    padding:20px;
    background:#191919;
    border:1px solid #666;
    border-radius:5px;
} 

#slider {
    width:700px;height:325px;/* Make it the same size as your images */
	background:black url(loading.gif) no-repeat 50% 50%;
	position:relative;
	margin:0 auto;/*make the image slider center-aligned */
}
#slider img, #slider>b, #slider a>b{
	position:absolute;
	border:none;
	display:none;
}
#slider>a {display:none;}



/* ------ built-in navigation bullets wrapper that is relative to the #slider ------*/
div.navBulletsWrapper  {
	display:none;
}


/*thumbnails*/
#thumbs 
{
    margin-top:50px;
    text-align:center;
    font-size:0;
}
#thumbs .thumb 
{
    display:inline-block;
    *display:inline;zoom:1;/*IE6, IE7 hack*/
    margin:0 2px;/*this determins the distance between each thumbnail*/
    border:1px solid #333;
    padding:4px;
    background:black;
}

#thumbs .thumb img{
border:1px solid #555;
cursor:pointer;
width:70px;
height:44px;
opacity:0.5;
filter:alpha(opacity:50);
}

#thumbs .thumb-on img{
border:1px solid #999;
opacity:1;
filter:alpha(opacity:100);}

/* --------- Others ------- */
#slider 
{
	transform: translate3d(0,0,0);
    -ms-transform:translate3d(0,0,0);
    -moz-transform:translate3d(0,0,0);
    -o-transform:translate3d(0,0,0);
}

.loading 
{
    width:100%; height:100%;
    background:transparent url(loading.gif) no-repeat 50% 50%;
    filter: alpha(opacity=60);
    opacity:0.6;
    position:absolute;
    left:0;
    top:0; 
    z-index:9;
}
