@charset "UTF-8";

/* 	This sets all margins and padding to a default of zero so that we don't have to recalculate for
	the previous default of 10 or 15 pixels.
*/
* {
	margin: 0;
	padding: 0;
}/* CSS Document */

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	/* 	1 em is essentially 100% of the normal font size of this particular font - about 12px
		Ideally, you want to use em instend of pixels. Why use em instead of pixels? 
		A good argument is on http://www.bigbaer.com/css_tutorials/css_font_size.htm
	*/
	color: #000000; /*Default font color chosen from Japanese Garden from http://kuler.adobe.com */
	text-align:center; /*This sets the background color to gray for the outer edges of the page */
	background-color: #FFFFFF;
}
#outerwrapper {
	background-image: url(../images/web-banner.gif);
	text-align: left;
	height: 699px;
	width: 1023px;
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	position: relative;
}

#maincontent {
	position:absolute;
	width:643px;
	height:419px;
	z-index:2;
	left: 190px;
	top: 232px;
	overflow: auto;
	background-color: #8CCCEC;
	padding: 5px 10px 5px 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
}
#maincontent a:link {
	color: #333333;
}
#audio {
	position:absolute;
	width:100%;
	height:44px;
	z-index:1;
	left: 0px;
	top: 263px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	text-align: center;
}
a:link {
	color: #999999;
}
.homelink {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.header {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
}
