


.chart.vis-grouped-column-chart {
    overflow: hidden;
}



/*
 * Default Theme
 * -------------
 *
 */

body, html {
    height: 99%;
}

a { color: #0088CC; }

body.chart {
    font-family: Helvetica Neue, Arial;
    font-weight: 400;
    font-size: 12px;
    margin: 0 5px;
    background: #fff;
}

h1 {
    font-size: 22px;
    font-weight: 300;
    margin: 0 0 10px;
    text-align: left;
}

h1 span {
}

/* NOTE: On IE, there is a border around each image which is a link */
a img { border:0px; }

.chart p { margin: 5px 0 10px!important; line-height: 19px;}

#chart {
    margin-top: 10px;
}

#chart.line-chart {
    margin-top: 20px;
}

.label {
    font-size: 12px;
}

.label span {
    color: #333;
    text-shadow: 0 0 2px #fff;
}

.label.inverted span {
    text-shadow: 0 0px 2px #000000;
}

.label.outline span {
    text-shadow: 0 1px 0 #FFFFFF, 1px 0 0 #FFFFFF, 0 -1px 0 #FFFFFF, -1px 0 0 #FFFFFF,
        1px 1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF,
        0 2px 1px #FFFFFF, 2px 0 1px #FFFFFF, 0 -2px 1px #FFFFFF, -2px 0 1px #FFFFFF,
        -1px 2px 0px #FFFFFF, 2px -1px 0px #FFFFFF, -1px -2px 0px #FFFFFF, -2px -1px 0px #FFFFFF,
        1px 2px 0px #FFFFFF, 2px 1px 0px #FFFFFF, 1px -2px 0px #FFFFFF, -2px 1px 0px #FFFFFF;
}

.label.highlighted, .label.axis {
    font-size: 12px;
    z-index: 100;
}

.label.hover {
    font-weight: bold;
}

.label.inverted span {
    color: #fff;
}

.label.highlighted {
    font-weight: bold;
}

.label.value span {
    font-size: 12px;
}

.label.series span {
    font-size: 12px;
}


.tooltip {
    z-index: 200;
    padding-bottom: 0px;
}

.tooltip .content {
    background-color: #fff;
    border: 1px solid #888;
    box-shadow: 2px 2px 2px rgba(0,0,0,.2);
    padding: 5px 8px;
}

.tooltip label {
    font-weight: 700;
}

.tooltip label:after {
    content: ": ";
}

#footer {
    font-size: 11px;
    color: #888;
    /* The footer must now cover the chart to allow
    the toggleable panel to "go up" */
    z-index: 1100;
    /* Sets the background here to propagate it to its children */
    background:transparent;
}


#footer .footer-left {
    bottom:0;
    /* Vertical text align */
}

/* We have to break to absolute positionof the footer
to allow absolute positioning related to the #footer
within the .toggleable-panel */
#footer .footer-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.footer-right .toggle-panel {
    display:none;
}


.footer-right .toggle-panel:after {
    content:" ▲";
}

/* Add a comma after the source block */
.toggleable-panel .source-block:after {
    content:","
}

/* This oiverlay cover the body when the toggleable panel is open */
.toggleable-panel-overlay {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    opacity:0;
    background:#fff;
    /* Bellow the stacking context to avoid overlap toggle link */
    z-index:-1;

    -moz-transition: opacity 0.7s;
    -webkit-transition: opacity 0.7s;
    -ms-transition: opacity 0.7s;
    -o-transition: opacity 0.7s;
}

/* Target screens under 400px */
@media all and (max-width: 400px) {
    /* We must compensate the right offset
    that we just removed by adding this distances to
    the .toggle-panel element (that toggles the about panel).
    We choose to user padding to enlarge the touchable area.  */

   #footer .footer-right {
        position:static;
        float:right;
        text-align:right;
        right:0;
        bottom:0;
        /* Vertical text align */
        padding:0 5px;
        overflow:hidden;
        padding-top: 5px;
    }

    .footer-right .toggle-panel {
        position:absolute;
        right:0;
        bottom:0;
        display:block;
        /* Vertical text align */
        width:100%;
    }

    .footer-right .toggleable-panel {
        background:#eee;
        position:absolute;
        left:0;
        right:0;
        bottom:0;
        /* Ensures that the toggleable panel is beside the stack context
        to allow the mouse to reach .footer-left */
        z-index:1110;
        text-align:left;
        overflow:hidden;
        line-height:inherit;

        padding:0 5px;
        max-height:0;

        -moz-transition: max-height 0.7s;
        -webkit-transition: max-height 0.7s;
        -ms-transition: max-height 0.7s;
        -o-transition: max-height 0.7s;
    }

    .toggleable-panel .source-block {
        display:block;
        white-space:nowrap;
        padding-bottom:5px;
    }

    .toggleable-panel .source-block:after {
        /* Removes the comma after the source */
        content:""
    }

    #footer .footer-right:hover .toggleable-panel  {
        padding:5px;
        max-height:90px;
    }

    #footer .footer-right:hover  {
        /* Avoids to loose the 'hover' when the mouse
         go through the toggleable-panel links  */
        height:20px;
    }

    #footer .footer-right:hover + .toggleable-panel-overlay {
        top:-1000000%;
        opacity:0.8;
    }
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

svg .axis, svg .tick, svg .grid, svg rect {
    shape-rendering: crispEdges;
}


.label.rotate90 {
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.label.smaller span {
    font-size: 80%;
}

.filter-links {
    height: 30px;
    overflow: hidden;
}

.filter-links a {
    padding: 0px 10px;
    box-shadow: 0 0 10px #ddd inset;
    border: 1px solid #bbb;
    border-left: 0;
    display: block;
    float: left;
    text-decoration: underline;
    color: #666;
    height: 28px;
    line-height: 28px;
    background: #fbfbfb;
}

.filter-links a:hover {
    background: #fff;
    color: #0088CC;
}

*+html .filter-links a {  background: #eeeeee; } /** IE7 hack **/
.filter-links a { background: #eeeeee\0/; }  /** IE8 hack **/


.filter-links a.active {
    font-weight: bold;
    color: #000;
    box-shadow: none;
    background: #fff;
    cursor: default;
    text-decoration: none;
}

.filter-links a:first-child {
    border-radius: 10px 0 0 10px;
    border-left: 1px solid #bbb;
}

.filter-links a:last-child {
    border-radius: 0 10px 10px 0;
}

.filter-select {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 4px 4px 4px 4px;
    padding: 4px 6px;
    vertical-align: middle;
    font-size: 12px;
}

.line-chart .tooltip {
    border-radius: 5px;
}




/*
 * Twitter Theme
 * -------------
 *
 */

body, html {
    height: 100%;
    color: #333;
    font-family: Helvetica Neue,​Helvetica,​Arial,​sans-serif;
    margin: 0;
}
body {
    margin-left: 8px;
    margin-right: 8px;
}
body.fullscreen {
    width: auto !important;
}

a {
    color: #0084B4;
    font: 200 15px/18px Helvetica Neue,Helvetica,Arial,sans-serif;
    outline: 0 none;
    text-decoration: none;
}

p {
    color: #666;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 11px;
    padding: 0
}

#header {
    margin-bottom: 22px;
    padding-top: 8px;
}

a:hover {
    text-decoration: underline;
}


body.chart {
    background: #fff;
    overflow: visible;
    overflow-x:hidden;
}


h1 {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    line-height: 24px;
    margin: 0 0 11px;
    text-align: left;
}

h1 span {
}

#chart {
    margin-top: 10px;
}

#chart.line-chart {
    margin-top: 20px;
}

.label span {
    font-size: 13px;
    color: #555;
}

.label.highlighted, .label.axis {
    font-size: 12px;
    z-index: 100;
}

.label.hover {
    font-weight: bold;
}

.label.inverted span {
    color: #fff;
}

.label.highlighted {
    font-weight: bold;
}

.label.value span {
    font-size: 13px;
}

.label.series span {
    font-size: 13px;
}


.tooltip {
    z-index: 200;
    padding-bottom: 0px;
}

.tooltip .content {
    background-color: #fff;
    border: 1px solid #888;
    box-shadow: 2px 2px 2px rgba(0,0,0,.2);
    padding: 5px 8px;
}

.tooltip label {
    font-weight: 700;
}

.tooltip label:after {
    content: ": ";
}

.chart #footer {
    height: 50px;
    font: 200 15px/18px Helvetica Neue,Helvetica, Arial, sans-serif;     
    /* The footer must now cover the chart to allow
    the toggleable panel to "go up" */
    z-index: 1100;
    /* Sets the background here to propagate it to its children */
    background:transparent;
}

#footer .footer-left {
    bottom: 0;
}

/* We have to break to absolute positionof the footer
to allow absolute positioning related to the #footer
within the .toggleable-panel */
#footer .footer-right {
    position: absolute;
    bottom: 0;
    right: 0;   
    padding:5px;
}

.footer-right .toggle-panel {
    display:none;
}


.footer-right .toggle-panel:after {
    content:" ▲";
}

/* Add a comma after the source block */
.toggleable-panel .source-block:after {
    content:","
}

/* This oiverlay cover the body when the toggleable panel is open */
.toggleable-panel-overlay {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    opacity:0;
    background:#fff;
    /* Bellow the stacking context to avoid overlap toggle link */
    z-index:-1;

    -moz-transition: opacity 0.7s;
    -webkit-transition: opacity 0.7s;
    -ms-transition: opacity 0.7s;
    -o-transition: opacity 0.7s;
}

/* Target screens under 400px */
@media all and (max-width: 400px) {
    /* We must compensate the right offset
    that we just removed by adding this distances to
    the .toggle-panel element (that toggles the about panel).
    We choose to user padding to enlarge the touchable area.  */

   #footer .footer-right {
        position:static;
        float:right;
        text-align:right;
        right:0;
        bottom:0;
        /* Vertical text align */
        padding:0 5px;
        overflow:hidden;
        padding-top: 5px;
    }

    .footer-right .toggle-panel {
        position:absolute;
        right:0;
        bottom:0;
        display:block;
        /* Vertical text align */
        width:100%;
        padding:10px;
    }

    .footer-right .toggleable-panel {
        background:#eee;
        position:absolute;
        left:0;
        right:0;
        bottom:0;
        /* Ensures that the toggleable panel is beside the stack context
        to allow the mouse to reach .footer-left */
        z-index:1110;
        text-align:left;
        overflow:hidden;
        line-height:inherit;

        padding:0 10px;
        max-height:0;

        -moz-transition: max-height 0.7s;
        -webkit-transition: max-height 0.7s;
        -ms-transition: max-height 0.7s;
        -o-transition: max-height 0.7s;
    }

    .toggleable-panel .source-block {
        display:block;
        white-space:nowrap;
        padding-bottom:5px;
    }

    .toggleable-panel .source-block:after {
        /* Removes the comma after the source */
        content:""
    }

    #footer .footer-right:hover .toggleable-panel  {        
        padding:10px;
        max-height:90px;
    }

    #footer .footer-right:hover  {
        /* Avoids to loose the 'hover' when the mouse
         go through the toggleable-panel links  */
        height:20px;
    }

    #footer .footer-right:hover + .toggleable-panel-overlay {
        top:-1000000%;
        opacity:0.8;
    }

    #footer .embed-code {
        left:10px;
        right:10px;
        bottom:45px;   
        width:auto;     
    }

    #footer .embed-code textarea {
        width:100%;
    }
}

body.fullscreen #footer {
    bottom: 20px;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

svg .axis, svg .tick, svg .grid, svg rect {
    shape-rendering: crispEdges;
}


.label.rotate90 {
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.label.smaller span {
    font-size: 80%;
}

.filter-links a {
    padding: 0px 10px;
    box-shadow: 0 0 10px #ddd inset;
    border: 1px solid #bbb;
    border-left: 0;
    display: inline-block;
    text-decoration: none;
    color: #666;
    height: 28px;
    line-height: 28px;
    background: #fbfbfb;
}


.filter-links a:hover {
    background: #fff;
}

.filter-links a.active {
    font-weight: bold;
    color: #000;
    box-shadow: none;
    background: #fff;
    cursor: default;
}

.filter-links a:first-child {
    border-radius: 10px 0 0 10px;
    border-left: 1px solid #bbb;
}

.filter-links a:last-child {
    border-radius: 0 10px 10px 0;
}

.filter-select {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 4px 4px 4px 4px;
    padding: 4px 6px;
    vertical-align: middle;
}

.line-chart .tooltip {
    border-radius: 5px;
}

.hide {
    display: none;
}

.embed-code {
    position: absolute;
    z-index:110;
    bottom: 25px;
    left: auto;
    right: 8px;
    width: 370px;
    min-height: 130px;
    padding: 15px;
    background: #FFF;
    /*border: 1px solid #333;*/
    color: #000;
    border-radius: 6px;
    text-transform: none;
    font-size: 12px;
    box-shadow: 1px 1px 1px rgba(3, 3, 3, 0.2), -1px 2px 1px rgba(3, 3, 3, 0.2), 1px -1px 1px rgba(3, 3, 3, 0.2);
}

.footer-right .embed-code{
    left: -10px;
}
.embed-code textarea {
    width: 360px;
    margin-top: 8px;
    height: 7.2em;
    border: 1px solid rgba(3, 3, 3, 0.2);
}

.embed-code .close {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
    opacity: 0.7;
}

.embed-code .close:hover {
    opacity: 1;
}

/*!
 * Bootstrap v2.3.2
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
.table {
  width: 100%;
  margin-bottom: 20px;
  clear: both;
}
.table th,
.table td {
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table th {
  font-weight: bold;
}
.table thead th {
  vertical-align: bottom;
}
.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}
.table tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table .table {
  background-color: #ffffff;
}
.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
  border-collapse: separate;
  *border-collapse: collapse;
  border-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.table-bordered th,
.table-bordered td {
  border-left: 1px solid #dddddd;
}
.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
.table-bordered thead:first-child tr:first-child > th:first-child,
.table-bordered tbody:first-child tr:first-child > td:first-child,
.table-bordered tbody:first-child tr:first-child > th:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
.table-bordered thead:first-child tr:first-child > th:last-child,
.table-bordered tbody:first-child tr:first-child > td:last-child,
.table-bordered tbody:first-child tr:first-child > th:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:first-child,
.table-bordered tbody:last-child tr:last-child > td:first-child,
.table-bordered tbody:last-child tr:last-child > th:first-child,
.table-bordered tfoot:last-child tr:last-child > td:first-child,
.table-bordered tfoot:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.table-bordered thead:last-child tr:last-child > th:last-child,
.table-bordered tbody:last-child tr:last-child > td:last-child,
.table-bordered tbody:last-child tr:last-child > th:last-child,
.table-bordered tfoot:last-child tr:last-child > td:last-child,
.table-bordered tfoot:last-child tr:last-child > th:last-child {
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}
.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
}
.table-bordered caption + thead tr:first-child th:first-child,
.table-bordered caption + tbody tr:first-child td:first-child,
.table-bordered colgroup + thead tr:first-child th:first-child,
.table-bordered colgroup + tbody tr:first-child td:first-child {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
}
.table-bordered caption + thead tr:first-child th:last-child,
.table-bordered caption + tbody tr:first-child td:last-child,
.table-bordered colgroup + thead tr:first-child th:last-child,
.table-bordered colgroup + tbody tr:first-child td:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
}
.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
  background-color: #f5f5f5;
}
table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
  display: table-cell;
  float: none;
  margin-left: 0;
}
.table td.span1,
.table th.span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}
.table td.span2,
.table th.span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}
.table td.span3,
.table th.span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}
.table td.span4,
.table th.span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}
.table td.span5,
.table th.span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}
.table td.span6,
.table th.span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}
.table td.span7,
.table th.span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}
.table td.span8,
.table th.span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}
.table td.span9,
.table th.span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}
.table td.span10,
.table th.span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}
.table td.span11,
.table th.span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}
.table td.span12,
.table th.span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}
.table tbody tr.success > td {
  background-color: #dff0d8;
}
.table tbody tr.error > td {
  background-color: #f2dede;
}
.table tbody tr.warning > td {
  background-color: #fcf8e3;
}
.table tbody tr.info > td {
  background-color: #d9edf7;
}
.table-hover tbody tr.success:hover > td {
  background-color: #d0e9c6;
}
.table-hover tbody tr.error:hover > td {
  background-color: #ebcccc;
}
.table-hover tbody tr.warning:hover > td {
  background-color: #faf2cc;
}
.table-hover tbody tr.info:hover > td {
  background-color: #c4e3f3;
}

.table tbody tr > td.highlight {
  background-color: #fcf8e3;
}

.table-striped tbody > tr:nth-child(odd) > td.highlight,
.table-striped tbody > tr:nth-child(odd) > th.highlight {
  background-color: #F3EFDA;
}

.table thead th {
    vertical-align: middle;
    line-height: 16px;
    text-shadow: 1px 1px 0 #dadada;
    background: #e4e2e5;
    background: -moz-linear-gradient(top,  #e4e2e5 16%, #c7c7c7 73%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(16%,#e4e2e5), color-stop(73%,#c7c7c7));
    background: -webkit-linear-gradient(top,  #e4e2e5 16%,#c7c7c7 73%);
    background: -o-linear-gradient(top,  #e4e2e5 16%,#c7c7c7 73%);
    background: -ms-linear-gradient(top,  #e4e2e5 16%,#c7c7c7 73%);
    background: linear-gradient(to bottom,  #e4e2e5 16%,#c7c7c7 73%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e2e5', endColorstr='#c7c7c7',GradientType=0 );
}

.table th.sorting_asc:after {
    content: '▼';
    color: #777;
    white-space: nowrap;
}

.table th.sorting_desc:after {
    content: '▲';
    white-space: nowrap;
    color: #777;
}


