@charset "utf-8";

/* form
--------------------------------------------------------------------------------*/

.form {
  display: block;
  position: relative;
  margin: 0;
  border: none;
}

/* field
--------------------------------------------------------------------------------*/

.field {
  display: block;
  position: relative;
  clear: both;
  top: 0;
  left: 0;
  height: auto;
  width: auto;
  margin: 5px 0 15px 0;
  border: none;
  padding: 0;
  background: none;
  overflow: hidden;
}

.field-left {
  display: block;
  float: left;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  padding: 0;
  background: none;
  overflow: hidden;
}

.field-right {
  display: block;
  float: left;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  padding: 0;
  background: none;
  overflow: hidden;
}

.field-left-content {
  display: block;
  position: relative;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  padding: 0 5px 0 0;
  background: none;
  overflow: hidden;
}

.field-right-content {
  display: block;
  position: relative;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  padding: 0 0 0 5px;
  background: none;
  overflow: hidden;
}

/* field-label
--------------------------------------------------------------------------------*/

.label {
  display: block;
  height: auto;
  margin: 0;
  border: none;
  padding: 4px 0 4px 0;
  background: none;
  text-align: right;
  cursor: pointer;
}

.label-error {
  color: #c00;
}

.label-required {
  font-weight: bold;
}

.label-submit {
  display: block;
  height: auto;
  margin: 0;
  border: none;
  padding: 4px 0 4px 0;
  background: none;
  cursor: pointer;
}

/* field-error
--------------------------------------------------------------------------------*/

.field-error {
  display: block;
  height: auto;
  margin: 0 0 5px 0;
  padding: 5px;
  color: #c00;
  background: #fff;
  font-size: 0.875em;
}

.field-error-content {
  display: block;
  position: relative;
  clear: both;
  top: 0;
  left: 0;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  padding: 0;
}

/* field-info
--------------------------------------------------------------------------------*/

.field-info {
  display: block;
  height: auto;
  margin: 0 0 5px 0;
  border: #fff solid 1px;
  padding: 0 5px 0 5px;
  color: #999;
  background: #fff;
  font-size: 0.875em;
}

.field-type-file
.field-info {
  display: block;
}

.field-info-content {
  display: block;
  position: relative;
  clear: both;
  top: 0;
  left: 0;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  background: none;
}

.field-info-item {
  display: block;
  margin: 0;
  border: none;
  padding: 0;
}


/* field-desc
--------------------------------------------------------------------------------*/

.field-desc {
  display: block;
  height: auto;
  margin: 0 0 5px 0;
  padding: 5px;
  color: #666;
  background: #eee;
  font-size: 0.875em;
}

.field-desc-content {
  display: block;
  position: relative;
  clear: both;
  top: 0;
  left: 0;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  background: none;
}

/* field-help
--------------------------------------------------------------------------------*/

.field-help {
  display: block;
  height: auto;
  margin: 0 0 5px 0;
  padding: 5px;
  color: #666;
  background: #eee;
}

.field-help-ico {
  display: block;
  position: absolute;
  z-index: 1;
  top: 1px;
  right: 1px;
  width: 20px;
  height: 20px;
  margin: 0;
}

.field-help-content {
  display: block;
  position: relative;
  clear: both;
  top: 0;
  left: 0;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  background: none;
}

/* input
--------------------------------------------------------------------------------*/

.input {
  color: #999;
}

.input-text,
.input-textarea,
.input-password,
.input-select,
.input-file,
.input-habtm-checkbox {
  display: block;
  width: 100%;
  margin: 0 0 5px 0;
  border: #999 solid 1px;
}

.input-text {
  padding: 3px;
  cursor: text;
}

.input-textarea {
  padding: 3px;
  cursor: text;
}

.input-file {
}

.input-editor {
  width: 100%;
}

.input-editor-word {
  height: 280px;
}

.input-password {
  padding: 3px;
  cursor: text;
}

.input-select {
  padding: 3px;
  cursor: pointer;
}

.input-select-multi {
  height: 50px;
}

.input-habtm-select {
  cursor: pointer;
  height: 100px;
}

.input-habtm-checkbox {
  height: 100px;
  overflow: auto;
}

.input-habtm-checkbox
.checkbox {
  border-bottom: #eee solid 1px;
  padding: 2px;
  cursor: default;
}

.input-habtm-checkbox
.checkbox-hover {
  background: #eee;
  cursor: default;
}

.input-habtm-checkbox INPUT {
  padding: 0;
  cursor: pointer;
}

.input-habtm-checkbox LABEL {
  margin: 0 0 0 5px;
  padding: 0;
  cursor: pointer;
}

.input-error {
  color: #c00;
}

.input-error.input-text,
.input-error.input-textarea,
.input-error.input-password,
.input-error.input-select {
  border: #c00 solid 1px;
}

.input-hover {
  color: #666;
}

.input-hover.input-text,
.input-hover.input-textarea,
.input-hover.input-password,
.input-hover.input-select {
  border: #666 solid 1px;
}

.input-focus {
  color: #333;
}

.input-focus.input-text,
.input-focus.input-textarea,
.input-focus.input-password,
.input-focus.input-select {
  border: #333 solid 1px;
  outline: none;
}

.input-readonly {
  background: #eee;
}

/* fieldset
--------------------------------------------------------------------------------*/

.fieldset {
  display: block;
  position: relative;
  clear: both;
  top: 0;
  left: 0;
  height: auto;
  width: auto;
  margin: 0 0 10px 0;
  border: #ccc solid 1px;
  padding: 5px;
  background: none;
}

.legend {
  top: 0;
  left: 0;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  padding: 0 5px 0 5px;
  color: #999;
  background: none;
}