#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #menu-button {
	margin: 0 auto;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#cssmenu:after, #cssmenu > ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#cssmenu #menu-button {
	display: none;
}
#cssmenu {
	width: auto;
	line-height: 1;
	/*background: #000;*/
  z-index:9999;
	clear:both;
}
#menu-line {
	display:none;
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	/*background: #009ae1;*/
  -webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}
#cssmenu > ul > li {
	float: left;
}
#cssmenu.align-center > ul {
	font-size: 0;
	text-align: center;
}
#cssmenu.align-center > ul > li {
	display: inline-block;
	float: none;
}
#cssmenu.align-center ul ul {
	text-align: left;
}
#cssmenu.align-right > ul {
	float: right;
}
#cssmenu.align-right > ul ul {
	float: right;
}
#cssmenu > ul > li > a {
	font-size:16px;
	padding: 5px 5px;
	margin:0 10px 0 0;
	text-decoration: none;
	color: #FFF;
 -webkit-transition: color .2s ease;
 -moz-transition: color .2s ease;
 -ms-transition: color .2s ease;
 -o-transition: color .2s ease;
 transition: color .2s ease;
}
#header.header-inner #cssmenu > ul > li > a {
	color: #89BE31 !important;
}
#cssmenu > ul > li:hover > a, #cssmenu > ul > li.active > a:active, #cssmenu > ul > li.current_page_item > a, #cssmenu > ul > li.current-menu-item > a, #cssmenu > ul > li.current-menu-parent > a, #cssmenu > ul > li.current-menu-ancestor > a {
	border-top:0px solid #555;
	color: #fff;
	background-color: #89BE31;
}
#header.header-inner #cssmenu > ul > li:hover > a, #header.header-inner #cssmenu > ul > li.active > a:active, #header.header-inner #cssmenu > ul > li.current_page_item > a, #header.header-inner #cssmenu > ul > li.current-menu-item > a, #header.header-inner #cssmenu > ul > li.current-menu-parent > a, #header.header-inner #cssmenu > ul > li.current-menu-ancestor > a {
	border-top:0px solid #555;
	color: #fff !important;
	background-color: #89BE31 !important;
}
#cssmenu > ul > li.has-sub > a {
padding-right: 25px;
}
#cssmenu > ul > li.has-sub > a::after {
 position: absolute;
 top: 15px;
 right: 15px;
 width: 6px;
 height: 6px;
 border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
 -webkit-transform: rotate(45deg);
 -moz-transform: rotate(45deg);
 -ms-transform: rotate(45deg);
 -o-transform: rotate(45deg);
 transform: rotate(45deg);
 -webkit-transition: border-color 0.2s ease;
 -moz-transition: border-color 0.2s ease;
 -ms-transition: border-color 0.2s ease;
 -o-transition: border-color 0.2s ease;
 transition: border-color 0.2s ease;
}
#cssmenu > ul > li.has-sub:hover > a::after,  #cssmenu > ul > li.active > a:active, #cssmenu > ul > li.current_page_item > a::after, #cssmenu > ul > li.current-menu-item > a::after, #cssmenu > ul > li.current-menu-parent > a, #cssmenu > ul > li.current-menu-ancestor > a::after {
 border-color: #fff;
}
#cssmenu ul ul {
	position: absolute;
	left: -9999px;
	background-color:#0BBBC2;
	box-shadow: 5px 10px 5px #222;
    border-bottom-radius:50px;
}
#cssmenu li:hover > ul {
	left: 5px;
}
#cssmenu.align-right li:hover > ul {
	right: 0;
}
#cssmenu ul ul ul {
	margin-left: 100%;
	top: 0;
}
#cssmenu.align-right ul ul ul {
	margin-left: 0;
	margin-right: 100%;
}
#cssmenu ul ul li {
	height: 0;
 -webkit-transition: height .2s ease;
 -moz-transition: height .2s ease;
 -ms-transition: height .2s ease;
 -o-transition: height .2s ease;
 transition: height .2s ease;
 background-color:#0BBBC2;
}
#cssmenu ul li:hover > ul > li {
	height: 38px;
}
#cssmenu ul ul li a {
	padding: 15px 0 20px 20px;
	width: 250px;
	font-size: 15px;
	line-height:20px;
	background-color:#036;
	text-decoration: none;
	color: #89BE31;
 -webkit-transition: color .2s ease;
 -moz-transition: color .2s ease;
 -ms-transition: color .2s ease;
 -o-transition: color .2s ease;
 transition: color .2s ease;
 vertical-align:center;
}
#cssmenu ul ul li:hover > a, #cssmenu ul ul li a:hover {
	background-color:#CC0000;
	color: #fff;
}
#cssmenu ul ul li.has-sub > a::after {
 position: absolute;
 top: 13px;
 right: 13px;
 width: 4px;
 height: 4px;
 border-bottom: 1px solid #FFF;
 border-right: 1px solid #FFF;
 content: "";
 -webkit-transform: rotate(-45deg);
 -moz-transform: rotate(-45deg);
 -ms-transform: rotate(-45deg);
 -o-transform: rotate(-45deg);
 transform: rotate(-45deg);
 -webkit-transition: border-color 0.2s ease;
 -moz-transition: border-color 0.2s ease;
 -ms-transition: border-color 0.2s ease;
 -o-transition: border-color 0.2s ease;
 transition: border-color 0.2s ease;
}
#cssmenu ul ul li.has-sub:hover > a::after {
 border-color: #C00;
}
/*#cssmenu ul.sub-menu:hover {
    border-bottom:5px solid #ccc;
}*/

@media (max-width: 1024px) {
	cssmenu > ul > li > a {
	margin:0 5px 0 5px;
}
}