

/********************** NAVIGATION BAR **********************/

div#nav-bar {
	position: relative;
	left: 0px;
	height: 24px;
	padding-top: 2px;

	background-color: white;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #EEEEEE;

	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}

div#nav-path {
	position: absolute;
	left: 10px;
}
div#nav-user {
	position: absolute;
	right: 10px;
	text-align: right;
	color: #CCCCCC;
}


/********************** MENU & ITEMS **********************/

div#nav-menu {
	position: absolute;
	left: 20px;
	top: 70px;
	height: 20px;
}

#nav-menu ul {
	float: left;
	list-style: none;
	padding: 0px;
	margin: 0px;
	width: 100%;
	text-align: center;
/*	background-color: #66BBCC; */

}
#nav-menu li {
	float: left;
	margin: 0px;
	margin-left: 10px;
	padding: 0px;

	border-style: solid;
	border-color: #DDDDDD;
	border-width: 1px;
	border-bottom-width: 0px;
}
#nav-menu li.first {
	margin-left: 0px;
}

#nav-menu li a {
	background: #F3FEFF;
	height: 20px;
	float: left;
	min-width: 100px;
	margin: 0px;
	display: block;
	text-decoration: none;
	text-align: center;

	background: #EEEEEE;

	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	color: black;
	
}
#nav-menu li a:hover, #nav-menu li a:active  {
	background-color: #C1CDCD;
	text-decoration: none;
}



div#navclear {
  	display: block;
	clear: both; }


