@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: #fff;
	font-family: "Times New Roman", Times, serif;
	font-size: 100%;
	background-color: #262626;
}

td {
	color: #73735e;
}

h1 {
	font-family: lucida, sans-serif, unicode;
	letter-spacing: 0.4em;
	margin-bottom: 0px;
}

h2 {
	letter-spacing: 0.4em;
	color: #73735E;
	margin-bottom: 0px;
}

h3, h4, h5, h6 {
	color: #73735E;
	margin-bottom: 0px;
}

p {
	margin-top: 0px;
}

#container  {
	width: 750px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #1A1A1A;
}
#header {
	background-image: url(images/home_header_bg.jpg);
	background-repeat: no-repeat;
	padding-top:230px;
	padding-left:400px;
	color: #73735E;
}

#header2 {
background-image: url(images/page_header_bg.jpg);
	background-repeat: no-repeat;
	padding-top:150px;
	padding-left:400px;
	color: #73735E;
}


#mainContent  {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#left_column {
	float: left;
	width: 310px;
}
#right_column {
	padding-left: 330px;
}
#footer {
	font-size: .8em;
	padding: 20px;
}

/* links */
a:link, a:active {
	color: #fff;
}

a:hover {
	color: #91D5FA;
}

a:visited {
	color: #999999;s
}

