/********************************************************************************
--- Tooltip CSS---
*********************************************************************************/
 /* Sample: <a class="tooltip" data-tooltip="Tooltip Text">Normal Text</a> */

 .tooltip {
	position: relative;
	text-decoration: none;
  }
  .tooltip:hover:after,
  .tooltip:hover:before {
	content: '';
	position: absolute;
	top: -10px;
	left: 25px;
	display: block;
  }
  
  .tooltip:hover:after {
	content: attr(data-tooltip);
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 3px;
	padding: 10px;
	color: #333333;
	width: 220px;
	z-index: 1000;
  }
  .tooltip:hover:before {
	content: '';
	border: 5px solid transparent;
	border-bottom-color: #ffffff;
	border-top: 0;
	margin-left: -5px;
	margin-top: -5px;
	z-index: 1001;
  }