﻿/*
 * Reference
 * ----------------------------------------------
 *
 * 01 - Default
 * 02 - Help
 * 03 - Geral
 * 04 - Top
 * 05 - Footer
 * 06 - Banner
 * 07 - Cotidiano e Destaque
 *
 * -----------------------------------------------*/

/*
 * 01 - Default
 * ----------------------------------------------*/
body {
    background-color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #000;
    margin-top:0px !important;
}

a {
    text-decoration: none;
}

.tooltip {
    display: none;
    position: absolute;
    background-color: #ccc;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
    color: #000;
    z-index: 10;
    font-size: 12px;
    max-width: 300px;
}

/*
 * 02 - Help
 * ----------------------------------------------*/
.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.ultra {
    font-weight: 900;
}

.bold {
    font-weight: 700;
}

.regular {
    font-weight: 400;
}

.thin {
    font-weight: 300;
}

.italic {
    font-style: italic;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.under {
    text-decoration: underline;
}

.upper {
    text-transform: uppercase;
}

.border-radius {
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.border-radius-2 {
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.border-radius-3 {
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.border-radius-6 {
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

/*
 * 03 - Geral
 * ----------------------------------------------*/
div.bg-geral {
    width: 100%;
    min-width: 960px;
    position: relative;
}


/*
 * 04 - Top
 * ----------------------------------------------*/
#top-bar {
    background: #01497c;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAxNDk3YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDNhNjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,rgba(1,73,124,1) 0,rgba(0,58,99,1) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(1,73,124,1)),color-stop(100%,rgba(0,58,99,1)));
    background: -webkit-linear-gradient(top,rgba(1,73,124,1) 0,rgba(0,58,99,1) 100%);
    background: -o-linear-gradient(top,rgba(1,73,124,1) 0,rgba(0,58,99,1) 100%);
    background: -ms-linear-gradient(top,rgba(1,73,124,1) 0,rgba(0,58,99,1) 100%);
    background: linear-gradient(top bottom,rgba(1,73,124,1) 0,rgba(0,58,99,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#01497c', endColorstr='#003a63', GradientType=0);
    height: 50px;
}

    #top-bar ul.thin {
        height: 50px;
    }

        #top-bar ul.thin a {
            display: block;
            line-height: 50px;
            padding: 0 30px;
            color: #fff;
            background: transparent;
            -webkit-transition: background .25s ease;
            -moz-transition: background .25s ease;
            -ms-transition: background .25s ease;
            -o-transition: background .25s ease;
            transition: background .25s ease;
        }

            #top-bar ul.thin a:hover {
                background: #045a97;
            }

    #top-bar div.float-right ul {
        line-height: 50px;
    }

    #top-bar div.float-right li {
        margin: 0 10px;
    }

    #top-bar div.float-right a {
        color: #fff;
        font-size: 12px;
        line-height: 50px;
        display: block;
        height: 50px;
        padding: 0 20px;
        -webkit-transition: all .25s ease;
        -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
        -o-transition: all .25s ease;
        transition: all .25s ease;
    }

        #top-bar div.float-right a:hover {
            color: #dbe1fa;
        }

#search-form {
    background: #fff;
    border-radius: 5px;
    padding: 3px;
    margin-top: 6px;
}

    #search-form * {
        font-family: 'Source Sans Pro';
    }

    #search-form #search-button {
        width: auto;
        height: auto;
        padding: 2px 15px;
        border: 1px solid #4081af;
        border-bottom-color: #20559a;
        color: #fff;
        text-align: center;
        text-shadow: 0 -1px 0 rgba(0,0,0,.3);
        text-decoration: none;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        khtml-border-radius: 4px;
        border-radius: 4px;
        background: #0090D2;
        background: -webkit-gradient(linear,left top,left bottom,color-stop(.2,#52a8e8),color-stop(1,#2e76cf));
        background: -moz-linear-gradient(center top,#52a8e8 20%,#2e76cf 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52a8e8', endColorstr='#2e76cf', GradientType=0);
        -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.3),inset 0 0 2px rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.29);
        -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.3),inset 0 0 2px rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.29);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.3),inset 0 0 2px rgba(255,255,255,.3),0 1px 2px rgba(0,0,0,.29);
        vertical-align: top;
    }

        #search-form #search-button:hover {
            background: #0073d2;
            background: -webkit-gradient(linear,left top,left bottom,color-stop(.2,#3e9ee5),color-stop(1,#1666ca));
            background: -moz-linear-gradient(center top,#3e9ee5 20%,#1666ca 100%);
        }

        #search-form #search-button:active {
            border-color: #20559a;
            -webkit-box-shadow: inset 0 0 7px rgba(0,0,0,.3),0 1px 0 rgba(255,255,255,1);
            -moz-box-shadow: inset 0 0 7px rgba(0,0,0,.3),0 1px 0 rgba(255,255,255,1);
            box-shadow: inset 0 0 7px rgba(0,0,0,.3),0 1px 0 rgba(255,255,255,1);
        }

    #search-form input {
        border: 0;
        padding: 0;
        background: #fff;
        height: 26px;
        vertical-align: top;
        width: 156px;
    }

#page-heading {
    background: #fff;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZDlkZmZhIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
    background: -moz-linear-gradient(top,rgba(255,255,255,1) 40%,rgba(217,223,250,1) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(40%,rgba(255,255,255,1)),color-stop(100%,rgba(217,223,250,1)));
    background: -webkit-linear-gradient(top,rgba(255,255,255,1) 40%,rgba(217,223,250,1) 100%);
    background: -o-linear-gradient(top,rgba(255,255,255,1) 40%,rgba(217,223,250,1) 100%);
    background: -ms-linear-gradient(top,rgba(255,255,255,1) 40%,rgba(217,223,250,1) 100%);
    background: linear-gradient(top bottom,rgba(255,255,255,1) 40%,rgba(217,223,250,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d9dffa', GradientType=0);
    margin-top: 30px;
    height: 100px;
}

#logo {
    overflow: hidden;
    width: 164px;
    height: 13px;
    padding: 62px 0 0 65px;
    background: url("../img/pages/sprites.png") 0 0;
    display: block;
    text-align: center;
    font-size: 12px;
    color: #003a63;
}

h1 #logo {
    font-weight: lighter;
}

#page-heading ul {
    margin-top: 25px;
}

#page-heading li {
    margin-left: 40px;
    font-size: 16px;
}

    #page-heading li a {
        color: #003a63;
        -webkit-transition: color .25s ease;
        -moz-transition: color .25s ease;
        -ms-transition: color .25s ease;
        -o-transition: color .25s ease;
        transition: color .25s ease;
    }

        #page-heading li a:hover {
            color: #AEBAE2;
        }

/*
 * 05 - Footer
 * ----------------------------------------------*/
#page-footer {
    height: 128px;
    background: #003a63;
    margin-top: 60px;
}

    #page-footer .logo {
        width: 151px;
        height: 38px;
        display: block;
        margin: 40px 0 0 45px;
        background: url(../img/pages/sprites.png) -229px 0;
        overflow: hidden;
        text-indent: -999px;
    }

#seen {
    display: block;
    width: 27px;
    height: 25px;
    margin: 85px 10px 0 0;
    background: url(../img/pages/sprites.png) -229px -38px;
    overflow: hidden;
    text-indent: -999px;
}

#social-nets {
    margin: 47px 26px 0 247px;
    height: 40px;
}

    #social-nets li {
        float: left;
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }

        #social-nets li a {
            display: block;
            width: 100%;
            height: 100%;
            background-image: url(../img/pages/sprites.png);
        }

            #social-nets li a.fb {
                background-position: -256px -38px;
            }

            #social-nets li a.tt {
                background-position: -296px -38px;
            }

#page-footer address {
    font-style: normal;
    color: #fff;
    font-size: 12px;
    margin-top: 40px;
	margin-left: 168px;
}

/*
 * 06 - Banner
 * ----------------------------------------------*/
#banner-container {
    overflow: hidden;
    width: 100%;
    height: 0;
    position: relative;
}

#pictures {
    width: 100%;
    min-width: 960px;
}

#banner-container ul {
    position: relative;
    width: 960px;
    height: 0;
}

    #banner-container ul li {
        position: absolute;
        top: 0;
        left: 0;
        width: 960px;
        height: 100%;
    }

        #banner-container ul li p {
            position: absolute;
            display: inline-block;
            vertical-align: top;
            zoom: 1;
            *display: inline;
            top: 50%;
            left: 70px;
            max-width: 760px;
            font-size: 32px;
            background: rgba(0,150,215,.62);
            color: #fff;
            padding: 15px 18px;
            margin-top: -80px;
        }

            #banner-container ul li p span {
                font-size: 24px;
                font-style: normal;
                display: block;
                margin-top: 10px;
            }

            #banner-container ul li p span.thin {
                font-size: 20px;
            }

        #banner-container ul li a {
            position: absolute;
            display: inline-block;
            vertical-align: top;
            zoom: 1;
            *display: inline;
            height: 40px;
            line-height: 40px;
            color: #fff;
            font-size: 18px;
            padding: 0 16px 0 42px;
            background: #f5a01a;
            border-radius: 10px;
            box-shadow: 1px 2px 2px rgba(0,0,0,.32);
            left: 70px;
            top: 50%;
            margin-top: 60px;
        }

            #banner-container ul li a:before {
                content: '';
                position: absolute;
                border-left: 11px solid #d06f1a;
                border-top: 6px solid transparent;
                border-bottom: 6px solid transparent;
                top: 14px;
                left: 18px;
            }

@media only screen and (max-width:1160px) {
    #banner-container ul li p {
        font-size: 28px;
        margin-top: -65px;
        max-width: 820px;
        padding: 5px 18px;
    }

        #banner-container ul li p span {
            font-size: 24px;
            display: block;
            margin-top: 5px;
        }

    #banner-container ul li a {
        margin-top: 30px;
    }
}

@media only screen and (max-height:768px) {
    #top-bar {
        height: 40px;
    }

        #top-bar ul.thin {
            height: 40px;
        }

            #top-bar ul.thin a {
                line-height: 40px;
            }

    form#search-form {
        margin-top: 4px;
    }

    #page-heading {
        margin-top: 10px;
        height: 85px;
    }

        #page-heading ul {
            margin-top: 28px;
        }
}

#banner-container section {
    height: 225px;
    margin: 0 0 20px -480px;
    position: absolute;
    bottom: 0;
    left: 50%;
}

#banner-container article {
    background: #01497c;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iIzAxNDk3YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDNhNjMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,rgba(1,73,124,1) 1%,rgba(0,58,99,1) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(1%,rgba(1,73,124,1)),color-stop(100%,rgba(0,58,99,1)));
    background: -webkit-linear-gradient(top,rgba(1,73,124,1) 1%,rgba(0,58,99,1) 100%);
    background: -o-linear-gradient(top,rgba(1,73,124,1) 1%,rgba(0,58,99,1) 100%);
    background: -ms-linear-gradient(top,rgba(1,73,124,1) 1%,rgba(0,58,99,1) 100%);
    background: linear-gradient(top bottom,rgba(1,73,124,1) 1%,rgba(0,58,99,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#01497c', endColorstr='#003a63', GradientType=0);
    border-radius: 10px;
    height: 225px;
    color: #fff;
    position: relative;
}

    #banner-container article h1 {
        font-size: 24px;
        padding: 20px;
        margin: 0;
    }

        #banner-container article h1 a, #banner-container article p a {
            color: inherit;
        }

    #banner-container article p {
        padding: 0 22px;
        font-size: 15px;
        margin: 0;
    }

    #banner-container article div {
        position: absolute;
        bottom: 16px;
        right: 20px;
    }

    #banner-container article a.link {
        display: inline-block;
        vertical-align: top;
        zoom: 1;
        *display: inline;
        float: right;
        font-size: 11px;
        color: #fff;
        padding-left: 30px;
        margin-left: 10px;
        position: relative;
        -webkit-transition: color .25s ease;
        -moz-transition: color .25s ease;
        -ms-transition: color .25s ease;
        -o-transition: color .25s ease;
        transition: color .25s ease;
    }

        #banner-container article a.link:before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: url(../img/pages/sprites.png) -32px -75px;
            left: 6px;
            top: 0;
            -webkit-transition: all .25s ease;
            -moz-transition: all .25s ease;
            -ms-transition: all .25s ease;
            -o-transition: all .25s ease;
            transition: all .25s ease;
        }

        #banner-container article a.link:hover {
            color: #0096d7;
        }

            #banner-container article a.link:hover:before {
                -webkit-transform: scale(1.1);
                -moz-transform: scale(1.1);
                -ms-transform: scale(1.1);
                -o-transform: scale(1.1);
                transform: scale(1.1);
            }

/*
 * 07 - Cotidiano e Destaque
 * ----------------------------------------------*/
#features {
    margin-top: 80px;
    overflow: hidden;
}

    #features #features-list {
        width: 999999px;
    }

        #features #features-list li {
            overflow: hidden;
            border: 1px solid #e7e7e7;
            box-shadow: 0 0 0 rgba(0,0,0,0);
            height: 270px;
            box-sizing: border-box;
            position: relative;
        }

            #features #features-list li:hover {
                box-shadow: 0 0 6px rgba(0,0,0,.25);
                border-color: #cecece;
            }

            #features #features-list li article {
                border-top: 4px solid #b6b8ba;
                -webkit-transition: border-color .25s ease;
                -moz-transition: border-color .25s ease;
                -ms-transition: border-color .25s ease;
                -o-transition: border-color .25s ease;
                transition: border-color .25s ease;
            }

            #features #features-list li:hover article {
                border-color: #0096d7;
            }

            #features #features-list li article img {
                width: 300px;
                height: 138px;
                border-bottom: 1px solid #e9e9e9;
            }

            #features #features-list li article p {
                color: #003a63;
                margin: 16px 12px 0;
                font-size: 18px;
                white-space: pre-wrap;
            }

            #features #features-list li article a {
                color: #003a63;
            }

    #features #menu {
        float: right;
        height: 10px;
        margin-bottom: 30px;
    }

        #features #menu li {
            float: left;
            margin: 0 5px;
        }

        #features #menu a {
            display: block;
            width: 10px;
            height: 10px;
            background: #fff;
            box-shadow: inset 0 1px 2px rgba(0,0,0,.54);
            border-radius: 50%;
            cursor: pointer;
        }

            #features #menu a.active {
                box-shadow: inset 0 0 0 #fff;
                background: #0096d7;
                background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxMCUiIHN0b3AtY29sb3I9IiMwMDk2ZDciIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSI5MiUiIHN0b3AtY29sb3I9IiMwMTQ5N2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
                background: -moz-linear-gradient(top,rgba(0,150,215,1) 10%,rgba(1,73,124,1) 92%);
                background: -webkit-gradient(linear,left top,left bottom,color-stop(10%,rgba(0,150,215,1)),color-stop(92%,rgba(1,73,124,1)));
                background: -webkit-linear-gradient(top,rgba(0,150,215,1) 10%,rgba(1,73,124,1) 92%);
                background: -o-linear-gradient(top,rgba(0,150,215,1) 10%,rgba(1,73,124,1) 92%);
                background: -ms-linear-gradient(top,rgba(0,150,215,1) 10%,rgba(1,73,124,1) 92%);
                background: linear-gradient(top bottom,rgba(0,150,215,1) 10%,rgba(1,73,124,1) 92%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0096d7', endColorstr='#01497c', GradientType=0);
            }

#everyday {
    margin-top: 50px;
}

    #everyday .sliding {
        display:none;
    }

    #everyday #cotidiano-mais {
    }

    #everyday h2 {
        font-size: 24px;
        color: #fff;
        text-shadow: 1px 1px 0 rgba(0,60,101,.31);
        margin-bottom: 30px;
        display: inline-block;
        vertical-align: top;
        zoom: 1;
        *display: inline;
        line-height: 43px;
        height: 43px;
        padding: 0 15px;
        background: #1a9bcf;
        border-radius: 10px;
    }

    #everyday ul li {
        margin: 0 10px 20px 0;
        height: 80px;
        float: left;
        width: 300px;
    }

        #everyday ul li a time, #everyday ul li a span {
            font-size: 14px;
            font-weight: 300;
        }

        #everyday ul li a time {
            color: #0096d7;
            margin-right: 10px;
        }

        #everyday ul li a span {
            color: #9f9f9f;
        }

        #everyday ul li a p {
            font-size: 18px;
            font-weight: 300;
            color: #000;
            padding-top: 5px;
        }

        #everyday ul li a:hover p {
            text-decoration: underline;
        }

#load-more {
    display: block;
    width: 100%;
    height: 40px;
    color: #0096d7;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

    #load-more:hover {
        background: #eff2fd;
    }

    #load-more:after {
        content: '';
        position: relative;
        border-top: 7px solid #0096d7;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        margin-left: 10px;
        top: 14px;
    }
