/* Perch version */

body {
	color: #fff;
}

#branding_nav_wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 15px;
}

#branding {
	margin: 0px 0px 5px 15px;
}

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

/*Create a horizontal list with spacing*/
#menu li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
#menu li a {
	display:block;
	height: 35px;
	text-align: left;
	line-height: 35px;
	font-family: 'Oswald', Helvetica, Arial, sans-serif;
	color: #fff;
	background: transparent;
	text-decoration: none;
	margin-right: 15px;
}

/*Hover state for top level links*/
#menu li:hover a {
	color: #ccc;
}

/*Style for dropdown links*/
#menu li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
#menu li:hover ul a:hover {
	background: #ccc;
	color: #fff;
}

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

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

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

/*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*/
#menu .show-menu {
	font-family: 'Oswald', Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #333;
	background: #fff;
	text-align: center;
	padding: 10px 0;
	display: none;
}

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

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


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	#menu ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	#menu li {
		padding-left: 2px;
	}
	/*Make all menu links full width*/
	#menu ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	#menu .show-menu {
		display:block;
		margin: 0px 15px;
	}
}

#menu ul li.selected a {
	text-decoration: underline;
}
