@charset "UTF-8";
/* CSS Document */

body {
	font: 90% "MS Trebuchet," Verdana, Arial, Helvetica, sans-serif;
	background: #3366cc;
	margin: 20px 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-image: url(jcm5arctic.jpg);
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #container {
	width: 760px;
	margin: 0 auto;
	text-align: left;
	border: 1px solid #fffded;
}
.oneColFixCtrHdr #header {
	padding: 0 0 0 40px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.navbar {
	color: #fffded;
	font-size: 1em;
	text-align: right;
	margin-bottom: 15px;
	font-weight: bold;
}
.oneColFixCtrHdr #container #header .navbar a {
	color: #fffded;
	text-decoration: none;
}
.oneColFixCtrHdr #container #header .navbar a:hover {
	background-color: #003399;
	border-bottom: 2px solid #003399;
	color: #fffded;
}
.oneColFixCtrHdr #mainContent {
	padding: 1px 20px;
	background: #fffded;
	margin: 0 40px;
}
.oneColFixCtrHdr #footer {
	padding: 10px 0;
	color: #ffffff;
	font-size: 85%;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 0 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}
.navbarfooter {
	color: #fffded;
	font-size: 0.8em;
	text-align: center;
	margin-bottom: 15px;
	height: 20px;
	padding-top: 7px;
}
.oneColFixCtrHdr #container #footer a {
	color: #fffded;
	text-decoration: none;
}
.oneColFixCtrHdr #container #footer a:hover {
	background-color: #003399;
	border-bottom: 2px solid #003399;
	color: #fffded;
}
.text {
	font-size: 0.95em;
	color: #333333;
	text-align: left;
	border-left: dotted 1px #003399;
	margin: 0 10px 20px 85px;
	padding: 0 25px 0 25px;
}
.blue003399 {
	color: #003399;
}
.redcc3366 {
	color: #cc3366;
}
.jcm {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #cc3366;
	font-size: 6em;
	font-weight: bold;
}
a:link {
	color: #003399;
}
a:visited {
	color: #cc3366;
}
a:active {
	color: #003399;
}
a:hover {
	color: #cc3366;
}
h1 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 1.8em;
	font-style: normal;
	margin: 10px 0;
}
.copyright {
	font-size: 0.8em;
}
.disclaimer {
	font-size: 0.9em;
	font-style: italic;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 1.5em;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 1.5em;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
