@charset "UTF-8";
/* CSS Document */
<!--
body {
	font: 100% "Times New Roman", Times, serif;
	background: #ffffff;
	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 */
}

a:link {color: #000;}
a:visited {color: #000;}
a:active {color: #999}
a:hover {background-color: #fff; color: #999;}
a {text-decoration: none;}

.HeaderBold {
	font-size: 18px;
	font-weight: bold;
	color: #999;
}

.SmallHeader {
	font-size: 16px;
	font-weight: regular;
	color: #999;
}

.HeaderRight {
	font-size: 14px;
	font-weight: bold;
	color: #000;
}

h1 {
	font-size: 24px;
	color: #000;
}

#container {
	width: 1020px;
	background: #ffffff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#mainTitle {
	margin-left: 60px;
	font-size: 17px;
	height: 40px;
	padding: 0;
	width: 1020px;
	float: left;
	color: #FFF;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.mainTitleSmall {
	font-size: 15px;
	font-weight: bold;
	color: #000;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent {
	margin-left: 60px;
	font-size: 16px;
	height: 240px;
	padding: 0;
	width: 500px;
	float: left;
	color: #6E6E6E;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContentRight {
	margin-left: 100px;
	font-size: 14px;
	height: 240px;
	padding: 0;
	width: 310px;
	float: right;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContentLong {
	margin-left: 60px;
	font-size: 16px;
	padding: 0;
	width: 500px;
	float: left;
	color: #6E6E6E;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContentRightLong {
	margin-left: 100px;
	font-size: 14px;
	padding: 0;
	width: 310px;
	float: right;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#navContent {
	margin-left:38px;
	padding: 0;
	width: 1000px;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#navContainerLeft {
	padding: 0;
	width: 640px;
	float: left;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#navContainerRight {
	padding: 0;
	width: 344px;
	float: left;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#navContentLink {
	float: left;
	margin: 0;
	padding: 0;
	 /* remember that padding is the space inside the div box and margin is the space outside the div box */
}