/*
    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 {
	float:left;
	width:653px;
	height:432px;
	position:relative;
	margin:0;
}
.anythingSlider .wrapper{
	width:653px;
	overflow:auto;
	height:432px;
	margin:0;
	position:absolute;
	top:0;
	left:0;
}
.anythingSlider .wrapper ul{
	width:9999px;
	list-style:none;
	position:absolute;
	top:0;
	left:0;
	background:#eee;
	margin:0;
}
.anythingSlider ul li{
	display:block;
	position:relative;
	float:left;
	padding:0;
	height:432px;
	width:653px;
	margin:0;
}
.anythingSlider .arrow{
	display:block;
	height:100px;
	width:34px;
	background:url(../images/arrows2.png) no-repeat 0 0;
	text-indent:-9999px;
	position:absolute;
	bottom:-10px;
	cursor:pointer;
}
.anythingSlider .forward{
	background-position: 0 0;
	right:-14px;
}
.anythingSlider .back{
	background-position:-34px 0;
	left:-14px;
}
.anythingSlider .forward:hover{
	background-position: 0 -100px;
}
.anythingSlider .back:hover{
	background-position:-34px -100px;
}

#thumbNav{
	position:relative;
	display:none;
	top:11px;
	text-align:right;
	float:left;
}
#thumbNav a{
	background:#fff;
	/*font:11px/18px; Georgia, Serif;*/
	display:inline-block;
	width:15px;
	height:15px;
	margin:0 5px 0 0;
	border:1px solid #000;
	text-align:center;
}
#thumbNav a:hover{
	background-image:none;
}
#thumbNav a.cur{
	background:#000;
}
#start-stop{
	position:relative;
	text-align:right;
	padding: 2px 5px;
	text-align: center;
	top: 352px;
	float:right;
	margin-right:10px;
}
#start-stop.playing{
	background:none;
}
#start-stop:hover{
	background-image:none;
}
a span.home_title{
	display:block;
	position:absolute;
	padding:10px;
	z-index:10;
	bottom:0px;
	right:55px;
	width:180px;
	border:none;
	color:#777;
	background:#fff;
	padding-bottom:15px;
}
/*
  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;
}
