@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: #006;
	background-color: #e5e5e5;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
}
a:link {
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #FFF;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #960;
	font-size: 18px;
	font-weight: bold;
}
h1 {
	color: #006;
}
h2 {
	color: #006;
}
h3 {
	color: #006;
}
h4 {
	color: #006;
}
h5 {
	color: #006;
}
h6 {
	color: #006;
}
#container {
	width: 880px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-color: #39F;
}
#header {
	background: #3399FF;  /* 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. */
}

#update {
	background: #3399FF;
	padding-top: 50px;
	width: 110px;
	float: left;
	padding-right: 10px;
	padding-left: 10px;
	text-align: center;
}
#banner {
	background: #3399FF;
	padding-bottom: 5px;
	padding-top: 5px;
	text-align: center;
}
#nenu {
	background-color: #3399FF;
	text-align: center;
	padding-left: 20px;
}	
#mainContent {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	background-color: #39F;
}
#footer {
	padding: 0 10px;
	background-color: #39F;
	text-align: center;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
}

