/* CSS Document */

/* Formato general, centrado, todo va dentro de #container*/
body {
	margin: 0px;
	background-color: #E8EfF6;
}

#container {
	width: 780px;
	margin-right: auto;
	margin-left: auto;
	border-right-width: 5px;
	border-left-width: 5px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #FFFFFF;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}

/* ärea superior, puede incluir otros DIV como el logo */
#header {
	background-color: #EBEBEB;
	height: 80px;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}

#menu {
	background-color: #D3E0EE;
	margin-bottom: 5px;
	height: 25px;
	width: 545px;
}

/* Á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/background/content.png);
	background-repeat: repeat-y;
}
#contentLeft {
	margin: 0px;
	float: left;
	width: 590px;
}

#contentRight {
	float: right;
	width: 180px;
	background-color: #4E82BB;
}
#contentFull {
	padding: 20px;
	width: 740px;
}

#content br.clear {
	clear: both;
}

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

#footer {
	background-color: #A7C1DD;
	height: 60px;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #2263AA;
	margin-top: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#fcdigital {
	text-align: center;
	background-color: #FFFFFF;
	height: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
}

#fcdigital a, #fcdigital a:hover, #fcdigital a:visited {
	color:#666666;
	text-decoration:none;
}