﻿/* === Remove input autofocus webkit === */
*:focus {outline: none;}

/* === Form Typography === */
body {
	font: 11px/21px Verdana, Geneva, Tahoma, sans-serif;
	font-weight: bold;
}
.poll_form h2, .poll_form label {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.form_hint, .required_notification {font-size: 12px;}

/* === List Styles === */
.poll_form ul {
    width:660px;
    list-style-type:none;
	list-style-position:outside;
	margin:0px;
	padding:0px;
}
.poll_form li{
	padding:12px; 
	border-bottom:1px solid #eee;
	position:relative;
} 
.poll_form li:first-child, .poll_form li:last-child {
	border-bottom:1px solid #777;
}

/* === Form Header === */
.poll_form h2 {
	margin:0;
	display: inline;
}

/* === Form Elements === */

/* === HTML5 validation styles === */	

/* === Form hints === */
.form_hint {
	background: #b20000;
	border-radius: 3px 3px 3px 3px;
	color: white;
	margin-left:8px;
	padding: 1px 6px;
	z-index: 999; /* hints stay above all other elements */
	position: absolute; /* allows proper formatting if hint is two lines */
	display:none;
}
.form_hint::before {
	content: "\25C0";
	color:#b20000;
	position: absolute;
	top:1px;
	left:-6px;
}
	
/* === Button Style for Poll Yes === */
button.poll_yes {
	border-left: 0px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
	border-top: 0px solid #CCCCCC;
	background-image: url('btn_submit.png'); /*	background-color: #68b12f;
	background: -webkit-gradient(linear, left top, left bottom, from(#68b12f), to(#50911e));
	background: -webkit-linear-gradient(top, #68b12f, #50911e);
	background: -moz-linear-gradient(top, #68b12f, #50911e);
	background: -ms-linear-gradient(top, #68b12f, #50911e);
	background: -o-linear-gradient(top, #68b12f, #50911e);
	background: linear-gradient(top, #68b12f, #50911e); */;
	border-bottom: 1px solid #CCCCCC;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	box-shadow: 0 1px 0 0 #999999 inset;
	-webkit-box-shadow: 0 1px 0 0 #999999;
	-moz-box-shadow: 0 1px 0 0 #999999;
	-ms-box-shadow: 0 1px 0 0 #999999;
	-o-box-shadow: 0 1px 0 0 #999999;
	color: #B20000;
	font-weight: bold;
	padding: 6px 20px 6px 20px;
	text-align: center;
	text-shadow: 0 -1px 0 #CCCCCC;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 12px;
	width: 150px;
	height: 46px;
	top: 0px;
	float: left;
	right: 30px;
	left: 30px;
}
button.poll_yes:hover {
	background-image: url('btn_submit_hov.png');
	
}


/* === Button Style for Poll No === */
button.poll_no {
	border-left: 0px solid #CCCCCC;
	border-right: 1px solid #CCCCCC;
	border-top: 0px solid #CCCCCC;
	background-image: url('btn_submit.png'); /*	background-color: #68b12f;
	background: -webkit-gradient(linear, left top, left bottom, from(#68b12f), to(#50911e));
	background: -webkit-linear-gradient(top, #68b12f, #50911e);
	background: -moz-linear-gradient(top, #68b12f, #50911e);
	background: -ms-linear-gradient(top, #68b12f, #50911e);
	background: -o-linear-gradient(top, #68b12f, #50911e);
	background: linear-gradient(top, #68b12f, #50911e); */;
	border-bottom: 1px solid #CCCCCC;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	box-shadow: 0 1px 0 0 #999999 inset;
	-webkit-box-shadow: 0 1px 0 0 #999999;
	-moz-box-shadow: 0 1px 0 0 #999999;
	-ms-box-shadow: 0 1px 0 0 #999999;
	-o-box-shadow: 0 1px 0 0 #999999;
	color: #B20000;
	font-weight: bold;
	padding: 6px 20px 6px 20px;
	text-align: center;
	text-shadow: 0 -1px 0 #CCCCCC;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: 12px;
	width: 150px;
	height: 46px;
	float: right;
	right: 30px;
	left: 30px;
}
button.poll_no:hover {
	background-image: url('btn_submit_hov.png');
/*	position: relative;
	top: 0px;
*/		
}
.honeypot {
	visibility: hidden;
	display: none;
}
