/*
		File: style.css
		Author: Christopher Mankin
		Creation Date: January 29, 2008
		Last Modified: March 5, 2009
		Description: Main style sheet
*/

/* ~~~~~~~~~~~~~BASIC ~~~~~~~~~~~ */
* {
	margin: 0em;
	padding: 0em;
}
html {
	height: 100%;
	font-size:100.01%;
}
body {
	font-family: "Trebuchet MS", sans-serif;
	font-size: 100.01%;
	min-width: 1150px;
	height: 100%;
	color: #000000;
	background: #6699dd;
}
h1,h2 {
	padding-bottom: 0.2em;
	margin-bottom: 0.8em;
}
h3,h4,h5,h6 {
	padding-bottom: 0.2em;
}
p {
	margin-bottom: 1.2em;
}
option {
	padding: 0.2em 0.2em 0.2em 0.2em;
}
blockquote {
	font-style: italic;
	font-size: 0.9em;
}
blockquote p {
	margin-bottom: 0.8em;
}
ul {
	margin-bottom: 1.5em;
	padding-left: 1.0em;
}
li {
	margin-left: 25px;
	margin-right: 15px;
}
a {
	color: #0000ff;
	text-decoration: none;
}
a img {
	border-width: 0;
}
a:hover {
	text-decoration: underline;
}
b, strong {
	font-weight: bold;
}
img {
	padding: 2px 2px 2px 2px;
}
em {
	font-style: italic;
	font-size: 0.9em;
}

/* ~~~~~~~~~~~ TABLES ~~~~~~~~~~~~ */

table.styled {
	padding: 0.5em;
	margin-bottom: 0.5em;
	border-collapse: collapse;
	background-color: white;
}
table.styled td {
	border-width: 0.01em;
	padding: 0.2em;
	border-style: dotted;
	border-color: #fa0a0a;
	background-color: #ffffcc;
}
table.styled th {
	font-weight: bold;
	border-width: 0.01em;
	padding: 0.2em;
	color: #ffffff;
	border-style: dotted;
	border-color: #fa0a0a;
	background-color: #faa500;
}
table.hoverhighlight tbody tr:hover td {
	background-color: #ffffdd;
}
table.padded {
	border-collapse: collapse;
}
table.padded tr td {
	padding: 5px;
	vertical-align: top;
}

/* ~~~~~~~~~~~~~ LAYOUT ~~~~~~~~~~~~~~~ */

#outer {
	z-index: 0;						/*  Ensure this is the "base" layer */
}
#content {
	padding: 5px 5px 5px 1px;		/* Breathing room */
}
#leftcolumn {						/* This is the liquid left column */
	float: left;
	width: 100%;
}
#innerleftcolumn {					/* Place inside div.leftcolumn, makes room for the right column */
	margin-right: 280px;			/* Must equal div.rightcolumn width */
	padding-bottom: 25px;
}
#rightcolumn {						/* This is the fixed right column, must appear after div.leftcolumn */
	width:280px;
	float:left;
	margin-left:-280px;		/* Must equal div.rightcolumn width */
	padding-bottom: 25px;
}
div#footer_div {
	z-index: 1;
	width:100%;
	position: fixed;
	bottom: 0px;
	right: 0px;
	background: transparent url('../images/color-yellow.png') repeat scroll bottom left;
	color: #000000;
	text-align: center;
}
img#footer_img {					/* Displays the truck background behind everything else */
	z-index: -1;
	width: 101%;
	min-width:1155px;
	position: fixed;
	bottom: 0px;
	right: 0px;
}
div.padding {						/* Use in place of padding to prevent layout problems */
	margin: 5px;
}
div.blue {							/* Blue semi-transparent box */
	color: #000000;
	background: transparent url('../images/color-blue.png') repeat scroll bottom left;
	padding: 15px 5px 5px 5px;
}
div.green {							/* Green semi-transparent box */
	color: #000000;
	background: transparent url('../images/color-green.png') repeat scroll bottom left;
	padding: 15px 5px 5px 5px;
}
div.orange {							/* Orange semi-transparent box */
	color: #000000;
	background: transparent url('../images/color-orange.png') repeat scroll bottom left;
	padding: 15px 5px 5px 5px;
}
div.yellow {							/* Yellow semi-transparent box */
	color: #000000;
	background: transparent url('../images/color-yellow.png') repeat scroll bottom left;
	padding: 15px 5px 5px 5px;
}
div.blue, div.green, div.orange, div.yellow {
	position: relative;
}

/* ~~~~~~~~~~~~~~~~~~~~ CLASSES ~~~~~~~~~~~~~~~~~~~~ */
.clear {
	clear: both;
}
.center {
	margin-left: auto;
	margin-right: auto;
}
a.redhover:hover {
	background: #af0a0a url('../images/bg-highlight.png') repeat-x scroll bottom left;
	color: #ffffff;
	text-decoration: none;
}
.multicolumnlist li {
	float: left;
	width: 12.0em;
}