<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Updated formatting for displaying the SIMILE timeline.
 */

/* Timeline container div */
.timeline.timeline-container {
    height: 400px;
    margin-bottom: 20px;
    border: 1px solid rgba(90,80,100, 0.5);
}

.timeline .timeline-date-label {
    line-height: normal;
}

.timeline .timeline-copyright {
    display: none;
}

/* Resets the background for all timeline bands to white, so we know what the base is. */
.timeline .timeline-band {
    background: #fff !important;
}

/* Background colors for the top band. */
.timeline .timeline-band-0 .timeline-ether-bg{
    background-color:rgba(90,80,100, 0.02);
    background: -moz-linear-gradient(top,  rgba(90,80,100,0) 0%, rgba(90,80,100,0.12) 80%, rgba(90,80,100,0.15) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(90,80,100,0)), color-stop(80%,rgba(90,80,100,0.12)), color-stop(100%,rgba(90,80,100,0.15))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(90,80,100,0) 0%,rgba(90,80,100,0.12) 80%,rgba(90,80,100,0.15) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(90,80,100,0) 0%,rgba(90,80,100,0.12) 80%,rgba(90,80,100,0.15) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(90,80,100,0) 0%,rgba(90,80,100,0.12) 80%,rgba(90,80,100,0.15) 100%); /* IE10+ */
    background: linear-gradient(top,  rgba(90,80,100,0) 0%,rgba(90,80,100,0.12) 80%,rgba(90,80,100,0.15) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#005a5064', endColorstr='#265a5064',GradientType=0 ); /* IE6-9 */
}

/* Background color for the bottom band. */
.timeline .timeline-band-1 .timeline-ether-bg{
    background-color:rgba(90,80,100, 0.9);
    background: -moz-linear-gradient(top,  rgba(90,80,100,0.9) 0%, rgba(90,80,100,0.95) 50%, rgba(90,80,100,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(90,80,100,0.9)), color-stop(50%,rgba(90,80,100,0.95)), color-stop(100%,rgba(90,80,100,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(90,80,100,0.9) 0%,rgba(90,80,100,0.95) 50%,rgba(90,80,100,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(90,80,100,0.9) 0%,rgba(90,80,100,0.95) 50%,rgba(90,80,100,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(90,80,100,0.9) 0%,rgba(90,80,100,0.95) 50%,rgba(90,80,100,1) 100%); /* IE10+ */
    background: linear-gradient(top,  rgba(90,80,100,0.9) 0%,rgba(90,80,100,0.95) 50%,rgba(90,80,100,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e65a5064', endColorstr='#5a5064',GradientType=0 ); /* IE6-9 */
}

/* Text label for events on the top band. */
.timeline .timeline-event-label {
    /*background: rgba(0,0,0, 0.05);*/
    font-size: 14px !important;
}

/* Hide the icons for events on the top band.*/
.timeline .timeline-event-icon img {
    display: none;
}

/*
Now, we'll use some CSS magic to make a 6px circle with border radius.

To change the background color of an event dot, just change the 'background'
property to whatever you'd like. To change the width and height, modify
'width' and 'height' to your liking, then make sure 'border-radius' is half
of whatever you set for width/height, if you want a circle.
*/
.timeline .timeline-event-icon {
    background: rgba(190, 160, 5, 0.75);
    width: 6px;
    height: 6px;
    border-radius: 3px;
}

.timeline .timeline-event-tape,
.timeline .timeline-small-event-tape {
    background: rgba(190, 160, 5, 0.75);
}

.timeline .timeline-band-1 .timeline-ether-highlight {
    background: rgba(255,255,255, 0.35);
}

.timeline .timeline-band-1 .timeline-small-event-icon {
    background: rgba(240, 200, 15, 0.75);
}

/* Styles for the month label on the top band. */
.timeline .timeline-date-label {
}

/* Styles for the year label on the top band. */
.timeline .timeline-date-label-em {
    color:rgba(190, 160, 5, 0.75);
    font-weight:bold;
    height:1.5em !important;
    font-size: 12px !important;
}

/* Styles for the date label on the bottom band. */
.timeline .timeline-band-1 .timeline-date-label {
    font-size: 12px !important;
}

/* Title inside an event bubble. */
.timeline-event-bubble-title {
    font-size: 14px !important;
    border:none !important;
    padding: 40px 20px 0 !important;
}

/* Link inside the title inside an event bubble. */
.timeline-event-bubble-title a {
    text-decoration:none !important;
}

.timeline-event-bubble-image {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    margin-top: 40px;
}
/* The event description inside an event bubble. */
.timeline-event-bubble-body {
    font-size: 12px !important;
    border-width: 1px 0 !important;
    padding:10px 20px !important;
}

/*
Reset the font size to 1em, in case there are paragraphs or other HTML
elements inside the event body.
*/
.timeline-event-bubble-body * {
    font-size: 1em !important;
}

/* The timestamp at the bottom of an event bubble.*/
.timeline-event-bubble-time {
    font-weight:bold;
    text-align:right;
    padding:10px 20px !important;
    clear:both;
    font-size: 12px !important;
}

/* Bubble background images. Ugh. */
.simileAjax-bubble-contentContainer {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.simileAjax-bubble-border-top,
.simileAjax-bubble-border-left,
.simileAjax-bubble-border-right,
.simileAjax-bubble-border-bottom,
.simileAjax-bubble-border-top-left,
.simileAjax-bubble-border-top-right,
.simileAjax-bubble-border-bottom-left,
.simileAjax-bubble-border-bottom-right {
    display:none !important;
}

div.simileAjax-bubble-close {
    right: 10px !important;
    top: 10px !important;
}
.simileAjax-bubble-close-pngTranslucent {
    background-image: url('../img/close-button.png') !important;
}

.simileAjax-bubble-arrow-point-left-pngTranslucent {
    background-image: url('../img/bubble-arrow-point-left.png') !important;
}

.simileAjax-bubble-arrow-point-right-pngTranslucent {
    background-image: url('../img/bubble-arrow-point-right.png') !important;
}

.simileAjax-bubble-arrow-point-up-pngTranslucent {
    background-image: url('../img/bubble-arrow-point-up.png') !important;
}

.simileAjax-bubble-arrow-point-down-pngTranslucent {
    background-image: url('../img/bubble-arrow-point-down.png') !important;
    background-position: top center !important;
}
</pre></body></html>