@charset "utf-8";
/* CSS Document */
* {
	padding: 0px;
	border: 0px;
}
 
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 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;
}
.twoColFixLt #container { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 16px auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 16px 0 0 0;
}
.twoColFixLt #mainContent { 
	margin: 0 0 0 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 0 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#divFooter {
	margin: 0 0 0 180px;
}
/* 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.
.fltrt { 
	float: right;
	margin-left: 8px;
}
*/
/* this class can be used to float an element left in your page
.fltlft {
	float: left;
	margin-right: 8px;
}
*/
.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;
}

p {
	line-height: 150%;
	text-align: left;
}
h1 {
	font-size: 28px;
	font-weight: normal;
}
h2 {
	color: #003366;
	font-weight: bold;
	font-size: 24px;
}
.fltrt {
	/* this class can be used whenever you wish to float an element to 
	   the right side of the page. The floated element must be placed 
	   above the element that will display next to it in the source code. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used whenever you wish to float an element left on the page */
	float: left;
	margin-right: 8px;
}
#ulMenu {
	list-style-position: inside;
	list-style-type: none;
}
#ulMenu li {
	text-align: center;
}
#ulMenu li a {
	font-size: 120%;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	line-height: 175%;
	color: #000;
}
#ulMenu li a:hover {
	color: #F00;
}
#divLogo {
	position: absolute;
	z-index: 10;
	margin-left: 895px;
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
}
#hrHeader {
	height: 5px;
	width: 750px;
	margin-top: 0px;
	margin-bottom: 10px;
	background-color: #F00;
	color: #F00;
	margin-right: 0px;
	margin-left: -30px;
	padding: 0px;
}
#divHeading {
}
#divContent {
	background-color: #FFF;
	/* background-image: url(images/contentBackground.jpg); */
}
h1#h1SecondLine {
	margin-top: 0px;
	padding-top: 5px;
}
.paragraphIntro {
	font-weight: bold;
	text-decoration: underline;
}
#ulSubMenu li {
	list-style-type: none;
	display: inline;
	padding-right: 20px;
}
#ulSubMenu li a {
	font-size: 120%;
	color: #000;
	text-decoration: none;
	font-weight: normal;
}
#ulSubMenu .firstSubMenuItem {
	margin-left: 0px;
}

#pFooter {
	color: #FFF;
	background-color: #000;
	border-top-width: 3px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #F00;
	border-right-color: #F00;
	border-bottom-color: #F00;
	border-left-color: #F00;
	font-weight: bold;
	text-align: center;
	font-size: 110%;
	margin: 0px;
	padding: 8px;
}
#pCopyright {
	text-align: right;
	margin-top: 3px;
	margin-right: 6px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-size: 10px;
}
#ulSubMenu li a:hover {
	color: #F00;
}
.photoCaption {
	margin-top: 0;
	padding: 0;
	font-weight: normal;
	font-style: italic;
}
.fltrt img.photo , .fltlft img.photo{
	border: 2px solid #FFF;
}
.red {
	color: red;
}
.columnBox {
	border-left: 2px solid red;
	padding-right: 0px;
	padding-left: 12px;
	padding-top: 0;
	margin-top: 3px;
	background-color: none;
	/* background-image: url(images/captionBackground600.jpg); */
}

.columnBox h3 {
	text-align: center;
}
.columnBox ul li {
	width: 300px;
	margin-top: 8px;
	line-height: 150%;
}
.columnBox ul {
	list-style-position: inside;
	list-style-type: disc;
}
#button {
	text-align: center;
}
#pFooter a {
	color: #FFF;
	text-decoration: none;
}#pFooter .footerDot {
	margin: 0 10px;
}
img.border {
	border: 1px solid black;
}
blockquote {
	margin: 0;
	padding: 0;
}
a:link {
	color: #003366;
	text-decoration: underline;
}
a:visited {
	color: #003366;
}
a:hover {
	color: red;
}
a:active {
	color: #003366;	
}
