@charset "UTF-8";
/*CSS Shorthand used throughout*/
/*HTML Tag Styles*/body,td,th {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
	color: #333;
	margin: 0px;
	padding: 0px;
}
body {
	margin: 0px;
	text-align: center;
	padding: 0px 20px 30px;
	background: #ffdd99;
}
h1 {
	FONT-SIZE: 52pt;
	color: #0077FF;
}
h2 {
	font-variant: small-caps;
	color: #717B7E;
	margin-left: 10px;
}
h3 {
	font-weight: normal;
	font-variant: small-caps;
	margin-left: 20px;}
h1, h2, h3 {
	margin-top: 0px;
	margin-bottom: 0.6em;
}
ul {
	font-style: italic;
 	font-size: 18pt;
	list-style: circle;
}
p, ul, ol, dl {
	margin: 0px 20px 7px;
}
img {
	margin: 0px;
	padding: 0px;
}
/*a or anchor tags - the four states that must appear in the following order - L, V, H, A Styles*/
a:link {
	color: #663B18;
	text-decoration: none;
}
a:visited {
	color: #663B18;
	text-decoration: none;
}
a:hover {
	color: #AE833E;
	text-decoration: underline;
}
a:active {
	color: #663B18;
	text-decoration: none;
}
/*Class Styles - can be applied more than onnce on a page*/
.bold {
	font-weight: bold;
	color: #cc0000;
}
.italic {
	font-style: italic;
	color: #F00;
}
.blue {
	color: #06F;
}
.boldWord {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bolder;
	color: #099;
}
/*DIV ID Styles - can only be used once per page*/
#HeadsUp {
	width: 880px;
	background: #ffdd99;
	text-align: left;
	margin: 0px auto;
	padding: 20px;
}
#content {
	width: 880px;
	background: #fff;
	text-align: left;
	margin: 0px auto;
	padding: 20px;
}
#footer {
	background: #CBBE9C;
	text-align: center;
	padding: 2px 0px;
	margin: 0px;
}
