body {
	background-color: #DDDDDD;
}


#contenedor {
	width: 980px;
	margin-left: auto;
	margin-right: auto;
}

#cabecera {
	height: 150px;
	margin-bottom: 16px;
	background-image: url(imagenes/cabecera.jpg)
}

#izquierda {
	width: 200px;
	float: left;
	margin-bottom: 16px;
}

#centro {
	margin-left: 236px;
	margin-bottom: 16px;
	text-align: justify;
}

#pie {
	height: 20px;
	background-color: #3399FF;
	clear: both;
	font-size: 0.75em;
	text-align: center;
}

#pie span {
	margin-left: auto;
	margin-right: auto;
	vertical-align: middle;
}

/*  MENÚ IZQUIERDA  */
#menu {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

#menu li {
	margin: 2px;
	padding: 0;
	float: left;
}

#menu li a {
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
	display: block;
	width: 186px;
	padding: 4px 0;
	text-decoration: none;
	text-align: center;
	color: #FFFFFF;
	background-color: #999999;
	border-left: 10px solid #666666;  //Agrego un borde ancho a la izquierda
}

#menu li a:hover {
	color: #000000;
	font-weight: bold;
	background-color: #0099FF;
	border-left-color: #00FF00; //Luego le cambio el color al borde en el evento hover.
}