/*
|
| TITLE:	Forms Style Sheet
| AUTHOR:	Eric Shiarla, emshiarla@gmail.com
| EMPLOYED:	Interworks Inc.
|
*/

.styledForm, .styledForm fieldset {
  margin:0;
  clear: left;
  width: 480px;
  background: #fff;
}

.styledForm fieldset select{
  font-size:11px;
}

.styledForm span.note {
  font-size: 90%;
}

.styledForm fieldset {
  margin: 0;
  padding: 10px 0;
  border: none;
}

.styledForm label {
  float: left;
  clear: left;
  margin: 3px 10px 0 0;
  width: 100px;
  color: #333;
  font-weight: bold;
  text-align: right;
}

.styledForm label { /* IE haslayout bug, issues with longer labels */
  height: 1%;
}

.styledForm label.clear {
  margin-right: 5px;
  width: auto;
}

.styledForm label.long {
  width: 200px;
}

.styledForm .checkboxSet {
  clear: both;
  margin:0 auto;
  width:280px;
}

.styledForm .checkboxSet input {margin-right: 5px; border: none;}
.styledForm .checkboxSet input.other {border: 1px solid #EAEAEA;}

.styledForm input, .styledForm textarea, .styledForm select {
  margin: 0;
  padding: 5px;
  border: 1px #ccc solid;
}

.styledForm input { border: 1px solid #ccc; }

.control input.checkbox { position: relative; top: 2px; border: none; }

.styledForm input:focus, .styledForm textarea:focus, .styledForm select:focus { border-color: #CACACA; }

.styledForm textarea {font:normal 1em Tahoma;}/** Should this be Arial? **/

.styledForm p.submit {
  clear: both;
  margin-left: 175px;
}

.styledForm p.submit input {
  margin: 25px 0 0 0;
  padding: 5px;
  color: #F2FFEF;
  font-weight: bold;
  text-transform: lowercase;
  background-color: #62BA49;
  border-top: 1px solid #73CF5A;
  border-left: 1px solid #73CF5A;
  border-bottom: 1px solid #59AF41;
  border-right: 1px solid #59AF41;
  cursor: pointer;
}

.styledForm p.submit input:hover {
  background-color: #73CF5A;
}

.styledForm em { /* color: red; font-weight: bold; */ }

.styledForm ol {
  margin: 0 25px;
  padding: 0;
  list-style-type: none;
}

.styledForm li {
  margin: 3px 0;
  padding: 6px 0;
  clear: both;
}

.styledForm li.last {
  background-image: none;
}

.styledForm p.alert {
  margin-left: 175px;
}

.styledForm label.multiline {
  width: 100%;
  text-align: left;
}

.styledForm input.multiline, .styledForm select.multiline, .styledForm textarea.multiline {
  margin: 5px 0 0 0px;	/* left was 150. Changed when changed label from "multiline" class */
}

.styledForm li p.noscript {
	text-align: left;
	color: red;
	font-size: 100%;
}

.warning {
    color:#cf0d0d;
}
.errorMsg {
    color:#cf0d0d;
}
.requiredField {
    color:#cf0d0d;
}

