
#poll_module {
    width: 380px;
    height: 343px;
    background: url('../i/poll_module/bg.png') repeat-x;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    position: relative;
}

#poll_module p {
    margin: 0;
    padding: 0;
    color: white;
}

#poll_module ul,  
#poll_module ol, 
#poll_module li {
    margin: 0;
    padding: 0;
    display: block;
    list-style-type: none;
}

#poll_module .back {
    bottom: 10px;
    right: 25px;
    position: absolute;
    cursor: pointer;
    float: right;
    color: white;
}

#poll_module .back:hover {
    color: #222;
}

#poll_module .tier {
    margin: 10px 0;
    padding: 0 25px;
    position: relative;
}

#poll_module .tier h1 {
    margin: 0 0 10px 0;
    padding-top: 15px;
    font-size: 22px;
    line-height: 22px;
    color: white;
}

#poll_module .items {
    margin: 15px 0 10px 0;
    padding: 10px 0;
    border-top: 2px solid #999;
    border-bottom: 2px solid #999;
}

#poll_module .items:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#poll_module .items li {
    cursor: pointer;
    font-size: 13px;
    margin-bottom: 12px;
}

#poll_module .items li:last-child {
    margin-bottom: 0;
}

#poll_module .items li:hover {
    color: #333;
}

#poll_module .items li:hover p {
    color: #333;
}

#poll_module .items li p {
    margin-top: 3px;
}

#poll_module .items li .title {
    font-weight: bold;
}

#poll_module .items li img {
    width: 100px;
    height: 75px;
    margin: 0 8px 0 0;
    float: left;
}

#poll_module .items li.button {
    color: white;
    margin: 5px 0 10px 0;
    padding: 8px 10px;
    border: 1px solid #444;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #666;
    background-image: linear-gradient(bottom, rgb(58,58,58) 14%, rgb(95,95,95) 61%);
    background-image: -moz-linear-gradient(bottom, rgb(58,58,58) 14%, rgb(95,95,95) 61%);
    background-image: -webkit-linear-gradient(bottom, rgb(58,58,58) 14%, rgb(95,95,95) 61%);
    background-image: -ms-linear-gradient(bottom, rgb(58,58,58) 14%, rgb(95,95,95) 61%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.14, rgb(58,58,58)),
        color-stop(0.61, rgb(95,95,95))
    );
}

#poll_module .items li.button:last-child {
    margin-bottom: 5px;
}

#poll_module .items li.button:hover {
    color: white;
    background-color: rgb(4,87,159);
    background-image: linear-gradient(bottom, rgb(4,87,159) 14%, rgb(6,129,237) 61%);
    background-image: -moz-linear-gradient(bottom, rgb(4,87,159) 14%, rgb(6,129,237) 61%);
    background-image: -webkit-linear-gradient(bottom, rgb(4,87,159) 14%, rgb(6,129,237) 61%);
    background-image: -ms-linear-gradient(bottom, rgb(4,87,159) 14%, rgb(6,129,237) 61%);
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.14, rgb(4,87,159)),
        color-stop(0.61, rgb(6,129,237))
    );
}

#poll_module .items li.button p, 
#poll_module .items li.button .title {
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: white;
}


#poll_module .additional_items li {
    margin: 0 0 3px 0;
    cursor: pointer;
    color: white;
}

#poll_module .additional_items li:hover {
    color: #333;
}

#poll_module .additional_items li.title {
    font-weight: bold;
    cursor: default;
}

#poll_module .additional_items li.title:hover {
    color: white;
}

