  body {
    font-family: 'Playfair Display';
    font-size: 18;
    text-align: center;
    margin: 5px 0px 5px 0px;
    padding-top: 70px;
    padding-bottom: 30px;
    color: #3b5998;
  }
  p.title {
    line-height: 1.2;
    font-weight: bold;
    font-size: 45;
    color: #3b5998;
  }
  p.subheader {
    font-weight: bold;
    font-style: italic;
    line-height: 1.5;
    font-size: 18;
    color: #3b5998;
  }
  p.articletitle {
    font-weight: bold;
    font-size: 18;
    color: #3b5998;
  }
  p.articlesub {
    font-style: italic;
    font-size: 18;
    color: #8b9dc3;
  }
  p.caption {
    font-style: italic;
    font-size: 13;
    color: #3b5998;
  }
  p.articlepagetitle {
    font-weight: bold;
    font-size: 35;
    color: #3b5998;
  }
  p.articlepagebody {
    padding: 10px 250px 10px 250px;
    text-align: justify;
    font-size: 18;
    color: #585858;
    text-indent: 3em;
  }
  a:link {
    color: #8b9dc3;
    text-decoration: none;
  }
  a:visited {
    color: #8b9dc3;
    text-decoration: none;
  }
  a:hover {
    color: #8b9dc3;
    text-decoration: underline;
  }
  ol {
    margin: 30px 250px 30px 250px;
    text-align: justify;
    color: #585858;
  }
  ul {
    margin: 30px 250px 30px 250px;
    text-align: justify;
    color: #585858;  
  }
  li {
    margin: 20px 5px 0px 5px;
    text-align: justify;
    color: #585858;
  }
  img.return {
    transition: all 0.3s ease-in-out 0s;
  }
  img.return:hover {
    cursor: default;
    -webkit-animation-name: wiggle;
    -ms-animation-name: wiggle;
    -ms-animation-duration: 1000ms;
    -webkit-animation-duration: 1000ms;
    -webkit-animation-iteration-count: 1;
    -ms-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    -ms-animation-timing-function: ease-in-out;
  }
@-webkit-keyframes wiggle {
  0% {-webkit-transform: rotate(10deg);}
  25% {-webkit-transform: rotate(-10deg);}
  50% {-webkit-transform: rotate(20deg);}
  75% {-webkit-transform: rotate(-5deg);}
  100% {-webkit-transform: rotate(0deg);}
}
@-ms-keyframes wiggle {
  0% {-ms-transform: rotate(1deg);}
  25% {-ms-transform: rotate(-1deg);}
  50% {-ms-transform: rotate(1.5deg);}
  75% {-ms-transform: rotate(-5deg);}
  100% {-ms-transform: rotate(0deg);}
}
@keyframes wiggle {
  0% {transform: rotate(10deg);}
  25% {transform: rotate(-10deg);}
  50% {transform: rotate(20deg);}
  75% {transform: rotate(-5deg);}
  100% {transform: rotate(0deg);}
}
