@charset "utf-8";
/* CSS Document */
.menu {
	width:650px;
	height:35px;
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
	font-color:#000000;
}	
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	width:150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width:100px;
	position:relative;
}
/* style the links for the top level BASE BARRA*/
.menu a, .menu a:visited {
	display:block;
	font-size:13px;
	text-decoration:none;
	color:#000000;
	width:100px;
	height:65px;
	border:0px;
	border-width:1px 1px 0 0;
	background:#cbcbcb;
	padding-left:10px;
	line-height:35px;
	background-image:url(base.png);
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:100px;
	w\idth:100px;
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#949e7c;
}
/* style the second level hover */
.menu ul ul a.drop:hover {
	background:#c9ba65;
	
}
.menu ul ul :hover > a.drop {
	background:#c9ba65;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#e2dfa8;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background:#b2ab9b;
}
.menu ul ul ul :hover > a {
	background:#b2ab9b;
}
/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	border-collapse:collapse;
	border:0;
	position:absolute;
	left:0;
	bottom:-1px;
}
/* hide the sub levels and give them a positon absolute so that they take up no room ALTURA A LA QUE SE DESPLIEGA EL SEGUNDO NIVEL*/
.menu ul ul {
	visibility:hidden;
	position:absolute;
	bottom:65px;
	left:0;
	width:150px;
}
* html .menu ul ul {
	bottom:35px;
}
/* position the third level flyout menu */
.menu ul ul ul {
	left:150px;
	bottom:0;
	width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-150px;
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	
	background:#E0E0E0;
	font-size:11px;
	color:#000;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:180px/* yet another hack for IE5.5 */
}
* html .menu ul ul a {
	width:180px;
	w\idth:180px;
}
/* style the top level hover . SOBRE BARRA*/
.menu a:hover, .menu ul ul a:hover {
	<!--color:#fff;
	background:#efa80e;-->
	font-color:#000000;
	color:#000000;
}
.menu :hover > a {
	<!--color:#fff;
	background:#efa80e;-->
	font-color:#000000;
	color:#000000;
	background-image:url(hover.png);
}
.menu ul li a.current,.menu ul li a.current:hover{
	font-color:#000000;
	color:#000000;
	background-image:url(hover.png);}
.menu ul li a.current span{font-color:#000000;
	color:#000000;
	background-image:url(hover.png);}

/*#menu li.current a {
font-color:#000000;
	color:#000000;
	background-image:url(hover.png);
}*/
.menu ul ul :hover > a {
	color:#000000;
	background:#efa80e;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility:visible;
	height:auto;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul {
	display:none;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul {
	display:none;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul {
	display:block;
	bottom:0;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {
	display:block;
	bottom:0;
}

