/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
	margin: 0;
	padding: 0;
	font-size: 75%;
	color: #222;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	background-color: #ddf;
}

p           { margin: 0 0 1.5em; }
p img       { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

#content a:link, #content a:visited, #content a:active, #content a:hover {
	text-decoration: none;
	border-bottom: 1px dotted #ccc;
	color: #222;
	font-weight: bold;
}

#container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 900px;
	border: 1px solid black;
	background-color: #fff;
	background-image: url("../images/blueprint.jpg");
	background-position: 418px 63px;
	background-repeat: no-repeat;
}

#header {
	position: relative;
	width: 900px;
	height: 166px;
	background-image: url("../images/header.jpg");
	background-repeat: no-repeat;
	background-color: #000;
}

	#header h1 {
		display: none;
	}
	
	#header h2 {
		position: absolute;
		padding: 0;
		margin: 0;
		bottom: -5px;
		left: 35px;
		color: #fff;
		text-transform: uppercase;
	}
	
	#header #menu {
		position: absolute;
		padding: 0;
		margin: 0;
		top: 101px;
		left: 0;
		width: 570px;
	}
	
		#header #menu ul {
			margin: 0;
			padding: 0 8px;
			white-space: nowrap;
		}
		
		#header #menu li {
			display: inline;
			list-style-type: none;
			height: 16px;
			font-size: .9em;
		}
		
			#header #menu li a {
				font-weight: bold;
				padding: 2px 10px;
				text-decoration: none;
			}
			
			#header #menu li a:link,
 			#header #menu li a:visited,
 			#header #menu li a:active {
				color: #222;
			}

			#header menu li.active,
			#header #menu li a:hover {
				color: #fff;
				background-color: #222;
			}
			
#content {
	padding-left: 35px;
	padding-top: 20px;
	width: 383px;
}

	#content table {
		border-collapse: collapse;
	}
	
		#content table tr.odd {
			background-color: #eee;
		}
	
		#content table td {
			vertical-align: top;
			padding: 5px;
		}

.clear {
	clear: both;
}

#disclaimer {
	position: relative;
	float: right;
	width: 520px;
	height: 20px;
	background-image: url("../images/gradient.png");
	background-repeat: repeat-x;
	color: #fff;
}

	#disclaimer p {
		padding: 3px;
		text-align: center;
		margin: 0;
	}
	
	#disclaimer a {
		color: #fff;
		text-decoration: none;
	}

	dl {
		padding: 0;
	}

	dt {
		position: relative;
		left: 0;
		top: 1.1em;
		width: 5em;
		font-weight: bold;
		text-align: right;
	}

	dd {
		margin: 0 0 0 6em;
		padding: 0 0 .5em 1.5em;
	}

		dd input {
			width: 20em;
		}

		#submitbutton {
			margin-top: 25px;
		}

		dd ul {
			list-style: none;
			margin: 0;
			padding: 0;
		}

		dd ul li {
			color: #f00;
			float: left;
			font-weight: bold;
		}
	
