.moreInfoContent.closed {
    overflow: hidden;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    -moz-transition-duration: 0.8s;
    -webkit-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -moz-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -webkit-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    -o-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);

}
.moreInfoContent.open{
    -moz-transition-duration: 0.8s;
    -webkit-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
    -moz-transition-timing-function: ease-in;
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    max-height: 20000px;
    overflow: hidden;
}
.expandBox.more > span:after {
    content: 'More';
}
.expandBox.fewer > span:after {
    content: 'Fewer';
}
#more-button {
    margin: auto;
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
}
.expandBox .cols4 .cols4 {
    margin-left: 0;
}
.expandBox .cols4 .col {
    text-align: left;
    font-weight: 200;
}
.showMore, .expandBtn{
    border: 2px solid #626366;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    line-height: 26px;
    cursor: pointer;
    margin: 10px auto 0;
    position: relative;
    text-align: center;
    padding-left: 1px;
    display: block;
}
.showMore span {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    left: -2px;
    top: -2px;
    line-height: 30px;
    text-align: center;
    vertical-align: middle;
}
.expandBox.more #more-button .expandBtn span:after,
.expandBox.more .showMore span:after,
.expandBox.more .expandBtn span:after {
    content: '\002B';
    font-size: 2.5rem;
}
.expandBox.fewer #more-button .expandBtn span:after,
.expandBox.fewer .showMore span:after,
.expandBox.fewer .expandBtn span:after {
    /*height: 100%;*/
    line-height: 23px;
    text-align: center;
    font-size: 2.5rem;
    display: block;
    content: '\2212';
}