.SHCMain #container {
	width: 100%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.SHCMain #header {
	background: #dbe8f2;
	background-image: url(images/hdrBG.gif);
	background-repeat:repeat-x;
	padding: 0px;
}
.SHCMain #headerBar {
	background: #457aaf;
	width: 369px;
}
.SHCMain #loginContainer {
	width: 760px;
}

.SHCMain #headerTabs {
	background: #dbe8f2;
	float:right;
	position: absolute; top: 33px; left: 460px; 
}

.SHCMain #headerLogin {
      background-image:url(images/SHClogin.gif);
      background-repeat:no-repeat;
      height:29px;
      width: 391px;
      float:right;
      position: relative; top: -18px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      color:#FFFFFF;
      text-align:center;
      padding: 10px 0px 0px 0px;
}

.SHCMain #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 */
}
.formField { 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: White;
} 
.SHCMain #mainContent {
	padding: 0px 0px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	width: 740px;
}
.SHCMain #footer { 
	padding: 0px 20px 10px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#6c96b7;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color:#FFFFFF;
} 
#footer A:link {text-decoration: underline; color: #FFFFFF}
#footer A:visited {text-decoration: underline; color: #FFFFFF}
#footer A:active {text-decoration: none}
#footer A:hover {text-decoration: underline; color:#66FF00}

.SHCMain #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 */
}
.linkWhite {
	color: White;
	text-decoration: none;	
}