﻿/* ================================================================ 
Copyright (c) 2012 Sapphire Software Services. All rights reserved.
=================================================================== */

    #thermometer 
    {
        float:left;
        position: relative;
    }
    
    #therm-marks
    {
        position:absolute; left:16px;top:18px;
        
        height:210px;
        width:150px;
        text-align:left; 
    }
       
    #therm-image
    {
    }
    
    #therm-bar 
    {
        position:absolute; left:22px;top:18px;
        
        height:210px;
        width:13px;
        
        border:none;
        background: #f0b6c2; /* Old browsers */
        background: -moz-linear-gradient(left,  #f0b6c2 0%, #c61134 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#f0b6c2), color-stop(100%,#c61134)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left,  #f0b6c2 0%,#c61134 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(left,  #f0b6c2 0%,#c61134 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(left,  #f0b6c2 0%,#c61134 100%); /* IE10+ */
        background: linear-gradient(to right,  #f0b6c2 0%,#c61134 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0b6c2', endColorstr='#c61134',GradientType=1 ); /* IE6-9 */
    }
    
    .therm-mark 
    {
        width:26px;
        text-align:left;
        
        font-family:Arial;
        font-size:13px;
        padding-top:4px;
    }
    
    .Container 
    {
        padding:0 0 0 0;
        margin: 0 0 0 0;
    }
    
    .TickLabel
    {
        padding-top: 3px;
        padding-right: 3px;
        margin: 0 0 0 0;
        height:1px;
        line-height:10px;
        font-size:10px;
    } 
    
    .CurrentValue
    {
        float: left;
        width:100%;
        margin-top:20px;
        font-family:Arial;
        font-size:18px;
        font-weight:bold;
        text-align:left;
    }