@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: #FFFFFF;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #999999;
}
.oneColElsCtr #container {
	width: 100%;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-right: auto;
	/*	margin-bottom: 0;
	margin-left: 0px;*/
	background-color: #000000;
	background-image: url(../_images/whg10pin_bg.jpg);
	background-repeat: no-repeat;
}
.oneColElsCtr #container #header {
	height: 100px;
	background-image: url(../_images/whg10pin_header_image.jpg);
	background-repeat: no-repeat;
	background-position: right;
	background-color: #000000;
}

.oneColElsCtr #container #header #headerLogo {
	padding-top: 15px;
	padding-left: 10px;
}
.oneColElsCtr #container #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	margin-left: -9000px;
}
.oneColElsCtr #container #navmenu {
	height: 26px;
	margin-left: 0px;
	background-image: url(../_images/navmenu_bg.gif);
}
.oneColElsCtr #container #mainContent {
	float: left;
	padding-right: 10px;
	padding-left: 30px;
		width: 55%;
}
.oneColElsCtr #container #mainContent h1 {
	font-size: 1.6em;
	font-weight: normal;
	line-height: 1.3em;
	margin-bottom: -10px;
	margin-top: 30px;
}
.oneColElsCtr #container #mainContent p {
	line-height: 1.5em;
	font-size: 1.05em;
	letter-spacing: .02em;
	padding-bottom: 5px;
}
.oneColElsCtr #container #mainContent p a {
	color:#CCCCCC;
	text-decoration: none;
}
.oneColElsCtr #container #mainContent p a:hover {
	color:#FF9900;
	text-decoration: underline;
}
.oneColElsCtr #container #footer {
	/*height: 50px;
	clear: both;
	margin-left: 0px;
	padding-bottom: 20px;
	background-image: url(../_images/footer_bg.gif);
	background-repeat: repeat-x;*/
}
.oneColElsCtr #container #mainContent h2 {
	font-size: 1.5em;
	font-weight: normal;
	line-height: 1.1em;
	margin-bottom: -10px;
	margin-top: -30px;
}

