.notification_area {
    display: none;
    position: fixed;
    width: 40%;
    height: 200;
    bottom: 0;
    z-index: 100;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7)
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    75%{
        opacity: 0.35;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes fadeout {
    0% {
        opacity: 0.7;
    }
    25%{
        opacity: 0.35;
    }
    100% {
        opacity: 0;
    }
}

.notification_area.show {
    display: block;
    animation: fadein 1.5s linear 0s;
}

.notification_area.hide {
    display: block;
    opacity: 0;
    animation: fadeout 1.5s linear 0s;
}

.notification_area dt, .history_area dt{
    font-weight: bold;
}

.notification_area dd, .history_area dd {
    margin-left: 20px;
    padding: 5px;
}

.notification_area > .links a {
    margin-left: 15px;
}

.notification_area > .links {
    text-align: center;
}

.strike {
    text-decoration: line-through;
}
