
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sf-menu {
    line-height: 1.0;
}
.sf-menu ul {
    position: absolute;
    top: -999em;
    width: 12em; /* left offset of submenus need to match (see below) */
    line-height: 1.1em;
}
.sf-menu ul li {
    width: 100%;
}
.sf-menu li:hover {
    visibility: inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
    float: left;
    position: relative;
}
.sf-menu a {
    display: block;
    position: relative;
}
/* IE needs z-index help */
.sf-menu li.sfHover {
    z-index: 2001;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
    left: 0;
    top: 1.3em; /* match top ul list item height */
    z-index: 2001;
    border: 1px solid #aaa;
    box-shadow: 0 2px 4px #ccc;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
    top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
    left: 10em; /* match ul width */
    top: 0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
    top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
    left: 10em; /* match ul width */
    top: 0;
}

/*** DEMO SKIN ***/
.sf-menu a {
    border-bottom: 1px solid #aaa;
    padding: 0.5em 0.75em;
    text-decoration: none;
}
.sf-menu li.level3 {
    background-color: #FFF;
/* background: url(theme/images/ui-bg_highlight-hard_40_d6ebe1_1x100.png) repeat-x scroll 50% 50% #FAC6B3; */
}
.sf-menu li.level3 a {
    color: #000;
}
.sf-menu li li {
/*    background: #F3FCF7;*/
}
.sf-menu li li li {
/*    background: #F3FCF7;*/
}
.sf-menu li.level3:hover,
.sf-menu a.level3:focus, .sf-menu a.level3:hover, .sf-menu a.level3:active {
    outline: 0;
}
.sf-menu li.level3 a:hover {
    /* background: url(theme/images/ui-bg_highlight-soft_75_46b0cc_1x100.png) repeat-x scroll 50% 50% #46B0CC; */
    background-color: #10757E;
    color: #FFF;
    text-decoration: none;
}
.sf-menu li.disabled:hover, .sf-menu li.disabled.sfHover,
.sf-menu a.disabled:focus, .sf-menu a.disabled:hover, .sf-menu a.disabled:active {
    background: #F5F5F5;
    cursor: auto;
}

/*** arrows **/
.sf-menu a.sf-with-ul {
    padding-right: 2.25em;
    min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
    position: absolute;
    display: block;
    top: 0.5em;
    right: 0.25em;
    width: 7px;
    height: 4px;
    text-indent: -999em;
    overflow: hidden;
    background: url(../../images/dropdown_arrow.png) no-repeat;
/*
    width: 16px;
    height: 16px;
    background: url(theme/images/ui-icons_696969_256x240.png) no-repeat -64px -16px;
*/
}
/* point right for anchors in subs */
.sf-menu ul a > .sf-sub-indicator {
    background:     url(theme/images/ui-icons_000000_256x240.png) no-repeat -32px -16px;
 }

/*** shadows for all but IE6 ***/
.sf-shadow ul {
    background: url(../images/shadow.png) no-repeat bottom right;
    padding: 0 8px 9px 0;
    -moz-border-radius-bottomleft: 17px;
    -moz-border-radius-topright: 17px;
    -webkit-border-top-right-radius: 17px;
    -webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
    background: transparent;
}
