/* oa.css
 *
 */

html, body {
  height: 100%;
  font-family: verdana, tahoma, geneva, arial, helvetica, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #000;
  background-color: #fff;
}

h1 {
  font-family: verdana, tahoma, geneva, arial, helvetica, sans-serif;
  font-size: 36px;
}

p {
  padding: 0px 5px 5px 5px;
  font-size: 12px;
}

iframe {
  border: none;
  margin: 0 0 0 0;
  height: 500px;
  width: 790px;
  overflow: auto;
}

input {
  font-family: verdana, tahoma, geneva, arial, helvetica, sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin: 5px;
}

fieldset {
  color: #069;
  padding: 10px;
  border: groove 2px #ccc;
}

legend {
  color: #069;
  font-size: 14px;
  padding: 5px;
  border: none;
}

label {
  font-size: 12px;
  vertical-align: middle;
}

li {
  font-size: 12px;
}

li +ul li {
  font-size: 10px;
}

table {
  font-size: 12px;
}

tr {
    margin: 0px 0px 2px 0px;
}

td {
  vertical-align: top;
  font-size: 12px;
  padding: 0px 2px 0px 2px;
  margin: 0px 0px 0px 0px;
}

#leftColumn, #mainContent, #rightColumn {
}

#pageHeader {
  color: #069;
  background-color: #3cc;
  display: block;
  height: 80px;
  width: 800px;
  clear: both;
/*** fun but kind of silly...
  filter: 'progid:DXImageTransform.Microsoft.BasicImage(opacity=0.5)';
  opacity: 0.5;
 ***/
}

#mainContent {
  position: absolute;
  background-color: #fff;
  float: left;
  border: none;
  min-height: 100%;
  height: 100%;
  padding: 10px;
  width: 590px;
  display: block;
}

#rightColumn {
  position: absolute;
  background-color: #fff;
  float: left;
  border: none;
  min-height: 100%;
  height: 100%;
  padding: 10px;
  width: 200px;
  display: block;
}

#copyright {
  position: absolute;
  padding: 10px 0px 0px 0px;			/* top, right, bottom, left			*/
  bottom: 0px;
  left: 5px;
  font-size: 9px;
}

.pjxFAQHeading {
  color: #069;
  padding: 10px 5px 0px 5px;
  font-size: 11px;
  font-weight: bold;
}

.pjxFAQText {
  font-size: 10px;
}

.pjxCode {
  background-color: #cfc;
  font-size: 14px;
  width: 750px;
  padding: 10px 0px 10px 0px;			/* top, right, bottom, left			*/
  border: solid 1px #000;
}

.blurb {
  display: block;
}

/* print specific CSS changes
 *
 */

@media print {

  iframe {
    border: none;
    margin: 0 0 0 0;
    width: 790px;
    height: auto;			/* do not limit height when printing -- auto doesn't really work :-(		*/
    height: 1800;			/* so.... we use this horrible hack that gets iframes to print (for now)	*/
  }

  #leftColumn, #mainContent, #rightColumn {
    float: none;
    border: none;
    height: auto;
  }

  #mainContent {
    background-color: #fff;
    padding: 10px;
    width: 590px;
    float: none;
    height: auto;
  }

  .blurb {
    display: block;			/* good for printing...								*/
  }					/* problem though with mouseover process settings these to "none" :-(		*/

}
