/* --------------------------------------------------------------
 
 forms.css
 * Sets up some default styling for forms
 * Gives you classes to enhance your forms
 
 Usage:
 * For text fields, use class .title or .text
 
 -------------------------------------------------------------- */

label {
}
/* Fieldsets */
fieldset {
    padding: 0.2em 1.4em;
    margin: 0 0 1.5em 0;
    border: 1px solid;
}

legend {
    font-weight: bold;
    font-size: 1.2em;
}
/* Text fields */
input[type="text"], input[type="submit"] {
}
.form-submit { cursor: pointer; }
/* Textareas */
textarea {
    width: 100%;
    height: 10em;
	margin: 0;
}


textarea:focus {
}
.resizable-textarea { width: 100%; }

/* Select fields */
select {
	max-width: 10em;	
}

form { width:99.5%; }
