body {
	margin-left: 25%; margin-right: 10%;
	color: black; 
	background: whitesmoke; 
	}
	
	:link { color: black;
	text-decoration: none;}  /* for unvisited links */
  :visited { color: black; 
	text-decoration: none;}  /* for visited links */
  :active { color: black; 
	text-decoration: none;}  /* when link is clicked */
   :hover { color: black; 
	text-decoration: none;}  /* when mouse is over link */
	
	
	
	H1 
     { font-size: 2em; margin: .67em 0; color: black; }
	 
	 H3
     { font-size: 1.4em; margin: .50em 0; color: black; }

/* Navigation buttons */
.homeButton {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background-color:#f9f9f9;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#555555;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}
.homeButton:hover {
	background-color:#e9e9e9;
}
.homeButton:active {
	position:relative;
	top:1px;
}

/* Dotted black border */
hr.black {
  border-top: 1px dotted black;
}