/* common styles for GEM4 site  */



/* GENERAL */

html, body {
  margin: 0px;
}
/* don't set background color on <html> for sake of Dreamweaver */
body {
  background-color: #94c112;
}

/* 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 to clear floating divs */
.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;
}

/* use border box model (widths include padding and borders) */
/* note: validator does not like these two declarations... */
/* the first is CSS3, the second is Mozilla-specific */
/* NOT NEEDED FOR THIS SITE - WE ARE USING STRICT MODE DOCTYPE
div {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
*/

/* 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;
}



/* OUTER SHELL */

#divoutershell {
  width: 100%;
  min-width: 760px;
}



/* HEADER */

#divheader {
  position: relative;
  width: 100%;
  border-top: 53px solid #0b1560;
  background-color: #ffffff;
  z-index: 5;
}



/* BODY */

#divbody {
  position: relative;
  width: 100%;
  min-height: 325px;
  background-color: #ffffff;
  z-index: 4;
}



/* FOOTER */

#divfooter {
  position: relative;
  padding: 9px 0px 30px 142px;
  z-index: 3;
}
#divfooter ul {
  display: inline;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
#divfooter ul li {
  display: block;
  float: left;
  margin: 0px;
  padding: 0px;
}
