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

/*Align*/
.alignCenter {
	text-align: center;
}

.alignJustify {
	text-align: justify;
}

.alignLeft {
	text-align: left;
}

.alignRight {
	text-align: right;
}

.marginAuto {
	margin-left: auto;
	margin-right: auto;
}

/*End Align*/

/*Font style*/
.italics {
	font-style: italic;
}

.oblique {
	font-style: oblique;
}

/*End Font style*/

/* Flexbox */

.flexGrow1 {
	flex-grow: 1;
}

.flexRow {
	display: flex;
	flex-direction: row;
}

.flexColumn {
	display: flex;
	flex-direction: column;
}

.justifyContentCenter {
	justify-content: center;
}

.justifyContentFlexStart {
	justify-content: flex-start;
}

/* End Flexbox */
/*Float*/
.clearBoth {
	clear: both;
}

.clearLeft {
	clear: left;
}

.clearRight {
	clear: right;
}


.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

/*Float*/
/*Font weight*/
.bold {
	font-weight: bold;
}

/*End Font weight*/

/*Text decoration*/
.blink {
	text-decoration: blink;
}

.line-through {
	text-decoration: line-through;
}

.overline {
	text-decoration: overline;
}

.underline {
	text-decoration: underline;
}

/*End Text decoration*/

/*Spacing */
.line-height1-5em {
	line-height: 1.5;
}

.line-height2em {
	line-height: 2;
}

.letterspacing1-5em {
	letter-spacing: 1.5em;
}

.letter-spacing2em {
	letter-spacing: 2em;
}

.wordspacing1-5em {
	word-spacing: 1.5em;
}

/*End Spacing*/

/*Text transform*/
.capitalize {
	text-transform: capitalize;
}

.lowercase {
	text-transform: lowercase;
}

.uppercase {
	text-transform: uppercase;
}

/*End Text transform*/