/* --------------------------------------------------------------------------------
   CSS : FORMS
   -
   by Kings of Mambo / www.kingsofmambo.com
-------------------------------------------------------------------------------- */

/* Form fields
-------------------------------------------------------------- */

label {
  margin: 0 10px 3px 0;
  font-size: 0.8em;
  color: #979797;
}

input.txt,
textarea.txt {
  border: 1px solid #cbcbcb;
  font-size: 0.8em;
  padding: 2px;
  margin: 0 0 10px 0;
  color: #555;
}

input.width-224, textarea.width-224 {width: 224px;}
input.width-624, textarea.width-624 {width: 624px;}

.send_btn {
  display: block;
  height: 27px;
  background: url('../images/layout/elements_sprite.gif') -599px -69px no-repeat;
  text-indent: -9999px;
}

.send_btn {
  display: block;
  height: 27px;
  background: url('../images/layout/elements_sprite.gif') -599px -69px no-repeat;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
}


/* Success, notice and error boxes
-------------------------------------------------------------- */

.error,
.notice, 
.success    { padding: .8em; margin-bottom: 1em; 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; }

.error ul {
  list-style-type: disc;
  margin: 0 0 0 20px;
}

#aux .error ul li {
  padding: 0 0 0 0;
}


