/** * Core Design Captcha plugin for Joomla! 1.5 * @author		Daniel Rataj, <info@greatjoomla.com> * @package		Joomla  * @subpackage	System * @category	Plugin * @version		1.0.2 * @copyright	Copyright (C) 2007 - 2010 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/>. *//* No JavaScript support message */.cdcaptcha_nojavascript {	border: 2px solid red;	font-weight: bold;	margin: 10px auto;	padding: 5px;	text-align: center;	width: 80%;}/* Capcha container */#cdcaptcha {	width: 250px;	margin: 10px 0;	clear: both;}/* Powered by */#cdcaptcha .poweredby {	text-align: right;	font-size: 80%;	font-style: italic;	/* display: none; */}/* General styling */#cdcaptcha div {	margin: 0;	padding: 0;}/* Cleaner */#cdcaptcha .cleaner {	visibility: hidden;	height: 1px;	margin: -1px;	clear: both;}/* Header - label */#cdcaptcha .captcha_header {	font-weight: bold;	margin: 0 0 5px 0;}/* Infotext */#cdcaptcha .infotext {	font-style: italic;	margin: 0 0 5px 0;}/* Captcha content */#cdcaptcha .cdcaptcha_content {	padding: 5px 8px 0 8px;	text-align: left;}/* Slider */#cdcaptcha .slider {	margin: 10px 15px;}/* Status */#cdcaptcha .status {	margin: 5px 0 10px 0;	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;}