/* poll results */

/* the wide div that gets moved left and right */
#pollResults_holder {
	position: absolute;
	top: 0;
	left: 1000px;
	width: 9000px;
}
/* results div - 1 for each poll */
.pollResults_section { 
	position: relative;
	float: left;
	width: 1000px;
	height: 565px;
}

/* div that holds the pictures and bar graph */
.pollResults_barHolder {
	position: absolute;
	top: 0;
	right: 0;
	height: 565px;
	width: 600px;
}

/* div that holds a single answer (ie pic, name, and bar) */
.pollResults_singleResult {
	float: left;
}

/* the div to hold the bar itself (as a background, height altered by tweaking the bckgrnd-position) NB: 100% = 330px, or 0 offset */
.pollResults_bar {
	height: 330px;
	border-top: 1px solid transparent;
	background: transparent url('default/bckgrnd_pollBar.png') no-repeat center 0;
	text-align: center;
}

/* the percent */
.pollResults_bar h3 {
	padding: 0;
	margin: 310px 0 0 0;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 13px;
}

/* the photo and description text */
.pollResults_details {
	margin: -4px 0 0 0;
}
.pollResults_details img { padding: 0 4px 0 4px; }
.pollResults_details p {
	color: #FFF;
	padding: 0 20px 0 20px;
	margin: 0;
}

/* the div for the framed question */
.poll-question { 
	left: 180px; 
	width: 240px; 
	top: -253px;
}
.pollItemBig { height: 100px; }

/* poll navigation */
#pollResults_nav {
	position: absolute;
	top: 470px;
	left: 700px;
	width: 90px;
	display: none;
}


