/*------------------------------------*\
$GLOBAL
\*------------------------------------*/
.frm {
  float: right;
  margin: 0 0 20px 20px;
  padding: 20px;
  width: 360px;
  line-height: 20px;
  border: 1px solid #eeeeee;
  border-radius: 3px;
}
.frm h2 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: normal;
}
.frmrow {
  display:block;
  padding: 0 0 10px;
  margin:0;
  position:relative;
  width:100%;
  font-size: 0;
}
.frmcaption {
  color:#000000;
  font-size:12px;
  font-weight:bold;
  line-height:15px;
  position:relative;
  display: block;
  padding:0 0 5px 10px;
}
.type_text .input,
.type_textarea .input,
.type_select_filter .txtinput {
  display:block;
  overflow:hidden;
}
.type_text input,
.type_textarea textarea,
.type_select_filter .txtinput input {
  background:#ffffff;
  border:0;
  display:block;
  line-height:20px;
  height:40px;
  padding: 8px;
  font-size: 14px;
  width:100%;
  border: 2px solid #eeeeee;
  border-radius: 3px;
}
.type_textarea textarea {
  height: auto;
}
.type_check_one .input,
.type_check_many .input {
  display: inline-block;
  vertical-align: middle;
  padding-left:10px;
}
.type_check_one .input label,
.type_check_many .input label {
  display:block;
  white-space:nowrap;
  margin-top: 5px;
}
.type_check_one .input label:first-child,
.type_check_many .input label:first-child {
  margin-top: 0;
}
.type_check_one .input input,
.type_check_many .input input {
  width:13px;
  height:13px;
  display:inline-block;
  vertical-align:middle;
  margin:0;
  padding:0;
}
.type_check_one .input .cptn,
.type_check_many .input .cptn {
  vertical-align:middle;
  display:inline-block;
  padding-left:10px;
  font-size: 14px;
  white-space: normal;
}
.type_select select,
.type_multiselect select {
  border:1px solid #dedede;
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.frm .buttons {
  margin-top: 10px;
}
/*------------------------------------*\
$ERRORS
\*------------------------------------*/
.error .frmcaption,
.type_check_one.error .cptn,
.type_check_many.error .cptn {
  color:#ec4646;
}
.error.type_text input,
.error.type_textarea textarea,
.type_select_filter .txtinput input {
  border-color: #ec4646;
}
.inputerror {
  display:block;
  margin:5px 0 0 10px;
  color:#ec4646;
  font-size:12px;
}
/*------------------------------------*\
$MESSAGES
\*------------------------------------*/
.msg-error,
.msg-success,
.msg-note {
  margin: 0 0 10px;
  padding: 5px 10px;
  clear: both;
  color: #ffffff;
  overflow: hidden;
  font-size: 12px;
  line-height: 20px;
  border-radius: 3px;
}
.msg-error p,
.msg-success p,
.msg-note p {
  font-size: 12px;
}
.msg-error {
  background-color:#ec4646;
}
.msg-success {
  background-color:#59b088;
}
.msg-note {
  background-color:#ecd746;
}