body {
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #D4D4D4;
    font-family: 'Ubuntu', sans-serif;
    color: #1F1D1E;
}
header {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0;
    overflow: auto;
}
#headerContentWrapper {
    width: 100%;
    background-color: #1F1D1E;
    color: #D4D4D4;
    overflow: auto;
}
#headerContent {
    width: 80%;
    height: auto;
    overflow: auto;
    margin: 0 auto;
}
#siteTitle {
    font-family: 'Parisienne', cursive;
    font-size: 40px;
    padding: 13px;
    padding-left: 0px;
    float: left;
}
#siteTitle a {
    text-decoration: none;
    color: #D4D4D4;
    transition: color 1s;
}
#siteTitle a:hover {
    color: #90A681;
    transition: color 1s;
}
#mainNav {
    font-size: 20px;
    padding: 25px;
}
#footerNav {
    padding: 13px 0;
}
#mainNav, #footerNav {
    float: right;
    text-align: right;
    padding-right: 0;
    margin: 0 auto;
}
#mainNav ul, #footerNav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#mainNav ul li, #footerNav ul li {
    display: inline;
    padding-left: 10px;
    padding-right: 10px;
}
#mainNav ul li:last-child, #footerNav ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}
#mainNav a , #footerNav a {
    text-decoration: none;
    color: #D4D4D4;
    transition: color 1s;
}
#mainNav a:hover, #footerNav a:hover {
    color: #90A681;
    transition: color 1s;
}
.transition {
    width: 100%;
    height: 5px;
    background-color: #90A681; /*#1F1D1E;*/
    opacity: 0.75; /*0.5;*/
}
#content {
    background-color: white;
    padding: 10px;
    width: 80%;
    height: auto;
    margin: 0 auto;
    overflow: auto;
    flex: 1 0 auto;
    box-sizing: border-box;
}
#topTitle {
    background-image: url('../images/layout/piano_keys_music.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 30%;
    width: 100%;
    height: 165px;
}
#topTitle h1 {
    color: white;
    padding: 70px;
    padding-left: 10px;
    margin: 0;
    font-size: 25px;
}
footer {
    width: 100%;
    height: auto;
    overflow: auto;
    clear: both;
}
#footerContentWrapper {
    width: 100%;
    background-color: #1F1D1E;
    color: #D4D4D4;
    overflow: auto;
}
#footerContent {
    width: 80%;
    height: auto;
    overflow: auto;
    margin: 0 auto;
}
.footerContentColumn {
    text-align: center;
}
.footerContentColumn ul {
    padding: 0;
    list-style-position: inside;
}
.footerHR {
    width: 100%;
    height: 1px;
    background-color: #90A681;
}
#siteCopyright {
    float: left;
    padding: 13px 0;
}
.thirtyThreeRight {
    width: 33%;
    float: right;
    overflow: auto;
    height: auto;
}
.thirtyThreeLeft {
    width: 33%;
    float: left;
    overflow: auto;
    height: auto;
}
.thirtyThreeCenter {
    width: 33%;
    overflow: auto;
    height: auto;
    display: inline-block;
}
.sixtySixRight {
    width: 66%;
    float: right;
    overflow: auto;
    height: auto;
}
.sixtySixLeft {
    width: 66%;
    float: left;
    overflow: auto;
    height: auto;
}
.sidebarItem {
    overflow: auto;
    height: auto;
    text-align: left;
}
.sidebarTitle {
    background-color: #90A681;
    color: white;
    width: 100%;
}
.sidebarTitle p {
    padding: 10px;
    font-size: 20px;
}
audio {
    width: 100%;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #90A681;
}
a:hover {
    text-decoration: underline;
}
p.success {
    background-color: #90A681;
    padding: 10px;
}
p.error {
    padding: 10px;
    background-color: #ff5555;
}
/*Forms*/
label {
    display: block;
}
input, textarea {
    color: #1F1D1E;
    font-family: 'Ubuntu', sans-serif;
}
input[type=text], input[type=email], input[type=password], textarea, select {
    width: 75%;
    padding: 10px;
    border: 1px #1F1D1E solid;
    outline: none;
    transition: width 1s;
    box-sizing: border-box;
}
input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus, input[type=email]:hover, input[type=email]:focus, textarea:hover, textarea:focus, select:hover, select:focus {
    width: 100%;
    border: 1px #90A681 solid;
    color: black;
    transition: width 1s;
}
input:user-invalid, select:user-invalid, textarea:user-invalid {
    border-color: red;
    background: url('../images/icons/warning.png') no-repeat right center;
    outline: none;
}
input[type=button], input[type=submit], input[type=reset] {
    padding: 10px;
    background: #90A681;
    color: #1F1D1E;
    border: none;
    text-decoration: none;
    transition: background 1s;
}
input[type=button]:hover, input[type=button]:focus, input[type=submit]:hover, input[type=submit]:focus, input[type=reset]:hover, input[type=reset]:focus {
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    background: #779164;
    color: #D4D4D4;
    cursor: pointer;
    transition: background 1s;
}
#fub {
    visibility: hidden;
    width: 5px;
    height: 5px;
    display: none;
}
