/*
	--------------------------------------------------
	NAVIGATION STYLES
	--------------------------------------------------
	Client:	
	Author:	
	Date:	Month, Year
		
*/


/* ===================================================================================== COMMON ELEMENTS */

.horizNavSeparator 
{
	padding: 0px 7px 0px 7px;
}

.current
{
    font-weight:bold;   
}

/* ===================================================================================== TOP NAVIGATION */

#topNav a, 
#topNav a:active, 
#topNav a:visited 
{
	color: #ff0000;
	text-decoration: none;
}

#topNav a:hover 
{
	text-decoration: underline;
}



/* ===================================================================================== MAIN NAVIGATION */

/* ========== Global (Level 1) Navigation ========== */

#nav 
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;		
}

	#nav li 
	{
		margin: 0;
		padding: 0;
		float: left;
		position: relative;
	}

		
	a.mainNavItem, 
	a.mainNavItem:active, 
	a.mainNavItem:visited 
	{
		float: left;
		padding: 0;
		height: 45px;
		background-image: url(/en/images/structure/nav.gif);
		overflow: hidden;
	}

	


/* ========== Drop-down (Level 2) Navigation ========== */

		#nav ul.dropdown
		{
			/*display: none;*/
			position: absolute;
			margin: 0;
			padding: 0;
			padding-right: 8px;
			left: 0px;
			background-color: #887733;
			top: 31px; /* Height of main navigation item */
			list-style-image: none;
			list-style-type: none;
			border: solid 2px white;
			z-index: 1000;
			width: 280px;
		}
		
		#nav ul.lastMainNavDropdown 
		{
			left: auto; /* Required for 'right' to work */
			right: 0px;
			border-left: solid 1px silver;
			border-right: solid 1px silver;
		}
			
			#mainNav ul.dropdown li 
			{
				position: relative;
				background-color: #887733;
				border-bottom: solid 1px silver;
				cursor:pointer;
                font-family:Verdana,Arial,Helvetica,sans-serif;
                font-size:12px;
                padding:5px 4px;
                width:280px;
			}

			#nav ul.dropdown li a, 
			#nav ul.dropdown li a:active, 
			#nav ul.dropdown li a:visited {
                cursor:pointer;
                font-family:Verdana,Arial,Helvetica,sans-serif;
                font-size:12px;
                color: #FFFFFF;
                text-decoration:none;
                
              }

					
			#nav ul.dropdown li a:hover 
			{
				color: #FFF;
				background-color: #af0d0d;
			}
			#nav ul.dropdown li:hover 
			{
				background-color: #af0d0d;
			}
			
			
/* ========== Flyouts (Level 3) Navigation ========== */
			
				#nav ul.flyout
				{
					display: none;
					position: absolute;
					margin: 0;
					padding: 0;
					left: 289px;
					top: 0px;
					list-style-image: none;
					list-style-type: none;
					border-left: solid 1px silver;
					border-right: solid 1px silver;
					border-top: solid 1px #8aa032;
					z-index: 1001;
				}
				
				/* Required for the 'right' navigation to flyin */
				#nav ul.lastMainNavDropdown ul
				{
					left: -300px;
					z-index: 1001;
					width: 290px !important;
				}
				
				/* IE 6 only - Drop-down was bumpped to the left 1px */
				* html #nav div ul.lastMainNavDropdown
				{
					left: auto;
					right: -1px;
					z-index: 1001;
				}
				
				#nav ul a.dropdownItemHasFlyout
				{
					background: url(../images/structure/mainnav_arrow_up.gif) 216px 7px no-repeat;
				}
				
				#nav ul a.dropdownItemHasFlyout:hover
				{
					background: url(../images/structure/mainnav_arrow_over.gif) 216px 7px no-repeat;
				}


.dropdown
{
    display:none;   
}


