/**
 * Core Design Captcha plugin for Joomla! 2.5
 * @author		Daniel Rataj, <info@greatjoomla.com>
 * @package		Joomla 
 * @subpackage	System
 * @category	Plugin
 * @version		2.5.x.2.0.7
 * @copyright	Copyright (C) 2007 - 2012 Great Joomla!, http://www.greatjoomla.com
 * @license		http://www.gnu.org/copyleft/gpl.html GNU/GPL 3
 * 
 * This file is part of Great Joomla! extension.   
 * This extension is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This extension is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

/* Captcha container */
#cdcaptcha {
	width: 250px;
	margin: 10px 0;
	clear: both;
}

/* General styling, resets */
#cdcaptcha div {
	margin: 0 !important;
	padding: 0  !important;
}

/* Powered by */
#cdcaptcha .poweredby {
	text-align: right;
	font-size: 80%;
	font-style: italic;
	/* display: none; */
}

/* Cleaner */
#cdcaptcha .cleaner {
	visibility: hidden;
	height: 1px;
	margin: -1px;
	clear: both;
}

/* Header - label */
#cdcaptcha .captcha_header {
	font-weight: bold;
	margin: 0 0 5px 0 !important;
}

/* Infotext */
#cdcaptcha .infotext {
	font-style: italic;
	margin: 0 0 5px 0 !important;
}

/* Captcha content */
#cdcaptcha .cdcaptcha_content {
	padding: 5px 8px 0 8px !important;
	text-align: left;
}

/* Slider */
#cdcaptcha .slider {
	margin: 10px 15px !important;
}

/* Status */
#cdcaptcha .status {
	margin: 5px 0 10px 0 !important;
	color: gray;
	font-size: 90%;
}
#cdcaptcha .status .active {
	font-weight: bold;
	color: black;
}

#cdcaptcha .status .status_locked, #cdcaptcha .status .status_unlocked {
	width: 50%;
}

#cdcaptcha .status .status_locked {
	float: left;
	text-align: left;
}
#cdcaptcha .status .status_unlocked {
	float: right;
	text-align: right;
}

#cdcaptcha .status .status_locked span, #cdcaptcha .status .status_unlocked span {
	background-image: url('../images/icon_lock.png');
	background-color: transparent;
	display: block;
	width: 16px;
	height: 16px;
}

#cdcaptcha .status .status_locked span {
	float: left;
	margin-right: 5px;
}
#cdcaptcha .status .status_unlocked span {
	float: right;
	margin-left: 5px;
}


#cdcaptcha .status .status_locked span.icon_active {
	background-position: 0 0;
}
#cdcaptcha .status .status_locked span.icon_inactive {
	background-position: 0 -16px;
}

#cdcaptcha .status .status_unlocked span.icon_active {
	background-position: 0 -32px;
}
#cdcaptcha .status .status_unlocked span.icon_inactive {
	background-position: 0 -48px;
}