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

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	float: left;
}
/*Style for menu links*/
li a {
	display: block;
	height: 22px;
	text-align: center;
	font-family: "SourceSansProLight", sans-serif;
	font-size: 13px;
	color: #666;
	background: #fef9f5;
	text-decoration: none;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px;
}

/*Hover state for top level links*/
li:hover a {
	background: #ece8e4;
}

/*Style for dropdown links*/
li:hover ul a {
   background: rgb(242, 242, 242); /* The Fallback */
   background: rgba(242, 242, 242, 0.85);
	color: #97b5c8;
	height: 30px;
	line-height: 30px;
}

/*Hover state for dropdown links*/
li:hover ul a:hover {
	background: #ece8e4;
	color: #666;
}
/*Hide dropdown links until they are needed*/
li ul {
	display: none;
}

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

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

/*Display the dropdown on hover*/
ul li a:hover + .hidden, .hidden:hover {
	display: block;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
	font: 13px "SourceSansProLight", sans-serif;
	text-decoration: none;
	color: #666666;
	background: #ece8e4;
	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*/

