fbody  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffcc ;
	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;
	color: #000000;
}

a:link {color: #00c;text-decoration: underline;}
a:active {text-decoration:none;}
a:visited { color: #00c;}
a:hover {color:#1f6690; text-decoration:none;}

#container { 
	width: 80%;  
	background: #FFFFFF url(sidebar-border.png) top left repeat-y;
	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 { 
	background: #F6CF35 url("header.png");
	background-repeat: no-repeat;
	background-position: 100px 3px; 
	height: 170px;
	padding: 0 10px 0 20px;  /* 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. */
} 
#header h1 {
	margin-left: 250px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	font-size:48px;
	font-family: Arial, Helvetica, sans-serif;
	color: #993333;
	padding: 60px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#sidebar1 {
	margin: 1px 0 20px 0;
	float: left; 
	width: 200px; 
	padding: 0 0 0 20px;
}

#sidebar1 ul{
	margin:0;
	padding: 0;
	}
	
#sidebar1 li{
	list-style:none;
	margin-left: 33px;
	padding: 5px 0 5px 0;
	}
	
#sidebar1 a{
	color: #000000;
	text-decoration:none;
	padding: 5px 0 5px 0;
	}

#sidebar1 a:hover{
	color: #000066;
	text-decoration: underline;
	}	
	
#mainContent { 
	margin: 13px 0 0 215px; 
	padding: 0 20px;
}

#mainContent img {
	float:left;
	padding-top: 10px;
	padding-right: 16px;
	}

#mainContent h1{
	margin: 0;
	text-align: center;
	padding: 10px;
	}

#mainContent h2{
	margin: 0;
	text-align:center;
	}
	
#mainContent h9{
	font-size:12px;
	line-height: 13px;
	text-align: center;
	}

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color: #ffcc00;
	background:#000000; 
} 
#footer p {
	margin-left: 230px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
}

#footer a:link {color:#fc0; text-decoration:none;}

.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: left;
}

.booktitle{
	font-family:"Trajan Pro", Verdana, Arial;
	font-size: 26px;
	color:#9c1d1e;
	}
	
.style1 {
	font-size: 10px
}