body {
	margin: 0;           /* ensures consistency in all browsers */
	font-family: Verdana, Helvetica, sans-serif;
	background: #003;    /* always spec a bg color, EVEN IF it is white */
	color: #CCC;         /* always spec a font color, EVEN IF it is black */
	}
a:link, a:visited, a:active {
	color: #06C; 
	text-decoration: underline;
	background-color: transparent;
	}
a:hover {
	color: #FFF; 
	text-decoration: none; 
	background-color: #06C;
	}
#centerer {              /* this div is used to wrap ALL of the  content on the page */
	position: absolute;
	top: 50%;            /* this will work ONLY if you are CERTAIN the content will fit vertically -- with no scrolling */
	left: 50%;           /* this will work on any page */
	width: 780px;
	height: 450px;
	margin-top: -225px;  /*  half the height of your content */
	margin-left: -390px; /*  half the width of your content */
	padding: 0;
	border-bottom: 1px dashed #0066CC;
	}
#linker {
	position: absolute;
	bottom: 20px;
	left: 50%;
	width: 780px;
	margin-left: -390px;
	font-size: 12px;
	}

