@CHARSET "UTF-8";

.tooltip_bubble {
	display: none;
/*
	background: transparent url("/js/jqueryui/tools/tooltip/white_arrow.png");
	height: 70px;
	width: 160px;
*/
	font-size: 12px;
	padding: 10px;
	color: black;
	z-index: 1000;
	background: #f0f0f0;
	border: 2px solid white;
	border-radius: 5px;	
	background-image: -webkit-gradient(
    	linear,
    	left bottom,
    	left top,
    	color-stop(0.15, rgb(212,212,212)),
    	color-stop(0.58, rgb(255,255,255))
	);
	background-image: -moz-linear-gradient(
    	center bottom,
    	rgb(212,212,212) 15%,
    	rgb(255,255,255) 58%
	);
	-moz-box-shadow: 0px 0px 6px #000;
	-webkit-box-shadow: 0px 0px 6px #000;
	box-shadow: 0px 0px 6px #000;
}