@charset "UTF-8";
/* CSS Document */

/* ========================
 * Project-ORK Basic CSS
 * ========================
 */

/*
 * general css
 * 
 * The first CSS you'll definitely use when creating a website
 * [Clear Fix, Content Vertical Centering, Image Vertical Centering, Float]
 * Define CSS properties for the above items
 */

/* ------------------------
 * clearfix
 * ------------------------ */
/* clearfix */
.clearfix:after{
	content: " ";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix{display: inline-block;}

/* Hide MacIE \*/
* html .clearfix{height: 1%}
.clearfix{display: block;}
/* End hide MacIE */

/* ------------------------
 * content vertical center class
 * ------------------------ */
.cvc > * {
	display: inline-block;
	width: 100%;
	vertical-align: middle;
}

.cvc:before {
	display: inline-block;
	width: 0px;
	height: 100%;
	vertical-align: middle;
	content: "";
}

/* ------------------------
 * image vertical center class
 * ------------------------ */
.ivc {
	position: relative;
}

.ivc img {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

/* ------------------------
 * default float class
 * ------------------------*/
.fl_left {
	float: left;
}

.fl_right {
	float: right;
}
