/*
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 : Mar 22, 2015, 3:21:29 AM
    Author     : John
*/

.outer-menu {
    float: right;
    right: 50%;
    position: relative;
}
.inner-menu {
    float: right;
    right: -50%;
    position: relative;
}

#cssmenu 
{
    background: #203e15;
}
#cssmenu ul {
    padding: 0;
    margin: 0;
    margin-left: auto;
    margin-right:auto;    
    list-style-type: none;
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: bold;
    background: #203e15;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 1px solid #203e15;
    zoom: 1;
}
#cssmenu ul:before {
    content: '';
    display: block;
}
#cssmenu ul:after {
    content: '';
    display: table;
    clear: both;
}
#cssmenu li {
    display: block;
    float: left;
    margin: 0;
    padding: 0 4px;
}
#cssmenu li a {
    display: block;
    float: left;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px 7px 20px;
    border-bottom: 3px solid transparent;
}
#cssmenu li a:hover {
    color: #6bc24e;
    border-bottom: 3px solid #6bc24e;
}
#cssmenu li.active a {
    color: #6bc24e;
    border-bottom: 3px solid #6bc24e;
}

@media only screen and (max-width: 859px) {
    #cssmenu ul {
        font-size : 14px;
    }
    #cssmenu li a {    
        padding: 10px 12px 7px 12px;
    }
}

@media only screen and (max-width: 699px) {
    #cssmenu ul {
        font-size : 16px;
    }
    #cssmenu li{
        float: none;
    }
    #cssmenu li a{
        float: none;
        text-align: center;
    }


}
