@charset "UTF-8";
body  {
	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: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #000;
}
h2 {
	color: #FFF;
	font-size: 20px;
}
h3 {
	font-size: 18px;
	text-align: center;
	color: #FFF;
}
h4 {
	font-size: 16px;
}
h5 {
	font-size: 16px;
	text-align: center;
}
a  {
	color: #C96E14;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:visited {
	color: #C96E14;
}
#container  {
	width: 900px; /* 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. */
	background-color: #000;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(../images/cont_bgnd.gif);
	background-repeat: repeat-y;
} 
#header  {
	background: #DDDDDD;  /* 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. */
} 
#navWrap {
	background-image: url(../images/navBar_bgnd.gif);
	height: 36px;
	background-repeat: repeat-x;
}
#navBar {
	background-image: url(../images/navBar_L.gif);
	background-repeat: no-repeat;
	height: 36px;
	padding-left: 15px;
	background-position: left;
}
#navBarL {
	float: left;
	height: 36px;
}
#navWrap2 {
	background-image: url(../images/navBar_R.gif);
	background-repeat: no-repeat;
	background-position: right;
	height: 36px;
}
#pageheadDiv {
	width: 299px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
}
#footerWrap {
	background-image: url(../images/footer_bgnd.gif);
	background-repeat: repeat-x;
}
#footer  {
	background-image: url(../images/footer_R.gif);
	background-repeat: no-repeat;
	height: 63px;
	background-position: right;
} 
#footerTextDiv {
	background-image: url(../images/footer_L.gif);
	background-position: left;
	background-repeat: no-repeat;
	margin: 0px;
	text-align: center;
	height: 48px;
	padding-top: 15px;
	font-size: 12px;
}
#footerTextDiv p {
	margin: 0px;
}
#footerTextDiv a {
	color: #FFF;
	text-decoration: none;
}
#footerTextDiv a:hover {
	text-decoration: underline;
}
#footerTextDiv a:visited {
	color: #FFF;
}
.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;
}
.photoRight {
	float: right;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
}
.photoLeft {
	float: left;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.newsDiv {
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	text-align: justify;
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #666;
}
#footer #signature  {
	float: right;
	width: auto;
	padding-right: 10px;
	margin-top: 3px;
}
#footer #signature a  {
	color: #999;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

