@charset "UTF-8";

/* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

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

 LAYOUT INFORMATION: describes box model, positioning, z-order

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

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal{
	margin: 0;
	padding: 0;
	list-style-type:none;
	width:960px;
	height:40px;
	cursor:default;
	
}

/* 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 */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li{
	float:left;
	height:40px;
	padding:0;
	list-style-type: none;
	position: relative;
	cursor: pointer;
	border-right:solid 1px #d7e1df;

}

ul.MenuBarHorizontal li.item1{
	width:235px;
	background:#337d96;
}
ul.MenuBarHorizontal li.item2{
	width:220px;
	background:#7a8e55;
}
ul.MenuBarHorizontal li.item3{
	width:120px;
	background:#6f4b5f;
}
ul.MenuBarHorizontal li.item4{
	width:160px;
	background:#c06b19;
}
ul.MenuBarHorizontal li.item5{
	width:120px;
	background:#817f7c;
}
ul.MenuBarHorizontal li.item6{
	width:100px;
	border-right:none;
	background:#67576e;
}


/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */

ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 1020;
	position:absolute;
	left:-1000em;
	background-color:#ededed;
	padding-bottom:10px;
	width:210px;
	float:left;
	
}


/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width:210px;
	height:20px;
	padding-top:2px;
	padding-bottom:2px;
	margin:0;
	border:0;
	background-image:none;

}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
/*ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: 0 0 0 100%;
	width:215px;
	background-color:#D7D7D7;
	float:left;

	
}
ul.MenuBarHorizontal ul ul li
{
	width:215px;
	float:left;
	height:20px;
	
}*/
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left:auto;
}

/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

ul.MenuBarHorizontal ul.menu_segundo_nivel li a.MenuBarItemSubmenu
{
	background-image:url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-decoration:none;
	height:28px;
	padding-top:12px;
	font-size:12px;
	color:#fff;
	display:block;
	text-align:center;
	/*border-bottom:solid 4px #f8f8f8;*/
}

ul.MenuBarHorizontal a:hover{
/*	border-bottom:solid 4px #7d4199;*/
	background:#ededed;
	color:#7d4199;

}
ul.MenuBarHorizontal li.apartadoActual a{ 
	/*border-bottom:solid 4px #7d4199;*/
	background:#ededed;
	color:#7d4199;
}

ul.MenuBarHorizontal ul.menu_segundo_nivel li a{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align:left;
	font-size:10px;
	height:20px;
	padding-left:10px;
	color:#333;
	width:190px;
	border-bottom:none;

}
ul.MenuBarHorizontal ul.menu_segundo_nivel li a:hover{
	color:#7d4199;
	text-decoration:none;
	border:0;
}

ul.MenuBarHorizontal ul.menu_segundo_nivel li.subapartadoActual a{
	color:#7d4199;
	text-decoration:underline;
}




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

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

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

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
	
	}
}
