body {
	padding: 0;
	margin: 0;
}
.body {
	width: 100%;
	height: 100%;
}

img {
	border: 0;
}
table.border_none {
	border: none;
}
table.border_none > thead > tr > th,
table.border_none > thead > tr > td,
table.border_none > tbody > tr > th,
table.border_none > tbody > tr > td,
table.border_none > tfoot > tr > th,
table.border_none > tfoot > tr > td {
	border: none;
}

.hidden {
	display: none !important;
}
.flex {
	display: flex;
}
.iflex {
	display: inline-flex;
}
.flex_v_center {
	display: flex;
	align-items: center;
}
.flex_h_center {
	display: flex;
	justify-content: center;
}
.flex_center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.link {
	cursor: pointer;
	text-decoration: underline;
}
.click {
	cursor: pointer;
}
.block {
	display: block !important;
}
.iblock {
	display: inline-block;
}
.text_center {
	text-align: center;
}
.text_wrap {
	white-space: pre-wrap;
}