/**
 * Core Design Favorite Pages module for Joomla! 1.5
 * @author		Daniel Rataj, <info@greatjoomla.com>
 * @package		Joomla 
 * @subpackage	Content
 * @category	Module
 * @version		1.1.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/>.
 */

 /* Tooltip element */
.coreTipLink {
	cursor: pointer;
	display: inline-block;
}

/* Tooltip container */
.coreTip {
	width: 220px;
	display: none;
	position: absolute;
	z-index: 1000;
}

/* Bottom image - notch */
.coreTip .bottom span {
	height: 7px;
	width: 14px;
	margin: 0 auto;
	display: block;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-color: transparent;
}

/* Tooltip content */
.coreTip .content {
	padding: 5px 1px 16px 5px;
	position: relative;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background-position: 0 0;
	background-repeat: repeat-x;
	background-attachment: scroll;
	background-color: transparent;
}

/* Sticky */
.coreTip .sticky {
	width: 16px;
	height: 16px;
	background: transparent url(../images/sticky.png) 0 0 no-repeat scroll;
	cursor: pointer;
	position: absolute;
	right: 0;
}
.coreTip .sticky:hover {
	background-position: 0 -16px;
}

/* light */
.coreTip .light .bottom span {
	background-image: url(../images/theme/light/notch.png);
}
.coreTip .light .content {
	border: 6px solid #e2e2e2;
	background-color: #ffffff;
	color: #020202;
	background-image: url(../images/theme/light/bg.png)
}

/* Tooltip icon */
.coreTip .content .tooltip_icon {
	background: url(../images/icons_sprite.png);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-color: transparent;
	display: block;
	width: 16px;
	height: 16px;
	float: left;
	margin-right: 5px;
}

/* Tooltips - sprite */
.coreTip .content .tooltip_icon_information { background-position: 0px -8749px; }