/* CSS needed for the script */

#flymsg{
	z-index:1000000;
	text-align:left;
	position: absolute;
	width: 300px;
	height: 130px;
	top: -1000px;
}
#flymsg div{
	position:relative;
}

/* If you don't want the arrow - Just set the width of this div to 1 or something like that and drop the background selectors from the CSS below */

#flymsg .ajax_tooltip_arrow{	/* Left div for the small arrow */
	background-image:url('../images/arrow.gif');
	width:20px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:60px;
}

#flymsg_content{
	border:0px solid #333;	/* Border width */
	left:0;	/* Same as border thickness */
	top:0px;
	position:absolute;
	width:100%;	/* Width of tooltip content */
	height:100px;	/* Height of tooltip content */
	background-color:#666;	/* Background color */
	color: white;
	padding:6px 18px;	/* Space between border and content */
	font-size:13px;	/* Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}

#closebar{
	width:100%;	/* Width of tooltip content */
	height:18px;	/* Height of tooltip content */
	background-color:#555;	/* Background color */
	color: white;
	padding:3px 18px;	/* Space between border and content */
	font-size:12px;	/* Font size of content */
	z-index:1000001;
	text-align: right;
	cursor: pointer;
}