﻿.pollmeter
{
	height: 25px;  /* Can be anything */
	position: relative;
    vertical-align: middle;
	background-color:#D0D3E4;
    box-shadow:inset 0 0 10px #A3A5B3; 
    -moz-box-shadow:inset 0 0 10px #A3A5B3;
}
.pollmeter > span {
	display: inline-block;
	height: 100%;
    background-color: rgb(43,194,83);
    position: relative;
	overflow: hidden;
    border:1px solid #DEA303;

}
.pollmeter > span:after, .animate > span > span {
	content: "";
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	z-index: 1;
	-webkit-background-size: 50px 50px;
	-moz-background-size: 50px 50px;
	background-size: 50px 50px;
	-webkit-animation: move 2s linear infinite;
	-moz-animation: move 2s linear infinite;
	overflow: hidden;
}

.orange > span {
    background: #f8a109;
    background: -moz-linear-gradient(top,  #f8a109 0%, #fad368 50%, #fad368 100%); 
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8a109), color-stop(50%,#fad368), color-stop(100%,#fad368)); 
    background: -webkit-linear-gradient(top,  #f8a109 0%,#fad368 50%,#fad368 100%); 
    background: -o-linear-gradient(top,  #f8a109 0%,#fad368 50%,#fad368 100%); 
    background: -ms-linear-gradient(top,  #f8a109 0%,#fad368 50%,#fad368 100%);
    background: linear-gradient(to bottom,  #f8a109 0%,#fad368 50%,#fad368 100%); 
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8a109', endColorstr='#fad368',GradientType=0 );
}
		
.preload-progress-filled > span {
    background: #f89815; /* Old browsers */
    background: -moz-linear-gradient(top,  #f89815 0%, #d8bf94 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f89815), color-stop(100%,#d8bf94)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #f89815 0%,#d8bf94 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #f89815 0%,#d8bf94 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #f89815 0%,#d8bf94 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #f89815 0%,#d8bf94 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f89815', endColorstr='#d8bf94',GradientType=0 ); /* IE6-9 */

}