@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFF url(Buttons/title_background.gif) repeat-x;
	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: #FFF;
}
.aeriedog #container {
	width: 780px;
	margin: 0 auto;
	text-align: left;
}
.aeriedog #header {
	text-align: center;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-bottom: 5px;
}
.aeriedog #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 */
}
.aeriedog #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 260px; /* 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: #FFF url(Images/brooke_puppy3.jpg) no-repeat center top; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 160px 0px 0px 20px;
	color: #000;
}
.smallertext {
	font-size: 0.85em;
}

.aeriedog #mainContent {
	margin: 0 0 0 285px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFF;
	color: #000;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	border-left-width: medium;
	border-left-style: solid;
	border-left-color: #CCC;
}


.aeriedog #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF;
}
.aeriedog #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 */
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
}
.centertext {
	text-align: center;
}
a:link {
	font-weight: bold;
	color: #b4b960;
	text-decoration: none;
}

a:visited {
	font-weight: bold;
	color: #a3a66e;
	text-decoration: none;
}

a:active {
	font-weight: bold;
	color: #F7F6A2;
}
.headline {
	font-weight: bold;
	color: #FFF7C6;
	background: #7B7B3E;
	padding-top: .25em;
	padding-bottom: .25em;
	padding-right: .25em;
	padding-left: .25em;
	margin-bottom: .25em;
}
.headline2 {
	line-height: 1.5em;
	font-weight: bold;
	color: #7B7B3E;
}
