


/* @group structure */



/* @group core nav menu */
#nav { 
	
	list-style: none; 
	width:1000px;
	height: 53px;
	margin: 0 auto;
	padding: 0; 

}


#nav li { 
	float: left; 
	display: block; 
	background: none;
	position: relative;
	z-index: 999;
	margin: 0;
}


#nav li a { 
	display: block;
	padding: 0; 
	font-weight: normal;
	line-height: 53px; 
	text-decoration: none;
		color:#fff;
	font-size:16px;
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	transition: all .2s ease-out;
	zoom: 1;
	padding: 0px 15px; 

 
 
 /*border-left: 1px solid transparent;
 border-right: 1px solid transparent;*/
 
   }
   
#nav li a:hover, #nav li a.hov { 
	background-color: #0A9100; 
	color: #fff;
 }



/* @group subnav */
#nav ul {
 position: absolute; 
 display: none; 
 margin: 0;
 padding: 0; 
 list-style: none; 
 background-color:#0A9100;
  text-align:left;

text-transform:none;
-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.42);
-moz-box-shadow:    0px 1px 2px 0px rgba(50, 50, 50, 0.42);
box-shadow:         0px 1px 2px 0px rgba(50, 50, 50, 0.42);
-moz-border-radius:0 0 6px 6px;
	-webkit-border-radius:0 0 6px 6px;
	border-radius:0 0 6px 6px;

  }	
  
#nav ul li {
	width: 170px;
	float: left; 



 }
 
#nav ul li:hover { 
border-left: 0px solid transparent; 
border-right: 0px solid transparent;

}

#nav ul a { 
display: block;
 height: 15px; 
 line-height: 15px; 
 padding: 10px 15px; 
 color: #fff;
border-top: 1px solid #0C6A05;
border-left: none;
border-right: none;
font-weight: normal;


 }
 
#nav ul a:hover { 
text-decoration: none;
color: #fff;
background-color:#F5BA19;
   }
   
#nav ul li:last-child a:hover{ 
-moz-border-radius:0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
   }


* html #nav ul { margin: 0 0 0 -2px; }

/** @group clearfix **/
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
 
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }

