
.menu_container
{
    display: flex;
    justify-content: center;
    height: 40px;  
    width: 100%;  
    background-color: #d07a00;
    font-size: 12pt;  
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;  
    position: relative;  
    z-index: 10;
}

nav 
{  
    height: 40px;  
    width: 100%;  
    background-color: #d07a00;
    font-size: 12pt;  
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;  
    position: relative;  
    z-index: 10;
}  

.respmenu:before
{  
    content: " ";  
    display: table;  
}  

.respmenu:after 
{  
    clear: both;
}

.f-nav
{
    position: fixed;
    top: 0;
} /* this make our menu fixed to the top */

.menu_container a
{  
    color: #fff;  
    display: inline-block;  
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;  
    text-decoration: none;  
    line-height: 40px;  
    text-shadow: 1px 1px 0px #283744;  
}

.menu_item a 
{  
    border-right: 1px solid #b76c00;
    box-sizing: border-box;  
    -moz-box-sizing: border-box;  
    -webkit-box-sizing: border-box;  
}
  
.menu_item:last-child a 
{  
    border-right: 0;
}

.submenu
{  
    padding: 0;  
    margin: 0 auto;  
    width: 150px;  
    height: 40px;  
} 

.submenu_item
{  
    width: 250px;  
} 

.submenu_item:not(:last-child) a
{  
    color: #fff;  
    display: inline-block;  
    width: 250px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;  
    text-decoration: none;  
    line-height: 40px;  
    text-shadow: 1px 1px 0px #283744;
    border-top: 1px solid #b76c00;
    border-left: 1px solid #b76c00;
    border-right: 1px solid #b76c00;
}

.submenu_item:last-child a
{  
    color: #fff;  
    display: inline-block;  
    width: 250px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;  
    text-decoration: none;  
    line-height: 40px;  
    text-shadow: 1px 1px 0px #283744;
    border: 1px solid #b76c00;
}

.submenu
{
    position: absolute;
    display: none;
    visibility: hidden;
}

.menu_item:hover .submenu
{
    opacity: 1;
    visibility: visible;
    display: block;
} 

.submenu_item a
{
    line-height: 40px;  
    background-color: #b76c00;                   ;
    border-top: 1px solid #b76c00;
}

.menu_item a:hover, .menu_item a:active 
{  
    background-color: #8c99a4;  
}  

.hamburger a#pull 
{  
    display: none;  
}

.search-widget
{
    color: #d07a00;
    font-size: 12pt;
    vertical-align: bottom;
}

#blog_search
{
    vertical-align: bottom;
}

@media only screen and (max-width : 900px) 
{  
    .menu_container 
    {  
        display: flex; 
        height: auto;
        width: 100%;
        flex-wrap: wrap;
        background-color: #d07a00;
    }

    .outer_container
    {
        display: none;        
    }

    .menu_item:last-child:nth-child(odd)
    {
        width: 100%;
    }

    .menu_item
    {  
        background-color: #d07a00;
        border-bottom: 1px solid #b76c00;
        width: 50%;
    }

     .menu_item a 
     {  
         border-right: 0px;
     }

     .hamburger
     {  
         display: inline-block;
         background-color: #d07a00;
         width: 100%;
     }

    .hamburger a#pull
    {  
        color: #fff;  
        display: inline-block;
        width: 150px;
        padding-left: 10px;
        padding-right: 10px;
        text-align: left;  
        text-decoration: none;  
        text-shadow: 1px 1px 0px #283744;
        line-height: 40px;  
        display: block;
        background-color: #d07a00;
        width: auto;
        height: 40px;
    }

     .hamburger a#pull:after
     {
         font-family: "FontAwesome";
         font-size: 16pt;
         content:"\f0c9";
         background-color: #d07a00;
         width: 30px;
         height: 40px;
         display: inline-block;
         position: absolute;
         right: 10px;
     }
}  

