@charset "UTF-8";
/* Base Styles */
#nav_links,
#nav_links ul,
#nav_links li,
#nav_links a {
    margin-right: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: normal;
    text-decoration: none;
    line-height: 1;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    position: relative;
    list-style: none;
}

#nav_links {
    margin: 0 0 0 10px;
    /* width: 250px;
  border-bottom: 4px solid #656659;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;*/
    border-radius: 15px;
    background-color: #F3F3F3;
}

    #nav_links a {
        line-height: 1.3;
    }

    #nav_links > ul > li:first-child {
    padding: 15px;
        /*   background: #66665e;
  background: -moz-linear-gradient(#66665e 0%, #45463d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #66665e), color-stop(100%, #45463d));
  background: -webkit-linear-gradient(#66665e 0%, #45463d 100%);
  background: linear-gradient(#66665e 0%, #45463d 100%);
  border: 1px solid #45463d;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0; */
    text-align: center;
}

        #nav_links > ul > li:first-child > a {
            padding: 15px 5px;
            border: none;
            text-align: center;
            font-size: 20px;
            font-weight: bolder;
            background-color: lightsteelblue;
            color: linen;
            font-family: inherit;
        }

            #nav_links > ul > li:first-child > a > span {
                padding: 0;
            }

        #nav_links > ul > li:first-child:hover {
            /*   background: #66665e;
  background: -moz-linear-gradient(#66665e 0%, #45463d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #66665e), color-stop(100%, #45463d));
  background: -webkit-linear-gradient(#66665e 0%, #45463d 100%);
  background: linear-gradient(#66665e 0%, #45463d 100%); */
        }

    #nav_links > ul > li > a:first-child {
        font-size: 16px;
        font-weight: bolder;
    
        border-top: 1px lightsteelblue solid;
}

    #nav_links > ul > li > a.nav_title {
        font-weight: bold;
        font-size: 26px;
    
        color: ivory;
}

    #nav_links > ul > li > a {
        padding: 15px 10px;
        display: block;
        color: black;
    }

        #nav_links > ul > li > a > span {
            display: block;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
        }

        #nav_links > ul > li > a:hover {
            background-color: #f2682f;
            color: white;
            font-weight: bolder;
        }

    #nav_links > ul > li.active {
        border-bottom: none;    
        background-color: #FFCC80;
}

    #nav_links > ul > li.has-sub > a span:after {
      content: "\f054";
      font-family: FontAwesome;    
    
      font-weight: lighter;
      position: absolute;
      top: 1em;
      left: 200px;
}

    #nav_links > ul > li.has-sub.active > a span:after {
    content: "\f078";
    font-family: FontAwesome;    
}
    /* Sub menu */
    #nav_links ul ul {
        display: none;
        background: white;
    
}

        #nav_links ul ul li {
            padding: 0;
            border-bottom: 1px solid #d4d4d4;
            border-top: none;
        
}

            #nav_links ul ul li:last-child {
            }

            #nav_links ul li i.fa {
                float: right;
            
                margin: 3px 0 0 0;
}

        #nav_links ul ul a {
            padding: 10px 10px 10px 25px;
            display: block;
            color: #676767;
            font-size: 14px;
            font-weight: normal;
        }

            #nav_links ul ul a:before {
                content: "\f111";
                position: absolute;
                left: 10px;
                color: #e94f31;
                font-family: FontAwesome;
            
                font-size: 10px;
                top: 12px;
}

            #nav_links ul ul a:hover {
                background-color: #FFCC80;
            }
