.tip-colour-options {
	z-index:1000;
	text-align:left;
	border:0px solid transparent;
	border-radius:4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	padding:6px 8px;
	min-width:20px;
	max-width:300px;
	color:#fff;
    -moz-box-shadow: 3px 3px 5px #888;
    -webkit-box-shadow: 3px 3px 5px #888;
    box-shadow: 3px 3px 3px #888;    
    background: #b21d5d; /* Old browsers */
    background: -moz-linear-gradient(top,  #f8418a 0%, #b21d5d 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8418a), color-stop(100%,#b21d5d)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f8418a 0%,#b21d5d 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f8418a 0%,#b21d5d 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f8418a 0%,#b21d5d 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f8418a 0%,#b21d5d 100%); /* W3C */
    /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8418a', endColorstr='#b21d5d',GradientType=0 ); /* IE6-9 */
    
    
	/**
	 * - 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-colour-options .tip-inner {
	font:bold 12px/16px arial,helvetica,sans-serif;
   
}

/* Configure an arrow image - the script will automatically position it on the correct side of the tip */
.tip-colour-options .tip-arrow-top {
	margin-top:-6px;
	margin-left:-5px; /* approx. half the width to center it */
	top:0;
	left:50%;
	width:9px;
	height:6px;
	background:url(../../images//poshytip/tip-colour-options-arrows.gif) no-repeat;
}
.tip-colour-options .tip-arrow-right {
	margin-top:-4px; /* approx. half the height to center it */
	margin-left:0;
	top:50%;
	left:100%;
	width:6px;
	height:9px;
	background:url(../../images//poshytip/tip-colour-options-arrows.gif) no-repeat -9px 0;
}
.tip-colour-options .tip-arrow-bottom {
	margin-top:0;
	margin-left:-5px; /* approx. half the width to center it */
	top:95%;
	left:50%;
	width:9px;
	height:6px;
	background:url(../../images//poshytip/tip-colour-options-arrows.gif) no-repeat -18px 0;
}
.tip-colour-options .tip-arrow-left {
	margin-top:-4px; /* approx. half the height to center it */
	margin-left:-6px;
	top:50%;
	left:0;
	width:6px;
	height:9px;
	background:url(../../images//poshytip/tip-colour-options-arrows.gif) no-repeat -27px 0;
}