/*Strip the ul of padding and list styling*/
ul.nav {
	list-style-type:none;
	margin:0;
	padding:0;
	position: relative;
}

/*Create a vertical list with spacing*/
li.nav {
	display: block;
	margin-right: 1px;
}

li.notes {margin: 0px;}

/*Style for menu links*/
li.nav a {
	display:block;
	min-width:140px;
	padding: 8px 0 8px 16px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	color: AntiqueWhite;
	text-decoration: none;
}

li.nav2 a {line-height: 0.3em;
            text-align: center;}


/*Hover state for top level links*/
li.nav:hover a {
	background-color: AntiqueWhite;
	Color: #550000;
}

/*Style for dropdown links*/
li.nav:hover ul a {
	background: #550000;
	color: AntiqueWhite;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
li.nav:hover ul a:hover {
	background-color: AntiqueWhite;
	color: #550000;
}

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

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

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

/*Display the dropdown on hover*/
ul.nav 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: #19c589;
	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*/

@media screen and (max-width : 700px){
	/*Make dropdown links appear inline*/
	ul.nav {
		position: static;
		display: none;
		background: #000080;
	}
	/*Create vertical spacing*/
	li.nav {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	ul.nav li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
}




