/**
  FORM ELEMENTS
  Generic Webform element
  **/
.webform-form {
	font-size: 14px;
}

.webform-form .form-title {
	font-family: LatoBoldItalic;
  font-size: 20px;
  margin-bottom: 20px;
}

.webform-form .form-description {
	margin-bottom: 20px;
}

.webform-form .form-required {
  padding: 0 10px;
}

.webform-form label {
	margin-bottom: 5px;
	font-size: 14px;
}

.webform-form .form-item {
	margin-bottom: 20px;
}

.webform-form input,
.webform-form select,
.webform-form textarea {
	width: 100%;
}

.webform-form textarea {
	min-height: 200px;
}

.webform-form .form-type-captcha input {
	width: auto;
}

.webform-form .form-type-captcha img {
	margin-bottom: 10px;
}

.webform-form .form-submit {
	width: auto;
}

/**
  MESSAGE BOX
  ------------------
  Classes available to use :
    1. messages : green message box
    2. messages warning : orange message box
    3. messages error : red message box
    4. messages info : blue message box
  **/
.messages {
  border-color: auto;
  border: 2px solid;
  padding: 7px 7px 7px 48px;
  min-height: 34px;
  margin: 0 0 24px;
  font-size: 1em;
  clear: both;
}
  
.status {
  background: #F1F8EB url('images/message.png') no-repeat 10px 10px;
  color: #55872E;
}  

.warning {
  background: url("images/warning.png") no-repeat scroll 10px 10px #FFFFD4;
  color: #C7721D;
}

.errors {
  background: #FFCBBA url('images/error.png') no-repeat 10px 10px;
  color: #8A1F11;
}

.info {
  background: #BDE5F8 url('images/info.png') no-repeat 10px 10px;
  color: #00529B;
}