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, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
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;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* clearfix */
.group:after {
  content: "";
  display: table;
  clear: both;
}



html {
	font-family: Georgia, "Times New Roman", Times, serif;
}

body {
    background: #191919;
}

div.container {
	max-width: 850px;
	margin: 0 auto;
	padding: 0 1%;
}

header {
}

header div.title {
	/* background: top left no-repeat url(/uploads/images/header.jpg);
	height: 316px; */
}

header h1 {
	color: #273e80;
	font-size: 3.5em;
	margin: 0;
	padding: 20px 0 20px 0;
	text-align: center;
}

div.navTopButton {
	display: none;
}

header nav {
	/* background: #273e80;
	padding: 0 0 0 4.283%; */
	text-align: center;
	background: #222;
}

header nav ul {
}

header nav ul ul {
/* make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way */
	position: absolute;
/* top being the bottom of the li it comes out of */
	top: auto;
/* keeps it hidden till hover event */
	display: none;
	background: #222;
}

header nav li {
	display: inline-block;
	font-size: 1em;
	/* margin-right: 20px; */
}

header nav li li {
    display: block;
}

header nav a {
	display: inline-block;
	padding: 10px 15px;
	color: #666;
	text-decoration: none;
}

header nav a:hover {
	background: #292929;
}

header nav li:hover ul {
    display: block;
	position: absolute;
	z-index: 999;
}


main.home {
}

main p {
	font-size: 18px;
	color: #666;
	line-height: 150%;
	margin: 0 0 15px 0;
}

main h2.pageTitle {
	font-size: 2.0em;
	color: #273e80;
	margin: 30px 0 45px 0;
	font-weight: normal;
	text-align: left;
}

main h3 {
    font-size: 1.5em;
	color: #273e80;
	margin: 30px 0 15px 0;
	font-weight: normal;
	text-align: left;
}

main a {
    color: #999;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}

main strong {
    font-weight: bold;
}




footer {
	border-top: solid 3px #5f70b8;
	margin: 20px 0;
	padding: 10px 0 0 0;
	clear: both;
}

footer nav {
	float: left;
	margin: 0 0 10px 0;
}

footer nav li {
	display: inline-block;
	font-size: 0.8em;
	margin-right: 25px;
}

footer nav a {
	display: inline-block;
	padding: 0;
	color: #5f70b8;
	text-decoration: none;
}

footer nav a:hover {
	color: #3f5398;
}



footer p {
	float: right;
	color: #777;
	line-height: 120%;
	margin: 0 0 10px 0;
	font-size: 12px;
}




@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 768px) {

	header nav.main {
		margin-top: 20px;
	}

	header nav.main li {
		font-size: 16px;
		margin-right: 3px;
	}

	header nav.main a {
		padding: 4px 15px;
		border-radius: 15px;
	}

	aside h3 {
		padding-left: 0;
	}

	aside>div {
		padding-left: 0;
		background: none;
	}

	aside.twitter>div {
		background: none;
	}


}


@media screen and (max-width: 640px) {

	div.navTopButton {
		display: block;
		background: top right no-repeat url(images/navBG.png);
		width: 29px;
		height: 27px;
		float: right;
		margin: 23px 2.93% 0 0;
	}

	header div.navs {
		display: none;
		position: absolute;
		top: 65px;
		right: 2.93%;
		background-color: #fff;
		width: 50%;
		max-width: 250px;
		height: auto;
		border: solid 1px #ccc;
		margin: 0;
		padding: 7px;
	}

	header div.visible {
		display: block;	
	}

	header nav {
		float: none;
		clear: none;
	}

	header nav li {
		display: block;
		padding: 5px;
	}

	header nav ul ul {
		display: none !important;
	}


	header nav.utility {
		margin: 0;
	}

	header nav.utility li {
		font-size: 14px;
		margin: 0;
	}

	header nav.utility a {
		color: #90a47c;
		text-decoration: none;
	}

	header nav.utility a:hover {
		color: #697c57;
	}


	header nav.main {
		margin: 0;
	}

	header nav.main li {
		font-size: 14px;
		margin: 0;
	}

	header nav.main a {
		border-radius: 0;
	}

	header nav.main a, header nav.utility a {
		padding: 5px;
		display: block;
	}

	header nav.main a.current {
		background: transparent;
	}

	header nav.main a:hover, header nav.utility a:hover {
		background: #ddd;
	}


	h2.pageTitleHome {
		font-size: 36px;
		margin: 30px 0 15px 2%;
	}

	div.asides {
		float: none;
		width: 100%;
	}

	aside.subnav {
		display: block;
	}

	aside h3 {
		padding-left: 30px;
	}

	aside>div {
		padding-left: 30px;
		background: url(images/blueArrow.png) top left no-repeat;
	}

	aside.twitter>div {
		background: url(images/logoSmall.png) top left no-repeat;
	}



	main {
		float: none;
		width: 100%;
	}

	footer nav.main {
		float: none;
		width: 100%;
	}

	footer nav.utility {
		float: none;
		width: 100%;
	}

	p.address {
		float: none;
		width: 100%;
	}

	div.legals {
		float: none;
		width: 100%;
	}



}
/* Stylesheet: kac Modified On 2022-10-02 17:57:54 */
