body {
    background: linear-gradient(to bottom right, #1c5b6f, gray 50%);
    /*linear-gradient(to bottom right, #85d5ef, #538696 50%)*/
    /*background: linear-gradient(to bottom right, #538696, #85d5ef 50%);*/
    z-index: 50;
    font-family: "Muli", sans-serif;
}

button:focus {
    outline:0;
}

/*button {*/
    /*font-family: 'Muli', sans-serif;*/
/*}*/

html, body {
    height:100%;
}

#main {
    display: inline-block;
    width: 1100px;
}

#edit_volume {
    margin: 10px;
}

.logo {
    margin: 5px 0px 5px 15px;
    color: white;
    font-family: 'Racing Sans One', cursive;
    /*font-family: 'Rammetto One', cursive;*/
    font-size: 28pt;
    float: left;
}

.logo a {
    color: white;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: 200px;
}

.navlink {
    margin: 10px 10px 5px 15px;
    font-size: 18pt;
    color: white;
    float: right;
}
.navlink a:hover {
    color: lightblue;
}
.navlink a {
    color: white;
    text-decoration: none;
}

#title button {
    margin: 10px;
    float: right;
}

#title_text {
    color: white;
    padding: 20px;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
}

#note_counter {
    color: white;
    padding: 20px;
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
}

#title {
    padding: 10px;
    float: left;
    font-size: 18pt;
}

#description_text {
    padding: 13px;
    float: left;
}

#description {
}

#description_icon {
    margin: 20px;
}

.loading {
    color: white;
    font-size: 24pt;
    width: 1047px;
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 900px;
}

.panel {
    padding: 10px;
    margin-left: 10px;
    margin-right: 10000px; /*yuk*/
    background: linear-gradient(to bottom right, gray, white);
    border-radius: 10px;
    display: inline-block;
}

#pane {
    background-color: white;
    border-radius: 10px;
    display: inline-block;
}

.shown {
    display: block;
}

.hidden {
    display: none;
}

.abs {
    position: absolute;
}

#tab_container {
    width: 1050px;
    overflow-x: scroll;
    overflow-y: visible;
}

.tab_set {
    clear: both;
    padding: 0px 0px 40px 30px;
    width: 2000px;
}

.tab {
    display: block;
    margin-top: 1em;
    background-color: white;
    font-size: 12pt;
    font-family: 'Anonymous Pro script=all', Courier, monospace;
    line-height: 0px;
}

#fretboard {
    display: inline-block;
    position: relative;
}

.circle {
    float:left;
    margin: 20px 40px 20px 40px;
    position: relative;
    background: #98dce4;/*was lightblue*/
    height: 100px;
    width: 100px;
    border-radius: 50px;
    -webkit-box-shadow: 2px 2px 17px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 2px 2px 17px 0px rgba(0, 0, 0, 1);
    box-shadow: 2px 2px 17px 0px rgba(0, 0, 0, 1);
    outline: 0;
}

.circleDown {
    -webkit-box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 1);
    box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 1);
}

/* from https://css-tricks.com/making-pure-css-playpause-button/ */
.play_button {
    position: absolute;
    left: 25px;
    top: 20px;
    background: transparent;
    box-sizing: border-box;
    width: 0;
    height: 60px;
    outline : none;
    border-color: transparent transparent transparent #202020;
    transition: 80ms all ease;
    cursor: pointer;
    border-style: solid;
    border-width: 30px 0 30px 60px;
}

.play_button.paused {
    left: 20px;
    border-style: double;
    border-width: 0px 0 0px 60px;
}
.play_button.disabled {
    border-color: transparent transparent transparent #969393;
}
/*.play_button:hover {*/
    /*border-color: transparent transparent transparent #5a5a5a;*/
/*}*/

#playCircle:hover * {
    border-color: transparent transparent transparent #5a5a5a;
}

.smallCircle {
    margin: 20px 40px 20px 20px;
    position: relative;
    background: #98dce4;/*was lightblue*/
    height: 30px;
    width: 30px;
    border-radius: 15px;
    -webkit-box-shadow: 2px 2px 17px 0px rgba(0, 0, 0, 1);
    -moz-box-shadow: 2px 2px 17px 0px rgba(0, 0, 0, 1);
    box-shadow: 2px 2px 17px 0px rgba(0, 0, 0, 1);
}

.settings_button {
    margin: 0px;
    border: 0;
    background: transparent;
}

.settings_elem {
    position: absolute;
    background: #202020;
}

#loop_settings_dialog_button:hover * {
    background: #5a5a5a;
}

.slider {
    top: 17px;
    height: 60px;
    width: 2px;
}

.s1 {
    left: 27px;
}

.s2 {
    left: 49px;
}

.s3 {
    left: 71px;
}

.knob {
    height: 6px;
    width: 14px;
}

.k1 {
    top: 61px;
    left: 21px;
}

.k2 {
    top: 33px;
    left: 43px;
}

.k3 {
    top: 51px;
    left: 65px;
}

.count_in {
    display: inline-block;
    margin-right: 2px;
}
.sub {
    display: inline-block;
    margin-right: 2px;
}

/*patch to make jquery modal dialog not have a gray stripe,
per https://stackoverflow.com/questions/3200000/jquery-ui-modal-dialog-stripe-issue*/
.ui-widget-overlay {
    background: #000;
}

.inactive_tab {
    font-weight: normal;
    font-style: normal;
}

.active_tab {
    background-color: yellow;
    font-weight: bold;
}

.tempo_container {
    margin: 35px;
}

#tempo_input {
    margin: 30px;
    width: 200px;
}

#tempo_display {
    width: 50px;
}

input[type=range] {
    -webkit-appearance: none;
    margin: 18px 0;
    width: 100%;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    background: #808080;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 36px;
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -14px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #808080;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    background: #808080;
    border-radius: 1.3px;
    border: 0.2px solid #010101;
}
input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 36px;
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #2a6495;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
    background: #808080;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    border: 1px solid #000000;
    height: 36px;
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #808080;
}
input[type=range]:focus::-ms-fill-upper {
    background: #367ebd;
}

.flora p label {
    width: 130px;
    padding: 10px;
    text-align: right;
    font-weight: bold;
    display: inline-block;
}

#description_dialog p label {
    width: 180px;
    padding: 10px;
    text-align: right;
    font-weight: bold;
    display: inline-block;
}

.edit_name, .edit_description {
    width: 450px;
}

#edit_volume {
    width: 250px;
}

.article {
    width: 1100px;
}

.article p {
    margin: 20px;
}

.article h3 {
    font-weight: bolder;
    text-decoration: underline;
}

.article h4 {
    margin: 10px;
    font-weight: bold;
    font-style: italic;
}



.inlinelogo {
    font-family: 'Racing Sans One', cursive;
    /*font-family: 'Rammetto One', cursive;*/
    font-size: 18pt;
}

#save_pixel {
    height: 1px;
    width: 1px;
}




#index_table tr:nth-child(odd)  {
    background-color: #ededed;
}

#index_table tr td:first-child {
    font-weight: bold;
}

#index_table tr td {
    padding: 5px;
}

#index_table {
    width: 1067px;
}