/* CSS Document */

/*# * 
{
padding: 0;
 margin: 0;
border: 0;
}*/
 body { 
text-align: center;
background-color: #000000;
padding:0px;
margin:0px;
}
#mainContainer {
width: 90%;
 margin: 0 auto; /* We are going to center this design */
text-align: left; /* Since we used text-align: center in the body to be sure some older IE versions are going to center our design, we now align the text left */
border:1px solid #000000;
 background-color:#fff;
}
 #header {
 background: #E4DAA1;
 border-bottom:1px solid #030;
  }
 #content {
 float: right; /* Our content is going to be left aligned */
 width: 75%; /* And it's going to have a 500px width */
 background-color:#fff;
 padding: 5px;
height:100%;
  }
 #column {
 float: left; /* Our column is going to be right aligned */
 width: 179px; /* Our total width - content width is 260px */
 background-color:#E4DAA1;
 padding:0 0 5px 0;
height:100%;
  }
 #footer {
 clear: both; /* We have to clear our floats */
 width: 100%; /* We need to set the width on the footer since it's outside the mainContainer, and therefor isn't controlled by it */
 margin: 0 auto; /* We need to center the footer also */
 border-top:1px solid #030;
background-color:#E4DAA1;
 /*background-image:url(images/footer2.gif);*/
  }
 .menulink {
  /*margin:5px 5px 0 5px;*/
  padding:5px;
  /* border-bottom:1px solid #030;
  border-top:1px solid #030;*/
  }
  a.menulink {
  display: block;
width: 169px;
text-align: left;
text-decoration: none;
font-family:arial;
font-size:14px;
color: #fff;
background-color:#003300;
  }
  a.menulink:hover {
  background-color:#A41B1B;
  /*border-bottom:1px solid #030;
  border-top:1px solid #030;*/
  }
  .title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color:#000000;
	border-bottom:1px solid #808155;
	width:200px;
}
.normal {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color:#000000;
	border-bottom:1px solid #808155;
	width:200px;
}
