.divModalDialogScreenMask {
    position: absolute;
    opacity: .4;
    filter: alpha(opacity=40);
    /* this hack is so it works in IE
     * I find setting the color in the css gives me more flexibility 
     * than the PNG solution.
     */
    background-color: transparent !important;
    background-color: #333333;
    /* this hack is for opera support
     * you can uncomment the background-image if you don't care about opera.
     * this gives you the flexibility to use any bg color that you want, instead of the png
     */
    background-image:   url(mask.png)!important; // For browsers Moz, Opera, etc.
    background-image: none;
    background-repeat: repeat;
}
.divModalDialog {
    position: absolute;
    display:none;
}
.tableModalDialogOuter {
	height: 100%;
	width: 100%;
	border-top: 2px solid #CCCCCC;
	border-right: 2px solid #666666;
	border-bottom: 2px solid #333333;
	border-left: 2px solid #999999;



}
.tdModalDialogHeader {
	height: 22px;

}
.tableModalDialogTitle {
	height: 100%;
	width: 100%;
	background-color: #666666;



}
.iframeModalDialogContent {
	height: 100%;
	width: 100%;
	background-color: #FFFFFF;



}
.tdModalDialogTitle {
	font-family: Verdana, Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-weight: bold;
	color: #FFFFFF;
	font-size: 12px;
	margin: 2px;
	padding: 2px;
	cursor: default;





}
.tdModalDialogContent {
	width: 100%;



}
.tdModalDialogDialogButtons {
	font-family: Verdana, Arial, Helvetica, sans-serif, "Trebuchet MS";
	font-weight: bold;
	font-size: 12px;
	margin: 2px;
	padding: 2px;
	text-align: right;
	width: 20%;

}
