/*
 * User friendly captcha
 * @author itziky
 */
 
.captcha {
	padding: 3px 0 17px;
}

.captcha-panel {
	margin-top: 3px;
	padding: 6px;
	background-color: white;
	border: 2px solid #f0f0f0;

	/* rounded corners */
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	/* for IE9 */
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.captcha-panel .instruction {
	margin: 5px 0;
	height: 15px; /* allocate height, until instruction appears */
	font-size: 12px;
}

.captcha-panel .instruction em {
	font-weight: bold;
	color: #3b382f;
}

.captcha-panel .items {
	float: left;
}

.captcha-panel .items img {
	width: 30px;
	height: auto;
}

.captcha-panel .drop {
	float: right;
    height: 60px;
    width: 60px;
	background: url("/resources/images/captcha/circle.png") no-repeat;
}

.captcha .error {
	position: absolute;
	margin: 3px 0 0 2px;
	font-size: 11px;
}