body {
     background-color:#C0C0C0;
	 padding-top: 20px;
     margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
}

.container {
	width: 850px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	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. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: 632px;
}

.header {
	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. */
	height:38px;
}

.underlinemenu{
	font-weight: bold;
	width: 100%;
}

.underlinemenu ul{
padding: 6px 0 7px 0; /*6px should equal top padding of "ul li a" below, 7px should equal bottom padding + bottom border of "ul li a" below*/
margin: 0;
text-align: right; //set value to "left", "center", or "right"*/
}

.underlinemenu ul li{
display: inline;
}

.underlinemenu ul li a{
color: #494949;
padding: 6px 3px 4px 3px; /*top padding is 6px, bottom padding is 4px*/
margin-right: 20px; /*spacing between each menu link*/
text-decoration: none;
border-bottom: 3px solid gray; /*bottom border is 3px*/
}

.underlinemenu ul li a:hover, .underlinemenu ul li a.selected{
border-bottom-color: black;
}

.sidebar1 {
	width: 82px;
	height: 632px;
    background-image:url('images/side.jpg');
    float: left;
    margin-top: -38px;
}

.mainContent {
	padding-left: 90px;
	height: 490px;
	padding-top: 50px;
}

.footer {
	padding-left: 90px;
	padding-bottom: 1px;
	height: 53px;
}