/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	padding: 0;
	margin: 0;
	height: 100%;
}

.menulist li {
	position: relative;
	float: left;
	margin: 0;
	
	display: block;
	padding: 0;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 1.1em;
	height: 100%;
	line-height: 1.8em;
	border-right: 1px solid #FFFFFF;
}
* html .menulist li {
	width: 65px;
}
.menulist li a {
	white-space: nowrap;
	margin: 0;
	height: 100%;
	display: block;
	color: white;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
}
* html .menulist li a {
	padding-left: 8px;
	padding-right: 8px;
}
.menulist li a:hover {
	text-decoration: none;
	background-color: #ef4e3c;
}
.menulist li.Inici {
	width: 170px;
}
.menulist li.Inici a{
	padding-left: 15px;	
}


/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	left: 0px;
	top: 1.9em; 
	border: #FFFFFF 1px solid;
	background-color: #e20a16;
	margin: 0;
 	width: 160px;
}

.menulist ul li {
	height: auto;
	float: none;
	margin: 0;
	padding: 0;
	width: 100%;
	line-height: 1.4em;
}


/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist ul li a {
	height: auto;
	margin: 0;
	padding: 0px 10px 0px 10px;
	color: #FFFFFF;
	border-bottom: #f0848a 1px solid;
	display: block;
	
	font-weight: normal;
	font-size: 0.8em;
	white-space: normal;
}
.menulist ul li a:hover {
 	color: #FFFFFF;
	background-color: #ef4e3c;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist ul a {
	float: left;
}
.menulist ul ul a {
	float: none;
}
/* \*/
.menulist ul a {
	float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
	float: left;
	width: 100%;
}

* html .menulist ul li {
	float: left;
	height: 1%;
}
* html .menulist ul a {
	height: 1%;
}
/* End Hacks */