@CHARSET "UTF-8";
/* screen.css */

em.error {
    text-align: left;
    color: #a94442;
    background: url("../images/unchecked.gif") no-repeat 0px 3px;
    padding-left: 16px;
    margin-left: 5px;
    word-wrap: break-word;
    word-break: normal;
    white-space: nowrap;
    line-height: 22px;
    display: inline;
}

em.success {
    text-align: left;
    color: #3c763d;
    background: url("../images/checked.gif") no-repeat 0px 3px;
    padding-left: 16px;
    margin-left: 5px;
    word-wrap: break-word;
    word-break: normal;
    white-space: nowrap;
    line-height: 22px;
    display: inline;
}

/* tooltips-1.0.0.css */

.tooltips {
    position: absolute;
    z-index: 1070;
    display: block;
    font-size: 12px;
    line-height: 1.4;
    visibility: visible;
    filter: alpha(opacity=0);
    opacity: 0;
}

.tooltips.in {
    filter: alpha(opacity=100);
    opacity: 1;
}

.tooltips.top {
    padding: 5px 0;
    margin-top: -3px;
}

.tooltips.right {
    padding: 0 5px;
    margin-left: 3px;
}

.tooltips.bottom {
    padding: 5px 0;
    margin-top: 3px;
}

.tooltips.left {
    padding: 0 5px;
    margin-left: -3px;
}

.tooltips-inner {
    min-width: 80px;
    max-width: 500px;
    padding: 3px 8px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    color: #4D4D4D;
    background-color: #FDF2F0;
    border: 1px solid #FD807E;
}

.tooltips-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltips.top .tooltips-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #FD807E;
}

.tooltips.top-left .tooltips-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #FD807E;
}

.tooltips.top-right .tooltips-arrow {
    right: 5px;
    bottom: 0;
    border-width: 5px 5px 0;
    border-top-color: #FD807E;
}

.tooltips.right .tooltips-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #FD807E;
}

.tooltips.left .tooltips-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #FD807E;
}

.tooltips.bottom .tooltips-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #FD807E;
}

.tooltips.bottom-left .tooltips-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #FD807E;
}

.tooltips.bottom-right .tooltips-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #FD807E;
}