		
		/* Relative positioning*/
		#wrapper {
	position: relative;
	z-index:9999;
	right:0px;
	top:-1px;
	background-color: #F4F5F6;
		}
		
		/* Hide the original tooltips contents */
		.pin {
			display: none;
		}
		
		/* Begin styling the tooltips and pins */
		.tooltip-up, .tooltip-down {
			position: absolute;
			background:url(../images/Pointer.png);
			width:11px;
			height:15px;
		}
		
		.tooltip-down {
			background-position: 0 -15px;
		}
		
		.tooltip {
			display: none;
			text-align:center;
			width:110px;
			font-size:22px; letter-spacing:1px;
			cursor:help; font-family: 'Medula One', cursive;
			text-shadow: 0 1px 0 #fff;
			position: absolute;
			top: 7px;
			left: 50%;
			z-index: 999;
			margin-left: -65px;
			padding:5px 10px;
			color: #009CFF;
			-moz-border-radius: 5px;
			-webkit-border-radius: 5px;
			border-radius: 5px;
			background: #fff;
			background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd));
			background: -webkit-linear-gradient(top, #fff, #ddd);
			background: -moz-linear-gradient(top, #fff, #ddd);
			background: -ms-linear-gradient(top, #fff, #ddd);
			background: -o-linear-gradient(top, #fff, #ddd);
			background: linear-gradient(top, #fff, #ddd);			
		}
		
		.tooltip::after {
			content: '';
			position: absolute;
			top: -7px;
			left: 50%;
			margin-left: -7px;
			border-bottom: 7px solid #fff;
			border-left: 7px solid transparent;
			border-right :7px solid transparent;
		}
		
		.tooltip-down .tooltip {
			bottom: 9px;
			top: auto;
		}
		
		.tooltip-down .tooltip::after {
			bottom: -7px;
			top: auto;
			border-bottom: 0;
			border-top: 7px solid #ddd;
		}
		
		.tooltip h2 {
			font: bold 1.3em 'Trebuchet MS', Tahoma, Arial;
			margin: 0 0 10px; padding:0;
		}
		
		.tooltip ul {
			margin: 0;
			padding: 0;
			list-style: none;
		}
		.tooltip a {color: #009CFF;	}	
		
		
		
		
