/*
* reset
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit; 
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-style: none;
	-ms-interpolation-mode: bicubic;
}

/*
* helper
*/
.clearfix::before,
.clearfix::after {
	content: '';
	display: table;
}

.clearfix::after {
	clear: both;
}

/*
* 2022 vote
*/
.vote-banner {
	display: block;
	overflow: hidden;
}

.vote-banner.full {
	padding: 20px;
	background: rgba(16,24,32,1) url(../image/voteBanner.png);
}

.vote-wrapper {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

/* 
* groups 
*/
.vote-banner-group {
	display: block;
	position: relative;
	margin-left: -10px;
	margin-right: -10px;
	font-size: 0;
	text-align: center;
}

.vote-banner-group:after {
	content: '';
	display: table;
	clear: both;
}

.vote-banner-group > .banner {
	float: left;
	width: 25%;
	min-height: 1px;
	padding: 0 10px;
}

.vote-banner-group > :nth-child(4n + 1) {
	clear: both;
}

.vote-banner-group > :not(:nth-child(-n + 4)) {
	margin-top: 20px;
}