/**************** MAIN MENU ****************/
#navigation {
    background: url('images/nav_bg.png') 0 0 repeat-x;
    height: 60px;
    font-size: 1.875em;  /* 30/16=1.875   */
    font-family: 'Bebas Neue';
    position: relative;
    z-index: 3;
}
.menu, .menu li{
    position: relative;
}

/*---- Active link ----*/
#navigation > .widget > ul > .active > a {
    background: url('images/nav_bg.png') 0 -180px repeat-x;    
}
#navigation ul,
#navigation ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}
#navigation ul {
    -webkit-font-smoothing: antialiased;
}
#navigation ul li {
    -webkit-font-smoothing: antialiased;
    list-style: none;
    float: left;
    display: inline;
}

/*---- #navigation ----*/
#navigation ul a {
    background: url('images/nav_bg.png') 0 -60px repeat-x;
    padding: 20px 25px 19px;
    display: block;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
}
#navigation ul a:hover {
    background: url('images/nav_bg.png') 0 -120px repeat-x;
}
#navigation ul a:active {
    position: relative;
    top: 1px;
}
#navigation .dropdown:after {
    content: ' ▶';
    font-size: 0.5em;
    line-height: 0;
    padding-left: 5px;
}
#navigation .dropdown:hover:after{
    content:'\25bc';
}

/*---- level two ----*/
#navigation li ul { 
    min-width: 180px; 
    visibility: hidden; 
    position: absolute; 
    top: 100%; 
    left: 0;
    color: #fff;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    font-size: 0.5em;
    text-transform: uppercase;
    opacity: 0;
}
#navigation li ul li {
    font-weight: normal;
    background: none;
    float: none;
    z-index:999;                       
}
#navigation li ul li a { 
    background: url('images/nav_bg.png') 0 -5px repeat-x;
    border-right: none; 
    width: 180px !important; 
    padding: 12px 20px 12px 30px;
    display: inline-block;  /* IE 6 & 7 Needs Inline Block */
    color: #fff;
    border-bottom: 1px dashed #7f7064;
    text-align: left;    
} 
#navigation li ul li a:last {
    border-bottom:0px !important;
}		
#navigation li ul li a:hover {
    background: url('images/nav_bg.png') 0 -125px repeat-x;
}

/*---- level three ----*/
#navigation ul ul ul {
    left: 100%;
    top: -14px;
    opacity: 0;
    font-size: 1em;
}
#navigation ul li:hover > ul {
    visibility: visible;
    opacity: 1;
}
.sub_menu { z-index:999; }

/* Fix for IE 8 putting the arrows behind the select element. */
.lt-ie9 .product_sort {
  z-index: 1;
}
.lt-ie9 .product_sort {
  z-index: -1;
}
.lt-ie9 .product_sort:focus {
  z-index: 3;
}
#navigation ul a, #navigation ul a:hover,
#navigation ul ul, #navigation ul ul:hover,
#navigation ul ul ul, #navigation ul ul ul:hover {
/*---- animation ----*/
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/**************** Responsive/Mobile ****************/
@media screen
and (max-width: 64em) {
}
