/* fixed menu and login info */
#fixed {
	position: fixed;
	width: 920px;
	z-index: 5;
}

/* logged in styles */
#logged_in_wrapper {
	/* background: #888 url('/images/top_background.jpg') repeat-x top;  */
	background: #888;
	font-size: .8em;
	padding: 2px 4px 2px 6px;
}

#logged_in_wrapper {
	color: #fff;
}

#logged_in_wrapper a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

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

#logged_in_wrapper strong {
	color: #fff;
}

#logged_in {
	float: right;
	width: 50%;
	text-align: right;
	color: #444;
}

#logged_in a {
	color: #444;
	font-weight: normal;
}

#logged_in a:hover {
	color: #fff;
}

/* menu styles */
#menu_wrapper {
	padding: 5px 0px;
	font-size: .8em;
	background: #A2C5CF;
}

#menu {
	text-align: left;
	float: left;
	margin: 0;
	list-style: none;
	padding-left: 0px;
	color: #fff;
}

#menu a {
	text-decoration: none;
	color: #fff;
}

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

#menu li {
	position: relative;
	display: inline;
	padding: 5px;
}

#menu li:hover {
	background: #89ABB3;	
}

#menu li:hover ul {
	display: block;
}

#menu li ul {
	left: 0px; /* this seems to position the ul directly underneath the containing li in Firefox */
	margin: 5px 0 0 0;
	padding: 0;
	list-style: none;
	position: absolute;
/*	width: 12em; */
	white-space: nowrap;  /* this prevents word wrap without needing to specify a menu item width */
	min-width: 12em;  /* specified a minimum width so menus with short submenu words won't look weird */
	display: none;
	background: #89ABB3;
	opacity: 0.97;
	-moz-opacity: 0.97;
	filter: alpha(opacity=97);
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
	z-index: 5;
}

#menu li ul li {
	display :block;
	padding: 5px;
	margin: 2px 0;
}

#menu li ul li:hover {
	background: #78989F;
}

#menu hr {  /* separator */
	border-bottom: solid 1px #749399;
	height: .1em;
}

