.blue-button:hover {
    color: #333333;
  }

  #content h2 {
    color: #527db2;
  }

  .middle_content {
    width: 70%;
    float: left;
    display: block-inline;
  }

  .right_content {
    display: inline;
    float: left;
    margin-bottom: 100px;
    /*//margin-left: 20px;*/
    margin-top: 15px;
    position: relative;
    width: 0;
    margin: 18px;
  }

  .homebottom p {
    font-family: Arial, Helvetica, sans-serif;
    color: #444444;
    font-size: 13px;
  }

  ul,
  ol {
    margin-top: 0px;
  }

  .tweetr {
    width: 240px;
    margin-top: 12px;
    height: 235px;
    line-height: 1.28;
    border-radius: 2px;
  }

  .homestatelist a {
    color: #444444;
    font-family: Arial, Helvetica, sans-serif;
  }

  #content>p {
    color: #444444;
  }

  .region-list a {
    color: #444444;
  }

  #menuToggle {
    display: block;
    /*position: relative;*/
    top: 50px;
    left: 50px;
    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
  }

  #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;

    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */

    -webkit-touch-callout: none;
  }

  #menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #6495fe;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
      opacity 0.55s ease;
  }

  #menuToggle span:first-child {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
  }

  #menuToggle input:checked~span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #6495fe;
  }

  #menuToggle input:checked~span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  #menuToggle input:checked~span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
  }

  #menu {
    position: absolute;
    width: 302px;
    padding-left: 0px;
    z-index: 1000;
    right: 0;
    border-bottom: 4px solid #6495fe;
    /*  margin: -100px 0 0 -50px;*/
    /*padding: 20px 0px;  */
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 0% 0%;
    transform: translate(100%, 0);

    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  }

  #menu li {
    font-size: 22px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 10px;
    color: #6495fe;
  }

  #menu li:hover {
    background-color: #6495fe;
    color: #fff;

  }

  #menuToggle input:checked~ul {
    transform: none;
    right: 0;
  }

  ul#menu {
    display: block !important;
  }
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }

  .sticky+.content {
    padding-top: 102px;
  }