/* Define content container */
.experience-container {
    position: relative;
    width: 100%;
    padding-top: 16px;
    overflow: hidden;
}
/* Define content row */
.row-container {
    width: 100%;
    display: block;
    clear: both;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

/* Box shape, size, position rules */
.summary-box {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    display: block;
    box-sizing: border-box;
    position: relative;
    width: 45%;
}

.pos-left {
    float: left;
}

.pos-right {
    float: right;
}

/* Summary box content */
.summary-content {
    padding-left: 8px;
    color: #000;
}

.summary-content-title {
    font-size: 20px;
    margin: 0;
}

.summary-content-year {
    font-size: 16px;
    margin: 0;
}

.summary-content-para {
    font-size: 14px;
    margin: 0;
}

/* Timeline element */
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 5px;
    background-color: #fff;
    z-index: 1;
}

