body, p {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 16px;
}

header {
    border-top: solid 5px #b5985a;
    padding-top: 60px;
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 18px;
}

.form-group {
    margin-bottom: 18px;
}

ol {
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    padding: 0;
    margin-bottom: 4em;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
  }

  ol ol {
    margin: 0 0 0 2em; /* Add some left margin for inner lists */
  }

  .rectangle-list a{
    position: relative;
    display: block;
    padding: .4em .4em .4em .8em;
    *padding: .4em;
    margin: .5em 0 .5em 2.5em;
    background: #ddd;
    color: #444;
    text-decoration: none;
    transition: all .3s ease-out;
  }

  .rectangle-list a:hover{
    background: #eee;
  }

  .rectangle-list a:before{
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -2.5em;
    top: 50%;
    margin-top: -1em;
    background: #b5985a;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
  }

  .rectangle-list a:after{
    position: absolute;
    content: '';
    border: .5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -.5em;
    transition: all .3s ease-out;
  }

  .rectangle-list a:hover:after{
    left: -.5em;
    border-left-color: #b5985a;
  }

  .img-cover{
    object-fit: cover;
    object-position: center;
  }

  @media print {
    .col-md-1,.col-md-2,.col-md-3,.col-md-4,
    .col-md-5,.col-md-6,.col-md-7,.col-md-8, 
    .col-md-9,.col-md-10,.col-md-11,.col-md-12 {
      float: left;
    }
  
    .col-md-1 {
      width: 8%;
    }
    .col-md-2 {
      width: 16%;
    }
    .col-md-3 {
      width: 25%;
    }
    .col-md-4 {
      width: 33%;
    }
    .col-md-5 {
      width: 42%;
    }
    .col-md-6 {
      width: 50%;
    }
    .col-md-7 {
      width: 58%;
    }
    .col-md-8 {
      width: 66%;
    }
    .col-md-9 {
      width: 75%;
    }
    .col-md-10 {
      width: 83%;
    }
    .col-md-11 {
      width: 92%;
    }
    .col-md-12 {
      width: 100%;
    }
  }
  