/*
    anythingSlider v1.0
    
    By Chris Coyier: http://css-tricks.com
    with major improvements by Doug Neiner: http://pixelgraphics.us/
    based on work by Remy Sharp: http://jqueryfordesigners.com/
*/

*  { margin: 0; padding: 0; }

.anythingSlider                         { width: 540px; position: relative; direction:ltr; background:red;}
.anythingSlider .wrapper                { width: 540px; overflow: hidden; height: 195px; position: absolute; top: 0; left: 0; background:blue;}
.anythingSlider .wrapper ul             { width: 9999px; list-style: none; position: absolute; top: 0; left: 0; border-bottom: 3px solid #d8d8d8; margin: 0;  }
.anythingSlider ul li                   { display: block; float: left; padding: 0; height: 195px; width: 540px; margin: 0; background:yellow;}

/* Below is the Class for Back + Forword arrow. If We want to use it we have to "turn on" the option of the JS file as well as here 
--------------------------------------------------------------------------------------------------------------------------------------
.anythingSlider .arrow                  { display: block; height: 200px; width: 67px; background: url(../images/arrows.png) no-repeat 0 0; text-indent: -9999px; position: absolute; top: 65px; cursor: pointer; }
.anythingSlider .forward                { background-position: 0 0; right: -20px; }
.anythingSlider .back                   { background-position: -67px 0; left: -20px; }
.anythingSlider .forward:hover          { background-position: 0 -200px; }
.anythingSlider .back:hover             { background-position: -67px -200px; }
-------------------------------------------------------------------------------------------------------------------------------------------
*/
#thumbNav{ 
	width: 185px; /*Width of pagination DIV. Total width should equal slider's outer width (400+10+10=420)*/
	text-align: right;
	padding: 9px 15px 0px 0px;
	top:155px;
	left:340px;
	z-index:1000;
	position:relative;
	margin-bottom:15px;
	background-color:#2E4D84;
	height:31px;
	text-decoratoin:none;
}





*html #thumbNav{ 
	margin-left:-0px;
	width: 200px; 
	height:40px;
}

#thumbNav a,#thumbNav a:active,#thumbNav a:hover{
	display:block;
	background: top left no-repeat url('../img/SliderNum.jpg');
	width:14px;
	height:16px;
	
	padding:5px 7px 0px 0px;
	
	font-family:arial;
	font-weight:bold;
	font-size:10px;
	color:#ffffff;
	line-height:10px;
	float:right;
	
	margin-right:3px;
	
	vertical-align:middle;
	
	cursor:pointer;
	text-decoratoin:none;
}


*html #thumbNav a{
	width:21px;
	height:21px;
}

*html #thumbNav a:hover{
	width:21px;
	height:21px;
}

*html #thumbNav a:active{
	background: top left no-repeat url('../img/SliderNumOn.jpg');
	width:21px;
	height:21px;
	padding:4px 8px 0px 0px;
}

#thumbNav a.cur{
	background: top left no-repeat url('../img/SliderNumOn.jpg');
	width:13px;
	
	padding:5px 8px 0px 0px;
	text-decoratoin:none;
}
	
*html #thumbNav a.cur{
	background: top left no-repeat url('../img/SliderNumOn.jpg');
	width:21px;
	height:21px;
	padding:4px 8px 0px 0px;
}

#start-stop                             { background: green; background-image: url(../images/cellshade.png); background-repeat: repeat-x; color: white; padding: 2px 5px; width: 40px; text-align: center; position: absolute; right: 0px; top: 329px; -moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; display:none;}
#start-stop.playing                     { background-color: red; }
#start-stop:hover                       { background-image: none; }

/*
  Prevents
*/
.anythingSlider .wrapper ul ul          { position: static; margin: 0; background: none; overflow: visible; width: auto; border: 0; }
.anythingSlider .wrapper ul ul li       { float: none; height: auto; width: auto; background: none; }