/* Start of CSS */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:600&display=swap');
* {
    margin: 0px;
    padding: 0px;
    border: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1.0em;
    color: #191919;
    background-color: #FFFFFF;
    line-height: 120%;
}

@media only screen and (max-width: 750px) {
    body {
        font-size: 0.75em;
    }
}

body>div {
    padding: 1em;
}

header {
    margin-bottom: 1.5em;
}

header img {
    width: 162px;
    height: 194px;
}

@media only screen and (max-width: 750px) {
    header img {
        width: 81px;
        height: 97px;
    }
}

header ul {
    float: right;
}

header ul li {
    float: left;
    margin-right: 2em;
}

@media only screen and (max-width: 750px) {
    header ul li {
        font-size: 0.75em;
    }
}

nav {
    float: left;
    display: inline-block;
    margin-right: 1em;
    font-size: 1.0em;
}

article {
    float: left;
    width: 70%;
}

@media only screen and (max-width: 750px) {
    article {
        float: left;
        width: 100%;
    }
}

a {
    color: #191919;
    text-decoration: none;
}

a:hover,
a.selected {
    color: #f8b500;
}

ul {
    list-style-type: none;
    margin-bottom: 1.5em;
}

li {
    white-space: nowrap;
    line-height: 120%;
}

ul.slide>li {
    margin-bottom: .25em;
}

ul.slide>li>a {
    font-weight: bold;
}

h1,
h2,
h3 {
    font-weight: normal;
}

div.pics {}

a.artistimgs {
    display: inline-block;
    margin-bottom: 1em;
    position: relative;
    overflow: hidden;
    height: 116px;
}

a.artistimgs img {
    position: absolute;
}

div.seriel {
    display: none;
    white-space: nowrap;
    margin-bottom: 1em;
}

@media only screen and (max-width: 750px) {
    div.seriel {
        white-space: normal;
    }
}

div.artistimgl {
    display: inline-block;
    height: 600px;
    margin-right: 12px;
}

div.category,
div.back {
    position: absolute;
    z-index: 2;
    background-color: #000000;
    opacity: 0.5;
}

div.category {
    width: 1.8em;
    height: 116px;
}

div.back {
    width: 2.4em;
    height: 600px;
}

span.category,
a.back {
    transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform-origin: 100% 0%;
    -moz-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    -o-transform-origin: 100% 0%;
    -webkit-transform-origin: 100% 0%;
    display: block;
    position: absolute;
    z-index: 3;
    text-align: right;
    font-size: 1.0em;
    color: #f8b500;
}

span.category {
    width: 104px;
    padding: 6px;
    margin-left: -116px;
}

a.back {
    width: 580px;
    padding: 10px;
    margin-left: -600px;
}

a.subitem {
    margin-left: 1em;
}

div.vita {
    display: none;
}

div.overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: #000000;
    opacity: 0.5;
    background-image: url(../img/loading.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

div.clear {
    clear: both;
}