.interactiveContainer {
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    width: 100%;
    font-family: "Source Sans Pro", Arial, sans-serif;
    float: left;
}
.tableHeader {
    float: left;
    font-size: 23px;
    font-weight: 100;
    margin-bottom: 10px;
    margin-left: 35px;
}
.explainer {
    float: left;
    font-size: 14px;
    font-weight: 400;
    font-size: 14px;
    color: #555;
    margin: 10px 0;
    margin-left: 35px;
}
.optionTop {
    float: left;
    margin-left: 35px;
}
.optionItem {
    float: left;
    padding: 5px 7px;
    margin-left: -1px;
    border: #aaa solid 1px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    color: #ccc;
}
.optionItem.selected {
    color: darkblue;
    background: #EDF0F5;
    -webkit-box-shadow: inset 1px 1px 7px -2px #8FA9D9;
    -moz-box-shadow: inset 1px 1px 7px -2px #8FA9D9;
    box-shadow: inset 1px 1px 7px -2px #8FA9D9;
}
.optionItem:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.optionItem:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.toolbar {
    float: left;
    width: 100%;
    margin: 20px 0 20px 35px;
}
.toolHeader {
    float: left;
    width: 100%;
}
.age {
    font-size: 20px;
}
.toolItem {
    float: left;
    padding: 5px 5px 3px 0;
    margin-right: 20px;
    border-bottom: 3px solid maroon;
    color: #333;
    /*	opacity: 0.4;*/
    
    font-size: 14px;
    font-weight: 300;
    border-radius: 3px;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    margin-bottom: 10px;
}
.toolItem.selected {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-box-shadow: inset 1px 3px 8px 1px #333;
    box-shadow: inset 1px 3px 8px 1px #333;
}
.toolItem:hover {
    opacity: 1;
}
.tooltip {
    position: fixed;
    display: none;
    padding: 10px;
    background: white;
    z-index: 100;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    border: 1px solid #ccc;
    font-size: 13px;
    box-shadow: 2px 2px 12px 2px #ccc;
    -moz-box-shadow: 2px 2px 12px 2px #ccc;
    opacity: 0.95;
}
.chart {
    position: relative;
    float: left;
    width: 100%;
    height: 400px;
}
.chartContainer {
    position: absolute;
    left: 20%;
    width: 80%;
    top: 0;
    height: 80%;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.leftLabel {
    position: absolute;
    left: 0;
    top: 0;
    height: 80%;
    width: 20%;
}
.bottomLabel {
    position: absolute;
    left: 20%;
    bottom: 0;
    height: 20%;
    width: 80%;
}
.point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: maroon;
    opacity: 0.5;
    border-radius: 50%;
    margin-left: -8px;
    margin-top: 8px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    cursor: pointer;
}
.point:hover {
    opacity: 1;
}
.leftTitle {
    width: 300px;
    margin-left: -150px;
    top: 50%;
    left: 10%;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.bottomTitle {
    width: 300px;
    margin-left: -150px;
    bottom: 30%;
    left: 50%;
}
.bottomTitle, .leftTitle {
    font-size: 19px;
    position: absolute;
    text-align: center;
    color: #aaa;
}
.bottomTick {
    position: absolute;
    text-align: center;
    top: 20px;
    margin-left: -13px;
}
.bottomTick:nth-child(4n) {
    display: none;
}
.tickVert {
    position: absolute;
    height: 10px;
    width: 2px;
    top: 0;
    border-left: 1px solid #ccc;
}
.leftTick {
    position: absolute;
    width: 10px;
    right: 32px;
    text-align: right;
    height: 10px;
    padding-bottom: 50px;
}
.leftTick, .bottomTick {
    font-weight: bold;
    font-size: 11px;
    color: #555;
}
.tickHor {
    position: absolute;
    width: 10px;
    font-size: 11px;
    right: 0;
    border-bottom: 1px solid #ccc;
}
.closeTooltip {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}
.divider {
    position: absolute;
    height: 100%;
    border-left: 4px solid #8c0c04;
    margin-left: -2px;
    top: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.chartWords {
    position: absolute;
    font-size: 13px;
    right: 49%;
    top: 5%;
    width: 45%;
    color: #8c0c04;
    text-align: right;
    font-weight: 400;
}
.familyIcon {
    width: 80%;
    padding: 0 13% 0 7%;
}
.familyText {
    width: 100%;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.addPerson {
    float: left;
    margin-top: 18px;
    font-size: 14px;
    color: maroon;
    font-weight: bold;
    cursor: pointer;
    display: none;
}
.addPerson:hover {
    color: red;
}
.personTitle {
    font-size: 10px;
    text-transform: uppercase;
    color: maroon;
    font-weight: 400;
    margin-left: 3px;
    visibility: hidden;
    height: 14px;
}
.toolItem:first-child .personTitle {
    visibility: visible;
}
.remove {
    font-size: 11px;
    color: maroon;
    cursor: pointer;
    font-weight: normal;
}
.remove:hover {
    color: red;
}
.interactive_byline {
    float: left;
    width: 100%;
    margin: 5px 0 0px 35px;
    font-size: 11px;
    text-transform: uppercase;
    color: #aaa;
    text-align: left;
}
@media screen and (min-width: 600px) {
    .chart {
        position: relative;
        float: left;
        width: 100%;
        height: 500px;
    }
    .familyIcon {
        float: left;
        width: 40%;
        padding: 0;
    }
    .familyText {
        float: left;
        padding-left: 5%;
        width: 95%;
    }
    .chartContainer {
        position: absolute;
        left: 10%;
        width: 90%;
        top: 0;
        height: 89%;
    }
    .bottomTitle {
        bottom: 0;
    }
    .leftLabel {
        position: absolute;
        left: 0;
        top: 0;
        height: 89%;
        width: 10%;
    }
    .bottomLabel {
        position: absolute;
        left: 10%;
        bottom: 0;
        height: 12%;
        width: 90%;
    }
    .bottomTick:nth-child(4n) {
        display: block;
    }
    .chartWords {
        font-size: 15px;
    }
}
