/*Fixing IE problems */
@supports (-ms-ime-align:auto) {
html > * {
-ms-overflow-style: none;
}
}
*+html * {
	-ms-overflow-style: none;
}
@supports (-ms-ime-align:auto) {
.mainMenu a {
float: left;
width: 300px;
}
.mainMenu::after {
content: "";
clear: both;
display: table;
}
}
*+html .mainMenu a {
	float: left;
	width: 300px;
}
*+html .mainMenu::after {
	content: "";
	clear: both;
	display: table;
}
