@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #F7DE54;
	background-image: url(art/bkg.gif);
	background-repeat: repeat-y;
	background-position: center;
}
#container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFcc;
} 
#header {
	background-color: #FFFfcc;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	height: 162px;
} 
#header h1 {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	margin-left: 30px;
}
#sidebar1 {
	float: left;
	width: 200px;
	padding: 20px 5px 15px 0px;
	background-color: #FFFFcc;
}
#sidebar1 a{
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#sidebar1 img{
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#sidebar1 ul li{
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	list-style-type: none;
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#sidebar1 ul{
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 24px;
	padding: 0px;
}
#mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 220px;
	padding-top: 0px;
	padding-right: 26px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-color: #FFFFCC;
} 
#mainContent p{
	font-size: 86%;
	line-height: 126%;
} 
#mainContent h1{
	font-size: 130%;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #F7DE54;
} 
#mainContent h2{
	font-size: 92%;
} 
.space {
	font-size : 120%;
	line-height: 170%;
	font-style: italic;
}
.space2 {
	font-size : 120%;
	line-height: 100%;
	font-style: italic;
}
.underline {
	font-size: 110%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FF0000;
	font-weight: bold;
}
#mainContent ul li{
	font-size: 86%;
	line-height: 126%;
	padding-bottom: 7px;
	list-style-image: url(art/bullet.gif);
} 
#mainContent ol li{
	font-size: 86%;
	line-height: 126%;
	padding-bottom: 7px;
	margin-right: 20px;
	margin-left: 20px;
} 
#footer {
	background-color: #F7DE54;
	height: 40px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.rt { 
	float: right;
	margin-left: 8px;
}
.left { 
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#mainContent a {
	color: #0000CC;
}

