/*
    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: 897px; height: 320px; position: relative; margin: 0 auto 15px; }
.anythingSlider .wrapper                { width: 897px; overflow: auto; height: 320px; margin: 0; position: absolute; top: 0; left: -1px; }
.anythingSlider .wrapper ul             { width: 9999px; list-style: none; position: absolute; top: 0px; left: 0; margin: 0; }
.anythingSlider ul li                   { display: block; float: left; padding: 0; height: 320px; width: 897px; margin: 0; }
.anythingSlider .arrow                  {
	display: block;
	height: 37px;
	width: 125px;
	background: url(../images/botones.png) no-repeat 0 0;
	text-indent: -9999px;
	position: absolute;
	top: 330px;
	cursor: pointer;
	z-index: 1;
}
.anythingSlider .forward                { background-position: right top; right: 0px; }
.anythingSlider .back                   { background-position: left top; right: 130px; }
.anythingSlider .forward:hover          { background-position: right -37px; }
.anythingSlider .back:hover             { background-position: left -37px; }

#thumbNav                               {
	position: relative;
	top: 340px;
	text-align: left;
}
#thumbNav a                             {
	color: white;
	font: 11px/18px;
Georgia, Serif; 			display: inline-block;
	padding: 2px 8px;
	height: 10px;
	margin: 0 5px 0 0;
	text-align: center;
	-moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; -webkit-border-top-right-radius: 10px; -webkit-border-top-left-radius: 10px;

-moz-border-radius-bottomleft: 10px; -moz-border-radius-bottomright: 10px; -webkit-border-bottom-right-radius: 10px; -webkit-border-bottom-left-radius: 10px;
	background-color: #4A9793;
}
html>body #thumbNav a {text-indent: -9999px;}
#thumbNav a:hover                       { background: #2D5E5B; }
#thumbNav a.cur                         { background: #979F54; }

#start-stop                             {
	background: green;
	color: white;
	padding: 2px 5px;
	width: 30px;
	height: 10px;
	text-align: center;
	position: absolute;
	left: 230px;
	top: 330px;
-moz-border-radius-bottomleft: 10px; -moz-border-radius-bottomright: 10px; -webkit-border-bottom-right-radius: 10px; -webkit-border-bottom-left-radius: 10px; -moz-border-radius-topleft: 10px; -moz-border-radius-topright: 10px; -webkit-border-top-right-radius: 10px; -webkit-border-top-left-radius: 10px;	visibility: hidden;
}
html>body #start-stop {left: 130px; top: 330px;}
#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; }
