@CHARSET "ISO-8859-1";

/*END dialog*/
/* start MEssage dialog*/

.messageDialogHolder{
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: rgba(128, 128, 128, 0.7);
	z-index: 10000;
	display: none;
}

.messageDialog{
	position: relative;
	top: calc(50% - 150px);
	margin: 10px auto;
	max-width: 380px;
	border-radius: 5px;
	box-shadow: 5px 5px 15px black;
	text-align: center;
	color: #202020;
	font-size: 14px;
	background-color: white;
	padding-bottom: 10px;
}

.messageDialog .title{
	padding: 2px 2px 4px 2px;
	margin: 0 0 10px 0;
	font-size: 20px;
	font-weight: normal;
	text-align: center;
}

.messageDialog .message{
	margin: 10px;
	font-size: 16px;
	text-align: center;
}
.messageDialog .code{
	font-size: 12px;
	text-align: center;
}


.messageDialog .buttonsPane{
	padding: 5px;
}

.messageDialog INPUT{
	width: 100px;
	margin-top: 10px;
}

.messageDialog p[severity='info']{
	border-left: 2px solid #87B5E2;
}

.infoDialog{
	border: 2px solid #87B5E2;
}

.infoDialog p{
	border-left: 2px solid #87B5E2;
	padding-left: 5px;
}

.infoDialog .title{
	color: white;
	background-color: #87B5E2;
}

.successDialog{
	border: 2px solid #839345;
}

.successDialog .title{
	color: white;
	background-color: #839345;
}

.warningDialog{
	border: 2px solid #FFB005;
}

.warningDialog .title{
	color: white;
	background-color: #FFB005;
}

.errorDialog{
	border: 2px solid #FF4005;
}

.errorDialog .title{
	color: white;
	background-color: #FF4005;
}

/* end MEssage dialog*/
/*
/*
LOADING FADE PANE
*/

.loadFadingPane{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.8);
	display: none;
	text-align: center;
	font-size: 24px;
}

.loadFadingPane TABLE{
	height: 100%;
	width: 100%;
}
/*
END OF LOADING FADE PANE
*/


/*HelpMe Dialog and span*/

.helpMe{
	font-size: 0.8em;
	position: relative;
	cursor: pointer;
	padding-left: 2px;
}

.helpMeDialog{
	position: absolute;
	top: 5px;
	background-color: #EEEEEE;
	color: gray;
	border: 1px solid gray;
	padding: 10px;
	width: 30vw;
	box-shadow: 2px 2px 4px #c0c0c0;
	border-radius: 3px;
	font-size: 13px;
	font-weight: normal;
	z-index: 6001;
	display: none;
	text-align: center;
}

.helpMeDialogLeftAnchor{
	left: 5px;
}

.helpMeDialogRightAnchor{
	right: 5px;
}

.helpMeCover{
	background-color: rgba(255, 255, 255, 0.5);
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	z-index: 6000;
	display: none;
}

.globalLoadingBar{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.85);
	box-sizing: border-box;
	padding-top: 45vh;
	text-align: center;
	font-size: 1.1em;
	font-weight: normal;
	display: none;
	z-index: 10000;
}

.globalLoadingBar img{
	height: 48px;
	width: 48px;
}

