@charset "UTF-8";
/* CSS Document */

html {
	min-width: 1000px;
	min-height: 700px;
	}
	
	body {
	background-color: #343534;
	font-size:15px;
	font-family: helvetica, arial, san-serif;
	border: none;
	color:#66cccc;
}
	
	a:link {
	color: #99ffff;
	text-decoration: underline;
}
a:active {
	color: #99FFFF;
	text-decoration: underline;}
a:visited {color: #99ffff; text-decoration: underline; }
a:hover {color: #cccccc; text-decoration: none; }
	
	
.oneColElsCtrHdr #container {
	width: 1000px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #343534;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #343534;
	height:auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtrHdr #header { 
	background: #343534; 
	width:1000px;
	height:74px;
} 
.oneColElsCtrHdr #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColElsCtrHdr #mainContent {
	width: 1000px;
	padding; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #343534;
}
.oneColElsCtrHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#343534;
} 
.oneColElsCtrHdr #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 */
}


h1 {
	color:#99FFFF;
	font-family:Arial, Helvetica, sans-serif;
}

h2 {color:#99FFFF;
font:Arial, Helvetica, sans-serif;}

-->