
    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_59db33fd9d17548da133d5dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_14d757358b02c274a001f1f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_9f26385cab8c8c1902e42853.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_41f63178dfdee772745d7871.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_75ce2cf11ff4d3a7f808fcfd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.281250;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;}
.m1{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.548079px;}
.ls2{letter-spacing:6.154978px;}
.ls1{letter-spacing:9.040496px;}
.ls4{letter-spacing:9.761876px;}
.ls5{letter-spacing:186.509325px;}
.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;}
}
.ws0{word-spacing:-16.919993px;}
.ws2{word-spacing:-14.043594px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-3.695805px;}
._1{margin-left:-1.752784px;}
._0{width:1.039232px;}
._3{width:2.098140px;}
._8{width:3.834049px;}
._7{width:5.127882px;}
._5{width:6.753906px;}
._6{width:7.957898px;}
._b{width:9.661436px;}
._c{width:10.692601px;}
._a{width:11.732110px;}
._9{width:13.110887px;}
._d{width:14.114022px;}
._10{width:15.847576px;}
._14{width:17.949212px;}
._13{width:19.068722px;}
._f{width:20.809385px;}
._e{width:21.910780px;}
._16{width:23.400861px;}
._17{width:24.428324px;}
._15{width:25.531780px;}
._11{width:26.808603px;}
._12{width:27.875609px;}
._1b{width:29.197420px;}
._1a{width:31.072873px;}
._1c{width:33.244605px;}
._18{width:128.916812px;}
._19{width:162.821772px;}
._2{width:186.509762px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:28.423429px;}
.fs0{font-size:45.343422px;}
.fs5{font-size:56.174378px;}
.fs1{font-size:67.679973px;}
.fs4{font-size:79.183168px;}
.fs3{font-size:84.599966px;}
.y0{bottom:0.000000px;}
.ya{bottom:105.839958px;}
.y9{bottom:122.939951px;}
.y8{bottom:137.879945px;}
.y69{bottom:165.239934px;}
.y32{bottom:170.639932px;}
.y58{bottom:173.879930px;}
.ya5{bottom:174.779930px;}
.y68{bottom:184.859926px;}
.y31{bottom:190.259924px;}
.y64{bottom:190.799924px;}
.y56{bottom:191.339923px;}
.ya4{bottom:194.399922px;}
.y57{bottom:199.259920px;}
.y67{bottom:204.479918px;}
.y6f{bottom:207.719917px;}
.y62{bottom:208.259917px;}
.y30{bottom:209.879916px;}
.y55{bottom:210.419916px;}
.ya3{bottom:214.019914px;}
.y63{bottom:216.179914px;}
.y66{bottom:224.099910px;}
.y6d{bottom:225.179910px;}
.y61{bottom:227.339909px;}
.y2f{bottom:229.499908px;}
.y54{bottom:229.859908px;}
.y6e{bottom:233.099907px;}
.ya2{bottom:233.639907px;}
.y65{bottom:243.719903px;}
.y6c{bottom:244.259902px;}
.y2e{bottom:249.119900px;}
.y53{bottom:249.479900px;}
.ya1{bottom:253.259899px;}
.y60{bottom:263.339895px;}
.y7a{bottom:268.379893px;}
.y2d{bottom:268.739893px;}
.y52{bottom:269.099892px;}
.ya0{bottom:272.879891px;}
.y5f{bottom:282.959887px;}
.y79{bottom:285.119886px;}
.y2c{bottom:288.359885px;}
.y51{bottom:288.719885px;}
.y9f{bottom:292.499883px;}
.y78{bottom:301.859879px;}
.y5e{bottom:302.579879px;}
.y2b{bottom:307.979877px;}
.y50{bottom:308.339877px;}
.y9e{bottom:312.299875px;}
.y77{bottom:318.599873px;}
.y5d{bottom:322.199871px;}
.y2a{bottom:327.599869px;}
.y4e{bottom:327.959869px;}
.y9d{bottom:331.919867px;}
.y4f{bottom:335.699866px;}
.y76{bottom:336.059866px;}
.y5c{bottom:341.819863px;}
.y4d{bottom:346.859861px;}
.y29{bottom:347.219861px;}
.y9c{bottom:351.539859px;}
.y75{bottom:354.959858px;}
.y5b{bottom:361.439855px;}
.y4c{bottom:363.599855px;}
.y28{bottom:366.839853px;}
.y9b{bottom:371.159852px;}
.y74{bottom:371.699851px;}
.y4b{bottom:381.059848px;}
.y27{bottom:386.459845px;}
.y73{bottom:388.439845px;}
.y9a{bottom:390.779844px;}
.y4a{bottom:400.679840px;}
.y72{bottom:405.359838px;}
.y26{bottom:406.079838px;}
.y5a{bottom:408.419837px;}
.y99{bottom:410.399836px;}
.y49{bottom:420.299832px;}
.y71{bottom:422.279831px;}
.y25{bottom:425.699830px;}
.y98{bottom:430.019828px;}
.y48{bottom:439.919824px;}
.y24{bottom:445.319822px;}
.y6b{bottom:447.659821px;}
.y97{bottom:449.639820px;}
.y6a{bottom:459.179816px;}
.y47{bottom:459.539816px;}
.y23{bottom:464.939814px;}
.y96{bottom:469.259812px;}
.y46{bottom:479.159808px;}
.y22{bottom:484.559806px;}
.y95{bottom:488.879804px;}
.y59{bottom:498.419801px;}
.y45{bottom:498.779800px;}
.y21{bottom:504.179798px;}
.y94{bottom:508.499797px;}
.y44{bottom:518.399793px;}
.y20{bottom:523.799790px;}
.y93{bottom:528.119789px;}
.y43{bottom:538.019785px;}
.y1f{bottom:543.599783px;}
.y92{bottom:547.739781px;}
.y42{bottom:557.639777px;}
.y1e{bottom:563.219775px;}
.y91{bottom:567.359773px;}
.y41{bottom:577.439769px;}
.y1d{bottom:582.839767px;}
.y90{bottom:586.259765px;}
.y40{bottom:597.059761px;}
.y1c{bottom:602.459759px;}
.y8f{bottom:602.999759px;}
.y3f{bottom:616.679753px;}
.y8e{bottom:619.739752px;}
.y1b{bottom:622.079751px;}
.y3e{bottom:636.299745px;}
.y8d{bottom:636.659745px;}
.y1a{bottom:641.699743px;}
.y8c{bottom:653.399739px;}
.y3d{bottom:655.919738px;}
.y19{bottom:660.959736px;}
.y8b{bottom:670.679732px;}
.y3c{bottom:675.539730px;}
.y18{bottom:680.939728px;}
.y70{bottom:683.279727px;}
.y8a{bottom:689.759724px;}
.y3b{bottom:695.159722px;}
.y17{bottom:700.559720px;}
.y89{bottom:706.499717px;}
.y3a{bottom:714.779714px;}
.y16{bottom:720.179712px;}
.y88{bottom:723.239711px;}
.y39{bottom:734.399706px;}
.y15{bottom:739.799704px;}
.y87{bottom:740.699704px;}
.y38{bottom:754.019698px;}
.y86{bottom:759.599696px;}
.y14{bottom:760.139696px;}
.y37{bottom:773.639691px;}
.y85{bottom:776.339689px;}
.y13{bottom:782.639687px;}
.y84{bottom:793.079683px;}
.y36{bottom:793.259683px;}
.y12{bottom:804.419678px;}
.y83{bottom:809.819676px;}
.y35{bottom:812.879675px;}
.y11{bottom:824.579670px;}
.y82{bottom:826.559669px;}
.y34{bottom:832.499667px;}
.y81{bottom:844.019662px;}
.y10{bottom:848.339661px;}
.ya6{bottom:851.759659px;}
.y33{bottom:852.119659px;}
.y80{bottom:863.639655px;}
.yf{bottom:871.739651px;}
.y7f{bottom:883.259647px;}
.ye{bottom:891.359643px;}
.y7e{bottom:902.159639px;}
.yd{bottom:910.979636px;}
.y7d{bottom:918.899632px;}
.yc{bottom:930.599628px;}
.y7c{bottom:935.639626px;}
.yb{bottom:950.219620px;}
.y7b{bottom:952.379619px;}
.y7{bottom:969.839612px;}
.y6{bottom:989.459604px;}
.y5{bottom:1009.079596px;}
.y4{bottom:1028.699589px;}
.y3{bottom:1047.059581px;}
.y2{bottom:1061.099576px;}
.y1{bottom:1075.139570px;}
.h4{height:27.882162px;}
.h1{height:44.479948px;}
.h2{height:44.502089px;}
.hb{height:55.104651px;}
.ha{height:55.132080px;}
.h5{height:66.391145px;}
.h3{height:66.424192px;}
.h9{height:68.208723px;}
.h8{height:77.675286px;}
.h7{height:77.713949px;}
.h6{height:85.260903px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:116.460364px;}
.x4{left:158.760636px;}
.x10{left:198.719921px;}
.x19{left:203.399919px;}
.x11{left:204.479918px;}
.x1a{left:209.159916px;}
.x12{left:214.379914px;}
.x15{left:215.999914px;}
.xc{left:258.839653px;}
.xb{left:260.279896px;}
.x6{left:308.879861px;}
.x5{left:347.759861px;}
.x8{left:370.439852px;}
.x9{left:380.159850px;}
.x17{left:445.319822px;}
.x18{left:451.079820px;}
.x1e{left:473.039811px;}
.x1d{left:522.719791px;}
.xa{left:536.939785px;}
.xd{left:550.799780px;}
.xe{left:554.939778px;}
.xf{left:560.699776px;}
.x1c{left:604.259758px;}
.x7{left:608.219757px;}
.x2{left:629.639783px;}
.x16{left:648.899740px;}
.x1f{left:716.039714px;}
.x3{left:724.499710px;}
.x1{left:732.959707px;}
.x13{left:752.579699px;}
.x14{left:758.339697px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:2.264959pt;}
.ls2{letter-spacing:5.471091pt;}
.ls1{letter-spacing:8.035997pt;}
.ls4{letter-spacing:8.677223pt;}
.ls5{letter-spacing:165.786067pt;}
.ws0{word-spacing:-15.039994pt;}
.ws2{word-spacing:-12.483195pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-3.285160pt;}
._1{margin-left:-1.558031pt;}
._0{width:0.923762pt;}
._3{width:1.865013pt;}
._8{width:3.408043pt;}
._7{width:4.558117pt;}
._5{width:6.003472pt;}
._6{width:7.073687pt;}
._b{width:8.587943pt;}
._c{width:9.504534pt;}
._a{width:10.428542pt;}
._9{width:11.654122pt;}
._d{width:12.545798pt;}
._10{width:14.086734pt;}
._14{width:15.954855pt;}
._13{width:16.949975pt;}
._f{width:18.497231pt;}
._e{width:19.476249pt;}
._16{width:20.800765pt;}
._17{width:21.714065pt;}
._15{width:22.694916pt;}
._11{width:23.829870pt;}
._12{width:24.778319pt;}
._1b{width:25.953262pt;}
._1a{width:27.620332pt;}
._1c{width:29.550760pt;}
._18{width:114.592722pt;}
._19{width:144.730464pt;}
._2{width:165.786455pt;}
.fs2{font-size:25.265270pt;}
.fs0{font-size:40.305264pt;}
.fs5{font-size:49.932780pt;}
.fs1{font-size:60.159976pt;}
.fs4{font-size:70.385039pt;}
.fs3{font-size:75.199970pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:94.079962pt;}
.y9{bottom:109.279956pt;}
.y8{bottom:122.559951pt;}
.y69{bottom:146.879941pt;}
.y32{bottom:151.679939pt;}
.y58{bottom:154.559938pt;}
.ya5{bottom:155.359938pt;}
.y68{bottom:164.319934pt;}
.y31{bottom:169.119932pt;}
.y64{bottom:169.599932pt;}
.y56{bottom:170.079932pt;}
.ya4{bottom:172.799931pt;}
.y57{bottom:177.119929pt;}
.y67{bottom:181.759927pt;}
.y6f{bottom:184.639926pt;}
.y62{bottom:185.119926pt;}
.y30{bottom:186.559925pt;}
.y55{bottom:187.039925pt;}
.ya3{bottom:190.239924pt;}
.y63{bottom:192.159923pt;}
.y66{bottom:199.199920pt;}
.y6d{bottom:200.159920pt;}
.y61{bottom:202.079919pt;}
.y2f{bottom:203.999918pt;}
.y54{bottom:204.319918pt;}
.y6e{bottom:207.199917pt;}
.ya2{bottom:207.679917pt;}
.y65{bottom:216.639913pt;}
.y6c{bottom:217.119913pt;}
.y2e{bottom:221.439911pt;}
.y53{bottom:221.759911pt;}
.ya1{bottom:225.119910pt;}
.y60{bottom:234.079906pt;}
.y7a{bottom:238.559905pt;}
.y2d{bottom:238.879904pt;}
.y52{bottom:239.199904pt;}
.ya0{bottom:242.559903pt;}
.y5f{bottom:251.519899pt;}
.y79{bottom:253.439899pt;}
.y2c{bottom:256.319897pt;}
.y51{bottom:256.639897pt;}
.y9f{bottom:259.999896pt;}
.y78{bottom:268.319893pt;}
.y5e{bottom:268.959892pt;}
.y2b{bottom:273.759890pt;}
.y50{bottom:274.079890pt;}
.y9e{bottom:277.599889pt;}
.y77{bottom:283.199887pt;}
.y5d{bottom:286.399885pt;}
.y2a{bottom:291.199884pt;}
.y4e{bottom:291.519883pt;}
.y9d{bottom:295.039882pt;}
.y4f{bottom:298.399881pt;}
.y76{bottom:298.719881pt;}
.y5c{bottom:303.839878pt;}
.y4d{bottom:308.319877pt;}
.y29{bottom:308.639877pt;}
.y9c{bottom:312.479875pt;}
.y75{bottom:315.519874pt;}
.y5b{bottom:321.279871pt;}
.y4c{bottom:323.199871pt;}
.y28{bottom:326.079870pt;}
.y9b{bottom:329.919868pt;}
.y74{bottom:330.399868pt;}
.y4b{bottom:338.719865pt;}
.y27{bottom:343.519863pt;}
.y73{bottom:345.279862pt;}
.y9a{bottom:347.359861pt;}
.y4a{bottom:356.159858pt;}
.y72{bottom:360.319856pt;}
.y26{bottom:360.959856pt;}
.y5a{bottom:363.039855pt;}
.y99{bottom:364.799854pt;}
.y49{bottom:373.599851pt;}
.y71{bottom:375.359850pt;}
.y25{bottom:378.399849pt;}
.y98{bottom:382.239847pt;}
.y48{bottom:391.039844pt;}
.y24{bottom:395.839842pt;}
.y6b{bottom:397.919841pt;}
.y97{bottom:399.679840pt;}
.y6a{bottom:408.159837pt;}
.y47{bottom:408.479837pt;}
.y23{bottom:413.279835pt;}
.y96{bottom:417.119833pt;}
.y46{bottom:425.919830pt;}
.y22{bottom:430.719828pt;}
.y95{bottom:434.559826pt;}
.y59{bottom:443.039823pt;}
.y45{bottom:443.359823pt;}
.y21{bottom:448.159821pt;}
.y94{bottom:451.999819pt;}
.y44{bottom:460.799816pt;}
.y20{bottom:465.599814pt;}
.y93{bottom:469.439812pt;}
.y43{bottom:478.239809pt;}
.y1f{bottom:483.199807pt;}
.y92{bottom:486.879805pt;}
.y42{bottom:495.679802pt;}
.y1e{bottom:500.639800pt;}
.y91{bottom:504.319798pt;}
.y41{bottom:513.279795pt;}
.y1d{bottom:518.079793pt;}
.y90{bottom:521.119792pt;}
.y40{bottom:530.719788pt;}
.y1c{bottom:535.519786pt;}
.y8f{bottom:535.999786pt;}
.y3f{bottom:548.159781pt;}
.y8e{bottom:550.879780pt;}
.y1b{bottom:552.959779pt;}
.y3e{bottom:565.599774pt;}
.y8d{bottom:565.919774pt;}
.y1a{bottom:570.399772pt;}
.y8c{bottom:580.799768pt;}
.y3d{bottom:583.039767pt;}
.y19{bottom:587.519765pt;}
.y8b{bottom:596.159762pt;}
.y3c{bottom:600.479760pt;}
.y18{bottom:605.279758pt;}
.y70{bottom:607.359757pt;}
.y8a{bottom:613.119755pt;}
.y3b{bottom:617.919753pt;}
.y17{bottom:622.719751pt;}
.y89{bottom:627.999749pt;}
.y3a{bottom:635.359746pt;}
.y16{bottom:640.159744pt;}
.y88{bottom:642.879743pt;}
.y39{bottom:652.799739pt;}
.y15{bottom:657.599737pt;}
.y87{bottom:658.399737pt;}
.y38{bottom:670.239732pt;}
.y86{bottom:675.199730pt;}
.y14{bottom:675.679730pt;}
.y37{bottom:687.679725pt;}
.y85{bottom:690.079724pt;}
.y13{bottom:695.679722pt;}
.y84{bottom:704.959718pt;}
.y36{bottom:705.119718pt;}
.y12{bottom:715.039714pt;}
.y83{bottom:719.839712pt;}
.y35{bottom:722.559711pt;}
.y11{bottom:732.959707pt;}
.y82{bottom:734.719706pt;}
.y34{bottom:739.999704pt;}
.y81{bottom:750.239700pt;}
.y10{bottom:754.079698pt;}
.ya6{bottom:757.119697pt;}
.y33{bottom:757.439697pt;}
.y80{bottom:767.679693pt;}
.yf{bottom:774.879690pt;}
.y7f{bottom:785.119686pt;}
.ye{bottom:792.319683pt;}
.y7e{bottom:801.919679pt;}
.yd{bottom:809.759676pt;}
.y7d{bottom:816.799673pt;}
.yc{bottom:827.199669pt;}
.y7c{bottom:831.679667pt;}
.yb{bottom:844.639662pt;}
.y7b{bottom:846.559661pt;}
.y7{bottom:862.079655pt;}
.y6{bottom:879.519648pt;}
.y5{bottom:896.959641pt;}
.y4{bottom:914.399634pt;}
.y3{bottom:930.719628pt;}
.y2{bottom:943.199623pt;}
.y1{bottom:955.679618pt;}
.h4{height:24.784144pt;}
.h1{height:39.537732pt;}
.h2{height:39.557412pt;}
.hb{height:48.981912pt;}
.ha{height:49.006293pt;}
.h5{height:59.014351pt;}
.h3{height:59.043726pt;}
.h9{height:60.629976pt;}
.h8{height:69.044698pt;}
.h7{height:69.079066pt;}
.h6{height:75.787470pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:103.520323pt;}
.x4{left:141.120565pt;}
.x10{left:176.639929pt;}
.x19{left:180.799928pt;}
.x11{left:181.759927pt;}
.x1a{left:185.919926pt;}
.x12{left:190.559924pt;}
.x15{left:191.999923pt;}
.xc{left:230.079691pt;}
.xb{left:231.359907pt;}
.x6{left:274.559876pt;}
.x5{left:309.119876pt;}
.x8{left:329.279868pt;}
.x9{left:337.919867pt;}
.x17{left:395.839842pt;}
.x18{left:400.959840pt;}
.x1e{left:420.479832pt;}
.x1d{left:464.639814pt;}
.xa{left:477.279809pt;}
.xd{left:489.599804pt;}
.xe{left:493.279803pt;}
.xf{left:498.399801pt;}
.x1c{left:537.119785pt;}
.x7{left:540.639784pt;}
.x2{left:559.679807pt;}
.x16{left:576.799769pt;}
.x1f{left:636.479745pt;}
.x3{left:643.999742pt;}
.x1{left:651.519739pt;}
.x13{left:668.959732pt;}
.x14{left:674.079730pt;}
}




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