

/*
 * base stylesheets included in every chart
 */
.chart #header {
  min-height: 1px;
  position: relative;
}
.chart #header .header-right {
  position: absolute;
  right: 10px;
  z-index: 20;
}
.chart #footer {
  min-height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
}
.chart #footer .footer-left,
.chart #footer .footer-right {
  position: absolute;
  bottom: 5px;
  z-index: 1000;
}
.chart #footer .footer-left {
  left: 5px;
}
.chart #footer .footer-right {
  right: 5px;
}
.chart .logo {
  position: absolute;
  right: 0;
  bottom: 0;
}
.chart .logo .big {
  display: none;
}
.chart.plain #footer {
  height: 10px;
}
.chart.js .noscript {
  display: none;
}
.chart .hidden {
  display: none;
}
.chart .label.annotation span {
  background: transparent;
}


/*
 * special styles for bar charts
 */

html .chart #footer {
    position: relative;
    top: auto;
    left: auto;
}

html .chart #footer .footer-left { left: 0;}

.chart.vis-bar-chart {
    overflow-x: hidden;
}


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

body, html {

}

a { color: #0088CC; }

body.chart {
    font-family: Helvetica Neue, Arial;
    font-weight: 400;
    font-size: 12px;
    margin: 0 0px;
    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: 17px;}

#chart {
    margin-top: 10px;
}

.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.outline span sup {
    text-shadow: none;
}

.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: ": ";
}

.dw-chart-notes {
    font-style: italic;
    margin-bottom: 10px;
}

.chart.theme-default .dw-chart-notes {
    font-style: italic;
    margin-bottom: 5px;
    position: relative;
    margin-top: 10px;
}

#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;
}

.chart.theme-default #footer .footer-left {
    left: 0;
}


#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;
}


/* 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.  */

    .chart #footer { height: auto; }

    .chart #footer .footer-left {
        position: static;
    }

    .chart #footer .footer-right {
        position:static;
        float:none;
        text-align:left;
        /* Vertical text align */
        padding: 0;
        margin: 2px 0 0;
    }
}

.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;
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
    /* no fullscreen button on smartphones, never */
    .fs-btn {
        display: none!important;
    }
}

@font-face {
    font-family: 'LyonTextRegular';
    src: url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Regular.eot');
    src: url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Regular.eot?#iefix') format('embedded-opentype'),
         url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Regular.woff') format('woff'),
         url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'LyonTextRegularItalic';
    src: url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Regular Italic.eot');
    src: url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Regular Italic.eot?#iefix') format('embedded-opentype'),
         url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Regular Italic.woff') format('woff'),
         url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Regular Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'LyonTextSemibold';
    src: url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Semibold.eot');
    src: url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Semibold.eot?#iefix') format('embedded-opentype'),
         url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Semibold.woff') format('woff'),
         url('http://static.2014.internazionale.it/assets/fonts/Lyon-Text/Lyon Text Web-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: bold;
}
640
a img { border:0px;
}
body, html {
    height: 99%;
}
.column-chart{
  max-width: 90%;
  max-height: 90%;

}
.stacked-column-chart{
 max-width: 90%;
  max-height: 90%;
}



.chart.theme-internazionale {
    font-size: 13px;
    line-height: 1.2;
    font-family: LyonTextRegular, Verdana, Arial;
    color: #000000;
    font-style: normal;
    margin: 0 0px;
}


.theme-internazionale #header h1 {
    color: #000000;
    font-size:  112.5%;
    line-height: 1.2;
    font-family: 'LyonTextSemibold', Verdana, Arial;
    margin: 0 0 10px;
    text-align: left;
}

.theme-internazionale #header h1 span {
    color: #000000;
    font-family: 'LyonTextSemibold', Verdana, Arial;
    font-size: 112.5%;
}

.theme-internazionale .chart-intro {
    padding: 0 0px;
    font-size:  112.5%;
    font-family: 'LyonTextRegular', Verdana, Arial;

}
.chart p { margin: 5px 0 10px!important;}
.theme-internazionale #chart {
   margin-top: 10px;
}

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

.theme-internazionale #chart .label {
    font-size:  99%;
    font-family: 'LyonTextRegular', Verdana, Arial;
    background: transparent;
}

.theme-internazionale #chart .label.axis span,
.theme-binternazionale #chart .label.series span{
    background: transparent;
}

body.chart.theme-internazionale #footer {
    font-size: 12px;
    color: #000000;
    font-family: LyonTextRegularItalic, Verdana, Arial;
    font-style: italic;
    background:transparent;
    z-index: 1100;


}

.theme-internazionale #footer .logo {
    line-height: 0;
}
.theme-internazionale #footer .footer-left {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
}

.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;
}


.theme-internazionale #footer a {
    color: #006A9C;
    text-decoration: none;
    font-family: 'LyonTextRegularItalic', Verdana, Arial;
    font-style: italic;
}

.theme-internazionale #footer a:hover {
    text-decoration: underline;
}

.label.series span {
font-size:  87.5%;
font-family: 'LyonTextRegular', Verdana, Arial;
font-style: normal;
background-color: transparent;
}

.label.value span {
font-size:  87.5%;
font-family: 'LyonTextRegular', Verdana, Arial;
font-style: normal;
background-color: transparent;
}



/* 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;
}



.pie-chart .label.series span,
.donut-chart .label.series span,
.election-donut-chart .label.series span {
    background: transparent!important;
}

#header .filter-ui {
    margin-left: 10px;
}

#header .filter-links a:first-child,
#header .filter-links a:last-child {
    border-radius: 0;
}

.filter-links a {
    background: #ededed;
    box-shadow: 0 0 3px #eee inset;
    font-family: LyonTextRegular, Verdana, Arial;
    font-style: normal;
    font-size: 100%;
}
div .filter-ui filter-links{
font-family: LyonTextRegular, Verdana, Arial;
font-style: normal;
}
.label.outline span {
}

svg .axis, svg .tick, svg .grid, svg rect {
    shape-rendering: crispEdges;
}
#datatable > tbody > tr{
background-color: #ffffff;
border: 1px solid #d3d3d3;
}

.datatable-default tbody td {
    border-color: #ffffff;
    text-align: left;

}


#datatable > tbody{
 border-right: 2px solid #ffffff!important;
}
#datatable_wrapper{
  border: 2px solid #ffffff!important;
}

.datatable-default {
width: 80%!important;
}
#datatable > tbody > tr> td{
text-align: left;
}

#datatable > thead > tr > th.sorting_asc:after{
display:none;
}

#header > a{
display:none;
}

.fs-btn.top-right {
display:none;
}

/* 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.  */

body {
    font-size: 75%;
}
#chart .label {
font-size: 32%;
}

}


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);
}

.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: 75%;
}

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

/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
    /* no fullscreen button on smartphones, never */
 body {
    font-size: 75%;
}
#chart .label {
font-size: 32%;
}
    .fs-btn {
        display: none!important;
    }
}
}



