.Notification-container {
    width: 320px;
    z-index: 10005;
}


* html .Notification-container {
    position: absolute;
}

.Notification-item {
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 14px;
    display: block;
    position: relative;
    margin: 0;
    min-height: 20px;
    min-width: 375px;
}

.Notification-item-wrapper {
    min-height: 80px;
    min-width: 400px;
    padding: 20px;
}

.Notification-item p {
    text-align: center;
    margin: 0 50px;
}

.Notification-item-close {
    width: 22px;
    height: 22px;
    position: absolute;
    top: -8px;
    right: -8px;
    background-position: top;
}

    .Notification-item-close:hover {
        background-position: center;
    }

    .Notification-item-close:active {
        background-position: bottom;
    }


.Notification-item-btnYesContainer {
    /*BY KKHELAWY @21.09.2012*/
    position: absolute;
    top: 80%;
    left: 32%;
    margin-top: -10px;
}

.Notification-item-btnNoContainer {
    /*BY KKHELAWY @21.09.2012*/
    position: absolute;
    right: 25%;
    top: 80%;
    right: 32%;
    margin-top: -10px;
}


.Notification-item-btnOkContainer {
    /*BY KKHELAWY @21.09.2012*/
    position: absolute;
    right: 42%;
    top: 80%;
    margin-top: -10px;
}

.Notification-item-button {
    /*BY KKHELAWY @21.09.2012*/
    width: 65px;
    height: 20px;
}

.Notification-item-image {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 0;
}

/**
 * Notification types
 *
 * pattern: Notification-type-[value]
 * where 'value' is the real value of the plugin option 'type'
 *
 */

/**
 * positions
 *
 * pattern: Notification-position-[value]
 * where 'value' is the real value of the plugin option 'position'
 *
 */
.Notification-position-TopLeft {
    position: fixed;
    left: 20px;
    top: 20px;
}

.Notification-position-TopCenter {
    position: fixed;
    top: 20px;
    left: 50%;
    margin-left: -140px;
}

.Notification-position-TopRight {
    position: fixed;
    top: 135px;
    right: 20px;
}

.Notification-position-MiddleLeft {
    position: fixed;
    left: 20px;
    top: 50%;
    margin-top: -40px;
}

.Notification-position-MiddleCenter {
    position: fixed;
    left: 50%;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
    z-index: 10005;
}

.Notification-position-MiddleRight {
    position: fixed;
    right: 20px;
    margin-left: -140px;
    margin-top: -40px;
    top: 50%;
    z-index: 10005;
}

.Notification-modal {
    /*BY KKHELAWY @21.09.2012*/
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 10004;
}
/***********************BEGIN::For Status Bar Notification BY KKhelawy @29.11.2012::****************************/
.StatusBarWrapper {
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 9998;
    height: 50px;
    width: 100%;
    display: none;
}

.StatusBarContent {
    position: relative;
    z-index: 9999;
    height: 50px;
    width: 100%;
    text-align: center;
    top: 25%;
    font-weight: normal;
    font-size: 14px;
    color: #000;
}

.StatusBarClose {
    width: 22px;
    height: 22px;
    position: absolute;
    z-index: 9999;
    top: 7px;
    right: 7px;
    cursor: pointer;
}


.StatusBarNotice .StatusBarClose {
    background-position: left;
}

    .StatusBarNotice .StatusBarClose:hover {
        background-position: center;
    }

    .StatusBarNotice .StatusBarClose:active {
        background-position: right;
    }


.StatusBarSuccess .StatusBarClose {
    background-position: left;
}

    .StatusBarSuccess .StatusBarClose:hover {
        background-position: center;
    }

    .StatusBarSuccess .StatusBarClose:active {
        background-position: right;
    }




.StatusBarWarning .StatusBarClose {
    background-position: left;
}

    .StatusBarWarning .StatusBarClose:hover {
        background-position: center;
    }

    .StatusBarWarning .StatusBarClose:active {
        background-position: right;
    }

.StatusBarError .StatusBarClose {
    background-position: left;
}

    .StatusBarError .StatusBarClose:hover {
        background-position: center;
    }

    .StatusBarError .StatusBarClose:active {
        background-position: right;
    }
/***********************END::For Status Bar Notification BY KKhelawy @29.11.2012::****************************/
.StatusBarContent {
    color: #000;
}

.StatusBarNotice {
    background-color: #bde5f8;
}

    .StatusBarNotice .StatusBarClose {
        background: #bde5f8 url(../../NotificationResources/Images/blue_close_icon.jpg) no-repeat;
    }

        .StatusBarNotice .StatusBarClose:hover {
            background: url(../../NotificationResources/Images/blue_close_icon.jpg) no-repeat;
        }

        .StatusBarNotice .StatusBarClose:active {
            background: url(../../NotificationResources/Images/blue_close_icon.jpg) no-repeat;
        }

.StatusBarSuccess {
    background-color: #d6f2bf;
}

    .StatusBarSuccess .StatusBarClose {
        background: #d6f2bf url(../../NotificationResources/Images/green_close_icon.jpg) no-repeat;
    }

        .StatusBarSuccess .StatusBarClose:hover {
            background: #d6f2bf url(../../NotificationResources/Images/green_close_icon.jpg) no-repeat;
        }

        .StatusBarSuccess .StatusBarClose:active {
            background: #d6f2bf url(../../NotificationResources/Images/green_close_icon.jpg) no-repeat;
        }

.StatusBarWarning {
    background-color: #ffddaa;
}

    .StatusBarWarning .StatusBarClose {
        background: #d6f2bf url(../../NotificationResources/Images/orange_close_icon.jpg) no-repeat;
    }

        .StatusBarWarning .StatusBarClose:hover {
            background: #d6f2bf url(../../NotificationResources/Images/orange_close_icon.jpg) no-repeat;
        }

        .StatusBarWarning .StatusBarClose:active {
            background: #d6f2bf url(../../NotificationResources/Images/orange_close_icon.jpg) no-repeat;
        }

.StatusBarError {
    background-color: #ffa5a5;
}

    .StatusBarError .StatusBarClose {
        background: #d6f2bf url(../../NotificationResources/Images/red_close_icon.jpg) no-repeat;
    }

        .StatusBarError .StatusBarClose:hover {
            background: #d6f2bf url(../../NotificationResources/Images/red_close_icon.jpg) no-repeat;
        }

        .StatusBarError .StatusBarClose:active {
            background: #d6f2bf url(../../NotificationResources/Images/red_close_icon.jpg) no-repeat;
        }
/***********************END::For Status Bar Notification BY KKhelawy @29.11.2012::****************************/
/*----------------GridView Context Menu ---------------*/
/* ---------------   ------------------------- R7*/
.OptionsContextMenu {
	background: #fff;
	-moz-box-shadow: 2px 2px 2px #cdcdcd;
	-webkit-box-shadow: 2px 2px 2px #cdcdcd;
	box-shadow: 2px 2px 2px #cdcdcd;
	border: 1px solid #e0e0e0;
}
.OptionsContextMenu li a {
	border-bottom: 1px #e0e0e0 solid;
}
.OptionsContextMenu li span {
	border-bottom: 1px #e0e0e0 solid;
}
.OptionsContextMenu li a:hover {
	background: #e2f5ff;
	border-bottom-color: #c0e2f4;
}

@media print {
    body{
        -webkit-print-color-adjust:exact;
    }
}

/*table#ctl00_cphPageBody_tblMainTable {
    padding: 0px 50px;
    padding-top: 110px;
    padding-bottom: 0px;*/
   /* background-size: cover !important;*/
    /*background-repeat: no-repeat;
    height: 95vh !important;
    padding-right: 144px !important;
}*/

table#ctl00_cphPageBody_tblMainTable.Letterhead {
    padding: 0 50px !important;
    padding-top: 20% !important;
    padding-bottom: 0px;
    /* background-size: cover !important;*/
    background-repeat: no-repeat !important;
    height: 95vh !important;
    padding-right: 50px !important;
}

table#ctl00_cphPageBody_tblMainTable.ArDir {
    direction: rtl !important;
    padding: 0 50px !important;
    padding-top: 20% !important;
    /*        background-position: right !important;
        background-size: contain !important;*/
}


table#ctl00_cphPageBody_tblMainTable.EnDir {
    direction: ltr !important;
    padding: 0 50px !important;
    padding-top: 20% !important;
    /* background-position: left !important;
        background-size: contain !important;*/
}

    table#ctl00_cphPageBody_tblMainTable tr.Letterhead, table#ctl00_cphPageBody_tblMainTable td.Letterhead {
        display: block;
    }


/*table#tblMainTable {
    background-image: url('../../PrintPageWaterMark/watermarkImage.png') !important;
    padding: 200px 60px !important; 
    background-size: contain !important;
}*/