/** function */
.fn_noSelect{ 
   -moz-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   -khtml-user-select: none;
   user-select: none;
 }
 
/** animate */
.an_ts1,.an_tsFast{
	transition: all .1s;
	-webkit-transition: all .1s;
	-moz-transition: all .1s;
	-ms-transition: all .1s;
	-o-transition: all .1s;
 }
.an_ts2,.an_tsNormal{
	transition: all .2s;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;
 }
.an_ts45,.an_tsSlow{
	transition: all .45s;
	-webkit-transition: all .45ss;
	-moz-transition: all .45ss;
	-ms-transition: all .45ss;
	-o-transition: all .45ss;
 }

/* transform */
.tf_scale105:hover{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.tf_scale115:hover{
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
}
 
 