/*
    AnythingSlider v1.4.1+ Default (base) theme

    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/
*/

/******* SET DEFAULT DIMENSIONS HERE ********/
div.anythingSlider {
	    margin-top: 25px;
	    border: 10px solid #FFF;
	    background-color: #FFF;
	    -moz-box-shadow: #444 0px 2px 5px;
	    -webkit-box-shadow: #444 0px 2px 5px;
	    box-shadow: #444 0px 2px 5px;
    }
    
/****** SET COLORS HERE *******/
/* Default State */
div.anythingSlider .start-stop, div.anythingSlider .start-stop.playing,
div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover {
	visibility: hidden;
	display: none;
}

/**** DO NOT CHANGE BELOW THIS LINE ****/
/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}
/* wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation */
div.anythingSlider {
/* 	position: relative; */
/* 	padding: 0 45px 28px 45px; */
}
/* anythingSlider base UL */
ul.anythingBase {
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}
ul.anythingBase li.panel {
	display: block;
	float: left;
	padding: 0;
	margin: 0;
}

/* Navigation Links */
div.anythingSlider .anythingControls { outline: 0; }
div.anythingSlider .thumbNav { margin-top: 20px; padding-left: 48%; }
div.anythingSlider .thumbNav li { display: inline; }
div.anythingSlider .thumbNav a {
	padding-top: 12px;
	display: block;
	width:12px;
	height:0px;
	background-image:url(../img/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.ie7 div.anythingSlider .thumbNav a {
        background: url(../img/pagination.gif) left top no-repeat;
}

div.anythingSlider .thumbNav a.cur {
	background-position:0 -12px;
}

div.anythingSlider {
        width: 628px;
        height: 353px;
}

div.thumbNav {
        width: 628px;
}

@media only screen and (min-width: 1212px) {

    div.anythingSlider {
	    width: 1048px; /* dividir entre 1.7777778 para obtener el alto */
	    height: 590px;
    }
    
    div.thumbNav {
	    width: 1048px;
    }
}

@media only screen and (max-width: 1212px) and (min-width: 767px) {
    
    div.anythingSlider {
	    width: 628px;
	    height: 353px;
    }
    
    div.thumbNav {
	    width: 628px;
    }

}

@media only screen and (max-width: 767px) and (min-width: 480px) {
	
    div.anythingSlider {
	    width: 100%;
	    max-width: 376px;
	    height: auto;
	    aspect-ratio: 16/9;
    }
    
    div.thumbNav {
	    width: 100%;
    }
	
}

@media only screen and (max-width: 479px) {
	
    div.anythingSlider {
	    border-width: 2px;
	    width: 100%;
	    max-width: 224px;
	    height: auto;
	    aspect-ratio: 16/9;
    }
    
    div.anythingSlider .thumbNav { padding-left: 39%; }
    
    div.thumbNav {
	    width: 100%;
    }
	
}