body {
    font-size: 14px;
    font-family: Helvetica, Arial, Sans-Serif;
    margin: 0;
    padding: 0;
}

#errorContainer {
    text-align: center;
    padding: 100px 0;
    background: #e1e1e1;
    background: -moz-linear-gradient(top, #e1e1e1 0, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e1e1e1), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #e1e1e1 0, #ffffff 100%);
    background: -o-linear-gradient(top, #e1e1e1 0, #ffffff 100%);
    background: -ms-linear-gradient(top, #e1e1e1 0, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e1e1e1', endColorstr='#ffffff', GradientType=0);
    background: linear-gradient(top, #e1e1e1 0, #ffffff 100%);
    padding: 2em;
}

#errorContainer h1 {
    font-size: 24px;
    font-family: Georgia, Times New Roman, Serif;
    font-weight: normal;
}

#errorContainer h2 {
    font-size: 16px;
    color: #666;
}

#errorContainer p {
    line-height: 20px;
    font-weight: bold;
    color: #666;
}

#errorContainer a {
    text-decoration: none;
    color: #0b479d;
}

#errorContainer a:hover {
    text-decoration: underline;
}

.custom-error {
    background-color: #e1e1e1;
    border: 1px solid #666;
    color: #666;
    padding: 2em;
}