body {
    animation: fadeInAnimation ease 1.75s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
  
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

#back { padding: 15px; background: #003c61;text-align: right;  }
#back a { color: #fff; font-family: 'greycliff-demibold'; }
#content h2 + h3 { margin-top: 15px; margin-bottom: 25px; border-bottom: 1px solid #e0e0e0; padding-bottom: 25px; }

#content { border-bottom: 0; }

#content p.signature { margin-top: 30px; }


	
@media only screen and (max-width: 600px) {	
#back a { text-align: center; }	
}