/*
*	CSS MenuBar
*/
div.menubar {
	margin: 64px 0px 0px 0px;
	display: block;

	background-color: #eedebf;
	border-width: 0px;

	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	text-align: left;

	padding: 2px 0px 2px 150px;
	line-height: 12px;
}

.menubar a, .menubar a:visited {
	color: #505050;
	background-color: #eedebf;
	padding: 2px 10px 2px 10px;
	font-size: 10px;
    	text-decoration: none;
}

.menubar a.current {
	border-top: 3px solid #f90;
}

.menubar a:active, .menubar a:hover, .menubar a:focus {
	color: #f0f0f0;
	background-color: #284b78;
}

/*
*	CSS PopupMenu
*/
div.popupmenu {
	position: absolute;
	visibility: hidden;

	border-width: 1px;
	border-style: solid;
	border-color: #eedebf;
	border-collapse: collapse;

	padding: 0px;
	width: auto;

	font-size: 10px;
	font-weight: bold;

	text-decoration: none;
	text-align: left;
	z-index: 2000;

	/* to avoid flashing initialize submenus out of sight */
	top: -200px;
	left: -200px;

}

.popupmenu a span {
	position: absolute;
	right: 5px;
	padding-left: 40px;
	font-size: x-small;
	font-weight: bold;
	vertical-align: middle;
}

.popupmenu a, .popupmenu a:visited{
	display: block;
	color: #505050;
	background-color: #eedebf;
	padding: 2px 20px 2px 10px;
	text-decoration: none;
	z-index: 1000;
}

.popupmenu a:active, .popupmenu a:hover, .popupmenu a:focus {
	color: #fff;
	background-color: #284b78 ;
	z-index: 1000;
}

r, .popupmenu a:focus {
	color: #fff;
	background-color: #284b78 ;
	z-index: 1000;
}

