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

html, body {
	height: 100%;
}
body {
	font: 100% "Segoe UI", Segoe, Arial, Helvetica, sans-serif;
	background: white;
	margin: 0; /* zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* center container in IE 5+. Text is then set to left-align in #container selector */
	color: black;
}
div#container {
	width: 780px;  /* using 20px less than a full 800px allows for browser chrome, avoids horizontal scroll */
	height: 85%;
	background: white;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the element against the parent */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element - text appears correctly */
}
div#mainLogoBG {
	padding: 0 20px; /* remember - padding is space inside the div box, margin is space outside the div box */
	margin: 100px auto 0;
	width: 600px;
	height: 235px;
	background: white url('images/logo.gif') top left no-repeat;
}
div#mainContentsText {
	position: relative;
	top: 120px;
	left: 112px;
}
form {
	padding: 0;
	margin: 0;
}
div#mainContentsButton {
	position: relative;
	top: 130px;
	left: 250px;
	width: 160px;
}
input#maintextbox {
	font-family: Segoe UI, Segoe, Arial, Helvetica, sans-serif;
	/*text-transform: lowercase;*/
	font-size: 24px;
	color: #333;
	width: 420px;
	height: 32px;
	border: 3px inset #999;
}
input#tinytextbox {
	font-family: Segoe UI, Segoe, Arial, Helvetica, sans-serif;
	/*text-transform: lowercase;*/
	font-size: 12px;
	font-weight: bold;
	color: #333;
	width: 275px;
	height: 17px;
	border: 2px inset #999;
}
input#doitbutton {
	font-family: Segoe UI, Segoe, Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-size: 20px;
	color: black;
	width: 150px;
}
input#doittiny {
	font-family: Segoe UI, Segoe, Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-size: 10px;
	color: black;
	width: 75px;
}
div#footer {
	width: 600px;
	text-align: center;
	font-family: Segoe UI, Segoe, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0 auto;
}
div#footer a:link,
div#footer a:visited {
	color: #08f;
	text-decoration: none;
}
div#footer a:hover,
div#footer a:active {
	color: black;
	text-decoration: underline;
}
p, dl dd, td.command, table td, table th {
	font-family: Segoe UI, Segoe, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
table {
	border: 1px solid black;
	border-collapse: collapse;
}
table td, table th {
	border: 1px solid black;
	padding: 1px 5px;
}
table th {
	background-color: black;
	color: white;
	font-size: 14px;
	font-weight: bold;
}
dl dt, td.description {
	font-family: Cambria, Georgia, Times, Times New Roman, serif;
	font-size: 16px;
	font-weight: bold;
}
table.help td {
	border: 1px solid black;
	padding: 1px 4px;
}
p strong {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #036;
}
h1 {
	font-family: Segoe UI, Segoe, Arial, Helvetica, sans-serif;
	font-size: 24px;
}
h2 {
	font-family: Segoe UI, Segoe, Arial, Helvetica, sans-serif;
	font-size: 18px;
}
#tinyform {
	height: 75px;
	border-bottom: 1px solid blue;
	text-align: center;
}
.full-width {
	width: 100% !important;
}
