/* CSS Document */

/* Estilo de body */
body, html {
	margin: 0;
	padding: 0;

	text-align: center; /* centrado del diseņo */
	
	background-color: #FFFFFF;
}

/* Estilo de contenedor (Centrado Vertical) */
#contenedor {
  	width: 620px;
	/* height: 550px; */
	margin: 50px auto;
	padding: 50px 70px 20px 70px;
}

#contenedor.index {
	text-align: center;
	height: 290px;
	padding-top: 120px;
}

#contenedor.index #idiomas {
	float: right;
	text-align: right;
	margin: 10px 0px;
}

#contenedor.index #idiomas ul {
	list-style-type: none;
}

	#contenedor.index #idiomas li {
		float: left;		
		padding: 0px 0px 0px 50px;
	}
	
	#contenedor.index #idiomas li a {
		font-family: Arial, Helvetica, sans-serif;
		font-size: 9pt;
		font-weight: bold;
		color: #666666;
		display: block;
		text-decoration: none;
	}
	
	#contenedor.index #idiomas li a:hover {
		color: #000000;
		font-weight: bold;
	}
	
#contenedor #mensaje {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #666;

	padding: 5px 10px;

	text-align: center;
	
	border-top: 1px solid #808000;
	border-bottom: 1px solid #808000;
}

.clear {
	clear: both;
}