.featureTour {
	float:left;
	width:100%;
	margin:0px 0 40px 0;
	/*position: relative;*/
}

	.featureTour .screenshot {
		float:left;
		width:780px;

		margin:20px 0 20px 100px;
		
		-webkit-animation: ease-in labelAppearance 0.4s;
	}

	.featureTour .labels {
		float:left;
		width:100%;
		height:0px;
		position: relative;

		-webkit-font-smoothing:subpixel-antialiased;
		-webkit-animation: ease-in labelAppearance 3s;
		
	}

		@keyframes labelAppearance {
			from {
				opacity:0;
			}
			to {
				opacity:1;
			}
		}
		@-moz-keyframes labelAppearance {
			from {opacity:0}
			to {opacity:1}
		}
		@-webkit-keyframes labelAppearance {
			from {
				opacity:0;
			}
			to {
				opacity:1;
			}
		}

	.featureTour .labels .label {
		position: absolute;
		padding:5px 10px 5px 10px;
		background:rgba(0,0,0,0.7);
		color:#ddd;
		text-shadow:0 -1px 0 #000;
		border-radius:2px;
		font-size:14px;
		line-height:18px;
		width:150px;
	}

	.featureTour .labels .label b {
		color:#fff;
		font-size:16px;
		font-weight: normal;
	}

	.featureTour .labels .label .arrow {
		position: absolute;
		top:10px;
		right:-8px;
		width: 0; 
		height: 0; 
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
		border-left: 8px solid rgba(0,0,0,0.7);
		border-right:0px;
	}

		.featureTour .labels .label .arrow.left {
			left:-8px;
			border-top: 8px solid transparent;
			border-bottom: 8px solid transparent;
			border-left:0px;
			border-right: 8px solid rgba(0,0,0,0.7);
		}

		.featureTour .labels .label .arrow.down {
			left:75px;
			top:auto;
			bottom:-8px;

			border-top: 8px solid rgba(0,0,0,0.7);
			border-bottom: 0px;
			border-left:8px solid transparent;
			border-right: 8px solid transparent;
		}

		.featureTour .labels .label .arrow.up {
			left:75px;
			top:auto;
			top:-8px;

			border-top: 0px;
			border-bottom: 8px solid rgba(0,0,0,0.7);
			border-left:8px solid transparent;
			border-right: 8px solid transparent;
		}