#OverlayBackground {
	float: left;
	width: 100%;
	height: 100%;
	font-size: 30px;
	opacity:.9;
	background-color: #CCC;
	position:fixed;
	left:0px;
	top:0px;
	z-index: 10000;
	display: none;
}
#OverlayClose {
	float: right;
	font-weight: bold;
	height: 100%;
	width: 20px;
	text-align: center;
	border-left: solid 1px black;
	cursor: pointer;
}
#OverlayMsgMain {
	display: none;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position:fixed;
	left:0px;
	top:0px;
	z-index: 10001;
}
#OverlayMsgBox {
	display: none;
	width: 450px;
	background-color: #FFF;
	border: solid 1px #919191;
	font-size: 14px;
	color: #000;
}
#OverlayMsgTitle {
	float: left;
	font-weight: bold;
	font-size: 14px;
	text-align: left;
	height: 25px;
	line-height: 25px;
	width: 100%;
	border-bottom: solid 1px #919191;
}
#OverlayMsgTitle > p {
	margin-left: 5px;
}
#OverlayMsgVanilla {
	text-align: center;
	font-size: 25px;
	font-weight: bold;
}
#OverlayMsgArea {
	float: left;
	width: 100%;
}
#OverlayMsgArea > div:not(#OverlayMsg_FileList) {
	display: none;
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: center;
}
.OverlayMsg_CenterDiv {
	display: table;
	margin: 0 auto;
}
#OverlayMsg_Error {
	display: none;
	padding: 15px 0;
	width: 450px;
	text-align: center;
}
#OverlayMsg_Confirm {
	display: none;
	padding: 15px 0;
	width: 450px;
}
#OverlayMsg_Confirm > p {
	width: 100%;
	text-align: center;
	margin-bottom: 4px;
}
.OverlayMsgButton {
	display: inline;
	padding: 4px 7px;
	margin: 0 4px;
	vertical-align: -10px;  /* used because margin-top does nothing for us here */
	border: solid 1px black;
	font-weight: bold;
	cursor: pointer;
}
#OverlayMsg_ConfirmIgnore {
	display: table;
	margin: 0 auto;
	font-size: 10px;
	margin-bottom: 7px;
}
#OverlayMsg_ConfirmIgnore > div {
	float: left;
}
#OverlayMsg_FileList {
	display: none;
	text-align: left;
	margin: 5px;
	width: 438px;
	height: 203px;
	overflow-y: scroll;
	background-color: white;
	border: solid 1px #919191;
}
#OverlayMsg_FileList > div {
	float: left;
	width: 100%;
	height: 24px;
	line-height: 24px;
	vertical-align: middle;
	font-size: 12px;
	border-bottom: solid 1px #919191;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#OverlayMsg_FileList > div:hover {
	background-color: #EEE;
	cursor: pointer;
}
#OverlayMsg_FileList > div > p {
	font-weight: normal;
	font-style: italic;
	margin-left: 5px;
}
.OverlaySpacerHoz {
	float: left;
	width: 100%;
	height: 1px;
	background-color: #000;
}
