/*Strip the ul of padding and list styling*/
nav ul {
	padding: 0;
	list-style-type: none;
	z-index: 1000;
	color: #000;
	margin: 0;
}

/*Create a horizontal list with spacing*/
nav li {
	float: left;
	position: relative;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 26px;
	padding-left: 26px;
	margin-top: -5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 40px;
	border-radius:7px 7px 0 0;
	background: -webkit-linear-gradient(top, #f1a27a, #c54807);
	background: -moz-linear-gradient(top, #f1a27a, #c54807);
	background: -o-linear-gradient(top, #f1a27a, #c54807);
	background: -ms-linear-gradient(top, #f1a27a, #c54807);
	background: linear-gradient(top, #f1a27a, #c54807);
	border:2px solid #fff;
}

/*Style for menu links*/
nav li a {
	display: block inline;
	text-decoration: none;
	text-align: center;
	color: #FFF;
	padding-top: 0px;
	line-height: 42px;
	display: block;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	font-variant: normal;
	font-size: 14px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 27px;
	margin: 0px;
}

/*Hover state for top level links*/
nav li:hover{
	background: #c54807;
	text-decoration:none;
}
nav li:hover a{
	text-decoration:none;}

/*Style for dropdown links*/
nav li:hover ul a {
	background: -webkit-linear-gradient(top, #f1a27a, #c54807);
	background: -moz-linear-gradient(top, #f1a27a, #c54807);
	background: -o-linear-gradient(top, #f1a27a, #c54807);
	background: -ms-linear-gradient(top, #f1a27a, #c54807);
	background: linear-gradient(top, #f1a27a, #c54807);
}

/*Hover state for dropdown links*/
nav li:hover ul a:hover {
	background: #19c589;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
nav li ul {
	display: none;
}

/*Make dropdown links vertical*/
nav li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
nav li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
nav ul li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #c54807;
	text-align: center;
	padding: 10px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	nav ul {
		position: absolute;
		display: none;
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #c54807;
	text-align: center;
	padding: 10px 0;
	display: none;
	}
	/*Create vertical spacing*/
	nav li {
		margin-bottom: 1px;
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #c54807;
	text-align: center;
	padding: 0px 39px;
	}
	/*Make all menu links full width*/
	nav ul li, li a {
		width: 77%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}

@media screen and (min-width : 760px) and (max-width : 800px){

	/*Create vertical spacing*/
	nav li {
	padding: 0px 9px;
	}
}