/* Survey modal pop-up */
#survey {

	/* overlay is hidden before loading */
	display:none;

	/* standard decorations */
	width:530px;	
	border:10px solid #666;

	/* for modern browsers use semi-transparent color on the border. nice! */
	border:10px solid rgba(82, 82, 82, 0.698);

	/* hot CSS3 features for mozilla and webkit-based browsers (rounded borders) */
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
}

#survey div {
	padding:10px;
	border:1px solid #333;
	background-color:#fff;
}

#survey h2 {
	margin:-11px;
	margin-bottom:0px;
	color:#fff;
	background-color:#ED6C27;
	padding:5px 10px;
	border:1px solid #333;
	background-image: none;
}

#survey img {
	padding: 10px;
	float:right;
}

#survey p {
	padding: 5px;
}

#survey a {
	font-size: 11px;
	color: #ED6C27;
}

#survey a.answer {
	font-size: 1.25em;
	padding: 5px;
	margin-right: 8px;
	border: 1px solid #333;
	text-decoration: none;
	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
#survey a.answer:hover {
	background-color: #ED6C27;
	color: #fff;
}
