body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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;
}

a:link {
	color: blue;
	text-decoration: none;
}
a:visited {
	color:blue;
	text-decoration: none;
}
a:hover {
	color:#FF0000;
	text-decoration: none;
}
a:active {
	color:#FF0000;
	text-decoration: none;
}

.plc #header { 
	background: #ffffff; 
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

.plc #container {
	width: 800px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	top: 40px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

.plc #indexcontent{
  text-align:center;
  font-size: medium;
  font-family:Comic Sans MS;
  font-weight: bold;
  font-style: italic;
  color:#FF0000;
  width: auto;
}

.plc #menubar {
	float: left; /* top and bottom padding create visual space within this div  */
	padding-top: 25px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 0;
	height:auto;
	text-decoration:none;
}

.plc #menubar img {
      width: 150px;
      height: 24px;
      border: 0px;
}

.plc #bodytext
{ 	margin: 0 0em 0 15em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	
	padding: 10px 10px;
  font-size:smaller; 
   font-family:Verdana;
}

.plc #bodytext h1{
   font-size:large; 
   color:#FF0000; 
   font-family:Comic Sans MS;
   font-weight: bold;
   font-style: italic;
   text-align:center;
}

.plc #bodytext h3{
   color:#FF0000; 
   font-family:Verdana;
   font-weight: bold;
   text-align:center;
}

.plc #bodytext table{
   font-size:small; 
   font-family:Verdana;
   width: 100%;
}


.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;
}