/*
    anythingSlider v1.0
    
    By Chris Coyier: https://css-tricks.com
    with major improvements by Doug Neiner: https://pixelgraphics.us/
    based on work by Remy Sharp: https://jqueryfordesigners.com/
*/


.anythingSlider {
	width: 632px;
	height: 236px;
	position: relative;
	margin: 0 auto 15px;
}
.anythingSlider .wrapper {
	width: 630px;
	overflow: hidden;
	height: 236px;
	margin: 0 0px;
	position: absolute;
	top: 0;
	left: 0;
}
.anythingSlider .wrapper ul {
	width: 9999px;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	background: #eee;
	margin-top: 6px;
}
.anythingSlider ul li {
	display: block;
	float: left;
	padding: 0;
	height: 220px;
	width: 655px;
	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;
}
.anythingSlider .forward {
	background-position: 0 0;
	right: -20px;
}
.anythingSlider .back {
	background-position: -67px 0;
	left: -20px;
}
.anythingSlider .forward:hover {
	background-position: 0 -200px;
}
.anythingSlider .back:hover {
	background-position: -67px -200px;
}
#thumbNav {
	display:block;
	position:relative;
	top:200px;
	float:left;
	left:-50px;
}
.novedades {
	display:block;
	float:left;
	left:197px;
	position:relative;
	top:199px;
	z-index:19;
}
.novedades a {
	width:76px;
	height:20px;
	float:left;
	background-image:url(../images/btn_novedades.png);
}
.novedades a:hover {
	background-image:url(../images/btn_novedades2.png);
}
#thumbNav a {
	background-image: url(../images/btn_0a.png);
	background-repeat: no-repeat;
	font-size:10px;
	float:left;
	height:18px;
	line-height:18px;
	color:#2c2c2c;
	padding:0 6px;
	margin-left:3px;
	text-decoration:none;
}
#thumbNav a:hover {
	background-image: url(../images/btn_0.png);
	color:#FFF;
}
#thumbNav a.cur {
	background-image: url(../images/btn_0.png);
	color:#FFF;
}
#start-stop {
	background-image: url(../images/btn_pause.png);
	background-repeat: no-repeat;
	color: white;
	width: 18px;
	height:18px;
	text-align: center;
	position: absolute;
	left: 8px;
	top: 200px;
}
#start-stop.playing {
	background-image: url(../images/btn_play.png);
}
#start-stop:hover {
	background-image: url(../images/btn_pause.png);
}
/*
  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;
}
