
.common-style {
    max-width: 980px;
    margin: 3em auto;
    text-align: left;
    font-size: 16px;
    line-height: 1.5em;
    padding: 0 15px;
    /*font-family: helvetica, arial;*/
}

.common-style h2 {
    color: #900;
    margin: 1.5em 0 1em 0;
    font-size: 24px; 
}

.common-style p {
    margin: 1em 0;
}

.common-style ol, .common-style ul {
    margin: 0 0 0 1.5em;
}

.common-style li {
    display: list-item;
}

.common-style .photo-right {
    float: right;
    margin: 0 0 1em 3em;
}

.common-style .photo-right img {
    border-radius: 5px;
}

.common-style .photo-right p {
    margin-top: 1em;
    font-size: 12px;
    line-height: 1.3em;
    text-align: center;
}

.common-nav-top {
    margin: 0 auto;
    padding: 1em;
    text-align: center;
    display: table;
}
.common-nav-top a {
    text-decoration: none;
    font-size: 16px;
}

.common-nav-top a:hover {
    color: #900;
}

.common-nav-top li {
    list-style: none;
    display: table;
    float: left;
    padding: 1em 2em;
}
.common-nav-top li.active {
    height: 48px;
  
}

.common-nav-top li.active a {
    color: #900;
    font-weight: bold;
}

#fixnav {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    margin-top: 0;
    z-index: 100;
    background: #900;
    opacity: 0;
    filter: alpha(opacity=0);
    border-bottom: none;
}

#fixnav .common-nav-top {
    background: none;
    border-bottom: none;
    margin-bottom: 0;
}

#fixnav .common-nav-top a {
    color: #fff;
}

#fixnav .common-nav-top a:hover {
    color: #f33;
}
/* -------------------------------- 

modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
