/* 	==================================================================
	A flexible navigation bar (tabs)
	=================================================================*/

.menu_bar {
	float:left;
  	width: 100%;
  	margin: 0;
  	padding: 10px 0 0 16px;
  	list-style: none;
  	background-color: #cf9b00;
	color:#000000;
  	background-image:url(Images/tab_underline.bmp);
  	background-position:bottom;
  	background-repeat:repeat-x;
}
  
.menu_bar li {
  	float: left;
  	margin: 0;
  	padding: 0;
  	font-size: 100%;
}
 
.menu_bar .menu_btn{
	float: left;
	margin:0 0 8px 8px;
	font-size:100%;
}
 
.menu_bar a {
  	float: left;
  	display: block;
  	margin: 0 1px 0 0;
  	padding: 4px 8px;
  	color: #333;
  	text-decoration: none;
  	border-top-color:#000033;
  	border-top-style:solid;
  	border-top-width:1px;
  	border-left-color:#000033;
  	border-left-style:solid;
  	border-left-width:1px;
  	border-right-color:#000033;
  	border-right-style:solid;
  	border-right-width:1px;
  	border-bottom-style:none;
  	background-color:#ffe75c;
  	background-image:url(Images/tab_unsel.gif);
  	background-position:top;
  	background-repeat:repeat-x;
}

.menu_bar .menu_btn a {
  	position:relative;
	top: -6px;
	float: left;
  	display: block;
  	margin: 0 0 8px 8px;
  	padding: 4px 8px;
  	color: #333;
  	text-decoration: none;
  	border-color:#000033;
  	border-style:solid;
  	border-width:1px;
  	background-color:#b4b9e2;
/*
  	background-image:url(/Images/tab_unsel.gif);
  	background-position:top;
  	background-repeat:repeat-x;
*/
}

.menu_bar .menu_btn a:hover{
	padding: 4px 8px;
	background-color:#FFFFFF;
	color:#990000;
	text-decoration:none;
}


