/** Adapted from: http://jsfiddle.net/kthornbloom/zJ6kp/ **/
.timeline {
    white-space:nowrap;
    overflow-x: auto;
    padding:30px 0 10px 0;
    position:relative;
}

.entry {
    display:inline-block;
    vertical-align:top;
    background:#eee;
    color:#000;
    padding:8px;
    font-size:12px;
    text-align:center;
    position:relative;
    border-top:4px solid #06182E;
    border-radius:3px;
    min-width:180px;
    max-width:500px;
    margin-right: 15px;
    margin-left: 15px;
}

th, td {
    padding: 15px;
}

.entry img {
    display:block;
    max-width:100%;
    height:auto;
    margin-bottom:10px;
}

.entry:after {
    content:'';
    display:block;
    background:#eee;
    width:10px;
    height:10px;
    border-radius:6px;
    border:3px solid #06182E;
    position:absolute;
    left:50%;
    top:-30px;
    margin-left:-2px;
}

.entry:before {
    content:'';
    display:block;
    background:#06182E;
    width:5px;
    height:20px;
    position:absolute;
    left:50%;
    top:-21px;
    margin-left:0px;
}

.entry h1 {
    color:#999;
    font-size:16px;
    font-weight:bold;
    margin-bottom:10px;
}

.entry h2 {
    margin-bottom:10px;
    font-size:14px;
}

.bar {
    height:4px;
    background:#eee;
    width:100%;
    position:relative;
    top:13px;
    left:0;
}
