

/*Strip the ul of padding and list styling*/
.menu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
.menu ul li {
	display:block;
	float: left;
	margin-right: 0px; 
	
}

/*Style for menu links*/
.menu ul li a {
	display:block;
	
	height: 25px;
	padding:0px 7px 0px 7px;
	text-align: center;
	line-height: 20px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	text-decoration: none;
}
.menu ul li:hover > ul{display:block;
width:180px;}
/*Hover state for top level links*/
.menu ul li:hover a {
	background:#d6cccc;
	width:auto;
	
	
	
}
.h1_for_header{   font-size:42; font-weight:bold;}
/*Style for dropdown links*/
.menu ul li:hover ul a {
	background: #d6cccc;
	color: #2f3036;
	height: 30px;
	line-height: 20px; 
	width:auto;
	
}

/*Hover state for dropdown links*/
.menu ul li:hover ul a:hover {
	background: #838080;
	color: #fff;
	
}

/*Hide dropdown links until they are needed*/
.menu ul li ul { z-index:666666;
	display: none;
 position:absolute;
 width:120px;
 
}

/*Make dropdown links vertical*/
.menu ul li ul li {
	display: block;
	float: left;
	margin:0px;
	width:120px;
	padding:0px;
   
	
}

/*Prevent text wrapping*/
.menu ul li ul li a {
	width: auto;
	min-width: 180px;
	text-align:left;
	padding-left:10px;
	
	
}

/*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*/
.show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #19c589;
	text-align: center;
	padding: 0px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

