﻿/*CSS: Style Sheet for Poll */

/*-----------------Styles for Text------------------ */

.polling .header 
{

    color:#000;
    font-size:12px;

}

.polltitlestyle 
{
    font-weight:bold;
    font-size:12px; 
    font-family:Verdana,Helvetica,Sans-Serif; 
    height:20px; 
    color:#6699cc;
    padding:5px 10px 0 10px;
}

.textstyle {
    font-size:11px; 
    font-family:Verdana,Helvetica,Sans-Serif;
    color:#6699cc;
}

/* textstyle for IE6*/
*html .textstyle {
    font-size:11px; 
    font-family:Verdana,Helvetica,Sans-Serif;
    color:#6699cc;
    padding:0px;
    margin:0px;
}
.textstyle span {
    font-weight:bold;
}

/*Style for Error Message*/
.errorMSG {
    font-size:10px; 
    font-weight:bold;
    font-family:Verdana,Helvetica,Sans-Serif;
    padding-left:15px;
    color:#6699cc;
    margin-top: 10px;
}
.errorMSG span{
    color:#ff3300;
    font-weight:bold;
}

/*Style for Buttons*/
.buttonStyle {
    border-top:1px solid #efefef;
    border-bottom:1px solid #efefef;
    text-decoration:none; 
    font-family:Verdana,Helvetica,Sans-Serif;
    padding:2px; 
    font-size:10px; 
    font-weight:bold;
    color:#6699cc;
}

/*Text Style for Poll Question*/
.pollQuestionstyle 
{
    font-size:11px; 
    font-family:Verdana,Helvetica,Sans-Serif;
    vertical-align:inherit;
    text-decoration:none;
}

/*-------Styles for Wrappers/Containers: background color, border color,...-- */

/*Main Wrapper for Poll*/
.pollWrapper {
    width:300px; 
    background:#efefef;
    border:1px solid #6699cc;
}

/*Inner Container that holds all the content*/
.pollInnerContainer {
    background:#ffffff; 
    width:278px; 
    border:1px solid #6699cc; 
    margin:0 10px 10px 10px;
}

/*Poll Answer Style*/
.pollAnswerWrapper {
}

/*Poll Answer Label Style*/
.pollAnswerWrapper label {
    font-size:11px; 
    font-family:Verdana,Helvetica,Sans-Serif;
    display:inline;
    color:#6699cc;
}

.pollResultBarWrapper {padding:0 5px; margin-bottom:5px;}

/*Vote and Result buttons wrapper*/
.voteresultWrapper {
    padding:10px;
}

.voteresultWrapper a {
    padding-right:15px;
}

.voteNumberWrapper {
    padding:45px 10px 10px 10px;
}

/*Vote Result Graphic Bar */
.resultPollBar {
    float:left; 
    background: transparent url(/TopletsResources/Polling/images/pollbar3.jpg) repeat-x; 
    height:10px;
}



