﻿@font-face{
    font-family:'PT Sans';
    src:url('../fonts/PTS55F.ttf');
}
@font-face{
    font-family:'PT Sans';
    font-weight:bold;
    src:url('../fonts/PTS75F.ttf');
}
@font-face{
    font-family:'Roboto';
    src:url('../fonts/Roboto-Regular.ttf');
}
*{
    box-sizing:border-box;
}
body{
    font-size:16px;
    font-family:'PT Sans', sans-serif;
    color:#5c5c5c;
    margin:0;
    padding:0;
}
.page{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;    
}
.content{
    width:100%;
    height:100%;
    border-collapse:collapse;
}
.content th{
    background:#3d833e;
    padding:10px;
    color:#fff;
    text-align:left;    
    font-weight: normal;
}
.content tr{
    border-bottom:1px solid #e1e1e1;
}
.item-row{
    cursor:pointer;
}
.item-name{
    font-weight:bold;
    padding-left:10px;
}
.item-value{
    font-size:1.2em;
    text-align:right;
    font-family:'Roboto';
}
.item-value .up::before{
    content:'';
    display:inline-block;
    width:12px;
    height:1em;
    background:url('../images/up.png') no-repeat center center;
    background-size:contain;
    margin-right:10px;
    color:#58ad2d;
}
.item-value .down::before{
    content:'';
    display:inline-block;
    width:12px;
    height:1em;
    background:url('../images/down.png') no-repeat center center;
    background-size:contain;
    margin-right:10px;
    color:#e80000;
}
.item-variation{
    font-size:0.8em;
    font-weight:bold;
    padding-right:10px;
    text-align:right;
    width:70px;
}
tr.chart-row{
    padding:0;
    border-bottom:none;
    height:254px;
}
tr.chart-row td{
    padding:0;
}
.chart-container{
    margin:0 auto;
    width:calc(100% - 50px);
    height:200px;
    overflow:visible;
}
.chartdiv{
    width:100%;
    height:calc(100% + 1px);
    transform:translateY(-1px);
}
.selector-container{
    position:relative;
    padding:0 25px;
}
.selector{
    position:relative;
    display:table;
    width:100%;
    z-index:2;
}
.selector label{
    display:inline-block;
    width:25%;
    text-align:center;
    height:50px;
    line-height:50px;
    transition:all 0.5s;
}
.selector label:hover{
    background:#e1e1e1;
    cursor:pointer;
}
.selector-bar{
    width:25%;
    height:4px;
    background:#3d833e;
    transition:all 0.5s;
}
.selector-back{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:4px;
    background:#e1e1e1;
}
.DD:checked ~ .selector-bar{
    margin-left:0;
}
.MM:checked ~ .selector-bar{
    margin-left:25%;
}
.SM:checked ~ .selector-bar{
    margin-left:50%;
}
.YY:checked ~ .selector-bar{
    margin-left:75%;
}
.footer{
    background:#3d833e;
    height:45px;
}
.footer td{
    text-align:center;
    padding:0;
}
.logo{
    display:block;
    background:#fff;
    padding:10px;
    text-decoration:none;
    cursor:pointer;
    color:inherit;
}
.logo img{
    width:100px;
    margin-left:5px;
}
.more{
    display:block;
    height:45px;
    line-height:45px;
    color:#fff;
    font-weight:bold;
    text-decoration:none;
}
.more:hover{
    cursor:pointer;
    text-decoration:underline;
}
.up{
    color:#58ad2d;
}
.down{
    color:#e80000;
}