@charset "utf-8";
/* CSS Document */

/*Strip the ul of padding and list styling*/
.menu{
	float: left;
}
.menu li {
	float: left;
	
}
.menu li a {
	font-family: 'Montserrat Alternates', sans-serif;
	font-size: 0.823em;
	text-transform: uppercase;
	color: #FFF;
	display: block;
	padding: 12px 20px;
	-webkit-transition: all .9s;
	-moz-transition: all .9s;
	-o-transition: all .9s;
	-ms-transition: all .9s;
	transition: all .9s;
}
.menu li a:hover, .menu li.active a {
font-family: 'Montserrat Alternates', sans-serif;
	background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #FA9915), color-stop(100%, #D87E04));
	background: -webkit-linear-gradient(top, #FA9915, #D87E04);
	background: -moz-linear-gradient(top, #fa9915, #d87e04);
	background: -o-linear-gradient(top, #fa9915, #d87e04);
	background: linear-gradient(top, #fa9915, #d87e04);
	background-color: #F18D05;
	border-color: #BF7004;
	color: #FFF;
	-webkit-transition: all .9s;
	-moz-transition: all .9s;
	-o-transition: all .9s;
	-ms-transition: all .9s;
	transition: all .9s;
	-webkit-box-shadow:rgba(90, 52, 139, 0.16) 0 1px 0, inset #E98303 0 1px 0;
	-moz-box-shadow:rgba(90, 52, 139, 0.16) 0 1px 0, inset #E98303 0 1px 0;
	box-shadow: rgba(90, 52, 139, 0.16) 0 1px 0, inset #E98303 0 1px 0;
}
.menu li:nth-child(5){
	border-right:none;
}

/*Style for menu links*/
.menu ul li a {
	display:block;
	
	height: 30px;
	padding:9px 20px 0px 20px;
	text-align: center;
	line-height: 20px;
	font-family: 'Montserrat Alternates', sans-serif;
	color: #fff;
	text-decoration: none;
}
.menu ul li:hover > ul{display:block;
width:180px;}
/*Hover state for top level links*/
.menu ul li:hover a {
	background:#805958;
	width:auto;
	
	
}

/*Style for dropdown links*/
.menu ul li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 30px;
	line-height: 20px; 
	width:auto;
	
}

/*Hover state for dropdown links*/
.menu ul li:hover ul a:hover {
	background: #805958;
	color: #fff;
	
}

/*Hide dropdown links until they are needed*/
.menu ul li ul { z-index:9999;
	display: none;
 position:absolute;
 width:180px;
 
}

/*Make dropdown links vertical*/
.menu ul li ul li {
	display: block;
	float: left;
	margin:0px;
	width:180px;
	background:#00FFFF;
	padding:0px;
   
	
}

/*Prevent text wrapping*/
.menu ul li ul li a {
	width: auto;
	min-width: 120px;
	text-align:left;
	padding-left:10px;
	
}

/*Display the dropdown on hover*/
.menu ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: 'Montserrat Alternates', sans-serif;
	text-decoration: none;
	color: #fff;
	background: #000;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

