/*******************************************************************************
 * 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: Verdana, Arial;
  background-color: #fff;
  color: #000;
}
p {
  font-size: 0.70em;
  margin: 0 0 1em 0;
  color: #010101;
  line-height: 1.6em;
}
p.pagination {
	clear: both;
}
table {
  font-size: 0.70em;
  width: 100%;
}
h1 {
  font-size: 1.9em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1em;
}
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;
}
.img-left {
  float: left;
  margin: 2px 10px 5px 2px;
}
.img-right {
  float: right;
  margin: 2px 2px 5px 10px;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.clear-both {
  clear: both;
}
.clear-left {
  clear: left;
}
.clear-right {
  clear: right;
}
.no-wrap {
  white-space: nowrap;
}
.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;
}