/* CSS Document Contact Form*/

input[type=text], textarea {  
    padding: 8px;  
    border: solid 1px #E5E5E5;  
    outline: 0;  
    font: normal 12px/100% Verdana, Tahoma, sans-serif;  
    width: 200px;  
    background: #FFFFFF url('images/bg-form.png') left top repeat-x;  
    background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));  
    background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);  
    box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;  
    -moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;  
    -webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;  
    }  
  

textarea {  
    width: 400px;  
    max-width: 400px;  
    height: 150px;  
    line-height: 150%;  
    }  
  
input:hover, textarea:hover,  
input:focus, textarea:focus {  
    border-color: #C9C9C9;  
    -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;  
    }  

  
.form label, .checkbox{  
    width: 4em;
    float: left;
    text-align: right;
    margin-right: 0.5em;
    /*display: block;*/
    color: #333;  
    }  
	
td.checkLabel {
	font-size: 0.75em;
	color: #333;
	}
  
.submit input {  
    width: auto;  
    padding: 9px 15px;  
    background: #617798;  
    border: 0;  
    font-size: 14px;  
    color: #FFFFFF;  
    -moz-border-radius: 5px;  
    -webkit-border-radius: 5px;  
	cursor:pointer;
	margin-top: 10px;
    }  
.comments, .interests {
   float: left;
   margin-top: 25px;
}

p.label_checkbox_pair {

  clear: both;
  float: none;
  position: relative;

}

p.label_checkbox_pair input{

  left: 50px;
  position: absolute;
  top: 1px;
  margin-top:10px;

}

p.label_checkbox_pair label {

  display: block;
  text-align: left;
  margin-left: 90px;
  width: 200px;
  margin-top:10px;

}