@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 0.5s;
    /* Safari 4.0 - 8.0 */
    animation-duration: 0.5s;
}

.header_user_info {
    float: right;
    border-right: 1px solid #515151;
    margin: 9px 0px;
}

.header_user_info a {
    color: #000;
    display: block;
    padding: 0px 20px;
    cursor: pointer;
    line-height: 19px;
    font-size: 14px;
}

.header_user_info a:hover {
    color: #253969
}

@media (max-width: 479px) {
    .header_user_info a {
        font-size: 11px;
    }
}

.header_user_info a:hover,
.header_user_info a.active {
    color: #253969;
}

.header_user_info a i {
    padding-left: 10px;
    font-size: 14px;
}

/*# sourceMappingURL=blockuserinfo.css.map */
