html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

body {
    line-height: 1
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none
}

:focus {
    outline: 0
}

ins {
    text-decoration: none
}

del {
    text-decoration: line-through
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

/*  ----- modal + small centered box  -----  */
#ezalert_overlay {
    position: absolute;
    z-index: 10000;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #000000;
    display: none;
}

#ezalert_container {
    z-index: 11000;
    position: absolute;
    background-color: #fff;
    min-width: 400px;
    max-width: 400px;

    border: 2px solid #ddd;

    border-radius: 7px;
    -moz-border-radius: 7px;

    -moz-box-shadow: 0px 0px 4px #666;
    -webkit-box-shadow: 0px 0px 4px #666;
    box-shadow: 0px 0px 4px #666;

    overflow: visible;
}

#ezalert_title img {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 70px;
}
#ezalert_title {
    padding: 15px 20px 15px 60px;
    color: #333;
    font-size: 22px;
    border-bottom: 1px solid #fff;
}
#ezalert_body {
    padding: 10px;
    min-height: 100px;

}
#ezalert_actions {
    padding: 10px;
}

#ezalert_close img {
    margin: 0 3px 0 0;
    vertical-align: middle;
}

#ezalert_close {
    position: relative;
    padding: 4px 8px 6px 3px;;
    border: 1px solid #999;
    background-color: #efefef;
    border-radius: 5px;
    -moz-border-radius: 5px;
}

.clickable {
    cursor: pointer;
}

/*  ----- slide in alert  ----- */
#ezalert_slide_container {
    position: absolute;
    width: 100%;
    min-height: 50px;
    background-color: #222;
}

#ezalert_slide_outer {
    position: relative;
    margin: 10px auto;
    min-width: 500px;
    max-width: 700px;
    height: 100%;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
}

#ezalert_slide_title img {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 70px;
}

#ezalert_slide_title {
    margin: 0 0 0 85px;
    font-size: 22px;
    color: #333;
    padding: 10px 0 10px 0;
}

#ezalert_slide_body {
    margin: 0 10px 0 85px;
    min-height: 70px;
}

#ezalert_slide_actions {
    padding: 7px;
}

/*  ----- type classes -----  */

.info {
    border-top: 1px solid #9BDFFF;
    background: -moz-linear-gradient(top, #C6ECFD, #efefef);
    background: -webkit-gradient(linear, right top, right bottom, from(#C6ECFD), to(#efefef));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #C6ECFD, endColorstr = #efefef);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#C6ECFD, endColorstr=#efefef)";
}

.help {
    border-top: 1px solid #9BDFFF;
    background: -moz-linear-gradient(top, #C6ECFD, #efefef);
    background: -webkit-gradient(linear, right top, right bottom, from(#C6ECFD), to(#efefef));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #C6ECFD, endColorstr = #efefef);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#C6ECFD, endColorstr=#efefef)";
}

.fyi {
    border-top: 1px solid #E6E47C;
    background: -moz-linear-gradient(top, #F7F5A6, #efefef);
    background: -webkit-gradient(linear, right top, right bottom, from(#F7F5A6), to(#efefef));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #F7F5A6, endColorstr = #efefef);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#F7F5A6, endColorstr=#efefef)";
}

.caution {
    border-top: 1px solid #999;
    background: -moz-linear-gradient(top, #ccc, #efefef);
    background: -webkit-gradient(linear, right top, right bottom, from(#ccc), to(#efefef));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #ccc, endColorstr = #efefef);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8A7A7, endColorstr=#efefef)";
}

.warning {
    border-top: 1px solid #D0DDE9;
    background: -moz-linear-gradient(top, #F8A7A7, #efefef);
    background: -webkit-gradient(linear, right top, right bottom, from(#F8A7A7), to(#efefef));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = #F8A7A7, endColorstr = #efefef);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#F8A7A7, endColorstr=#efefef)";
}






