/* - - - - - - - - - - - - FORMS - - - - - - - - - - - - */

.formHead {
  margin: 0;
  margin-top: 1.5em;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size : 13px;
  font-weight: bold;
  color: #6F6F6F;
  border-bottom: 1px #e1e1e1 solid;
}

.formText {
  margin-bottom: .5em;
  padding: 0px;
  font-size: 12px;
  line-height: 30px;
}
.formLabel {
        margin: 0;
        margin-bottom: .5em;
        padding: 0;
        font-size: 13px;
        color: #6F6F6F;
        font-weight: bold;
}
.formData {
        clear: both;
        margin: 0;
        margin-bottom: 1em;
        padding: 2px;
		font-family: verdana,sans-serif;
		background-color:#F9F9F9;
        color: #242424;
        font-size: 13px;
}



/* - - - - - - - - - - - - FIELDS AND BUTTONS - - - - - - - - - - - - */


div#contentWrapper input[type="text"] {
    border: 1px solid #CCCCCC;
    border-radius: 2px 2px 2px 2px;
    box-shadow: 2px 2px 2px #F2F2F2 inset;
    font-size: 14px;
    height: 35px;
    margin-top: 5px;
    padding-left: 5px;
    text-align: left;
}
div#contentWrapper input[type="text"]:focus {
    background: none repeat scroll 0 0 #FFFFCC;
}
select {
    border: 1px solid #CCCCCC;
    border-radius: 2px 2px 2px 2px;
    box-shadow: 2px 2px 2px #F2F2F2 inset;
    font-size: 14px;
    height: 40px;
    margin-top: 5px;
    padding: 8px !important;
}
.butn_submit {
    background: none repeat scroll 0 0 #F2F2F2;
    border: 1px solid #CCCCCC;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 2px 2px 2px #000;
    color: #333333;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    padding: 10px;
}
.butn_submit:hover {
    background: none repeat scroll 0 0 #333;
    color: #FFFFFF;
    border: 1px solid #ccc;
}


