/* n00000370.c00000115.ThemeA */


.logo img {
    height: 60px;
}

.topStrip {
    background-color: #235939;
}


.catMenu img {
    width: 70px;
    height: 70px;
}

.searchBox
{
  
    display:flex;
    justify-content:space-around;
    align-items:center;

}

.an {
    animation-duration: 7s;
    animation-name: an_slidein;
    animation-iteration-count:infinite;

}

@keyframes an_slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

.article {
    animation-duration: 9s;
    animation-name: article_slidein;
    animation-iteration-count: infinite;
}

@keyframes article_slidein {
    from {
        margin-left: 70%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}


