/* --- Survey window styles --- */

#survey {
	color: black;
	/* - Dimensions - */
	width: 600px; /* Only width is set and the window will grow with its content */
	padding: 10px;
	z-index: 1000;

	/* - Positioning - */
	position: absolute;
	top: 25%;
	left: 386px;
	margin: -130px 0 0 -310px;

	visibility: hidden;  /* Hides the window by default */
	z-index: 1000;
	/* - Visual - */
	background: #FFFFFF;
	border: 5px solid #0091D7;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;

}

#survey p{
	margin: 10px 0px 5px 0px;
}

#survey a{
	color: #FF6600
}

#survey a:hover {
	color: #FF0000;
	text-decoration: none;
}

#survey h1{
	font-size: 175%;
	color: #006699;
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
}

#survey img.closeWin { float: right; }

/* --- Survey button styles --- */
#survey .srv_button {
	display: block;
	font-weight: bold;
	width: 160px;
	padding: 5px 10px;
	border: 2px solid #0091D7;
	text-align: center;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	color: #006699;
	font-size: 14px;
	background-color: #DFEFFF;
}

#survey .srv_button:hover {
	background-color: #006699;
	color: #FFFFFF;
}

#survey_overlay { display: none; background: #000; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;

	filter: alpha(opacity=50); /* internet explorer */
	-moz-opacity: 0.5;       /* mozilla, netscape */
	opacity: 0.5;
}

