@charset "utf-8";
body {
	/*font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;*/
	color: #CCC;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl {
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	
	padding-right: 25px;
	padding-left: 15px;
}
h1 {
	margin-top: 0;
	font-size: x-large;
	text-align: left;
}
h2 {
	margin-top: 0;
	font-size: large;
	text-align: left;
}
h3 {
	margin-top: 0;
	font-size: medium;
	text-align: left;
}
h4 {
	margin-top: 15;
	font-size: small;
	text-align: left;
}
h5 {
	margin-top: 15;
	font-size: x-small;
	text-align: center;
}
h6 {
	margin-top: 15;
	font-size: xx-small;
	text-align: center;
}
p {
margin-top: 15;
font-size: small;
}

a img {
	border: none;
}

a:link {
	color: #CCC;
	text-decoration: underline;
}
a:visited {
	color: #eee;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	background: #000030;
	height: 640px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	background-image: url(../Graphics/Contrail_Container_Gradient.png)
}

.header {
	height: 90px;
}

.sidebar1 {
	float: left;
	width: 150px;
	padding-bottom: 10px;
}

.content {
	padding: 10px 0px;
	width: 720px;
	height: 460px;
	float: left;
}

.sidebar2 {
	float: left;
	width: 90px;
	padding-bottom: 10px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px;
}

ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px /*solid #666;  this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px /* solid #666; this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 100px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	/*background: #000030;*/
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	width: 100px;
	background: #000030;
	color: #fff;
	border-top: 1px solid #09F;  /*this creates the top border for the links - all others are placed using a bottom border on the LI */
	border-bottom: 1px solid #09F;
	/* margin-bottom: 15px; this creates the space between the navigation on the content below */
}

/* ~~ The footer ~~ */
.footer {
	
	padding: 10px 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat {
	clear:both;
	height:0;
	/*font-size: 1px;*/
	line-height: 0px;
}
