﻿/* Ajax Collapsible Panel Extender */
.cpeHeading {
    color: Blue;
    margin: 5px 5px 5px 5px;
}

/* Panel */
.panelContent {
    padding: 10px;
}

    .panelContent .ajax__tab_header {
        font-size: 12px;
        background: url(/images/x/tab-line.gif) repeat-x bottom;
    }

    .panelContent .ajax__tab_outer {
        padding-right: 0px;
        background: url(/images/x/tab-right.gif) no-repeat right;
        height: 21px;
    }

    .panelContent .ajax__tab_inner {
        padding-left: 3px;
        background: url(/images/x/tab-left.gif) no-repeat;
    }

    .panelContent .ajax__tab_tab {
        padding: 4px;
        margin: 0;
        background: url(/images/x/tab.gif) repeat-x;
    }

    .panelContent .ajax__tab_hover .ajax__tab_outer {
        background: url(/images/x/tab-hover-right.gif) no-repeat right;
    }

    .panelContent .ajax__tab_hover .ajax__tab_inner {
        background: url(/images/x/tab-hover-left.gif) no-repeat;
    }

    .panelContent .ajax__tab_hover .ajax__tab_tab {
        background: url(/images/x/tab-hover.gif) repeat-x;
    }

    .panelContent .ajax__tab_active .ajax__tab_outer {
        background: url(/images/x/tab-active-right.gif) no-repeat right;
    }

    .panelContent .ajax__tab_active .ajax__tab_inner {
        background: url(/images/x/tab-active-left.gif) no-repeat;
    }

    .panelContent .ajax__tab_active .ajax__tab_tab {
        background: url(/images/x/tab-active.gif) repeat-x;
    }

    .panelContent .ajax__tab_body {
        border: 1px solid #999999;
        border-top: 0;
        padding: 8px;
        background-color: #ffffff;
    }

/*.modalBackground {background-color: Gray; filter: alpha(opacity=50); opacity: 0.7;}
.modalPopup
{
	background-color:white;
	border-width: 3px;
	border-style: solid;
	border-color: Gray;
	padding: 3px;
}
.modalBackground2 {background-color:Gray;filter:alpha(opacity=70);opacity:0.4;}*/


.modalBackground {
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

.modalPopup {
    background-color: #FFFFFF;
    width: 300px;

    border: 3px solid #0DA9D0;
    border-radius: 12px;
    padding: 0;
    moz-box-shadow: 10px 10px 22px #000000;
    -webkit-box-shadow: 10px 10px 22px #000000;
    box-shadow: 10px 10px 22px #000000;
}

    .modalPopup .header {
        background-color: #2FBDF1;
        height: 30px;
        color: White;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .modalPopup .body {
        min-height: 50px;
        line-height: 30px;
        text-align: center;
        font-weight: bold;
    }

    .modalPopup .footer {
        padding: 6px;
    }

    .modalPopup .yes, .modalPopup .no {
        height: 23px;
        color: White;
        line-height: 23px;
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        border-radius: 4px;
    }

    .modalPopup .yes {
        background-color: #2FBDF1;
        border: 1px solid #0DA9D0;
    }

    .modalPopup .no {
        background-color: #9F9F9F;
        border: 1px solid #5C5C5C;
    }

    .PanelWithScroll {
         height: 250px;
         overflow: scroll;
         overflow-x: hidden;
    }
