/* CSS Document */

/***** tooltips pop up ******/

a {position: relative;}
 
a span {
	display: none;
	font-size: 0.9em;
}

a:hover {font-size: 100%;} /* IE/Win requires some link change on hover in order to show the tooltips */

html body a:hover span { /*the span will display just on :hover state*/
	display: block !important;
	position: absolute;
	top: -25px;
	left: 40px;
	width: 400px;
	border: 1px solid #333;
	background-color: #eee;
	color: #000;
	padding: 10px;
	font-size: .8em;
	text-decoration:none;
	text-align:left;
	z-index: 10;
	
}

/***** tooltips pop up END******/

