@charset "utf-8";

/* CSS Document */
body  {
	background: #666666;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
}

#container { 
	width: 775px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	min-height:592px;
	position:absolute;
	left:50%;
	margin-left:-387.5px; /* horizonal align */
	margin-top: 5px;
	background: #FFFFFF;
	background-image: url("../images/BodyBg.gif");	
	background-repeat:repeat-y;
} 

#header { 
	height:209px;
}

#header img { 
	float:left;
}

#body {
	background-color:#FFFFFF;
	margin: 0px 155px 0px 131px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding:20px 0px;
	border: 0px solid red;
	min-height:350px;
}
#sidebar1 {
	b/ackground-color:#000;

	float: left; /* since this element is floated, a width must be given */
	width: 130px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin:0px;
	margin-left:-131px;
	border: 0px solid green;
}

#side-bottom {
	p/osition:absolute;
	bottom:20px;

	margin-top:20px;

	height:350px;
	width:130px;
	b/ackground-image:url(../images/belowMenu.jpg);
	b/ackground-repeat:repeat-y;
	b/ackground-position:left;

}

.side-bottom {
	position:absolute;
	bottom:22px;
}

#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 144px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin:0px;
	margin-right:-146px;
	text-align:right;
	border: 0px solid green;
}

#mainContent { 
	padding: 0px 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin:0px;
	border: 0px solid yellow;
}

#footer {
	text-align:right;
	margin: 0px;
	padding: 2px 30px;
	background-color:#000;
}

#footer a {
	font: bold 8pt Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	text-decoration:none;
	margin-right:10px;
}

.bold {
	font-weight:bold;
}


.toplinks {
	 color:#DA5A36;
	 text-decoration:none;
	 font-size:10pt;
}	 

.headline {
	color:#999;
	
	font-size:11pt;
	text-decoration:none;
	font-weight:bold;
}

.news-image {
	float:left;
	padding:0px 7px 5px 0px;
}
