#menu_box {   #entire menu holder
	z-index:1000;
	width:100%;
	position: absolute;
	top: 0px;
	left: 0px;
	//border: red solid 1px !important;
}

/*Strip the ul of padding and list styling*/
#menu_box ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	z-index:1000;
}

/*Create a horizontal list with spacing*/
#menu_box li {
	display:inline-block;
	float: left;
	//border: red solid 1px;
}

/*Style for menu links*/
#menu_box li a {
	display:block;
	min-width:98px; /* sets main menu items width */
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #fff;
	background: #006db7;
	text-decoration: none;
	//border: red solid 1px;
}

/*Hover state for top level links*/
#menu_box li:hover a {
	background: #5f85b0;
}

/*Style for dropdown links*/
#menu_box li:hover ul a {
	background: #006db7;
	color: #ffffff;
	height: 40px;
	line-height: 40px;
	text-align:left;
}

/*Hover state for dropdown links*/
#menu_box li:hover ul a:hover {
	background: red;
	color: #fff;
}

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

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

/*Prevent text wrapping*/
#menu_box li ul li a {
	width: 100%;
	min-width: 100px;
	padding: 0 10px;
}

/*Display the dropdown on hover*/
#menu_box ul li a:hover + .hidden,#menu_box  .hidden:hover {
	display: block;
	max-width:210px;
	text-align:center;
	margin: auto;   /*CENTERS SUB-MENU HORIZONTALLY*/
}

/*Style 'show menu' label button and hide it by default*/
#menu_box .show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	background: #006db7;  /*mobile display bg color*/
	text-align: center;
	padding: 10px 0;
	display: none;
	//border: red solid 1px;
}

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

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

/*Responsive Styles*/
@media only screen and (max-width: 800px) {
	#menu_box {
		position: relative;
		width: 100%;
		height: 60px;
		//left: -3%;
		//top: 30%;
		z-index:1000;
         	background-color:#006db7;
		//border: red solid 1px !important;
		}
	#logo_small {
		display:block;
		position: relative;
	       margin: 0 auto;
		width: 237px;
		height: 50px;
		margin-top: 2%;
		z-index:1000;
		//border: red solid 1px;
		}
	#menu_logo {
		display: none;
		}
	#hp_head{
		//border: red solid 1px;
		margin-top: 20px !important;
		}
		
	/*Make dropdown links appear inline*/
	#menu_box ul {
		position: static;
		display: none;
		//width: 100% !important;
		text-align: center;
	}
	/*Create vertical spacing*/
	#menu_box li {
		//margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	#menu_box ul li, li a {
		width: 100% !important;
		min-width:300px; /* sets main menu items width */
		width: 100% !important;
		text-align: center;
	}
	/*Display 'show menu' link*/
		#menu_box .show-menu {
		display:block;
		
	}


}






