.itemContainer {
	float: left;
	width: 100%;
	margin-bottom: 40px;
}
.personItem {
	float: left;
	font-size: 11px;
	padding: 3px;
	margin: 2px;
	color: #000;
	width: 60px;
	height: 35px;
	text-align: center;
	cursor: pointer;
	border-radius: 3px;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	transition: all 100ms linear;
	font-weight: bold;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.personItem.dems {
	background: rgba(202,209,232,0.3);
	color: rgba(0,0,0,0.2);
}
.personItem.repubs {
	background: rgba(232,202,202,0.3);
	color: rgba(0,0,0,0.2);
}
.personItem.dems.highlighted{
	background: rgba(128,138,255,1);
	color: black;
}
.personItem.repubs.highlighted {
	background: rgba(255,129,129,1);
	color: black;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.hint--bounce:before, .hint--bounce:after {
	white-space: pre;
}
.personItem:hover {
	border: 2px dashed black;
}
.subItemContainer {
	display: none;
}

.hint:after, [data-hint]:after {
	white-space: pre !important;
	font-size: 13px !important;
	line-height: 21px;
	font-weight: 100 !important;
	text-shadow: none !important;
}
.headerItem {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 20px;
	font-weight: 100;
}