/* THis file contains the Popup related CSS proprties */
/* This is applied for popup layout */
/* Some coomom properties also used for creating the popup these are */
/* available in Layout.css file */
/* This class tells the total out look of the popup */
.iesdPopup {
    position: absolute;
    top: 100px;
    left: 100px;
    width: 300px;
    height: 198px;
    display: none;
    opacity: 70;
    border: 3px solid hsl(214,39%,20%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
}

/* THis is applied for popup header */
/* It also has the popup header text css also */
.iesdPopupHeader {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    -moz-border-top-left-radius: 7px;
    -moz-border-top-right-radius: 7px;
    -webkit-border-top-left-radius: 7px;
    -webkit-border-top-right-radius: 7px;
    -o-border-top-left-radius: 7px;
    -o-border-top-right-radius: 7px;
    -ms-border-top-left-radius: 7px;
    -ms-border-top-right-radius: 7px;
    background-color: black;
    width: 100%;
    height: 24px;
    font-size: 14px;
    color: white;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 2;
}


#detailPopup {
    background-color: gray;
    z-index: 999;
}

#popupheader {

    /* Safari 5.1, Chrome 10+ */
    background-image: -webkit-linear-gradient(top, hsl(214,39%,18%), hsl(214,39%,20%));

    /* Firefox 3.6+ */
    background-image: -moz-linear-gradient(top, hsl(214,39%,18%), hsl(214,39%,20%));

    /* IE 10 */
    background-image: -ms-linear-gradient(top, hsl(214,39%,18%), hsl(214,39%,20%));

    /* Opera 11.10+ */
    background-image: -o-linear-gradient(top, hsl(214,39%,18%), hsl(214,39%,20%));

    /* fallback */
    background-color: #000000;
}

#popup {
    height: 100%;
    width: 100%;
    background: hsl(214,39%,20%);
    position: absolute;

    top: 0;
    -moz-opacity: 0.75;
    -khtml-opacity: 0.75;
    opacity: 0.75;
    filter: alpha(opacity = 75);
}

#window {
    width: 600px;
    height: 300px;
    margin: 0 auto;
    border: 1px solid #000000;
    background: #ffffff;
    position: absolute;
    top: 200px;
    left: 25%;
}

/*
configuration filter related classes
*/
#configPopup .component-label{
    float: left;
    margin-left: 92px;
}

#configPopup {
    height: 380px;
    width: 300px;
    left: 100px;
}

.printOptions  .no_of_pages {
    display: none;
}


/* ---------------------------End ---------------------------------------*/