/* CSS Document */
* {
	margin: 0px;
	padding: 0px;
}

/* Estilo de body */
body {
	text-align: center; /* centrado del diseño */
	background: #fff;
	margin: 10px auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* Estilo de wrapper (contenedor externo) */
#wrapper {
	width: 800px; /* anchura mínima del contendor externo (fija) */
	/* CENTRAR DISEÑO CON MARGENES AUTOMÁTICOS */
	margin: 0 auto; /* margenes laterales a 0 y superior e inferior auto */
	text-align: left; /* alineación del contenido a la izquierda para evitar el alineado center de body */	
}

#content {
	padding: 1px 10px 1px 10px;
	width: 720px;
	border: 3px solid #739D2F;
	background-color: #4F5559;
	text-align: center;
}

#seccionCentral {
	padding: 5px;
	margin: 0px 10px;
	background: #fff;
}

#tituloSeccion {
	width: 100%;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #739D2F;
}

#texto {
	width: 320px;
	float: left;
}

#texto a {
	text-decoration: none;
	color: #000;
}

#texto a:hover {
	text-decoration: underline;
}

#textoAvisoLegal {
	text-align: left;
}

#texto p, #textoAvisoLegal p {
	font-size: 10px;
}

#texto h6 {
	padding-bottom: 10px;
}

#imagenes {
	width: 360px;
	float: right;
}

#imagenes img {
	padding-bottom: 10px;
}

#mainNav {
	width: 750px;
	height: 25px;
	margin: 5px 0;
}

#mainNav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#mainNav li {
	float: left;
	padding: 2px;
}

#mainNav a {
	display: block;
	width: 135px;
	height: 20px;	
	line-height: 20px;
	font-weight: bold;
	font-size: 12px;
	color: #fff;
	text-decoration: none;
}

#mainNav a:hover {
	text-decoration: underline;
}

#footer {
	width: 750px;
	text-align: right;
}

#footer span {
	color: #000;	
	font-weight: bold;
	font-size: 12px;
}

#footer a {
	color: #000;	
	font-weight: bold;
	font-size: 11px;
	text-decoration: none;
}

#footer a:hover {
	text-decoration: underline;
}

.clear {
	clear: both;
}

.foto {
	border: 2px solid #739D2F;
}



