@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #006471;
	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;
}
.twoColFixRtHdr #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	background-image: url(images/2NDBG.jpg);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColFixRtHdr #containerSEARCH { 
	width: 800px;  /* 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: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColFixRtHdr #fpcontainer { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	background: #FFFFFF;
	padding: 0 10px 0 20px;  /* 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. */
	height: 142px;
	text-align: left;
} 
.HeaderName {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 30px;
	font-weight: bold;
	color: #000;
	text-align: left;
}
.HeaderBullets {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #e6a62b;
	border-bottom-color: #e6a62b;
	text-align: left;
	width: 600px;
}
.fpaddress {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	text-align: right;
	float: right;
}
.twoColFixRtHdr h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 25px;
	color: #128795;
}

.twoColFixRtHdr h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18px;
	color: #52A7B2;
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 242px; /* 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 */
	height: 100%;
	background: #fdb730; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
}
.twoColFixRtHdr #mainContent {
	margin: 0 267px 0 0; /* the right margin on this div element creates the column down the right 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. */
	width: 493px;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #FFF;
} 
.twoColFixRtHdr #FPmainContent {
	margin: 0; /* the right margin on this div element creates the column down the right 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(images/FPBG.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 495px;
} 

.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000 url(images/2ND_FOOT.jpg) no-repeat center bottom;
	height: 495px;
} 
.twoColFixRtHdr #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 */
}

a:link {
	color: #0000FF;
	text-decoration: none
}

a:visited {
	color: #993333;
	text-decoration: none
}

a:active {
	color: #FF6600;
	text-decoration: none
}

a:hover {
	color: #0000FF;
	text-decoration: underline
}

a.nav:link {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 9pt
}

a.nav:visited {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 9pt
}

a.nav:active {
	color: #FFCC00;
	text-decoration: none;
	font-size: 9pt
}

a.nav:hover {
	color: #FFCC00;
	text-decoration: none;
	font-size: 9pt
}

a.foot:link {
	color: #FFFFFF;
	text-decoration: none;
}

a.foot:visited {
	color: #FFFFFF;
	text-decoration: none;
}

a.foot:active {
	color: #FFCC00;
	text-decoration: none;
}

a.foot:hover {
	color: #FFCC00;
	text-decoration: underline;
}

.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: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	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;
}
#nav {
	background-image: url(images/NavBG.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	height: 26px;
	text-align: center;
}

.FPMAINtext {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	color: #000;
	text-align: left;
	padding: 15px;
	float: right;
	width: 500px;
}
#copyright {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #FFF;
	background-color: #006471;
	text-align: center;
}
