﻿/*-------------------------------------------------------------------------------*/
/*--    twf.css 2.0.0.1                                                          */
/*--    Copyright 2013 by Sition di Pistocchi Fabio. All Rights Reserved.        */
/*--                                                                             */
/*--    Last Modified: 06-09-2015                                                */
/*--    Web Site: www.sition.it                                                  */
/*--    E-Mail: info@sition.it                                                   */
/*--                                                                             */
/*--    The following copyright display settings should                          */
/*--    remain intact all the time if you are not a licensed                     */
/*--    userotherwise the use of twf.css 2.0.0.1 is illegal!!!                   */
/*-- ----------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.text_left, .text_right, .text_top, .text_bottom, .text_left_top, .text_left_bottom, .text_right_top, .text_right_bottom
{
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;

	cursor:default;
}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.text_left
{
	left:0; top:0; height:100%; padding:0 .5%;
}
.text_right
{
	right:0; top:0; height:100%; padding:0 .5%;
}
.text_top
{
	left:0; top:0; width:99%; padding:0 .5%;
}
.text_bottom
{
	left:0; bottom:0; width:99%; padding:0 .5%;
}
.text_left_top
{
	left:0; top:5%; padding:0 .5%;
}
.text_left_bottom
{
	left:0; bottom:5%; padding:0 .5%;
}
.text_right_top
{
	right:0; top:5%; padding:0 .5%;
}
.text_right_bottom
{
	right:0; bottom:5%; padding:0 .5%;
}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@-webkit-keyframes kfm_twf_fade_out
{
	100%
	{
		opacity:0;
	}
}
@keyframes kfm_twf_fade_out
{
	100%
	{
		opacity:0;
	}
}

.twf_fade_out
{
	-webkit-perspective:1000px;
	perspective:1000px;

	-webkit-animation-name:kfm_twf_fade_out;
	-webkit-animation-fill-mode:forwards;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-iteration-count:1;
	-webkit-animation-direction:normal;
	-webkit-animation-duration:3s;

	animation-name:kfm_twf_fade_out;
	animation-fill-mode:forwards;
	animation-timing-function:ease-in-out;
	animation-iteration-count:1;
	animation-direction:normal;
	animation-duration:3s;
}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/