* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-size-adjust: none
}

html {
	background-color: #62B32B;
	color: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	height: 100%;
}

html, header {
	min-width: 1000px;

}

body {
	height: 100%;
}

.c {
	clear: both
}

body > div {
	height: 100%;
}

section {
	width: 100%;
	min-height: 100%;
	position: relative;
}

a:link, a:active, a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

a:hover {
	color: #62B32B;
}

h2{
	font-style: normal;
	font-weight: 300;
	letter-spacing: 1px;
	font-size: 40px;
	line-height: 50px;
	color: #484848;
	display: block;
	margin-bottom: 50px;
}
h2 > *{
	background-color: #FFFFFF;
	display: inline-block;
	padding: 0 15px;
}
h2 :first-child{
	padding-top: 5px;
}h2 :last-child{
	 padding-bottom: 5px;
 }
h2 strong{
	font-weight: 500;
	color: #65BA2D;
}

html, header {
	min-width: 1000px;
}

header {
	height: 100px;
	background-color: rgb(255, 255, 255);
	padding: 25px 50px;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 100;
	width: 100%;
}

header:after {
	content: "";
	clear: both;
	display: block;
}

header > div {
	float: left;
	width: 200px;
}

header > div h1 {
	color: rgb(72, 72, 72);
	margin-top: 15px;
}

header > div h1 span {
	color: rgb(98, 179, 43);
}

header > nav.subnav {
	position: absolute;
	top: 10px;
	right: 50px;
}

header > nav.nav {
	float: right;
	width: 1005px;
	font-size: 22px;
	height: 30px;
	margin-top: 25px;
	font-style: italic;
}

header nav ul {
	text-align: right;
}

header nav li {
	list-style-type: none;
	display: inline-block;
	padding-right: 3px;
	margin: 0px;
}

header nav a:link,
header nav a:active,
header nav a:visited {
	color: rgb(50, 50, 50);
	display: block;
	transition: all .4s;
	text-decoration: none;
}

header nav.subnav a:link,
header nav.subnav a:active,
header nav.subnav a:visited {
	color: rgb(191, 191, 191);
	font-style: italic;
	font-size: 12px;
}

header nav.nav a:before {
	content: "//";
	color: rgb(98, 179, 43);
	margin: 0 10px 0 20px;
}

header nav.subnav a:before {
	margin: 0 10px;
	content: '';
}

header nav li:first-child a:before {
	margin: 0 5px 0 0;
}

header nav a:hover,
header nav a.active {
	color: rgb(98, 179, 43);
}
header nav ul.Level1 > li{
	position: relative;
}

header nav ul.Level2:before{
	content: '';
	display: block;
	position: absolute;
	top: -23px;
	height: 23px;
	width: 100%;
	background-color: transparent;
}
header nav ul.Level2{
	position: absolute;
	top: 50px;
	left: 0;
	background-color: #484848;
	width: 100%;
	width: calc(100% + 20px);
	text-align: left;
	padding: 5px 0;

	visibility: hidden;
	opacity: 0;
	transition: opacity .3s .1s, visibility 0s .4s;
}
header nav ul.Level1 > li:hover > ul.Level2{
	visibility: visible;
	opacity: 1;

	transition: opacity .3s;
}
header nav ul.Level2 li{
	width: 100%;
}
header nav ul.Level2 a{
	color: #ffffff;
	padding: 5px 20px;
	font-size: 18px;
}