/* contact form on contact page*/

#ctform {
  text-align: left;
  margin-top: 5px;
}

#ctbutton {
  margin-top: 10px;
  margin-left: 100px;
  margin-bottom: 10px;
}

#ctform p{
 margin: 20px 0 5px 10px;
 padding: 2px 0 5px 0;
 padding-left: 90px; /*width of left column containing the label elements*/
}

#ctform label{
 font-size: 10pt;
 font-weight: 600;
 color: #009393;
 float: left;
 margin-left: -90px; /*width of left column*/
 width: 90px; /*width of labels. Should be smaller than left column (90px) to create some right margin*/
}

#ctform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
 width: 170px;
}

#ctform input {
 color: #009393;
 font-weight: 600;
 background: #f5f5f5;
 font: normal small arial, helvetica, sans-serif;
}

#ctform fieldset {
 border: none;
}

#ctform legend {
 display: none;
}

#ctform textarea {
 width: 350px;
 height: 200px;
 border: 1px solid #009393;
 background: #f5f5f5; 
 font: normal 9pt arial, helvetica, sans-serif;
 color: #009393;
 font-weight: 600;
}

#ctform .button {
 width: 65px;
 height: 20px;
 padding: 0 0 0 0;
 font: normal x-small Verdana, Arial, Helvetica, sans-serif;
 background: #f5f5f5;
 color: #009393;
 font-weight: 900;
}

#ctform select {
 color: #000;
 background: #f5f5f5;
}

#contact {
  color: red;
  list-style-type: none;
  margin-left: 4px;
}

/* Form Success Page Formatting */

.success td {
border: none;
color: #009393;
padding: 2px 2px 2px 1px;
}



