/* screen styles for forms and tables */

/* ----- CSS RESET ----- */

/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 2008-02-12 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  vertical-align: baseline;
  background: transparent;
}

h4 {
    border-bottom: 1px solid #7e7d7e;
}

/* ----- GENERAL STYLES (from website design.css) ----- */

body {
  line-height: 20px;
}

p {
  margin-bottom: 15px;
  line-height: 20px;
  font-size: 12px;
  color: #231f20;
}

a {
  color: #00adef;
  text-decoration: none;
}

a:hover, 
a:active {
  color: #00adef;
  text-decoration: underline;
}

h1 {
  margin-bottom: 15px;
  line-height: 23px;
  font-size: 19px;
  font-weight: normal;
  color: #000;
}

h1 span {
  font-size: 12px;
  color: #888;
}


h2 {
  margin-bottom: 10px;
  line-height: 20px;
  font-size: 14px;
  font-weight: normal;
  color: #7e7d7e;
}

h3 {
  margin-bottom: 5px;
  line-height: 20px;
  font-size: 11px;
  font-weight: normal;
  color: #7e7d7e;
}

ul {
  padding: 0;
  margin: 0 0 15px 30px;
  list-style: disc;
}

ol {
  padding: 0;
  margin: 0 0 15px 30px;
}

li {
  padding: 0;
  margin: 0 0 2px 0;
  line-height: 20px;
  font-size: 12px;
  color: #231f20;
}


/* ----- FORM STYLES ----- */
body {
    padding: 5px;
}

iframe {
  background: transparent;
}

form {
  padding: 10px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table th {
  padding: 8px 5px 8px 0;
  margin: 0;
  width: auto;
  line-height: 20px;
  vertical-align: top;
  text-align: left;
  font-size: 12px;
  font-weight: bold;
  color: #231f20;
}

table td {
  border-top: #eee 1px solid;
  padding: 1px 5px 1px 0;
  margin: 0;
  width: auto;
  line-height: 20px;
  vertical-align: top;
  font-size: 12px;
  color: #231f20;
}

table td.label {
  padding-top: 6px;
  width: 40%;
  vertical-align: top;
  color: #777;
}

input, 
textarea, 
select {
  padding: 2px;
  width: 100%;
  height: 26px;
  font-size: 12px;
  font-family: Verdana, Helvetica, Arial, sans-serif;
}

input.checkbox {
  margin-right: 5px;
  width: auto;
}

textarea {
  height: 100px;
}

option {
  font-size: 10px;
}

input.button {
  width: auto;
}

