/*
    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: 970px;
	height: 500px; 
	position: relative;
	margin: 15px auto 30px; 
}
.anythingSlider .wrapper{ 
	width: 909px; 
	overflow: auto; 
	height: 500px; 
	margin: 0 31px; 
	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; 
	/*background: #eee; */
	/*border-top: 3px solid #e0a213; 
	border-bottom: 3px solid #e0a213; */
	margin: 0 -45px; 
}
.anythingSlider ul li{ 
	display: block; 
	float: left; 
	padding: 0; 
	height: 500px; 
	width: 909px; 
	margin: 0; 
}
.anythingSlider .arrow{ 
	display: block; 
	height: 84px; 
	width: 78px; 
	/*background: url(arrows.png) no-repeat 0 0; */
	text-indent: -9999px; 
	position: absolute; 
	top: 195px; 
	cursor: pointer; 
}
.anythingSlider .forward{ 
	right: -52px; 
	background-image:url(../../images/boton_siguiente.png);
	background-repeat:no-repeat;
}
.anythingSlider .back{ 
	left: -52px; 
	background-image:url(../../images/boton_anterior.png);
	background-repeat:no-repeat;
}
.anythingSlider .forward:hover{ 
	/*background-position: 0 -200px; */
}
.anythingSlider .back:hover{ 
	/*background-position: -67px -200px; */
}

#thumbNav{ 
	/*position: relative; 
	top: 475px; 
	text-align: center; */
	display:none;
}
#thumbNav a{ 
	color: black; 
	font: 11px/18px Georgia, Serif; 
	display: inline-block; 
	height: 45px;
	width:39px;
	margin: 0 5px 0 0; 
	/*background: #c58b04 url(../images/cellshade.png) repeat-x; */
	background-image:url(../../images/boton_numerico.png);
	background-repeat:no-repeat;
	text-align: center; 
	background-position:-39px;

}
#thumbNav a:hover{ 
	/*background-image: none; */
}
#thumbNav a.cur{ 
	background-position:0px;
}

#start-stop{ 
	/*background-image:url(../../images/boton_stopplay.png);
	background-repeat:no-repeat;
	background-position:0px -55px;
	color: white; 
	padding: 2px 5px; 
	width: 59px; 
	height:50px;
	text-align: center; 
	position: absolute; 
	right: 45px; 
	top: 475px; */
	display:none;
}
#start-stop.playing{ 
	background-position:0px 0px;
}
#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; 
}