/* The styles for the body element sets all margins and padding to 0 to overide any defaults. It also make all text black and background white. Font-family and size are not set, so will show the default.   */

body {
		margin:0;
		padding:0;
		color:#000;
		background:#000025;
	}
	
/* The styles for the wrapper id create a 800 pixel box that is centered in the browser window with auto left/right margins. Top and bottom margins set to 20 pixels. */

	
#wrapper {
		width:420px;
		margin:20px auto;
	}
	
#header {
		color:white;
		text-align:center;
		padding:5px;
		margin:0;

	}
	
#footer {
		color:white;
		text-align:center;
		padding:0;
		margin:0;

	}	
	
 #footer a:link{
		color:white;
	}
	
 #footer a:visited{
		color:gray;
	}

#footer a:hover{
		color:silver;
	}
	
/* The styles for the Main. */

#main {
		float:left;
		width:400px;
		margin:10px;
		border:2px solid #22CEF2;
	}