
    
    .poller{    /* The poller box */
    	
        float:left;        
        width:91%;
        height:100%;       
        padding:5px;   
        margin:15px 0px 0px 0px;
        /*border: 1px double #317082;*/
        border: 1px dashed #C99CD5;
        background: #fff;
    }
    /* Poller title above radio buttons */
    .pollerTitle{
        margin-bottom:5px;
        font-weight:bold;
        color:#5B1271;
        font-size:1.2em;
    }
    /* Poller question above radio buttons */
    .pollerQuestion{
        margin-bottom:5px;
        font-weight:bold;
        color:#5B1271;
    }
    /* Label for each radio button */
    .pollerOption{
        margin:0px;
        margin-bottom:3px;
    }
    /* Image for vote button */
    .pollerVoteBtn{
    	background: #fff url("http://myob.com/images/btn_vote.gif") left top no-repeat;
    	cursor: hand;
    	height:24px;
		width:46px;
	}
    
    /* Label for each option above graph - i.e. results */
    .result_pollerOption{
        margin:0px;
        font-size:0.9em;
    }
    
    /* Title of poller - when ajax shows the results */
    .result_pollerTitle{
        margin-bottom:5px;
        font-weight:bold;
        font-size:1.2em;
        color:#5B1271;
    }
    /* Question of poller - when ajax shows the results */
    .result_pollerQuestion{
        margin-bottom:5px;
        font-weight:bold;
        font-size:1em;
        color:#5B1271;
    }
    /* Don't change this one, it is used to get the left and right image(the corner) positioned correctly */
    .result_pollGraph img{
        float:left;
    }
    /* The <div> tag where the percentage result is shown */
    .result_pollGraph div{
        float:left;
        height:16px;
        background-repeat:repeat-x;
        color:#FFF;
        background: #E49A20;
        font-size:1em;
        line-height:16px;
    }
    /* Graph div - parent of both the corner images and the div displaying percentage votes */
    .result_pollGraph{  
        height:16px;
    }
    
    /* Message when Ajax is working getting restults fromt the server */
    .poller_waitMessage{
        display:none;   
    }   
    
    .result_totalVotes{
        clear:both;
        font-size:0.9em;
        margin-top:10px;
        font-style:italic;
    }











