<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#appHelpBackgroundDIV{
  z-index: 1000;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #FFFFFF;
  opacity: 0.75;
}

#appHelpDIV{
  z-index: 1001;
  position: absolute;
  left: 50%;
  top: 200px;
  margin-left: -250px; 
  height: 420px;
  width: 500px;
  opacity: 1 !important;
  background: #FFFFFF;
  border: 1px solid #25363d;
  /* Make Text Unselectable */
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;

}

#appHelpTitleDIV{
  position: absolute;
  height: 30px;
  top: 0px;
  width: 100%;
  background-color: #25363d;
}

#appHelpTitleTextDIV{
  position: absolute;
  top: 0px;
  left: 5px;
  font-family: arial;
  font-size: 14pt;
  font-weight: bold;
  color: white;
  width: 150px;
  line-height: 30px;
  /* Make Text Unselectable */
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

#appHelpText{
	position: absolute;
	top: 35px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	font-family: arial;
	font-size: 12pt;
	line-height: 20px;
}

#closeHelpBtn{
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 120px;
  border-radius: 4px;
  border: 1px solid black;
}



@media only screen and (max-width: 1000px) {
  #appHelpDIV{
    z-index: 1001;
    position: absolute;
    left: 50%;
    top: 200px;
    margin-left: -175px; 
    height: 450px;
    width: 350px;
    opacity: 1 !important;
    background: #FFFFFF;
    border: 1px solid #25363d;
	/* Make Text Unselectable */
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
  }
  
  #appHelpTitleTextDIV{
    position: absolute;
    top: 0px;
    left: 5px;
	font-family: arial;
    font-size: 12pt;
    font-weight: bold;
    color: white;
    width: 150px;
    /* Make Text Unselectable */
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
  }
  
  #appHelpText{
	position: absolute;
	top: 35px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	font-family: arial;
	font-size: 11pt;
  } 
}
</pre></body></html>