﻿ /*   *  ui-dialog-container : the whole dialog window.
    * ui-dialog-titlebar : the titlebar.
    * ui-dialog-titlebar-close, ui-dialog-titlebar-close-hover : the close button (the top-right X) and its hover style.
    * ui-dialog-content : additional style for dialog contents.
    * ui-dialog-buttonpane : the container for the dialog buttons (like "Yes", "No", "Cancel"). */
    
.ui-dialog-container
{
    background-color: #666666;
}
    
.ui-dialog-titlebar{
    padding: 5px;
    background-color: #000000;/*A9AAAC*/
}

.ui-dialog-title {
    display:block;
    margin-left:3px;
    margin-top:3px;
    vertical-align:bottom;
color:#FFFFFF;

}

.ui-dialog-titlebar-close {
    background:transparent url(/media_all/close_f2.gif) no-repeat scroll 0 0;
    cursor:pointer;
    height:16px;
    position:absolute;
    right:7px;
    top:6px;
    width:16px;
    margin-top:2px;
color:#000000;
}


.ui-dialog-titlebar-close-hover {
    background:transparent url(/media_all/close_f1.gif) no-repeat scroll 0 0;
}

.ui-dialog-titlebar-close span {
    display:none;
}

.ui-dialog-content
{
    width:auto !important;
    height:auto !important;
    background-color: #000000;/*EBEDEC*/
    padding: 5px;
}

.ui-dialog {
    width:auto !important;
    height:auto !important;
}
 