/*
CSS: Mega Drop Down Menus w/ CSS & jQuery/
URL:: https://www.sohtanaka.com/web-design/mega-drop-downs-w-css-jquery/
*/

ul#topnav {
    margin: 0;
    padding: 0;
    float: left;
    width: 100%;
    list-style: none;
    font-size: 1.1em;
    border-bottom: #eeeeee thin solid;
    border-top: #eeeeee thin solid;
}
ul#topnav li {
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 200;
}
ul#topnav li a.nivel1 {
    float: left;
    color: #666666;
    display: block;
    line-height: 44px;
    padding: 0 10px;
    text-align: center;
    font-size: 15px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    border-right: #e2e2e2 solid thin;
}
ul#topnav li a:hover.nivel1 {
    color: #d76f2c;
}
ul#topnav li a.naranja {
    color: #e46713;
    float: left;
    /*background-color:#605d5c;*/
    display: block;
    line-height: 44px;
    padding: 0 10px;
    text-align: center;
    font-size: 15px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    border-right: #e2e2e2 solid thin;
    /*border-bottom: #605d5c solid 2px;*/
}
ul#topnav li:hover a,
ul#topnav li a:hover {
    background-position: left bottom;
}
ul#topnav a.home {
    /*background: url(nav_home.png) no-repeat;*/
    width: 78px;
}
ul#topnav a.products {
    /*background: url(nav_products.png) no-repeat;*/
    width: 117px;
}
ul#topnav a.sale {
    /*background: url(nav_sale.png) no-repeat;*/
    width: 124px;
}
ul#topnav a.community {
    /*background: url(nav_community.png) no-repeat;*/
    width: 124px;
}
ul#topnav a.store {
    /*background: url(nav_store.png) no-repeat;*/
    width: 141px;
}

ul#topnav li .sub {
    position: absolute;
    top: 44px;
    left: 0;
    padding: 20px 20px 20px;
    background-color: #fff;
    float: left;

    -moz-border-radius-bottomright: 20px;
    -khtml-border-radius-bottomright: 20px;
    -webkit-border-bottom-right-radius: 20px;

    -moz-border-radius-bottomleft: 20px;
    -khtml-border-radius-bottomleft: 20px;
    -webkit-border-bottom-left-radius: 20px;
    border-bottom: #333 thin solid;
    border-left: #333 thin solid;
    border-right: #333 thin solid;
    display: none;
    z-index: 10;
}
ul#topnav li .row {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

ul#topnav li .sub ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 250px;
    float: left;
    background: #fff !important;
}
ul#topnav .sub ul li {
    width: 100%;
    color: #fff;
}
ul#topnav .sub ul li h2 {
    padding: 0;
    margin: 0;

    font-weight: normal;
}
ul#topnav .sub ul li h2 a {
    padding: 5px 0;
    background-image: none;
    border-bottom: #999999 thin solid;
    font-size: 16px;
    font-weight: bold;
    margin-left: 3px;
}
ul#topnav .sub ul li a {
    float: none;
    text-indent: 0; /*--Reset text indent--*/
    height: auto;
    padding: 5px 5px 5px 5px;
    display: block;
    text-decoration: none;
    color: #333333;
    line-height: 30px;
}
ul#topnav .sub ul li img {
    float: left;
    margin-right: 10px;
}
ul#topnav .sub ul li a:hover {
    color: #d76f2c;
    background-position: 5px 12px;
}
