/* CSS Document */

body {
	margin: 0;
	padding: 0;
	font-family: arial, verdana, helvetica, sans-serif;
	font-size: 76%;
	color: #000;
	background-color: #fff;	}
	
.content {
	width: 800px;
	margin: 0 auto;
	padding: .5em 0;	}
	
/* quick reference
	
	red: #A90000
	blue: #000080

*/
	

/*typography*/

a {
	text-decoration: underline;
	font-weight: normal;
	color: #A90000; }
	
a:link {
	}
	
a:visited {
	}
	
a:active {
	}
	
a:hover {
	text-decoration: underline;
	}
	
h1 {
	text-align: center;
	color: #000080;
	font-size: 2.5em;
	font-weight: normal;
	margin-top: 0em;
	margin-bottom: 0em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
	font-family: "Times New Roman", Times, serif; }
	
h2 {
	font-size: 1.5em;
	margin: 1.2em 0 0 0;
	font-weight: normal;	}
	
h3 {
	font-size: 1.4em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: normal;	}
	
h4 {
	font-size: 1.2em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;	}
	
h5 {
	font-size: 1.0em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;	}
	
h6 {
	font-size: 0.8em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;	}
	
img {
	border: 0;	}
	
ol, ul, li {
	font-size: 1.0em;
	line-height: 1.8em;
	/* margin-top: 0.2em;
	margin-bottom: 0.1em; */ 	}
	
p {
	font-size: 1.0em;
	line-height: 1.8em;
	margin: 1.2em 0em 1.2em 0em;	}
	
li > p {
	margin-top: 0.2em;	}
	
pre {/*moz 1.0/1.1/1.2.1, net 7.0/7.01 make this way too small, but i'm not going to go larger because monospace tends to run you into overflow pretty quick. prior moz and net are okay.*/
	font-family: monospace;
	font-size: 1.0em;	}
	
strong, b {
	font-weight: bold;	}
	
.smalltext {
	font-size: .8em;
	color: #666; }
	
/* BODY CONTENT */

#header {
	position: relative;
	background-image: url(images/logo.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 190px;
	padding-left: 480px;
	padding-top: 20px;
	margin: 0;	
	color: #333; }
	
#header p {
	line-height: 1.3em; }

#header .company {
	font-weight: bold;
	color: #A90000;
	font-size: 1.6em; 
	line-height: 1.5em; }
	
#header p.tagline {
	font-size: 1.1em; 
	font-weight: bold;
	color: #000080;  }
	
/* NAV */

#navbar {
	position: relative;
	text-align: center; 
	width: 800px; 
	background-color: #000080;
	border: 1px solid #000040; 
	padding: 0;
	margin: 0; }

#navbar ul {
	padding: 3px; 
	margin: 0; }
	
#navbar li {
	display: inline;
	padding: 0 20px; }

#navbar li a:link {
	color: #eee;
	text-decoration: none; }
	
#navbar li a:visited {
	color: #ddd;
	text-decoration: none; }
	
#navbar li a:hover {
	color: #FFF;
	text-decoration: underline; }

#navbar li.current a:link, #navbar li.current a:visited, #navbar li.current a:hover {
	font-weight: bold;
	text-decoration: underline;
	color: #FFF; }
	
/* MAIN CONTENT */	

#main {
	padding: 2em 0 0 0;
	text-align: center; 	}

#main .left {
	float: left;
	text-align: left;
	width: 500px;
	padding: 0 15px 0 0;
	margin: 0; }
	
#main .left img.border {
	margin: 5px 10px 5px 0;
	padding: 1px;
	border: 1px solid #ccc; }
	
#main p.imgcenter {
	padding: 1em 0 0 0;
	margin: 0;
	text-align: center; }
	
#main .right {
	float: left;
	text-align: left;
	width: 285px;
	padding: 0;
	margin: 0; }
	
	
/* FOOTER */

#footer {
	clear: both;
	color: #333333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	padding: 1em 1em 0em 2em;	}
	
#footer p {
	font-size: .8em;
	padding: 0;
	margin: 0; }

/* FORM */

form {
  background:#eee;
  width:50%;
  margin:0 auto;
  padding:10px;
}
form p {
  text-align:left;
}
form p label {
  display:block;
  width:150px;
  margin-right:5px;
  float:left;
  text-align:right;
}
form p label.error {
  display:block;
  text-align:center;
  width:auto;
  float:none;
  color:#c00;
  font-weight:bold;
}
form p input.error {
  background:#fcc;
}
form p em {
  float:right;
}

