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


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

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

.horizNavSeparator_breadcrumbs 
{
	padding: 0px 5px 0px 5px;
	color: #FFFFFF;
}

.horizNavSeparator_actions 
{
	padding: 0px 5px 0px 5px;
	color: #b2d2df;
}

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

#topNav a, 
#topNav a:active, 
#topNav a:visited 
{
	color: #494949;
	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;
	}
	
	#navTab01, 
	#navTab02, 
	#navTab03, 
	#navTab04, 
	#navTab05 
	{
		position: relative;
		float: left;
	}
	
	a.mainNavItem, 
	a.mainNavItem:active, 
	a.mainNavItem:visited 
	{
		float: left;
		padding: 0;
		
		height: 40px;
		background-image: url(/en/images/structure/mainNav.jpg);
		text-indent: -9999px;
		font-size: 1%;
		overflow: hidden;
	}
	
	#navTab01 a.mainNavItem { background-position: 0px 0px; width: 96px;}
	#navTab02 a.mainNavItem { background-position: -96px 0px; width: 185px;}
	#navTab03 a.mainNavItem { background-position: -281px 0px; width: 137px;}
	#navTab04 a.mainNavItem { background-position: -418px 0px; width: 100px;}
	#navTab05 a.mainNavItem { background-position: -518px 0px; width: 128px;}
	
	#navTab01 a.mainNavItem:hover { background-position: 0px -40px; }
	#navTab02 a.mainNavItem:hover { background-position: -96px -40px; }
	#navTab03 a.mainNavItem:hover { background-position: -281px -40px; }
	#navTab04 a.mainNavItem:hover { background-position: -418px -40px; }
	#navTab05 a.mainNavItem:hover { background-position: -518px -40px; }
	
	#navTab01 a.current { background-position: 0px -40px; }
	#navTab02 a.current { background-position: -96px -40px; }
	#navTab03 a.current { background-position: -281px -40px; }
	#navTab04 a.current { background-position: -418px -40px; }
	#navTab05 a.current { background-position: -518px -40px; }


/* ========== Homepage Navigation ========== */


	a.homeNavItem, 
	a.homeNavItem:active, 
	a.homeNavItem:visited 
	{
		float: left;
		padding: 0;
		margin: 0;
		height: 97px;
		background-image: url(/en/images/structure/homeNav.jpg);
		text-indent: -9999px;
		font-size: 1%;
		overflow: hidden;
	}
	
	#navTab01 a.homeNavItem { background-position: 0px 0px; width: 128px;}
	#navTab02 a.homeNavItem { background-position: -128px 0px; width: 90px;}
	#navTab03 a.homeNavItem { background-position: -218px 0px; width: 129px;}
	#navTab04 a.homeNavItem { background-position: -347px 0px; width: 172px;}
	#navTab05 a.homeNavItem { background-position: -519px 0px; width: 137px;}
	
	#navTab01 a.homeNavItem:hover { background-position: 0px -97px; }
	#navTab02 a.homeNavItem:hover { background-position: -128px -97px; }
	#navTab03 a.homeNavItem:hover { background-position: -218px -97px; }
	#navTab04 a.homeNavItem:hover { background-position: -347px -97px; }
	#navTab05 a.homeNavItem:hover { background-position: -519px -97px; }
	
/* ========== Drop-down (Level 2) Navigation ========== */

		#mainNav ul.dropdown
		{
			display: none;
			position: absolute;
			margin: 0;
			padding: 0;
			left: 0px;
			top: 40px; /* Height of main navigation item */
			list-style-image: none;
			list-style-type: none;
			border-left: solid 1px silver;
			border-right: solid 1px silver;
			z-index: 1000;
		}
		
		#mainNav 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: #FFF;
				border-bottom: solid 1px silver;
			}
				
			#mainNav ul.dropdown li a, 
			#mainNav ul.dropdown li a:active, 
			#mainNav ul.dropdown li a:visited 
			{
				display: block;
				padding: 3px 5px 3px 5px;
				width: 220px;				
				background-color: #FFF;
				font-family: Arial, Helvetica, sans-serif;
				font-size: 12px;
				text-decoration: none;
				color: #7DA7D9;
				cursor: pointer;	
			}
					
			#mainNav ul.dropdown li a:hover 
			{
				background-color: #7DA7D9;
				color: #FFF;
			}
			
			
/* ========== Flyouts (Level 3) Navigation ========== */
			
				#nav ul.flyout
				{
					display: none;
					position: absolute;
					margin: 0;
					padding: 0;
					left: 230px;
					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: -230px;
					z-index: 1001;
					width: 230px !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;
				}




/* ===================================================================================== BREADCRUMBS  */

#breadcrumbs a, 
#breadcrumbs a:visited, 
#breadcrumbs a:active 
{
	text-decoration: none;
	color: #FFFFFF;
	font-size: 13px;
}

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




/* ===================================================================================== ACTIONS  */

#actions a, 
#actions a:active, 
#actions a:visited 
{
	position: relative;
	padding: 0 0 0 0;
	height: 16px;
	text-decoration: none;
	color: #FFFFFF;
}

#actions a:hover 
{
	color: #FFFFFF;
	text-decoration: underline;
}

#actions .printLink img,
#actions .rssLink img,
#actions .emailLink img,
#actions .ShareLink img 
{
    padding-right: 3px;
}

/*
 
	Share Drop-down Styles
	
*/

#Share
{
	position: relative;
	cursor: pointer;
	z-index: 999;
}

/* 
	Need background image as link cannot be empty otherwise it will
	have no clickable/hoverable area
*/
a.ShareLink, 
a.ShareLink:active,
a.ShareLink:visited
{
	padding: 0;
}
			
	/* Individual share item container */
	#Share ul
	{
		position: absolute; 
		display: none;
		list-style-image: none; 
		list-style-type: none; 
		padding: 0;
		margin: 0;		
		top: 16px; /* This should be the height of the share icon so that the menu will display directly below */
		left: 0;
		list-style-image: none; 
		list-style-type: none; 
		background-color: #ffffff;
		border: solid 1px #e9e9e9;
	}




/* ===================================================================================== SUB NAVIGATION */

#subNav 
{
	float: left; /* Contain floated list items */
	margin: 18px 0px 4px 0px;
	padding: 0px 0px 20px 0px;
	width: 172px;
	list-style-image: none;
	list-style: none;
}
	
	#subNav li 
	{
		float: left; /* This corrects the */
		width: 100%; /* IE whitespace bug */
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		border-bottom: 1px solid #b3b3b3;
		list-style-image: none;
		list-style: none;
	}
	
	#subNav li.last 
	{
		border-bottom: none;
	}
	
	#subNav a, 
	#subNav a:active, 
	#subNav a:visited 
	{
		display: block;
		padding: 5px 3px 4px 17px;
		color: #000000;
		text-decoration: none;
	}
	
	#subNav a:hover 
	{
		text-decoration: underline;
	}
	
	#subNav a.current 
	{
		color: #848484;
		font-style:italic;
	}
	
		#subNav a.current:active, 
		#subNav a.current:visited 
		{
			color: #666666;
			text-decoration: none;
		}
		
		#subNav li ul
		{
			margin: 0 0 0 0;
			padding: 0;
			/*background: red;*/
			border-top: 1px solid #b3b3b3;
	
		}
		
		#subNav li ul li
		{
			margin: 0;
			padding: 0;			
			border-bottom: none;
			background: url(/images/structure/subnav_bullet.gif) 17px 11px no-repeat;	
		}
		
		#subNav li ul li a
		{
			
			display: block;
			padding: 0;
			margin: 0 0 0 12px;
			padding: 3px 3px 3px 18px;
	
		}
		



/* ===================================================================================== FOOTER NAVIGATION */

#footerNav a, 
#footerNav a:active, 
#footerNav a:visited 
{
	color: #666666;
	text-decoration: none;
}

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




/* ----- END OF TEMPLATE ----- */