/* Reset */
.menu,
.menu ul,
.menu li,
.menu a {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    z-index:10;
}

/* Menu */
.menu {}

.menu li {
    position: relative;
    list-style: none;
    float: left;
    display: block;
}

/* Links */

.menu li a {
    display: block;
    padding: 0 2.15em;
    margin: 0;
    height:33px;
    text-decoration: none;
    font-size:0.8em; 
    line-height:2.8em;
    color: #f3f3f3;
    font-weight:bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,.6);
}

.menu li:hover > a, .menu li.selNav > a { background: #E40613; }

/* Sub Menu */

.menu ul {
    position: absolute;
    top: 33px;
    left: 0;
    opacity: 0;
    background: #E40613;
    width:230px;
    -webkit-transition: opacity .25s ease .1s;
    -moz-transition: opacity .25s ease .1s;
    -o-transition: opacity .25s ease .1s;
    -ms-transition: opacity .25s ease .1s;
    transition: opacity .25s ease .1s;
}

.menu li:hover > ul { opacity: 1;z-index: 999; }

.menu ul li {  
    height: 0;
    overflow: hidden;
    padding: 0;
    -webkit-transition: height .25s ease .1s;
    -moz-transition: height .25s ease .1s;
    -o-transition: height .25s ease .1s;
    -ms-transition: height .25s ease .1s;
    transition: height .25s ease .1s;
}

.menu li:hover > ul li {
    height: 33px;
    overflow: visible;
    padding: 0;
}

.menu ul li a {
    display:block;
    padding: 0 0 0 33px;
    margin: 0;
    border: none;
    width:197px;
    background: url(../img/arrowNav.png) 23px center no-repeat;
    font-size:0.8em; 
    line-height:2.6em;
}

.menu ul li:last-child a { border: none; }

.menu li:hover ul li:hover > a { background: #10242b url(../img/arrowNav.png) 23px center no-repeat; }