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

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #5b5b5b;
}

p {
	font-size:12px;
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	text-align: left;
	color: #494949;
}

h2 {
	font-size: 15px;
	font-weight: bold;
	margin: 0;
	padding: 0;
	text-align: left;
	color: #494949;
}

a {
	color: #2e87c8;
	text-decoration: none;
}

a:hover {
	color: #2b9cee;
	text-decoration: underline;
}

img {
	border: 0;
}

hr {
	border: 0;
	border-top: 1px solid #e3e3e3;
	padding-bottom: 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin: 0;
}

.label {
	margin-top: 6px;
}

.short-field {
	border: 0;
	height: 31px;
	width: 199px;
	background-image: url(../images/login-field.png);
  	background-repeat: no-repeat;
}

.short-field-box {
	border: 0px;
	outline: none;
	margin-left: 4px;
	margin-top: 6px;
	background-color: #fff;
	font-family: arial;
	font-size: 16px;
	width: 190px;
}

.message {
	border: 0;
	height: 183px;
	width: 470px;
	background-image: url(../images/message-field.png);
  	background-repeat: no-repeat;
}

.message-box {
	border: 0px;
	outline: none;
	margin-left: 4px;
	margin-top: 6px;
	background-color: #fff;
	font-family: arial;
	font-size: 12px;
	height: 170px;
	width: 460px;
}

.features {
	font-size: 16px;
	color: #2e87c8;
	line-height: 22px;
	font-weight: bold;
}

.main #container {
	width: 814px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.main #container2 {
	width: 766px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.main #header {
	width: 814px;
	height: 104px;
}

.main #logo {
	width: 300px;
	height: 104px;
	float: left;
}



.main #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.main #mainContent {
	padding: 0;
}

.window {
	width: 766px;
	height: 395px;
}

.window #contents {
	margin:0;
	padding: 30px;
	min-height: 395px;
   
}

.window #left {
	 float: left;
	 width: 50%;
     
}


.window #column1 {
	 float: left;
	 width: 32%;
	 padding-right: 8px;
}

.window #column2 {
	 float: none;
}

.window #column3 {
	 float: right;
	 width: 32%;
	  padding-left: 8px;
}

.window-login {
	width: 766px;
	height: 331px;
}

.window-login #left {
	 float: left;
	 width: 50%;
}


.window-login #contents {
	margin: 1em;
	padding: 30px;
	min-height: 395px;
    border:3px outset #ddd;
    background-color:#eaeaea;   
}

.additional-container {
	background: #eaeaea;
	width: 766px;
}

.additional-container #lower-content {
	background: #eaeaea;
	padding: 30px;
}

.footer {
	font-size: 10px;
	color: #929292;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #eaeaea;
	border-top: 1px solid #c4c4c4;
    margin-left:5em;
    width:80%;
}

.footer p {
	font-size: 10px;
	margin: 0;
	padding: 0;
}

.footer a {
	font-size: 10px;
	color: #929292;
	text-decoration: none;
}

.footer a:hover {
	font-size: 10px;
	color: #797979;
	text-decoration: underline;
}

.footer #leftFoot {
	float: left;
}

.footer #rightFoot {
	float: right;
}


#pageInstructions {
  color:red;
  border:3px outset #ddd;
  padding:3px;
  background-color:#ddd;
}

.pageInstructionsShow {
	display:block;
}
.pageInstructionsHide {
	display:none;
}