/* 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: 30px;
}

.menulist li {
	position: relative;
	display: block;
	float: left;
	padding: 0px 16px 0px 0px;
	margin: 0;
	background-image:  url("/img/menu1_sep.gif");
	background-repeat: no-repeat;
	background-position: top right;
}

* html .menulist li {
	width: 50px;
}
	
.menulist li.ultim {
	display: block;
	float: left;
	padding: 0px 8px 0px 0px;
	margin: 0;
	background-image:  url("/img/menu1_sepult.gif");
	background-repeat: no-repeat;
	background-position: top right;
}
.menulist li.ultimsel {
	display: block;
	float: left;
	padding: 0px 8px 0px 0px;
	margin: 0;
	background: none;
}
.menulist li.ultimsel span {
	background: none;
	white-space: nowrap;
	padding: 15px 0px 0px 0px;
	margin: 0;
	font-size: 0.9em;
	font-weight: bold;
	color: white;
	height: 17px;
	display: block;
}
.menulist li.prevsel {
	position: relative;
	display: block;
	float: left;
	padding: 0px 8px 0px 0px;
	margin: 0;
	margin-right: 4px;
	background-image:  url("/img/menu1_sep_esq.gif");
	background-repeat: no-repeat;
	background-position: top right;
}

.menulist li.selec {
	display: block;
	float: left;
	padding: 0px 16px 0px 0px;
	margin: 0;
	background-image:  url("/img/menu1_sep_dre.gif");
	background-repeat: no-repeat;
	background-position: top right;
}
.menulist li.selec span {
	background: none;
	white-space: nowrap;
	padding: 15px 0px 0px 0px;
	margin: 0;
	font-size: 0.9em;
	font-weight: bold;
	color: white;
	height: 17px;
	display: block;
}

/* Links inside the menu */
.menulist li a {
	background-image: url("/img/menu1_fons.gif");
	background-repeat: repeat-x;
	background-position: top left;
	white-space: nowrap;
	padding: 15px 0px 0px 0px;
	margin: 0;
	font-size: 0.9em;
	font-weight: bold;
	height: 17px;
	display: block;
}
.menulist li a:hover {
	text-decoration: none;
	color: white;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	left: -7px;
	top: 31px; 
	
	background-image: none;
	border: #62BD19 1px solid;
	background-color: #DFF2C7;
	margin: 0;
 	width: 150px;
	padding: 0px 3px 0px 3px;
	
}

.menulist ul li {
	height: auto;
	float: none;
	margin: 0;
	background: none;
	padding: 0;
	width: 100%;
}


/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist ul li a {
	height: auto;
	margin: 0;
	padding: 8px 0px 5px 0px;
	color: #334234;
	border-bottom: white 1px solid;
	display: block;
	background: none;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	white-space: normal;
}
.menulist ul li a:hover {
 	color: #FFFFFF;
	background: #479D01;
}


/* '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 */