@charset "utf-8";
/* CSS Document */

#menu{
	position: absolute;
	width: 100px;
	height: 150px;
	left: 10px;
	top: 40px;
}

a{
	font-style: italic;
	font-weight: bold;
	border-top: 1px solid darkblue;
	border-bottom: 1px solid darkblue;
	text-decoration: none;
}

a:link{
	color: darkblue;
	background-color: lightblue;
}

a:hover{
	color: white;
	background-color: darkblue;
}

#contenido{
	position: absolute;
	width: 600px;
	height: 300px;
	left: 120px;
	top: 40px;
	border: 1px solid lightblue;
}

h1{
	font-family: Verdana;
	font-size: 18px;
	font-style: italic;
	color: darkblue;
	border-bottom: 2px solid darkblue;
}

p{
	font-family: Verdana;
	font-size: 14px;
	color: darkgrey;
}