#tooltip {
	font-family: Ubuntu, sans-serif;
	font-size: 1.1em;
	text-align: center;
	line-height: 1.5;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	border-top: 1px solid #fff;
	position: absolute;
	z-index: 100;
	padding: 10px;
	left: 70%;
	display: none;
}

#tooltip:after {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	content: '';
	position: absolute;
	left: 50%;
	bottom: -30px;
	margin-left: -10px;
}

#tooltip.top:after {
	border-top-color: transparent;
	top: -20px;
	bottom: auto;
}

#tooltip.left:after {
	left: 10px;
	margin: 0;
}

#tooltip.right:after {
	right: 10px;
	left: auto;
	margin: 0;
}