@charset "utf-8";
/* 

CSS Document */

/*Google font: Lato
font-family: 'Lato', Arial, sans-serif;
font-weight can be 300,400,700,900
*/


/* This sets all of the html tags to 0 margin and padding. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, u, center, dl, dt, dd, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	line-height: 1em;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
/*You can take off all indents and padding on lists and list items, but I find this to be more trouble than it's worth. I'd rather have lists come with proper indents and bullets. I can always take those off when I need to use a list for navigation
ul, ol, li {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	line-height: 1em;
	vertical-align: baseline;
}
ol, ul {
	list-style: none;
}
*/

/* sets padding, margin and list-style to 0 and none for all lists inside nav elements */
nav ul, nav ul li {
	list-style: none;
	padding: 0;
	margin: 0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* sets the box-sizing model to border-box, which allows you to add padding to the block-level element (div, section, article, whatever) without having to adjust the width of columns to account for them. */
*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;/* all images won't get bigger than it's original size but will shrink as needed with the window*/
}
/* start your site styles here */
html {
	font-size: 1em;
	font-family: 'Lato', Arial, sans-serif;
	font-weight: 400;
	height: 100%;
	width: 100%;
	min-height: 100%;
}
body {
	background-color: #ffffff;
}
h1 {
	font-size: 3.5rem;
	font-weight: 300;
	margin-bottom: 15px;
	line-height: 110%;
}
h2 {
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 5px;
	line-height: 120%;
}
h3 {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 5px;
	line-height: 120%;
}
h4 {
	font-weight: 700;
	text-transform: uppercase;
	margin: 10px 0 4px 0;
	font-size: 1.1rem;
}
p {
	margin-bottom: 8px;
	line-height: 160%;
	text-align: left;
	font-size: 1rem;
}
a {
	outline: 0;
	text-decoration: none;
}
a:link, a:visited{
	color:#2989b6;
}
a:hover, a:active{
	color:#21db53;
}
ul {
	margin: 0 0 1.2em 0;
	padding: 0 0 0 20px;
}
li {
	margin: 0 0 .3em 0;
	line-height: 130%;
}
.wrapper {
	margin: 0 auto;
	width: 90%;
	max-width: 1300px;
}
.content {
	width: 100%;
	float: left;
	position: relative;
}
header {
	padding: 9px 0 10px 0;
	width: 100%;
	float: left;
	background-color: #464646;
	border-bottom: 4px solid #ffffff;
	position: relative;
	margin-bottom: 25px;
}
header.hdr1 {
	background-color: #868686;
} 
.mainpic{
	width:100%;
	background-color:#62bee6;
	margin:-38px auto 20px auto;
	float:left;
	padding:50px 10px 30px 10px;
}
.mainpic img{
	display: block;
	float: left;
}
nav {
	padding: 3px 0 3px;
	float: left;
	margin: 0 auto;
	background-color: #2c2c2c;
	width: 100%;
	border-bottom: 1px solid #7b7b7b;
}
nav ul {
	float: right;
}
nav li {
	float: left;
}
nav a {
	font-size: .8rem;
	line-height: 1.75rem;
	letter-spacing: .05rem;
	margin: 0 0 0 30px;
	text-decoration: none;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 300;
	text-align: right;
}
nav a:link, nav a:visited{
	color:#ffffff;
}
nav a:hover, nav a:active {
	font-weight: 700;
	color:#ffffff;
}
nav li:first-of-type a {
	margin-left: 0;
}
.logo {
	float: left;
	margin: 0;
}
.white-popup {
	position: relative;
	background: white;
	padding: 20px;
	width: auto;
	max-width: 500px;
	margin: 20px auto;
}
.login {
	float: right;
	width: 56px;
	position: absolute;
	bottom: -38px;
	right: 0;
	z-index: 10;
}
.login a, .login a:link, .login a.visited {
	width: 100%;
	background: #20db52;
	background-image: -webkit-linear-gradient(top, #20db52, #06992d);
	background-image: -moz-linear-gradient(top, #20db52, #06992d);
	background-image: -ms-linear-gradient(top, #20db52, #06992d);
	background-image: -o-linear-gradient(top, #20db52, #06992d);
	background-image: linear-gradient(to bottom, #20db52, #06992d);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	line-height: 0;
	position: relative;
	padding: 50% 0;
	text-align: center;
	display: block;
	outline: 0;
	font-size: .8em;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
}
.login a:hover, login a:active {
	background: #06992d;
	background-image: -webkit-linear-gradient(top, #06992d, #20bd52);
	background-image: -moz-linear-gradient(top, #06992d, #20bd52);
	background-image: -ms-linear-gradient(top, #06992d, #20bd52);
	background-image: -o-linear-gradient(top, #06992d, #20bd52);
	background-image: linear-gradient(to bottom, #06992d, #20bd52);
}

section.white {
	float: left;
	margin: 0 auto 30px;
	background-color: #ffffff;
	width: 100%;
}
.intro p {
	font-size: 1.17rem;
	text-align: justify;
}
.gray {
	padding: 20px 0;
	width: 100%;
	float: left;
	margin: 0 auto;
	background-color: #B3B3B3;
}
.gray article {
	background-color: #ffffff;
	padding: 20px;
	margin-bottom: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	float: left;
}
.gray .colWide {
	width: 62%;
	float: left;
	margin-right: 2%;
}
.gray .colNarrow {
	width: 36%;
	float: left;
}
.gray article:last-child {
	margin-right: 0;
}
/*form styles*/
.bottomForm{
	margin:30px 0;
}
.bottomForm h2{
	font-size:2rem;
	font-weight: 300;
	margin-bottom: 15px;
	line-height: 110%;
}
form{
	background-color:#464646;
	color:#ffffff;
	padding: 20px;
	margin-top: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	float: left;
	width:100%;
}
.form_item{
	margin-bottom:10px;
	width:100%;
}
div.two-up > div{
	width:49%;
	margin-right:2%;
	float:left;
}
div.two-up > div:last-child{
	margin-right:0;
}

input[type=tel], input[type=text], input[type=email], input[type=url], input[type=password], textarea, select {
	width: 100%;
	height: 30px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 10px 0;
	padding: 4px;
	float: left;
}
textarea{
	height:200px;
	resize:none;
}
input[type=tel]:focus, input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, textarea:focus, select:focus {
	outline: 0;
	border-color: #ab4a4a;	
}
input[type=tel]:hover, input[type=text]:hover, input[type=email]:hover, input[type=url]:hover, input[type=password]:hover, textarea:hover, select:hover {
	outline: 0;
	border-color: #ab4a4a;	
}



/* report layout */
table.rptBasic {
	font-size: 1rem;
	margin: 4px auto;
	width: 740px;
}
table a {
	color: Blue;
	padding: 2px 4px;
	text-decoration: none;
}
table a:hover {
	background-color: #cccccc;
}
table td.totals {
	padding-top: 6px;
	border-top: 1px solid #999999;
	border-bottom: 2px solid #333333
}
table td.rows {
	padding-top: 2px;
	border-bottom: 1px solid #cccccc
}
table .fLeft {
	text-align: left;
}
table .fRight {
	text-align: right;
}
table .fCenter {
	text-align: center;
}
table .fLPad {
	padding-left: 12px;
}
table tbody th {
	border-bottom: 1px solid #666666;
	font-weight: 600;
	padding-bottom: 4px;
}
table th.rptTitle {
	text-align: left;
	font-size: 1.2rem;
	font-weight: 600;
}
table th.rptSubTitle {
	padding-bottom: 4px;
	text-align: left;
	font-size: 1rem;
	font-weight: 600;
}
table th.rptNav {
	border-bottom: 2px solid #999999;
	padding: 4px 0;
	font-size: 1rem;
}
table td.print {
	padding-top: 20px;
}
footer {
	width: 100%;
	padding: 5px 0;
	float: left;
	background-color: #2c2c2c;
	color: #ffffff;
	font-weight: 300;
	font-size: .8em;
	border: none;
	position: relative;
}
footer .content {
	margin: 8px 0;
}
p.groupspace {
	margin-bottom: 45px;
}
span.level {
	font-weight: 600;
}
#login_link, #resetPW {
	width: 450px;
	margin: 0 auto;
}
#resetPW section label {
	color: white;
}

@media screen and (max-width:800px) {
.nowrap {
	width: 35%;
}
h1 {
	font-size: 3em;
}
.gray .colWide {
	width: 56%;
	margin-right: 4%;
}
.gray .colNarrow {
	width: 40%;
}
}

@media screen and (max-width:600px) {
h1 {
	font-size: 2.7em;
}
.logo {
	width: 80%;
}
.gray .colWide {
	width: 48%;
	margin-right: 4%;
}
.gray .colNarrow {
	width: 48%;
}
#login_link, #resetPW {
	width: unset !important;
    padding: 10px;
}
#login_link form, #resetPW form {
	padding: 10px;
	margin: 10px 0;
}
#login_link form input, #resetPW form input {
	height: auto;
	font-size: 16px;
	padding: 8px;
}
#resetPW section {
	width: 100% !important
}
#resetPW section label {
	color: white;
}
}

@media screen and (max-width:500px) {
.intro p {
	font-size: 1rem;
	text-align: left;
}
.gray .colWide {
	width: 100%;
	margin-right: 0;
}
.gray .colNarrow {
	width: 100%;
}
nav a {
	font-size: .75em;
	margin: 0 18px 0 0;
}
h1 {
	font-size: 2.3em;
}
.logo {
	width: 95%;
}
	div.two-up > div{
	width:100%;
	margin-right:0;

}
}
