

#sliderFrame, #sliderFrame div {
    box-sizing: content-box;
}

#sliderFrame {
    position:relative;
    width:620px;
    margin: 8px auto 0px auto; /*center-aligned*/
    border: 2px solid #fafafa;
    -moz-box-shadow: 8px 8px 12px #aaa; 
    -webkit-box-shadow: 8px 8px 12px #aaa; 
    box-shadow: 2px 2px 5px #FAFAFA;
}

#slider, #slider div.sliderInner {
    width:620px;  /* Must be the same size as the slider images */
    height:340px; /* Must be the same size as the slider images */
}

#slider {
	  background:#fff url(loading.gif) no-repeat 50% 50%;
  	position:relative;
  	margin:0 auto; /*center-aligned*/
    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:320px;/* Its position is relative to the #slider */
	text-align:center;
	background:none;
	position:relative;
	z-index:5;
}

/* each bullet */
#slider div.navBulletsWrapper div 
{
    width:11px; height:11px;
    font-size:0;color:White;/*hide the index number in the bullet element*/
    background:transparent url(bullet.png) no-repeat 0 0;
    display:inline-block; *display:inline; zoom:1;
    overflow:hidden;cursor:pointer;
    margin:0 6px;/* set distance between each bullet*/
}

#slider div.navBulletsWrapper div.active {background-position:0 -11px;}
