@charset "utf-8";
*{
  margin :0px;
  padding: 0px;
  border: none;
}
h1 {
	font-size: 14px;
	padding-bottom: 20px;
}


body {
	background: #666666;
	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-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
a:link  {
	color: #FFCC00;
	text-decoration: underline;
}

a {
	color: #FFCC00;
}



p {
	text-align: justify;
	padding-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding-top: 10px;
}


.common  #myMenuBar {
	clear: both;
	width: 790px;
	height: 27px;
}


.common   #welcome  {
	background-color: #AAAAAA;
}
.common  #welcome, .common  #news{
	padding: 10px 20px 10px 10px;
}


.common #container {
	width: 790px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 10px solid #FFFFFF;
	text-align: left;
	background-image: url(../images/background_gray.jpg);
	background-color: #AAAAAA;
	background-repeat: repeat-x;
}

.common #header {
	background: #DDDDDD;
	margin: 0px;
	margin-bottom: 30px;
	float: left;
}
.common #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 */
}
.common #sidebar1  p {
	padding-left: 30px;
}

.common #mainContent {
	padding-right: 10px;
	margin-left: 355px;
	height: 600px;
}

.common #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	background-color: #333333;
	width: 770px;
}
.common #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #CCCCCC;
	text-align: center;
	font-size: 10px;
}
.common #mail {
	position: absolute;
	left: 978px;
	top: 198px;
}

.common #bannertop {
	float: left;
}

.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;
}
