/* Ist level menu links */
#menu {
    margin-right: 15px;
    padding:20px 0 10px 0;
}

#menu ul {
	list-style: none;
	position: relative;
	display: inline-table;
    vertical-align: middle;    
    margin: 0 auto;
    padding-left: 0;
}
#menu ul:after {
	/*content: ""; 
    clear: both; 
    display: block;*/
}
#menu ul li {
	float: left;
}
#menu ul li:hover {
	/*background: #fff;
	background: linear-gradient(top, #4f5964 0%, #5f6975 40%);
	background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);
	background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);*/
}
#menu ul li a {
    display:inline-block;
    text-align:left;
    font-size:0.75em;
    letter-spacing:1px;
    padding:0 8px;
    color:#fff;
	text-decoration: none;
    width:100%;
    border-right: 2px solid #8bc63f;
}

#menu ul li:last-child a { border-right: none; padding-right:0 !important; }
#menu ul ul li:last-child a { padding-right:20px !important; }


/*End of 1st level menu links */

/*2nd level menu links */
#menu ul ul {
	display: none;
   	/*z-index: 2001;*/
    /*background-color: rgba(62, 72, 37, 0.75);
    background-image:url('../../images/menuback.png');*/ 
    border-radius: 0px;
    padding: 0;
	position: absolute; 
    top:100%;
}
#menu ul ul li {
	float: none;
    border: none; 
    border-bottom: 1px dotted #64743d;
    position: relative;
    border-radius: 0;
    background-color: #8bc63f;
}
#menu ul ul li:hover {
	background: #404041;
}
#menu ul ul li a {
	padding:10px 20px;
	color: #fff;
    border-right: none;
}
#menu ul ul li:hover a {
    color: #fff; 
}
#menu ul li:hover > ul {
	display: block;
}
#menu ul ul li:first-child { margin-top:10px; }

/*End of 2nd level menu links */

/*3rd level menu links */
#menu ul ul ul {
	position: absolute; 
    left: 100%; 
    top:0;
    background-color: rgba(100, 116, 61, 0.75);
    /*background-image:url('../../images/menuback.png');*/
    width:100%; 
}

#menu ul ul ul li {
    border-bottom: 1px dotted #8da357;
}

/* End of 3rd level menu links */


/* Mobilre Responsive */

@media (min-width: 992px) {

#menu ul li a {
    font-size:0.875em;
    padding:0 12px;
}

}
		