/* http://www.menucool.com */

#sliderFrame, #sliderFrame div {
    box-sizing: content-box;

}

#sliderFrame 
{
    position:relative;
    width:1000px;
    margin: 10px auto; /*center-aligned*/
}

#slider, #slider div.sliderInner {
    width:1000px;height:300px;/* Must be the same size as the slider images */
    border-radius: 5px;
}

#slider {
	position:relative;
    transform: translate3d(0,0,0);
    box-shadow: 0px 1px 5px #999999;
}

/* ------ built-in navigation bullets wrapper ------*/
/* Note: check themes\2\js-image-slider.css to see how to hide nav bullets */
#slider div.navBulletsWrapper  {
	top:328px;/* Its position is relative to the #slider */
	text-align:center;
	background:none;
	font-size:0; 
	position:relative;
	z-index:5;
}

/* each bullet */
#slider div.navBulletsWrapper div 
{
    width:9px; height:9px;
    border:1px solid #AAA;
    background:#EEE;
    color:#AAA;
    font-size:0;
    text-align:center;
    display:inline-block; *display:inline; zoom:1;
    overflow:hidden;cursor:pointer;
    margin:0 9px;/* set distance between each bullet*/
    border-radius:50%;
    box-shadow:inset 0 0 4px #AAA;
}

#slider div.navBulletsWrapper div.active {
    border-color:#3E99C6;
    background:#259FDC;
    color:White;
}

