.tooltip { 
	border: 2px solid #F5E28C;
	background: #FCF7DF;
	width: 200px; 
	padding: 2px;
	text-align: center;
	color: #444;
}


/* Tip: rightTop */
.tooltip.rightTop:after, .tooltip.rightTop:before {
	border: solid transparent;
	content: ' ';
	height: 0;
	left: 100%;
	position: absolute;
	width: 0;
}

.tooltip.rightTop:after {
	border-width: 6px;
	border-left-color: #FCF7DF;
	top: 6px;
}

.tooltip.rightTop:before {
	border-width: 9px;
	border-left-color: #F5E28C;
	top: 3px;
}

/* Tip: rightCenter */
.tooltip.rightCenter:after, .tooltip.rightCenter:before {
	border: solid transparent;
	content: ' ';
	height: 0;
	left: 100%;
	position: absolute;
	width: 0;
}

.tooltip.rightCenter:after {
	border-width: 6px;
	border-left-color: #FCF7DF;
	top: 50%;
	margin-top: -10px;
}

.tooltip.rightCenter:before {
	border-width: 9px;
	border-left-color: #F5E28C;
	top: 50%;
	margin-top: -13px;
}

/* Tip: bottomLeft */
.tooltip.bottomLeft:after, .tooltip.bottomLeft:before {
	border: solid transparent;
	content: ' ';
	height: 0;
	top: 100%;
	position: absolute;
	width: 0;
}

.tooltip.bottomLeft:after {
	border-width: 6px;
	border-top-color: #FCF7DF;
	left: 6px;
}

.tooltip.bottomLeft:before {
	border-width: 9px;
	border-top-color: #F5E28C;
	left: 3px;
}

/* Tip: bottomCenter */
.tooltip.bottomCenter:after, .tooltip.bottomCenter:before {
	border: solid transparent;
	content: ' ';
	height: 0;
	top: 100%;
	position: absolute;
	width: 0;
}

.tooltip.bottomCenter:after {
	border-width: 6px;
	border-top-color: #FCF7DF;
	left: 50%;
	margin-left: -10px;
}

.tooltip.bottomCenter:before {
	border-width: 9px;
	border-top-color: #F5E28C;
	left: 50%;
	margin-left: -13px;
}
