/*
-----------------------------------------------
Cummings Chiropractic
----------------------------------------------- */
/* general styles
----------------------------------------------- */
* {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4, h5, h6, p, blockquote, ol, dl, address {
    margin-bottom: 1em;
}
ul {
    padding-left:1em;
}
h1 {
	color: #ED3C42;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 21px;
	margin: 0;
}
body {
	background-color: #FFE4C9;
}

/* layout
----------------------------------------------- */
#wrapper {
	width: 800px;
	margin: 0 auto;
	background-color: #FFFFFF;
	background-image: url(../images/wrapper_bg.jpg);
	padding: 0 10px;
}
#header {
	background-image: url(../images/header_bg.jpg);
	text-align: center;
}
#sidebar {
	float: left;
	text-align: center;
	width: 300px;
	padding: 20px 0;
}
#sidebar img {
	border: solid #AEB5C5 5px;
}
#content {
	padding: 20px;
	float: right;
	width: 460px;
}

/* navigation
----------------------------------------------- */
#topnav {
	height: 35px;
	background-image: url(../images/topnav_bg.jpg);
}
#topnav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#topnav ul li {
	float: left;
}
#topnav ul li a {
	display: block;
	text-align: center;
	padding: 15px 0 1px 0;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 12px;
	width: 114px;
	background-image: url(../images/tab_bg.jpg);
	height: 19px;
	background-position: 0 bottom;
	margin: 0 8px;
	background-repeat: no-repeat;
}
#topnav ul li a:hover {
	color: #61738B;
	background-image: url(../images/overtab_bg.jpg);
}

/* footer styles
----------------------------------------------- */
#footer {
	text-align: center;
	color: #FFFFFF;
	padding: 10px 0;
	font-size: 12px;
	background-color: #6F8499;
	clear: both;
	width: 805px;
	margin: 0 auto;
}
#footer p {
	margin: 0;
}
#footer a {
	color: #FFFFFF;
	text-decoration: none;
}
#footer a:hover {
	text-decoration: underline;
}

/* misc. styles
----------------------------------------------- */
.left {
	margin: 0 10px 10px 0;
	float: left;
}
.right {
	margin: 0 0 10px 10px;
	float: right;
}
.clear {
	clear: both;
}

/* stick that footer, baby
----------------------------------------------- */
html, body {
	height: 100%;
}
#wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -50px; /* the bottom margin is the negative value of the footer's height */
}
#footer, .push {
	height: 30px;
}