/* Tool Tip CSS - Version 1.0 */

.tool_tip {
	position:absolute;
	left:0px; bottom:0px;
	z-index:-1;
	display:none;
	opacity:0;
}

.tool_tip_content {

	width:120px;
	display:block;
	
	font-size:11px;
	color:#ffffff;
	text-shadow:1px 1px 2px #3a6300;
	text-align:center;
	line-height:12px;
	
	padding:5px 10px 10px 10px;
	border:2px solid #c8fa00;
	
	background: #93c600; /* Old browsers */
	background: -moz-linear-gradient(top, #93c600 0%, #477803 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#93c600), color-stop(100%,#477803)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #93c600 0%,#477803 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #93c600 0%,#477803 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #93c600 0%,#477803 100%); /* IE10+ */
	background: linear-gradient(top, #93c600 0%,#477803 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#93c600', endColorstr='#477803',GradientType=0 ); /* IE6-9 */

	
	-khtml-border-radius:5px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	
	-khtml-box-shadow: 0 0 3px #265197;
	box-shadow: 0 0 3px #265197;
	-webkit-box-shadow: 0 0 3px #265197;
	-moz-box-shadow: 0 0 3px #265197;

}

.tool_tip_content a {
	color:#ffffff;
	text-decoration:none;
}

.tool_tip_arrow {
	position:absolute;
	top:0px; left:60px;
	border-color:transparent;
	border-style:solid;
	border-width:10px;
	height:0px;
	width:0px;
	border-top:solid 10px #c8fa00;
}