header {
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	border-bottom: 1px solid #000000;
	width: 100%;
	clear: both;
}

header img.message {
	/*height: 138px;*/
    height: 173px;
	width: 100%;
}

#banner {
	min-width: 320px;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}

#banner .logo {
	margin-top: 16px;
	width: 100%;
}

#banner .message {
	padding-right: 16px;
}

.hidden {
    display: none !important;
}

/*#alert {
	background-color: #800000;
	margin-top: 12px;
	margin-bottom: 12px;
	margin-left: auto;
	margin-right: auto;
	padding: 6px;
}

#alert h1, #alert h2, #alert h3 {
	color: #f0f0f0;
	text-align: center;
	margin-top: 6px;
	margin-bottom: 0px;
}

#alert a {
	color: #f0f0f0;
}*/

@media (min-width: 1601px) {
	/*#alert img {
		float: left;
		width: 128px;
	}*/
	
	nav {
		height: 35px;
	}
	
	nav .menuItem {
		/*width: calc(100%/6);*/
		width: calc(100% * 0.16664);
	}
}

@media (min-width: 831px) and (max-width: 1600px) {
	/*#alert img {
		float: left;
		width: 128px;
	}*/
	
	nav {
		height: 35px;
	}
	
	nav .menuItem {
		/*width: calc(100%/6);*/
		width: calc(100% * 0.16664);
	}
}

@media (max-width: 830px) {
	nav:first-child {
		overflow-y: auto;
	}
	
	nav .menuItem {
		width: 100%;
		border-top: 1px solid #B0B0B0;
	}
	
	nav .menuItem:first-child {
		border-top: 0px;
	}
	
	nav .menuItem ul {
		display: none !important;
	}
	
	nav {
		box-sizing: border-box;
	}
	
	.menu {
		display: block;
	}
}

/*
	BEGIN MENU CODE
*/

.menu {
	width: 100%;
}

nav {
	margin-top: 8px;
	margin-bottom: 0;
	background-color: #dbdbdb;
	padding-top: 0px;
	text-align: center;
	z-index: 5;
	border-top: 1px solid #000000;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	
	margin-left: auto;
	margin-right: auto;
	width: calc(100%-32px);
	font-size: 20px;
	box-sizing: border-box;
}

nav ul ul {
	display: none;
}

nav ul li:hover > ul {
	display: block;
	font-size: 18px;
	text-align: left;
	z-index: 5;
}

nav ul {
	background: #dbdbdb;
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	display: inline-table;
	box-sizing: border-box;
}
nav ul:after {
	content: "";
	clear: both;
	display: block;
}

nav ul li {
	float: left;
}

nav ul li:hover {
	/*background: #4b545f;*/
	background: #5f6975;
}

nav ul li:hover > a {
	color: #fff;
}

nav ul li a {
	display: block;
	padding-top: 6px;
	padding-bottom: 5px;
	color: #000000;
	text-decoration: none;
}

nav ul ul {
	background: #5f6975;
	border-radius: 0px;
	padding: 0;
	position: absolute; top: 100%;
}

nav ul ul li {
	float: none; 
	/*border-top: 1px solid #6b727c;
	border-bottom: 1px solid #575f6a;*/
	position: relative;
}

nav ul ul li a {
	padding: 10px 35px;
	color: #fff;
}

nav ul ul li:hover > a {
	/*background: #4b545f;*/
	background: #bebebe;
}

nav ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}
	
.noClick {
    pointer-events: none;
    cursor: default;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}