#PublicationWrapper .Hidden {
    display: none;
}

#PublicationWrapper .PublicationCategory{
    position: relative;
    padding-left: 40px;
    padding-bottom: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

#PublicationWrapper .PublicationCategory:last-of-type{
    border-bottom: none;
}

#PublicationWrapper .PublicationCategoryTitle {
    cursor: pointer;
}

#PublicationWrapper .PublicationCategoryTitle h3{
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#PublicationWrapper .PublicationCategoryTitle h3:before {
    content: "+";
    position: absolute;
    top: 5px;
    left: 0;
    display: inline-block;
    color: #3db7dd;
    font-family: monospace;
    font-size: 36px;
    text-align: center;
    line-height: 16px;
    transform: rotate(90deg);
}

#PublicationWrapper .PublicationCategoryTitle h3.open:before {
    content: "\2012";
    transform: rotate(0);
    -webkit-animation: rotate .5s linear 1;
    animation: rotate .5s linear 1;
}


#PublicationWrapper .PublicationContent{
    padding-bottom: 20px;
}


#PublicationWrapper .PublicationContent a{
    color: #3db7dd;
}

*, :after, :before {
    box-sizing: border-box;
}