/* --------------------------------------------------------------

   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms

-------------------------------------------------------------- */
label    { font-weight: inherit; }
fieldset { padding:0 1.4em 1.4em 1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend   { font-weight: bold; font-size:1.2em; margin-top:-0.2em; margin-bottom:1em; }

fieldset { padding-top:1.4em; }
legend { margin-top:0; margin-bottom:0; }

/* Buttons
-------------------------------------------------------------- */
.button {
    display: inline-block;
    margin-bottom: 1.3em ;
    padding: 5px 10px;
    background: #eee; /* Old browsers */
    border: 1px solid #aaa;
    padding: 5px 12px;
    color: #444;
    font-size: 100%;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
  }

    .button:hover {
	    cursor: pointer;
    }
    
/* Form fields
-------------------------------------------------------------- */
.text{
  width: 300px;
  background-color:#fff;
  border: 1px solid #bbb;
  color: #000;
  margin-bottom: 0.5em;
  padding:5px;
  font-size: 100%;
}
	.text:focus {
	  border-color:#666;
	}

.select{
  height: 29px;
  width: 312px;
  background-color:#fff;
  border: 1px solid #bbb;
  color: #000;
  margin-bottom: 0.5em;
  padding:5px;
}
	.text:focus {
	  border-color:#666;
	}

input.title { font-size:1.5em; }
textarea.text  { height: 200px; }