﻿/* Layer contents */
.mask,
.ui-widget-overlay
{
	position: fixed;
	top: 0;
	left: 0;
	background-color: #CCC;
	
	/* Opacity 80% */
	-webkit-opacity: 0.5;
	-moz-opacity: 0.5;
	filter:alpha(opacity=50);
	opacity: 0.5;
}

.ui-icon-closethick,
.closeButton {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    right: 0;
    cursor: pointer;
    background-image: url(../Images/closeBtn.png);
    background-repeat: no-repeat;
    background-position: top;
    text-indent: -9999px; /* sends the text off-screen */
    white-space: nowrap; /* because only the first line is indented */
}

.ui-icon-closethick:hover,
.closeButton:hover {
    background-position: bottom;
}

.ui-dialog,
.countdownWindow {
	position: absolute;
    padding: 0;
    
    border: 1px solid #999;
	background-color: #FFF;
	font-size: 14px;
	color: #000;
    
	/* border radius
	border-radius: 3px;
	-moz-border-radius: 3px;
    */
	overflow: hidden;

    /* properties not used in ui-dialog... might be useful for .countdownWindow
	width: 460px;
    height: 200px;
	margin-left: -230px;
	top: 50px;
	left: 50%;
    */
}

.ui-dialog-title {
    display: block;
    border-bottom: 1px solid #B6C5D4;
    padding: 0 0 10px 5px;
    margin: 10px;
    color: #336699;
    font-weight: bold;
}

.ui-dialog-content {
    padding: 5px 15px;
}

.ui-dialog-buttonpane {
    padding: 10px 15px 20px 15px;
    text-align: right;
}

.ui-dialog-buttonpane button {
    padding: 5px 10px;
    /*
    margin-top: 4px;
    margin: 0;
    border: 1px;
    
	border-radius: 3px;
	-moz-border-radius: 3px;
	overflow: hidden;

    padding: 10px 20px;
    margin-left: 5px;
    */
}

.errorWindow {
    background-color: #FFCCBB;
    color: #CC3300;
}
.errorWindow .ui-dialog-title {
    color: #CC3300;
    border-bottom: 1px solid #F09E82;
}
.confirmWindow {
    background-color: white;
}
.confirmWindowNote {
    color: gray;
    font-size: 12px;
    margin-top: 10px;
    border: 1px solid #CCC;
    background-color: #E5E5E5;
    padding: 10px;
}
.warning {
    display: inline-block;
    width: 25px;
    height: 20px;
    padding-right: 5px;
    background-image: url(../Images/Warning.png);
    background-repeat: no-repeat;
}
/*
.ui-dialog-buttonpane button.mainBtn {
    background-color: #338BCC;
    color: white;

    border-top: 1px solid #5EA4D7;
    border-left: 1px solid #5EA4D7;
    border-right: 1px solid #153A56;
    border-bottom: 1px solid #153A56;
}

.ui-dialog-buttonpane button.normalBtn {
    background-color: #CCC;
    color: black;
    
    border-top: 1px solid #D7D7D7;
    border-left: 1px solid #D7D7D7;
    border-right: 1px solid #565656;
    border-bottom: 1px solid #565656;
}
*/