.rowC {
	display: flex;
	justify-content: center;
}

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

.vC {
	display: block;
	margin: auto 0;
}

.hC {
	display: block;
	margin: 0 auto;
}

.vhC {
	display: block;
	margin: auto;
}

.flex {
	display: flex;
}

.flex-space-between {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

.flex-space-around {
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
}

.flex-align-between {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0 auto;
}

.flexWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 0 auto;
}

.divsCenter {
	display: flex;
	width: 90%;
	margin: 0 auto;
}

.justify-text {
	text-indent: 30px;
	text-align: justify;
	white-space: pre-wrap;
}