body {
	font-family: Verdana;
}

ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	text-underline: none;
	color: white;
	font-type : Verdana;
	font-size : 12px;
}

a {
	text-decoration: none;
	color : white;
	font-type : Verdana;
	font-size : 12px;
}

li ul {/*   second-level lists  */
	display: none;
	position: absolute;
	top: 1.2em;
	left: 0;
	color: orange;
}

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;
}

#content {
	clear: left;
}

/* empieza el roll over */
a.botonMenu {
background-color:;
color: white;
cursor: pointer;
text-decoration: none;
}

a.botonMenu:hover {
color: #FF7733;
}

a.botonMenu:active {
color: #FF7733;
} 
