/*
## forms.css - Contains style for forms in editorelement
*/

#content form {
  margin-bottom:15px;
  width: 99%;
}
#content form fieldset {
  padding: 30px 10px 5px 10px;
}
#content form p {
  margin: 5px 0 8px 0;
}
#content form legend {
  font-weight: bold;
  text-transform:uppercase;
  padding: 0 8px 0 0;
}

#content label.block,
#content label .block
{
  display: block;
  margin-bottom: 2px;
  margin-right: 20px;
}

#content form input.block
{
  display: block;
  margin-bottom: 8px;
  margin-right: 20px;
}
#content form select,
#content form .default /* .default used for standard text input */
{
  width:99%;
}

#content form textarea
{
  width:99%;
  margin-bottom: 8px;
}

#content form select {
  margin-bottom: 8px;
}
#content form input.file {
x  margin-left: 0px;
  margin-bottom: 8px;
}
#content form input.checkbox {
  margin-left: 0px;
}
#content form input.button.submit {
x  cursor:pointer;
x  margin-right: 10px;
x  width:82px;
x  height:25px;
x  border:0;
x  color:#FFF;
x  font-weight:bold;
x  text-transform:uppercase;
}

#content form input.button.reset {
x  cursor:pointer;
}

/* error-messages - TODO: clean up this mess */
#content h3.error-messages {
  font-size: 12px;
  color: #be0000;
}

#content ul.error-messages {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#content ul.error-messages li {
  padding: 4px 0;
  color: #be0000;
}

#content ul.error-messages li a:link,
#content ul.error-messages li a:visited {
  color: #be0000;
}

#content span.error-item {
  padding-left: 4px;
  font-weight: normal;
  color: #be0000;
}
