#article-list {
    position: absolute;
    top: 45px;
    background-color: #f0f0f0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: hidden;
    top: -1000;
    display: none;
    transition: top 400ms;
}

#article-list-header {
    width: 100%;
    height: 30px;
    text-align: center;
    color: #333333;
    vertical-align: middle;
    z-index: 100;
    position: relative;
    cursor: pointer;
    background: #f0f0f0;
    box-shadow: 0px 1px 5px #888888;
}

#article-list-header-text {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    font-weight: bold;
}

#article-list-scroller {
    position: relative;
    width: 100%;
    height: 100%;
}

#article-list-scroller > ul {
    list-style-type: none;
    padding-bottom: 30px;
}

.article-list-section {
    
}

.article-list-section-header {
    font-weight: bold;
    padding: 5px;
    border-bottom: 1px solid black;
}

.article-list-article {
    padding: 10px;
    border-bottom: 1px solid #aaaaaa;
    cursor: pointer;
    display: table;
    width: 100%;
    box-sizing: border-box;
}

.article-list-article > span {
    display: inline;
}

.article-list-article-title {
    font-weight: bold;
}

.article-list-article > img {
    display: table-cell;
    width: 50px;
    height: 50px;
}

.article-list-article-text {
    display: table-cell;
    vertical-align: top;
    padding-left: 5px;
    width: 100%;
}