
    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_b062de1ad4a8c710fb53e6f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_abfd14650639f5a6926a979e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_360abe42414fea80e97a14ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_1ba821e7fbfd13de0b0cc861.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926270;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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:ff6;src:url('chunks/assets/font_9baaa2bedf5c7c394203bde5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.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:ff7;src:url('chunks/assets/font_0a66cd71169b53ac05059f0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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;}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.009351px;}
.ls1{letter-spacing:0.377852px;}
.ls3{letter-spacing:34.015846px;}
.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;}
}
.wsa{word-spacing:-17.999993px;}
.ws6{word-spacing:-15.839994px;}
.ws7{word-spacing:-14.939994px;}
.ws2{word-spacing:-11.246396px;}
.ws0{word-spacing:-9.437756px;}
.ws3{word-spacing:-8.786876px;}
.ws9{word-spacing:-0.255384px;}
.wsc{word-spacing:-0.234432px;}
.ws1{word-spacing:-0.179712px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:0.465048px;}
.ws8{word-spacing:0.540720px;}
.ws5{word-spacing:3.854302px;}
._b{margin-left:-10.874392px;}
._6{margin-left:-3.367140px;}
._7{margin-left:-2.314733px;}
._1{margin-left:-1.155351px;}
._0{width:1.073466px;}
._2{width:2.291018px;}
._3{width:3.385334px;}
._12{width:4.681388px;}
._10{width:5.681918px;}
._a{width:6.832263px;}
._9{width:7.966339px;}
._e{width:13.868846px;}
._f{width:15.101800px;}
._11{width:17.010842px;}
._8{width:18.843462px;}
._4{width:20.424645px;}
._5{width:21.942250px;}
._13{width:23.247356px;}
._c{width:34.748090px;}
._d{width:36.366062px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.879984px;}
.fs2{font-size:41.759983px;}
.fs4{font-size:51.119980px;}
.fs6{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs1{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.899977px;}
.y23{bottom:110.460256px;}
.y22{bottom:115.680254px;}
.y62{bottom:126.120250px;}
.y21{bottom:129.360248px;}
.y40{bottom:147.539941px;}
.y61{bottom:161.579935px;}
.y60{bottom:193.079923px;}
.y20{bottom:197.939921px;}
.y3f{bottom:199.739920px;}
.y1f{bottom:229.079908px;}
.y5e{bottom:244.019902px;}
.y3e{bottom:247.619901px;}
.y5f{bottom:254.279898px;}
.y77{bottom:258.239897px;}
.y1d{bottom:277.319889px;}
.y1b{bottom:282.719887px;}
.y1a{bottom:286.319885px;}
.y1e{bottom:292.979883px;}
.y1c{bottom:296.939881px;}
.y3c{bottom:300.539880px;}
.y5c{bottom:300.719880px;}
.y3a{bottom:305.939878px;}
.y5d{bottom:307.379877px;}
.y39{bottom:309.539876px;}
.y76{bottom:310.259876px;}
.y3d{bottom:316.199874px;}
.y3b{bottom:320.159872px;}
.y75{bottom:341.399863px;}
.y19{bottom:343.379863px;}
.y5b{bottom:353.099859px;}
.y38{bottom:366.059854px;}
.y74{bottom:372.359851px;}
.y18{bottom:374.519850px;}
.y37{bottom:397.019841px;}
.y73{bottom:403.499839px;}
.y59{bottom:403.859838px;}
.y58{bottom:407.459837px;}
.y5a{bottom:414.119834px;}
.y16{bottom:426.899829px;}
.y17{bottom:433.559827px;}
.y72{bottom:434.459826px;}
.y36{bottom:449.039820px;}
.y56{bottom:460.559816px;}
.y71{bottom:465.599814px;}
.y57{bottom:467.219813px;}
.y15{bottom:479.279808px;}
.y35{bottom:480.179808px;}
.y34{bottom:510.059796px;}
.y14{bottom:510.419796px;}
.y55{bottom:512.939795px;}
.y33{bottom:513.659795px;}
.y70{bottom:517.619793px;}
.y13{bottom:541.379783px;}
.y53{bottom:561.899775px;}
.y52{bottom:565.499774px;}
.y32{bottom:566.039774px;}
.y6f{bottom:569.279772px;}
.y54{bottom:572.159771px;}
.y12{bottom:593.039763px;}
.y6e{bottom:600.239760px;}
.y31{bottom:617.699753px;}
.y51{bottom:617.879753px;}
.y11{bottom:641.279743px;}
.y6d{bottom:652.439739px;}
.y50{bottom:669.539732px;}
.y30{bottom:670.079732px;}
.y10{bottom:687.359725px;}
.y6c{bottom:700.499720px;}
.y2f{bottom:701.219720px;}
.y4f{bottom:720.479712px;}
.y4e{bottom:724.079710px;}
.yf{bottom:728.759708px;}
.y2e{bottom:752.879699px;}
.y6b{bottom:756.839697px;}
.y4c{bottom:772.859691px;}
.y4a{bottom:778.259689px;}
.ye{bottom:780.959688px;}
.y49{bottom:781.859687px;}
.y6a{bottom:787.799685px;}
.y4d{bottom:788.519685px;}
.y4b{bottom:792.479683px;}
.y2d{bottom:800.939680px;}
.yd{bottom:812.099675px;}
.y69{bottom:818.939672px;}
.y2c{bottom:836.219666px;}
.y48{bottom:839.099664px;}
.yc{bottom:843.059663px;}
.y68{bottom:849.899660px;}
.y2b{bottom:867.359653px;}
.y47{bottom:870.059652px;}
.yb{bottom:874.019650px;}
.y67{bottom:881.039648px;}
.y2a{bottom:898.319641px;}
.ya{bottom:905.159638px;}
.y66{bottom:911.999635px;}
.y46{bottom:921.719631px;}
.y9{bottom:936.119626px;}
.y65{bottom:943.139623px;}
.y29{bottom:949.259620px;}
.y28{bottom:952.859619px;}
.y45{bottom:974.099610px;}
.y8{bottom:987.959605px;}
.y27{bottom:1005.239598px;}
.y44{bottom:1026.119590px;}
.y64{bottom:1036.199586px;}
.y7{bottom:1050.419580px;}
.y26{bottom:1057.079577px;}
.y43{bottom:1057.259577px;}
.y63{bottom:1087.859565px;}
.y42{bottom:1088.219565px;}
.y5{bottom:1092.719563px;}
.y6{bottom:1098.659561px;}
.y25{bottom:1104.959558px;}
.y4{bottom:1134.659546px;}
.y41{bottom:1140.059544px;}
.y24{bottom:1140.419544px;}
.y2{bottom:1174.259530px;}
.y1{bottom:1194.419522px;}
.h8{height:26.938817px;}
.h3{height:28.934285px;}
.h7{height:36.068540px;}
.h9{height:41.405960px;}
.h1{height:45.895763px;}
.h5{height:49.535980px;}
.h4{height:49.967980px;}
.h6{height:50.800761px;}
.ha{height:55.353845px;}
.h2{height:66.457413px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:106.200042px;}
.x13{left:113.939954px;}
.x3{left:123.299951px;}
.x19{left:133.199947px;}
.x6{left:159.299939px;}
.x26{left:165.419934px;}
.x27{left:212.579915px;}
.x4{left:229.499908px;}
.x5{left:237.959905px;}
.x2e{left:257.219897px;}
.x28{left:260.999896px;}
.x29{left:267.839893px;}
.x2f{left:272.879891px;}
.x1a{left:302.399879px;}
.x2a{left:318.239873px;}
.xb{left:326.519869px;}
.x14{left:327.599869px;}
.x1b{left:329.399868px;}
.x8{left:335.879866px;}
.xc{left:338.219865px;}
.x36{left:340.019864px;}
.x1c{left:342.539863px;}
.x30{left:343.979862px;}
.x37{left:346.859861px;}
.x31{left:350.819860px;}
.x1d{left:352.079859px;}
.xd{left:370.259852px;}
.x15{left:377.099849px;}
.x16{left:385.199846px;}
.xe{left:388.799844px;}
.xf{left:394.199838px;}
.x1e{left:400.499840px;}
.x17{left:404.459838px;}
.x10{left:412.199835px;}
.x2b{left:416.519833px;}
.x20{left:419.039837px;}
.x38{left:422.099831px;}
.x1f{left:424.439830px;}
.x18{left:431.459827px;}
.x1{left:442.259823px;}
.x21{left:460.619816px;}
.x22{left:471.959811px;}
.x34{left:498.959800px;}
.x23{left:504.539798px;}
.x32{left:506.879797px;}
.x9{left:511.199796px;}
.x35{left:514.619794px;}
.x11{left:520.379792px;}
.x33{left:522.539791px;}
.xa{left:526.859789px;}
.x12{left:536.039786px;}
.x24{left:543.239783px;}
.x25{left:590.039764px;}
.x2c{left:594.179762px;}
.x2d{left:609.839756px;}
.x39{left:642.959743px;}
.x3a{left:658.619737px;}
.x7{left:871.559651px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.008312pt;}
.ls1{letter-spacing:0.335868pt;}
.ls3{letter-spacing:30.236308pt;}
.wsa{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.079994pt;}
.ws7{word-spacing:-13.279995pt;}
.ws2{word-spacing:-9.996796pt;}
.ws0{word-spacing:-8.389117pt;}
.ws3{word-spacing:-7.810557pt;}
.ws9{word-spacing:-0.227008pt;}
.wsc{word-spacing:-0.208384pt;}
.ws1{word-spacing:-0.159744pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:0.413376pt;}
.ws8{word-spacing:0.480640pt;}
.ws5{word-spacing:3.426047pt;}
._b{margin-left:-9.666126pt;}
._6{margin-left:-2.993013pt;}
._7{margin-left:-2.057540pt;}
._1{margin-left:-1.026979pt;}
._0{width:0.954192pt;}
._2{width:2.036461pt;}
._3{width:3.009186pt;}
._12{width:4.161234pt;}
._10{width:5.050593pt;}
._a{width:6.073123pt;}
._9{width:7.081191pt;}
._e{width:12.327863pt;}
._f{width:13.423822pt;}
._11{width:15.120749pt;}
._8{width:16.749744pt;}
._4{width:18.155240pt;}
._5{width:19.504222pt;}
._13{width:20.664316pt;}
._c{width:30.887191pt;}
._d{width:32.325389pt;}
.fs5{font-size:34.559986pt;}
.fs2{font-size:37.119985pt;}
.fs4{font-size:45.439982pt;}
.fs6{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs1{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.466646pt;}
.y23{bottom:98.186894pt;}
.y22{bottom:102.826892pt;}
.y62{bottom:112.106888pt;}
.y21{bottom:114.986887pt;}
.y40{bottom:131.146614pt;}
.y61{bottom:143.626609pt;}
.y60{bottom:171.626598pt;}
.y20{bottom:175.946596pt;}
.y3f{bottom:177.546596pt;}
.y1f{bottom:203.626585pt;}
.y5e{bottom:216.906580pt;}
.y3e{bottom:220.106579pt;}
.y5f{bottom:226.026576pt;}
.y77{bottom:229.546575pt;}
.y1d{bottom:246.506568pt;}
.y1b{bottom:251.306566pt;}
.y1a{bottom:254.506565pt;}
.y1e{bottom:260.426562pt;}
.y1c{bottom:263.946561pt;}
.y3c{bottom:267.146560pt;}
.y5c{bottom:267.306560pt;}
.y3a{bottom:271.946558pt;}
.y5d{bottom:273.226557pt;}
.y39{bottom:275.146557pt;}
.y76{bottom:275.786556pt;}
.y3d{bottom:281.066554pt;}
.y3b{bottom:284.586553pt;}
.y75{bottom:303.466545pt;}
.y19{bottom:305.226545pt;}
.y5b{bottom:313.866541pt;}
.y38{bottom:325.386537pt;}
.y74{bottom:330.986534pt;}
.y18{bottom:332.906534pt;}
.y37{bottom:352.906526pt;}
.y73{bottom:358.666523pt;}
.y59{bottom:358.986523pt;}
.y58{bottom:362.186522pt;}
.y5a{bottom:368.106519pt;}
.y16{bottom:379.466515pt;}
.y17{bottom:385.386513pt;}
.y72{bottom:386.186512pt;}
.y36{bottom:399.146507pt;}
.y56{bottom:409.386503pt;}
.y71{bottom:413.866501pt;}
.y57{bottom:415.306501pt;}
.y15{bottom:426.026496pt;}
.y35{bottom:426.826496pt;}
.y34{bottom:453.386485pt;}
.y14{bottom:453.706485pt;}
.y55{bottom:455.946484pt;}
.y33{bottom:456.586484pt;}
.y70{bottom:460.106483pt;}
.y13{bottom:481.226474pt;}
.y53{bottom:499.466467pt;}
.y52{bottom:502.666466pt;}
.y32{bottom:503.146465pt;}
.y6f{bottom:506.026464pt;}
.y54{bottom:508.586463pt;}
.y12{bottom:527.146456pt;}
.y6e{bottom:533.546453pt;}
.y31{bottom:549.066447pt;}
.y51{bottom:549.226447pt;}
.y11{bottom:570.026439pt;}
.y6d{bottom:579.946435pt;}
.y50{bottom:595.146429pt;}
.y30{bottom:595.626428pt;}
.y10{bottom:610.986422pt;}
.y6c{bottom:622.666418pt;}
.y2f{bottom:623.306417pt;}
.y4f{bottom:640.426410pt;}
.y4e{bottom:643.626409pt;}
.yf{bottom:647.786408pt;}
.y2e{bottom:669.226399pt;}
.y6b{bottom:672.746398pt;}
.y4c{bottom:686.986392pt;}
.y4a{bottom:691.786390pt;}
.ye{bottom:694.186389pt;}
.y49{bottom:694.986389pt;}
.y6a{bottom:700.266387pt;}
.y4d{bottom:700.906386pt;}
.y4b{bottom:704.426385pt;}
.y2d{bottom:711.946382pt;}
.yd{bottom:721.866378pt;}
.y69{bottom:727.946375pt;}
.y2c{bottom:743.306369pt;}
.y48{bottom:745.866368pt;}
.yc{bottom:749.386367pt;}
.y68{bottom:755.466364pt;}
.y2b{bottom:770.986358pt;}
.y47{bottom:773.386357pt;}
.yb{bottom:776.906356pt;}
.y67{bottom:783.146353pt;}
.y2a{bottom:798.506347pt;}
.ya{bottom:804.586345pt;}
.y66{bottom:810.666342pt;}
.y46{bottom:819.306339pt;}
.y9{bottom:832.106334pt;}
.y65{bottom:838.346331pt;}
.y29{bottom:843.786329pt;}
.y28{bottom:846.986328pt;}
.y45{bottom:865.866320pt;}
.y8{bottom:878.186315pt;}
.y27{bottom:893.546309pt;}
.y44{bottom:912.106302pt;}
.y64{bottom:921.066298pt;}
.y7{bottom:933.706293pt;}
.y26{bottom:939.626291pt;}
.y43{bottom:939.786291pt;}
.y63{bottom:966.986280pt;}
.y42{bottom:967.306280pt;}
.y5{bottom:971.306278pt;}
.y6{bottom:976.586276pt;}
.y25{bottom:982.186274pt;}
.y4{bottom:1008.586263pt;}
.y41{bottom:1013.386261pt;}
.y24{bottom:1013.706261pt;}
.y2{bottom:1043.786249pt;}
.y1{bottom:1061.706242pt;}
.h8{height:23.945615pt;}
.h3{height:25.719365pt;}
.h7{height:32.060925pt;}
.h9{height:36.805298pt;}
.h1{height:40.796234pt;}
.h5{height:44.031982pt;}
.h4{height:44.415982pt;}
.h6{height:45.156232pt;}
.ha{height:49.203418pt;}
.h2{height:59.073256pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:94.400037pt;}
.x13{left:101.279959pt;}
.x3{left:109.599956pt;}
.x19{left:118.399953pt;}
.x6{left:141.599946pt;}
.x26{left:147.039941pt;}
.x27{left:188.959924pt;}
.x4{left:203.999918pt;}
.x5{left:211.519915pt;}
.x2e{left:228.639909pt;}
.x28{left:231.999907pt;}
.x29{left:238.079905pt;}
.x2f{left:242.559903pt;}
.x1a{left:268.799892pt;}
.x2a{left:282.879887pt;}
.xb{left:290.239884pt;}
.x14{left:291.199884pt;}
.x1b{left:292.799883pt;}
.x8{left:298.559881pt;}
.xc{left:300.639880pt;}
.x36{left:302.239879pt;}
.x1c{left:304.479878pt;}
.x30{left:305.759878pt;}
.x37{left:308.319877pt;}
.x31{left:311.839875pt;}
.x1d{left:312.959875pt;}
.xd{left:329.119868pt;}
.x15{left:335.199866pt;}
.x16{left:342.399863pt;}
.xe{left:345.599862pt;}
.xf{left:350.399856pt;}
.x1e{left:355.999858pt;}
.x17{left:359.519856pt;}
.x10{left:366.399853pt;}
.x2b{left:370.239852pt;}
.x20{left:372.479855pt;}
.x38{left:375.199850pt;}
.x1f{left:377.279849pt;}
.x18{left:383.519847pt;}
.x1{left:393.119843pt;}
.x21{left:409.439836pt;}
.x22{left:419.519832pt;}
.x34{left:443.519823pt;}
.x23{left:448.479821pt;}
.x32{left:450.559820pt;}
.x9{left:454.399818pt;}
.x35{left:457.439817pt;}
.x11{left:462.559815pt;}
.x33{left:464.479814pt;}
.xa{left:468.319813pt;}
.x12{left:476.479809pt;}
.x24{left:482.879807pt;}
.x25{left:524.479790pt;}
.x2c{left:528.159789pt;}
.x2d{left:542.079783pt;}
.x39{left:571.519771pt;}
.x3a{left:585.439766pt;}
.x7{left:774.719690pt;}
}




    .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; }
  