@charset "UTF-8";

/* MENU SECUNDARIO */

#navSec ul.MenuSecundario
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 190px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: normal;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
#navSec ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
#navSec ul.MenuSecundario li
{
	margin: 0;
	padding: 0;
	position: relative;
	text-align: left;
	list-style: url(none) none;
	width: 197px;
}
/* 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) */
#navSec ul.MenuSecundario ul
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
#navSec ul.MenuSecundario ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
#navSec ul.MenuSecundario ul li
{
	width: 8.2em;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
#navSec ul.MenuSecundario ul
{
	border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
#navSec ul.MenuSecundario a
{
	display: block;
	cursor: pointer;
	padding: 2px 0 2px 10px;
	color: #00653A;
	text-decoration: none;
	font-size: 0.9em;
}
#navSec ul.MenuSecundario .activo
{
	font-weight: bold;
}
/* Menu items that have mouse over or focus have a blue background and white text */
#navSec ul.MenuSecundario a:hover, ul.MenuSecundario a:focus
{
	background-color: #D2D9CC;
	color: #000;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
#navSec ul.MenuSecundario a.MenuBarItemHover, ul.MenuSecundario a.MenuBarItemSubmenuHover, ul.MenuSecundario a.MenuBarSubmenuVisible
{
	background-color: #D2D9CC;
	color: #000;
}

