@charset "UTF-8";
/* CSS Document */

	
		
		/* Relative positioning*/
		#wrapper {
			position: relative;
			margin: 50px auto 100px;
			border: 1px solid #fafafa;
		/*	-moz-box-shadow: 0 3px 3px rgba(0,0,0,.5);
			-webkit-box-shadow: 0 3px 3px rgba(0,0,0,.5);
			box-shadow: 0 3px 3px rgba(0,0,0,.5);*/
		}
		
		/* Hide the original tooltips contents */
		.pin {
			display: none;
		}
		
		/* Begin styling the tooltips and pins */
		.tooltip-up, .tooltip-down {
			position: absolute;
			background: url(../../img/arrow-up-down.png);
			width: 61px;
			height: 30px;
		}
		
		.tooltip-left {
			
			background: url(../../img/arrow-left.png);
			width: 47px;
			height: 34px;
		}
		
		.tooltip-down {
			background-position: 0 -39px;
		}
		
		.tooltip-up {
			background-position: 0 -9px;
		}
		
		.tooltip {
			display: none;
			width: 200px;
			cursor:default;
			/*text-shadow: 0 1px 0 #fff;*/
			position: absolute;
			top: 10px;
			left: 50%;
			z-index: 999;
			margin-left: -115px;
			padding:15px;
			color: #fff;
			-moz-border-radius: 5px;
			-webkit-border-radius: 5px;
			border-radius: 5px;
			-moz-box-shadow: 0 3px 0 rgba(0,0,0,.7);
			-webkit-box-shadow: 0 3px 0 rgba(0,0,0,.7);
			box-shadow: 0 3px 0 rgba(0,0,0,.7);
			background: #6d6d6d;
			background: -webkit-gradient(linear, left top, left bottom, from(#6d6d6d), to(#000));
			background: -webkit-linear-gradient(top, #6d6d6d, #000);
			background: -moz-linear-gradient(top, #6d6d6d, #000);
			background: -ms-linear-gradient(top, #6d6d6d, #000);
			background: -o-linear-gradient(top, #6d6d6d, #000);
			background: linear-gradient(top, #6d6d6d, #000);	
			opacity: 0.8;		
		}
		
		.tooltip ul li a, .tooltip ul li a:link, .tooltip ul li a:visited{
		color:#fff;	
		text-decoration:none;
			}
			
		.tooltip::after {
			content: '';
			position: absolute;
			top: -10px;
			left: 50%;
			margin-left: -10px;
			border-bottom: 10px solid #6d6d6d;
			border-left: 10px solid transparent;
			border-right :10px solid transparent;
		}
		
		.tooltip-down .tooltip {
			bottom: 12px;
			top: auto;
		}
		
		.tooltip-down .tooltip::after {
			bottom: -10px;
			top: auto;
			border-bottom: 0;
			border-top: 10px solid #000;
		}
		
		.tooltip h2 {
			font: bold 1.3em Arial, Helvetica, Sans-Serif;
			margin: 0 0 10px;
			color:#fff;
		}
		
		.tooltip ul {
			margin: 0;
			padding: 0;
			list-style: none;
		}
		
				.tooltip ul li {
			margin: 0;
			padding: 0;
			list-style: none;
		}