/***********************************************************************   
   Filename: html.css
   Purpose:  Styles html elements
   Authors:  Pat Heard
 ***********************************************************************/

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;  
  
  font: 0.7em arial, sans-serif;  
  line-height: 1.6em;

  color: #111;
  background: #E2ECF6 url(../img/bg/body.gif) repeat-y top center;
}


h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 10px;  
}

/* Headings */
h1 {
  font: bold 1.3em arial, sans-serif;
  letter-spacing: -0.05em;
  
  color: #023A73;
}

h1.gradient {  
  padding: 0;
  background: url(../img/bg/h1_gradient.gif) repeat-x bottom left;
}

h1.gradient span.text {
  padding: 0 10px;
}

h2 {
  font: bold 1.2em arial, sans-serif;
  color: #111;
}

h3 {
  font: bold 1em arial, sans-serif;
  text-transform: uppercase;
}


/* Standard HTML elements */
a {
  outline: none;
  color: #1260B2;
}

a:hover {
  background-color: #E2ECF6;
}

ol {
  margin: 0 25px;
  padding: 10px 20px;
}

ul.arrow {
  margin: 0 10px;
  padding: 10px 20px;
  list-style: none;
}

ul.arrow li {
  margin: 0;  
  padding-left: 15px;
  background: url(../img/bg/li_arrow_bullet.gif) no-repeat 0 5px;
}

/* Yellow blockquotes */
blockquote {
  margin: 10px 0;
  padding: 0;
  background: #FDF8BE;
}

blockquote p {
  padding: 0 10px;
}

blockquote h1 {
  padding-top: 0;
  color: #111;
}

blockquote {
  background: #FDF8BE url(../img/bg/blockquote.gif) repeat-x top left;
}

blockquote.marcus {
  margin: 40px 0 20px 0;
  background: #eff4fa;
}

blockquote.marcus p {
  padding: 10px 10px 10px 80px; 
  background: url(../img/bg/marcus-blockquote.jpg) no-repeat 10px 0;
}



/**************************************************************
   Tables
 **************************************************************/

table {
  width: 100%;  
  margin-bottom: 20px;  
  border-collapse: collapse;
}

table caption {
  margin-top: 10px;
  padding: 10px 0 0.5em 10px;

  font: 0.8em arial, sans-serif;
  text-align: left;  
}

table th,
table td {
  text-align: left;
  vertical-align: top;  
  padding: 6px 10px;
}

thead th {
  background-color: #CCD8E3;
  border-bottom: 1px solid #9DB5CB;
}

tbody tr.dark {
  background-color: #F5F5F5;
}

tbody td {
  border-bottom: 1px solid #DDD;
}

tbody tr:hover {
  background-color: #FDF8BE;
}




/**************************************************************
   Form Elements
 **************************************************************/

label {
  float: left;
  text-align: right;
  width: 9em;
  padding-right: 1em;
  
}


input,
textarea,
select {
  padding: 4px;
  font: 400 1em aria, sans-serif;
  
  color: #111;
  background-color: #FFF;
  border-width: 1px;
  border-style: solid;
  border-color: #888 #DDD #DDD #888;  
}


input:focus,
textarea:focus,
select:focus {  
  padding: 3px;
  color: #000;
  background-color: #FDF8BE;
  border-width: 2px;
}

input.button {
  padding: 1px 10px;

  font: bold 1em arial, sans-serif;
  cursor: pointer;

  color: #FFF;
  background-color: #023A73;
  border-color: #3B7ABB #000 #000 #3B7ABB;
}

.required {
  cursor: help;
  border-bottom: 1px solid #CCC;
}