/*
 * Tooltip.js styles
 */

.cursor {
	cursor:default;
}
#tooltip {z-index:10000;
width:200px;
	position:absolute;
	background:#666666;
	color:#ffffff;
	padding:8px;font-size:1.4rem;
}
 .tipp {	position: relative;	}
 .tipp span {
  display: none;
  font: 11px arial,helvetica,sans-serif;
  color: #000000;
  } 
 .tipp:hover {  background-color: transparent;  }
 .tipp:hover span {
	width: 130px;
 	position: absolute;
	top: -30px;
	left: 0px;
	display: block;
	background: #FFF;
	border: 1px solid #eee;
	text-decoration: none;
	padding: 3px;
	opacity: 1.0;
	text-wrap:nowrap;
	filter: alpha(opacity=100);
  }