@charset "UTF-8";
div,h1,h2,h3,h4,h5,h6,p,pre,address,blockquote,span,ul,ol,li,dl,dd,dt,img {
	margin: 0;
	padding: 0;
}
body {
	background: url(images/background.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;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 95%;
}
a {
	text-decoration: none;
	color: #000000;
}
a img {
	border: 0;
}
#container  {
	width: 780px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 2px double #49453e;
	border-right: 2px double #49453e;
	border-bottom: 2px double #49453e;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header  {
	padding: 0 10px 0 40px;  /* 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  {
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#navbar {
	/*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. */
	background: #757068;
	margin: 10px auto 0;
	border-top: 2px groove #49453e;
	border-bottom: 2px groove #49453e;
	height: 20px;
	padding: 0 40px 0 0;
}
#navbar ul, #navbar li {
	display: inline;
	list-style-type: none;
	float: right;
}

#navbar a:link, #navbar a:visited
{
	float: left;
	line-height: 14px;
	margin: 0 10px 4px 10px;
	color: #ffffff;
	font-size: 12px;
}

#navbar a:link#current, #navbar a:visited#current, #navbar a:hover
{
	background: transparent;
	color: #d4cec3;
}
#centerbar-home {
	background: #d4cec3;
	padding: 0 40px;
}
#centerbar-home    h1 {
	font-size: 3em;
	padding: 20px 0 10px 0;
	font-weight: normal;
}
#centerbar-home   h2 {
	font-weight: normal;
	padding-bottom: 30px;
	line-height: 1.4em;
	font-size: 1.4em;
}
#centerbar-inside {
	background: #d4cec3;
	padding: 0 40px;
}
#centerbar-inside h1 {
	font-size: 3em;
	padding: 10px 0 15px 0;
	font-weight: normal;
}
#mainContent  {
	padding: 10px 40px 10px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #f1eee5;
	clear: both;
	height: 460px;
}
#mainContent p {
	font-size: 1em;
	line-height: 1.4em;
	padding: 4px 0 6px 0;
}
#mainContent ul {
	list-style: url(images/check.gif);
	margin-left: 40px;
}
#mainContent li {
	font-size: 1em;
	line-height: 1.4em;
	padding-bottom: 6px;
}
#leftbox {
	float: left;
	width: 200px;
	margin: 0 40px 0 0;
	padding: 10px 0;
	height: 440px;
}
#leftbox h3 {
	font-size: 0.9em;
	font-weight: normal;
	padding-bottom: 4px;
	border-bottom: 1px solid #332f28;
	margin-bottom: 6px;
}
#leftbox p {
	font-size: .8em;
	padding-bottom: 4px;
}
#leftbox li {
	font-size: 0.8em;
}
#centerbox {
	float: left;
	width: 200px;
	margin: 0 40px 0 0;
	padding: 10px 0;
	height: 440px;
}
#centerbox h3 {
	font-size: 0.9em;
	font-weight: normal;
	padding-bottom: 4px;
	border-bottom: 1px solid #332f28;
	margin-bottom: 6px;
}
#centerbox p {
	font-size: .8em;
	padding-bottom: 10px;
}
#centerbox li {
	font-size: 0.8em;
}
#rightbox {
	float: left;
	width: 200px;
	padding: 10px 0;
	height: 440px;
}
#rightbox h3 {
	font-size: 0.9em;
	font-weight: normal;
	padding-bottom: 4px;
	border-bottom: 1px solid #332f28;
	margin-bottom: 6px;
}
#rightbox p {
	font-size: 0.8em;
	padding-bottom: 12px;
}
#rightbox li {
	font-size: 0.8em;
}
#footer  {
	padding: 0 40px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#d4cec3;
	margin: 5px 0;
	clear: both;
} 
#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 11px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.7em;
}

