/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  line-height:normal;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #8aa6cb;
  background-image: url("../images/bgBody.jpg");
  background-repeat: repeat-x;
  color: #3e352e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  margin: 0; 
  padding: 0;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  float: right;
  margin: 35px 5px 0 0;
  width: 600px;
  text-align:right;
}
/* Commonly used to style section titles. */
h2 {
  color: #336699;
  font-size: 24px;
  font-weight: bold;
  width: 390px;
  padding-bottom: 7px;
  border-bottom: 3px solid #897767; 
}
h2.long {
  width: 580px;
}

h2#formResults {
	margin-bottom: 25px;
}
h3 {
	margin-top: 15px;
  font-size: 40px;
  font-weight: normal;
  line-height: 27px;
  text-align: center; 
}
.sidebarSubHeading {
	font-size: 17px;
	font-style: italic;
	padding-left: 57px;	
}

h4 {
  color: #336699;
  font-size: 19px;
  font-weight: bold;
  width: 390px;
  padding-top: 20px;
  padding-bottom: 7px;
  border-bottom: 3px solid #897767;
}
/* Not enough content on pilot services page to put certifications and affiliates at the bottom */
.pilotServices h4{ 
padding-top: 300px;
}

h4.formSubmit {
	padding-top: 150px;

}

h5.sectionHeadingFirst {
	font-weight: bold;
	padding-top: 18px;
	margin-bottom: -12px;
	
}
h5.sectionHeading {
	font-weight: bold;
	padding-top: 5px;
	margin-bottom: -12px;
	
}

h5.bulletinTitle {
	font-weight: bold;
	padding: 60px 3px 3px 28px;
	font-size: 13px;
	
	
}
h6{
	padding-top: 15px;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #336699;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #336699;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}

/* read more links */
a.more ,  a.more:link , a.more:visited  {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

 a.more:hover {
  text-decoration: underline;
}

/* font styles */
.taglineBlack {
	color: #000;
	font-weight: bolder;
}

.textRight {
	text-align: right;
}

.fontBold {
	font-weight: bold;
}

.textCenterBold {
	font-weight: bold;
	text-align: center;
}
.fontItalics {
	font-style: italic;
	font-family:"Times New Roman", Times, serif;
	font-size:14px;
}

.imgRight {
	float: right;
	padding-left: 5px;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 965px;
}

/* Header Styles */
#outerWrapper #header {
	font-size: 16px;
	color: #336699;
	font-weight: bold;
	padding: 0px; 
	background: #fff url(../images/bgHeaderSky.jpg) no-repeat;
}

#header #headerTagline {
	background: url(../images/bgHeaderRound.jpg) no-repeat center top;
	padding: 5px 0px;
}
#headerTagline p {
	margin: 0px;
	padding: 0px 25px 0px 0px;
	text-align: right;	
}

div#headerNav {
	background-color: #897767;
	border-top: 6px solid #3e362f;
	border-bottom: 6px solid #3e362f;
	padding: 0;
}

ul#topNav {
	list-style: none;
	margin: 6px 0;
	padding-left: 19px;
	
}
ul#topNav li {
	display: inline;
	background: url(../images/navVerticalBar.gif) no-repeat 4px 4px;
	padding-left: 19px;
}

ul#topNav li.first {
	background: none;
	padding-left: 1px;
}

/* Top Navigation Links */
#outerWrapper #header #headerNav a, #outerWrapper #header #headerNav a:link {
  color: #FFFFFF;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}
#outerWrapper #header #headerNav a:visited {
  color: #FFFFFF;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}
#outerWrapper #header #headerNav a:hover {
  color: #000;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}


#outerWrapper #contentWrapper {
  background-color: #FFFFFF;
  background-image:url(../images/contentWrapper_bg.png);/* added to acive full length columns when content is columns is not even */
  background-repeat: repeat-y;
  overflow: hidden;
}
/* added to hide content wrapper bg image between header and main image */
#bgSpace{
	height: 20px;
	background: #fff;
}

#contentBgWrapper {
	background: url(../images/bgMain.jpg) no-repeat center top;/* main image on every page*/
	width: 100%;
}
#contentBgWrapper.about {
	background: url(../images/bgMichaelPhillips.jpg) no-repeat center top;/* main image on every page*/
	width: 100%;
}
#contentBgWrapper.training {
	background: url(../images/bgTraining.jpg) no-repeat center top;/* main image on every page*/
	width: 100%;
}
#contentBgWrapper.instrument {
	background: url(../images/bgInstrument.jpg) no-repeat center top;/* main image on every page*/
	width: 100%;
}
#contentBgWrapper.pilotServices {
	background: url(../images/bgPilotServices.jpg) no-repeat center top;/* main image on every page*/
	width: 100%;
}
#contentBgWrapper.testimonials {
	background: url(../images/bgTestimonials.jpg) no-repeat center top;/* main image on every page*/
	width: 100%;
}
#contentBgWrapper.friends {
	background: url(../images/bgFriends.jpg) no-repeat center top;/* main image on every page*/
	width: 100%;
}
#contentBgWrapper.contact {
	background: url(../images/bgContact.jpg) no-repeat center top;/* main image on every page*/
	width: 100%;
}
/* sidebar styles */
#rightColumn1 {
  float: right;
  margin: 0 0 0 0;
  padding: 300px 0 0 0; 
  width: 280px;
}

#rightColumn1.shortBG {
 
  padding: 0 0 0 0; 
 
}
#rightColumn1 #rightColumn1Inner {
	width: 237px;
	background: #9b8a7b;
	margin-left: 29px;	
}

#rightColumn1Inner h3{
	padding:10px;
	font-size: 24px;
}
#michaelSign {
	margin: -8px 0px 0px;
	padding: 0px 0px 0px 25px;
}

#rightColumn1Inner p{
	padding-left:10px;
	padding-right: 10px;
	
}

#rightColumn1Inner a, #rightColumn1Inner a:link, #rightColumn1Inner a:visited {
	color: #FFF;
}
#rightColumn1Inner a:hover {
	color: #000;
	
}
#bulletin {
	background: #9B8A7B url(../images/bulletinboard.jpg) no-repeat;
	min-height: 387px;
	font-size: 11px;
}

ul#announcements {
	
	list-style: none;
	margin: 0;
	padding: 0 34px 0 28px;
	text-align: justify;
}

ul#announcements li{
	padding-top: 12px;
	
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#content {
  margin: 0 300px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 375px 10px 10px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  line-height: 16px;
}

#content.shortBGImage {
  
  padding: 0 10px 10px 15px; /* Adjust padding bc bg images is shorter */
 
}



#contentBottomRounded {
	clear: both;
	background: url(../images/bgFooterRound.jpg);
	height: 23px;
}
/* home page content 2 column structure*/
#contentInner {
	padding: 10px 0 35px 0;
}
/* home page content 2 column structure*/
#contentInner ul {
	padding: 13px;
}
/* home page content 2 column structure*/
#contentInnerLeft {
	float: left;
	width: 280px;	
}
/* home page content 2 column structure*/
#contentInnerRight {
	margin-left: 330px;
}
/* certifications and affiliates images and links*/
#certs img{
	border: none;
	border-right: 1px solid #d6d6d6; 
}
img.noBorder{
	border: none; 
}

ul#certs {
	list-style: none;
	margin: 0;
	padding: 0;	
}

#certs li {
	display: inline;
	padding-left: 7px;	
}
#certs li.first {
	background-image: none;	
}

/* bottom navigation and copyright*/
div#footerLinks {
	width: 965px;
	margin: 0 auto;
	
}
#botNav a, #botNav a:link, #botNav a:visited {
  color: #FFFFFF;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

#botNav a:hover {
  color: #000;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

#botNav {
	list-style: none;
	margin: 6px 0;
	padding: 0;

}
#botNav li {
	display: inline;
	background: url(../images/navVerticalBarFooter.gif) no-repeat 5px 2px;
	padding-left: 20px;
}

#botNav li.first {
	background: none;
	padding-left: 0px;
}

ul#links {
	margin: 10px 0 20px;
}

ul#links li {
	list-style: none;
	padding-top: 10px;
}

img#cpAviation {
	padding-top: 20px;
}

