html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  background-color: rgb(58, 59, 59);
  color: white;
}
.DefaultButton{
	font-family: Courier;
	background-color: darkgray;
	color: white;
	border: solid;
	border-color: black;
	height: 36px;
	width: 100px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	font-size: 15px;
	transition: background-color 0.15s;
	vertical-align: bottom;
	padding-top: 5px;
	text-align: center;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.4);
}
.DefaultButton:hover{
	background-color: whitesmoke;
	color: black;
}
.DefaultButton:active{
	opacity: 0.5;
}
.ActiveButton{
	font-family: Courier;
	background-color: white;
	color: black;
	border: solid;
	border-color: black;
	height: 36px;
	width: 100px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	font-size: 15px;
	transition: background-color 0.15s;
	vertical-align: top;
	padding-top: 5px;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.4);
}
.ActiveButton:hover{
	background-color: whitesmoke;
	color: black;
}
.ActiveButton:active{
	opacity: 0.5;
}
.header{
	padding-left: 10px;
	background-color: gray;
	color: white;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.4);
	padding-bottom: 10px;
}
.SiteTitle{
	color: black;
	text-align: left;
	font-size: 50px;
}

.subheader{
	padding-top: 10px;
}
.ContactInfo{
	color: black;
	display: inline-block;
	vertical-align: top;
}
.buttons{
	vertical-align: bottom;
	position: absolute;
	left: 70%;
	display: inline-block;
}
.BodyText{
	padding-top: 25px;
	padding-right: 150px;
	padding-left: 10px;
}
.BigWord{
	font-size: 32;
	padding-bottom: 12px;
}
.SmallWord{
	line-height: normal;
	padding-left: 32px;
	padding-bottom: 32px;
}