@charset "UTF-8";
/* CSS Document */

#fade { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #343434;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .69;
	z-index: 9999;
        padding: 0px;
        margin: 0px;
}
.popup_block{
	display: none; /*--hidden by default--*/
	background: #FFFFFF;
	padding: 20px;
	border: 0px solid #ddd;
	float: left;
	font-size: 1em;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 99999;
	
}
img.btn_close {
	float: right;
	margin: -5px -20px 0 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}
#title_modals {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	font-style: normal;
	font-weight: bold;
	color: #F90;
	text-decoration: none;
	margin-bottom: 5px;
	margin-top: 1px;
	padding-left: 30px;
	padding-top: 4px;
}
#p_modal {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	font-style: normal;
	font-weight: normal;
	color: #999;
	text-decoration: none;
	padding-left: 0px;
	padding-right: 30px;
	padding-bottom: 10px;
}
.notice{
    color: #F90;
    font-weight: bold;
    font-size: 0.7em;
    font-family: Verdana;
}
.notice-error{
    color: red;
    font-weight: bold;
    font-size: 0.7em;
    font-family: Verdana;
    padding: 10px;
}
.popup-notice-error { padding: 10px;}
#loading-window {
    position: fixed;
    z-index:12000;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #343434;
    display: none;
    text-align: center;
    vertical-align: center;
}
#loading-window div
{
    width: 100%;
    height: 100%;
    vertical-align: center;

    display: block;
    color: white;
    font-weight: bold;
    font-size: 1.em;

}