﻿#mcts12 
{
    width:980px;
    height:330px;
    margin: 0 auto;

    background: url(loading.gif) no-repeat 50% 50%;
   
    /* Do not alter the below settings */
    white-space:nowrap;
    position:relative;
    font-size:0px;
}
#mcts12>* {display:none;}
  
/*-------- div.item is each thumbnail's wrapper created by the javascript ------*/
#mcts12 div.item 
{
    padding:0;
    margin-right:0; /* this specifies the distance between each thumbnail */
    border:none;
    text-align:left;
    position:relative;
}

/*-------- style of user defined class ---------*/
#mcts12 div.each 
{
    color:#696F5B;
    white-space:normal;
    padding:0px;
    width:980px;
    height:330px;
    font:normal 12px/14px Verdana;
    background-color:White;
    border-radius:6px;
}

#mcts12 .each .content 
{
    float:left;
    padding-left:40px;
    padding-right:20px;
    width:980px;
    height:330px;
    overflow:auto;
}
#mcts12 .each img 
{
    border:none;
    float:left;
}



        
/*---------built-in navigation bullets--------*/

/* Note: the navBullets won't be available when the "scrollByEachThumb" option was set to false in the Javascript.*/
#mcts12 .navBullets
{
    /*display:none;*/ /*set it display:none when you don't need it*/
	display:block;
	cursor:pointer;
	/*Specify its position that is relative to the div#mcts12 */
	position:absolute;
	bottom:0px;
	right:5px;
	height:20px;
	z-index:5;
	float:right;
}
/* Below defines the style of each bullet*/
#mcts12 .navBullets a 
{
    display:inline-block;
    width:13px; height:13px;
    background:transparent url(bullet.png) no-repeat 0 0;
    float:left;overflow:hidden;vertical-align:middle;cursor:pointer;
    margin-right:4px;/*margin-right determines the distance between each bullets*/
}
#mcts12 .navBullets a:hover {background-position:0 -13px;}
#mcts12 .navBullets .active {background-position:0 -26px;}
#mcts12 .navBullets a.active:hover {background-position:0 -26px;}

/*---------built-in navigation buttons-------*/
#mcts12 .navPrev, #mcts12 .navNext
{
    width:16px; height:32px; position:absolute;  
    background:url(navbuttons.png); 
    display:inline-block; z-index:5; cursor:pointer;
}
#mcts12 .navPrev {background-position:0 -32px;top:149px;left:-31px; }
#mcts12 .navPrev:hover {background-position:0 -64px;}
#mcts12 .navPrevDisabled, #mcts12 .navPrevDisabled:hover {background-position:0 0;cursor:default;}

#mcts12 .navNext {background-position:-16px -32px;top:149px;right:-31px;} 
#mcts12 .navNext:hover {background-position:-16px -64px;} 
#mcts12 .navNextDisabled, #mcts12 .navNextDisabled:hover {background-position:-16px 0; cursor:default;} 



#mcts12 .navPrev, .navNext 
{
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -o-user-select: none;
   user-select: none;
}

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

