/**
 * Подгрузка контента
 *
 * @license   GNU General Public License, version 2
 * @copyright 2013 OOO "ЛС-СОФТ" {@link http://livestreetcms.com}
 * @author    Denis Shakhov <denis.shakhov@gmail.com>
 */

.ls-more {
    display: block;
    overflow: hidden;
    margin-top: 10px;
    padding: 10px 10px 9px;
    letter-spacing: 0.01em;
    text-align: center;
    text-decoration: none;
    background-color: #fafafa;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    font-size: 14px;
    color: #5070b0;
    cursor: pointer;
    -webkit-transition: background-color .2s;
            transition: background-color .2s;
}
.ls-more:hover {
    background-color: #eee;
}
.ls-more:focus {
    outline: none;
}

.ls-more.ls-loading {
    text-indent: -9999px;
}
.ls-more.ls-more--locked {
    background-color: #D1C4E9;
    cursor: not-allowed;
}
.ls-more.ls-more--bottom {
    border-bottom: none;
}
.ls-more.ls-more--small {
    font-size: 11px;
}