/* Large desktop */
@media (min-width: 1200px) { ... }

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }

/* Landscape phone to portrait tablet */
@media (max-width: 960px) { 
	.botonera {
		width:100%;
	}
	.botonera li {
		margin-top:0.5%;
		font-size:90%;
	}
	h1 {
	width:100%;
	}
	header {
	width:100%;
	}
	.flexslider {
		width:100%;
		float:left;
	}
	#wrap {
	width:100%;	
	}
	.slides {
min-height:300px;
background:#fff url(../img/loading.gif) no-repeat 50% 50%!important;
}
}

/* Landscape phones and down */
@media (max-width: 480px) { 

	.botonera {
		width:100%;
	}
	.botonera li {
		width:100%;
		margin-top:0.5%;
		font-size:90%;
	}
	h1 {
	width:100%;
	}
	header {
	width:100%;
	}
	.flexslider {
		width:100%;
		float:left;
	}
	.slides {
min-height:50px;
background:#fff url(../img/loading.gif) no-repeat 50% 50%!important;
}
	#wrap {
	width:100%;	
	}
}