@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

*:not(input):not(textarea) {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}
* {
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	scrollbar-color: #4a545d;
	scrollbar-width: 10px;
}
[selectable] {
	z-index: 999;
	pointer-events: auto;
	background-color: rgba(155, 205, 231, 0.1);
	-webkit-touch-callout: auto;
	-webkit-user-select: auto;
	user-select: auto;
}
body[init] {
	background-color: #333;
	font: 15px/21px "Open Sans", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font-weight: 400;
}
img.toplogo {
	position: relative;
	display: block;
	width: 300px;
	margin: 40px auto 60px;
}
img.toplogos {
	position: relative;
	display: block;
	width: 200px;
	margin: 10px auto 30px;
}
topfnc {
	position: absolute;
	display: flex;
	right: 0;
	top: 0px;
	background-color: #222;
	border-radius: 0 0 0 10px;
	height: 40px;
	padding-left: 10px;
	padding-right: 20px;
}
topfnc[logged]::before {
	position: relative;
	display: block;
	content: attr(logged);
	left: -10px;
	background-color: #101010;
	border-radius: 0 0 0 10px;
	color: #009ee2;
	font-size: 11px;
	line-height: 22px;
	padding: 8px 15px;
	font-weight: 600;
}
stint,
stsrv {
	position: absolute;
	display: block;
	right: 5px;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 10px;
	background-color: #d90000;
	box-shadow: 0 0 5px #f00;
	z-index: 9999;
}
stint::before,
stsrv::before {
	position: absolute;
	display: block;
	content: "";
	width: 6px;
	height: 6px;
	top: 1px;
	left: 1px;
	border-top: 2px solid #fff;
	border-radius: 10px;
	transform: rotateZ(-30deg);
	opacity: 0.4;
}
stint::after,
stsrv::after {
	position: absolute;
	display: block;
	content: "";
	width: 6px;
	height: 6px;
	top: 0px;
	left: 1px;
	border-bottom: 3px solid #000;
	border-radius: 10px;
	transform: rotateZ(-30deg);
	opacity: 0.2;
}
stsrv {
	top: 23px;
}
stint[online] {
	background-color: #0080da;
	box-shadow: 0 0 6px #4a8bff;
}
stsrv[connected] {
	background-color: #00b711;
	box-shadow: 0 0 6px #00e80c;
	transition: background-color 2s;
}
stsrv[data] {
	background-color: #ced400;
	box-shadow: 0 0 6px #e2e800;	
	transition: background-color 0s;
}
topfnc btn {
	position: relative;
	display: block;
	margin: 5px 5px 5px 0;
	width: 30px;
	height: 30px;
	cursor: pointer;
	filter: grayscale(1);
}
topfnc btn:hover {
	filter: none;
}
topfnc btn::after {
	position: absolute;
	display: block;
	content: "";
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 25px;
}
topfnc btn.files::after {
	background-image: url(img/folder.png);
}
topfnc btn.lock::after {
	background-image: url(img/lock.svg);
	background-size: 20px;
	filter: brightness(2);
}
topfnc search {
	position: relative;
	display: block;
	margin: 7px 5px 7px 0;
	width: 200px;
	height: 26px;
	background-color: #444;
	border-radius: 20px;
}
topfnc search input {
	position: absolute;
	display: block;
	left: 10px;
	top: 0px;
	bottom: 0px;
	right: 30px;
	font: 15px/21px "Open Sans", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	background: none;
	color: #eee;
}
topfnc search sbtn {
	position: absolute;
	display: block;
	right: 2px;
	top: 2px;
	width: 22px;
	height: 22px;
	border-radius: 20px;
	background-color: #5180ff;
	cursor: pointer;
	filter: grayscale(1);
}
topfnc search sbtn:hover {
	filter: none;
}
topfnc search sbtn::after {
	position: absolute;
	display: block;
	left: 48%;
	top: 48%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	content: "";
	background-image: url(img/search.svg);
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.6;
}
topfnc search sbtn:hover::after {
	opacity: 1;
}
loginform {
	position: relative;
	display: block;
	width: 300px;
	margin: auto;
	background-color: #444;
	border-radius: 10px;
	padding: 20px;
}
filebrowser {
	position: relative;
	display: block;
	width: 80%;
	min-width: 800px;
	margin: auto;
	background-color: #444;
	border-radius: 10px;
	padding: 0px;	
	overflow: hidden;
}
filebrowser[parent]::before {
	position: relative;
	display: block;
	content: attr(parent);
	padding: 10px 15px;
	color: #e5007e;
	border-bottom: 2px solid #888;
	font-size: 25px;
	line-height: 40px;
	font-weight: 400;
	background-color: #222;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
fitem {
	position: relative;
	display: block;
	padding: 12px 20px 16px 60px;
	color: #959595;
	font-size: 11px;
	line-height: 12px;
	cursor: pointer;
	border-bottom: 1px solid #333;
}
fitem:hover {
	background-color: #555;
}
fitem::before {
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 30px;
	background: url(img/document.png) left center no-repeat;
	background-size: contain;
	left: 15px;
	top: 8px;
}
fitem[folder]::before {
	background: url(img/folder.png) left center no-repeat;
	background-size: contain;
}
fitem:first-line {
	font-size: 17px;
	line-height: 23px;
	color: #ffffff;
}
loginform label {
	position: relative;
	display: block;
	color: #fff;
	margin-bottom: 5px;
}
loginform input {
	position: relative;
	display: block;
	width: 100%;
	font: 15px/21px "Open Sans", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	padding: 3px 0px;
	color: #b6d1f5;
	background: none;
	border-bottom: 2px solid #777;
	margin-bottom: 10px;
}
loginform input:focus {
	border-bottom: 2px solid #009ee2;
	color: #009ee2;
}
loginform button {
	position: relative;
	font: 15px/21px "Open Sans", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	padding: 10px 20px;
	border-radius: 5px;
	margin-top: 20px;
	background-color: #cccdcd;
	cursor: pointer;
}
loginform button:hover {
	background-color: #009ee2;
	color: #fff;
}
loginform button:active {
	background-color: #086f9c;
	color: #fff;
}
errmsg {
	position: relative;
	display: block;
	color: #ff1a1a;
}
errmsg:empty {
	display: none;
}
top {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	right: 0;
	height: 70px;
	z-index: 99;
	background-color: #333;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.31);
	font: 15px/21px "Open Sans", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
top::after {
	position: absolute;
	display: block;
	content: "";
	left: 5px;
	top: 5px;
	width: 80px;
	height: 60px;
	background: url(img/logo.png) left center no-repeat;
	background-size: contain;
}
top docname {
	position: absolute;
	display: block;
	left: 130px;
	top: 10px;
	font-weight: 600;
	font-size: 20px;
	line-height: 20px;
	color: #e6007e;
}
top docname::before {
	position: absolute;
	display: block;
	content: "";
	width: 23px;
	height: 25px;
	background: url(img/document.png) left center no-repeat;
	background-size: contain;
	left: -30px;
	top: 50%;
	transform: translateY(-50%);
}
top docname downloads {
	position: absolute;
	display: block;
	right: -40px;
	top: -5px;
	width: 35px;
	height: 27px;
	cursor: pointer;
	border-radius: 5px;
}
top docname downloads:hover {
	background-color: #736133;
}

top docname downloads::after {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 50%;
	top: 50%;
	content: "";
	transform: translate(-50%, -50%);
	background: url(img/downloads.png) center center no-repeat;
	background-size: contain;
}
top bcrmbs {
	position: absolute;
	display: flex;
	top: 40px;
	left: 100px;
	white-space: nowrap;
	overflow: hidden;
}
top bcrmbs bcr {
	position: relative;
	display: block;
	color: #aaa;	
	cursor: pointer;
	margin-right: 15px;
	white-space: nowrap;
}
top bcrmbs bcr strong {
	background-color: #222;
	font-size: 11px;
	padding: 1px 7px 2px;
	border-radius: 5px;
	vertical-align: text-top;
	margin-right: 5px;
}
top bcrmbs bcr:hover {
	color: #fff;
}
top bcrmbs bcr:not(:last-child)::after {
	position: absolute;
	margin-left: 5px;
	content: "\\";
	pointer-events: none;
	color: #555;	
}
main {
	position: absolute;
	display: flex;
	left: 0;
	top: 70px;
	right: 0;
	bottom: 0;
}
indx {
	position: relative;
	display: block;
	flex-basis: 250px;
	background-color: #999;
	overflow-x: hidden;
	overflow-y: auto;
	font: 13px/15px "Open Sans", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	z-index: 10;
}
indx ul {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}
indx iitm {
	position: relative;
	display: block;
	cursor: pointer;
	padding: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
ul li iitm::before {
	position: absolute;
	display: block;
	content: "";
	border-left: 1px solid #888;
	width: 5px;
	height: 30px;
	margin-left: -10px;
	top: 0px;
}
ul li iitm::after {
	position: absolute;
	display: block;
	content: "";
	border-bottom: 1px solid #888;
	width: 5px;
	height: 13px;
	margin-left: -9px;
	top: 0px;	
}
ul li:last-child>iitm::before {
	height: 13px;
}
ul li:not(:last-of-type) ul::before {
	position: absolute;
	display: block;
	content: "";
	border-left: 1px solid #888;
	width: 5px;
	left: 10px;
	top: 0px;
	bottom: 0px;
	z-index: 10;
}
indx iitm strong {
	font-weight: 700;
	background-color: #555;
	border-radius: 5px;
	margin-right: 5px;
	padding: 0 5px;
	font-size: 10px;
	color: #ddd;
}
indx iitm:hover {
	background-color: #e6007e;
	color: #fff;
}
indx>ul>li>iitm {
	font-weight: 600;
}
indx ul li>ul li>iitm{
	padding-left: 20px;
}
indx ul li>ul li>ul li>iitm{
	padding-left: 35px;
}

doc {
	scroll-behavior: smooth;
	position: relative;
	display: block;
	flex: 1;
	font: 15px/21px "Open Sans", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	padding-right: 2rem;
	overflow-x: hidden;
	overflow-y: scroll;
	padding-top: 20px;
}
doc td  {
	font: 15px/21px "Open Sans", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;	
}
rx,
rx::after {
	position: relative;
	font: inherit;
}
doc::after {
	position: fixed;
	display: block;
	left: 0;
	right: -50px;
	top: 0;
	bottom: -50px;
	content: "";
	background-image: url(img/logo.png);
	background-size: 200px;
	transform: rotateZ(5deg);
	pointer-events: none;
	opacity: 0.05;
}
doc * {
	pointer-events: none;
}
doc strong {
	font-weight: 700;
	position: relative;
}
doc p,
doc ul,
doc ol {
	position: relative;
	display: block;
	margin-top: 0.5rem;
	margin-left: 5rem;
	font-size: 15px!important;	
}
doc p * {
	font-size: 15px!important;		
}
doc ul li {
	margin-left: 2rem;
	margin-top: 0.3rem;
}
doc ol li {
	margin-left: 1.3rem;
	margin-top: 0.3rem;
}
ol li>ul {
	position: relative;
	display: block;
	margin-left: 0;
}
doc h1 {
	position: relative;
	display: block;
	margin-top: 3rem;
	font-weight: 300;
	font-style: normal;
	font-size: 3rem;
	line-height: 3.5rem;
	margin-left: 5rem;
	counter-increment: h1;
	color: #9c0f3f;
	counter-reset: h2;
}
doc h2 {
	position: relative;
	display: block;
	margin-top: 2rem;
	counter-increment: h2;
	margin-left: 5rem;
	font-weight: 400;
	font-style: normal;
	color: #0f6c9c;
	font-size: 2.3rem;
	line-height: 2.7rem;
	counter-reset: h3;
}
doc h1 + h2 {
	margin-top: 1rem;	
}
doc h3 {
	position: relative;
	display: block;
	margin-top: 2rem;
	counter-increment: h3;
	margin-left: 5rem;
	color: #0f6c9c;
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 2rem;
}
doc h2 + h3 {
	margin-top: 1rem;	
}
doc h2 + h2 {
	margin-top: 1rem;	
}

doc h1::before {
	content: counter(h1)".";
	position: absolute;
	display: block;
	left: -5rem;
	top: 0;
	font-weight: 300;
	width: 4rem;
	text-align: right;
	padding-right: 0.5rem;
}
doc h2::before {
	content: counter(h1)"."counter(h2)".";
	position: absolute;
	display: block;
	left: -5rem;
	top: 0.5rem;
	font-size: 1.5rem;
	line-height: 2.2rem;
	font-weight: 500;
	width: 4rem;
	text-align: right;
	padding-right: 0.5rem;
}
doc h3::before {
	content: counter(h1)"."counter(h2)"."counter(h3)".";
	position: absolute;
	display: block;
	left: -5rem;
	top: 0;
	font-size: 0.8rem;
	font-weight: 800;
	background-color: #aaa;
	width: 4rem;
	color: #fff;
	text-align: right;
	padding-right: 0.5rem;
}
doc h4 {
	position: relative;
	display: block;
	margin-left: 5rem;
	font-weight: 700;
	margin-top: 1rem;
	color: #783a70;
	font-size: 1.1rem;
}
doc p:first-child,
doc h1:first-child,
doc h2:first-child,
doc h3:first-child {
	margin-top: 0;
}
doc ul + p {
	margin-top: 1.5rem;
}
doc p.person {
	font-weight: 600;
	font-size: 1.1rem;
	margin-top: 1.5rem;
}
doc h3 + p.person {
	margin-top: 1rem;
}
doc p.personfunction {
	font-weight: 600;
	font-size: 0.8rem;
	margin-top: 0;
	color: #333;
}
doc img {
	position: relative;
	display: block;
	margin-left: 5rem;
	margin-top: 1rem;
	max-width: 800px;
	width: calc(100% - 100px);
}
p.note {
	background-color: #f4f2e9;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 500;
}
div.note {
	position: relative;
	display: block;
	background-color: #f4f2e9;
	padding: 1rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 500;
	margin-left: 5rem;
	margin-top: 1rem;
}
div.note p {
	margin-left: 0;
}
p.note[caption]::before,
div.note[caption]::before {
	position: relative;
	display: block;
	content: attr(caption);
	font-weight: 700;
	margin-bottom: 0.4rem;
	border-bottom: 1px dotted rgba(51, 51, 51, 0.15);
}
semifix {
	position: relative;
	display: inline-block;
	width: 6rem;
	font-weight: 600;
	margin-top: 0.2rem;
	color: #444;
}
div.keyhazard {
	position: relative;
	display: block;
	border-left: 0.5rem solid #da5b1f;
	margin-left: 5rem;
	margin-top: 1rem;
	padding-top: 3rem;
	padding-bottom: 0.6rem;
	background-color: #fdeee7;
	border-radius: 0.5rem;
}
div.keyhazard::before {
	position: absolute;
	display: block;
	content: "Key Hazard";
	left: 1rem;
	top: 0.8rem;
	font-size: 1.3rem;
	line-height: 1.3rem;
	font-weight: 700;
	color: #da5b1f;
}
div.keyhazard p {
	margin-left: 1rem;
	color: #722a09;
}
div.important {
	position: relative;
	display: block;
	border-left: 0.5rem solid #d31616;
	border-right: 0.5rem solid #d31616;
	margin-left: 5rem;
	margin-top: 1rem;
	padding-top: 3rem;
	padding-bottom: 0.6rem;
	background-color: #fee6e6;
	border-radius: 0.5rem;
}
div.important p,
div.important ol {
	margin-left: 1rem;
	color: #720808;	
}
div.important::before {
	position: absolute;
	display: block;
	content: "IMPORTANT";
	left: 1rem;
	top: 0.8rem;
	font-size: 1.3rem;
	line-height: 1.3rem;
	font-weight: 700;
	color: #d31616;
}
div.related {
	position: relative;
	display: block;
	border-left: 0.5rem solid #aaa;
	margin-left: 5rem;
	margin-top: 1rem;
	padding-top: 2rem;
	margin-bottom: 1rem;
}
div.related p,
div.related ul {
	margin-left: 1rem;
	color: #333;	
}
div.related::before {
	position: absolute;
	display: block;
	content: "Related Procedures";
	left: 1rem;
	top: 0.8rem;
	font-size: 1.1rem;
	line-height: 1.1rem;
	font-weight: 700;
	color: #555;
}

h2.sop {
	counter-increment: none;
	counter-reset: none;
}
h2.sop::before {
	display: none;
	content: none;
}
h3.sop {
	counter-increment: none;
	counter-reset: none;
}
h3.sop::before {
	display: none;
	content: none;
}
h2.sop strong {
	position: absolute;
	display: block;
	left: -5rem;
	font-size: 1rem;
	width: 4.5rem;
	background-color: #0e6c9c;
	color: #fff;
	padding-left: 0.5rem;
}
a.related {
	position: relative;
	display: block;
	margin-left: 5rem;
	color: #2ca5de;
	padding: 1rem 0;
}
a.related::before {
	content: "Related to: ";
}
table {
	position: relative;
	margin-left: 5rem;
	border: 2px solid #333;
	border-spacing: 0px;
	margin-bottom: 5px;
	margin-top: 5px;
}
table td {
	padding: 10px;
	border: 1px solid #333;
	vertical-align: top;
}
busy {
	position: fixed;
	display: block;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 999;
}
busy::after {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	content: "Working...";
	color: #fff;
	background-color: #860067;
	padding: 10px 30px;
	border-radius: 50px;
}
dwnld {
	pointer-events: auto;
	position: relative;
	display: table;
	margin-left: 5rem;
	padding: 8px 20px 8px 45px;
	margin-bottom: 5px;
	background-color: #3b6f92;
	width: auto;
	cursor: pointer;
	z-index: 9995;
	border-radius: 5px;
	color: #fff;
}
dwnld:hover {
	background-color: #d50c77;
}
dwnld::before {
	position: relative;
	content: "DOWNLOAD";
	font-weight: 700;
	font-size: 10px;
	line-height: 10px;
	padding: 3px 10px;
	border-radius: 20px;
	background-color: rgba(0, 0, 0, 0.33);
	margin-right: 10px;
	vertical-align: 1px;
}
dwnld::after {
	position: absolute;
	display: block;
	content: "";
	width: 33px;
	height: 33px;
	background: url(img/i_zip.png) center center no-repeat;
	background-size: contain;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
}

dwnld::after {
	position: absolute;
	display: block;
	content: "";
	width: 30px;
	height: 30px;
	background: url(img/i_zip.png) center center no-repeat;
	background-size: contain;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
}

dwnld[dt_word]::after {
	background: url(img/i_docx.png) center center no-repeat;	
	background-size: contain;
}
dwnld[dt_pdf]::after {
	background: url(img/i_pdf.png) center center no-repeat;	
	background-size: contain;
}
dsection {
	position: relative;
	display: block;
	padding-top: 2rem;
	margin-top: 2rem;
	padding-bottom: 0.2rem;
}
dsection::before {
	position: absolute;
	display: block;
	top: 0px;
	left: 3rem;
	width: 10px;
	bottom: 0px;
	content: "";
	background-color: #aaa;
}
dsection h5 {
	position: absolute;
	display: block;
	top: 0;
	font-size: 2rem;
	line-height: 2rem;
	margin-left: 5rem;
	color: #e5007e;
}
dsection p {
	margin-bottom: 10px;
}
downmsg {
	position: fixed;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.34);
}
downmsg dclose {
	position: absolute;
	display: block;
	right: 30px;
	top: 20px;
	width: 30px;
	height: 30px;
	background-color: #ac9b9b;
	border-radius: 5px;
	cursor: pointer;
}
downmsg dclose::after {
	position: absolute;
	display: block;
	content: "\0D7";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	line-height: 20px;
	font-weight: bold;
	color: #fff;
}
downmsg dclose:hover {
	background-color: #fe0000;
}
downw {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font: normal 15px/21px "Open Sans", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	padding: 20px 30px;
	border-radius: 20px;
	background-color: #eee;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
	border: 1px solid #fff;
}
downw::before {
	position: relative;
	display: block;
	content: attr(caption);
	font-size: 20px;
	line-height: 20px;
	color: #e5007e;
	border-bottom: 1px solid #e5007e;
	padding: 10px 0;
	margin-bottom: 20px;
}
downmsg dfln {
	position: relative;
	display: block;
	padding: 5px 20px;
	background-color: #555;
	border-radius: 40px;
	margin-top: 10px;
	color: #fff;
}
downmsg button {
	position: relative;
	display: table;
	margin: 20px auto auto;
	padding: 15px 30px;
	font-size: 16px;
	line-height: 16px;
	cursor: pointer;
	background-color: #9cdbfd;
}
downmsg button:hover {
	background-color: #167baf;
	color: #ffffff;
}