@charset "utf-8";
body  {
	background: #FFF;
	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: #000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 90%;
}
.kwebsWilson #container {
	width: 980px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #DEF5DB;
	background-image: url(../img/footer.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
} 
.kwebsWilson #header {
	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. */
	height: 146px;
	background-image: url(../img/Jane7.jpg);
	background-position: right center;
	background-repeat: no-repeat;
} 
.kwebsWilson #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 0 300px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family:"trebuchet ms",arial,sans-serif;
	font-weight:bold; 
	font-size:220%;
	color: #363;
	background-color: inherit;
}
.kwebsWilson #header h2 {
	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: 0 0 0 330px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-weight:bold; 
	font-size:140%;
	color: #000;
	background-color: inherit;
}
.kwebsWilson #header h3 {
	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: 0 0 0 430px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-weight:bold; 
	font-size:100%;
	color: #909090;
	background-color: inherit;
}
.kwebsWilson #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* 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: #DEF5DB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.kwebsWilson .sidebar2 {
	width: 250px;
	float: right;
	padding-bottom: 5px;
	padding-left: 20px;
}
.kwebsWilson .mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left 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 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFF;
	border: 1px solid #FFF;
} 
.kwebsWilson #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
		height: 30px;

} 
.kwebsWilson #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 */
}
.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;
}
/*mainContent Headers*/
h1.pagetitle {
	margin:0.5em 0 0.4em 0; 
	padding:0 0 2px 0; 
	border-bottom:solid 3px #819D86; 
	color:#000;
	font-weight:bold; font-size:160%;
	width: 100%;
}
h2.block {
	margin: 0; 
	padding:2px 0 2px 10px; 
	background:#DEF5DB; 
	color:#000; 
	font-weight:bold; 
	font-size:110%;
	width: 80%;
}
/*Left Navigation*/
ul#nav {
	text-align: left;
	list-style: none;
	padding: 0;
	margin: 0;
	font-weight: bold;
}
ul#nav li {
	display: block;
	padding: 0;
	margin: 0;

}
ul#nav li a {
	display: block;
	width: 203px;
	padding: 0.5em 0 0.5em 0.5em;
	border-width: 0.5px;
	border-style: solid;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
	background: #819D86;
	font-size: 12px;
}
ul#nav li a:hover {
	color: #FFFFFF;
	background-color: #FC3554;
	background-image: url(../img/feather.png);
	background-repeat: no-repeat;
	background-position: right center;

}
ul#nav li#current a {
	color: #FFFFFF;
	background-color: #FC3554;
	background-image: url(../img/feather.png);
	background-repeat: no-repeat;
	background-position: right center;
}
ul#nav li#current a:hover {
	color: #FFFFFF;
	background-color: #FC3554;
	background-image: url(../img/feather.png);
	background-repeat: no-repeat;
	background-position: right center;
}
/* Images */
img {margin:0 2px 0 2px;}
img.left {float:left; margin:3px 10px 7px 0; padding:1px; border:1px solid rgb(150,150,150);}
img.centre {float:none; display:block; margin:0 auto; padding:1px; border:1px solid rgb(150,150,150);}
img.right {float:right; margin:3px 0 7px 10px; padding:1px; border:1px solid rgb(150,150,150);}
img.leftnoborder {float:left; margin:3px 10px 7px 0; padding:1px;}
img.centrenoborder {float:none; display:block; margin:0 auto; padding:1px; }
img.rightnoborder {float:right; margin:3px 0 7px 10px; padding:1px;}

.box_1 {
margin:0 3px 3px 0;
padding-top:8px;
float:left;
width:97%;
text-align:center;
}
.box_1_inline {
margin:0 3px 3px 0;
padding-top:8px;
float:left;
width:97%;
text-align:left;
}
.box_2 {
margin:0 3px 3px 0;
float:left;
width:455px;
text-align:left;
}
