/*****************************************************************************/
/* wks.css                                         (oid:357, pid:225, ord:0) */
/*****************************************************************************/

/*[REGION 'GENERAL']*/
.wks-bor-red {border: 1px solid red;}
.wks-bor-gre {border: 1px solid green;}
.wks-bor-blu {border: 1px solid blue;}

.wks-cursor-pointer{cursor: pointer;}
.wks-rtl{direction: rtl;}
.wks-ltr{direction: ltr;}

.wks-centered {
  /*display: block;*/
  margin-left: auto;
  margin-right: auto;
}
.wks-centered-compact {
  margin-left: auto;
  margin-right: auto;
  width: 0;
}
/*[ENDREGION]*/

/*[REGION 'HTML']*/
textarea {
  width: 100%;
  /*height: 512px;*/
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-family: 'Courier New';
  font-size: 14px;
  resize: none;
}
/*[ENDREGION]*/

/*[REGION 'BGCOLORS']*/
.info {
  background-color: dodgerblue;
  color: white;
}
.safe {
  background-color: green;
  color: white;
}
.warning {
  background-color: darkorange;
  color: white;
}
.critical {
  background-color: crimson;
  color: white;
}
.danger {
  background-color: red;
  color: white;
}
.error {
  background-color: gray;
  color: white;
}
/*[ENDREGION]*/

/*[REGION 'OUTLINECOLORS']*/
.info-outline {
  outline: 2px solid dodgerblue;
  color: white;
}
.safe-outline {
  outline: 2px solid green;
  color: white;
}
.warning-outline {
  outline: 2px solid darkorange;
  color: white;
}
.critical-outline {
  outline: 2px solid crimson;
  color: white;
}
.danger-outline {
  outline: 2px solid red;
  color: white;
}
.error-outline {
  outline: 2px solid gray;
  color: white;
}
/*[ENDREGION]*/

/*[REGION 'BADGE']*/
.badge {
  /*background-color: red;
  color: white;*/
  padding: 4px 8px;
  text-align: center;
  border-radius: 4px;
  font-family: Menlo,Consolas;
}
/*[ENDREGION]*/

/*[REGION 'MARQUEE']*/
.marquee-wrapper {
    gap: var(--marquee-gap);
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 100%;
    position: fixed;
    bottom: 16px;
    border: 0px solid green;
}
.marquee-container {
    gap: var(--marquee-gap);
    display: flex;
    overflow: hidden;
    user-select: none;
}
.marquee-group {
    gap: var(--marquee-gap);
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: scroll-x var(--marquee-duration) linear infinite;
}
.marquee-group span {
    padding: 8px 16px 8px 0px;
    /*display: grid;*/
    place-content: center;
    border-radius: 0.25rem;
}
@keyframes scroll-x {
    from {
        transform: translateX(var(--marquee-scroll-start));
    }
    to {
        transform: translateX(var(--marquee-scroll-end));
    }
}
/*[ENDREGION]*/

/*[REGION 'BLOCKQUOTE']*/
block--quote{
  display:block;
  background: #f9f9f9;
  padding: 15px 20px 15px 45px;
  padding: 0 1em 0 2em;
  margin: 0 0 20px;
  position: relative;
  
  /* font */
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.2;
  color: #666;

  /* borders (optional) */
  border-left-style: solid;
  border-left-width: 15px;
  /*border-right-style: solid;
  border-right-width: 2px;*/

  /* shadow (optional)
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;*/
}
block--quote::before{
  content: "\201C"; /* unicode for left double quote */
  
  /* font */
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  
  /* positioning */
  position: absolute;
  left: 10px;
  top:5px;
}
block--quote::after{
  /* reset to make sure */
  content: "";
}
block--quote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #c76c0c;
}
block--quote a:hover{
 color: #666;
}
block--quote em{
  font-style: italic;
}
block--quote.default{ 
  border-left-color: #656d77;
  border-right-color: #434a53;  
}
block--quote.grapefruit{
  border-left-color: #ed5565;
  border-right-color: #da4453;
}
block--quote.bittersweet{
  border-left-color: #fc6d58;
  border-right-color: #e95546;
}
block--quote.sunflower{
  border-left-color: #ffcd69;
  border-right-color: #f6ba59;
}
block--quote.grass{
  border-left-color: #9fd477;
  border-right-color: #8bc163;
}
block--quote.mint{
  border-left-color: #46cfb0;
  border-right-color: #34bc9d;
}
block--quote.aqua{
  border-left-color: #4fc2e5;
  border-right-color: #3bb0d6;
}
block--quote.bluejeans{
  border-left-color: #5e9de6;
  border-right-color: #4b8ad6;
}
block--quote.lavander{
  border-left-color: #ad93e6;
  border-right-color: #977bd5;
}
block--quote.pinkrose{
  border-left-color: #ed87bd;
  border-right-color: #d870a9;
}
block--quote.light{
  border-left-color: #f5f7fa;
  border-right-color: #e6e9ed;
}
block--quote.gray{
  border-left-color: #ccd1d8;
  border-right-color: #aab2bc;
}
/*[ENDREGION]*/

/*[REGION 'PAGE']*/
page {
  background: white;
  display: block;
  margin: 0 auto;
  margin-top: 0.5cm;
  margin-bottom: 0.5cm;
  padding-top: 2cm;
  padding-left: 2cm;
  padding-right: 2cm;
  padding-bottom: 2cm;
  box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}
page[size="A5"] {
  width: 14.8cm;
  min-height: 21cm;
}
page[size="A5"][layout="portrait"] {
  width: 21cm;
  min-height: 14.8cm;
}
page[size="A4"] {
  width: 21cm;
  min-height: 29.7cm;
}
page[size="A4"][layout="portrait"] {
  width: 29.7cm;
  min-height: 21cm;
}
page[size="A3"] {
  width: 29.7cm;
  height: *;
}
page[size="A3"][layout="portrait"] {
  width: 42cm;
  min-height: 29.7cm;
}
@page {
  size: A4 portrait;
}
@page :left {
  margin-left: 1cm;
  @bottom-left {
    content: "Page " counter(page) " of " counter(pages);
  }
}
@page :right {
  margin-left: 1cm;
  @bottom-right {
    content: "Page " counter(page) " of " counter(pages);
  }
}
@page :first {
}
@page :blank {
  @top-center { content: "This page is intentionally left blank." }
}
@media print {
  body * {
    visibility: hidden;
  }
  #printSection,
  #printSection * {
    visibility: visible;
  }
  #printSection {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: gray;
  }
}
/*[ENDREGION]*/

/*[REGION 'TORN']*/
/*
  usage:
  <div class="torn-container torn-left torn-right">
    <div></div>
    <div>Text text text</div>
  </div>
*/ 
body {
    /* torn vars */
    --torn-shadow-offset-x:-2px;
    --torn-shadow-offset-y:2px;
    --torn-shadow-background-color:rgba(0,0,0,0.25);
    --torn-background-color:#f15a2b;
    --torn-left-width:14px;
    --torn-right-width:14px;
    --torn-left-clip-path:polygon(47% 0%, 73% 17%, 20% 33%, 63% 50%, 47% 67%, 33% 83%, 55% 100%, calc(100% + 1px) 100%, calc(100% + 1px) 0%);
    --torn-right-clip-path:polygon(11% 0%, 80% 17%, 88% 33%, 42% 50%, 56% 67%, 57% 83%, 91% 100%, -10% 100%, -10% 0%);
}
.torn-container {
    float:left;
    clear:both;
    margin-bottom:1.2em;
    position:relative;
}
.torn-container>div:first-child {
    margin-left:var(--torn-shadow-offset-x);
    margin-top:var(--torn-shadow-offset-y);
    left:0px;
    top:0px;
    right:calc(0px - var(--torn-shadow-offset-x));
    bottom:calc(0px - var(--torn-shadow-offset-y));
    position:absolute;
    z-index:1;
    filter:blur(var(--torn-shadow-blur));
}
.torn-container>div:nth-child(2), .torn-container>div:nth-child(2)>span{
    vertical-align:middle;
}
.torn-container>div:nth-child(2), .torn-left>div:nth-child(2):before, .torn-right>div:nth-child(2):after{
    background-color:var(--torn-background-color);
}
.torn-container>div:nth-child(2), .torn-container>div:nth-child(2){
    display:inline-block;
    position:relative;
    z-index:2;
    padding:0.4em;
}
.torn-left>div:nth-child(2):before, .torn-left>div:first-child:before{
    content:'';
    position:absolute;
    left:calc(0em - var(--torn-left-width));
    top:0px;
    width:var(--torn-left-width);
    bottom:0px;
    -webkit-clip-path:var(--torn-left-clip-path);
    clip-path:var(--torn-left-clip-path);
}
.torn-container>div:first-child, .torn-left>div:first-child:before, .torn-right>div:first-child:after{
    background-color:var(--torn-shadow-background-color);
}
.torn-right>div:nth-child(2):after, .torn-right>div:first-child:after{
    content:'';
    position:absolute;
    left:100%;
    top:0px;
    right:calc(0px - var(--torn-right-width));
    bottom:0px;
    -webkit-clip-path:var(--torn-right-clip-path);
    clip-path:var(--torn-right-clip-path);
}
.torn-right>div:nth-child(2):after{
    left:calc(100% - 0.5px);
}
/*[ENDREGION]*/

/*[REGION 'SEARCHSUGGESTIONS']*/
#CoSearchSuggestionsDiv {
    position: absolute;
    display: none;
    min-width: 480px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}
.CoSearchSuggestionsDiv-row:hover {
    background: #f1f1f1;
    cursor: pointer;
}
.CoSearchSuggestionsDiv-row div {
    padding: 8px;
}
/* Header row styling */
#CoSearchSuggestionsDiv-header {
    background: #e0e0e0;
    font-weight: bold;
}
/*
#suggestions div {
    padding: 8px 10px;
    cursor: pointer;
}
#suggestions div:hover {
    background: #eee;
}
*/
/*[ENDREGION]*/

/*****************************************************************************/
/* END                   (generated by wks @ 11/22/2025 11:14:52 PM in 0 ms) */
/*****************************************************************************/
