div.infoBoxContainer {
    font-family: Verdana;
    background: #fff;
    text-align: center;
    font-weight: bold; 
    position: fixed; 
    width: 100%;
    min-width: 100px;
    margin: 0;
    top: 0;
    left: 0;
    font-size: 11px;
    line-height: 17px;
    display: none;

    box-shadow: 0px 0px 10px #333;

    padding: 10px 0;
    z-index: 10100;
    
/*    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;*/
}
div.infoBoxContainer.top {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

div.infoBoxButtons {
    border-top: 1px solid #fff;
    box-shadow: 0 -1px #ccc;
    
    position: relative;
    bottom: 0;
    padding-top: 10px;
    margin-top: 10px;
    width: 100%;
}

div.infoBoxHeader {
    color: #333;
    padding: 10px;
    padding-top: 0;
    font-weight: bold;
    font-family: "Trebuchet MS";
    font-size: 14px;
    min-height: 10px;
    cursor: move;
    line-height: 14px;
    /*margin-bottom: 10px;*/
    text-align: left;
    
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
    /*border-bottom: 1px solid #CCC;*/
    /*box-shadow: 0 1px #fff;*/
    
    color: #666;
    text-shadow: 1px 1px #fff;
}

div.infoBoxBackground {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10100;
    width: 100%;
    height: 100%;
    background: #000;
    filter: alpha(opacity = 50);
    -moz-opacity: .50;
    opacity: .50;
    
    background: #777777;
    background: -moz-radial-gradient(center, ellipse cover,  #888888 0%, #000000 65%);
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#888888), color-stop(65%,#000000));
    background: -webkit-radial-gradient(center, ellipse cover,  #888888 0%,#000000 65%);
    background: -o-radial-gradient(center, ellipse cover,  #888888 0%,#000000 65%);
    background: -ms-radial-gradient(center, ellipse cover,  #888888 0%,#000000 65%);
    background: radial-gradient(center, ellipse cover,  #888888 0%,#000000 65%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#888888', endColorstr='#000000',GradientType=1 );
}

div.infoBoxContent {
    padding: 0 15px;
    text-align: left;
    font-family: "Trebuchet MS";
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
    font-style: italic;
    text-align: justify;
    text-align-last: left;
}

div.infoBoxImageLoading {
    background: url('../images/jquery.infoBox/loading.gif') no-repeat; 
    margin: auto; 
    margin-top: 100px; 
    width: 40px; 
    height: 40px;
}

.description {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.7);
    bottom: 5px;
    color: white;
    line-height: 13px;
    position: absolute;
    text-align: justify;
    width: 100%;
    font-size: 11px;
}
.description span {
    display: block;
    margin: 5px;
}
.imgContainer {
    text-align: center; position: relative; width: 100%;
}

div.infoBoxContainer table{
    margin-left: 5px;
}
div.infoBoxContainer table tr td.label{
    padding: 2px;
    padding-right: 10px;
    padding-left: 10px;
    font-weight: normal; 
    font-style: italic; 
    font-size: 10px; 
    text-align: right;
    vertical-align: top;
    color: #666;
}
div.infoBoxContainer table tr td.label:first-letter{
    text-transform: uppercase;
}
div.infoBoxContainer table tr td.message{
    text-align: left;
    padding: 2px;
    padding-left: 0px;
    padding-right: 10px;
    font-size: 11px;
    font-weight: bold;
    line-height: 18px;
}

/*
div.infoBoxButtons.button {
    -webkit-box-shadow: 1px 1px 15px #000000;
    -moz-box-shadow: 1px 1px 15px #000000;
    -o-box-shadow: 1px 1px 15px #000000;
    -ms-box-shadow: 1px 1px 15px #000000;
    box-shadow: 1px 1px 15px #000000;
}*/

/* BUTTONS */
div.infoBoxButtons span.button {
    position: relative;
    display: inline-block;
    min-width: 60px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    margin: 0 5px;
    padding: 0 5px;
    
    color: #ffffff;
    text-shadow: 1px 1px #333;
    
    background: #00619e; /* Old browsers */
    background: -moz-linear-gradient(top,  #69a7ce 0%, #00619e 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#69a7ce), color-stop(100%,#00619e)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #69a7ce 0%,#00619e 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #69a7ce 0%,#00619e 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #69a7ce 0%,#00619e 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #69a7ce 0%,#00619e 100%); /* W3C */

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    
    -webkit-box-shadow: 0 0 1px #f0f0f0 inset;
    -moz-box-shadow: 0 0 1px #f0f0f0 inset;
    box-shadow: 0 0 1px #f0f0f0 inset;
    
    border: 1px solid #005187;
}

div.infoBoxButtons span.button.cancel {
    background: #ce726a; /* Old browsers */
    background: -moz-linear-gradient(top,  #ce726a 0%, #9e0d00 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ce726a), color-stop(100%,#9e0d00)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ce726a 0%,#9e0d00 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ce726a 0%,#9e0d00 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ce726a 0%,#9e0d00 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ce726a 0%,#9e0d00 100%); /* W3C */
    
    border: 1px solid #88000b;
}

div.infoBoxButtons span.button.confirm {
    background: #6ace85; /* Old browsers */
    background: -moz-linear-gradient(top,  #6ace85 0%, #009e2a 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6ace85), color-stop(100%,#009e2a)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #6ace85 0%,#009e2a 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #6ace85 0%,#009e2a 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #6ace85 0%,#009e2a 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #6ace85 0%,#009e2a 100%); /* W3C */
    
    border: 1px solid #00880e;
}

div.infoBoxButtons span.button.right {
    float:right;
    margin-right: 8px;
}
div.infoBoxButtons span.button.left {
    float:left;
    margin-left: 8px;
}

div.infoBoxButtons span.button:hover {
    -webkit-box-shadow: 0 0 2px #f0f0f0 inset;
    -moz-box-shadow: 0 0 2px #f0f0f0 inset;
    box-shadow: 0 0 2px #f0f0f0 inset;
}
div.infoBoxButtons span.button:active{
    top: 1px;
    left: 1px;
}

img#infoBoxInfoImg {
    height: 35px;
    float: left;
    margin-right: 10px;
}
div.infoBoxIcon {
    display: inline-block;
    width: 36px;
    height: 36px;
    float: left;
    margin-right: 10px;
}
div.infoBoxIcon.alert {
    background: url('../images/jquery.infoBox/alertIcon.png') no-repeat;
}
div.infoBoxIcon.error {
    background: url('../images/jquery.infoBox/errorIcon.png') no-repeat;
}
div.infoBoxIcon.success {
    background: url('../images/jquery.infoBox/successIcon.png') no-repeat;
}
div.infoBoxIcon.info {
    background: url('../images/jquery.infoBox/infoIcon.png') no-repeat;
}
div.infoBoxIcon.confirm {
    background: url('../images/jquery.infoBox/confirmIcon.png') no-repeat;
}

.clear {
    clear: both;
}