@charset "utf-8";
/* 	ChillTip V1.0 Style Sheet */
	
.title{
	background:#000;			/* Here you can change the background colour */
	border:2px solid #333;		/* Here you can change the border colour */
	display:none;
	font-family:Arial,"Helvetica",sans-serif;
	font-size:11px;				/* Here you can change the font size */
	height:auto;
	min-width:10px;
	max-width:145px;			/* Here you can change the width of ChillTip */
	position:absolute;
	width:auto;
	z-index:1001;
	}							
* html .title{					
	width:145px;				/* IE6 Hack - Min/Max-width does not work in IE6 so you have to assign a width. */
	}
.title p{						/* Here you can change the text colour */
	color:#fff;
	float:left;
	margin:0;
	padding:10px;	
/* 	text-align:justify;	 */
	width:auto;
	}
.title p span.blue{				/* This is to create coloured texted in chilltip. See Note below */
	color:#007eff;
	}
	
/* 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. */	