.hidden {
	display: none!important;
}

.transparent {
	opacity: 0 !important;
}

.unscrollable {
	overflow: hidden !important;
}

.unselectable {
	/* For Opera and <= IE9, we need to add unselectable="on" attribute onto each element */
	/* Check this site for more details: http://help.dottoro.com/lhwdpnva.php */
	-moz-user-select: none; /* These user-select properties are inheritable, used to prevent text selection */
	-webkit-user-select: none;
	-ms-user-select: none; /* From IE10 only */
	user-select: none; /* Not valid CSS yet, as of July 2012 */
	-webkit-user-drag: none; /* Prevents dragging of images/divs etc */
	user-drag: none;
}

.easing {
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.cover {
/* 	background: url(images/bg.jpg) no-repeat center center fixed; */
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

/**
 * CLEARFIX
 */
.left {
	float: left;
}
.right {
	float: right;
}
.clearboth{
	clear:both;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */