@charset "UTF-8";
body  {
	background: #010308 none no-repeat scroll 50% 0;

	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: #cdcdcd;
	font: 62.5% "Lucida Grande", Lucida, Verdana, sans-serif;
}

#copyright { /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: black;
	height: auto;
	clear: both;
	color: #999;
}

.gray {
	color: #666;
}

#container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: black;
	margin: 0 auto;
	text-align: left;

}

#menu_bar {
	color: #cdcdcd;
	font-weight: bold;
	font-size: 1.5em;
	margin: -10px 40px;
} 
#header { 
	background: black; 
	padding: 15px 10px 0 25px;
	height: 140px;
} 
#header h1 {
	margin: 0;
	padding: 0;
}

#mainContent h1 {
	margin-top: 0;
	color: #ccc;
	font: 2.75em Georgia, "Times New Roman", Times, serif;
}

.headeralternative {
	color: #ccc;
	font: 1.75em/1.2em Georgia, "Times New Roman", Times, serif;
}
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 285px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	margin: 0;
	background: url(images/stanley_live_home.jpg) no-repeat;
	height: 380px;
}

.makefit {
	margin-top: -20px;
	margin-bottom: -20px;
}

#sidebarcontent {
	padding: 10px;
}
#mainContent { 
	margin: 0 25px;
	font-size: 1.2em;
	padding: 0 0 0 15px;
	height: 438px;
	background-image: url(images/home_splash.jpg);
} 
#footer { /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: black;
	height: 280px;
	margin-top: 20px;
	padding: 0 25px 25px;
}

#footercontent1 {
	margin: 0;
	float: left;
	width: auto;
	height: 250px;
	background-color: black;
}

#footercontent1b {
	float: left;
	width: 300px;
	height: 250px;
	background-color: black;
	padding-left: 10px;
	padding-right: 10px;
}

#footercontent2 {
	margin: 0;
	width: 285px;
	float: right;
	height: 250px;
}

#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;
	color: #cdcdcd;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

a {
	color: #828282;
	text-decoration: none;
}

a:visited {
	color: #828282;
}

a:hover {
	color: red;
	text-decoration: none;
	background-color: yellow;
}

a:active {
	text-decoration: none;
}

.red {
	color: #ff0000;
}
