@charset "utf-8";
.gridContainer.clearfix #Menu1 .show-menu1 {
}
/*Strip the ul of padding and list styling*/
#Media1 ul {
	list-style-type:none;
	margin:0;
	padding:0;	
}

/*Create a horizontal list with spacing*/
#Media1 li {
	display:inline-block;
	float: left;	
	width: 100%;
	position: relative;
}

/*Style for menu links*/
#Media1 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*/
#Media1 li:hover a {
	background: #794f0f;
	color: #fff;
}

/*Style for dropdown links*/
#Media1 li:hover > ul {
	right: 160px;
	top:0;	
}
#Media1 li:hover ul a {
	background: #e3b67a;
	color: #000;
	height: 40px;
	line-height: 40px;	
}

/*Hover state for dropdown links*/
#Media1 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*/
#Media1 li ul li {
	display: block;
	float: none;
}


/*Prevent text wrapping*/
#Media1 li ul li a {
	width: auto;	
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
#Media1 ul li a:hover + .hidden, .hidden:hover {
	display: block;	
	float: left;		
}

/*Style 'show menu' label button and hide it by default*/
.show-menu1 {
	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 ~ #menu1{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 480px){
	/*Make dropdown links appear inline*/
	ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	#Media1 li {
		margin-bottom: 0;
	}	
	/*Make all menu links full width*/
	#Media1 ul li, li a {		
		width: 100%;
	}
	#Media1 li:hover > ul {
		position: relative;
		left: 0;
		width: 50%;							
}	
	/*Display 'show menu' link*/
	.show-menu1 {
		display:block;
	}
}