div#interactive-container {
	max-width:670px;
	margin:10px 0 10px 0;
	background-color:rgb(225,223,100);
	font-family: 'Roboto', sans-serif;
}

div.poll-container {
	width:100%;
	border-bottom:5px solid white;
}

div.poll-wrapper {
	width:90%;
	margin:5px auto 20px auto;
}

p.poll-prompt {
	font-size:1.7em;
	font-weight:bold;
}

p.poll-choice {
	background-color:rgb(255,255,255);
	padding:10px;
	cursor:pointer;
}

p.poll-choice:hover {
	background-color:rgba(255,255,255,0.7);
}

button.poll-submit {
	border:0px;
	padding:10px 20px;
	margin:00;
	background-color:rgb(0,125,204);
	cursor:pointer;
}

button.poll-submit:hover {
	background-color:rgba(0,125,204,0.7);
}

p.locked-selection {
	background-color:rgb(255,102,102) !important;
}

div.poll-stats-wrapper {
	width:100%;
	margin:0 0 5px 0;
}

p.poll-label {
	float:left;
	margin:0px;
}

p.poll-stats {
	float:right;
	margin:0px;
}

div.poll-bar-outer {
	width:100%;
	height:30px;
	margin-bottom:10px;
	background-color:white;
}

div.poll-bar-inner {
	height:100%;
	background-color:rgb(255,102,102);
}

h3.poll-total {

}

@media (max-width:520px) {

	p.poll-label {
		float:none;
		display:block;
		margin:3px 0;
	}

	p.poll-stats {
		float:none;
		display:block;
		margin:3px 0;
	}

}