@charset "UTF-8";
body {
	font: Georgia, "Times New Roman", Times, serif;
	font-size: 90%;
	background: #53668f; /* average of blue brushed metal background */
	background-image:url(../images/BrushedMetalBackground.jpg);
	background-repeat:repeat;
	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: #000000;
}
p {
	font-size: 1em;
}
p.bigFirstCap:first-letter {
	font-size: 1.4em;
}
h1 {
	font-size: 1.3em;
	color:#1f2a42;
	text-align:center;
}
h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	color:#421f32; /* darker blue from striped background */
}
h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
	font-weight:bold;
	color:#f5612c;
}
a {
	font-size:1em;
}
address {
	font-style:normal;
	font-size:1em;
}
.credits, .credits a {
	color:#1f2a42;
}
.singleSpaced {
	margin-top:0px;
	margin-bottom:0px;
}
.oneColFixCtrHdr #container {
	width: 840px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(../images/DotxMetal_plain.png);
	background-repeat:repeat-y;
	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. */
}
.oneColFixCtrHdr #header {
	background: white;
	background-image:url(../images/DotxMetal_hdr.jpg);
	background-repeat:no-repeat; 
	padding: 0px;
	margin:0px 30px;
	height:167px;
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #animation {
	clear:left;
	height:200px;
	margin:0px 30px;
}	
.oneColFixCtrHdr #sidebar {
	float:right;
	width: 200px;
	margin:0px 0px 0px 15px;
}	
.oneColFixCtrHdr #sidebar #sidebarInner {
	margin:25px 10px 0px 15px;
}
.oneColFixCtrHdr #mainContent {
	margin:0px 30px;
	padding: 0px 0px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: white;
	background-image:url(../images/DotxMetal_content.jpg);
	background-repeat:no-repeat;	
}
.oneColFixCtrHdr #footer {
	padding: 0px 30px;
	background-image:url(../images/BrushedMetalBackground.jpg);
	background-repeat:repeat;
	margin:0px 30px;
	border-bottom: thin black solid;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0;
}
.partsListTable {
	margin:15px 0px 20px;
	padding-right:20px;
}
.partsListTable td {
	padding:3px 8px;
	font-size:0.7em;
	border:#CFA991 thin solid;
}
.required {
	position:relative;
	top:0.2em;
	font-size:larger;
	color:red;
	font-weight:bold;
	margin-left:0.7em;
}
.superscript {
 	vertical-align: baseline;
 	font-size: 80%;
 	position: relative;
 	bottom: 0.33em; 
}
.simpleTable {
	border:none;
}
.simpleTable td {
	padding:0 0 0 1em;
}
.errorMessage {
	color:red;
	font-weight:bold;
}