@charset "utf-8";
/* CSS Document */

#header {
	background: #FFFFFF;
	border-bottom-style: solid;
	border-bottom-color: #523409;
	border-bottom-width: 7px;
	
} 
#header p {
	font-size: 12px;
	color: #513204;
	text-align: center;
	vertical-align: top;
	font-style: italic;
}

#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 */
}

