@charset "utf-8";
.gridContainer.clearfix #Menu2 .show-menu2 {
}
/*Strip the ul of padding and list styling*/
#Media2 ul {
	list-style-type:none;
	margin:0;
	padding:0;	
}

/*Create a horizontal list with spacing*/
#Media2 li {
	display:inline-block;
	float: left;	
	width: 100%;
	position: relative;
}

/*Style for menu links*/
#Media2 li a {
	display:block;
	min-width: 90%;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #000;
	background: #e3b67a;
	text-decoration: none;
	font-weight: bold;
	border: 1px dotted #452901;
}

/*Hover state for top level links*/
#Media2 li:hover a {
	background: #794f0f;
	color: #fff;
}

/*Style for dropdown links*/
#Media2 li:hover > ul {
	left: -142px;
	top:0;
}
#Media2 li:hover ul a {
	background: #e3b67a;
	color: #000;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
#Media2 li:hover ul a:hover {
	background: #794f0f;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
li ul {
	position: absolute;
    top: 0;
    left: 100%;
	display: none;
}

/*Make dropdown links vertical*/
#Media2 li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
#Media2 li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
#Media2 ul li a:hover + .hidden, .hidden:hover {
	display: block;	
	float: left;	
}

/*Style 'show menu' label button and hide it by default*/
.show-menu2 {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	text-decoration: underline;
	color: #fff;
	background: #e3b67a;
	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 ~ #menu2 {
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 480px){
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	#Media2 li {
		margin-bottom: 0;
	}
	/*Make all menu links full width*/
	#Media2 ul li, li a {
		width: 100%;
	}
	#Media2 li:hover > ul {
		position: relative;													
		left: 0;
		width: 50%;							
}		
	/*Display 'show menu' link*/
	.show-menu2 {
		display:block;
	}
}