@charset "UTF-8";
/* CSS Document */

#nav {
  color:#fff;
  line-height: 100%;
  margin: 1;
  padding: 0px 5px 0;
  
  
}
#nav li {
	margin: 0 2px;
	padding: 0 10px 2px 10px;
	float: left;
	position: relative;
	list-style: none;
	background:#55a546;
	
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
/* main level link */
#nav a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding:  5px 6px;
	margin: 0;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
}
/* main level link hover */
#nav .current a, #nav li:hover > a {
	background: #55a546; /* for non-css3 browsers */
	/*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#fff'); /* for IE 
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));  for webkit browsers 
	background: -moz-linear-gradient(top,  #fff,  #fff); for firefox 3.6+ 
*/
	color: #1a5901;
	/*border-top: solid 1px #f8f8f8;*/
	/*-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	text-shadow: 0 1px 0 rgba(255, 255, 255, .8);*/
}
/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #fff;
	/*-webkit-box-shadow: none;
	-moz-box-shadow: none;*/
}
#nav ul a:hover {
	background: #fff !important; /* for non-css3 browsers */
	/*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#04acec', endColorstr='#0186ba'); /* for IE 
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba)) !important; /* for webkit browsers
	background: -moz-linear-gradient(top,  #04acec,  #0186ba) !important; /* for firefox 3.6+ */

	color: #55a546 !important;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
}
/* level 2 list */
#nav ul {
	background: #55a546; /* for non-css3 browsers */
	/*filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cfcfcf'); /* for IE 
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cfcfcf)); /* for webkit browsers 
	background: -moz-linear-gradient(top,  #fff,  #cfcfcf); /* for firefox 3.6+ 
*/
	display: none;
	margin: 0;
	padding: 0;
	width: 98px;
	position: absolute;
	top: 26px;
	left: 0;
	border: solid 1px #55a546;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
/* dropdown */
#nav li:hover > ul {
	display: block;
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}
#nav ul a {
	font-weight: normal;
	/*text-shadow: 0 1px 1px rgba(255, 255, 255, .9);*/
}
/* level 3+ list */
#nav ul ul {
	left: 106px;
	top: -1px;
	width:115px;
}
/* rounded corners for first and last child */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 15px;
	-moz-border-radius-topleft: 15px;
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-radius-bottomleft: 15px;
	-webkit-border-bottom-right-radius: 15px;
	-moz-border-radius-bottomright: 15px;
}
/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
}
html[xmlns] #nav {
	display: block;
}
* html #nav {
	height: 1%;
}