/* -- flash and validation error styling -- */

.flash {
  font-family: Verdana;
  font-size: 14px;
  border-size: 2px;
  border-color: white;
  border-style: solid;
  padding: 5px;
  color: white;
}

.flash_error {
  background: red;
}

.flash_notice {
  background: green;
}

.field_error {
  color: red;
}

.input_error {
  border: solid thin red;
}

/* DEPRECATED -- USE .page_xyz INSTEAD */

.campaign_form {
  padding: 0;
}
.campaign_form label {
  display: block;
}
.campaign_form fieldset {
  /* have the fieldset display without any fieldset styling by default */
  border: none;
  margin: 0px;
  padding: 0px;
}
.campaign_form fieldset {
  margin-bottom: 10px;
}
.campaign_form legend {
  /* don't display the legend by default */
  display: none;
}

/* -- polls -- */

.percentage_bar {
  background: blue;
  color: white;
  padding: 2px;
}


/* THE FOLLOWING STYLES ARE THE ONES TO USE */


.page_form {
  padding: 0;
}
.page_form label {
  display: block;
}
.page_form fieldset {
  /* have the fieldset display without any fieldset styling by default */
  border: none;
  margin: 0px;
  padding: 0px;
}
.page_form fieldset {
  margin-bottom: 10px;
}
.page_form legend {
  /* don't display the legend by default */
  display: none;
}

/* -- polls -- */

.percentage_bar {
  background: blue;
  color: white;
  padding: 2px;
}

