body {
    font-family: 'Open Sans Condensed', Helvetica, Verdana, sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: 'Marcellus SC', serif;
    margin-top: 2em;
}

a {
    color: rgb(9, 76, 121);
    text-decoration: none;
}

a:hover {
    color: rgb(73, 140, 185);
}

.components {
    position: relative;
}

.editor {

}

.tabs {
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.tabs li {
    list-style-type: none;
    display: inline-block;
    height: 40px;
    margin: 0;
}

.tabs li .start {
    width: 20px;
    height: 40px;
    background-image: url("../images/tabStart.svg");
    vertical-align: middle;
    display: inline-block;
    margin-left: -1em;
    position: relative;
    z-index: 1;
}

.tabs li .menu-start-current {
    background-image: url("../images/tabStartActive.svg");
}

.tabs li .content {
    background-color: rgb(204, 204, 204);
    font-weight: 300;
    font-size: 20px;
    height: calc(39px - 0.2em);
    margin: 0 -0.25em;
    border-top: 1px solid rgb(170, 170, 170);
    display: inline-block;
    vertical-align: middle;
    padding-top: 0.2em;
    position: relative;
    z-index: 3;
}

.tabs li .end {
    width: 20px;
    height: 40px;
    background-image: url("../images/tabEnd.svg");
    vertical-align: middle;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.tabs li.active .start {
    background-image: url("../images/tabStartActive.svg");
    z-index: 4;
}

.tabs li.active .content {
    background-color: rgb(9, 76, 121);
    border-top: 1px solid rgb(9, 76, 121);
    color: rgb(255, 255, 255);
    z-index: 6;
}

.tabs li.active .content a {
    color: rgb(255, 255, 255);
}

.tabs li.active .end {
    background-image: url("../images/tabEndActive.svg");
    z-index: 5;
}

.pane {
    height: 320px;
    background-color: rgb(240, 240, 240);
    border: 1px solid rgb(170, 170, 170);
    font-size: 16px;
}

textarea {
    min-height: 18em;
    min-width: 25em;
    border: 1px solid rgb(170, 170, 170);
    padding: 1px;
    line-height: 15px;
    font-size: 13px;
}

.line-number {
    font-family: monospace;
    width: 1.4em;
    text-align: right;
    line-height: 15px;
    font-size: 13px;
}

.tabs li.settings-wheel {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url("../images/Gear.svg") no-repeat;
    cursor: pointer;
    position: relative;
    top: 12px;
    margin: 0 0.3em;
}

.toolbar {
    width: calc(100% - 2px);
    background-color: rgb(204, 204, 204);
    border: 1px solid rgb(170, 170, 170);
    height: 22px;
    font-size: 16px;
}

.save-button {
    background: url("../images/Save-Icon.svg") no-repeat 0 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 0 solid rgb(204, 204, 204);
    padding: 0;
    cursor: pointer;
}

.load-button {
    background: url("../images/Load-Icon.svg") no-repeat 0 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 0 solid rgb(204, 204, 204);
    padding: 0;
    cursor: pointer;
}

.compile-button {
    background: url("../images/Compile-Icon.svg") no-repeat 0 0;
    background-size: 18px;
    width: 20px;
    height: 20px;
    display: inline-block;
    border: 0 solid rgb(204, 204, 204);
    padding: 0;
    cursor: pointer;
}

.error-console {
    background-color: rgb(204, 204, 204);
    border: 1px solid rgb(170, 170, 170);
    width: calc(100% - 10px);
    padding: 0 4px;
}

.error-console h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-family: 'Open Sans Condensed', Helvetica, Verdana, sans-serif;
    font-weight: normal;
}

.error-console li {
    list-style-type: none;
    font-size: 16px;
}