@import url(http://fonts.googleapis.com/css?family=Lato:400|Raleway:400);

/* apply a natural box layout model to all elements */
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.muted {
    color: #999999;
}
.hr-light {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #999999;
    margin: 1em 0;
    padding: 0;
}
/*simple grid based off http://css-tricks.com/dont-overthink-it-grids/*/
.grid:after {
    content: "";
    display: table;
    clear: both;
}
.grid {
    padding-top: 140px;
}
[class*='col-'] {
    float: left;
}
[class*='col-']:last-of-type {
    padding-right: 0;
}
/*colums for events*/
.col-sand-left {
    width: calc(50% - 5px);
    margin: 0 auto;
    padding: 0;
}
.col-sand-middle {
    width: 5px;
}
.col-sand-right {
    width: calc(50% - 5px);
    margin: 0 auto;
    padding: 0;
}
header {
    clear: both;
    -webkit-user-select: none;
    /* Chrome all / Safari all */
    
    -moz-user-select: none;
    /* Firefox all */
    
    -ms-user-select: none;
    /* IE 10+ */
    
    /* No support for these yet, use at own risk */
    -o-user-select: none;
    user-select: none;
    position: fixed;
    background-color: #fffffe;
    z-index: 9999;
    width: 100%;
    max-width: 1140px;
}
header h1 {
    float: left;
    margin-bottom: 0px;
    clear: both;
}
header p {
    font-size: 20px;
    clear: both;
    padding: 0;
    margin: 0;
}
header .icon-bar {
    float: right;
    margin-top: 30px;
}
body {
    color: #2C2C2C;
    height: 100%;
    background: white;
    font: 400 1em 'Lato';
    -webkit-font-smoothing: antialiased;
    max-width: 1140px;
    min-width: 500px;
    margin: 0 auto;
}
body.modalShown,
html.modalShown {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
/**button bar**/
.icon-bar label {
    display: block;
}
.icon-bar .group {
    display: inline-block;
    margin-right: 20px;
    min-width: 150px;
}
.icon-bar i {
    display: inline-block;
    cursor: pointer;
    font-size: 28px;
    color: #999999;
}
.icon-bar i:hover {
    color: #0090f5;
}
/*event styling*/
figcaption {
    font: 900 190% 'Lato';
    -webkit-text-stroke: .25px;
}
h2 {
    font: 400 400% 'Raleway';
    padding-bottom: 100px;
    color: #b2cde9;
}
h6 {
    color: #0090f5;
    font: 400 80% Tahoma;
}
h6 small {
    color: #999999;
}
p,
ol {
    font: 400 95% 'Raleway';
    padding: 3px 0 20px 0;
    color: #575757;
    text-align: justify;
    width: 70%;
}
ol {
    list-style: disc;
    margin-top: -20px;
    padding-left: 40px;
}
figure {
    float: right;
    width: 100%;
}
.timeline-event {
    cursor: pointer;
    position: absolute;
    overflow: hidden;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -ms-transition: all 250ms;
    -o-transition: all 250ms;
}
.timeline-event:before {
    position: absolute;
    top: 1px;
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.timeline-event.selected {
    width: 100% !important;
    /* Whatever width you want the box to be */
    height: 100% !important;
    overflow: scroll;
    position: fixed;
    background-color: white;
    top: 0 !important;
    left: 0 !important;
    margin: 0 auto;
    z-index: 9999;
}
/*timeline containers*/
.left-timeline {
    min-height: 1px;
    position: relative;
}
.left-timeline .timeline-event {
    text-align: right;
    float: right;
    border-right-width: 2px;
    border-right-style: solid;
}
.left-timeline .timeline-event p,
.left-timeline .timeline-event figure {
    float: right;
}
.left-timeline .timeline-event.selected {
    text-align: left !important;
    float: none !important;
    overflow: hidden;
}
.left-timeline .timeline-event.selected p,
.left-timeline .timeline-event.selected figure {
    float: none !important;
}
.left-timeline .timeline-event:before {
    right: 0px;
    border-right: 12px solid #0090F5;
    border-right-color: inherit;
}
.right-timeline {
    min-height: 1px;
    position: relative;
}
.right-timeline .timeline-event {
    border-left-width: 2px;
    border-left-style: solid;
    text-align: left;
    float: left;
}
.right-timeline .timeline-event p,
.right-timeline .timeline-event figure {
    float: left;
}
.right-timeline .timeline-event.selected {
    text-align: left !important;
    float: none !important;
    overflow: hidden;
}
.right-timeline .timeline-event.selected p,
.right-timeline .timeline-event.selected figure {
    float: none !important;
}
.right-timeline .timeline-event:before {
    border-left: 12px solid #0090F5;
    border-left-color: inherit;
}
.center-timeline {
    min-height: 1px;
    border-radius: 3px;
}