.sf-navbar {
width:100%;/*Sets the width of the entire menu to 100% of the page width*/
}
/*** adding the class sf-navbar in addition to sf-menu creates an all-horizontal nav-bar menu ***/
.sf-navbar {
background: #002d6a;
height:	35px;
/*padding-bottom: 2.5em;*/
position: relative;
}
.sf-navbar li {
background: #002d6a;
position: static;
font-weight: bold;
text-transform: uppercase;
}
.sf-navbar a {
color: #fff;
border-top:	none;
}
.sf-navbar li ul {
width: 100%; /*IE6 soils itself without this*/
}
.sf-navbar li li {
background-color:#9fa617;
position: relative;
font-size: .8em
}
.sf-navbar li li a {
padding-top:10px;
padding-bottom:10px;
}
.sf-navbar li li ul {
width: 13em;
}
.sf-navbar li li li {
width: 100%;
}
.sf-navbar ul li {
width: auto;
float: left;
}
.sf-navbar a, .sf-navbar a:visited {
border: none;
}
.sf-navbar li.current {
background: #b7bc51;
}
/*current and rollover for first level of buttons*/
.sf-navbar li:hover,
.sf-navbar li.sfHover,
.sf-navbar li li.current,
.sf-navbar a:focus, .sf-navbar a:hover, .sf-navbar a:active {
color:#335788;
background-color:#b7bc51;
}
/*rollover for second level of buttons*/
.sf-navbar ul li:hover,
.sf-navbar ul li.sfHover,
ul.sf-navbar ul li:hover li,
ul.sf-navbar ul li.sfHover li,
.sf-navbar ul a:focus, .sf-navbar ul a:hover, .sf-navbar ul a:active {
color:#335788;
background-color: #cfd28b;
}
/*settings for third level buttons*/
.sf-navbar ul li:hover a,
.sf-navbar ul li.sfHover a{
color:#335788;
}

/*rollover for third level of buttons*/
ul.sf-navbar li li li:hover,
ul.sf-navbar li li li.sfHover,
.sf-navbar li li.current li.current,
.sf-navbar ul li li a:focus, .sf-navbar ul li li a:hover, .sf-navbar ul li li a:active {
color: #fff;
background-color: #9fa617;
}

ul.sf-navbar .current ul,
ul.sf-navbar ul li:hover ul,
ul.sf-navbar ul li.sfHover ul {
left: 0;
top: 30px; /* match top ul list item height */
}
ul.sf-navbar .current ul ul {
top: -999em;
}
/*settings for current button on the third level of buttons*/
.sf-navbar li li.current > a {
color:#335788;
font-weight:bold;
background-color:#b7bc51
}


/*** point all arrows down ***/
/* point right for anchors in subs */
.sf-navbar ul .sf-sub-indicator { background-position: -10px -100px; }
.sf-navbar ul a > .sf-sub-indicator { background-position: 0 -100px; }
/* apply hovers to modern browsers */
.sf-navbar ul a:focus > .sf-sub-indicator,
.sf-navbar ul a:hover > .sf-sub-indicator,
.sf-navbar ul a:active > .sf-sub-indicator,
.sf-navbar ul li:hover > a > .sf-sub-indicator,
.sf-navbar ul li.sfHover > a > .sf-sub-indicator {
background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/*** remove shadow on first submenu ***/
.sf-navbar > li > ul {
background: transparent;
padding: 0;
-moz-border-radius-bottomleft: 0;
-moz-border-radius-topright: 0;
-webkit-border-top-right-radius: 0;
-webkit-border-bottom-left-radius: 0;
}