@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;
	background-color: #9401cc;
}
.oneColFixCtrHdr #container {
	width: 800px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #000000;
}
.oneColFixCtrHdr #header {
	background-color: #000000;
	border-bottom-color: #FFFF00;
	border-bottom-style: solid;
	border-bottom-width: medium;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	background-color: #000000;
	color: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	background-color: #FFCCFF;
	color: #66028C;
	text-align: center;
	height: 75px;
	font-size: 12px;
	padding-top: 8px;
}

#navigation {
  width: 206px;
}
#navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation li {
  border-bottom: 1px solid #ED9F9F;
}

#navigation li a:link, #navigation li a:visited  {
	font-size: 100%;
	display: block;
	padding: 0.4em 0 0.4em 0.5em;
	border-left: 0px;
	border-right: 1px solid #8c028a;
	background-color: #66028c;
	background-repeat: no-repeat;
	background-position: 5px;
	color: #FFFFFF;
	text-decoration: none;
	text-indent: 5px;
}

#navigation li a:hover {
	background-color: #FFCCFF;
	color: #000000;
	background-image: url(images/bfly_o.jpg);
	background-repeat: no-repeat;
	background-position: 5px;
}

