.leftSide {
    float: right;
    width: 60%;
    position: relative;
}
.chartContainer {
    float: left;
    overflow: hidden;
    margin-bottom: 50px;
}
.bar0 {
    position: absolute;
    left: 10%;
    width: 80%;
    height: 800px;
    background: rgba(232, 231, 220, 0.8);
    top: 20%;
    border: 1px solid #aaa;
    border-top: 1px solid #aaa;
}
.bar {
    position: absolute;
    left: 50%;
    top: 20%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background: #fff;
    border: 1px solid #aaa;
    border-top: 3px solid #fff;
    margin-left: -60px;
    width: 120px;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}
.insideNum {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    color: black;
}
.kicker {
    position: absolute;
    bottom: 26px;
    text-align: center;
    width: 100%;
    left: 0;
    color: #aaa !important;
}
.rightSide {
    float: left;
    width: 40%;
}
.rightItem {
    font-size: 13px;
    position: relative;
    line-height: 15px;
    margin-bottom: 5px;
    float: left;
    width: 100%;
    padding: 4px 3px;
    color: #aaa;
    cursor: pointer;
    font-weight: 100;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cancelText {
    opacity: 0;
    height: 0px !import;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
    text-decoration: none !important;
    color: red;
    font-weight: 100;
}
.rightItem:hover .rightWords {
    color: black;
}
.rightItem:hover .rightButton {
	opacity: 1;
}
.rightItem:hover .cancelText {
    opacity: 1;
    height: 17px;
    text-decoration: none !important;
    color: red;
}
.rightItem.selected {
    color: #000;
    font-weight: bold;
}
.rightHeader {
    float: left;
    width: 100%;
    margin-top: 14px;
    font-weight: normal;
    font-weight: 14px;
    line-height: 14px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #C41820;
}
.secondHeader {
    margin-top: 30px;
}
.rightButton {
    position: absolute;
    left: 6px;
    top: 4px;
    float: left;
    font-weight: 400;
    padding: 0px 2px 2px 2px;
    width: 10px;
    height: 12px;
    text-align: center;
    font-size: 8px;
    /*    border: 1px solid #ccc;*/
    opacity: 0.6;
    background: #7D93B8;
    color: white;
    margin-right: 9px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.selected .rightButton {
    background: #C72020;
}
.rightWords {
    float: left;
    padding-left: 28px;
}
@media screen and (max-width: 600px) {
    .leftSide {
        width: 25%;
    }
    .rightSide {
        width: 75%;
    }
    .bar {
        margin-left: -30px;
        width: 60px;
    }
}
