@charset "UTF-8";

/* -----------------------------------------------
Title:		Air Spencer USA Styles
Author:	Andy Hunt
Modified:	September 2008
----------------------------------------------- */

/* Tag Styles
----------------------------------------------- */

/*---[GENERAL]-------------------------------------*/

body  {
	font: 100% "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background: #28497B url(images/bg_grade.jpg) repeat-x;
	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: #3F596A;
}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
} 
#header { 
	background: #DDDDDD url(images/sky_header.jpg); 
	padding:0;
	width: 780px;
	height: 195px;
	margin: 0;
} 
#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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	color: #FDFDFD;
	margin: 18px 0 0;
	padding: 0;
}

#sidebar1 h6 {
	color: #3F596A;
}

/*---[Side Navigation]-------------------------------------*/
#sidenav {
	background: url(images/sidenav.jpg) no-repeat;
	margin: 0;
	padding: 0;
	height: 500px;
}
#sidenav p {
	margin-left: 10px;
	margin-right: 10px;
}
#sidenav a {
	color: #FDFDFD;
	text-decoration: none;
}

#sidenav a:visited {
	color: #FDFDFD;
	text-decoration: none;
}

#sidenav a:hover {
	color: #FDFDFD;
	text-decoration: none;
}

#sidenav h3 {
	margin-left: 15px;
	margin-right: 10px;
	padding-top: 15px;
}
#sidenav ul {
	list-style-type: none;
	font-size: 18px;
	width: 195px;
	margin: 0;
	padding: 0 0 0 0;
}
#sidenav li {
	list-style-type: none;
	margin: 0;
	padding: 6px 0 5px 20px;
	border-bottom: 1px solid #3F596A;
	color: #b6d7fb;
}

#sidenav li a { display: block; }
#sidenav li:hover { background: #4678C3;}

/*---[Side Navigation]-------------------------------------*/

/*---[links]-------------------------------------*/
a {
	color: #4678C3;
	text-decoration: none;
}

a:visited {
	color: #4678C3;
	text-decoration: none;
}

a:hover {
	color: #4678C3;
	text-decoration: underline;
}
/*---[links]-------------------------------------*/

#mainContent { 
	margin: 0 0 0 200px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.sprybox{
	
}

#footer {
	padding: 0;
	width: 780px;
	height: 290px;
	margin: 0;
	background: url(images/earth_bg.jpg) no-repeat;
} 
#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: 100px 0 10px;
	text-align: center;
	color: #FDFDFD;
}
.right { /* 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;
}
.left { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.center {
	text-align: center;
}

.indent_left{
	margin-left: 195px;
}

.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;
}
.clearleft {
	clear: left;
}

/*---[Fonts]-------------------------------------*/

h1{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
h2{
	font-size: 20px;
	font-weight: bold;
}
h3{
	font-size: 18px;
	font-weight: bold;
}

h4{
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: 0;
	padding: 0;
}

h6{
	font-size: 12px;
	text-align: center;
	margin: 10px 0;
	padding: 0;
}


/*---[images]-------------------------------------*/

.peepod_image{
	padding-left: 115px;
}

.borderpic {
	border: 3px solid #28497B;
	margin: 0;
	padding: 0;
}

/*---[Colors]-------------------------------------*/
.black {
  color: #111111;
}

.dark {
  color: #181818;
}

.white {
  color: #FDFDFD;
}

.bluegray {
  color: #3F596A;
}

.lightblue {
  color: #4678C3;
}

.darkblue {
  color: #28497B;
}

.red {
  color: maroon;
}


/* @group Spry */

.spry-sp img  {
	opacity: 1;
}

.spry-sp img:hover {
	opacity: 0.7;
}

.credit {
	color: #FDFDFD;
	font-size: 10px;
}

.rightalign {
	text-align: right;
}

.boldcell {
	text-align: left;
	font-weight: bold;
}

.oddcell {
	background-color: #ddeafe; 
}

/* @end */


