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

/*Create a horizontal list with spacing*/
#menuholder li {
	display:inline-block;
	float: left;
	width: 20%;
}

/*Style for menu links*/
#menuholder li a {
	display:block;
	min-width:140px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	color: #fff;
	background-color: #003366;
	text-decoration: none;
}

/*Hover state for top level links*/
#menuholder li:hover a {
	background-color: #003366;
}

/*Style for dropdown links*/
#menuholder li:hover ul a {
    background: #f3f3f3;
    color: #2f3036;
    height: auto;
    line-height: 16px;
    padding: 12px;
}

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

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

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

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

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

/*Style 'show menu' label button and hide it by default*/
#menuholder .show-menu {
	text-decoration: none;
	color: #fff;
	background: #333;
	text-align: center;
	padding: 10px 0;
	display: none;
}

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

/*Show menu when invisible checkbox is checked*/
#menuholder input[type=checkbox]:checked ~ #menu{
    display: block;
}
.quicklinks { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #ccc; font-size: 14px; text-transform: uppercase; }
.quicklinks a {
    margin-right: 7px;
    padding: 4px 7px;
    background: #ccc;
    color: #000;
    display: inline-block;
    margin-top: 7px;
}
/*Responsive Styles*/

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