/*
    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: 750px;
	height: 350px;
	position: relative;
	margin: 0 auto;
}
.anythingSlider .wrapper {
	width: 750px;
	overflow: auto;
	height: 350px;
	margin: 0px;
	position: absolute;
	top: 0;
	left: 0;
}
.anythingSlider .wrapper ul {
	width: 99999px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	background: #eee;
	margin: 0;
}
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	height: 350px;
	width: 750px;
	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;
	display: block;
}
.anythingSlider .forward {
	background-position: 0 0;
	right: -20px;
	display: none;
}
.anythingSlider .back {
	background-position: -67px 0;
	left: -20px;
	display: none
}
.anythingSlider .forward:hover {
	background-position: 0 -200px;
}
.anythingSlider .back:hover {
	background-position: -67px -200px;
}
#thumbNav {
	position: absolute;
	top: 323px;
	right: 50px;
	text-align: center;
}
#thumbNav a {
	color: black;
	font: 11px/18px Georgia, Serif;
	display: inline-block;
	width: 13px;
	height: 13px;
	margin: 0 5px 0 0;
	text-indent: -50px;
	background: url(/images/btn_off.gif) center center no-repeat;
	text-align: center;
	overflow: hidden;
}
#thumbNav a:hover {
	background: url(/images/btn_on.gif) center center no-repeat;
}
#thumbNav a.cur {
	background: url(/images/btn_on.gif) center center no-repeat;
}
#start-stop {
	padding: 3px 0px;
	width: 13px;
	text-align: center;
	position: absolute;
	right: 35px;
	top: 323px;
}
#start-stop.playing {
	/*background-color: red;*/
}
#start-stop:hover {
	background: #171717;
}
/*
  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;
}
/*=================SKIN*/
.panels {
	display: block;
	width: 750px;
	height: 350px;
	position: relative;
}
.panels div{
	display: block;
	position: absolute;
	bottom: 25px;
	left: 40px;
	width: 500px;
	font: 10px Verdana, Geneva, sans-serif;
	text-shadow: 0px 2px 3px #000;
}
.panels a{
	color: #999;
	line-height: 1.5em;
}
.panels a:hover{
	text-decoration: none;
}
.panels div span{
	display: block;
	color: #FFF;
	font: italic normal 25px "Myriad Pro", "Trebuchet MS";
	margin-bottom: 10px;
}
.panels div a:hover span{
	color: #ab9137;
}
.p1 {
	background: url(/images/panels/ft_1.jpg) left top no-repeat;
}
.p2 {
	background: url(/images/panels/ft_2.jpg) left top no-repeat;
}
.p3 {
	background: url(/images/panels/ft_3.jpg) left top no-repeat;
}
.p4 {
	background: url(/images/panels/ft_4.jpg) left top no-repeat;
}

