* {
	padding: 0;
	margin: 0;
	border: 0;
}

.aligner {
	text-align: justify;
	line-height: 0px;
	font-size: 5%
}
.aligner > * {
	display: inline-block;
	vertical-align: top; /* решил убрать*/
	line-height: normal;
	font-size: 2000%
}
.aligner:after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 0px;
}

.vAligner:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 0px;
	background: yellow;
}
.vAligner > * {
	/*max-width: 99%;*/
	display: inline-block;
	vertical-align: middle;
}

.alignLeft {
	text-align: left;
}

.alignRight {
	text-align: right;
}

.alignCenter {
	text-align: center;
	margin-top:-5%;
	
}

.alignCenterSecond {
	text-align: center;
	
}

.alignCenterThird {
	text-align: center;
	
}


.absBottom {
	position: absolute;
	bottom: 0px;
}

ul.horizontal > li {
	display: inline-block;
}

ul.horizontal {
	list-style: none;
}

.bVAligner {
	display: inline-block;
	position: relative;
}
.bVAligner[class] {
	display: table;
	position: static;
}

.bVAligner > .mid {
	position: absolute;
	top: 50%;
}/* for quirk explorer only*/
.bVAligner[class] > .mid {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	position: static;
}

.bVAligner > .mid > .inner {
	position: relative;
	top: -50%
}

.fillParent {
	width: 100%;
	height: 100%
}

.multiLayer .fillParent {
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	position: absolute;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}
