/* St. Johns Main Menu Bar CSS */

.nav_bar ul{
left: 144px;
position: absolute;
top: 115px;
right: 0;
padding: 0;
font: 12px/normal "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
list-style-type: none;
border-bottom: 1px solid gray;
background: #085390;
overflow: hidden;

}

.nav_bar li{
display: inline;
margin: 0;
}

.nav_bar li a{
float: left;
display: block;
text-decoration: none;
margin: 0;
padding: 6px 8px; /*padding inside each tab*/
border-right: 1px solid white; /*right divider between tabs*/
color: white;
background: #085390;
	font-weight: normal;
	font-style: normal;
}

.nav_bar li a:visited{
color: white;
}

.nav_bar li a:hover{
background: black; /*background of tabs for hover state */
}

.nav_bar a.selected{
background: #797979; /*background of tab with "selected" class assigned to its LI */
}
