@import url("estilo_menu2.css");

.Estilo1 {font-family: Verdana, Arial, Helvetica, sans-serif}
body {
	background-color: #CCCCCC;
	width:1024px;
	padding:0px;
    margin:0px auto;
}
.Estilo3 {font-family: Verdana, Arial, Helvetica, sans-serif; color: #FFFFFF; }
-->


body {
	font-family: arial, helvetica, serif;
}

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 10em;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

li a {
	display:block; //Convertimos el vínculo en un bloque.
	width:100px;
	/*padding:4px 0;*/
	text-decoration:none;
	color:#FFFFFF;
	background-color:#CCCCCC;
}

#content {
	clear: left;
}

