/* --------------- ASIDE --------------- */
#prodLista {
	float: right;
	width: 20%;
}

#menuProductos {
	padding: 10px;
	background-color: #F90;
	font-family: "Open Sans", sans-serif;
	font-size: .8em;
	-webkit-box-shadow: 0px 1px 12px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(255,255,255,0);
	-moz-box-shadow: 0px 1px 12px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(255,255,255,0);
	box-shadow: 0px 1px 12px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(255,255,255,0);
}
#menuProductos h4 {
	padding-bottom: 10px;
}

#menuProductos ul {
	list-style: none;
}

#menuProductos a {
	text-decoration: none;
	color: white;
}

#menuProductos a:hover {
	font-weight: bold;
}

.menuFijo {
	position: fixed;
	top: 0;
	opacity: 0.85;
	filter: alpha(opacity=85); /*IE fix*/
}

/* --------------- SECTION --------------- */
#productos {
	width:80%;
}

.prod header {
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
	padding: 20px 0 10px;
	border-bottom: 2px solid #F60;
}

.prod header h1 {
	font-size: 1.2em; /*IE fix*/
}

.prod .fa {
	padding-right: 10px;
}

.producto {
	overflow: hidden;
	background: -webkit-linear-gradient(left, #F2F3F4, #CCCCCC);
	background: -moz-linear-gradient(left, #F2F3F4, #CCCCCC);
	background: -o-linear-gradient(left, #F2F3F4, #CCCCCC);
	background: -ms-linear-gradient(left, #F2F3F4, #CCCCCC);
	background: linear-gradient(left, #F2F3F4, #CCCCCC);
}

.imgProducto {
	float: left;
	width: 40%;
	padding: 20px 0;
}

.imgPrincipal {
	width: 100%;
	max-width: 316px;
	height: auto;
	border: 1px solid #CCC;
}

.imgMinis {
	margin-top: 15px;
}

.minis {
	width: 100%;
	max-width: 76px;
	height: auto;
	border: 1px solid #CCC;
}

.descProducto {
	float: left;
	width: 60%;
	padding: 20px;
}

.descProducto h3 {
	font-family: "Eurostar Black Extended";
}

.descProducto p {
	padding-top: 10px;
	font-family: "Open Sans", sans-serif;
	font-size: .9em;
	
}

.prod footer {
	clear: both;
	border-top: 2px solid #F60;
	padding: 10px 10px 18px;
}

.prod footer h4 {
	display: inline;
	font-family: "Eurostar Black Extended";
}

.prod footer span {
	float: right;
	font-family: "Open Sans", sans-serif;
}

.prod footer span a {
	text-decoration: none;
	color: #5A036C;
	font-size: .9em;
}

.prod footer .oferta {
	padding: 5px 10px;
	margin-left: 20px;
	border: 2px solid #5A036C;
	background: #5F021F;
	-webkit-box-shadow: 0px 1px 4px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(255,255,255,0);
	-moz-box-shadow: 0px 1px 4px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(255,255,255,0);
	box-shadow: 0px 1px 4px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(255,255,255,0);
	font-size: .8em;
	font-weight: bold;
	color: white;
	border-radius: 5px;
}
	
.prod footer .oferta:hover {
	-webkit-box-shadow: 0px 1px 12px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(255,255,255,0);
	-moz-box-shadow: 0px 1px 12px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(255,255,255,0);
	box-shadow: 0px 1px 12px rgba(000,000,000,0.5), inset 0px 0px 0px rgba(255,255,255,0);
	
}
.prod footer .oferta:active {
	-webkit-box-shadow: 0px 1px 12px rgba(000,000,000,0.9), inset 0px 0px 0px rgba(255,255,255,0);
	-moz-box-shadow: 0px 1px 12px rgba(000,000,000,0.9), inset 0px 0px 0px rgba(255,255,255,0);
	box-shadow: 0px 1px 12px rgba(000,000,000,0.9), inset 0px 0px 0px rgba(255,255,255,0);
}

/* /////////////// MEDIA QUERIES \\\\\\\\\\\\\\\ */	
@media screen and (max-width: 800px) {
	#prodLista {
		display: block;
		width: 100%;
	}
	
	.menuFijo {
		width: 90%;
		z-index: 9999;
	}
	
	#productos {
		width: 100%;
	}
}

@media screen and (max-width: 400px) {
	.menuFijo {
		width: 100%;
	}
	
	.prod footer span {
		float: none;
		display: block;
		width: 100%;
		text-align: center;
		padding-top: 5px;
	}
}