/* form3 - form with place holder and no labels */

.form3 input, .form3 select, .form3 textarea
{
	display:block;
	width:100%;
	margin-bottom:20px;
	font-size:20pt;
	color:black;
	border:1px solid #D8C79C;
	border-radius:10px;
	background-color:white;
	height:40px;
	line-height:40px;
	text-indent:10px;
}
.form3 textarea
{
	height:115px;
	line-height:normal;
}

.form3 #captcha_image,
.form3 canvas 
{
	float:right;
}
.form3 #captcha_input 
{
	width:100px;
	float:right;
}

.form3 input[type=submit]
{
	font-size:20pt;
	color:white;
	
	padding:0;
	text-indent:0px;
	border-width:0px;
	border-radius:10px;
	width:100%;
	height:40px;
	background-color:#96181B;
	text-align:center;
}
.form3 input[type=submit]:hover,
.form3 input[type=submit]:focus
{
	background-color:black;
}


