* {
	text-decoration: none;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    outline: none;
}

.float {
	display: block;
	overflow: hidden;
}

.float:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.float > * {
	float: left;
	display: block;
}

.float > .right { float: right; }
