.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.justify-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.justify-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.justify-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.items-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.items-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end
}

html,
body {
	position: relative;
	height: 100%;
	font-family: sans-serif;
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	border: medium none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	/* Firefox */
	-webkit-box-sizing: border-box;
	/* Safari */
}

a,
img {
	border: 0;
}

img {
	display: block;
}

a {
	color: #303133;
	text-decoration: none;
	transition: all 300ms ease-in-out;
}


a:hover {
	color: #004FA4;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}


li {
	list-style-type: none;
}

.wrapper {
	width: 1200px;
	margin: 0px auto;
}

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both;
}

.clear:after {
	display: block;
	content: " ";
	clear: both;
}

h1,
h2,
h3,
h4,
h5 {
	font-size: 100%;
	font-weight: normal;
}