body {
    background: #FFFFFF;
    color: #333333;
    font-family: Calibri, sans-serif;
    // font-family: Arial Black;
}

tr:nth-child(even) {
    background: #ffffff;
    color: #202020;
}

tr:nth-child(odd) {
    background: #a0a0a0;
    color: #202020;
}

a {
    color: #4488cc;
    //color: #ffffff;
}

th, td {
    padding: 5px;
}

.banner {
    background-color: #13306a;
    color: #ffffff;
    padding: 20px 0px 20px 0px;
}

.banner a {
    // color: #ffffff;
    // padding-left: 20px;
}

.headerNavigation {
    margin-top: 7px;
    padding: 5px 0px 5px 0px;
    color: white;
    background-color: #7387ad;
}

.headerNavigation a {
    font-size: 1.4em;
    margin: 2px 0px 2px 10px;
    color: white;
    position: relative;
    text-decoration: none;
}

.headerNavigation a:hover {
  color: white;
}

.headerNavigation a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.headerNavigation a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

label, select, input{
    font-size: 1.25em;
}

.statusPane {
    margin: 0 0 0 50px;
}

.success {
    color: #44aa44;
}

.failure {
    color: #ff5555;
}

.notReally {
    display: none;
}


/* ========= AUTHOR PAGE ========= */

.authorBlock {
    width: 49%;
    min-width: 400px;
    max-width: 700px;
    float: left;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.authorPicture {
    float: left;
    width: 45%;
    // overflow: hidden;
    //height: 35%;
    max-width: 280px;
}

.authorInfo {
    width: 45%;
    max-width: 400px;
    float: left;
    padding-left: 10px;
}
