
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_d632a5c59b8e83868e8845d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8b0440a83e71b4b92e699664.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9385f40fbe20fd3694aa04c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_697d97b2df042567f905154f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4245b9ffb630999a148e170a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:35.148288px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-58.101975px;}
.ws4a{word-spacing:-35.119596px;}
.ws36{word-spacing:-24.222068px;}
.ws0{word-spacing:-23.245313px;}
.ws2e{word-spacing:-19.367325px;}
.ws37{word-spacing:-18.836613px;}
.ws1c{word-spacing:-18.747571px;}
.ws21{word-spacing:-18.477957px;}
.ws3b{word-spacing:-17.688914px;}
.ws3f{word-spacing:-17.186796px;}
.ws6{word-spacing:-16.690923px;}
.wsa{word-spacing:-16.429105px;}
.ws4b{word-spacing:-16.182559px;}
.ws2f{word-spacing:-16.139475px;}
.ws3e{word-spacing:-15.895634px;}
.ws52{word-spacing:-15.680440px;}
.ws4d{word-spacing:-15.393516px;}
.wsb{word-spacing:-15.381831px;}
.ws3a{word-spacing:-15.178322px;}
.ws16{word-spacing:-14.989103px;}
.ws42{word-spacing:-14.963128px;}
.ws39{word-spacing:-14.461010px;}
.ws1{word-spacing:-14.082230px;}
.ws33{word-spacing:-13.815429px;}
.ws28{word-spacing:-13.528504px;}
.ws14{word-spacing:-13.483648px;}
.ws40{word-spacing:-13.385042px;}
.wsc{word-spacing:-13.287284px;}
.ws4e{word-spacing:-13.241580px;}
.ws4c{word-spacing:-12.882924px;}
.ws38{word-spacing:-12.811192px;}
.wsf{word-spacing:-12.698192px;}
.ws2c{word-spacing:-12.165612px;}
.ws34{word-spacing:-12.093880px;}
.ws45{word-spacing:-12.022149px;}
.ws29{word-spacing:-11.950418px;}
.ws3c{word-spacing:-11.878687px;}
.ws43{word-spacing:-11.806956px;}
.ws2a{word-spacing:-11.735224px;}
.ws23{word-spacing:-11.663493px;}
.ws32{word-spacing:-11.591762px;}
.ws24{word-spacing:-11.520031px;}
.ws8{word-spacing:-11.520010px;}
.ws12{word-spacing:-11.454555px;}
.ws2d{word-spacing:-11.448300px;}
.ws1e{word-spacing:-11.376568px;}
.ws7{word-spacing:-11.323646px;}
.ws26{word-spacing:-11.304837px;}
.ws1a{word-spacing:-11.258191px;}
.ws4f{word-spacing:-11.233106px;}
.ws1b{word-spacing:-11.192737px;}
.ws2b{word-spacing:-11.161375px;}
.ws17{word-spacing:-11.127282px;}
.ws9{word-spacing:-10.930918px;}
.ws2{word-spacing:-10.865464px;}
.ws41{word-spacing:-10.802719px;}
.ws5{word-spacing:-10.800009px;}
.ws13{word-spacing:-10.734554px;}
.ws18{word-spacing:-10.669100px;}
.ws31{word-spacing:-10.659256px;}
.ws11{word-spacing:-10.603645px;}
.wse{word-spacing:-10.472736px;}
.ws3{word-spacing:-10.407281px;}
.ws25{word-spacing:-10.085407px;}
.ws20{word-spacing:-9.655020px;}
.ws35{word-spacing:-9.511557px;}
.ws22{word-spacing:-8.435589px;}
.ws27{word-spacing:-8.363858px;}
.ws4{word-spacing:-7.658188px;}
.ws47{word-spacing:-7.287890px;}
.ws51{word-spacing:-7.216159px;}
.ws46{word-spacing:-7.000965px;}
.ws44{word-spacing:-6.427116px;}
.ws15{word-spacing:-6.349096px;}
.wsd{word-spacing:-6.087278px;}
.ws48{word-spacing:-5.351148px;}
.ws1f{word-spacing:-4.275180px;}
.ws3d{word-spacing:-3.629599px;}
.ws10{word-spacing:-2.814548px;}
.ws30{word-spacing:-2.194975px;}
.ws49{word-spacing:-1.979781px;}
.ws19{word-spacing:0.000000px;}
.ws50{word-spacing:58.101975px;}
._0{margin-left:-11.653650px;}
._1c{margin-left:-9.141361px;}
._2{margin-left:-6.972253px;}
._6{margin-left:-5.794070px;}
._3{margin-left:-4.089574px;}
._1{margin-left:-2.324084px;}
._5{margin-left:-1.048166px;}
._4{width:1.767274px;}
._d{width:2.815440px;}
._10{width:4.089574px;}
._7{width:17.280014px;}
._14{width:18.375718px;}
._9{width:20.520463px;}
._e{width:23.008630px;}
._1b{width:24.446876px;}
._13{width:26.567434px;}
._8{width:27.621841px;}
._a{width:28.898652px;}
._f{width:30.046338px;}
._b{width:31.747265px;}
._c{width:32.762258px;}
._18{width:35.435213px;}
._1d{width:36.685126px;}
._12{width:38.304461px;}
._15{width:42.519562px;}
._11{width:52.575832px;}
._1a{width:56.668544px;}
._19{width:60.498971px;}
._17{width:96.836850px;}
._16{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y22{bottom:63.168000px;}
.y21{bottom:108.000000px;}
.y97{bottom:132.487500px;}
.y20{bottom:133.221000px;}
.y43{bottom:134.890500px;}
.y5e{bottom:149.404500px;}
.y1f{bottom:158.443500px;}
.y42{bottom:161.781000px;}
.y96{bottom:174.321000px;}
.y1e{bottom:183.666000px;}
.yb1{bottom:188.673000px;}
.y5d{bottom:190.809000px;}
.y41{bottom:200.254500px;}
.y95{bottom:201.213000px;}
.y1d{bottom:208.887000px;}
.y77{bottom:209.623500px;}
.y5c{bottom:231.354000px;}
.yb0{bottom:233.322000px;}
.y1c{bottom:234.109500px;}
.y94{bottom:245.862000px;}
.y40{bottom:251.394000px;}
.y76{bottom:251.458500px;}
.y1b{bottom:259.330500px;}
.y5b{bottom:269.826000px;}
.y1a{bottom:284.553000px;}
.y75{bottom:293.293500px;}
.yaf{bottom:301.080000px;}
.y19{bottom:309.774000px;}
.y93{bottom:313.686000px;}
.y3f{bottom:318.625500px;}
.yae{bottom:327.970500px;}
.y5a{bottom:328.078500px;}
.y18{bottom:334.996500px;}
.y74{bottom:335.128500px;}
.y92{bottom:340.576500px;}
.y3e{bottom:345.517500px;}
.yad{bottom:354.861000px;}
.y59{bottom:354.970500px;}
.y17{bottom:360.217500px;}
.y91{bottom:367.467000px;}
.y3d{bottom:372.408000px;}
.y73{bottom:376.963500px;}
.yac{bottom:381.753000px;}
.y58{bottom:381.861000px;}
.y16{bottom:385.440000px;}
.y90{bottom:394.357500px;}
.y3c{bottom:399.298500px;}
.yab{bottom:408.643500px;}
.y57{bottom:408.751500px;}
.y15{bottom:410.661000px;}
.y72{bottom:418.798500px;}
.y8f{bottom:421.248000px;}
.y3b{bottom:426.189000px;}
.y56{bottom:435.642000px;}
.y14{bottom:435.883500px;}
.y8e{bottom:448.140000px;}
.y3a{bottom:453.081000px;}
.yaa{bottom:453.292500px;}
.y71{bottom:460.633500px;}
.y13{bottom:461.104500px;}
.y55{bottom:462.532500px;}
.y8d{bottom:475.030500px;}
.y39{bottom:479.971500px;}
.y12{bottom:486.327000px;}
.y54{bottom:489.424500px;}
.y8c{bottom:501.921000px;}
.y70{bottom:502.468500px;}
.y38{bottom:506.862000px;}
.y11{bottom:511.548000px;}
.y53{bottom:516.315000px;}
.ya9{bottom:521.050500px;}
.y8b{bottom:528.811500px;}
.y37{bottom:533.752500px;}
.y10{bottom:536.770500px;}
.y6f{bottom:540.940500px;}
.y52{bottom:543.205500px;}
.ya8{bottom:547.941000px;}
.y8a{bottom:555.703500px;}
.y36{bottom:560.643000px;}
.yf{bottom:561.991500px;}
.ya7{bottom:574.833000px;}
.y51{bottom:581.677500px;}
.y89{bottom:582.594000px;}
.ye{bottom:587.214000px;}
.y35{bottom:587.535000px;}
.y6e{bottom:592.080000px;}
.ya6{bottom:601.723500px;}
.y88{bottom:609.484500px;}
.yd{bottom:612.435000px;}
.y34{bottom:614.425500px;}
.ya5{bottom:628.614000px;}
.y50{bottom:632.818500px;}
.y87{bottom:636.375000px;}
.yc{bottom:637.657500px;}
.y33{bottom:641.316000px;}
.ya4{bottom:655.504500px;}
.y6d{bottom:659.904000px;}
.yb{bottom:662.878500px;}
.y86{bottom:663.267000px;}
.y32{bottom:668.206500px;}
.ya3{bottom:682.396500px;}
.y6c{bottom:686.794500px;}
.ya{bottom:688.101000px;}
.y85{bottom:690.157500px;}
.y31{bottom:695.098500px;}
.y4f{bottom:700.419000px;}
.y9{bottom:713.322000px;}
.y6b{bottom:713.685000px;}
.y84{bottom:717.048000px;}
.y30{bottom:721.989000px;}
.ya2{bottom:727.045500px;}
.y4e{bottom:727.311000px;}
.y6a{bottom:740.577000px;}
.y83{bottom:743.938500px;}
.y8{bottom:747.829500px;}
.y2f{bottom:748.879500px;}
.y69{bottom:767.467500px;}
.y4d{bottom:767.854500px;}
.y82{bottom:770.830500px;}
.y2e{bottom:775.770000px;}
.y68{bottom:794.358000px;}
.ya1{bottom:794.803500px;}
.y81{bottom:797.721000px;}
.y2d{bottom:802.662000px;}
.y4c{bottom:809.259000px;}
.y7{bottom:815.809500px;}
.y67{bottom:821.248500px;}
.ya0{bottom:821.694000px;}
.y80{bottom:824.611500px;}
.y2c{bottom:829.552500px;}
.y66{bottom:848.140500px;}
.y9f{bottom:848.584500px;}
.y6{bottom:849.192000px;}
.y4b{bottom:850.663500px;}
.y7f{bottom:851.502000px;}
.y2b{bottom:856.443000px;}
.y9e{bottom:875.476500px;}
.y7e{bottom:878.392500px;}
.y5{bottom:882.573000px;}
.y2a{bottom:883.333500px;}
.y4a{bottom:892.069500px;}
.y65{bottom:892.789500px;}
.y9d{bottom:902.367000px;}
.y7d{bottom:923.043000px;}
.y29{bottom:927.982500px;}
.y49{bottom:932.613000px;}
.y4{bottom:942.294000px;}
.y9c{bottom:947.016000px;}
.y64{bottom:960.613500px;}
.y28{bottom:968.782500px;}
.y48{bottom:971.085000px;}
.y3{bottom:975.675000px;}
.y63{bottom:987.504000px;}
.y7c{bottom:990.865500px;}
.y2{bottom:1009.057500px;}
.y62{bottom:1014.394500px;}
.y9b{bottom:1014.774000px;}
.y7b{bottom:1017.757500px;}
.y47{bottom:1029.339000px;}
.y27{bottom:1036.015500px;}
.y61{bottom:1041.285000px;}
.y9a{bottom:1041.664500px;}
.y7a{bottom:1044.648000px;}
.y1{bottom:1055.421000px;}
.y46{bottom:1056.229500px;}
.y26{bottom:1061.236500px;}
.y60{bottom:1068.175500px;}
.y99{bottom:1068.556500px;}
.y79{bottom:1071.538500px;}
.y45{bottom:1083.120000px;}
.y25{bottom:1086.459000px;}
.y5f{bottom:1095.067500px;}
.y98{bottom:1095.447000px;}
.y78{bottom:1098.429000px;}
.y44{bottom:1110.010500px;}
.y24{bottom:1111.680000px;}
.y23{bottom:1136.902500px;}
.h5{height:45.687311px;}
.h4{height:49.090950px;}
.h6{height:53.798400px;}
.h3{height:64.557900px;}
.h7{height:77.469300px;}
.h2{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:108.000000px;}
.x3{left:113.572500px;}
.xe{left:129.460500px;}
.xd{left:134.338500px;}
.x1{left:144.702000px;}
.xa{left:151.897500px;}
.x9{left:176.443500px;}
.x6{left:182.934000px;}
.x2{left:186.976500px;}
.x4{left:380.761500px;}
.x5{left:387.291000px;}
.x8{left:410.710500px;}
.x7{left:430.093500px;}
.xb{left:442.066500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:31.242923pt;}
.ws1d{word-spacing:-51.646200pt;}
.ws4a{word-spacing:-31.217418pt;}
.ws36{word-spacing:-21.530727pt;}
.ws0{word-spacing:-20.662500pt;}
.ws2e{word-spacing:-17.215400pt;}
.ws37{word-spacing:-16.743656pt;}
.ws1c{word-spacing:-16.664507pt;}
.ws21{word-spacing:-16.424851pt;}
.ws3b{word-spacing:-15.723479pt;}
.ws3f{word-spacing:-15.277152pt;}
.ws6{word-spacing:-14.836376pt;}
.wsa{word-spacing:-14.603649pt;}
.ws4b{word-spacing:-14.384497pt;}
.ws2f{word-spacing:-14.346200pt;}
.ws3e{word-spacing:-14.129452pt;}
.ws52{word-spacing:-13.938169pt;}
.ws4d{word-spacing:-13.683125pt;}
.wsb{word-spacing:-13.672739pt;}
.ws3a{word-spacing:-13.491842pt;}
.ws16{word-spacing:-13.323647pt;}
.ws42{word-spacing:-13.300559pt;}
.ws39{word-spacing:-12.854231pt;}
.ws1{word-spacing:-12.517538pt;}
.ws33{word-spacing:-12.280381pt;}
.ws28{word-spacing:-12.025337pt;}
.ws14{word-spacing:-11.985465pt;}
.ws40{word-spacing:-11.897815pt;}
.wsc{word-spacing:-11.810919pt;}
.ws4e{word-spacing:-11.770293pt;}
.ws4c{word-spacing:-11.451488pt;}
.ws38{word-spacing:-11.387727pt;}
.wsf{word-spacing:-11.287282pt;}
.ws2c{word-spacing:-10.813877pt;}
.ws34{word-spacing:-10.750116pt;}
.ws45{word-spacing:-10.686355pt;}
.ws29{word-spacing:-10.622594pt;}
.ws3c{word-spacing:-10.558833pt;}
.ws43{word-spacing:-10.495072pt;}
.ws2a{word-spacing:-10.431311pt;}
.ws23{word-spacing:-10.367549pt;}
.ws32{word-spacing:-10.303788pt;}
.ws24{word-spacing:-10.240027pt;}
.ws8{word-spacing:-10.240009pt;}
.ws12{word-spacing:-10.181827pt;}
.ws2d{word-spacing:-10.176266pt;}
.ws1e{word-spacing:-10.112505pt;}
.ws7{word-spacing:-10.065463pt;}
.ws26{word-spacing:-10.048744pt;}
.ws1a{word-spacing:-10.007281pt;}
.ws4f{word-spacing:-9.984983pt;}
.ws1b{word-spacing:-9.949099pt;}
.ws2b{word-spacing:-9.921222pt;}
.ws17{word-spacing:-9.890917pt;}
.ws9{word-spacing:-9.716372pt;}
.ws2{word-spacing:-9.658190pt;}
.ws41{word-spacing:-9.602417pt;}
.ws5{word-spacing:-9.600008pt;}
.ws13{word-spacing:-9.541826pt;}
.ws18{word-spacing:-9.483644pt;}
.ws31{word-spacing:-9.474895pt;}
.ws11{word-spacing:-9.425462pt;}
.wse{word-spacing:-9.309099pt;}
.ws3{word-spacing:-9.250917pt;}
.ws25{word-spacing:-8.964806pt;}
.ws20{word-spacing:-8.582240pt;}
.ws35{word-spacing:-8.454717pt;}
.ws22{word-spacing:-7.498301pt;}
.ws27{word-spacing:-7.434540pt;}
.ws4{word-spacing:-6.807278pt;}
.ws47{word-spacing:-6.478124pt;}
.ws51{word-spacing:-6.414363pt;}
.ws46{word-spacing:-6.223080pt;}
.ws44{word-spacing:-5.712992pt;}
.ws15{word-spacing:-5.643641pt;}
.wsd{word-spacing:-5.410914pt;}
.ws48{word-spacing:-4.756576pt;}
.ws1f{word-spacing:-3.800160pt;}
.ws3d{word-spacing:-3.226310pt;}
.ws10{word-spacing:-2.501820pt;}
.ws30{word-spacing:-1.951089pt;}
.ws49{word-spacing:-1.759805pt;}
.ws19{word-spacing:0.000000pt;}
.ws50{word-spacing:51.646200pt;}
._0{margin-left:-10.358800pt;}
._1c{margin-left:-8.125654pt;}
._2{margin-left:-6.197558pt;}
._6{margin-left:-5.150285pt;}
._3{margin-left:-3.635177pt;}
._1{margin-left:-2.065853pt;}
._5{margin-left:-0.931703pt;}
._4{width:1.570910pt;}
._d{width:2.502613pt;}
._10{width:3.635177pt;}
._7{width:15.360013pt;}
._14{width:16.333971pt;}
._9{width:18.240412pt;}
._e{width:20.452116pt;}
._1b{width:21.730556pt;}
._13{width:23.615497pt;}
._8{width:24.552748pt;}
._a{width:25.687691pt;}
._f{width:26.707856pt;}
._b{width:28.219791pt;}
._c{width:29.122007pt;}
._18{width:31.497967pt;}
._1d{width:32.609001pt;}
._12{width:34.048410pt;}
._15{width:37.795166pt;}
._11{width:46.734073pt;}
._1a{width:50.372039pt;}
._19{width:53.776863pt;}
._17{width:86.077200pt;}
._16{width:103.292400pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:56.149333pt;}
.y21{bottom:96.000000pt;}
.y97{bottom:117.766667pt;}
.y20{bottom:118.418667pt;}
.y43{bottom:119.902667pt;}
.y5e{bottom:132.804000pt;}
.y1f{bottom:140.838667pt;}
.y42{bottom:143.805333pt;}
.y96{bottom:154.952000pt;}
.y1e{bottom:163.258667pt;}
.yb1{bottom:167.709333pt;}
.y5d{bottom:169.608000pt;}
.y41{bottom:178.004000pt;}
.y95{bottom:178.856000pt;}
.y1d{bottom:185.677333pt;}
.y77{bottom:186.332000pt;}
.y5c{bottom:205.648000pt;}
.yb0{bottom:207.397333pt;}
.y1c{bottom:208.097333pt;}
.y94{bottom:218.544000pt;}
.y40{bottom:223.461333pt;}
.y76{bottom:223.518667pt;}
.y1b{bottom:230.516000pt;}
.y5b{bottom:239.845333pt;}
.y1a{bottom:252.936000pt;}
.y75{bottom:260.705333pt;}
.yaf{bottom:267.626667pt;}
.y19{bottom:275.354667pt;}
.y93{bottom:278.832000pt;}
.y3f{bottom:283.222667pt;}
.yae{bottom:291.529333pt;}
.y5a{bottom:291.625333pt;}
.y18{bottom:297.774667pt;}
.y74{bottom:297.892000pt;}
.y92{bottom:302.734667pt;}
.y3e{bottom:307.126667pt;}
.yad{bottom:315.432000pt;}
.y59{bottom:315.529333pt;}
.y17{bottom:320.193333pt;}
.y91{bottom:326.637333pt;}
.y3d{bottom:331.029333pt;}
.y73{bottom:335.078667pt;}
.yac{bottom:339.336000pt;}
.y58{bottom:339.432000pt;}
.y16{bottom:342.613333pt;}
.y90{bottom:350.540000pt;}
.y3c{bottom:354.932000pt;}
.yab{bottom:363.238667pt;}
.y57{bottom:363.334667pt;}
.y15{bottom:365.032000pt;}
.y72{bottom:372.265333pt;}
.y8f{bottom:374.442667pt;}
.y3b{bottom:378.834667pt;}
.y56{bottom:387.237333pt;}
.y14{bottom:387.452000pt;}
.y8e{bottom:398.346667pt;}
.y3a{bottom:402.738667pt;}
.yaa{bottom:402.926667pt;}
.y71{bottom:409.452000pt;}
.y13{bottom:409.870667pt;}
.y55{bottom:411.140000pt;}
.y8d{bottom:422.249333pt;}
.y39{bottom:426.641333pt;}
.y12{bottom:432.290667pt;}
.y54{bottom:435.044000pt;}
.y8c{bottom:446.152000pt;}
.y70{bottom:446.638667pt;}
.y38{bottom:450.544000pt;}
.y11{bottom:454.709333pt;}
.y53{bottom:458.946667pt;}
.ya9{bottom:463.156000pt;}
.y8b{bottom:470.054667pt;}
.y37{bottom:474.446667pt;}
.y10{bottom:477.129333pt;}
.y6f{bottom:480.836000pt;}
.y52{bottom:482.849333pt;}
.ya8{bottom:487.058667pt;}
.y8a{bottom:493.958667pt;}
.y36{bottom:498.349333pt;}
.yf{bottom:499.548000pt;}
.ya7{bottom:510.962667pt;}
.y51{bottom:517.046667pt;}
.y89{bottom:517.861333pt;}
.ye{bottom:521.968000pt;}
.y35{bottom:522.253333pt;}
.y6e{bottom:526.293333pt;}
.ya6{bottom:534.865333pt;}
.y88{bottom:541.764000pt;}
.yd{bottom:544.386667pt;}
.y34{bottom:546.156000pt;}
.ya5{bottom:558.768000pt;}
.y50{bottom:562.505333pt;}
.y87{bottom:565.666667pt;}
.yc{bottom:566.806667pt;}
.y33{bottom:570.058667pt;}
.ya4{bottom:582.670667pt;}
.y6d{bottom:586.581333pt;}
.yb{bottom:589.225333pt;}
.y86{bottom:589.570667pt;}
.y32{bottom:593.961333pt;}
.ya3{bottom:606.574667pt;}
.y6c{bottom:610.484000pt;}
.ya{bottom:611.645333pt;}
.y85{bottom:613.473333pt;}
.y31{bottom:617.865333pt;}
.y4f{bottom:622.594667pt;}
.y9{bottom:634.064000pt;}
.y6b{bottom:634.386667pt;}
.y84{bottom:637.376000pt;}
.y30{bottom:641.768000pt;}
.ya2{bottom:646.262667pt;}
.y4e{bottom:646.498667pt;}
.y6a{bottom:658.290667pt;}
.y83{bottom:661.278667pt;}
.y8{bottom:664.737333pt;}
.y2f{bottom:665.670667pt;}
.y69{bottom:682.193333pt;}
.y4d{bottom:682.537333pt;}
.y82{bottom:685.182667pt;}
.y2e{bottom:689.573333pt;}
.y68{bottom:706.096000pt;}
.ya1{bottom:706.492000pt;}
.y81{bottom:709.085333pt;}
.y2d{bottom:713.477333pt;}
.y4c{bottom:719.341333pt;}
.y7{bottom:725.164000pt;}
.y67{bottom:729.998667pt;}
.ya0{bottom:730.394667pt;}
.y80{bottom:732.988000pt;}
.y2c{bottom:737.380000pt;}
.y66{bottom:753.902667pt;}
.y9f{bottom:754.297333pt;}
.y6{bottom:754.837333pt;}
.y4b{bottom:756.145333pt;}
.y7f{bottom:756.890667pt;}
.y2b{bottom:761.282667pt;}
.y9e{bottom:778.201333pt;}
.y7e{bottom:780.793333pt;}
.y5{bottom:784.509333pt;}
.y2a{bottom:785.185333pt;}
.y4a{bottom:792.950667pt;}
.y65{bottom:793.590667pt;}
.y9d{bottom:802.104000pt;}
.y7d{bottom:820.482667pt;}
.y29{bottom:824.873333pt;}
.y49{bottom:828.989333pt;}
.y4{bottom:837.594667pt;}
.y9c{bottom:841.792000pt;}
.y64{bottom:853.878667pt;}
.y28{bottom:861.140000pt;}
.y48{bottom:863.186667pt;}
.y3{bottom:867.266667pt;}
.y63{bottom:877.781333pt;}
.y7c{bottom:880.769333pt;}
.y2{bottom:896.940000pt;}
.y62{bottom:901.684000pt;}
.y9b{bottom:902.021333pt;}
.y7b{bottom:904.673333pt;}
.y47{bottom:914.968000pt;}
.y27{bottom:920.902667pt;}
.y61{bottom:925.586667pt;}
.y9a{bottom:925.924000pt;}
.y7a{bottom:928.576000pt;}
.y1{bottom:938.152000pt;}
.y46{bottom:938.870667pt;}
.y26{bottom:943.321333pt;}
.y60{bottom:949.489333pt;}
.y99{bottom:949.828000pt;}
.y79{bottom:952.478667pt;}
.y45{bottom:962.773333pt;}
.y25{bottom:965.741333pt;}
.y5f{bottom:973.393333pt;}
.y98{bottom:973.730667pt;}
.y78{bottom:976.381333pt;}
.y44{bottom:986.676000pt;}
.y24{bottom:988.160000pt;}
.y23{bottom:1010.580000pt;}
.h5{height:40.610943pt;}
.h4{height:43.636400pt;}
.h6{height:47.820800pt;}
.h3{height:57.384800pt;}
.h7{height:68.861600pt;}
.h2{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:96.000000pt;}
.x3{left:100.953333pt;}
.xe{left:115.076000pt;}
.xd{left:119.412000pt;}
.x1{left:128.624000pt;}
.xa{left:135.020000pt;}
.x9{left:156.838667pt;}
.x6{left:162.608000pt;}
.x2{left:166.201333pt;}
.x4{left:338.454667pt;}
.x5{left:344.258667pt;}
.x8{left:365.076000pt;}
.x7{left:382.305333pt;}
.xb{left:392.948000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  