@charset "UTF-8";

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	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: #000000;
}

.contentWrapper #container {
	width: 950px;
	margin: 0 auto;
	text-align: center;
	height: 625px;
}

.contentWrapper #header {
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	width: 950px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.contentWrapper #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 10px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.contentWrapper #leftColumn {
	float: left;
	width: 55px;
}

.contentWrapper #leftContent {
	float: left;
	width: 570px;
}

.contentWrapper #mainContent {
	float: left;
	width: 840px;
}

.contentWrapper #rightContent {
	float: left;
	width: 240px;
	height: 370px;
	background-color: #FFFFFF;
	padding-right: 30px;
	padding-top: 75px;
}

.contentWrapper #rightContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 1.4;
	color: #666666;
	font-weight: normal;
	text-decoration: none;
}

.contentWrapper #rightContent h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #999966;
	font-weight: normal;
	text-decoration: none;
	text-transform: uppercase;
	padding-left: 5px;
}

.contentWrapper #rightColumn {
	float: left;
	width: 55px;
}

.contentWrapper #footer {
	padding: 0px 0px 50px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	clear: both;
	width: 950px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999999;
	margin: 0px;
	line-height: 1.25;
}

.footerLocationsText {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999999;
}

.contentWrapper #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 */
}


/* SCROLLING DIV STYLES */

.contentWrapper #divContainer_1 {
	position:relative;
	width:229px;
	height:100%;
	min-height:320px;
	max-height:320px;
	overflow:hidden;
}

.contentWrapper #divContent_1 {
	position:absolute;
	padding:5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;
	line-height: 1.4;
}
a:link {
	color: #CCCCCC;
	text-decoration: none;
}
a:visited {
	color: #CCCCCC;
	text-decoration: none;
}
a:hover {
	color: #FFFFFF;
	text-decoration: none;
}
a:active {
	color: #CCCCCC;
	text-decoration: none;
}
h2 {
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 1.4;
	font-weight: normal;
}
.titleText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 1.4;
	font-weight: normal;
	color: #333333;
}

/* Content Links */

a.contentLink:link {
	color: #CC9900;
	text-decoration: none;
}
a.contentLink:visited {
	color: #CC9900;
	text-decoration: none;
}
a.contentLink:hover {
	color: #CC9900;
	text-decoration: underline;
}
a.contentLink:active {
	color: #CC9900;
	text-decoration: none;
}
