.jumplist {
    margin: 0;
    list-style-type: none;
    display: flex;
    margin-bottom: 20px;
}

.main-section ul.jumplist li {
    margin: 0 15px 0 0;
}

.terms-content {
    overflow: hidden;
    margin: 10px 0 20px 0;
}

.terms-content.inactive .terms-header a#terms-collapse, .terms-content.inactive .terms-header a#terms-expand, .terms-content.expanded .terms-header a#terms-expand, .terms-content.collapsed .terms-header a#terms-collapse {
    display: none;
}

.terms-content.collapsed ul.terms {
    height: 0;
}

.terms-content.expanded ul.terms {
    height: auto;
}

.terms-content a.btn.active {
    color: #d72121;
    background-color: #fff;
}

ul.terms {
    list-style-type: none;
    margin: 0;
    height: auto;
    transition: all 0.3 ease;
    position: relative;
    z-index: 1;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

ul.terms li {
    display: inline-block;
    margin-bottom: 20px;
}

ul.terms li a.btn {
    min-width: 155px;
    text-align: center;
}

.terms-header {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 5px 10px;
}

.terms-header h2 {
    display: inline-block;
    margin: 3px 0 10px 3px;
    font-size: 150%;
}

.terms-header a#terms-collapse, .terms-header a#terms-expand {
    float: right;
    display: inline-block;
    padding: 0 25px 0 10px;
    text-decoration: none;
    border: 1px solid #ccc;
    font-family: "ReplicaProRegular",sans-serif;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
}

.terms-header a:hover#terms-collapse, .terms-header a:hover#terms-expand {
    background-color: #d72121;
    border: 1px solid #d72121;
    color: #fff;
}

.terms-header a:hover:after {
    border-color: #fff transparent transparent transparent;
}

.terms-header a:after {
    content:"";
    display: inline-block;
    border-style: solid;
    border-width: 7px;
    border-color: #000 transparent transparent transparent;
    transition: all 0.3s;
    position: absolute;
    right: 4px;
    top: 9px;
}

.terms-content.expanded .terms-header a:after {
    transform: rotate(-180deg);
    top: 3px;
}

.terms-footer {
    position: relative;
    z-index: 2;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 5px 10px;
    background-color: #fff;
}

.deanslist-students {
    display: flex;
    flex-flow: row wrap;
    padding: 20px;
    border: 1px solid #ccc;
}

.deanslist-students div {
    width: 100%;
}

.deanslist-students ul {
    list-style-type: none;
    border-left: 1px solid #d72121;
}

@media only screen and (min-width: 800px) {
    .deanslist-students div {
        width: 50%;
    }
}