html {
	overflow-y: scroll;
}
body {
	width: 1000px;
	position: relative;
	margin: 0 auto;
	font-family: "Calibri", Arial, sans-serif;
	font-size: 22px;
	text-align: justify;
	line-height: 22px;
}
.Border {
	margin: 15px 0px 10px 0px;
	border: solid #C19A6B 4px;
	box-shadow: 10px 10px 5px #6F4E37;
	border-radius: 15px;
}
.center {
	text-align: center;
}
.indent {
	text-indent: 30px;
}
.centertable {
	margin-left: auto;
	margin-right: auto;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.wide {
	width: 240px;
}
.xtrawide {
	width: 380px;
}
nav {
	line-height: 32px;
	padding-top: 0px;
	padding-bottom: 20px;
	padding-left: 5px;
}
nav ul {
	padding: 0;
	margin: 3px;
	list-style: none;
	position: relative;
}
nav ul li {
	z-index: 100;
	text-align: center;
	margin-left: 5px;
	width: 151px;
	display: inline-block;
	background-color: blue;
	border: solid #CCC 2px;
	box-shadow: 5px 5px 3px #6F4E37;
	border-radius: 5px;
}
nav a {
	display: block;
	padding: 0 10px;
	color: white;
	font-size: 13px;
	font-weight: bold;
	line-height: 25px;
	text-decoration: none;
}
nav ul ul {
	display: none;
	position: absolute;
	left: 270px;
	top: 27px;
}
nav ul li:hover > ul {
	display: inherit;
}
nav ul ul li {
	width: 168px;
	float: none;
	display: list-item;
	position: relative;
	border: solid white 2px;
	border-radius: 5px;
}
nav a:hover {
	color: white;
	background-color: #C00;
}
nav a:visited {
	color: white;
}
li > a:after {
	content: ' ▼';
}
li > a:only-child:after {
	content: '';
}
h2 {
	margin: 0px;
	line-height: 30px;
}
h3 {
	margin: 0px;
	line-height: 30px;
}