/*
    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 {
	height: 228px;
	margin: 0 auto 15px;
	position: relative;
	width: 634px;
}
.anythingSlider .wrapper {
	height: 250px;
	left: 0;
	margin: 0;
	overflow: auto;
	position: absolute;
	top: 0;
	width: 634px;
}
.anythingSlider .wrapper ul {
	left: 0;
	list-style: none;
	margin: 0;
	position: absolute;
	top: 0;
	width: 9999px;
}
.anythingSlider ul li {
	display: block;
	float: left;
	height: 200px;
	margin: 0;
	padding: 0;
	width: 634px;
}
.anythingSlider .arrow {
	background: url(../images/arrows.gif) no-repeat 0 0;
	cursor: pointer;
	display: block;
	height: 50px;
	position: absolute;
	text-indent: -9999px;
	top: 200px;
	width: 50px;
	z-index: 100;
}
.anythingSlider .forward {
	background-position: 5px -8px;
	right: 0;
}
.anythingSlider .back {
	background-position: -54px -8px;
	left: 0;
}
.anythingSlider .forward:hover {
	background-position: 5px -63px;
}
.anythingSlider .back:hover {
	background-position: -54px -63px;
}
#thumbNav {
	position: absolute;
	bottom: 10px;
  right: 5px;
}
#thumbNav a {
	color: #666;
	display: inline-block;
	font-size: 0.75em;
	height: 18px;
	margin: 0 5px 0 0;
	padding: 0 6px;
	text-align: center;
	text-decoration: none;
	background-color: #ccc;
	opacity: .4;
	filter: alpha(opacity=40);
}
#thumbNav a:hover {
	background-color: #999;
	color: white;
}
#thumbNav a.cur {
	background: #fff;
	font-weight: bold;
  opacity: 1;
  filter: alpha(opacity=100);
}
#start-stop {
	background: #ccc url(../images/icon_play_stop.gif) 37px -24px no-repeat;
	color: white;
	moz-border-radius-bottomleft: 5px;
	moz-border-radius-bottomright: 5px;
	padding: 2px 20px 2px 5px;
	position: absolute;
	right: 10px;
	text-align: center;
	top: 10px;
	webkit-border-bottom-left-radius: 5px;
	webkit-border-bottom-right-radius: 5px;
	width: 40px;
	text-decoration: none;
	display: none;
}
#start-stop.playing {
	background-position: 37px -6px;
}
#start-stop:hover {
	background-color: #999;
}
.anythingSlider .wrapper ul ul {
	background: none;
	border: 0;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}
.anythingSlider .wrapper ul ul li {
	background: none;
	float: none;
	height: auto;
	width: auto;
}