@charset "utf-8";
body  {
	background: #34467e;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #ffffff;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
}

a:link{color:#FFFFFF; text-decoration:none;}
a:visited{color:#000000; text-decoration:none;}

.twoCol #container { 
	width: 780px;
	margin: 0 auto;
	border: 1px solid #000000; /*black border around body of page - may want to remove*/
	text-align: left;
	background-image:url(../images/lay/hmpg/metalBg.gif);
} 
.twoCol #header { 
	height: 170px;
	background:url(../images/lay/hmpg/metalBg.gif); 
} 

.twoCol #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* 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 */
	background: url(../images/lay/hmpg/metalBg.gif);
	padding: 5px 5px 5px 5px; 
}
.twoCol #mainContent { 
	margin: 10px 190px 0 10px; /* 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: 0px 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
} 

table{
border-collapse: collapse;
}
th{
font-size:14px;
font-weight:bold;
}
td tr{
font-family:Georgia, "Times New Roman", Times, serif;;
font-size:10px;
}


.twoCol #footer { 
		text-align: center;
		font-size:9px;
		padding: 0 5px 0 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
		background-image:url(/images/lay/hmpg/metalBg.gif);
	} 
.twoCol #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 */
	font-size:9px;
}
.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;
}
