pre {
    background-color: #EEE;
    display: inline-block;
    white-space: pre-wrap;
}

header h1 { color: #FFF; }

h1 { color: #69F; }

h2 { padding: .5em; margin: 0; }

h3 {
    margin: 0;
}

.active + div {
    padding-bottom: .75em !IMPORTANT;
}

.panel {
    width: 100%;
    padding: 0;
}

.panel ul { padding: 0; }

.panel li {
    list-style: none;
    padding: .75em 0;
}

.panel .listException {
    padding: 0 0 0 2.5em;
}

.panel .listException li {
    list-style: disc;
    padding: 0;
}

.panel pre {
    margin: 0;
    vertical-align: top;
}

ol.linenums {
	padding-left: 2em !IMPORTANT;
}

.linenums li {
    list-style: decimal;
    list-style-type: decimal !IMPORTANT;
    padding: 0;
}

.next {
    float: right;
    text-align: right;
    margin-top: 2em;
    color: #69F;
    width: 50%;
}

.previous {
    float: left;
    text-align: left;
    margin-top: 2em;
    color: #69F;
    width: 50%;
}

.next a, .previous a {
    color: #69f;
    text-decoration: none;
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    cursor: pointer;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: .75em;
    color: #777;
    float: right;
    margin-right: 2em;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    background-color: white;
    border-bottom: 2px solid #EEE;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}



.split50 {
    width: 50%;
    float: left;
}

.split50 pre {
    width: 99%;
}

#container {
	margin: 1em;
	overflow: auto;
}

.cover {
	width: 50%;
    margin: 2em 25%;
}