

/*********************************************************
   HTML Elements
 *********************************************************/

html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  background: url(../images/bg/body.jpg) repeat-x top center;
  /*font: 400 0.7em verdana, arial, sans-serif;
  font-size:75%;
  line-height: 170%;*/
  font-family:verdana,Arial,sans-serif;
  background-color:#F0F1F1;
  color: #333333;
}

.blue {color:#144055;}
/* Headers */
h1, h2, h3, h4, h5, h6 {
  font-family:Arial,sans-serif;
  margin: 0 0 10px 0;
  padding: 0;
}


h1 {
  padding-bottom: 0.4em;

  font-size: 16px !important;
  font-weight:bold !important;
  font-family:Arial,sans-serif;
  color: #144055;
  
}

h2 {
  font-size: 1.2em;
  color: #586B7A;
}

h3 {
  text-transform: uppercase;
  font-size: 0.9em;
  color: #5D6F73;
  font-weight:bold !important;
  border-bottom:1px dashed #ddd;}

h4 {
  font-size: 0.85em;
}

h5 {
  font-size: 0.8em;
}





/* Links */
a {
  text-decoration: none;
  color: #31718D;
}

a:hover {
  color: #00ccff;
}

a img {
  border: 0;
}

a img.border {  
  border: 1px solid #FC3307;
}

a:hover img.border {  
  /* Fixes IE bug - IE doesn't correctly apply the style on a:hover so need to mask it */
  border: 1px solid #668FA3 !important;
  border: 1px solid #FC3307;
}

a.button {
    background: transparent url('../images/bg_button_a.gif') no-repeat scroll top right;
    color: #444;
    display: block;
    float: left;
    font: normal 12px arial, sans-serif;
    height: 24px;
    margin-right: 6px;
    padding-right: 18px; /* sliding doors padding */
    text-decoration: none;
}

a.button span {
    background: transparent url('../images/bg_button_div.gif') no-repeat;
    display: block;
    line-height: 14px;
    padding: 5px 0 5px 18px;
}


a.button:active {
    background-position: bottom right;
    color: #000;
    outline: none; /* hide dotted outline in Firefox */
}

a.button:active span {
    background-position: bottom left;
    padding: 6px 0 4px 18px; /* push text down 1px */
} 

/* Images */
img.floatRight {
  margin: 5px 0 10px 10px;
}

img.floatLeft {
  margin: 5px 10px 10px 0;
}



/* Lists */


ol li {
  font-weight: bold;
  color: #00CCFF;
}

ol li span {
  font-weight: normal;
  color: #00CCFF;
}



/* Blockquote */
blockquote {
  margin: 0;
  padding: 0 20px;
  background: #E7F1F3;
  border-top: 1px solid #AAD3DB;
  border-bottom: 1px solid #AAD3DB;
}



/**************************************************************
   Form Elements
 **************************************************************/

form {
  padding: 0;
  margin: 0;
}

label {
 display:inline;
 width:340px !important;
  vertical-align: top;
  font-size:85%;
  
  padding:4px 100px 4px 0;
}

input,textarea,select {
  vertical-align: top;
 
  margin: 1px 10px 1px 1px;
  font-size:85% !important;
  color: #666;
  background: #f9f9f9;
  border: 1px solid #CCC;
}

input,select {
 width:213px;
}

textarea {

 width:343px;
}



input:focus,input:hover,textarea:focus,textarea:hover,select:focus,select:hover {
  color: #000;
  background: #ffffff;
  border: 1px solid #888;
}

input.noBorder,
input:focus.noBorder,
input:hover.noBorder {
  padding: 0;
  border: 0;
}

input.radio, input.checkbox {
  width:16px !important;
  background: none;
  border: 0px;
}

input.submit {background-color:#ff9900 !important;border: 1px solid #333 !important;}
input.cbox {display:inline;float:left;background:#000 !important;width:16px !important;}



