@media only screen and (max-width: 768px)
{
    body {
        width: 95%;
    }
}
@media only screen and (min-width: 768px)
{
    body {
        width: 95%;
    }
}
@media only screen and (min-width: 1024px)
{
    body {
        width: 80%;
    }
}
@media only screen and (min-width: 1280px)
{
    body {
        width: 65%;
    }
}
@media only screen and (min-width: 1600px)
{
    body {
        width: 50%;
    }
}
body {
    margin: auto;
    background-color: #ffffff
}
h2 {
    text-align: center;
}
h3 {
    text-align: center;
    font-size: 1.3em;
}
h4 {
    font-size: 1.1em;
}
.legendColor {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1px;
    margin-right: 2px;
    border-color: #000000;
    border-width: 1px;
    border-style: solid;
    width: 2em;
    height: 1em;
}
.legendText {
    vertical-align: middle;
    font-size: 100%;
    margin: auto;
}
.legend {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: auto;
}
.legendItem {
    display: inline-block;
    margin: 5px;
    padding: 2px;
    padding-bottom: 3px;
}
.legendItem.hidden {
    background-color: #bbb;
}
.legendItem.hidden:hover {
    background-color: #ccc;
}
.legendItem.shown:hover {
    background-color: #ddd;
}
.graphContent {
    border: 1px solid #ccc;
    border-style: solid;
}
.datasetContent {
    position: relative;
    margin: 0px;
    height: 100%;
    width: 100%;
}
.datasetContent .graphContent {
    float: left;
    margin: auto;
    width: 100%;
}
.datasetContent .graphContent.hidden {
    position: absolute;
    visibility: hidden;
}
.datasetContent .graphContent.show {
    position: relative;
    visibility: show;
}

.datasetSwitchContainer {
    float: left;
    width: 100%;
    border: 1px;
    border-bottom: 0px;
    border-color: #ccc;
    border-style: solid;
}

.graph {
    width: 100%;
}
.exampleGraph {
    display:block;
    margin: auto;
    width: 100%;
    height: auto;
}
.details {
    font-size: 0.8em;
}
.updateTime {
    font-size: 0.7em;
}
.title p {
    text-align: center;
    font-size: 1.2em;
}
.tabs {
    overflow: hidden;
    background-color: #ccc; 
}
.tabs button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none !important;
    cursor: pointer;
    padding: 10px;
    width: 50%;
}
.tabs button:focus {
    outline: none !important;
}
.tabs button::-moz-focus-inner {
    outline: none;
    border: 0;
}
.tabs button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tabs button.active {
    outline: none !important;
    background-color: #fff;
}

/* Style the tab content */
.tabcontent {
    position: relative;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
.about {
    text-align: left;
}
