/* common styles for Forsyth site  */


/* GENERAL */

html, body {
  margin: 0px;
}
body {
  background-color: #ffffff;
}

/* for div containing skip links and other content that should never be seen by visual browsers */
.offscreen {
  position: absolute;
  left: 0px; top: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
/* for back to top anchor */
#divtopanchor {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 1px;
  z-index: 1;
}

/* div or other to clear floating things */
.clear, .divclear {
  clear: both;
}

/* remove space around form */
form {
  display: inline;
  margin: 0;
  padding: 0;
}
/* get rid of fieldsets and legends */
fieldset {
  display: inline;
  border: none;
  margin: 0;
  padding: 0;
}
legend {
  display: none;
}

/* table cells all aligned left and top */
td {
  text-align: left;
  vertical-align: top;
}

/* layout table */
/* note: cellspacing=0 must still be specified in table tag because of IE */
table.layouttable {
  border: none;
  border-spacing: 0px;
  margin: 0px;
  padding: 0px;
}
table.layouttable td {
  padding: 0px;
}

/* elements for screen display or print display only */
span.screenonly {
  display: inline;
}
span.printonly {
  display: none;
}
div.screenonly {
  display: block;
}
div.printonly {
  display: none;
}

/* all lists use solid bullet */
ul {
  list-style-type: disc;
}

/* default font and links */
html, body {
  font-family: Arial, Lucida, Helvetica, sans-serif;
  color: #000000;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin-top: 0px;
}
a,
a:link {
  color: #ff6600;
  text-decoration: underline;
}
a:visited {
  color: #ff6600;
  text-decoration: underline;
}
a:hover {
  color: #ff6600;
  text-decoration: none;
}



/* TOOL GROUP 1 */
/* in gray area */

#divtools1 {
  position: absolute;
  /* left, top, width, height set in home.css, lev2.css */
  z-index: 5;
}
#divtools1 ul {
  margin: 0px;
  padding: 0px;
  list-style: none;

  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 130px;
  z-index: 5;
}
#divtools1 ul li {
  display: block;
  float: left;
  width: 130px;
  margin-top: 4px;
  font-size: 0.63em;
  font-weight: normal;
  line-height: 100%;
  color: #ffffff;
}
#divtools1 ul li a {
  display: block;
  width: 130px;
  margin: 0px;
}
#divtools1 ul li a,
#divtools1 ul li a:link,
#divtools1 ul li a:visited {
  color: #ffffff;
  text-decoration: none;
}
#divtools1 ul li a:hover {
  color: #000000;
  text-decoration: none;
}



/* TOOL GROUP 2 */
/* in orange box */

#divtools2 {
  position: absolute;
  /* left, top set in home.css, lev2.css */
  padding: 9px 5px 6px 9px;
	width: 124px;
  z-index: 5;
  background-color: #f5821f;
}
#divtools2 p {
  margin: 0px;
}
#divtools2 p a,
#divtools2 p a:link,
#divtools2 p a:visited {
  /* in case of missing graphic */
  font-size: 11px;
  font-weight: normal;
  line-height: 100%;
  color: #ffffff;
  text-decoration: none;
}
#divtools2 p a:hover {
  text-decoration: underline;
}
/* search input box */
#divtools2 form #q {
  margin: 3px 0px 0px 1px;
  border: 1px solid #939598;
  padding: 2px 1px;
  width: 112px;
  background-color: #ffffff;
  font-size: 11px;
}
/* go button */
#divtools2 form #gosearch {
  margin-top: 3px;
}
