.workspace_noPages {
	position: fixed;
	top: 32px;
	bottom: 32px;
	width: 100%;
	z-index: -1;
}

.workspace_showPages {
	position: fixed;
	top: 62px;
	bottom: 32px;
	width: 100%;
	z-index: -1;
}

.svgframe {
	border: none;
	margin: 0;
	padding: 0;
	top: 0;
	position: absolute;
	min-width: 499px;
}

.noPages {
	display: none;
}

.showPages {
}

.helpDiv {
	visibility: hidden;
	display: none;
}

.helpFrame {
	height: 0px;
}

#helpFrame {
	border: none;
}

#helpDiv {
	padding: 0.5em 0 !important;
	height: fit-content;
	width: fit-content;
}

#splashDiv {
	width: 300px;
	height: 400px;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	overflow: hidden;
	background-color: #c0c0c0;
}

#splashImg {
	margin: 2px;
	width: 294px;
	height: 300px;
	border: 1px solid black;
	background-repeat: no-repeat;
}

#workspace {
	background-repeat: no-repeat;

	background-image: none;
	background-color: white;

	background-position: center;
	background-size: cover;

	border: 1px solid black;
	box-sizing: border-box;
}

.tabHelp {
	cursor: pointer;
	position: absolute;
	right: 2em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	border-radius: 3px;
}

.tabHelp:hover {
	border: 1px solid #dddddd;
	background: #e9e9e9;
}

.tabHelpSpan {
	background: url("images/new_tab_open.png") no-repeat;
	overflow: hidden;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
	width: 16px;
	height: 16px;
}

.no-titlebar .ui-dialog-titlebar {
	display: none;
}

#matchtext {
	background-color: #ffffff;
	background-image: none;
	border: 1px #cccccc solid;
	border-radius: 4px;
	color: #000000;
	font-family: Arial;
	font-size: 13px;
	font-weight: normal;
	padding: 4px 4px 4px 4px;
	text-align: left;
	vertical-align: middle;
}

#matchtext:focus {
	-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075),
		0px 0px 8px rgba(102, 175, 233, 0.6);
	-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075),
		0px 0px 8px rgba(102, 175, 233, 0.6);
	border-color: #66afe9;
	box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075),
		0px 0px 8px rgba(102, 175, 233, 0.6);
	outline: 0;
}

#matchtext_btn {
	cursor: pointer;
	position: absolute;
	top: 15px;
	width: 26px;
	height: 26px;
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	border-radius: 3px;
	left: 230px;
}

.matchtext_btn_span {
	background: url("/css/images/matchclear.png") no-repeat;
	overflow: hidden;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -12px;
	width: 24px;
	height: 24px;
}

#matchtext_form {
	background-color: #fbfbfb;
	background-image: none;
	border: 0px #cccccc solid;
}

#matchtext_lbl {
	border: 0px #cccccc solid;
	border-radius: 4px;
	background-color: transparent;
	background-image: none;
	color: #000000;
	font-family: Arial;
	font-weight: normal;
	font-size: 13px;
	padding: 4px 4px 4px 4px;
	text-align: left;
	vertical-align: top;
}

/* LOADER ANIMATION */
/* Center the loader */
.loader {
	background-color: fireBrick;
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px;
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #5d0133;
	width: 40px;
	height: 40px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	z-index: 10000;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
