/*
    anythingSlider v1.2
    
    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: 670px;
	height: 250px;
	position: relative;

}
.anythingSlider .wrapper                {
	width: 670px;
	overflow: auto;
	height: 250px;
	margin: 0 0px;
	position: absolute;
	top: 0;
	left: 0;

}

                                       /* Width below is max for Opera */
.anythingSlider .wrapper ul             {
	width: 32700px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
}
.anythingSlider ul li                   {
	display: block;
	float: left;
	height: 250px;
	width: 670px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0px;
	margin: 0;
	background-image: url(../images/banner_left_bg02.png);
	background-repeat: no-repeat;
}
.anythingSlider .arrow                  {
	display: block;
	height: 250px;
	width: 67px;
	background: url(../images/arrows.png) no-repeat 0 0;
	text-indent: -9999px;
	position: absolute;
	top: 0px;
	cursor: pointer;
}
.anythingSlider .forward                {
	background-position: 0 0;
	right: -50px;
}
.anythingSlider .back                   {
	background-position: -67px 0;
	left: -50px;
}
.anythingSlider .forward:hover          { background-position: 0 -200px; }
.anythingSlider .back:hover             { background-position: -67px -200px; }

#thumbNav                               {
	position: relative;
	top: -15px;
	text-align: right;
	right: 0px;
}
#thumbNav a                             {
	color: #FFFFFF;
	display: inline-block;
	height: 18px;
	text-align: center;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	background-image: url(../images/circle_blue.gif);
	background-repeat: no-repeat;
	font-size: 1px;
	margin-top: 0;
	margin-right: 1px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 2px;
	padding-right: 8px;
	padding-bottom: 2px;
	padding-left: 8px;
	line-height: 18px;
}
#thumbNav a.cur                         {
	background-image: url(../images/circle_green.gif);
}

#start-stop                             {
	background: green;
	background-image: url(../images/cellshade.png);
	background-repeat: repeat-x;
	color: white;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	position: absolute;
	right: 45px;
	top: 250px;
	visibility: hidden;
}
#start-stop.playing                     { background-color: red; }
#start-stop:hover                       { background-image: 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; background: none; }

