nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    text-align: center;
    background-color: #333333;
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.5);
}
@media (min-height: 370px) {
    nav {
        position: fixed;
    }
}
nav a {
    color: white;
    text-decoration: none;
}
.a:before { content: ''; display: block; position: relative; width: 0; height: 1.5em; margin-top: -1.5em }
nav ul{
    list-style: none;
    margin-left: 0.5em;
}
nav li {
    float: left;
    border-right: 1px solid #555555;
    padding: 0em 0.6em;
    margin: 0.5em 0;
}
nav #navhome {
    padding: 0 0.5em 0.5em 0.3em ;
    height:1.5em;
}
nav svg {
    width: 1.8em;
    height: 1.8em;
    fill: currentColor;
}
/*nav #navhome {*/
    /*background: url("../svg/ic_home_black_24px.svg") no-repeat;*/
    /*fill: white;*/
/*}*/
nav li:last-child {
    border: none;
}

header div.title {
    text-align: center;
    margin: 4.5em 0 2em 0;
}
header img {
    display: block;
    width: 100%;
    margin: -30% 0 0 0;
}
header .imgbox {
    height: 40%;
    max-height: 400px;
    height:200px9; /* ie8 and earlier */
    overflow: hidden;
    width: 100%;
}
header .name {
    font-size: 24pt;
}
header .jobtitle {
    font-size: 14pt;
}

section {
    margin-top: 2em;
    padding-top: 1em;
    border-left: 5px #CD2571 solid;
    padding-left: 1em;
}
section.about {
    border-color: darkmagenta;

}
section.repertoire {
    border-color: lightseagreen;

}
section.recordings {
    border-color: #E97300;
}
section.contact {
    border-color: greenyellow;
}

footer {
    margin: 4em;
}

div.track {
    margin-bottom: 1.8em;
}

div.pics {
    position: relative;
}

div.pics>div {
    float: left;
    box-sizing: border-box;
    width: 50%;
    margin: 0;
    padding: 0.5em;
}
div.cropbox {
    width: 100%;
    padding: 0;
    height: 200px;
    overflow: hidden;
}
img.imgone {
    /*width: 100%;*/
    position: relative;
    left: -400px;
    top: -400px;
}
img.imgtwo {
    /*width: 100%;*/
    position: relative;
    left: -500px;
    top: -400px;
}

ul.repertoire {
    list-style: none;
}
ul.repertoire li{
    /*margin-left: 1em;*/
    border-bottom: 1px solid #eeeeee;
     display: flex;
     justify-content: space-between;
}
ul.repertoire li span {
    color: #777777;
    display: block;
    margin-left: 1em;
    /*float:right;*/
}
ul.repertoire li span::before {
    /*content: "- ";*/
}

form ul {
    list-style: none;
}
form input, form textarea {
    width: 90%
}

form textarea {
    height: 10em;
}

form div.errorText {
    color: red
}
form span.errorBar {
    color: red;
    font-size: 130%;
    font-weight: bold;
}

form div.errorField input,
form div.errorField textarea{
    border: 2px solid red;
}

button.openContact {
    background-color: darkgreen;
    color: white;
    font-size: 130%;
}