
.menu44 {
	
	
    z-index: 90;
    position: relative;
}



.menu44 ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;

}

/*Create a horizontal list with spacing*/
.menu44 li {
	display:inline-block;
	/*float: left;*/
	margin-right: 1px;
}
 
/*Style for menu links*/
.menu44 li a {
    display: block;
    height: 50px;
    padding: 0 10px;
    text-align: center;
    line-height: 50px;
    color: #814b1a;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}
 
/*Hover state for top level links*/
.menu44 li:hover a {
	color: #000;
}

/*Style for dropdown links*/
.menu44 li:hover ul a {
	background: #e7d7bd;
	color: #814b1a;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
.menu44 li:hover ul a:hover {
	background: #d7c19d;
	color: #fff;
}

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

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

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

/*Display the dropdown on hover*/
.menu44 ul li a:hover + .hidden44, .hidden44:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.menu44 .show-menu {

	text-decoration: none;
	color: #fff;
	background: #d7c19d;
	text-align: center;
	padding: 10px 0;
	display: none;
}

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

/*Show menu when invisible checkbox is checked*/
.menu44 input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

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