﻿/** TIMELINE **/
div.timeline {
    width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
div.timeline ul {
    position: relative;
    padding-left: 0px;
    margin: 0px;
    padding: 0px;
}
div.timeline ul div.lineContainer {
    position: absolute;
    left: 50%;
    height: 100%;
    z-index: 0;
}
div.timeline ul div.line {
    position: relative;
    left: -50%;
    width: 4px;
    height: 100%;
    background-color: #d1d1d1;
}

div.timeline ul div.time {
    display: block;
    width: 260px;
    height: 25px;
    padding: 5px 0px 0px 0px;
    background-color: #063048;
    color: white;
    font-weight: bold;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    margin-top: 5px;
    float: none;
    clear: both;
    z-index: 1;
    position: relative;
}
div.timeline ul li {
    position: relative;
    width: 365px;
    height: auto;
    background-color: white;
    vertical-align: middle;
    list-style-type: none;
    margin-bottom: 30px;
    /*transition: 0.2s;*/
}
div.timeline ul li:nth-of-type(odd) {
    float: left;
}

div.timeline ul li:nth-of-type(even) {
    float: right;
}

div.timeline ul li div.timelineIcon {
    width: 32px;
    height: 32px;
    border: 3px solid #dddddd;
    position: absolute;
    border-radius: 50%;
    background-color: white;
    top: -4px;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center center;
}
div.timeline ul li:nth-of-type(odd) div.timelineIcon {
    right: -54px;
}
div.timeline ul li:nth-of-type(even) div.timelineIcon {
    left: -54px;
}
        
div.timeline ul li div.pointer {
    top: 6px;
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid transparent;
}
div.timeline ul li:nth-of-type(odd) div.pointer {
    right: -16px;
}
div.timeline ul li:nth-of-type(even) div.pointer {
    left: -16px;
}

div.timeline li div.caption {
    padding: 4px;
    color: #5E5E5E;
    background-image: url('statefade.png');
    background-repeat: repeat-x;
    border-radius: 3px;
    height: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid transparent;
    border-top: 1px solid #FFFFFF;
}
div.timeline li div.caption:active, div.timeline li div.caption:focus {
    border: 1px dashed #DDDDDD;
}

/*div.timeline li div.description {
    padding: 5px;
    color: #5c5c5c;
    border-color: rgba(0, 0, 0, 0.12);
    border-style: solid;
    border-width: 0px 1px 1px 1px;
}*/
        
div.timeline ul div.timeline-skip {
    background-image: url('timeline-skip.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px 19px;
    margin: 0 auto;
    margin-bottom: 10px;
    width: 8px;
    height: 19px;
    position: relative;
}

div.timeline ul div.timelineArrow {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    position: relative;
}
div.timeline ul div.timelineArrow.timelineArrowUp {
    background-image: url('collapse.png');
    background-position: center top;
}
div.timeline ul div.timelineArrow.timelineArrowUp:hover {
    background-image: url('collapsehover.png');
}
div.timeline ul div.timelineArrow.timelineArrowDown {
    background-image: url('expand.png');
    background-position: center bottom;
}
div.timeline ul div.timelineArrow.timelineArrowDown:hover {
    background-image: url('expandhover.png');
}

div.timeline ul div.clear {
    display: block;
    min-height: 45px;
    float: none;
}
div.timeline ul div.clear.clearLast {
    min-height: 32px;
}