@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: "Century Gothic";
	background-color: #FFFFFF;
}
.twoColFixLtHdr #container {
	width: 1000px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #DDDDDD;
	text-align: left;
	height: 610px;
	position: relative;
	background-color: #FFFFFF;
} 
.twoColFixLtHdr #header {
	padding: 0 0 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 70px;
	position: relative;
	background-image: url(img/header.jpg);
} 
.twoColFixLtHdr #header h1 {
	margin: 0;
	position: absolute;
	top: -100px;
}
.twoColFixLtHdr #header p {
	margin: 10px auto auto 800px;
	font-weight: bold;
	color: #FFFFFF;
	text-align:right;
	font-size: 200%;
	top: 0px;
	position: absolute;
}

.twoColFixLtHdr  #left {
	width: 500px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF;
	padding: 0px 0px 0px 0px;
	float: left;
	z-index: 10;
}

* html .twoColFixLtHdr  #left { /**** SOLO PARA IE6 ****/
	width: 500px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF;
	padding: 0px 0px 0px 0px;
	margin-top: 20px;
	float: left;
	z-index: 10;
}
*:first-child+html .twoColFixLtHdr  #left { /**** SOLO PARA IE7 ****/
	width: 500px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF;
	padding: 0px 0px 0px 0px;
	margin-top: 20px;
	float: left;
	z-index: 10;
}

.twoColFixLtHdr  #right {
	margin: 0 0 0 505px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px 0px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 490px;
	z-index: 10;
} 
.twoColFixLtHdr #footer {
	background:#FFFFFF;
	position: absolute;
	width: 1000px;
	bottom: 0;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 70%;
}
.twoColFixLtHdr #footer a {
	color: #A92B40;
	font-weight: bold;
	text-decoration: none;
}
.twoColFixLtHdr #footer a:hover{
	text-decoration:underline;
}


.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.twoColFixLtHdr #left p {
	text-align: justify;
	font-size: 80%;
	padding: 0px 30px 20px 20px;
	line-height: 22px;
}
.twoColFixLtHdr #left ul {
	font-size: 90%;
}

.twoColFixLtHdr #right p {
	text-align: justify;
	font-size: 80%;
	padding: 0px 20px 20px 30px;
	line-height: 22px;
	z-index: 5;
}

.twoColFixLtHdr  #p1 {
	float: left; /* since this element is floated, a width must be given */
	width: 500px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF;
	position: absolute;
	z-index: 5;
}

.twoColFixLtHdr  #p2 {
	float: left; /* since this element is floated, a width must be given */
	width: 500px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF;
	position: absolute;
	z-index: 2;
}

.twoColFixLtHdr  #p1d {
	width: 480px;
	position: relative;
	left: 10px;
	top: 10px;
}
* html .twoColFixLtHdr  #p1d { /****** LO DE * html AL PRINCIPIO ES PARA QUE ESTE TROZO DE CODIGO, LO LEA SOLO EL IE6 ******/
	width: 480px;
	position: relative;
	left: 10px;
	top: 30px;
}
*:first-child+html  .twoColFixLtHdr  #p1d { /****** LO DE * html AL PRINCIPIO ES PARA QUE ESTE TROZO DE CODIGO, LO LEA SOLO EL IE7 ******/
	width: 480px;
	position: relative;
	left: 10px;
	top: 30px;
}

.twoColFixLtHdr #container #left img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.twoColFixLtHdr #leftimage {
	width: 480px;
	position: relative;
	top: 20px;
	left: 40px;
}
.twoColFixLtHdr #container #right img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.twoColFixLtHdr #container #right a {
	font-size: 85%;
	color: #A92B40;
	font-weight: bold;
	text-decoration: none;
}
.twoColFixLtHdr #container #right a:hover{
	text-decoration:underline;
}

.twoColFixLtHdr #container #left a {
	font-size: 85%;
	color: #A92B40;
	font-weight: bold;
	text-decoration: none;
}
.twoColFixLtHdr #container #left a:hover{
	text-decoration:underline;
}

.twoColFixLtHdr #leftvideo {
	width: 480px;
	position: relative;
	top: 20px;
	left: 10px;
}
.twoColFixLtHdr #rightvideo {
	width: 480px;
	position: relative;
	top: 20px;
	left: 10px;
}
.twoColFixLtHdr #righttable {
	width: 400px;
	position: relative;
	top: 10px;
	left: 100px;
}
*html .twoColFixLtHdr #righttable { /**** SOLO PARA IE6 ****/
	width: 400px;
	position: relative;
	top: 10px;
	left: 100px;
	margin-top: 20px;
}
*:first-child+html .twoColFixLtHdr #righttable { /**** SOLO PARA IE7 ****/
	width: 400px;
	position: relative;
	top: 10px;
	left: 100px;
	margin-top: 20px;
}

.twoColFixLtHdr #container #righttable a {
	font-size: 70%;
	text-decoration: none;
}
.twoColFixLtHdr #righttable p {
	text-align: center;
	font-size: 80%;
	padding: 0 0px 0px 0px;
	line-height: 20px;
}

.twoColFixLtHdr #righttable_description {
	width: 300px;
	height: 160px;
	top: 0px;
	left: 0px;
}


.twoColFixLtHdr #container #leftvideo a {
	font-size: 70%;
	text-decoration: none;
}


/* A CONTINUACIÓN DEFINIMOS EL DIV Y CLASSES DEL CONTENIDO DINÁMICO DE LAS PROMOCIONES*/
/* DEFINICION DEL DIV */
.twoColFixLtHdr #contenido {
	margin-right: auto;
	margin-left: auto;
	width: 900px;
	font-size: 82%;
}
.twoColFixLtHdr #contenido ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	width: auto;
}
.twoColFixLtHdr #contenido li {
	margin: 10px 0 10px 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	float: left;
	width: 220px;
}
.twoColFixLtHdr #contenido img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.textogris { /* esta class se puede usar, por ejemplo, para poner en gris las promociones no visibles dentro de la lista en ADMINISTRACION */
	color: #999999;
	font-style:italic;
}

.textoform { /* esta class se puede usar, por ejemplo, para poner en gris las promociones no visibles dentro de la lista en ADMINISTRACION */
	font-size: 80%;
}
textarea, input
{
	font-size: 90%;
	text-align: left;
	color: black;
	font-family: "Century Gothic";
}

/* ESTA PARTE SE HA CREADO SOLO PARA EL MENU FLASH DESPLEGABLE*/
#menuflash {
	width: 1000px;
	position: absolute;
	float: none;
	z-index: 20;
}

