﻿#mcts1 
{
    width:99%;
    height:480px;
    margin: 0 auto;
    padding:0px 0px;
    border:1px solid #dedcb4;
    background:#f0efdd url(icons/loading.gif) no-repeat 50% 50%;
    box-shadow: 0px 2px 6px #DDDDDD;
    border-radius:4px;
	
	overflow:hidden;
    
    /* Do not alter the below settings */
    white-space:nowrap;
    position:relative;
    font-size:0px;
}
#mcts1>* {display:none;}
  
/*-------- div.item is each thumbnail's wrapper created by the javascript ------*/
#mcts1 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 ---------*/
#mcts1 div.each 
{
    color:#696F5B;
    white-space:normal;
    padding:5px;
    width:850px;
    height:320px;
    font:normal 12px/14px Verdana;
    background-color: transparent;
    border-radius:6px;
}

#mcts1 .each .content 
{    float:left;
          width:100%;
    height:40px;
    overflow:hidden;
	 border:0px solid #ff0000;
	 position:relative; right:0;  bottom:40px;
	 	 background-color:  #000000;
	color:#ffffff;
	
	opacity:0.7;
  /* Theoretically for IE 8 & 9 (more valid) */
  /* ...but not required as filter works too */
  /* should come BEFORE filter */
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; // IE8

  /* This works in IE 8 & 9 too */
  /* ... but also 5, 6, 7 */
  filter: alpha(opacity=70);   // IE 5-7 
	 
	 }
#mcts1 .each img 
{ 
    border:0px solid #ff0000;
    width:740px; height:370px;
	margin-left:0;
	
}


/*---------navigation buttons-------*/
#mcts1 .navPrev, #mcts1 .navNext, #mcts1 .navPlay, #mcts1 .navPause 
{
    width:45px; height:45px; position:absolute;  
    background:url(icons/navButtons.png); 
    background-repeat: no-repeat;
    display:inline-block; z-index:5; cursor:pointer;
    top:150px;
	
	opacity:0.7;
  /* Theoretically for IE 8 & 9 (more valid) */
  /* ...but not required as filter works too */
  /* should come BEFORE filter */
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; // IE8

  /* This works in IE 8 & 9 too */
  /* ... but also 5, 6, 7 */
  filter: alpha(opacity=70);   // IE 5-7 
  

}
#mcts1 .navPrev {background-position:0 0; left:10px;}
#mcts1 .navPrev:hover {background-position:0 0 ;  right:-10px; border: 0px solid #ccc;}
#mcts1 .navPrevDisabled {background-position:0 -40px;cursor:default;}

#mcts1 .navNext {background-position:-45px 0px;right:10px;} 
#mcts1 .navNext:hover {background-position:-45px -45px;} 
#mcts1 .navNextDisabled {background-position:-45px -90px; cursor:default;} 

#mcts1 .navPause, #mcts1 .navPlay {display:none;}

.navPrev, .navPlay, .navPause, .navNext 
{
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;
   -o-user-select: none;
   user-select: none;
}

        
/*---------built-in navigation bullets--------*/

/* Note: the navBullets won't be available when the "scrollByEachThumb" option was set to false in the Javascript.*/
#mcts1 .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#mcts1 */
	position:absolute;
	bottom:-46px;
	left:360px;
	width:80px;height:20px;
	z-index:5;
}
/* Below defines the style of each bullet*/
#mcts1 .navBullets a 
{
    display:inline-block;
    width:13px; height:13px;
    background:transparent url(icons/bullet.png) no-repeat 0 0;
    float:left;overflow:hidden;vertical-align:middle;cursor:pointer;
    margin-right:6px;/*margin-right determines the distance between each bullets*/
}
#mcts1 .navBullets a:hover {background-position:0 -13px;}
#mcts1 .navBullets .active {background-position:0 -26px;}
#mcts1 .navBullets a.active:hover {background-position:0 -26px;}



/* --------- Others ------- */
#mcts1
{
	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);
}

