/* --------------------------------------------- */
/* Author: http://codecanyon.net/user/CodingJack */
/* --------------------------------------------- */

/* Gets applied to the main txt_fx wrapper */
.cj-fx {
	position: relative;
	white-space: nowrap;
	display: block;/*display : inline-block;*/
	
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
	
}

/* Gets applied to each individual effect container */
.cj-fx-text {

	position: absolute;
	top: 0;
	left: 0;

	visibility: hidden;

	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
	
}

/* prevents other content on the page from jumping when the page first loads */
.cj-fx .cj-fx-text:first-child {

	position: inherit;
	
}

/* Gets applied to each letter or word */
.cj-fx-text span {

	position: absolute;
	
}

/* Gets applied to hyperlinked effects */
.cj-fx-text-link {

	cursor: pointer;
	display: inline-block;
	margin-bottom: -4px;
	
}
