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

html {
	padding: 0px;
	margin: 0px;
	height: 100%;
	min-height: 100%;
	cursor: default;
}
body {
	padding: 1% 2%;
	margin: 0px;
	height: 100%;
	min-height: 100%;
	font-size: 14px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #444;
	background-color: #FFF;
	cursor: default;
}
* {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 100%;
	outline: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.home-link {
	position: fixed;
	left: 10px;
	top: 10px;
	z-index: 1000;
	background-color: transparent;
	opacity: 0.3;
	transition: opacity 0.3s, visibility 0.3s;
	cursor: pointer;
}
.home-link:hover {
	opacity: 1;
}

h1 {
	font-size: 130%;
	font-weight: bold;
}
a, a:visited {
	color: #069;
	text-decoration: none;
}
a:hover {
	color: #036;
	text-decoration: underline;
}
a.aanchor {
	color: #444;
	text-decoration: none;
	cursor: default;
}
a.aanchor:hover {
	color: #444;
	text-decoration: none;
	cursor: default;
}
sup {
	font-size: 75%;
	vertical-align: baseline;
	position: relative;
	top: -0.3em;
}
table {
	border: none;
	border-collapse: collapse;
}
td {
	border: 1px solid #666666;
	margin: 0px;
	padding: 5px 10px;
}

.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-help {
	color: #999;
}