/*
general settings for list containers that make up the navbar
*/
.headerNavbar ul
{
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;	
}

/*
This is here to prevent the menu from wrapping to another line
when the window is resized smaller than 950px - change 01
*/
.headerNavbarContainer
{
	width: 1000px;
	clear: both;
}

.headerNavbar
{
	list-style: none;
}

/*
side fade gfx
*/
.headerNavbarSide
{
	float: left;
	width: 188px;
	background-image:url(../gfx/default/nav_bg.gif);
	height: 20px;
	/*border-top: 1px solid #b9c3cd;
	border-bottom: 1px solid #b9c3cd;*/
	border-right: 1px solid #b9c3cd;
	background-repeat: repeat-x;
	line-height: 18px;
}
/*
Definition for all LI tags in the navbar
*/
.headerNavbar li
{
	color: #444;
	background-image:url(../gfx/default/nav_bg.gif);
	/*border-top: 1px solid #b9c3cd;
	border-bottom: 1px solid #b9c3cd;*/	
	border-right: 1px solid #b9c3cd;
	float: left;
	margin: 0px;
	position: relative;
	z-index: 1000;
	text-align:center;
	width:160px;
	padding: 0px;
	height: 20px;
}


/*
Definition for only submenu LI tags
*/
.headerNavbar li li
{
	height: 20px;
	width:160px;
	float: none;
	width: 211px;
	text-align:left;
	/*top:1px;*/
	padding: 0px;
	margin: 0px;
	/*border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-bottom-color: #b9c3cd;
	border-left-color: #b9c3cd;
	border-top-width: 0px;
	border-right-width: 0px;
	border-right-style: none;*/
}

/*
a tags in submenus. A necessity to get A tags clickable in the entire menu
as opposed to just the text.
*/
.headerNavbar li li a
{
	padding-left :5px;
	padding-top:2px;
	padding-bottom:0px;
	margin: 0px;
	height: 20px;
}

/*
Definition for submenu UL tags aligned to the left of their parent item
*/
.headerNavbar li ul.leftNav
{
	display: none;
	position: absolute;
	top: 20px;
	left: -1px;
	z-index: 1000;
}

/*
Definition for submenu UL tags aligned to the right of their parent item
*/
.headerNavbar li ul.rightNav
{
	display: none;
	position: absolute;
	top: 20px;
	right: -1px;
	z-index: 1000;
}

/*
This is an opera browser fix.
*/
.headerNavbar li > .headerNavbar ul
{
	top: auto;
	left: auto;
}

/*
Definition for when you hover over a top level LI
It will display a UL tag if there are any
*/
.headerNavbar li:hover ul, .headerNavbar li.over ul
{
	display: block;
}

/*
ie fix - Margins are a bit discombobulated in IE so this fixes them.
*/
.headerNavbar li.over ul
{
	margin: 0px;
}

/*
ie fix
*/
.headerNavbar li.over ul.rightNav
{
	right: -2px;
}

/*
Navbar A tags
*/
.headerNavbar a
{
	color: #000;
	text-decoration: none;
	position: relative;
	display: block;
	background-image: url('../gfx/default/nav_bg.gif');
	line-height: 18px;
	padding-bottom:0px;
	margin: 0px;
	height: 20px;
	z-index: 1000;
}

/*
A hover - fixes IE flickering background problem
*/
.headerNavbar a:hover
{
	background-image:url('../gfx/default/navbarGradBgOver.gif');
}





/*
Div containing upper most header content - change 02
*/
.header
{
	width: 980px;
	text-align:right;
	margin-bottom:10px;
	margin-top:10px
}

/*
Budget's logo in the upper most header
*/
.header .logo
{
	padding-left:10px;
	float: left;
}

/*
country selector container
*/
.header p
{
	color: #ccc;
	background-color: inherit;	
	font: 12px arial, sans-serif;
	margin-top: 0px;
}

/*
space out the link
*/
.header a
{
	/*padding-left: 10px;
	padding-right: 10px;*/
}

.header a:hover
{
	/*padding-left: 10px;
	padding-right: 10px;*/
	color: #fd6f00;
}

/*
select menu
*/
.header select
{
	font: 10px tahoma;
	width: 180px;
	margin-left: 10px;
}

