* {
	margin: 0;
	padding: 0;
	border: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #B6A29B;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-y;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-position: center top;
}
/* Commonly used to style page titles. */
h1 {
	color: #008BAE;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
	padding-top: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #00AFDB;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
	padding-top: 12px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #009fda;
	font-weight: bold;
	text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
	color: #660066;
	font-weight: bold;
	text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #009fda;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #007171;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #009fda;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 990px;
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#outerWrapper #header {
	background-image: url(../images/header.gif);
	background-repeat: no-repeat;
	font-weight: bold;
	height: 119px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 990px;
	margin: 0px;
}
#outerWrapper #header img#logo {
	padding-top: 18px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
div.clearFloat /* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
   {
	font-size: 1%;
	line-height: 0px;
	clear: both;
	display: block;
}
#nav {
	background-color: #009bbb;
	height: 32px;
	margin: 0px;
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 171px;
}
#ulMainNav {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	display: inline;
}
#ulMainNav li {
	display: block;
	padding: 0px;
	margin: 0px;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 95%;
}
#ulMainNav a:link, #ulMainNav a:visited, #ulMainNav a:active {
	color: #FFFFFF;
	text-decoration: none;
	background-repeat: no-repeat;
	display: block;
	height: 24px;
	width: 93px;
	text-align: center;
	margin: 0px;
	background-image: url(../images/nav.gif);
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 0px;
}
#ulMainNav a:hover, #ulMainNav a.current:link, #ulMainNav a.current:visited {
	color: #000000;
	text-decoration: none;
	text-align: center;
	display: block;
	height: 24px;
	width: 93px;
	margin: 0px;
	background-image: url(../images/current_nav.gif);
	background-repeat: no-repeat;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 0px;
}
#outerWrapper #contentWrapper {
	background-image: url(../images/content.gif);
	background-repeat: repeat-y;
	width: 990px;
	margin: 0px;
	padding: 0px;
	background-color: #FFFFFF;
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 172px;
	margin: 0px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right;
	margin: 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 172px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-top: 0px;
	margin-right: 172px;
	margin-bottom: 0px;
	margin-left: 172px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 5px;
}


#outerWrapper #header #hdr_left {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	float: left;
	width: 750px;
}
#outerWrapper  #header  #hdr_left  #hdr_pic {
	text-align: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 18px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#outerWrapper #header #hdr_left #hdr_txt {
	padding-left: 31px;
	padding-top: 17px;
	padding-right: 0px;
	padding-bottom: 0px;
	margin: 0px;
	display: inline;
}
#outerWrapper #header #hdr_left .bhaipf {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 184px;
}
#outerWrapper #header #hdr_right {
	margin: 0px;
	padding: 0px;
	float: right;
	width: 181px;
	height: 119px;
}
#outerWrapper #header #hdr_right img.special {
	margin: 0px;
	padding: 0px;
}

#tableCenter {
	border: none;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 6px;
	margin-right: auto;
	margin-left: auto;
}
#tableCenter table, td {
	margin: 0px;
	padding: 4px 4px 8px 8px;
	text-align: left;
	border-top: none;
	border-right: none;
	border-left: none;
	vertical-align: top;
}
#tableCenter td.bold {
	font-weight: bold;
}
#tableCenter td.NoBorder {
	border: none;
}
#tableCenter td.NoBorderBold {
	border: none;
	font-weight: bold;
}
#tableCenter td.HPBorder {
	border-top: none;
	border-right: 0.5pt solid #CCCCCC;
	border-bottom: 0.5pt solid #CCCCCC;
	border-left: none;
}
#tableCenter td.HPBorderRight {
	border-right-width: 0.5pt;
	border-top-style: none;
	border-right-style: solid;
	border-left-style: none;
	border-right-color: #CCCCCC;
	border-bottom-style: none;
}
#tableCenter td.HPBorderBottom {
	border-right-width: 0.5pt;
	border-bottom-width: .5pt;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #CCCCCC;
}
#tableCenter p {
	margin: 0px;
	width: 180px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#tableCenter p a#pension:link, #tableCenter p a#pension:visited, #tableCenter p a#pension:active{
	background-image: url(../images/pig_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	font-weight: bold;
	width: 180px;
	display: block;
	background-position: center center;
}
#tableCenter p a#pension:hover, #tableCenter p a#pension.current:link, #tableCenter p a#pension.current:visited {
	background-image: url(../images/pig_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	width: 180px;
	display: block;
	background-position: center;
	font-weight: bold;
}
#tableCenter p a#faqs:link, #tableCenter p a#faqs:visited, #tableCenter p a#faqs:active{
	background-image: url(../images/faq_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	font-weight: bold;
	width: 180px;
	display: block;
	background-position: center center;
}
#tableCenter p a#faqs:hover, #tableCenter p a#faqs.current:link, #tableCenter p a#faqs.current:visited {
	background-image: url(../images/faq_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	width: 180px;
	display: block;
	background-position: center center;
	font-weight: bold;
}
#tableCenter p a#forms:link, #tableCenter p a#forms:visited, #tableCenter p a#forms:active{
	background-image: url(../images/form_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	font-weight: bold;
	width: 180px;
	display: block;
	background-position: center center;
}
#tableCenter p a#forms:hover, #tableCenter p a#forms.current:link, #tableCenter p a#forms.current:visited {
	background-image: url(../images/form_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	width: 180px;
	display: block;
	background-position: center center;
	font-weight: bold;
}
#tableCenter p a#trustees:link, #tableCenter p a#trustees:visited, #tableCenter p a#trustees:active{
	background-image: url(../images/handshake_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	font-weight: bold;
	width: 180px;
	display: block;
	background-position: center center;
}
#tableCenter p a#trustees:hover, #tableCenter p a#trustees.current:link, #tableCenter p a#trustees.current:visited {
	background-image: url(../images/handshake_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	width: 180px;
	display: block;
	background-position: center center;
	font-weight: bold;
}
#tableCenter p a#contact:link, #tableCenter p a#contact:visited, #tableCenter p a#contact:active{
	background-image: url(../images/phone_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	font-weight: bold;
	width: 180px;
	display: block;
	background-position: center center;
}
#tableCenter p a#contact:hover, #tableCenter p a#contact.current:link, #tableCenter p a#contact.current:visited {
	background-image: url(../images/phone_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	width: 180px;
	display: block;
	background-position: center center;
	font-weight: bold;
}
#tableCenter p a#related:link, #tableCenter p a#related:visited, #tableCenter p a#related:active{
	background-image: url(../images/mouse_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	font-weight: bold;
	width: 180px;
	display: block;
	background-position: center center;
}
#tableCenter p a#related:hover, #tableCenter p a#related.current:link, #tableCenter p a#related.current:visited {
	background-image: url(../images/mouse_pic.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	padding: 140px 0px 0px;
	text-align: left;
	width: 180px;
	display: block;
	background-position: center center;
	font-weight: bold;
}
#outerWrapper #footer {
	background-repeat: no-repeat; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 636px;
	background-image: url(../images/footer.gif);
	height: 50px;
	float: right;
	clear: left;
	padding-top: 6px;
	padding-right: 177px;
	padding-bottom: 0px;
	padding-left: 177px;
	font-size: 9px;
	line-height: 10px;
	margin: 0px;
}
#ImportInfo {
	margin: 0px;
	padding: 0px;
	border: thin none #DDB578;
	width: 161px;
}
#ImportInfo h1 {
	font-weight: bolder;
	color: #000000;
	margin: 0px;
	text-transform: uppercase;
	padding-top: 3px;
	padding-right: 7px;
	padding-bottom: 3px;
	padding-left: 7px;
}
#ImportInfo p {
	color: #000000;
	margin: 0px;
	padding: 3px 7px;
}
#ImportInfo ul {
	margin: 0px;
	padding: 0px 7px 3px;
	color: #000000;
	list-style-image: url(file:///C|/Documents%20and%20Settings/scoulter/Desktop/images/drk_blue_bullet.gif);
}
#ImportInfo ul li {
	margin-left: 15px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 3px;
}
#ImportInfo p a:link, #divImportInfo p a:visited, #divImportInfo p a:active {
	color: #007AA8;
	text-decoration: underline;
	margin: 0px;
	padding: 0px;
}
#ImportInfo p a:hover, #divImportInfo p a.current:link, #divImportInfo p a.current:visited {
	color: #009BBB;
	text-decoration: none;
	margin: 0px;
	border: none;
	padding: 0px;
}
#KeyDates {
	background-image: url(../images/key_dates.gif);
	background-repeat: no-repeat;
	background-position: 7px top;
	margin-top: 22px;
	padding-top: 55px;
	padding-bottom: 10px;
}
#KeyDates p {
	margin: 0px;
	padding: 0px;
}
#KeyDates p.date {
	font-weight: bolder;
	border: none;
	padding-right: 8px;
	padding-left: 13px;
	padding-top: 8px;
}
#KeyDates p.event {
	font-weight: normal;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 13px;
}
#FAQs {
	background-image: url(../images/faqs.gif);
	background-repeat: no-repeat;
	background-position: 13px top;
	margin-top: 15px;
	padding-top: 50px;
}
#FAQs p {
	padding: 0px;
	margin: 0px;
}
#FAQs p.question {
	font-weight: bolder;
	border: none;
	padding-right: 8px;
	padding-left: 13px;
}
#FAQs p.answer {
	font-weight: normal;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 13px;
}
#importdocs {
	background-image: url(../images/forms-documents.gif);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 15px;
	padding-top: 45px;
	padding-right: 10px;
	padding-left: 10px;
}
#importdocs p {
	padding: 0px;
	margin: 0px;
}
#table {
	text-align: left;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding: 4px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#outerWrapper #contentWrapper #content #table p {
	margin: 0px;
	padding: 0px;
}

#table td, tr {
	text-align: left;
	margin: 0px;
	padding: 6px;
}
#table td.bold {
	font-weight: bold;
}
#Main #CenterHR #table th {
	font-weight: bold;
	background-color: #EFC562;
	padding: 4px;
	text-align: center;
}
#table tr.shaded {
	background-color: #FAE9C5;
	border: .5pt solid #FFFFFF;
	text-align: left;
}
#table tr.shaded2 {
	background-color: #F7D899;
	border: .5pt solid #FFFFFF;
	text-align: left;
}
#Main #CenterHR #table p {
	margin: 0px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
}

#Main #CenterHR ul#bullet li.after {
	padding-bottom: 12px;
}
ul.bullettab {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
ul.bullettab  li {
	text-align: left;
	background-image: url(../images/drk_blue_bullet.gif);
	background-repeat: no-repeat;
	display: block;
	text-indent: 0pt;
	background-position: left 7px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 8px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 3px;
}
ul.bullet2tab {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
ul.bullet2tab  li {
	text-align: left;
	background-image: url(../images/bullet2.gif);
	background-repeat: no-repeat;
	display: block;
	text-indent: 0pt;
	background-position: left 7px;
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 6px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 11px;
}
#Main  #CenterHR  ul.bullet2  li.after {
	padding-bottom: 12px;
}
#outerWrapper #header #hdr_left p {
	font-size: 12px;
	font-weight: normal;
	padding-left: 185px;
	margin: 0px;
	padding-top: 7px;
	padding-bottom: 3px;
}
#outerWrapper #header #hdr_left p a {
	font-weight: normal;
	color: #000000;
	text-decoration: underline;
}
.PDF {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	display: block;
}
.PDF li {
	display: block;
	padding: 0px;
	margin: 0px;
	text-align: left;
}
.PDF a:link, .PDF a:visited, .PDF a:active {
	color: #008BAE;
	text-decoration: underline;
	background-repeat: no-repeat;
	display: block;
	text-align: left;
	border: none;
	background-image: url(../images/pdf.gif);
	background-position: left 2px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 3px;
	padding-right: 2px;
	padding-bottom: 6px;
	padding-left: 20px;
	font-weight: normal;
}
.PDF a:hover, .PDF a.current:link, .PDF a.current:visited {
	color: #008BAE;
	text-decoration: none;
	text-align: left;
	display: block;
	background-image: url(../images/pdf.gif);
	background-repeat: no-repeat;
	background-position: left 2px;
	border: none;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 3px;
	padding-right: 2px;
	padding-bottom: 6px;
	padding-left: 20px;
}
p {
	padding-top: 10px;
}
#import2 {
	background-image: url(../images/important-note.gif);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 15px;
	padding-top: 45px;
	padding-right: 10px;
	padding-left: 10px;
}
#import2 p {
	margin: 0px;
	color: #000;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
