@charset "utf-8";
body {
	background: #282828;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #FF9;
	top: 20px;
	background-image: url(images/polka-dots.png);
	background-repeat: repeat;
	font-family: Arial;
	font-size: 100%;

}


a:link {
	color: #FF9;

	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FF9;
}
a:hover {
	text-decoration: underline;
	color: #282828;
}
a:active {
	text-decoration: none;
	color: #666;
}


#container{
	width: 780px;  
	background: #282828;
	height: 760px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #565656;
	border-bottom-color: #565656;
	border-left-color: #565656;

	}
	
#header {
	background-image: url(images/catchHeader.png);
	padding-top: 0px;
	background-repeat: no-repeat;
	height: 280px;
	width: 780px;
	border-bottom: 5px solid #565656;
	text-align: right;
	
	top: 200px;
	
}
h1   {
	margin: 0px 0px 0px 0px;
	padding: 0;
	font-size: 1.5em;
}

#header ul{
	margin: 0;
	padding: 0;
	list-style: none;
	float:right;
	position: relative;
	right: 52px;
	top: 240px;
	bottom: 0px;
	}
	
#header li{
	display: inline;	
	}


ul {
	text-decoration: none;
	text-align: center;
	float: left;
	list-style-type: none;
}


#mainContent {
	padding: 25px 0px 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #282828;
	width: 780px;
	margin: 0px;
	height: 450px;
} 

#mainContent p{
	margin: 0; 
	padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	float: right;
	color: #565656;
	font-size: 0.8em;
	position: relative;
	right: 52px;
	top: 0px;
	bottom: 0px;
	}

.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;
}








	

