@charset "utf-8";
/* CSS Document */

/* ------------ contact specific content ------------ */

.main .contact-content {
	font-family: Verdana, Arial, Helvetica, serif;
	font-size: 10pt;
	color: #fff;				/* White text */
	background-color:#002060;	/* Blue */
	align: center;
	min-height:300px;
	padding-top:30px
}

.main .contact-content table {
	font-family: Verdana, Arial, Helvetica, serif;
	font-size: 11pt;
	color: #fff;				/* White text */

}

.main .contact-content table a {
	color:#C0C0C0; /* Light Grey Text */

}

.main .contact-content table img {
	float:right;
	padding-right: 20px
}

.main .contact-content p{
	text-align: left;
}

#inputform1 {
  box-sizing: content-box;  
  width: 400px;
  height:auto;
  padding: 2px;
  padding-left: 20px;
  border: 1px solid;
  border-color:#666;
  font-family:"Times New Roman", Times, serif; font-size:16px; color:#000;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #4CAF50;	/* Submit Button Medium Green Background */
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #146A18;	/* Submit Button Hover Dark Green Background */
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;	/* Light Grey Background */
  padding: 20px;
  color:#404040;				/* Dark Grey Text */
}


