/* CSS Document */

/* Formato general, centrado, todo va dentro de #container*/
body {
	margin: 0px;
	background-image: url(../images/backgrounds/body.png);
	background-repeat: repeat-x;
	background-color: #D2EBFC;
	padding-bottom: 40px;
}

#container {
	width: 780px;
	margin-right: auto;
	margin-left: auto;
}

/* ärea superior, puede incluir otros DIV como el logo */
#header {
	height: 200px;
	background-image: url(../images/backgrounds/body.png);
	background-repeat: no-repeat;
	background-position: 500px 0px;
}
#flashcontent {
	color: #FFFFFF;
}

#logo {
	height: 80px;
	width: 350px;
	padding-top: 30px;
	padding-left: 10px;
}


#menu {
	height: 50px;
	background-image: url(../images/backgrounds/menu.png);
	padding-left: 10px;
}

/* Área de contenido denteo de #content, para un diseño de dos columnas se utiliza #contentLeft, #contentRight y el BR, para una sola a columna sólo utilizar #contentFull */

#content {
	width: 780px;
	background-image: url(../images/backgrounds/content.png);
	padding-top: 30px;
	padding-bottom: 10px;
}
#contentLeft {
	margin: 0px;
	float: left;
	width: 360px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 20px;
}

#contentRight {
	float: right;
	width: 360px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
}
#contentFull {
	width: 740px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}

br.clear {
	clear: both;
}

/* Área inferior, copyright, footer y FCDigital */

#footer {
	background-image: url(../images/backgrounds/footer.png);
	height: 20px;
	font-size: 10px;
	line-height: 20px;
	color: #2F71B8;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-top: 20px;
	padding-bottom: 20px;
}

#fcdigital {
	text-align: right;
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 0px;
	padding-left: 0px;
	height: 30px;
}

