@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

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

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

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

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



#menuPrincip {
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	position: relative;
	top: 83px;
}


/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	background-color: #FF0000;

	/*padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
	margin-top: 90px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 200px;*/
}
/* 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
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	
	
	/*margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;*/
}
/* 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;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 400px;
	position: absolute;
	left: -1000em;
	top: 37px;
	
	
	/*margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 400px;
	position: absolute;
	left: -1000em;*/
}
/* 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;
}





ul.MenuBarHorizontal ul li a{
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	padding-right: 10px;
	padding-left: 10px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	text-decoration: none;
}
ul.MenuBarHorizontal ul li a:hover{
	color: #002F60;	
}
.MenuBarItemSubmenu{
	background-color: #FFFFFF;
	height: 50px;
	width: auto;
	margin-right: 4px;
	padding-top: 16px;
	padding-right: 21px;
	padding-bottom: 13px;
	padding-left: 21px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #002F60;
	text-decoration: none;
	font-weight: bold;
}








