@charset "UTF-8";
body  {
	font: .8em Georgia, Helvetica, Arial, Sans-Serif;
	background: url(images/bgimage.jpg) left center;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #444;
}

/* Global Styles */
@font-face {
  font-family: "century gothic";
  src: url(font/GOTHIC.TTF) format("truetype");
}

a:hover{text-decoration:none;}

#container { 
	width: 798px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background:url(images/bodybg.jpg) repeat-y top center;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


#header { 
text-align:center;
padding:20px;margin-bottom:60px;
} 

#header h1{display:none;}

#titlebadge{background:url(images/titlebadge.png) no-repeat top left;height:165px;width:159px;float:left;margin:-71px 0 0 -17px;}

#nav{margin:0;padding:0 0 0 80px;list-style-type:none;height:66px;background:url(images/navbg.gif) repeat-x top left;}
#nav li{margin:0;padding:0;font-family:"century gothic";display:inline;}
#nav li a{float:left;cursor:pointer;color:#fff;text-decoration:none;padding:20px;display:inline;font-size:20px;}
#nav li a:hover{color:#FF0}
#navbottom{background:url(images/navbottom.png) no-repeat top left;height:96px;}

#left {
	float: left; /* since this element is floated, a width must be given */
	width: 159px; 
	padding: 0; /* padding keeps the content of the div away from the edges */
}

#left p{padding:20px 20px 0 20px;margin:0;}
#left .textwidget{padding:20px 20px 0 20px;margin:0;}
#left h1{display:none;}

#right {
	float: right; /* since this element is floated, a width must be given */
	width: 150px; /* 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 */

}
#right hr{background:url(images/raildivider.png) no-repeat center top;height:32px;border:none;}

#mainContent { 
	margin: 0 165px 0 158px;
	padding: 0 15px; 
} 

#mainContent h1{color:#6c1212;margin-bottom:10px}
#mainContent hr{background:url(images/bodydivider.png) no-repeat center top;height:32px;border:none;}

.postdate{color:#7a490e;}



#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 


#footer p {
	margin: 0;
	padding: 10px 0;
	text-align:center;
	font-size:10px;
}
.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;
}