@charset "UTF-8";
/* CSS Document */
	.top-nav{
	   /* IE10 Consumer Preview */
	   background-image: -ms-linear-gradient(top, #856727 0%, #6A511F 100%);
	   /* Mozilla Firefox */
	   background-image: -moz-linear-gradient(top, #856727 0%, #6A511F 100%);
	   /* Opera */
	   background-image: -o-linear-gradient(top, #856727 0%, #6A511F 100%);
	   /* Webkit (Safari/Chrome 10) */
	   background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #856727), color-stop(1, #6A511F));
	   /* Webkit (Chrome 11+) */
	   background-image: -webkit-linear-gradient(top, #856727 0%, #6A511F 100%);
	   /* W3C Markup, IE10 Release Preview */
	   background-image: linear-gradient(to bottom, #856727 0%, #6A511F 100%);
	   box-shadow: 0px -2px 3px rgba(52,85,43,0.8);
	 }
	
	.top-nav ul{
		width:980px;
		margin:0 auto;
		overflow:hidden;
	}
	
	.top-nav li{
		float:left;
	}
	
	.top-nav .nav-link{
		color:#FFF;
		display:block;
		width:160px;
		font-size:16px;
		text-align:center;
		padding:18px 0;
		opacity:0.5;
	}
	
	.top-nav .nav-link:hover{
		opacity:1.0;
	}
	
	 .top-nav .nav-link.active{
	   opacity: 1;
	   /* IE10 Consumer Preview */
	   background-image: -ms-linear-gradient(bottom, #856727 0%, #6A511F 100%);
	   /* Mozilla Firefox */
	   background-image: -moz-linear-gradient(bottom, #856727 0%, #6A511F 100%);
	   /* Opera */
	   background-image: -o-linear-gradient(bottom, #856727 0%, #6A511F 100%);
	   /* Webkit (Safari/Chrome 10) */
	   background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #856727), color-stop(1, #6A511F));
	   /* Webkit (Chrome 11+) */
	   background-image: -webkit-linear-gradient(bottom, #856727 0%, #6A511F 100%);
	   /* W3C Markup, IE10 Release Preview */
	   background-image: linear-gradient(to top, #856727 0%, #6A511F 100%);
	 }
	 
	 .top-nav li.logo img{
		 width:130px;
	 }
	 
	 .top-nav .nav-logo{
		 width:160px;
		 padding:14px 14px 14px 0;
		 display:block;
		 text-align:center;
	 }
	 
	 .top-nav li.list-border{
		 width:2px;
		 background-color: rgba(49, 25, 0, 0.7);
		 display:block;
		 height:60px;
		 border-right:1px solid #FFF;
		 opacity:0.5;
	 }

