/* CSS for forms */

.content input {
	background: #EAF2F9;
	border: 1px solid #ccc;
}
.content textarea {
	background: #EAF2F9;
	border: 1px solid #ccc;
}
.content select {
	background: #EAF2F9;
	border: 1px solid #ccc;
}
.content .button {
	padding: 5px 15px;
	background: #224799;
	color: #fff;
	border: 1px solid #000;
	font-size: 1.1em;
	font-weight: bold;
}
.content .button:hover {
	background: #000;
	color: #fff;
}

table.formtable {
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}
table.formtable td {
  padding: 5px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
}
table.formtable th {
  padding: 5px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: bottom;
	background: #eee;
}
td.fieldlabel {
	font-weight: bold;
  text-align: right; 
}
table.formtable input {
	background: #EAF2F9;
	border: 1px solid #ccc;
}
table.formtable textarea {
	background: #EAF2F9;
	border: 1px solid #ccc;
}
table.formtable select {
	background: #EAF2F9;
	border: 1px solid #ccc;
}
table.formtable .button {
	background: #224799;
	color: #fff;
	border: 1px solid #666;
	font-weight: bold;
}


