body{
    margin: 0;
    padding: 0;

    background-color: #FAFAFA;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #262626;
}

h1, h2, h3, h4, h5, h6{
    margin: 0px;
    padding: 0px;

    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

p{
    margin: 0px;
    padding: 0px;
}

.txt-lightgray{
    color: #AAAAAA;
}

.txt-darkgray{
    color: #707070;
}

.fs-13{
    font-size: 13px;
}

.fs-14{
    font-size: 14px;
}

a{
    color: #262626;
}

.flex{
    display: flex;
}

.flex .img{
    margin-right: 20px;
}

.img{
    display: block;

    border: 1px;
    border-style: solid;
    border-color: #E6E6E6;
    border-radius: 3px;
}

.img-xs{
    width: 40px;
    height: 40px;
}

.img-lg{
    width: 60px;
    height: 60px;
}

.btn{
    display: block;
    height: 40px;
    line-height: 40px;

    padding-left: 20px;
    padding-right: 20px;

    background-color: #00E585;
    cursor: pointer;

    border: 1px;
    border-style: solid;
    border-color: #00C972;
    border-radius: 3px;

    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
}

.btn i{
    margin-right: 10px;
}

.btn:hover{
    background-color: #00FF96;
    border-color: #00E585;
}

.pd-10{
    padding: 10px;
}

.pd-20{
    padding: 20px;
}

.items{
    display: flex;
    flex-wrap: wrap;

    margin: 10px;
}

.items .item{
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 140px;

    max-width: 220px;

    margin: 10px;

    text-decoration: none;
    cursor: pointer;
}

.items .item .thumbnail{
    position: relative;
    width: 100%;
    margin-bottom: 5px;

    border-radius: 4px;
    overflow: hidden;

    border: 1px;
    border-style: solid;
    border-color: #E6E6E6;
}

.items .item .thumbnail img{
    display: block;
    width: 100%;
}

.items .item .thumbnail .overlay{
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    display: none;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;
}

.items .item:hover .thumbnail .overlay{
    display: flex;
    background-color: rgba( 0, 0, 0, 0.4 );
}

.items .item .title{
    text-align: center;
}

header{
    z-index: 1337;

    position: sticky;
    top: 0px;

    display: flex;
    flex-wrap: wrap;
    line-height: 50px;

    background-color: #FFFFFF;

    /*border: 0px;
    border-bottom: 1px;
    border-style: solid;
    border-color: #E6E6E6;*/

    box-shadow: 0px 3px 4px 0px rgba( 0, 0, 0, 0.2 )
}

header .logo{
    font-family: 'Lobster', sans-serif;
    font-size: 20px;
    color: #00E585;
}

header a{
    display: block;
    line-height: 50px;
    padding-left: 20px;
    padding-right: 20px;

    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

header a:hover{
    background-color: #FAFAFA;
}

header .active{
    box-shadow: inset 0px -3px 0px 0px #00E585;
}

header a i{
    margin-right: 10px;
    color: #00E585;
}

main{
    display: flex;
    flex-wrap: wrap;

    margin: 10px;
}

main .left{
    margin: 10px;

    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 1000px;

    overflow: hidden;
}

main .right{
    margin: 10px;

    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 400px;

    overflow: hidden;
}

.box{
    background-color: #FFFFFF;

    border: 1px;
    border-style: solid;
    border-color: #E6E6E6;
    border-radius: 3px;

    /*box-shadow: inset 0px -3px 0px 0px #00E585;*/

    overflow: hidden;
}

.box + .box{
    margin-top: 20px;
}

.box .box-title{
    padding-left: 20px;
    margin-top: 20px;

    font-size: 15px;
}

.box .box-title-sm{
    font-size: 13px;
}

.box .title{
    font-weight: 700;
    font-size: 13px;
}

.link-hover{
    display: block;
    height: 30px;
    line-height: 30px;

    box-sizing: border-box;
    padding-left: 10px;
    margin-bottom: 1px;

    text-decoration: none;

    border: 1px;
    border-style: solid;
    border-color: transparent;
}

.link-hover:hover, .link-hover.active{
    background-color: #00E585;
    color: #FFFFFF !important;

    border: 1px;
    border-style: solid;
    border-color: #00C972;
    border-radius: 4px;
}

.link-hover:hover{
    background-color: #00FF96;
}

.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.pagination span{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.pagination span:hover a,
.pagination span:hover i{
    background-color: #00E585;
    color: #FFFFFF;
}

.pagination span a{
    display: block;
}

.pagination i{
    color: #00E585;
}

.keywords{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.keywords a{
    display: block;
    height: 15px;
    line-height: 15px;


    padding-left: 5px;
    padding-right: 5px;

    margin: 4px;

    background-color: #00E585;

    border: 1px;
    border-style: solid;
    border-color: #00C972;
    border-radius: 50px;

    text-decoration: none;

    font-size: 11px;
    color: #FFFFFF;
}

.keywords a:hover{
    background-color: #00FF96;
}