/*  REGLAS DEL MENU HORIZONTAL NO JAVASCRIPT */


/** 
	REGLAS RELACIONADAS CON LA ESTRUCTURA DEL MENÚ
*/

/* Lista que contiene primer nivel del menú */
.MenuBar {
	background-image:url(../image/menu_inactive.gif);
	background-repeat:repeat-x;
	height:31px;
	padding:0px;
	margin:0px;
	border:0;
	top: -1px;
	position: relative;
}

ul.MenuBarHorizontal {
	background-image:url(../image/menu_inactive.gif);
	background-repeat:repeat-x;
	height:31px;
	padding:0px;
	margin:0px;
	text-align:left;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* Lista que contiene el segundo nivel del menú */
ul.MenuBarSubmenu {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1000;
	left: auto;
}

/* Opción de menú de primer nivel */
ul.MenuBarHorizontal li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	width: auto;
	float: left;
	white-space:nowrap;
	border-right-style: dashed;
	border-right-color: #FFFFFF;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 1px;
}

/** 
	REGLAS QUE DESCRIBEN LA PRESENTACIÓN DEL MENÚ
*/
ul.MenuBarSubmenu li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	width: auto;
	float: left;
	white-space:nowrap;
}


ul.MenuBarHorizontal a, ul.MenuBarSubmenu a {
	display: block;
	text-decoration: none;
	background-image:url(../image/menu_inactive.gif);
	background-repeat:repeat-x;
	color:#FFFFFF;
	font-weight: bold;
	text-align: center;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 10px;
}

ul.MenuBarHorizontal a:hover, ul.MenuBarSubmenu a:hover {
	background-image:url(../image/menu_active.gif);
	background-repeat:repeat-x;
	text-align: center;
	color:#FFFFFF;
}
ul.MenuBarHorizontal a:visited, ul.MenuBarSubmenu a:visited {
	background-image:url(../image/menu_inactive.gif);
	background-repeat:repeat-x;
	text-align: center;
	color:#FFFFFF;
}


/** 
	REGLAS DE LAS OPCIONES ELEMENTOS DE MENÚ DE PRIMER NIVEL
*/

/* Opción de primer nivel que tiene un hijo activo en el menú de segundo nivel */
ul.MenuBarHorizontal li.active_parent a, ul.MenuBarSubmenu li.active_parent a {
	background-color: #F6F8FB; 
	border-left: 1px solid #EAEAEA;
	border-right: 1px solid #EAEAEA;
}

/* Opción activa de primer nivel */
ul.MenuBarHorizontal li.active a, ul.MenuBarSubmenu li.active a {
	background-image:url(../image/menu_active.gif);
	background-repeat:repeat-x;
}

/* FIN DE LAS REGLAS DE MENU HORIZONTAL */
