/*
    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: 326px;
	height: 183px;
	position: relative;
	margin: 0 auto;
	background: url(/images/bg_slider.jpg) center center repeat;
}
.anythingSlider .wrapper {
	width: 326px;
	overflow: auto;
	height: 183px;
	margin: 0px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.anythingSlider .wrapper ul {
	width: 99999px;
	list-style: none;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	/*background: #eee;*/
	margin: 0;
}
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	height: 183px;
	width: 326px;
	margin: 0;
	z-index: 0;
}
/*============================= ARROW CONTROL */
.anythingSlider .arrow {
	display: block;
	height: 40px;
	width: 34px;
	text-indent: -9999px;
	position: absolute;
	top: 170px;
	cursor: pointer;
	display: block;
}
.anythingSlider .forward {
	background: url(/slider/images/btn_next.png) center top no-repeat;
	right: -14px;
}
.anythingSlider .back {
	background: url(/slider/images/btn_prev.png) center top no-repeat;
	left: -14px;
}
.anythingSlider .forward:hover {
	background-position: center bottom;
}
.anythingSlider .back:hover {
	background-position: center bottom;
}
/*============================= CONTROL BTN */
#thumbNav {
	position: absolute;
	top: 190px;
	right: 20px;
	text-align: center;
}
#thumbNav a {
	color: black;
	font: 11px/18px Georgia, Serif;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 10px 0 0;
	text-indent: -50px;
	background:  #acacac;
	text-align: center;
	overflow: hidden;
}
#thumbNav a:hover {
	background: #e86ca2;
}
#thumbNav a.cur {
	background: #353574;
}
/*============================= CONTROL PLAY/STOP */
#start-stop {
	padding: 3px 0px;
	width: 13px;
	text-align: center;
	position: absolute;
	right: 30px;
	top: 335px;
	display: none;
}
#start-stop.playing {
	background-color: red;
	display: none;
}
#start-stop:hover {
	background: #171717;
	display: 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;
}
