/* Page Elements */
* {
  box-sizing: border-box;
}

body {
	margin: 0;
	color: #000000;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 11pt;
	font-weight: 300;
	overflow-x: hidden;
}

h1 { 
	font-size: 1.5em;
	font-weight: bold;
	color: #000000;	
}

a { 
	color: #006600;;
	text-decoration: underline !important;
	transition: all 0.3s ease; 
}

a:hover, a:focus {
	text-decoration: none;
	outline: none;
}

p { 
	line-height: 1.7; 
	font-size: 14pt;
}

/* General Classes */
.container {
	margin: auto;
	overflow: hidden;
}

.space {
	min-height: 600px;
}

/* Header */
.header-wrap {
    width: 100%;
	height: 100px;
	color: #FFF;
	background-color: #000000;	
}

.header {
	width: 100%;
	margin: auto;
	padding: 20px;
	background-color: #000000;
}

#header-logo {
	color: #FFFFFF;
	font-size: 1.5em;
	font-weight: bold;
}

#header-logo, a {
	text-decoration: none;
	outline: none;
}

/* Main Content */
#main-content {
	padding: 5px;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	width: 80%;
}

#main-content p {
	margin-bottom: 20px;
	color: #000000;
}

/* Footer */
.footer {
	color: #C6C6C6;
	background-color: #000000;
	font-size: 12pt;
	padding-top: 10px;
	padding-bottom: 10px;
}

.footer-link {
	color: #FFFFFF;
	line-height: 1.8;
	text-decoration: underline;
}

.footer-link-no-under {
	color: #FFFFFF;
	line-height: 1.8;
}

.footer-link:hover, .footer-link:focus { 
	color: #009900;
	text-decoration: underline;
}

.footer-link-no-under:hover, .footer-link-no-under:focus {
	color: #009900;
}

.copyright-text { 
	color: #FFFFFF; 
	text-align: center;
}