@charset "utf-8";
/* 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:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	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. */
.MOVIL {}

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 87.36%;
	padding-left: 1.82%;
	padding-right: 1.82%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
.cabecera {
	width: 100%;
	box-sizing: border-box;
}
.catalogo {
	background-color: #FFF;
	vertical-align: top;
	display: inline-block;
	border: 2px solid #F00;
	width: 31.5%;
	color: #000;
	border-radius: 30px 30px 30px 70%;
	float: left;
	margin: 7px;
	position: relative;
	box-sizing: border-box;
}
.foto_producto {
	width: 40%;
	box-sizing: border-box;
	vertical-align: top;
	display: inline-block;
	float: left;
}
.titulo_datos_producto {
	font-size: 16px;
	font-weight: bold;
	color: #00F;
}

.datos_producto {
	vertical-align: top;
	display: inline-block;
	float: left;
	width: 55%;
	box-sizing: border-box;
	text-align: left;
	padding-top: 10px;
	bottom: 0px;
}
.mancha_precio {
	font-size: 18px;
	color: #FFF;
	background-color: #00F;
	padding: 7px;
	float: left;
	width: 55%;
	vertical-align: top;
	display: inline-block;
	position: absolute;
	bottom: 10px;
	right: 10px;
	text-align: left;
	border-radius: 0px 20px 20px 0px;
}
.clear {
	display: block;
	clear: both;
	width: 100%;
}


.contenedor {
	background-image: url(../img/degradado_negro_a_blanco.gif);
	background-repeat: repeat;
	height: 300px;
	box-sizing: border-box;
	color: #FFF;
	text-align: center;
}



.menu {
	background-color: #333;
	width: 100%;
	box-sizing: border-box;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 5px;
}
.pie {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 10px;
	color: #FFF;
	background-color: #333;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 10px;
}



.FINAL-MOVIL {}
/* Diseño tableta: de 481 px a 768 px. Hereda estilos de: Diseño móvil. */

@media only screen and (min-width: 481px) {
.TABLETA {}

.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

.FINAL-TABLETA {}
}

/* 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) {
.ESCRITORIO {}
	
.gridContainer {
	width: 88.2%;
	max-width: 1232px;
	padding-left: 0.9%;
	padding-right: 0.9%;
	margin: auto;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

.FINAL-ESCRITORIO {}
}
