/* 

------------------------------------
This CSS is only for SCREEN display
------------------------------------
-------------------------------------------------------------------------------------------------
This CSS is dedicated to tooltip Jquery functionnalities. See tooltip.js for details and licence.
-------------------------------------------------------------------------------------------------
Effect : Displaying an improved graphic tooltip wich follow the mouse cursor. Used as notification helper.
------------------------------------------------------------------
If needed, this CSS contains easy-searchable "ToDo" . Just search for "@todo"
------------------------------------------------------------------


 * @package Css
 * @author Jean Lalande, Nicolas Hamelin
 * @copyright Twisto, a Trademark of RoseGrenouille Inc.
 */




#tooltip {
position: absolute;
z-index: 3000;
opacity: 0.85;
border: 1px solid #CCC;
padding: 10px;
padding-left:40px;
font-size:11px;
width:auto;
color:#000;
}

#tooltip h3, #tooltip div { 
margin: 0;
font-size: 100%;
font-weight: normal;
color:#333;
text-decoration:none;
}

.alert{
background: url(/public/images/design/tooltip/alert.gif) left center no-repeat white;
}

.info{
background: url(/public/images/design/tooltip/info.gif) left center no-repeat white;
}

.error{
background: url(/public/images/design/tooltip/error.gif) left center no-repeat white;
}
.success{
background: url(/public/images/design/tooltip/success.gif) left center no-repeat white;
}

.zoom{
background: url(/public/images/design/tooltip/zoom.gif) left center no-repeat white;
}

.alert_tooltip{
background: url(/public/images/design/tooltip/alert_icon.gif) right center no-repeat;
padding-right:24px;
line-height: 18px;
margin-bottom: 10px;
cursor:help;
}

.success_tooltip{
background: url(/public/images/design/tooltip/success_icon.gif) right center no-repeat;
padding-right:24px;
line-height: 18px;
margin-bottom: 10px;
cursor:help;

}

.info_tooltip{
background: url(/public/images/design/tooltip/info_icon.gif) right center no-repeat;
padding-right:24px;
line-height: 18px;
margin-bottom: 10px;
cursor:help;
}

.error_tooltip{
background: url(/public/images/design/tooltip/error_icon.gif) right center no-repeat;
padding-right:24px;
line-height: 18px;
margin-bottom: 10px;
cursor:help;
}



