/* STYLE FOR USER POLLS
------------------------------------------------------------ */

	/* user poll section
	------------------------------------------------------------ */
	.poll_section
	{
		margin:					0 0 20px 0;
		padding:				5px 10px;
		border-bottom:			solid 1px;
	}
	
	/* poll question style
	------------------------------------------------------------ */
	.poll_question
	{
		font-weight:			bold;
	}
	
	/* already voted display
	------------------------------------------------------------ */
	#already_voted
	{
		font-weight:			bold;
		color:					#F00;
	}
	
	/* divides poll options with a light underline
	------------------------------------------------------------ */
	.poll_option
	{
		margin:					0 0 10px 0;
		border-bottom:			solid 1px #DDD;
	}
	
	/* the style for the option title
	------------------------------------------------------------ */
	#opt_title
	{
		width:					110px;
		display:				block;
		float:					left;
	}
	
	/* style for votes submitted text
	------------------------------------------------------------ */
	#votes_submitted
	{
		font-weight:			normal;
	}
	
/* ------------------------------------------------------------ */