html, body {
	min-height: 100%;
}
body {
	background-color: #7fb0d2;
	font-family: 'Arial Rounded', Arial, sans-serif;
	margin-top: 0px;
	margin-bottom: 20px;
	background-image: url(images/background.png);
	background-attachment: fixed;
	background-position: top left;
	background-repeat: no-repeat;
}
.menuLink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
	border-radius: 4px;
}
.menuLink:hover, .menuLink:focus, .menuLink:active {
  background-color: white;
  color: black;
}

.menuLink {
	font-family: Arial Rounded, Arial, sans-serif;
  margin: .4em;
  padding: 5px;
  cursor: pointer;
	border: 1px solid white;
  background: black;
  text-decoration: none;
	font-weight: bold;
  font-size: 12pt;
  color: #FFFFFF;
  /* Prevent highlight colour when element is tapped */
  -webkit-tap-highlight-color: rgba(0,0,0,0);

  /* Smooth fonts */
  -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#menuContainer {
	width: 400px;
	height: 20px;
	color: white;
	position: relative;
	margin: 0 auto;
	top: 117px;
	left: -110px;
}
#mainBody {
	width: 1020px;
	background-color: #FFFFFF;
	padding: 10px;
	margin: 0 auto;
	border-radius: 10px;
	position: relative;
	top: 205px;
}
#header_wrapper {
  width: 100%;
  position: fixed;
	z-index: 999;
  top: 0;
}
#header {
	width: 90%;
	height: 145px;
	background-color: #000000;
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 10px;
	padding: 20px;
	opacity: 0.9;
	margin: 0 auto;
}
h4 {
	font-weight: bold;
	font-size: 12pt;
	color: #3e62a2;
  margin-left: 22px;
  margin-right: 10px;
}
input, textarea, p, td, ul, ol {
	font-size: 10pt;
	color: #000000;
} 
p, td {
  margin-left: 32px;
  margin-right: 10px;
}
ol, ul, p, td, input, textarea, h4 {
	line-height: 25px;
}
a:hover {
	color: red;
	text-decoration: none;
}