@charset "UTF-8";
body {
	background: #47473A url(images/background.png) center repeat-y;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	text-align: left;
}
#container {
	border: #000000 3px solid;
	width: 850px;
	background-color: #FFFFFF;
	background-image: url(images/logoBGD.png);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	border-top: 0px;
}
#header {
	background-color: #4B130F;
	background-image: url(images/logoBGD.png);
	padding: 20px 0px 15px 0px;  /* 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. */
	color: #FFFFFF;
	height: 258px;
	margin: 0px;
}
#preHeader {
	background-color: #000000;
}
#header h1 {
	margin: 0;
	padding: 10px 0;
}
#logo {
	float: right;
	width: 119px;
	margin: 5px 50px 0px 0px;
}
#title {
	margin: 15px 0px 0px 130px;
	float: left;
	width: 435px;
}
#menuContent {
	color: #FFFFFF;
	background: #000000 url(images/menuBGD.png) center top no-repeat;
	text-align: center;
	margin: 0px;
	padding: 15px 0px 0px 25px;
	height: 25px;
	font-size: 15px;
	font-family: Arial, Helvetica, sans-serif;
}
#menuSpacer {
	color: #999999;
}
#menuContent a:link {
	text-decoration: none;
	color: #FFFFFF;
}
#menuContent a:visited {
	text-decoration: none;
	color: #FFFFFF;
}
#menuContent a:hover {
	text-decoration: none;
	color: #990000;
	background-image: url(images/menuSel.png);
}
#footer {
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	margin: 4px 0px;
	border: #FFFFFF 1px solid;
}
#footer p {
	color: #CCCCCC;
	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 */
	font-size: 12px;
	text-align: center;
}
#footer a:link {
	color: #ddbb53;
	text-decoration: none;
}
#footer a:visited {
	color: #CCCCCC;
	text-decoration: none;
}
.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;
}
.red {
	color: #AA0000;
}
.redItalic {
	color: #AA0000;
	font-style: italic;
}
.green {
	color: #66FF33;
}
.greenItalic {
	color: #66FF33;
	font-style: italic;
}
.greenBold {
	color: #66FF33;
	font-weight: bold;
}
.greyItalic {
	color: #FFFF33;
	font-style: italic;
}
.greyBold {
	color: #FFFF33;
	font-weight: bold;
}
.bold {
	font-weight: bold;
}
.italicize {
	font-style: italic;
}
.smallItalicize {
	font-style: italic;
	font-size: 14px;
}
.boldItalic {
	font-style: italic;
	font-weight: bold;
}
.redBold {
	color: #CC0000;
	font-weight: bold;
}
.blue {
	color: #003399;
}
.footerHilite {
	color: #ddbb53;
	font-weight: bold;
}
