.message-box {
    margin: 0.2em;
    border-width: 1px;
    border-style: solid;
    padding: 1em;
    padding-left: 60px;

    background-position: 5px center;
    background-repeat: no-repeat;

    border-radius: 5px; /* Gecko (Firefox) */
    -moz-border-radius: 5px; /* WebKit (Safari/Chrome) */
    -webkit-border-radius: 5px; /* KHTML (Konquerer) */
    -khtml-border-radius: 5px;

    font-family: Arial;
}

.message-box .close {
    float: right;
    margin-left: 0.5em;
    width: 16px;
    height: 16px;
    background-image: url("/kepek/icon/message-box-close.png");
    cursor: pointer;
}

.message-box.success {
    border-color: #006600;
    background-color: #99cc00;
    background-image: url("/kepek/icon/message-box-success.png");
}

.message-box.error {
    border-color: #ff3333;
    background-color: #ffcccc;
    background-image: url("/kepek/icon/message-box-error.png");
}