/*
    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: 1000px;
	height: 338px;
	position: relative;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.anythingSlider .wrapper {
	width: 1000px;
	overflow: auto;
	height: 338px;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.anythingSlider .wrapper ul {
	width: 99999px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	background: #eee;
	border-top: 0px solid #e0a213;
	border-bottom: 0px solid #e0a213;
	margin: 0;
}
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	height: 338px;
	width: 1000px;
	margin: 0;
}
.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: 0px;
}/* kyori*/
.anythingSlider .back {
	background-position: -67px 0;
	left: 0px;
}
.anythingSlider .forward:hover {
	background-position: 0 -200px;
}
.anythingSlider .back:hover {
	background-position: -67px -200px;
}
#thumbNav {
	top: 301px;
	position: absolute;
	left: 60px;

}
#thumbNav a {
	color: black;
	font: 11px/18px Arial, Serif;
	display: inline-block;
	padding: 2px 9px;
	height: 20px;
	margin: 0 5px 0 0;
	/*background: #666666;*/
	background-image: url(../images/btn_bg_gray.png);
		background-repeat: no-repeat;
	text-align: center;
	/*-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;*/
}
#thumbNav a:hover {
	background-image: url(../images/btn_bg_white.png);
	background-repeat: no-repeat;
}
#thumbNav a.cur {
	/*background: #ffffff;*/
	background-image: url(../images/btn_bg_white.png);
		background-repeat: no-repeat;
}
#start-stop {
	/*background: #999;*/
	background-image: url(../images/btn_play.png);
	background-repeat: no-repeat;
	color: white;
	padding: 2px 5px;
	width: 26px;
	height: 26px;
	text-align: center;
	position: absolute;
	left: 25px;
	top: 300px;
	/*-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;*/
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	font-family: Arial, Helvetica, sans-serif;/*	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;*/
}
#start-stop.playing {
	background-image: url(../images/btn_pause.png);
	background-repeat: no-repeat;
}
/*#start-stop:hover                       {  background-image: url(../images/btn_play.png); background-repeat: no-repeat; }*/

/*
  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;
}

