html, body
{
	margin: 0;
	padding: 0;
}
body
{
	font-family: verdana, sans-serif;
	font-size: 11px;
	line-height: 14px;
	background: #FFFFFF;
	color: #000000;
}
.poll-wrapper
{
	padding: 7px 8px;
	box-sizing: border-box;
}
.poll-title
{
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 7px;
}
.poll-options
{
	margin-bottom: 7px;
}
.poll-option
{
	display: block;
	margin-bottom: 5px;
	cursor: pointer;
}
.poll-option input
{
	vertical-align: middle;
	margin: 0 5px 0 0;
}
.cssbutton
{
	background: #FFFFFF;
	border: 1px black solid;
	font-size: 10px;
	line-height: 16px;
	height: 18px;
	width: 100px;
	vertical-align: middle;
	padding: 0;
	cursor: pointer;
}
.cssbutton:hover
{
	background: #F0F0F0;
}
.poll-message
{
	margin-top: 7px;
}
.poll-results
{
	margin-top: 7px;
}
.poll-result-row
{
	margin-bottom: 6px;
}
.poll-result-label
{
	display: flex;
	justify-content: space-between;
	margin-bottom: 2px;
}
.poll-bar
{
	height: 12px;
	border: 1px solid #000000;
	background: #FFFFFF;
	box-sizing: border-box;
}
.poll-fill
{
	height: 100%;
	background: #C24747;
}
.poll-total
{
	margin-top: 7px;
}
