/*------------------------------------------Háttér ablak---------------------------------------------------*/
#BackgroundErrorWindowID{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.5;
	-moz-opacity:0.5;
	filter: alpha(opacity=50);
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	-khtml-opacity: 0.5;	
	z-index: 30000;	
}
/*------------------------------------------Háttér ablak---------------------------------------------------*/







/*------------------------------------------Hiba ablak---------------------------------------------------*/
#ErrorWindowID{
	display: none;
	position: fixed;
	background: #fff;
	padding: 5px;
	overflow: auto;
	z-index: 30001;	
}
/*------------------------------------------Hiba ablak---------------------------------------------------*/





/*------------------------------------------Hiba ablak tartalma---------------------------------------------------*/
#ErrorWindowContentID{
	border: 1px solid #ccc;
	padding: 10px;
	overflow: auto;
	z-index: 30002;	
}

#ErrorWindowContentID .error{
	min-width: 300px;
	height: 76px;
	background: url("../images/message/error.png") no-repeat center center;
}
#ErrorWindowContentID .warning{
	min-width: 100px;
	height: 76px;
	background: url("../images/message/warning.png") no-repeat center center;
}
#ErrorWindowContentID .success{
	min-width: 100px;
	height: 76px;
	background: url("../images/message/success.png") no-repeat center center;
}

#ErrorWindowContentID .Description{
	font-family: "Ubuntu Bold";
	font-size: 15px;
	text-align: center;
	margin-top: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}

#ErrorWindowContentID .Buttons{
	text-align: right;
	margin-top: 10px;
}
#ErrorWindowContentID .Buttons button{
	padding: 10px;
	border: 0px;
	background: #262932;
	color: #fff;
	font-family: "Ubuntu Regular";
	font-size: 16px;	
	margin-right: 5px;
}
/*------------------------------------------Hiba ablak tartalma---------------------------------------------------*/