/*Strip the ul of padding and list styling*/
#menu {
	list-style-type:none;
	float:right;
	margin:30px 0 0 0;
	padding:0;
}

/*Create a horizontal list with spacing*/
li {
	display:inline-block;
	/*float: left;*/
	
	margin-right: 1px;
}

/*Style for menu links*/
li a {
	display:block;
	/*min-width:140px;*/
	height: 50px;
	line-height: 50px;
	text-transform:uppercase;
	font-weight:700;
	color: #fff;
	padding:0 5px;
	/*background: #2f3036;*/
	text-decoration: none;
}

/*Hover state for top level links*/
li:hover a, .current {
	border-bottom:solid 5px #231f20;
}

/*Style for dropdown links*/
li:hover ul a {
	background: #ffffff;
	border-bottom:solid 1px #231f20;
	padding:0 30px;
	/*height: 40px;*/
	/*line-height: 40px;*/
}

/*Hover state for dropdown links*/
li:hover ul a:hover {	
	background: #231f20;
	color:#FFF !important;
}

/*Hide dropdown links until they are needed*/
li ul {
	display: none;
	margin:0;
	position: absolute;
}

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

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

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

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	color: #000;
	text-align: center;
	padding: 5px 0;
	margin-top:10px;
	max-width:80%;
	position:relative;
	margin:10px auto 0 auto ;
	display: none;
	font-size:14px;
	font-weight:700;
	text-transform:uppercase;
	border:solid 1px #231f20 ;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

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


/*Responsive Styles*/

@media screen and (max-width : 760px){
	/*Make dropdown links appear inline*/
	#menu {
		position: static;
		display: none;
		float:inherit;
		margin-top:0 ;
	}
	/*Create vertical spacing*/
	li a {
		text-align:center;	
	}
	li {
		margin-bottom: 1px;
		text-align:center;
		margin-right:0 !important;
	}
	li:hover a {
		border-bottom:none;
		border-left: solid 10px #231f20;
		border-right: solid 10px #ffffff;
	}
	li ul li a {
		border-bottom:none !important;
		border-left:none!important;
		border-right: none!important;
	}
	li ul li:hover a {
		background:none !important;
		color:#231f20 !important;
		border-right: solid 10px #231f20 !important;
		border-left: solid 10px #ffffff !important;
	}
	
	.hideicone{
		display:none !important;	
	}
		
	
	li ul {
		position: inherit;
	}
	/*Make all menu links full width*/
	ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	.unit-70{
		margin-bottom:0 !important ;	
	}
}