﻿
 .pop-up-background
        {
            background: rgba(0,0,0,.7);
            height: 100%;
            left: 0;
            top: 0;
            position: fixed;
            width: 100%;
            z-index: 100;
        }
        
        .pop-up
        {
            border-radius: 15px;
            position: relative;
            top: 10%;
            -moz-box-shadow: 0px 0px 12px 5px #363636;
            -webkit-box-shadow: 0px 0px 12px 5px #363636;
            box-shadow: 0px 0px 12px 5px #363636;
            z-index: 101;
            
                    }
       
  .Close
        {
            position: relative;
            z-index: 106;
            text-align: right;
			right:-10px;
			margin-top:-10px;
        }

    .BottomRightCorner
        {
            position: relative;
            z-index: 106;
            text-align: right;
			right:5px;
			margin-bottom:5px;
        }


     .disabledControl
        {
            cursor: not-allowed;
            pointer-events: none;
            opacity: 0.4;
        }

    .NumberOnly {
        /*  DO NOT DELETE */
    }

    .divLoading
        {
            background: #000 url(../images/Loading.gif) no-repeat center center;
            opacity: 0.6;
            height: 100%;
            width: 100%;
            position: fixed;
            left: 0%;
            top: 0%;
            margin: 0 0 0 0;
            z-index: 100002;
        }

.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 220px;
    background-color:#e6e6e6;
    color: black;
    text-align: left;
    border-radius: 8px;
    padding:5px 8px;
		-webkit-box-shadow: 0 10px 6px -6px #777;
	   -moz-box-shadow: 0 10px 6px -6px #777;
	        box-shadow: 0 10px 6px -6px #777;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}