@charset "utf-8";
/* 	ChillTip V1.0 Style Sheet */
	
.titlect{
	background-image: url('../graphics/chilltip-bg.gif');
			/* Here you can change the background colour */
	border:1px solid #ccc;
	display:none;
	font-family:Helvetica,"Arial",sans-serif;
	font-size:11px;
	height:auto;
	min-width:10px;
	width:360px;
	position:absolute;
	z-index:1001;
	padding-bottom: 20px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	
	-webkit-box-shadow: 3px 3px 5px #888;
	-moz-box-shadow: 3px 3px 5px #888;
	box-shadow: 3px 3px 5px #888;
}
							
* html .titlect{					
	width:360px;				/* IE6 Hack - Min/Max-width does not work in IE6 so you have to assign a width. */
}
	
.titlect p {						/* Here you can change the text colour */
	margin:0;
	text-align:justify;	
	width:330px;
	padding: 0px 15px 0px 15px;
}

.titlect h4 {
		background-image: url('../graphics/chilltip-bghead.gif');
		padding: 13px 10px 10px 15px;
}

.chillTip {
	color:#7F9BB5;
	text-decoration:none;
	border-bottom:1px dotted #7F9BB5;
	cursor:help;
}

	
/* IMPORTANT NOTE! 	To add a span and class to a title attribute you can not use the following:
title="<span class="blue">Blue Text</span>" as this can lead to errors in your webpage and failure to validate your html source code.  

Instead you must use html ascii codes http://www.ascii.cl/htmlcodes.htm to replace "</> inside the title attribute like so:
title="&#60;span class=&#34;blue&#34;&#62;Blue Text&#60;&#47;span&#62;" this will then lead to validation of your html source code.

To use special charcters in your chillTip use ascii html codes instead as this will validate your page with any W3C HTML Validator. */	