/* <style> */
	#header {
		font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
		position: fixed;
		top: 0;
		left: 0;
		color: white;
		text-align: center;
		background: #7d7e7d;
		background: -moz-linear-gradient(top, #7d7e7d 0%, #0e0e0e 100%);
		background: -webkit-linear-gradient(top, #7d7e7d 0%,#0e0e0e 100%);
		background: linear-gradient(to bottom, #7d7e7d 0%,#0e0e0e 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7e7d', endColorstr='#0e0e0e',GradientType=0 );
		width: 100%;
		height: 25px;
		white-space: nowrap;
		z-index: 100000;
	}
	#header span.mainNav {
		width: 55%;
		float: left;
		height: 100%;
	}
	#header span.mainNav table {
		width: 100%;
		height: 100%;
		background-color: rgba(255,255,255,.1);
	}
	#header span.mainNav table td {
		text-align: center;
		font-size: 14px;
		width: 14%;
		user-select: none;
		cursor: pointer;
		transition: ease all 250ms;
	}
	#header span.mainNav table td:hover {
		border-bottom: solid 5px green;
	}
	#header span.title {
		width: 45%;
		height: 100%;
		float: left;
		text-align: center;
		overflow: hidden;
	}
	ul.navMenu {
		font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
		font-size: 13px;
		color: black;
		text-align: center;
		position: fixed;
		top: 25px;
		background: rgb(219,219,219);
		background: -moz-linear-gradient(top, rgba(219,219,219,1) 0%, rgba(252,254,255,1) 100%);
		background: -webkit-linear-gradient(top, rgba(219,219,219,1) 0%,rgba(252,254,255,1) 100%);
		background: linear-gradient(to bottom, rgba(219,219,219,1) 0%,rgba(252,254,255,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dbdbdb', endColorstr='#fcfeff',GradientType=0 );
		padding: 10px;
		margin: 0;
		box-sizing: border-box;
		list-style: none;
		z-index: 9999;
		width: auto;
		opacity: 0;
	}
	ul.navMenu li {
		cursor: pointer;
		user-select: none;
		padding: 5px;
		white-space: nowrap;
		transition: ease all 250ms;
	}
	ul.navMenu li:hover {
		color: white;
		background-color: rgb(171,204,171);
		background: -moz-linear-gradient(top, rgba(171,204,171,1) 0%, rgba(66,127,66,1) 100%);
		background: -webkit-linear-gradient(top, rgba(171,204,171,1) 0%,rgba(66,127,66,1) 100%);
		background: linear-gradient(to bottom, rgba(171,204,171,1) 0%,rgba(66,127,66,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#abccab', endColorstr='#427f42',GradientType=0 );
	}