/* Relative positioning*/
		#tech_wrapper {
			position: relative;
			margin: 20px auto 20px auto;
			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);
		}
		
		#tech_wrapper2 {
			position: relative;
			margin: 20px auto 20px auto;
			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;
		}
		
		.pin2 {
			display: none;
		}
		
		/* Begin styling the tooltips and pins */
		.tooltip-up, .tooltip-down {
			position: absolute;
			background: url(http://www.liquidforce.com/img/arrow-up-down.png);
			width: 36px;
			height: 45px;
		}
		
		.tooltip-down {
			background-position: 0 -45px;
		}
		
		.tooltip {
			display: none;
			width: 300px;
			text-shadow: 0 1px 0 #fff;
			position: absolute;
			top: 6px;
			left: 50%;
			z-index: 999;
			margin-left: -155px;
			padding: 6px;
			color: #222;
			-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: #ffffff;
			background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dfdfdf));
			background: -webkit-linear-gradient(top, #ffffff, #dfdfdf);
			background: -moz-linear-gradient(top, #ffffff, #dfdfdf);
			background: -ms-linear-gradient(top, #ffffff, #dfdfdf);
			background: -o-linear-gradient(top, #ffffff, #dfdfdf);
			background: linear-gradient(top, #ffffff, #dfdfdf);			
		}
		
		.tooltip::after {
			content: '';
			position: absolute;
			top: -10px;
			left: 50%;
			margin-left: -10px;
			border-bottom: 10px solid #fff1d3;
			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 #dfdfdf;
		}
		
		.tooltip h2 {
			font: 1.9em 'BebasNeueRegular', Tahoma, Arial;
			margin: 0 0 6px;
			color: #000;
		}
		
		.tooltip ul {
			margin: 0;
			padding: 0;
			list-style: none;
		}