@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif, underline;
	background: #666666;
	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;
	background-image: url(../images/metalbkg.gif);
	background-position: center;
	background-color: #d8d8d8;
	background-repeat: repeat-y;
}
.class1 a:link {
	color: #000000;
	text-decoration: none
}
.class1 a:visited {
	color: #000000;
	text-decoration: none
}
.class1 a:hover {
color: #9BB7EB;
text-decoration: underline
}
.class1 a:active {
	color: #000000;
	text-decoration: none
}
.class2 a:link {
     color: #9BB7EB;
	text-decoration: none
}
.class2 a:visited {
	  color: #9BB7EB;
	text-decoration: none
}
.class2 a:active {
	  color: #9BB7EB;
	text-decoration: none;
}
.class2 a:hover {
  color: #9BB7EB;
	text-decoration: underline;
}
a img { border-style:none;
}
.oneColFixCtrHdr #container {
	width: 720px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #ffffff;
	padding: 0 0px 0 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. */
}
.oneColFixCtrHdr #mainContent {
	padding: 10px 30px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	line-height: 10px;
	height: auto;
}
.oneColFixCtrHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 270px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 25px 10px; /* padding keeps the content of the div away from the edges */
	height: 320px;
	background-image: url(../images/gray_bkg.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	border: 1px Solid #d8d8d8;
	line-height: 13pt;
}
.oneColFixCtrHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 270px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 25px 10px; /* padding keeps the content of the div away from the edges */
	height: 320px;
	background-image: url(../images/gray_bkg.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	border: 1px Solid #d8d8d8;
	line-height: 13pt;
}

.oneColFixCtrHdr #footer {
	padding: 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
	height: 100px;
	background-image: url(../images/spray_footer.gif);
	background-repeat: no-repeat;
}
.oneColFixCtrHdr #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: 20px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	line-height: 17px;
}
#dg {
	font-family: Gibraltar;
	background-color: #ffffff;
	width: 50px;
	text-align: center;
	position: fixed;
	bottom: 0px;
	background-position: bottom;
	padding-bottom: 10px;
}
.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;
