/*--------------Tooltips CSS----------------*/

.colorTip{
	/* This class is assigned to the color tip span by jQuery */
	
	display:none;
	position:absolute;	
	left:50%;
	top:-76px !important;
	*top:-38px !important;
	padding:6px;
	
	background-color:white;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:12px !important;
	font-style:normal;
	line-height:14px;
	text-decoration:none;
	text-align:center;
	text-shadow:0 0 1px white;
	white-space:nowrap;
	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}

.pointyTip,.pointyTipShadow{
	/* Setting a thick transparent border on a 0x0 div to create a triangle */
	border:6px solid transparent;
	bottom:-12px;
	height:0;
	left:50%;
	margin-left:-6px;
	position:absolute;
	width:0;
}

.pointyTipShadow{
	/* The shadow tip is 1px larger, so it acts as a border to the tip */
	border-width:7px;
	bottom:-14px;
	margin-left:-7px;
}

.colorTipContainer{
	position:relative;
	text-decoration:none !important;
}

.black .pointyTip{ border-top-color:#151228;}
.black .pointyTipShadow{ border-top-color:#151228;}
.black .colorTip{
	background-color:#151228;
	border:1px solid #151228;
	color:#fff;
}