@charset "utf-8";
body  {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	background: url(images/bg.jpg) repeat;
	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: #000000;
}
/* Header */
.twoColFixRtHdr #header { 
	background: url(images/header_bg.jpg) repeat-x #FFFFFF; 
	height: 123px;
	width: 100%;
	padding: 0;  /* 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. */
	margin: 0 auto;
	text-align: center;
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* 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 */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #logo {
	width: 950px;
	height: 123px;
	margin: 0 auto;
	background: url(images/logo2.png);
}
.twoColFixRtHdr #grass {
	width: 100%;
	height: 67px;
	margin: 0 auto;
	background: url(images/grass_bg.gif) repeat-x #FFFFFF;
	border-bottom: 4px solid #009900;
}
/* Container*/
.twoColFixRtHdr #container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
	background: url(images/bg.jpg) repeat;
}
.twoColFixRtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 225px; /* 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 */
	background: none; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 10px;
	margin: 0 auto;
}
.twoColFixRtHdr #sidebar1 h1 {
	margin: 0;
	padding: 15px 0 0 0;
	border-bottom: 1px groove #333333!important;
}
.twoColFixRtHdr #container_base {
	margin: 0 0 0 270px;
	padding: 0;
	height: 200px;
	width: 660px;
	background: url(images/bowlers_horizontal.png) no-repeat;
}
.twoColFixRtHdr #mainContent { 
	margin: 0 0 0 250px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: justify;
}
.twoColFixRtHdr #mainContent a,a:visited {
	color: #663300;
	text-decoration: none
}
.twoColFixRtHdr #mainContent a:hover {
	text-decoration: underline;
	color: #663300;
}
.twoColFixRtHdr #mainContent h1 {
	margin: 0;
	padding: 15px 0 0 0;
}
/* Footer */
.twoColFixRtHdr #grass_footer { 
	width: 100%;
	height: 42px;
	margin: 0 auto;
	background: url(images/grass_footer.png) repeat-x;
}
.twoColFixRtHdr #footer_width { 
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center;
	height: 200px;
	background: #000000;
}
.twoColFixRtHdr #footer_container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
} 
.twoColFixRtHdr #eastkent_map {
	margin: 0;
	padding: 25px 0 0 0;
	width: 240px;
	float: left;
} 
.twoColFixRtHdr #banner {
	margin: 0 0 0 295px;
	padding: 25px 0 0 0;
	height: 135px;
	width: 650px;
}
.twoColFixRtHdr #banner a {
	color: #000000!important;
}
.twoColFixRtHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin: 0 0 0 250px;
	font-size: 12px;
	color: #FFFFFF;
	text-align: right;
} 
.twoColFixRtHdr #footer a,a:visited {
	color: #999999;
	text-decoration:none;
}
.twoColFixRtHdr #footer a:hover {
	text-decoration:underline;
	color: #FFFFFF;
}
.twoColFixRtHdr #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 */
}
/* Floats */
.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;
}
/* Lists */
ol li {
	list-style:decimal;
}
ol li li{
	list-style:lower-alpha;
}
/* Table */
table {
	width: 620px;
}
td {
	vertical-align: middle;
	text-align: center;
	height: 30px;
}
/* Images */
img {
	border:none;
}
