/*
 * Font Boosting fix
 * 
 * Chrome for Android has an weird feature called "Font Boosting".
 * It resizes text containers based on the size of the text.
 * It's extremely dumb and annoying. This is a hack that disables it.
 */
html.no-font-boosting * {
	max-height: 1000000000px;
}

body {
	margin: 0;
}

iframe {
	border: none;
}

a {
	cursor: pointer;
}
