/* Large Devices, Wide Screens */
@media only screen and (max-width : 1290px) {
	
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {

}



/* iPAD potrait*/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {


}


/* iPAD landscape*/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {

}






/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.oculto_responsive{
		display: none;
	}
	.visible_responsive{
		display: block;
	}
	.centro_responsive{
		text-align: center;
	}
	.derecha_responsive{
		text-align: right;
	}
	.izquierda_responsive{
		text-align: left;
	}
	.sin_bordes_responsive
	{
		border: none;
	}
	.altura_400_normal{
		min-height:0px;
	}
	.paddinizquierdoderecho0{
		padding-left: 0px;
		padding-right: 0px;
	}
	.alto220{
		height: 220px;
	}
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}

@media(-webkit-min-device-pixel-ratio: 2) {
  	
}