
/********* Thermometer Start ******************/

.thermometer {
  height: 2.6em;
  position: relative;
  background:#4d4e53;
  margin-bottom: 50px;
}
	.filled_thermometer {
		position:absolute;
		top:0;
		left:0;
		width:0%;
		height:100%;
		
		background: #c11338; /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pg0KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPg0KICA8bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQtdWNnZy1nZW5lcmF0ZWQiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+DQogICAgPHN0b3Agb2Zmc2V0PSIyNiUiIHN0b3AtY29sb3I9IiNlNTQ1NjciIHN0b3Atb3BhY2l0eT0iMSIvPg0KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2MxMTMzOCIgc3RvcC1vcGFjaXR5PSIxIi8+DQogIDwvbGluZWFyR3JhZGllbnQ+DQogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+DQo8L3N2Zz4=);
		background: -moz-linear-gradient(top, #e54567 26%, #c11338 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(26%,#e54567), color-stop(100%,#c11338)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #e54567 26%,#c11338 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #e54567 26%,#c11338 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top, #e54567 26%,#c11338 100%); /* IE10+ */
		background: linear-gradient(to bottom, #e54567 26%,#c11338 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e54567', endColorstr='#c11338',GradientType=0 ); /* IE6-8 */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e54567', endColorstr='#c11338',GradientType=0 ); /* IE6-9 */
		z-index:1;
	}
	.bubble {
		position: absolute;
		z-index: 50;
		left: 0;
		margin-left:-59px;
		background: url("../_img/tooltip.png") no-repeat;
		width: 118px;
		height: 48px;
		top: 39px;
		text-align: center;
		padding-top: 8px;
		display:none;
	}
	.current_amount {
		font-size: 18px;
		line-height: 35px;
		height: 35px;
		z-index: 45;
		color: #000;
		padding-top: 3px;
	}
	
	.thermometer > h2 {
		float: right;
		padding-right: 10px;  
		color: white;
		position: relative;
		z-index: 100;
		font-size:1.3em;
		font-weight: bold;
		padding-top:.45em;
		line-height: 1.3em;
	}