@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFC;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px 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;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px ridge #000000;
	text-align: left;
	padding: 0px;
}
.oneColFixCtrHdr #header {
	background: #FFF;
	padding: 0;  /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-size: 0.95em;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#006313;
}
.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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#menuSpry {
	background: #060D7F;
	width: 780px;
	height: 28px;
	padding: 0px;
	margin: 0px;
}
h1 {
	font-size: 1.4em;
	color: #060D7F;
}
h2 {
	font-size: 1.1em;
	color: #060D7F;
}
h3 {
	font-size: 1em;
	color: #060D7F;
}
h4 {
	font-size: 0.9em;
	color: #060D7F;
}
.headerText {
	font-size: 1.7em;
	font-weight: bold;
	font-style: italic;
	color: #515151;
	text-align: center;
}
a:link {
	text-decoration: none;
	color: #060D7F;
}
a:visited {
	text-decoration: none;
	color: #060D7F;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
	color: #060D7F;
}
#footer a:link {
	text-decoration: none;
	color: #FF9;
}
#footer a:visited {
	text-decoration: none;
	color: #FF9;
}
#footer a:hover {
	text-decoration: underline;
}
#footer a:active {
	text-decoration: none;
	color: #FFC;
}
.smallText {
	color: #000000;
	font-family: Tahoma, Verdana, Arial, sans-serif;
	font-size: 0.8em;
	letter-spacing: 0.1em;
	}
.privText {
	font-size: .75em;
	}
.footerText {
	font-size: 0.8em;
	letter-spacing: 0.1em;
	color: #FFC;
	text-align: center;
}
#footerLinks {
	padding: 10px 0px 0px;
	margin: 0px;
	text-align: center;
}
.copyrightText {
	color: #FFC;
	font-size: 0.8em;
	font-style: normal;
}
.borderTest {
	border: 3px solid #999;
	padding: 3px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-box-shadow: 5px 5px 10px #999;
	-webkit-box-shadow: 5px 5px 10px #999;
	text-align: center;
}
/*Table styles start*/

#mainContent table#easyTbl {
	width: 350px;
	margin: 0 auto;
	background: #DFDFDD;
	border:1px solid #333;
	border-collapse:collapse;
}
/*#mainContent #sparkTbl thead {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	color: #006;
	font-weight: normal;
}*/
/*#mainContent #sparkTbl tbody {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	color: #006;
	text-align:left;
}*/
#mainContent #easyTbl caption {
	font-size: 1.1em;
	font-weight: bold;
	color: #060D7F;
	text-align: left;
	padding-bottom: 0.1em;
	line-height: 50px;
}
/*#mainContent #sparkTbl th {
	vertical-align: top;
	font-weight: normal;
	text-align: left;
	padding: 0.5em;
	border:1px solid #333;
}*/
#mainContent #easyTbl td {
	padding: 0.5em;
	border:1px solid #666;
}
#mainContent #easyTbl tr.odd {
	background: #CCC;
}
#mainContent #easyTbl tr:hover {
	background:#FFC;
}
#mainContent table#btgTbl {
	width: 350px;
	margin: 0 auto;
	background: #DFDFDD;
	border:1px solid #333;
	border-collapse:collapse;
}
#mainContent #btgTbl caption {
	font-size: 1.1em;
	font-weight: bold;
	color: #060D7F;
	text-align: left;
	padding-bottom: 0.1em;
	line-height: 50px;
}
#mainContent #btgTbl td {
	padding: 0.5em;
	border:1px solid #666;
}
#mainContent #btgTbl tr.odd {
	background: #CCC;
}
#mainContent #btgTbl tr:hover {
	background:#FFC;
}
/*Table styles end*/

