/* layout and visibility for header and/or footer on poll and/or votes display */
.poll .poll-header {
	display: block;
}
.votes .poll-header {
	display: none;
}
.poll .poll-footer {
	display: block;
}
.votes .poll-footer {
	display: none;
}

/* the overall container for the poll view */
.poll {
}
/* the overall container for the votes view */
.votes {
}

/* height placeholder for the hidden vote button */
.poll-button {
	height: 40px;
}

/* the show results and back links */
.classic .result-link {
}
.classic .back-link {
}
.modern .result-link {
}
.modern .back-link {
}

/* vote % < 5 will be displayed outside the votes bar */
.classic .vote-percent-outside {
	margin-left: 22px;
	color: #000;
}
.modern .vote-percent-outside {
	margin-left: 22px;
	color: #000;
}

/* layout for the classic-style poll display */
.classic .poll-question {
}
.classic .poll-answer-container {
}
.classic .poll-radio {
}
.classic .poll-radio.selected {
}
.classic .submit-button {
}
.classic .submit-button:hover {
}

/* layout for the classic-style votes result display */
.classic .vote-bar {
	height: 20px;
	background-color: blue;
	color: white;
	margin-bottom: 12px;
	font-size: 10px;
	padding: 2px 4px;
	text-align: right;
}
.classic .vote-bar.zero-percent {
	border-left: 1px solid #666;
	background-color: transparent;
}
.classic .vote-votes {
	font-size: 12px;
	color: #666;
	display: block;
}
.classic .vote-votes::before {
	content: "(";
}
.classic .vote-votes::after {
	content: ")";
}

.classic .votes-total {
	color: #666;
}
.classic .votes-time {
	font-size: 10px;
}
.classic .votes-time::before {
	content: "(";
}
.classic .votes-time::after {
	content: ")";
}

/* layout for the modern-style poll display */
.modern .poll-question {
}
.modern .poll-answer-container {
	width: 100%;
}
.modern .poll-radio {
	height: 36px;
	width: 100%;
	border: 1px solid #0E2D6D;
	border-radius: 12px;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: bold;
	background-color: transparent;
	cursor: pointer;
	outline: none;
}
.modern .poll-radio:hover {
	background-color: #eee;
}
.modern .poll-radio.selected {
	border-color: #00f;
	background-color: #1e90ff;
}
.modern .submit-button {
	height: 36px;
	width: 100%;
	border: 1px solid #666;
	border-radius: 12px;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: bold;
	background-color: #ddd;
	cursor: pointer;
}
.modern .submit-button:hover {
	opacity: 0.7;
}

/* layout for the twitter-style votes result display */
.modern .vote-bar {
	height: 32px;
	background-color: #ccc;
	color: #000;
	margin-bottom: 12px;
	font-size: 12px;
	padding: 7px 6px;
	text-align: right;
	border-radius: 8px 0 0 8px;
}
.modern .vote-bar.zero-percent {
	border-left: 1px solid #666;
	background-color: transparent;
	border-radius: none;
}
.modern .vote-votes {
	font-size: 12px;
	color: #666;
	display: block;
}
.modern .vote-votes::before {
	content: "(";
}
.modern .vote-votes::after {
	content: ")";
}

.modern .votes-total {
	color: #666;
}
.modern .votes-time {
	font-size: 10px;
	display: block;
}
.modern .votes-time::before {
	content: "(";
}
.modern .votes-time::after {
	content: ")";
}

/* general classes - don't modify! */
.hide {
	display: none;
}
.show {
	display: block;
}
