<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 27-mar-2015, 18.12.36
    Author     : rodoviti
*/

/************************/
/* general screen style */
/************************/
#mainmenu ul
{
    list-style: none;
}

#mainmenu ul li
{
    float: left;
}

#mainmenu a.mainmenu
{
    display: none;
    line-height: 75px;
    padding: 0 15px 0 15px;
}

#mainmenu a.mainmenu:hover
{
    background-color: #648867;
}


/****************/
/* small screen */
/****************/
@media screen and (max-width: 768px)
{
    #mainmenu
    {
        display: none;
        position: inherit;
        background-color: #212723;
        border-top: #c8d22b solid 10px;
    }

    #mainmenu ul li
    {
        float: none;
    }

    #mainmenu a.mainmenu
    {
        width: 100%;
        text-align: center;
        height:40px;
        line-height: 40px;
        padding:0px;
    }

    .btn-responsive-menu
    {
        display: block;
        position: absolute;
        top: 37px;
        right: 0;
        margin:  -18px 20px 0 0;
        padding:5px;
        cursor:pointer;
        color: #ffffff;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        background:#648867;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    .icon-bar
    {
        display: block;
        width: 18px;
        height: 2px;
        margin:5px;
        background-color: #f5f5f5;
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        border-radius: 1px;
        -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    }
}


/****************/
/* large screen */
/****************/
@media screen and (min-width: 769px)
{
    #mainmenu
    {
        display: block !important;
        position: absolute;
        top: 0;
        right: 0;
    }
}</pre></body></html>