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

.form4 input, .form4 select, .form4 textarea
{
	display:inline-block;
	float:left;
	width:480px;
	margin-left:0px;
	margin-bottom:30px;
	font-size:12pt;
	color:black;
	border:1px solid #E7E7E7;
	border-radius:0px;
	background-color:white;
	height:40px;
	line-height:40px;
	text-indent:10px;
}
.form4 input.phone
{
	width:220px;
	
}
.form4 input.email
{
	width:220px;
	margin-right:40px;
}
.form4 input.last, .form4 select.last
{
	margin-left:0;
}
.form4 .canvas_holder
{
	display:inline-block;
	float:left;
	width:100px;
	margin-left:0px;
	margin-bottom:30px;
	border:1px solid #E7E7E7;
	border-left:0;
	border-radius:0px;
	background-color:white;
	height:40px;
	box-sizing: border-box;
}
.form4 .canvas_holder canvas {margin-top:5px;}
.form4 textarea
{
	margin-left:0;
	width:100%;
	height:115px;
	text-indent:0;
	padding:5px 10px;
	line-height:normal;
}
.form4 #captcha_image,
.form4 canvas
{
	float:left;
}
.form4 #captcha_input
{
	width:200px;
	float:left;
	border-right:0;
}
.form4 input[type=submit]
{
	float:left;
	margin-left:50px;
	font-size:12pt;
	color:black;
	font-weight:bold;
	padding:0;
	text-indent:0px;
	border:1px solid #CBAB84;
	border-radius:0px;
	width:130px;
	height:40px;
	background-color:white;
	text-align:center;
	margin-left:50px;
}
.form4 input[type=submit]:hover,
.form4 input[type=submit]:focus
{
	background-color:#CBAB84;
}
body.rtl .form4 input, 
body.rtl .form4 select, 
body.rtl .form4 textarea
{
	float:right;
}
body.rtl .form4 input.email
{
	margin-right:0px;
	margin-left:40px;
}
body.rtl .form4 .canvas_holder
{
	float:right;
	border:1px solid #E7E7E7;
	border-right:0;
}
body.rtl .form4 #captcha_image,
body.rtl .form4 canvas
{
	float:right;
}
body.rtl .form4 #captcha_input
{
	float:right;
	border:1px solid #E7E7E7;
	border-left:0;
}
body.rtl .form4 input[type=submit]
{
	float:right;
	margin-left:0px;
	margin-right:50px;
}