/* 
Recaptcha Style Captcha 
=======================
 re-Captcha Style Captcha with php and jQuery 
 
 Created By: Zeeshan Rasool 
 URL : http://www.99Points.info 
 
 Get JQuery, PHP, AJAX, Codeigniter and MYSQL Tutorials and Demos on Blog
 */
 
#captcha-wrap{
	width: 30%;
	-webkit-border-radius: 10px;
	float: left;
	-moz-border-radius: 10px;
	border-radius: 10px;
	text-align: left;
	height: auto;
	padding: 4px;
	background-color: #3AB5E5;
}
#captcha-wrap .captcha-box{
	-webkit-border-radius: 7px;
	background: #fff;
	-moz-border-radius: 7px;
	border-radius: 7px;
	text-align: center;
	border: solid #fff 1px;
	width: 99%;
}
#captcha-wrap .text-box{
	-webkit-border-radius: 7px;
	background: #ffdc73;
	-moz-border-radius: 7px;
	width: 79%;
	height: 70px;
	float: left;
	border-radius: 7px;
	text-align: center;
	border: solid #ffdc73 1px;
	overflow: hidden;
	margin-top: 4px;
}

#captcha-wrap .text-box input{
	width: 90%;
	height: 2em;
	float: left;
	line-height: 1.5em;
	padding: 0px;
	display: block;
	margin-right: 5%;
	margin-left: 5%;
	margin-top: 1%;
	margin-bottom: 0px;
	text-indent: 1em;
}
#captcha-wrap .text-box label{
	color: #000000;
	font-size: 0.85em;
	width: 100%;
	line-height: 1.9em;
	display: block;
	float: left;
	height: 1.5em;
}
#captcha-wrap .captcha-action{
	float: left;
	width: 20%;
	height: 55px;
	margin-top: 4px;
	text-align: center;
}
#captcha-wrap  img#captcha-refresh{
	margin-top:9px;
	border:solid #333333 1px;
	margin-right:6px;
	cursor:pointer;
}
