#sliderFrame, #sliderFrame2
{
    width:490px;
    margin:0 auto; /*center-aligned*/
    padding:5px;
}
#slider, #slider2 {width:480px;height:480px;}
#slider, #slider2 {
	position:relative;
	margin:0 auto;
    transform: translate3d(0,0,0);
}
/* Caption styles */
#slider div.mc-caption-bg, #slider div.mc-caption-bg2, #slider2 div.mc-caption-bg, #slider2 div.mc-caption-bg2 {
	position:absolute;
	width:400px;
	height:auto;
	padding:10px 0;
	left: 100px; /*if the caption needs to be aligned from right, specify by right instead of left. i.e. right:20px;*/
	bottom: -40px;/*if the caption needs to be aligned from top, specify by top instead of bottom. i.e. top:150px;*/
	z-index:3;
	overflow:hidden;
	font-size:0;
}
#slider div.mc-caption2-bg, #slider2 div.mc-caption2-bg {
    /* NOTE: Its opacity, when background is not transparent, is to be set through the sliderOptions.captionOpacity setting in the js-image-slider.js file.*/
	background:transparent;/* or any other colors such as White, or: background:none; */
}
#slider div.mc-caption2-bg2, #slider2 div.mc-caption2-bg2 {
    background:none;
}
#slider div.mc-caption2, #slider2 div.mc-caption2 {
	font:bold 16px Arial;
	color:#000;
	z-index:4;
	text-align:left;
    background:none;
}
#slider div.mc-caption2 a, #slider2 div.mc-caption2 a { 
	color:#66FFFF;
}
/* ------ built-in navigation bullets wrapper that is relative to the #slider ------*/
#slider div.navBulletsWrapper, #slider2 div.navBulletsWrapper {
	display:none;
}
/* --------- Others ------- */
#slider div.loading, #slider2 div.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;
}
#slider img, #slider>b, #slider a>b, #slider2 img, #slider2>b, #slider2 a>b {
	position:absolute; border:none; display:none;
}
#slider div.sliderInner, #slider2 div.sliderInner{
	overflow:hidden; 
	-webkit-transform: rotate(0.000001deg);/* fixed the Chrome not crop border-radius bug*/
	position:absolute; top:0; left:0;
}
/* -- thumbnails -- */
#thumbs, #thumbs2
{
    margin-top:10px;
    text-align:center;
    font-size:0;
}
#thumbs .thumb, #thumbs2 .thumb 
{
    display:inline-block;
    *display:inline;zoom:1;/*IE6, IE7 hack*/
    margin:0 10px;/*this determins the distance between each thumbnail*/
	width: 60px;
	height: 60px;
	background:black;
}
#thumbs .thumb img, #thumbs2 .thumb img{border:1px solid #555; cursor:pointer; width: 100%; height: 100%; opacity:1; filter:alpha(opacity=50);}
#thumbs .thumb-on img, #thumbs2 .thumb-on img {border:1px solid #999; opacity:0.5; filter:alpha(opacity=100);}
}