@charset "UTF-8";
body  {
	font: georgia;
font-size:1em;
line-height:1.3em;
	background: #ffffff url(images/layout/body_bg.jpg) repeat-y center;
	margin: auto; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
}
a{
	color: #FF6600;
}
a:hover{
	color: #000000;
}


#container { 
	width: 700px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: -100px auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	position:relative;
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow: visible;
	padding-left:40px;
	padding-right:20px;
} 
#header {
	background: url(images/layout/top_bg.jpg) top center no-repeat;
 height:464px;
 margin:auto;
 position:relative;
} 

 #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px;
	border-left: dotted 1px #999999;
	padding: 15px 0px 0px 15px;
	margin-left:10px;
	
}
 #sidebar1 a{
 COLOR: #FF6600; 
}
  #sidebar1 a:hover{
  color:#000000;}
 #mainContent { 
 margin-top:50px;
} 
#footer{
	width: 720px;
	margin:auto;
 	height:109px;
	padding-top:25px;
	clear:both;
	text-align:center;
}
#footer A{
COLOR: #660000;
PADDING-RIGHT: 0px; 
DISPLAY: inline; 
PADDING-LEFT: 0px;
}
#footer A:hover{
COLOR: #000000;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
.block {display:block; margin-bottom:10px;}
