/**
 * all.css - style init for use with all browsers and media types
 */

/* Import css to undo some of the default styling of common (X)HTML browsers  */
@import url('undohtml.css');

/**
* Element Styles
*/

body {
  font-family: Trebuchet MS, Tahoma, Arial;
}
p {
  font-size: 0.75em;
  margin: 1em 0;
}
h1 {
  font-size: 1.9em;
}
h2 {
  font-size: 1.5em;
}
h4 {
  font-size: 0.9em;
  margin: .5em 0;
}
ul ul li {
  font-size: 0.85em;
}
li {
  list-style-type: circle;
  list-style-position: outside;
  font-size: 0.75em;
  margin: 1em 0 1em 2em;
}
iframe {
  background-color: #fff;
}

/** 
* Generic Classes
*/

.left {
  float: left;
}
.right {
  float: right;
}
.imgLeft, img-left {
  float: left;
  margin: 2px 10px 5px 2px;
}
.imgRight, img-right {
  float: right;
  margin: 2px 2px 5px 10px;
}
.textLeft, text-left {
  text-align: left;
}
.textRight, .text-right {
  text-align: right;
}
.textCenter, .text-center {
  text-align: center;
}
.clearAll, clear-both {
  clear: both;
}
.clearLeft, clear-left {
  clear: left;
}
.clearRight, clear-right {
  clear: right;
}
.hidden, #header li.hidden {
  margin: 0;
  padding: 0;
  /* Take this out of flow of doc so page isn't effected when resizing */
  position: absolute;
  /* So hidden text doesn't become visible when resizing */
  margin-left: -5000px;
}
.error {
  color: red;
}
li.sub {
  list-style-type: none;
}
.code {
  font-family: Courier New, Courier;
}