/* REGLAS DEL MENU VERTICAL */
ul.MenuBarVertical {
	margin: 0px;
	padding: 0;
	padding-top: 0px;
	list-style-type: none;
	font-size: 14px;
	width: 249px;
	color: #FFFFFF;
}

ul.MenuBarVertical li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: right;
	width: auto;
	white-space:nowrap;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
{
	margin-left: 0px;
	list-style-type: none;
	font-size: 100%;
	font-weight: normal;
	cursor: default;
}

/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width: 185px;
	background: #FFF;
}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a, ul.MenuBarVertical a:visited
{
	display: block;
	cursor: pointer;
	color: #FFFFFF;
	text-decoration: none;
	width: 200px;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 0.75em;
	padding-right:5px;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #89aa2f;
	color: #FFFFFF;
}

ul.MenuBarVertical li.active_parent  a {
	background-color: #EB1C24;
	color: #FFFFFF;
}

ul.MenuBarVertical li.active_parent  li a {
	background-color: #EB1C24;
	color: #009999;
}
/* Opción de la categoría padre activa */
ul.MenuBarVertical li.active a, 
ul.MenuBarVertical li.active_parent  li.active a {
	background-color: #EB1C24;
	color: #FFFFFF;
}
/* Opción de la categoría padre activa */
ul.MenuBarVertical li.active_blue a, 
ul.MenuBarVertical li.active_parent  li.active_blue a {
	background-color: #348DAD;
	color: #FFFFFF;
}
/* Opción de las hijas de la categoría padre activa */
ul.MenuBarVertical li.active li a {
	background-color: #000000;
	color:#FFF;
	font-size: 90%;
	text-decoration: underline;
	text-align: right;
}
/* Controla la posición de las hijas de la categoría padre activa */
ul.MenuBarVertical li ul li {
	background-color: #000000;
	margin-left: 0;
	text-align: left;
	padding-right:30px;
	list-style-type: none;
}
/* FIN DE LAS REGLAS DEL MENÚ VERTICAL */
