/**************************************************************
   AUTHOR:  Pat Heard (fullahead.org)
   DATE:    Created 2007.07.20
   PURPOSE: Styles html elements
 **************************************************************/

body {
  margin: 0;
  padding: 0;

  font: normal 0.9em Arial,Verdana,Sans-Serif;
  line-height: 1.4em;
  text-align: center;

  color: #FFF;
  background: #252525 url(../img/bg/body.png) repeat-x top left;
}

/* Safari only CSS hack: only browser that currently recognizes "first-of-type" pseudo-class */
body:first-of-type  {
  background: #1F1F1F url(../img/bg/body.png) repeat-x top left;
}

a {
  color: #FCEFA4;
  text-decoration: none;  
}

a:hover {
  color: #FC0;
}

a img {
  border: 0;
}


/**************************************************************
   Forms
 **************************************************************/

form {
  margin: 2em 0;
  padding: 0;
}

label {
  float: left;
  /* increase if need to use longer labels */
  width: 100px;
}

label.error {
  font-weight: bold;
  color: #F60;
}

input,
textarea,
select {
  padding: 2px;
  margin: 0;
  
  font: 1em arial, sans-serif;
  
  border-width: 1px;
  border-style: solid;
  border-color: #000 #444 #444 #000;
  color: #3C3C3C;
  background-color: #FFF;
}

input:focus,
textarea:focus,
select:focus {  
  color: #000;
  background-color: #FCEFA4;
}


input.button,
input:focus.button {  
  padding: 1px 5px;

  font: 0.9em verdana, arial, sans-serif; 
  cursor: pointer;

  color: #FFF;
  background: #F60;  
  border-width: 1px;
  border-color: #FFC000 #DD5902 #DD5902 #FFC000;
}
