@charset "utf-8";
body {
	font: 100% "Palatino Linotype", "Book Antiqua", Palatino, serif;
	background: #000;
	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: #333;
}
a { 
	color: #00F;
}
a img {
	border: none
}
#container {
	width: 800px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: url(images/mainbg.jpg) repeat-y;
}
#header {
	padding: 15px 0px 0px;  /* 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. */
	font-size: 80%;
	color: #0FF;
	margin: 0px;
	border-right: 1px solid #333;
	border-bottom: 2px solid #666;
	border-left: 1px solid #333;
	background: #000;
}
#header a {
	color: #0FF;
	font-weight: bold;
}
#header p {
	padding: 0px 15px 0px 0px;
	margin: 0px;
}
#header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: auto;
}
#header li {
	float: left;
}
#header li a {
	display: block;
	text-decoration: none;
	padding: 2px 20px;
}
#header li a:hover, #header li a:active, #header li a:focus {
	color: #F00;
	font-size: 110%;
}
#mainContent {
	padding: 10px;
	font-size: 90%;
}
#mainContent h2 {
	padding: 0px 0px 0px 10px;
}
#mainContent p {
	padding: 0px 0px 0px 10px;
}
.podrt {
	background: #FFF;
	float: left;
	width: 345px;
	border: 1px solid #b37a45;
	padding: 10px;
	margin: 0px 0px 10px;
	clear: both;
}
.podrt table {
	border: 1px solid #CCC;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	color: #0FF;
}
#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: 70%;
}
.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;
}
.noTop {
	margin-top: 0px
}

