@charset "utf-8";
body  {
	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: justify; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #1E1916;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	background-image: url(../images/background.jpg);
	background-repeat: repeat-x;
}
.wellness #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: justify;
} 
.wellness #header {
	height: 372px;
	width: 780px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-image: url(../images/header09.jpg);
	background-repeat: no-repeat;
} 
.wellness #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 */
}
.wellness #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.wellness #mainContent {
	line-height: 1.5;
	border-left-width: 1px;
	border-left-style: dashed;
	border-left-color: #B3B973;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 30px;
} 

#vertmenu {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	width: 150px;
	margin: 0px;
	float: none;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#vertmenu h1 {
	display: block;
	background-color: #EAECD9;
	font-size: 100%;
	padding: 5px;
	color: #F7B69A;
	width:150px;
	margin-top: 0px;
	margin-right: 0em;
	margin-bottom: 0px;
	margin-left: 0em;
}

#vertmenu ul {
list-style: none;
margin: 0px;
padding: 0px;
border: none;
}
#vertmenu ul li {
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
#vertmenu ul li a {
	font-size: 100%;
	display: block;
	border-bottom: 1px dashed #DF9D84;
	text-decoration: none;
	color: #76421A;
	width:150px;
	border-top-width: 1px;
	border-top-style: none;
	border-top-color: #6A685B;
	padding-top: 8px;
	padding-right: 5px;
	padding-bottom: 8px;
	padding-left: 10px;
}

#vertmenu ul li a:hover, #vertmenu ul li a:focus {
	color: #514C48;
	background-color: #F2F3E9;
	font-weight: bold;
}
.wellness #footer {
	background-color: #777E3A;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 230px;
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #B5BC78;
} 
.wellness #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 */
	color: #FFFFFF;
}
#footer a {
	color: #D8DCB9;
	text-decoration: none;
}
#footer a:hover {
	color: #FFFFFF;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #FFFFFF;
}
.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: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 15px;
	margin-top: 5px;
	border: 1px solid #E6E8D2;
	padding: 5px;
	background-color: #FAFBF6;
}
.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 a:link {
	color: #6E401C;
	text-decoration: none;
}
#mainContent a:visited {
	color: #5C7613;
	text-decoration: none;
}
#mainContent a:hover {
	color: #231F20;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #666666;
}

