/* GENERAL STYLES */
/* 
	ToolTip CSS Classes

	These classes will need to be set up on Umbraco
*/

a.highlifeTooltip
{
	text-decoration: none !important;
	position: relative;
}

.highlifeTooltip span
{
	background-color: #ffc;
	border: 1px solid gray;
	color: #000;
	display: none;
	margin-top: 10px;
	padding: 5px;
	text-align: left;
	text-decoration: none;
	width: 220px;
	z-index: 1001;
	font-weight:normal;
}

a.highlifeTooltip:hover span
{
	display: block;
	position: absolute;
	z-index: 1001;
}

a.Right:hover span
{
	right: 0;
}

a.Left:hover span
{
	left: 0;
}

/* EDITOR PROPERTIES */
