.tip-ds {
	opacity: 1;
	z-index: 1000;
	text-align: left;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	padding: 8px 9px;
	max-width: 180px;
	color:#fff;
	background-color: #2d5c93;
	/**
	 * - If you set a background-image, border/padding/background-color will be ingnored.
	 *   You can set any padding to .tip-inner instead if you need.
	 * - If you want a tiled background-image and border/padding for the tip,
	 *   set the background-image to .tip-inner instead.
	 */
}
.tip-ds .tip-inner {
	font-size: 10px;
	font-weight: bold;
	line-height: 16px;
	text-transform: uppercase;
}

/* Configure an arrow image - the script will automatically position it on the correct side of the tip */
.tip-ds .tip-arrow-top {
	margin-top:-20px;
	margin-left:-10px; /* approx. half the width to center it */
	top:0;
	left:50%;
	width:21px;
	height:21px;
	background:url(../images/ui/tips/arrows_blue.png) no-repeat -42px 0;
}
.tip-ds .tip-arrow-right {
	margin-top:-10px; /* approx. half the height to center it */
	margin-left:0;
	top:50%;
	left:100%;
	width:21px;
	height:21px;
	background:url(../images/ui/tips/arrows_blue.png) no-repeat -21px 0;
}
.tip-ds .tip-arrow-bottom {
	margin-top:0;
	margin-left:-10px; /* approx. half the width to center it */
	top:100%;
	left:50%;
	width:21px;
	height:21px;
	background:url(../images/ui/tips/arrows_blue.png) no-repeat -63px 0;
}
.tip-ds .tip-arrow-left {
	margin-top:-10px; /* approx. half the height to center it */
	margin-left:-20px;
	top:50%;
	left:0;
	width:21px;
	height:21px;
	background:url(../images/ui/tips/arrows_blue.png) no-repeat;
}
