/* CSS Document */
/* This is not for public use as a template.
Feel free, however, to use any ideas and incorporate
them into your own work. */
/* HUGE THANKS TO CSS ZENGARDEN FOR HELP WITH ALL OF MY PROBLEMS - GREAT RESOURCE SITE */

/*basic elements*/
body {
	text-align:center;
	margin:0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
}
A:link {color:blue;
	text-decorations:underline;
}
A:hover {color:yellow;
	text-decoration:none;
	background-color:blue;
}
A:visited,
A:active {color:aqua;
	text-decoration:underline;
}

/*specific elements and positioning*/
#content {margin: 15px;
	min-height: 600px;
	text-align:left;
	}
#footer {text-align:center;
	font-size:10px;
	width:100%;
	position:fixed;
	top:auto;
	left:0;
	right:0;
	bottom:0;
	}