/* Center the page in the browser window */
body {
  margin: 0;
  width: 100%;
  height: 100%;
}

/* Page width is 800 pixels with no borders */
table.mainTable {
  width: 800px;
  border-width: 0px;
  padding: 0px;
  border-spacing: 0px;
  margin: auto;
}

/* The left blue bar that runs from top to bottom of the page and
   contains the menu links */
td.blueBar {
  width: 175px;
  background-color: #052266;
}

/* The MAC logo is centered in its table cell*/
td.logo {
  width: 625px;
  height: 116px;
}
img.logo {
  width: 600px;
  height: 106px;
  display: block;
  margin: auto;
  border-width: 0;
}

/* Each page has its own description (title) */
td.pgDesc {
  width: 625px;
  height: 26px;
  text-align: center;
}
font.pgDesc {
  font-family: Arial;
  color: #052266;
  font-size: x-large;
  font-weight: bold;
  vertical-align: middle;
}

/* Each page description is bounded top and bottom by a thin blue line */
td.blueLine {
  width: 625px;
  height: 3px;
  background-color: #052266;
}

/* Most images (like the panorama) are centered */
img.centered {
  display: block;
  margin: auto;
}

/* The menu links that run along the left side of the page */
td.menuItem {
  width: 175px;
  text-align: right;
  vertical-align: top;
  background-color: #052266;
  padding-right: 8px;
  padding-left: 0px;
  padding-top: 10px;
  padding-bottom: 0px;
  line-height: 1.5;
}
font.menuItem {
  font-family: Arial;
  color: white;
  font-size: medium;
  font-weight: bold;
  text-decoration: underline;
}

/* Each menu link has a small airplane icon */
img.planeIcon {
  width: 19px;
  height: 32px;
  border-width: 0;
  float: right;
}
img.smallPlane {
  width: 19px;
  height: 32px;
  border-width: 0;
  float: right;
  align: top;
}

/* Links do not change color */
a.menuItem:link {
  color: white;
}
a.menuItem:visited {
  color: white;
}
a.imageLink:link {
  color: transparent;
}
a.imageLink:visited {
  color: transparent;
}
a.textLink:link {
  color: #052266;
}
a.textLink:visited {
  color: #052266;
}

/* The main body of text on the page */
td.textBody {
  width: 625px;
  text-align: left;
  vertical-align: top;
  padding-left: 30px;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 20px;
  line-height: 1.5;
}
font.commonText {
  font-family: Arial;
  color: black;
  font-size: medium;
  font-weght: normal;
}

/* Lists of text */
td.textList {
  width: 625px;
  text-align: left;
  vertical-align: top;
  padding-left: 30px;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 20px;
  line-height: 2;
}

/* Text indents*/
p.indent1 {
  text-indent: 40px;
}
p.indent2 {
  text-indent: 80px;
}
p.indent3 {
  text-indent: 120px;
}
p.indent4 {
  text-indent: 160px;
}

/* Text in table of aircraft specs */
/*  note: specTitle and specNote need colspan="2" in their */
/*        td tags because there is no css equivalent       */
td.specTitle {
  width: 400px;
  padding-top: 20px;
  padding-bottom: 0px;
  margin: 0px;
  vertical-align: top;
  text-align: center;
  text-decoration: underline;
  font-weight: bold;
}
td.specSubTitle {
  width: 280px;
  padding-top: 20px;
  padding-bottom: 0px;
  margin: 0px;
  vertical-align: top;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
td.spec {
  width: 160px;
  padding-top: 5px;
  padding-bottom: 0px;
  margin: 0px;
  vertical-align: top;
  text-align: left;
  font-weight: bold;
}
td.spec2 {
  width: 80px;
  padding-top: 5px;
  padding-bottom: 0px;
  margin: 0px;
  vertical-align: top;
  text-align: left;
  font-weight: bold;
}
td.specInfo {
  width: 240px;
  padding-top: 5px;
  padding-bottom: 0px;
  margin: 0px;
  vertical-align: top;
  text-align: left;
}
td.specInfo2 {
  width: 200px;
  padding-top: 5px;
  padding-bottom: 0px;
  margin: 0px;
  vertical-align: top;
  text-align: left;
}
td.specNote {
  width: 400px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin: 0px;
  vertical-align: top;
  text-align: center;
  font-size: small;
}

/* Major and minor lines of text on certain pages */
font.majorLineU{
  font-size: medium;
  font-weight: bold;
  text-decoration: underline;
  line-height: 1.8;
}
font.majorLine{
  font-size: medium;
  font-weight: bold;
  line-height: 1.8;
}
font.minorLine{
  font-size: small;
  font-weight: normal;
  text-decoration: none;
  line-height: 1.8;
}

/* Copy right at the bottom of each page */
td.copyright {
  width: 625px;
  height: 40px;
  text-align: center;
  vertical-align: bottom;
}
font.copyright {
  font-family: Arial;
  color: black;
  font-size: xx-small;
}

