/*
 * Blue Static Site
 *
 * Copyright (c)2010 by Blue Static. All Rights Reserved.
 * This file may not be reproduced in any way without permission.
 */

form {
  margin: none;
  padding: none;
}

fieldset {
  margin: none;
  padding: none;
  border: none;
}

form ul, form li {
  margin: 0px;
  padding: 0px;  
}

form li {
  list-style-type: none;
  margin-bottom: 2px;
}

form li label {
  float: left;
  padding-top: 6px;
  width: 150px;
}

form label {
  font-weight: bold;
}

input, textarea, select {
  font-size: 13pt;
  font-family: "LiberationSerif", "Baskerville", Times, serif;
  color: rgb(0, 0, 0);
  
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 114, 188, 0.3);

  background-color: rgb(245, 245, 255);
  
  padding: 3px;
}

input[type="submit"], input[type="reset"], input[type="button"] {
  background: -webkit-gradient(linear, 0 50%, 0 100%, from(#ffffff), to(#e3e3e3));
  background: -moz-linear-gradient(top, #ffffff, #e3e3e3);
}

input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
  background: -webkit-gradient(linear, 0 4%, 0 100%, from(#c3c3c3), to(#f5f5f5));
  background: -moz-linear-gradient(top, #c3c3c3, #f5f5f5);
}

input[type="submit"]:hover, input[type="reset"]:hover, input:focus, textarea:focus {
}

