
/*-------------------------------------
  STANDARD PAGE FORMS
  -------------------------------------*/

  input[type='text'], input[type='password'], 
  input[type='checkbox'], select, textarea {
  border-width:1px;
  font-size: 1.5em;
  padding: 2px;
  }
  
  input[type='text'].small, input[type='password'].small, 
  input[type='checkbox'].small, select.small, textarea.small {
  font-size: 1.2em;
  }
  .small select{
  font-size:1.2em;
  }
  
  textarea{
  width:100%;
  height:400px;
  font-size:1.2em;
  padding:1px;
  margin-bottom:2px;
  }
  input[type='text']{
  width:60%;
  }
  textarea.short{
  height:120px;
  }
  input[type='text'].long{
  width:100%;
  }
  label {
  font-weight: bold;
  margin-top: 10px;
  padding:2px 0;
  display:block;
  font-size:1.2em;
  }
  button.submit{
  margin-top:10px;
  }
  form p{
  margin:15px 0;
  }
  form{
  background:#eee;
  padding:10px 18px 10px 18px;
  }
  form a{
  color:#888;
  font-weight:300;
  text-decoration:none;
  font-size:11px;
  }
  form ul{
  list-style-type:none;
  margin:0;
  padding:0;
  }
/*-------------------------------------
  Comment Form
  -------------------------------------*/
  
  form.comment-new{
  max-width:500px;
  }

  form.comment-new textarea{
  height:200px;
  }
  
/*-------------------------------------
  Session Form
  -------------------------------------*/

  form.session-new{
  padding:1px 20px 20px;
  }
  
/*-------------------------------------
  Error Form
  -------------------------------------*/
  input[type='text'].error, textarea.error{
  border:1px solid orange;
  }



