/* Medios fluidos sencillos
   Nota: Los medios fluidos exigen la eliminación de los atributos de altura y anchura de los medios del código HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 no admite max-width (anchura máxima), por lo que usa de manera predeterminada una anchura del 100% */
.ie6 img {
	width:100%;
}
/*
	Propiedades de cuadrícula fluida de Dreamweaver
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	10;
	
	Inspiración obtenida de "Responsive Web Design" de Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	y Golden Grid System de Joni Korpi
	http://goldengridsystem.com/
*/

/* Diseño móvil: 480 px e inferior. */
#barracentro {
	padding:5.5%;
	clear: both;
	float:left;
	width: 100%;
	height: 100px;
	position:relative;
	background: linear-gradient( to top, #06C, #000); 
	z-index:999;
	text-align:center;
}
#barranav {
	clear: both;
	float:left;
	width: 100%;
	height: auto;
	position:fixed;
	z-index:100000;
	text-align:center;
	margin-top:-30%;
}
#derechos{
	font-size:5px;
	width:auto;
	height: 80px;
	color:#FFF;
	background-color: #00C;
	text-align:center;
	padding-top:1.8%;
}
.leyendawell{
	float:left;
	position: fixed;
	z-index:1800;
	width:auto;
	height: auto;
	margin-left:10px;
	margin-top:10px;
}
}
/* Diseño tableta: de 481 px a 768 px. Hereda estilos de: Diseño móvil. */

@media only screen and (min-width: 768px) {
#barracentro {
	height: 140px;
}
#barranav {
	bottom:35%;
}
#derechos{
	height: 60px;
	font-size:10px;
}
.leyendawell{
	margin-left:10px;
	margin-top:10px;
	padding-left:5px;
}
}

/* 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: 1023px) {
#barracentro {
	padding: 5.5%;
	height: 180px;
}
#barranav {
	bottom:30%;
}
#derechos{
	height: 60px;
	font-size:10px;
}
.leyendawell{
	margin-left:-5px;
}
}
