/* --- Print CSS -- */
@media print{
    thead{
	display : table-header-group;
    }
    td{
	background: #ffffff;
	border: 1px solid #000;
    }
}



/* --- Other CSS -- */
.from_tbl_border{
    background: #ffffff !important;
    border: 1px solid #000 !important;
}

.loadingDiv{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: url(../images/loader.gif) center no-repeat #fff;
    opacity: .8;
}

.loadingDivBTN{
    position: fixed;
    right: 5px;
    top: 50px;
    width: 80px;
    height: 80px;
    z-index: 999999;
    background: url(../images/loader.gif) center no-repeat #fff;
    opacity: .8;
}

.highlighted{
    background: red;
}

.speech-bubble-left{
    position: relative;
    background: #ffbadd;
    border-radius: .4em;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.speech-bubble-left:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-right-color: #ffbadd;
    border-left: 0;
    border-top: 0;
    margin-top: -10px;
    margin-left: -20px;
}

.speech-bubble-right{
    position: relative;
    background: #93e6ef;
    border-radius: .4em;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.speech-bubble-right:after{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-left-color: #93e6ef;
    border-right: 0;
    border-bottom: 0;
    margin-top: -10px;
    margin-right: -20px;
}

span{
    cursor: pointer;
}