label.error {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px !important;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    /* works for IE 5+. */
    filter:alpha(opacity=75);
    /* works for IE 8. */
    background: red \9;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
    font-size: 12px;
    color: #fff;
    text-align: left;
}

label.error:after {
    position: absolute;
    bottom: -7px;
    left: 15px;
    content: "";
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid red;
}

.dnnGridItemRequired {
    float: right;
}

.dnnGridItem td label.error, .dnnGridAltItem td label.error {
    position: relative;
    top: -80px;
    right: -270px;
}

.dnnGridItem td label.error:after, .dnnGridAltItem td label.error:after {
    /*display:none;*/
}

.dnnGridItem td input, .dnnGridAltItem td input {
    margin-bottom: 0px;
}

.tabError:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}