/*! jQuery-Impromptu - v6.2.2 - 2015-11-14
* http://trentrichardson.com/Impromptu
* Copyright (c) 2015 Trent Richardson; Licensed MIT */
.errorfade{
    position: absolute;
    background-color: #777777;
}
iframe.errorfade{
    display:block;
    z-index:-1;
}
div.error{
    width: 400px;
    max-width:90%;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    position: absolute;
    background-color: red;
    font-size: 11px;
    text-align: left;
    border: solid 1px #eeeeee;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    padding: 7px;
}
div.error .errorcontainer{
}
div.error .errorclose{
    position: absolute;
    top: 4px; right: -2px;
    width: 18px;
    cursor: default;
    color: #bbbbbb;
    font-weight: bold;
}
div.error .errorstate{
    background-color: red;
}
div.error .errortitle{
    padding: 5px 10px;
    font-size: 16px;
    line-height: 20px;
    border-bottom: solid 1px #eeeeee;
    color:white;
    font-weight:bold;
}
    div.error .errormessage {
        padding: 10px;
        line-height: 20px;
        /*color: #444444;*/
        overflow: auto;
        color: white;
        font-weight: bold;
    }
div.error .errorbuttonshide{
    display: none;
}
div.error .errorbuttons{
    text-align: right;
    margin: 0 -7px -7px -7px;
    border-top: solid 1px #e4e4e4;
    background-color: red;
    border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    -webkit-border-radius: 0 0 6px 6px;
    color:white;
}
div.error .errorbuttons button{
    margin: 0;
    padding: 15px 20px;
    background-color: transparent;
    /*font-weight: normal;*/
    border: none;
    border-left: solid 1px #e4e4e4;
    /*color: #777;*/
    font-weight: bold;
    font-size: 12px;
    color:white;
}
    div.error .errorbuttons button.errordefaultbutton {
        color: white;
        font-weight: bold;
    }
    div.error .errorbuttons button:hover,
    div.error .errorbuttons button:focus {
        color: white;
        outline: none;
        font-weight: bold;
    }
div.error .errorbuttons button[disabled]{
    color: white;
}
.errorwarning .error .errorbuttons{
    background-color: #b95656;
}

/* sub states */
div.error .errorparentstate::after{
    background-color: #777;
    opacity: 0.6;
    filter: alpha(opacity=60);
    content: '';
    position: absolute;
    top:0;left:0;bottom:0;right:0;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}
div.error .errorsubstate{
    position: absolute;
    top:0;
    left: 20%;
    width: 60%;
    padding: 7px;
    border: solid 1px #eeeeee;
    border-top: none;
    border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    -webkit-border-radius: 0 0 6px 6px;
}
div.error .errorsubstate .errorbuttons button{
    padding: 10px 18px;
}

/* arrows for tooltips/tours */
.error .errorarrow{ position: absolute; height: 0; width:0; line-height: 0; font-size: 0; border: solid 10px transparent;}

.error .errorarrowtl{ left: 10px; top: -20px; border-bottom-color: #ffffff; }
.error .errorarrowtc{ left: 50%; top: -20px; border-bottom-color: #ffffff; margin-left: -10px; }
.error .errorarrowtr{ right: 10px; top: -20px; border-bottom-color: #ffffff; }

.error .errorarrowbl{ left: 10px; bottom: -20px; border-top-color: #ffffff; }
.error .errorarrowbc{ left: 50%; bottom: -20px; border-top-color: #ffffff; margin-left: -10px; }
.error .errorarrowbr{ right: 10px; bottom: -20px; border-top-color: #ffffff; }

.error .errorarrowlt{ left: -20px; top: 10px; border-right-color: #ffffff; }
.error .errorarrowlm{ left: -20px; top: 50%; border-right-color: #ffffff; margin-top: -10px; }
.error .errorarrowlb{ left: -20px; bottom: 10px; border-right-color: #ffffff; }

.error .errorarrowrt{ right: -20px; top: 10px; border-left-color: #ffffff; }
.error .errorarrowrm{ right: -20px; top: 50%; border-left-color: #ffffff; margin-top: -10px; }
.error .errorarrowrb{ right: -20px; bottom: 10px; border-left-color: #ffffff; }

