@charset "utf-8";

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

html {
min-height: 101%;
}
/*this will force a scrollbar to appear in Firefox, Opera, Safari, etc. even when it isn't necessary and prevent the content from jumping back and forth as pages change from those requiring a scrollbar to those that don't. IE always has a scrollbar, so it's not an issue.*/  

body  {
	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: #000;
	background-color: #006;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.layout #container {
	width: 900px;
	text-align: left;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #900;
	border-right-color: #900;
	border-bottom-color: #900;
	border-left-color: #900;
	border-top-width: 2px;
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFF;
	background-image: url(../images/bg_white.jpg);
} 
.layout #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 160px;
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
} 
.layout #footer {
	background-color: #999;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-variant: small-caps;
	text-align: center;
	color: #006;
	height: 25px;
	padding-top: 15px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #006;
	background-image: url(../images/bg_gray.jpg);
	margin-top: 50px;
} 
.layout #container #header  {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #006;
	background-color: #8BA9B1;
}
.layout #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 130px;
	padding-top: 30px;
	padding-right: 10px;
	padding-bottom: 30px;
	padding-left: 20px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #006;
	border-bottom-color: #006;
}
.layout #container #sidebar p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
	font-size: 11px;
	font-family: Verdana, Geneva, sans-serif;
	color: #006;
}

.layout #container #sidebar p a:link {
	color: #006;
	text-decoration: none;
}
.layout #container #sidebar p a:visited {
	color: #006;
	text-decoration: none;
}
.layout #container #sidebar p a:hover {
	color: #900;
	text-decoration: underline;
}
#delta_jet {
	border: 3px double #006;
	margin-left: 80px;
}


h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	color: #006;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
.center {
	text-align: center;
}
.red_center {
	color: #900;
	text-align: center;
}
