/* Diseño móvil: 480 px e inferior. */
@media only screen and (max-width: 481px) {
/********************************* Videos ********************************************/
#contentVideos {
	width:100%; 
	height:100%; 
	min-height: 100%;
	overflow:hidden; 
	background: #fff;
}
}

/* Diseño tableta: de 481 px a 768 px. Hereda estilos de: Diseño móvil. */
@media only screen and (min-width: 481px) {
/********************************* Videos ********************************************/
#contentVideos {
	width:100%; 
	height:100%; 
	min-height: 100%;
	overflow:hidden; 
	background: #fff;
}
}

/* Diseño escritorio: de 769 px hasta un máximo de 1232 px.  Hereda estilos de: Diseño móvil y Diseño tableta. */
@media only screen and (min-width: 769px) {
/********************************* Videos ********************************************/
#contentVideos {
	width:100%; 
	height:100%; 
	min-height: 100%;
	overflow:hidden; 
	background: #fff;
}
}































