/* **************************************************************************************************
   *                                        - MODAL WINDOW -                                        *
   ************************************************************************************************** */
.mwWindow
{
    z-index: 10;
	position: fixed;
	width: 800px;
	min-height: 100px;
	min-width: 800px;
	overflow: auto;
	
	background-color: #fff;
	color: #000;
	font-family: "Lucida Grande", Arial, sans-serif;
	font-size: 12px;
	padding-bottom: 4px;
	
	-moz-border-radius-bottomleft: 8px;
	-webkit-border-bottom-left-radius: 8px;
	
	-moz-border-radius-bottomright: 8px;
	-webkit-border-bottom-right-radius: 8px;
    
    border-radius: 0 0 8px 8px;
	
	-moz-box-shadow: 0 0 64px #000;
	-webkit-box-shadow: 0 0 64px #000;
	box-shadow: 0 0 64px #000;
	
	border: 3px solid #354d24;
}

.mwWindow a{  }

.mwWindow .mwClose
{
    width: 20px;
    height: 20px;
    background: white url('../images/modalwindowClose.png') no-repeat top left;
    cursor: pointer;

    position: absolute;
    top: 5px;
    right: 5px;
}

.mwWindow .mwTitle
{
	color: #fff;
	background-color: #43682f;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	padding: 6px 8px;
	/*text-shadow: 0 1px 0 #f4f4f4;*/
	font-size: 14px;
}

.mwWindow .mwData
{
	padding: 15px;
}

.mwWindow .mwAjaxLoader
{
    margin: 0 auto;
	background-color: #b00;
	color: #fff;
	padding: 3px 20px;
	text-align: center;
}

.mwAlert
{
    z-index: 10;
	position: fixed;
	padding: 10px;
    min-width: 200px;
    text-align: center;
    
	background-color: #fff;
	color: #000;
	font-family: "Lucida Grande", Arial, sans-serif;
	font-size: 12px;
	
	-moz-border-radius-bottomleft: 6px;
	-webkit-border-bottom-left-radius: 6px;
	
	-moz-border-radius-bottomright: 6px;
	-webkit-border-bottom-right-radius: 6px;
    
    border-radius: 0 0 6px 6px;
	
	-moz-box-shadow: 0 0 64px #000;
	-webkit-box-shadow: 0 0 64px #000;
	box-shadow: 0 0 64px #000;
	
	border: 3px solid #aaa;
}
.mwAlertMsg
{
    margin-bottom: 15px;
}

#mwContent #mwPending
{
    margin-left: 5px;
}