/* CSS Document */
ul.menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav a {
	font-weight: bold;
	color: #0C306A;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	/*height:15px;*/
	height:100%;
}

#nav a {
	text-decoration: none;
}

#nav li li a {
	display: block;
	font-weight: normal;
	/*color: #060;*/
	padding: 0.2em 10px;
}

#nav li li a:hover {
	/*padding: 0.2em 5px;
	border: 0px solid #7d6340;
	border-width: 0 5px;*/
	padding: 0.2em 10px;
	color:#000000;
}

li.menu {
	float: left;
	position: relative;
	/*width: 10em;*/
	text-align:left;
	cursor: default;
	background-color: white;
	border: 0px solid #7d6340;
	border-width: 0px 0;
}

li#first {
	border-left-width: 1em;
}

li#last {
	border-right-width: 1em;
}

li.menu ul.menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 140px;
	font-weight: normal;
	background: url(../img/menu_fondo.gif) bottom left no-repeat;
	padding: 0.5em 0 1em 0;
	border-right: solid 0px #7d6340;
}

li.menu>ul.menu {
	top: auto;
	left: auto;
}

li.menu li.menu {
	display: block;
	float: none;
	background-color: transparent;
	border: 0;
}

li.menu:hover ul.menu, li.menu.over ul.menu {
	display: block;
}


