@charset "utf-8";
/*////////// Tool Tip CSS //////////*/

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

#tooltip {
	display:none;
	background:transparent url(../images/black_arrow.png);
	font-size:14px;
	height:70px;
	width:160px;
	padding:25px;
	color:#fff;	
	z-index: 10;
	font-weight:bold;
	/* fix position error*/
	left:700px !important;
}

/* style the trigger elements */
#tooltip-wrapper img {
	border:0;
	cursor:pointer;
	margin:0 8px;
}


