/*
    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/
*/


.anythingSlider { 
	width: 650px; 
	height: 219px; 
	position: relative; 
	margin: 0 auto;
}
.anythingSlider .wrapper { 
	width: 580px; 
	overflow: auto; 
	height: 200px; 
	margin: 0 40px; 
	position: absolute;
	background:url(../images/post_bg_white.gif) no-repeat;
	top: 0; left: 0; 
}
.anythingSlider .wrapper ul { 
	width: 9999px; 
	list-style: none; 
	position: absolute; 
	top: 0; left: 0; 
	
	margin: 0; 
}
.anythingSlider ul li { 
	display: block; 
	float: left; 
	padding: 0; 
	height: 272px; 
	width: 650px; 
	margin: 0; 
}
.anythingSlider .arrow { 
	display: block; 
	height: 38px; 
	width: 32px; 
	background: url(../images/arrows.gif) no-repeat 0 0; 
	text-indent: -9999px; 
	position: absolute; 
	cursor: pointer;
	top:60px;
}
.anythingSlider .forward { 
	right: 618px;
	background-position: 0 -38px;
	float:left;
	top:98px;
}
.anythingSlider .back{ 
	background-position: 0 -0px; 
	left: 0px; 
}

.anythingSlider .forward:hover	{ 
	background-position: -31px -38px;
}
.anythingSlider .forward:active	{ 
	background-position: -32px -38px;
	width:21px;
}
.anythingSlider .back:hover {
	background-position: -31px -0px;
}

#thumbNav { 
	position:relative; 
	top: 200px; 
	text-align: center; 
}
#thumbNav a { 
	color: black; 
	font: 11px/18px; 
	display: inline-block; 
	padding: 2px 8px; 
	height: 18px; 
	margin: 0 5px 0 0; 
	background:url(../images/num_bg.png) no-repeat; 
	text-align: center; 

}
#thumbNav a:hover{
	background:url(../images/num_bg_on.png) no-repeat;
	color:#FFF;
}
#thumbNav a.cur {
	background:url(../images/num_bg_cur.png) no-repeat;
	color:#FFF;
}

#start-stop{
	background: green; 
	background-image:url(../images/start_stop.png); 
	background-repeat: repeat-x; 
	color: white; 
	padding: 2px 5px; 
	width: 44px;
	height:16px;
	text-align: center; 
	position: absolute; 
	right: 45px; 
	top: 200px; 
	color:#1b4581;
	
}
#start-stop.playing{
	background-color: #FFF;
	color:#FFF;
}
#start-stop:hover{
	background-image:url(../images/start_stop_over.png);
	color:#000;
}

/*
  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;
}