div.ablkAlert {
    display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
div.ablkAlert a {
    color: white !important;
    border-bottom: 1px dotted white ! important;
    text-decoration: none !important;
}
div.ablkAlert > .screen {
    width: 100%;
    height: 100%;
    background: #808080;
    opacity: 0.6;
}
div.ablkAlert > .message {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;

    background: #3333cc; /* Old browsers */
    background: -moz-linear-gradient(top, rgba(51,51,204,1) 0%, rgba(51,51,204,0.8) 75%, rgba(51,51,204,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(51,51,204,1) 0%, rgba(51,51,204,0.8) 75%, rgba(51,51,204,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(51,51,204,1) 0%,　rgba(51,51,204,0.8) 75%,　rgba(51,51,204,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    color: yellow;
    padding: 20px 24px 80px 24px;
    box-sizing: border-box;
}
div.ablkAlert > .message > .title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 24px;
}
div.ablkAlert > .message > .content {
    text-align: center;
    font-size: 18px;
}
div.ablkAlert > .message .pictures {
    display: none;
    text-align: center;
}
div.ablkAlert > .message .pictures.shown {
    display: block;
}
div.ablkAlert > .message .picture {
    display: inline-block;
    vertical-align: top;
    padding: 20px;

}
div.ablkAlert > .message .picture:last-child {
    border-right: 0px;
}
div.ablkAlert > .message .picture > div {
    font-size: 24px;
    margin-bottom: 6px;
}
div.ablkAlert > .message .picture > img {
    opacity: 0.9;
}
div.ablkAlert > .message .picture:hover > img {
    opacity: 1;
}
div.ablkAlert > .dismiss {
    position: absolute;
    top: 10px;
    width: 16px;
    height: 16px;
    opacity: 0.9;
}
div.ablkAlert > .dismiss.left    { left:     10px; }
div.ablkAlert > .dismiss.right   { right:    10px; }
div.ablkAlert > .dismiss.clickable {
    background: url(/images/close-white-16x16.png) no-repeat 0px 0px;
    cursor: pointer;
}
div.ablkAlert > .dismiss.wait {
    border-radius: 2px;
    background: #cccccc;
    color: #333333;
    font-size: 12px;
    text-align: center;
    overflow: hidden;
}
body.ablkOn div.ablkAlert {
    display: block;
}
body.ablkOn {
    overflow: hidden !important;
}
