/*
// MAIN SECTIONS
*/

#header {
	height: 85px;
}

#header #logo {
	background-repeat: no-repeat;
	background-image: url(/resources/images/AELogo.png);
	height: 80px;
	width: 222px;
	float: left;
}

#header #header_navigation {
	position: relative;
	margin-left: auto;
	width: 500px;
}

/*
// LOGIN BUTTON
*/

#header #header_navigation #login_button {
	color: #787878;
	padding-left: 5px;
	padding-bottom: 2px;
	padding-right: 5px;
	padding-top: 2px;
	position: absolute;
	top: 30px;
	right: 0;
	border: 1px solid #373737;
}

#header #header_navigation a:link,
#header #header_navigation a:active,
#header #header_navigation a:visited {
	color: #787878;
}

#header #header_navigation a:hover {
	color: #ff8000;
	cursor: pointer;
}

#header #header_navigation #loginWindow {
	font-weight: bold;
	padding: 8px;
	font-size: 11px;
	font-family: "Lucida Grande", Verdana, Arial, sans-serif;
	color: white;
	z-index: 10000;
	top: 50px;
	border-width: 1px;
	left: 222px;
	position: absolute;
	border-color: #999999;
	border-style: solid;
	height: 120px;
	width: 240px;
	background-color: #252525;
	-webkit-border-radius: 6px;
	-moz-border-radius: 8px;
	-webkit-box-shadow: 0px 6px 6px #000;
}

#header #header_navigation .pane {
	left: 8px;
	top: 8px;
	position: absolute;
}

#header #header_navigation #loginWindow table {
	width: 100%;
}

#header #header_navigation #loginWindow td {
	height: 17px;
	margin: 4px;
	padding: 4px;
}

#header #header_navigation #loginWindow .forgot {
	font-style: normal;
	font-weight: normal;
}

#header #header_navigation #loginWindow .forgot:hover {
	font-style: normal;
	font-weight: normal;
	color: #ff8000;
	cursor: pointer;
}

#header #header_navigation #loginWindow .closeButton:hover {
	color: #ff8000;
	cursor: pointer;
}

/*
// MENU BAR
*/

#header #header_navigation #menus {
	position: absolute;
	top: 67px;
	right: 0;
	height: 23px;
}

#header #header_navigation #menus ul li {
	display: block;
	position: relative;
	float: left;
	height: 30px; /* stabilize suckerfish menus */
	line-height: 25px;
	margin-left: 10px;
	padding: 0 7px;
}

/*
// MENU TITLES
*/

#header #header_navigation #menus ul li.title {
	border-style: solid;
	border-width: 0px;
	border-color: black;
	color: #cccccc;
	font-size: 15px;
	cursor: default;
}

#header #header_navigation #menus ul li#active_menu,
#header #header_navigation #menus ul li.title:hover,
#header #header_navigation #menus ul li a:hover {
	color: #ff8000;
}


/*
// MENU ITEMS
*/


#header #header_navigation #menus ul li li {
	width: 135px;
	height: 22px;
	line-height: 22px;
	margin: 0;
	padding: 0;
	border: 0;
}

#header #header_navigation #menus ul li ul {
	visibility: hidden;
	left: -1px;
	top: 26px;
	position: absolute;
	width: 135px;
	z-index: 10000;
	border: 1px solid #4C4C4C;	
	background-color: #252525;
	-webkit-border-radius: 6px;
	-moz-border-radius: 8px;
	-webkit-box-shadow: 0px 6px 6px #000;
	/* the following opacity calls make text in the rest of the div go "thin" in Firefox */
	opacity:0.90;
	filter:alpha(opacity=90);
	-moz-opacity:0.90;
}

#header #header_navigation #menus ul li:hover ul,
#header #header_navigation #menus ul a:hover ul {
	visibility: visible;
}

#header #header_navigation #menus ul li ul li a:link,
#header #header_navigation #menus ul li ul li a:active,
#header #header_navigation #menus ul li ul li a:visited {
	padding-left: 12px;
	color: #cccccc;
	font-size: 12px;
}

#header #header_navigation #menus ul li ul li a:hover {
	color: rgb(255, 127, 0);
}

