/* Start of CMSMS style sheet '960 forms' */
/*   
   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
*/

.text input, input.text, textarea {
  margin-bottom:12px;
}

textarea {
   font:12px/24px "Lucida Grande","Helvetica Neue","Helvetica",Arial,Verdana,sans-serif;
}

/* Success, notice and error boxes*/

.error,
.notice, 
.success    { padding: 10px; margin-bottom: 12px; border: 2px solid #ddd; }

.error      { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
/* End of '960 forms' */

