html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: "Helvetica", sans-serif;
    text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 0;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* apply a natural box layout model to all elements */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", sans-serif;

}

/*  This is where our code starts - everything above is for resets
    ------------------------------------------------------- */

.app-container {
    min-width: 692px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #000000;
}

/*  Animation for various elements
    ------------------------------------------------------- */
.about-overlay-container,
.header-dropdown-content,
.data-points,
.data-point,
.details,
.data-dropdown-content,
.data-filters .slider,
.data-filters .sorter {
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

/*  About overlay container elements
    ------------------------------------------------------- */
.about-overlay-container {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: absolute;
    z-index: 0;
    visibility: hidden;
    opacity: -1;
}
.loader {
    background: url(../loader.gif) no-repeat;
    z-index: 200;
    position: absolute;
    top: 38%;
    left: 50%;
    margin-left: -90px;
    width: 220px;
    height: 20px;
}
.about-overlay-container.active {
    z-index: 199;
    visibility: visible;
    opacity: 1;
}
.about {
    position: absolute;
    padding: 30px;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: #FFF;
    border-radius: 3px;
    border: 1px solid #444;
    z-index: 200;
    line-height: 1em;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0px 2px 12px 2px rgba(0,0,0,0.6);
    overflow: auto;
}
.about h1 {
    font-size: 300%;
    line-height: 100%;
    font-family: "Crimson Text", serif;
    margin-top: -5px;
}
.about .meta {
    color: #999;
    font-size: 1em;
    line-height: 1.1em;
    display: block;
    margin: 15px 0 5px 0;
    padding: 15px 0 0 0;
    border-top: 1px dotted #BBB;
}
.about p {
    font-size: 1.2em;
    line-height: 1.5em;
    font-family: "Crimson Text", serif;
    padding: 10px 0;
}
.about .icon-remove-sign {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
    color: #940000;
    cursor: pointer;
}
.about .icon-remove-sign:hover {
    color: #c60d0d;
}

/*  Header Bar container elements
    ------------------------------------------------------- */
.header-bar-container {
    background: #EEEEEE;
    height: 50px;
    position: relative;
    border-bottom: 1px solid #CCC;
    background: rgba(255,255,255,0.75);
    background: -moz-linear-gradient(top,rgba(255,255,255,0.75) 0%, rgba(220,220,220,0.75) 100%), url(../lghtmesh.png);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.75)), color-stop(100%,rgba(220,220,220,0.75))), url(../lghtmesh.png);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0.75) 0%,rgba(220,220,220,0.75) 100%), url(../lghtmesh.png);
    background: -o-linear-gradient(top,  rgba(255,255,255,0.75) 0%,rgba(220,220,220,0.75) 100%), url(../lghtmesh.png);
    background: -ms-linear-gradient(top,  rgba(255,255,255,0.75) 0%,rgba(220,220,220,0.75) 100%), url(../lghtmesh.png);
    background: linear-gradient(to bottom,  rgba(255,255,255,0.75) 0%,rgba(220,220,220,0.75) 100%), url(../lghtmesh.png);
    text-shadow: 0px 1px 0px white;
    box-shadow:  0px 1px 1px 0px rgba(0, 0, 0, .1);
    z-index: 10;
}
.header-bar-container h1 {
    text-transform: uppercase;
    font-size: 200%;
    position: absolute;
    left: 75px;
    top: 1px;
    line-height: 1.5em;
    color: rgba(56,56,56,1);
    text-shadow: 0px 1px 0px rgba(255,255,255,0.79);
}
.header-bar-container .cir-logo {
    position: absolute;
    right: 15px;
    top: 5px;
}
.header-bar-container .last-updated {
    display: block;
    font-size: .7em;
    color: #838383;
    position: absolute;
    left: 318px;
    top: 36px;
}

/* Header menu dropdown styles */

.header-dropdown {
    position: absolute;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: left;
    width: 50px;
    top: 5px;
    left: 15px;
    z-index: 1;
}
.header-dropdown-text {
    cursor: pointer;
    position: absolute;
    background-color: #eee;
    border: 1px solid #bbb;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(255,255,255, .9) inset, 0 1px 3px rgba(0,0,0, .1);
    width: 100%;
    font-size: 175%;
    height: 39px;
    padding-left: 5px;
    color: #666;
    line-height: 1em;
    padding-top: 4px;
}
.ie8 .header-dropdown-text {
    display: none;
}
.ie-header-dropdown-text {
    display: none;
}
.ie8 .ie-header-dropdown-text {
    display: block;
    width: 50px;
    height: 39px;
    position: absolute;
    border: 1px solid #bbb;
    z-index: 2;
    top:0;
    left: 0;
    text-align: center;
    padding-top: 7px;
    border-radius: 3px;
}
.header-dropdown-text:after {
    position: absolute;
    right: 6px;
    top: 15px;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #555 transparent transparent transparent;
}
.header-dropdown-text,
.header-dropdown-content a {
    color: #666;
    text-shadow: 0 1px #fff;
}
.header-dropdown-toggle {
    font-size: 0;
    z-index: 1;
    cursor: pointer;
    position: absolute;
    top: 0;
    border: none;
    padding: 0;
    margin: 0 0 0 1px;
    background: transparent;
    text-indent: -10px;
    height: 34px;
    width: 100%;
}
.header-dropdown-toggle:focus {
    outline: 0;
}
.header-dropdown-content {
    position: absolute;
    top: 32px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 3px;
    text-indent: 10px;
    line-height: 32px;
    background-color: #eee;
    border: 1px solid #ccc;
    width: 225px;
    font-size: .9em;
    box-shadow: 0 1px 0 rgba(255,255,255, .9) inset, 0 1px 3px rgba(0,0,0, .1);
}
.ie8 .header-dropdown-content {
    top: 52px;
}
.header-dropdown-content a {
     display: block;
     border-bottom: 1px solid #BBB;
 }
.header-dropdown-content a:hover {
     background: rgba(193,234,248,0.2);
 }
.header-dropdown-toggle:hover ~ .header-dropdown-text,
.header-dropdown-toggle:focus ~ .header-dropdown-text {
    background-color: #e8e8e8;
}
.header-dropdown-toggle:focus ~ .header-dropdown-text {
    box-shadow: 0 1px 3px rgba(0,0,0, .2) inset, 0 1px 0 rgba(255,255,255, 0.8);
    z-index: 2;
}
.header-dropdown-toggle:focus ~ .header-dropdown-text:after {
    border-width: 0 4px 5px 4px;
    border-color: transparent transparent #555 transparent;
}
.header-dropdown-content:hover,
.header-dropdown-toggle:focus ~ .header-dropdown-content {
    opacity: 1;
    visibility: visible;
    top: 50px;
}

/* Sharing is caring */

.header-dropdown-content .share {
     border-bottom: 1px solid #BBB;
     padding-left: 10px;
     text-indent: 0;
}
.share .title {
    text-transform: uppercase;
    font-size: .7em;
    color: #666;
    display: block;
    font-weight: bold;
}
.share .twitter {
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 55px;
    height: 20px;
    margin-right: 5px;
    cursor: pointer;
}
.share .facebook {
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 45px;
    height: 20px;
    margin-left: 25px;
    cursor: pointer;
}

/*  Map container elements
    ------------------------------------------------------- */
.map-container {
    position: relative;
    height: 450px;
    background: #fff;
}
.map-container .map {
    position: absolute;
    z-index: 1;
}

/*  Location switcher styles */

.map-container .location-switcher {
    position: absolute;
    bottom: 100px;
    left: 15px;
    z-index: 2;
}
.map-container .location-switcher li {
    display: inline-block;
    *display: inline;
    zoom: 1;
    font-size: .7em;
    margin-right: 3px;
    padding-right: 6px;
    border-right: 1px solid #BBBBBB;
    line-height: 1em;
}
.map-container .location-switcher li:first-of-type,
.map-container .location-switcher li:last-of-type {
    margin: 0;
    padding: 0;
    border-right: none;
}

/*  Data legend styles */

.map-container .data-legend {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 175px;
    height: 74px;
    border: 1px solid #BBBBBB;
    background: #EEEEEE;
    font-size: .7em;
    line-height: 1em;
    z-index: 2;
}

/*  Map legend styles */

.map-container .map-legend {
    position: absolute;
    bottom: 15px;
    left: 200px;
    z-index: 2;
}
.map-container .map-legend li {
    display: inline-block;
    *display: inline;
    zoom: 1;
    font-size: .6em;
    line-height: .6em;
    margin-right: 3px;
}
.map-container .map-legend li:last-of-type {
    margin-right: 0;
}
.map-container .map-legend .title {
    display: block;
    font-size: .8em;
    line-height: .8em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333333;
}
.map-container .map-legend .color {
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    border: 1px solid #BBBBBB;
}

/* City popup styles */

#city-popup {
    display: none;
    line-height: 1em;
    position: absolute;                
    z-index: 1000;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: rgb(249,249,249); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(249,249,249,1) 0%, rgba(226,226,226,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249,249,249,1)), color-stop(100%,rgba(226,226,226,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(249,249,249,1) 0%,rgba(226,226,226,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(249,249,249,1) 0%,rgba(226,226,226,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(249,249,249,1) 0%,rgba(226,226,226,1) 100%); /* IE10+ */
    background: linear-gradient(top,  rgba(249,249,249,1) 0%,rgba(226,226,226,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-9 */
    text-shadow: 0px 1px 0px white;
    width: 50%;
    max-width: 500px;
    box-shadow: 0px 2px 9px rgba(0,0,0,0.34);
}
#city-popup ul {
    margin: 0;
    padding: 0;
}
#city-popup li {
    display: inline-block;
    font-size: 1.3em;
    font-weight: bold;
    vertical-align: top;
    margin-right: 10px;
}
#city-popup li.date,
#city-popup li.additional-text {
    margin-right: 0;
}
#city-popup li span {
    display: block;
    color: #666;
    font-size: 10px;
    font-weight: normal;
    text-transform: uppercase;
}
#city-popup .location {
    display: block;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
    margin-right: 0;
    color: #264F7E;
    font-size: 1.5em;
    font-weight: bold;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px rgba(255,255,255,1);
}
#city-popup .additional-text {
    display: block;
    margin-top: 10px;
    text-align: left;
    font-size: .8em;
    font-weight: normal;
}
#city-popup p {
    margin-bottom: 7px;
}
#city-popup .additional-text img {
    float: left;
    margin: 0 10px 5px 0;
}

/*  Data container elements
    ------------------------------------------------------- */
.data-container {
    position: relative;
    min-height: 180px;
    padding: 10px 15px 0 15px;
    box-shadow: inset 0px 1px 0px rgba(255,255,255,.2);
    border-top: 1px solid #000000;
    background: rgba(65,65,65,0.5);
    background: -moz-linear-gradient(top,  rgba(65,65,65,0.5) 0%, rgba(30,33,32,0.5) 100%), url(../txture.png);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(65,65,65,0.5)), color-stop(100%,rgba(30,33,32,0.5))), url(../txture.png);
    background: -webkit-linear-gradient(top,  rgba(65,65,65,0.5) 0%,rgba(30,33,32,0.5) 100%), url(../txture.png);
    background: -o-linear-gradient(top,  rgba(65,65,65,0.5) 0%,rgba(30,33,32,0.5) 100%), url(../txture.png);
    background: -ms-linear-gradient(top,  rgba(65,65,65,0.5) 0%,rgba(30,33,32,0.5) 100%), url(../txture.png);
    background: linear-gradient(to bottom,  rgba(65,65,65,0.5) 0%,rgba(30,33,32,0.5) 100%), url(../txture.png);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424947', endColorstr='#1e2120',GradientType=0 ), url(../txture.png);
}
.data-container .location-name {
    text-transform: uppercase;
    font-size: 175%;
    border-bottom: 1px solid #393939;
    line-height: 1em;
    font-weight: 500;
    color: #a0ad51;
    text-shadow: 0px -1px 0px rgba(0,0,0,1);
    display: inline-block;
}
.data-container .data-about {
    text-transform: uppercase;
    font-size: 100%;
    line-height: 1em;
    font-weight: 500;
    color: #a0ad51;
    text-shadow: 0px -1px 0px rgba(0,0,0,1);
    display: inline-block;
}
.data-container .location-name:after {
    content: "";
    padding-bottom: 5px;
    height: 1px;
    display: block;
    border-bottom: 1px solid #1e1e1e;
}

/*  Data point styles */

.data-points {
    position: absolute;
    left: -100%;
    margin-top: 10px;
    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
    visibility: hidden;
    z-index: -1;
    text-shadow: 0px -1px 0px rgba(0,0,0,1);
}
.ie8 .data-points {
    text-shadow: none;
}
.data-points.active {
    position: relative;
    visibility: visible;
    z-index: 10;
    left: 0;
}
.data-point {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    *display: inline;
    zoom: 1;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid rgba(186,186,186,0);
    z-index: 10;
}
.data-point:hover {
    cursor: pointer;
    border: 1px solid #121212;
    box-shadow: 0 1px 2px rgba(0,0,0, .15) inset, 0 1px 0 rgba(255,255,255, 0.2);
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 1%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.3)), color-stop(1%,rgba(0,0,0,0.3)), color-stop(26%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0)));
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.3) 1%,rgba(0,0,0,0) 26%,rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(top,  rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.3) 1%,rgba(0,0,0,0) 26%,rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(top,  rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.3) 1%,rgba(0,0,0,0) 26%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom,  rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.3) 1%,rgba(0,0,0,0) 26%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d000000', endColorstr='#00000000',GradientType=0 );
}
.data-point .icon,
.details .icon {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: middle;
    background: url(../data-icons.png) transparent top left no-repeat;
    width: 67px;
    height: 67px;
}
#pending-claims-info .icon,
#pending-claims-info-container .icon,
#onduty-info .icon,
#onduty-info-container .icon {
    background-position: -154px 0;
    margin-right: -2px;
}
#pct-change-info .icon,
#pct-change-info-details .icon {
    background-position: 0 0;
    margin-right: -5px;
}
#pct-change-info .icon.down,
#pct-change-info-details .icon.down {
    background-position: -77px 0;
}
#avg-processing-time-info .icon,
#appealed-claims-info .icon,
#avg-processing-time-info-container .icon,
#appealed-claims-info-container .icon {
    background-position: -231px 0;
    margin-right: 1px;
}
#old-claims-info .icon,
#old-claims-info-container .icon {
    background-position: 0px 0;
    margin-right: 1px;
}
#gt-one-year-claims-info .icon,
#gt-one-year-claims-info-container .icon {
    background-position: -77px 0;
}
#claims-per-fte-info .icon,
#claims-per-fte-info-container .icon {
    background-position: -311px 0;
}
#claims-received-info .icon,
#claims-received-info-container .icon {
    background-position: -386px 0;
}
#pct-change-info .icon,
#pct-change-info-container .icon {
    background-position: -533px 0;
}
#newclaims-avg-processing-info .icon,
#newclaims-avg-processing-info .icon {
    background-position: -231px 0;
}
.data-point .number {
    font-size: 210%;
    line-height: 1em;
    margin: 10px 0 7px 0;
    font-weight: 700;
    -webkit-font-smoothing:antialiased;
    text-shadow: 0px -1px 0px rgba(0,0,0,1);
    color: rgba(209,179,72,1);
}
.ie8 .data-point .number {
    color: #d1b348;
}
.data-point .label {
    display: inline-block;
    *display: inline;
    zoom: 1;
    font-size: .8em;
    line-height: 1.1em;
    color: #c9c9c9;
    max-width: 66px;
    font-weight: bold;
    vertical-align: middle;
}
.data-points .controls {
    display: inline-block;
    *display: inline;
    zoom: 1;
    font-size: 250%;
    color: rgba(101,101,101,0.9);
    vertical-align: middle;
    cursor: pointer;
}
.data-points .controls:hover {
    color: rgba(127,127,127,0.9);
}
.controls .icon-chevron-right {
    text-align: center;
}
.ie8 .controls .icon-chevron-right {
    display: none;
}
.controls .ie {
    display: none;
}
.ie8 .controls .ie {
    display: inline-block;
    *display: inline;
    zoom: 1;
}
.stretch {
    width: 100%;
    display: inline-block;
    *display: inline;
    zoom: 1;
    font-size: 0;
    line-height: 0
}

/* Data detail styles */

.details {
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px;
    z-index: 0;
    background: rgba(65,65,65,0.5);
    background: -moz-linear-gradient(top,  rgba(65,65,65,0.5) 0%, rgba(30,33,32,0.5) 100%), url(../txture.png);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(65,65,65,0.5)), color-stop(100%,rgba(30,33,32,0.5))), url(../txture.png);
    background: -webkit-linear-gradient(top,  rgba(65,65,65,0.5) 0%,rgba(30,33,32,0.5) 100%), url(../txture.png);
    background: -o-linear-gradient(top,  rgba(65,65,65,0.5) 0%,rgba(30,33,32,0.5) 100%), url(../txture.png);
    background: -ms-linear-gradient(top,  rgba(65,65,65,0.5) 0%,rgba(30,33,32,0.5) 100%), url(../txture.png);
    background: linear-gradient(to bottom,  rgba(65,65,65,0.5) 0%,rgba(30,33,32,0.5) 100%), url(../txture.png);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424947', endColorstr='#1e2120',GradientType=0 ), url(../txture.png);
    text-shadow: 0px -1px 0px rgba(0,0,0,1);
}
.details.active {
    z-index: 20;
    top: 46px;
    visibility: visible;
}
.details .icon {
    margin-right: 5px;
}
.details .number {
    display: inline-block;
    *display: inline;
    zoom: 1;
    line-height: 0;
    margin: 0;
    vertical-align: middle;
    font-size: 210%;
    font-weight: 700;
    -webkit-font-smoothing:antialiased;
    text-shadow: 0px -1px 0px rgba(0,0,0,1);
    color: rgba(209,179,72,1);
}
.ie8 .details .number {
    color: #d1b348;
}
.details .label {
    display: block;
    max-width: 60%;
    line-height: 1.3em;
    font-weight: normal;
    font-size: .9em;
    color: #C9C9C9;
    text-shadow: 0px -1px 0px rgba(0,0,0,1);
}
.details .sparkgraph {
    position: absolute;
    float: right;
    top: 15px;
    right: 11%;
    width: 160px;
    height: 100px;
    border: 1px solid #171717;
    background: rgba(0,0,0,0.2);
    border-radius: 2px;
}
.details .icon-remove-sign {
    position: absolute;
    top: 47px;
    right: 25px;
    line-height: 1em;
    font-size: 300%;
    text-align: right;
    color: rgba(101,101,101,0.9);
    cursor: pointer;
}
.details .icon-remove-sign:hover {
    color: #666;
}
.ie8 .details .icon-remove-sign {
    display: none;
}
.ie-remove {
    display: none;
}
.ie8 .ie-remove {
    display: block;
    position: absolute;
    top: 47px;
    right: 25px;
    line-height: 1em;
    font-size: 30px;
    text-align: right;
    color: rgba(101,101,101,0.9);
    cursor: pointer;
}

/* Data menu dropdown styles */

.data-dropdown {
    position: absolute;
    display: inline-block;
    text-align: left;
    width: 50px;
    top: 5px;
    right: 15px;
    z-index: 20;
}
.data-dropdown-text {
    cursor: pointer;
    position: absolute;
    background: rgba(101,101,101,0.9);
    background: -moz-linear-gradient(top,  rgba(101,101,101,0.9) 0%, rgba(62,62,62,0.9) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(101,101,101,0.9)), color-stop(100%,rgba(62,62,62,0.9)));
    background: -webkit-linear-gradient(top,  rgba(101,101,101,0.9) 0%,rgba(62,62,62,0.9) 100%);
    background: -o-linear-gradient(top,  rgba(101,101,101,0.9) 0%,rgba(62,62,62,0.9) 100%);
    background: -ms-linear-gradient(top,  rgba(101,101,101,0.9) 0%,rgba(62,62,62,0.9) 100%);
    background: linear-gradient(to bottom,  rgba(101,101,101,0.9) 0%,rgba(62,62,62,0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424947', endColorstr='#1e2120',GradientType=0 );
    border: 1px solid #000000;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(255,255,255, .4) inset, 0 1px 3px rgba(0,0,0, .6);
    width: 100%;
    font-size: 175%;
    height: 33px;
    padding-left: 5px;
}
.data-dropdown-text .icon-cog {
     line-height: 0;
     display: block;
     line-height: 1em;
     position: absolute;
     top: 3px;
     left: 5px;
     color: rgba(0,0,0,0.7);
 }
.ie8 .data-dropdown-text .icon-cog {
    left: 12px;
}
.data-dropdown-text:after {
    position: absolute;
    right: 6px;
    top: 15px;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: rgba(0,0,0,0.7) transparent transparent transparent;
}
.ie8 .data-dropdown-text:after {
    display: none;
}
.data-dropdown-content a {
    color: #b4b4b4;
    text-shadow: 0px -1px 0px rgba(0,0,0,1)
}
.data-dropdown-toggle {
    font-size: 0;
    z-index: 1;
    cursor: pointer;
    position: absolute;
    top: 0;
    border: none;
    padding: 0;
    margin: 0 0 0 1px;
    background: transparent;
    text-indent: -10px;
    height: 34px;
    width: 100%;
    display: block;
}
.data-dropdown-toggle:focus {
    outline: 0;
}
.data-dropdown-content {
    position: absolute;
    top: 32px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 3px;
    text-indent: 10px;
    line-height: 32px;
    border: 1px solid #ccc;
    width: 200px;
    font-size: .9em;
    background: rgba(101,101,101,1);
    background: -moz-linear-gradient(top,  rgba(101,101,101,1) 0%, rgba(62,62,62,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(101,101,101,1)), color-stop(100%,rgba(62,62,62,1)));
    background: -webkit-linear-gradient(top,  rgba(101,101,101,1) 0%,rgba(62,62,62,1) 100%);
    background: -o-linear-gradient(top,  rgba(101,101,101,1) 0%,rgba(62,62,62,1) 100%);
    background: -ms-linear-gradient(top,  rgba(101,101,101,1) 0%,rgba(62,62,62,1) 100%);
    background: linear-gradient(to bottom,  rgba(101,101,101,1) 0%,rgba(62,62,62,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424947', endColorstr='#1e2120',GradientType=0 );
    border: 1px solid #000000;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(255,255,255, .4) inset, 0 1px 2px 1px rgba(0,0,0, .4);
}
.data-dropdown-content a {
    display: block;
    border-bottom: 1px solid #7d7d7d;
}
.data-dropdown-content a:after {
    content: "";
    height: 1px;
    display: block;
    border-bottom: 1px solid #393939;
}
.data-dropdown-content a:hover {
    background: rgba(162,174,83,0.2);
    color: rgba(0,0,0,1);
    text-shadow: none;
 }
.data-dropdown-toggle:hover ~ .data-dropdown-text,
.data-dropdown-toggle:focus ~ .data-dropdown-text {
    background-color: #e8e8e8;
}
.data-dropdown-toggle:focus ~ .data-dropdown-text {
    box-shadow: 0 1px 3px rgba(0,0,0, .4) inset, 0 1px 0 rgba(255,255,255, 0.2);
    z-index: 2;
}
.data-dropdown-toggle:focus ~ .data-dropdown-text:after {
    border-width: 0 4px 5px 4px;
    border-color: transparent transparent rgba(0,0,0,0.7) transparent;
}
.data-dropdown-content:hover,
.data-dropdown-toggle:focus ~ .data-dropdown-content {
    opacity: 1;
    visibility: visible;
    top: 44px;
}

/* Data Filter styles */

.data-filters {
    position: absolute;
    top: 6px;
    right: 80px;
    height: 31px;
    width: 145px;
}
.data-filters .slider,
.data-filters .sorter {
    position: absolute;
    top: 31px;
    opacity: 0;
    visibility: hidden;
}
.data-filters .slider {
    height: 100%;
    width: 100%;
    margin-top: 7px;
}
.data-filters .slider.active {
    visibility: visible;
    opacity: 1;
    width: 100%;
    top: 0;
}
#thru-dates {
    margin-bottom: 10px;
    font-size: .7em;
    text-align: center;
    color: #BBB;
}
.data-filters .sorter {
    margin: 5px 0 0 0;
    width: 100%;
}
.data-filters .sorter.active {
    visibility: visible;
    opacity: 1;
    top: 0;
}
.sorter select {
    width: 100%;
}
.sorter select:focus {
    outline: 0;
}
.dotz {
    z-index: 9;
    position: relative;
    float: left;
    width: 15000px;
    height: 15000px;
    top: -5000px;
    left: -5000px;
}

/* jQuery slider style overrides */

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: none !important;
    background: transparent url(../slider-toggle.png) no-repeat !important;
    outline: none !important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default:focus {
    outline: none !important;
}
.ui-slider-horizontal {
    height: 12px !important;
    border-radius: 10px !important;
    background: #1a1a1a !important;
    border: none !important;
    box-shadow: inset 0px 1px 3px black, 0px 1px 0px #383838 !important;
}