/*!
* qTip2 - Pretty powerful tooltips
* http://craigsworks.com/projects/qtip2/
*
* Version: nightly
* Copyright 2009-2010 Craig Michael Thompson - http://craigsworks.com
*
* Dual licensed under MIT or GPLv2 licenses
*   http://en.wikipedia.org/wiki/MIT_License
*   http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Sun Jul 15 16:44:57.0000000000 2012
*/

/* Core qTip styles */
.ui-tooltip, .qtip{
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;

	max-width: 150px;
	min-width: 50px;
	
	font-size: 0.9em !important;
	line-height: 1.1em;;

	border-width: 1px;
	border-style: solid;
    text-align:center;
}

	.ui-tooltip-content{
		position: relative;
		padding: 5px 9px 10px 9px;
		overflow: hidden;

		text-align: center;
		word-wrap: break-word;
		overflow: hidden;
	}



/*! Default tooltip style */
.ui-tooltip-default{
	border-color: #8dc63f;
	color: #fff;
    text-align:center;
}


/* Tips plugin */
.ui-tooltip .ui-tooltip-tip{
	margin: 0 auto;
	overflow: hidden;
	z-index: 10;
}

	.ui-tooltip .ui-tooltip-tip,
	.ui-tooltip .ui-tooltip-tip *{
		position: absolute;
		
		line-height: 0.1px !important;
		font-size: 0.1px !important;
		color: #123456;

		background: #598521;
		border: 0px dashed transparent;
	}
    
    .ui-tooltip-rounded2 .ui-tooltip-tip,
    .ui-tooltip-rounded2 .ui-tooltip-tip *{
        position: absolute;
        
        line-height: 0.1px !important;
        font-size: 0.1px !important;
        color: #7f7f7f;

        background: #7f7f7f;
        border: 0px dashed transparent;
    }    
	
	.ui-tooltip .ui-tooltip-tip canvas{ top: 0; left: 0; }

a.trigger{width:16px; height:26px; background:url(../images/help-icon.png) left 50% no-repeat; float:left; cursor:default; text-indent:-9999em;}



/*! Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.ui-tooltip-rounded{
    background:#598521;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#8dc63f), to(#598521));
    background: -webkit-linear-gradient(top, #8dc63f, #598521);
    background: -moz-linear-gradient(top, #8dc63f, #598521);
    background: -o-linear-gradient(top, #8dc63f, #598521);
    background: -ms-linear-gradient(top, #8dc63f, #598521);
    background: linear-gradient(top, #8dc63f, #598521);
    -webkit-border-radius: 5px ;
    -moz-border-radius: 5px;
    border-radius: 5px; 
    text-align:center;
    behavior: url(/fileadmin/site/css/PIE.htc);
}   

.ui-tooltip-rounded2{
    padding:0px !important;
    line-height:1em !important;
    font-size:0.9em !important;
    opacity:0.9 !important;
    background:#7f7f7f;
    -webkit-border-radius: 5px ;
    -moz-border-radius: 5px;
    border-radius: 5px; 
    text-align:center;
    behavior: url(/fileadmin/site/css/PIE.htc);
}  
   


/* IE9 fix - removes all filters */
.ui-tooltip:not(.ie9haxors) div.ui-tooltip-content,
.ui-tooltip:not(.ie9haxors) div.ui-tooltip-titlebar{
	filter: none;
	-ms-filter: none;
}

