/*Strip the ul of padding and list styling*/
ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
}
/*Create a horizontal list with spacing*/
li {
	display: inline-block;
	/* [disabled]float: left;
*/
	margin-right: 1px;
}
/*Style for menu links*/
li a {
	display: block;
	/* [disabled]min-width: 188px;
*/
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "OpenSans Bold";
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	background-color: #64aac3;
	width: 187px;
}
/*Hover state for top level links*/
li:hover a {
	background-color: #a3d0a7;
}
/*Style for dropdown links*/
li:hover ol a {
	background: #f3f3f3;
	color: #2f3036;
	height: 30px;
	line-height: 30px;
	width: 183px;
	font-size: 12px;
	font-family: "OpenSans Regular";
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
}
/*Hover state for dropdown links*/
li:hover ol a:hover {
	color: #fff;
	background-color: #79BB80;
}
/*Hide dropdown links until they are needed*/
li ol {
	display: none;
}
/*Make dropdown links vertical*/
li ol li {
	display: block;
	float: none;
}
/*Prevent text wrapping*/
li ol li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}
/*Display the dropdown on hover*/
ol li a:hover + .hidden, .hidden:hover {
	display: block;
}
/*Style 'show menu' label button and hide it by default*/
.show-menu {
	text-decoration: none;
	color: #fff;
	text-align: center;
	display: none;
	height: 30px;
	background-color: #64aac3;
	font-family: "OpenSans Semibold";
	padding-top: 10px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	margin-bottom: 1px;
}
/*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 Navi */
@media screen and (max-width : 1179px) {
/*Make dropdown links appear inline*/
ol {
	position: static;
	display: none;
}
/*Create vertical spacing*/
li {
	margin-bottom: 1px;
}
/*Make all menu links full width*/
ol li, li a, li:hover ol a {
	width: 100%;
}
/*Display 'show menu' link*/
.show-menu {
	display: block;
}
}
