.nav,.nav * {
    margin: 0;
    padding: 0;
}

.nav {
    position:relative; 
    z-index:10;
    height: 34px;
    line-height: 1;
    position: relative;
    width:100%;
}

.nav ul {
    background: #fff; /*IE6 needs this*/
    float: left;
    position: relative;
}

/* LEVEL1 NORMAL */
.nav li {
    background: #f1f1f1;
    float: left;
    list-style: none;
    z-index: 49;
    margin-right:-1px;
    border: 1px solid #dddddd;
    border-bottom:0;
    border-radius: 4px 4px 0 0 ;
    -moz-border-radius:  4px 4px 0 0 ;
    -webkit-border-radius:  4px 4px 0 0 ;
}

.nav li.sfHover ul,ul.nav li:hover ul {
    z-index: 50;
}

.nav a {
    border-bottom: 1px solid #dddddd;
    color: #444444;
    font-size:18px;
    display: block;
    float: left;
    padding: 8px 27px 0px 27px;
    height:25px;
    text-decoration: none;
    font-weight: normal;
}


/* LEVEL1 HOVER */
.nav li:hover,.nav li.sfHover{
    background: #fff;
}

.nav li:hover a, .nav li.sfHover a, .nav li.sfActive a, .nav a:hover {
    color:#e87500;
}

.nav li:hover a{
    text-decoration:underline; 
}
.nav li.sfActive.sfHover a, .nav li.sfActive:hover a {
    border-bottom-color: #fff;
}

.nav li ul {
    padding:9px 0 5px 0;
    left: 0px;
    top: -999em;
    position: absolute;
    height:25px;
    width:100%;
    background:none;
    
}


/* LEVEL2 NORMAL */
.nav li li  {
    background: none!important;
    border:0;
    text-align:center; 
}
.nav li li a {
    padding:5px 15px;
    font-size:14px;
    border:0;
    float:none; 
    display:inline-block; 
    height:auto; 
    background: none!important;
    color: #444444!important;
    text-decoration:none!important; 
}

/* LEVEL2 HOVER */
.nav li li:hover a,.nav li li.sfHover a,.nav li li a:hover{
    color:#e87500!important;
}

.nav li li.sfHover a{
    font-weight: bold;
    text-decoration:none!important; 
}

.nav li:hover ul, ul.nav li.sfHover ul{
    top: 35px;
    opacity: 1;
}

.nav li ul {
    opacity: 0;
}

.nav li:hover ul {
    -webkit-transition: opacity 300ms ease-out 10ms; /* property duration timing-function delay */
    -moz-transition: opacity 300ms ease-out 10ms;
    -o-transition: opacity 300ms ease-out 10ms;
    transition: opacity 300ms ease-out 10ms;
}

