/*****
Jisko: An open-source microblogging application
XHTML/CSS and images are Copyright (C) 2008 by Gabriel Longás <glongas@gmail.com>
and published under a CC license: http://creativecommons.org/licenses/by-sa/3.0/

Image icons (95%) owned by FamFamFam <http://www.famfamfam.com/lab/icons/silk/>

Source code was developed by Rubén Díaz, it's published 
under the Affero GPL License (http://jisko.net/COPYING) unless
stated otherwise in individual files.
*****/

/* REGISTER BUTTON */
.register_button {
	width:150px;
	height:33px;
	margin:0px 10px 10px 0px;
	margin:0 auto;
	padding-top:5px;
	font-family:Arial;
	font-size:22px;
	font-weight:bold;
	text-align:center;
	background:url(../../static/img/register.png);	
}
	.register_button a {
		color:#db8014;
	}
	.register_button a:hover {
		color:#dd8012;
	}
	
/* LOADING */
#loading {
	margin:0 0 0 0;
	padding:7px 7px 7px 7px;
	border:1px inset #7d923b;
	border:0px;
	top:0pt;
	right:0pt;
	background:#efffbf;
	/*background:url(../themes/transparency/img/web_bg.png);*/
	display:block;
	position:fixed;	
	font-size:10px;
	font-family:arial;
	font-weight:bold;
	color:#7d923b;
	display:none;
}
	
/* TOOLTIP (FROM MENÉAME) */
#tooltip-shadow {
	position:absolute;
	visibility:hidden;
	z-index:9999;
	margin:auto;
	padding:0;
	background:url(../../../static/img/shadow.png) no-repeat bottom right !important;
	background:url(../../../static/img/shadow.gif) no-repeat bottom right; 
}
 
#tooltip-text {
	background:#f0ffc3;
	text-align:left;
	position:absolute;
	visibility:hidden;
	margin:0;
	z-index:10000;
	border:1px solid #7d923b;
	padding:10px;
	font-size:90%;
	overflow:hidden;
	width:44em;
	max-height:45ex;
}
	.tooltip_bold {
		color:#7d923b;
		font-weight:bold;
		font-style:normal;
	}
	.tooltip_avatar {
		float:left;
		padding-right:5px;
	}
	
/* ADDITIONAL INFO */
.additional {
	font-style:italic;
	color:#808080;
}

/* ABBR (FOR TIMESTAMP) */
abbr {
	border-bottom:none;
	text-decoration:none;
	cursor:help;
}
