
    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_c26e4b1f1f4eee153bbeb779.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_29eecbe2aacb7fd3a6282f99.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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v11{vertical-align:-11.519520px;}
.v1{vertical-align:-10.080480px;}
.v7{vertical-align:-9.000000px;}
.v2{vertical-align:-7.919520px;}
.ve{vertical-align:-6.839040px;}
.v9{vertical-align:-5.400000px;}
.v12{vertical-align:-3.960936px;}
.v4{vertical-align:-2.880468px;}
.v8{vertical-align:-1.441404px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.080468px;}
.v5{vertical-align:2.160936px;}
.v10{vertical-align:3.600000px;}
.vb{vertical-align:4.680468px;}
.vd{vertical-align:6.119520px;}
.vc{vertical-align:7.558620px;}
.v6{vertical-align:8.639040px;}
.v3{vertical-align:10.080480px;}
.vf{vertical-align:11.521860px;}
.ls0{letter-spacing:0.000000px;}
.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:0.000000px;}
._17{margin-left:-13.319532px;}
._19{margin-left:-12.305872px;}
._12{margin-left:-9.541827px;}
._10{margin-left:-8.359083px;}
._a{margin-left:-6.194400px;}
._b{margin-left:-4.876937px;}
._e{margin-left:-3.754993px;}
._8{margin-left:-2.754000px;}
._c{margin-left:-1.047240px;}
._1{width:1.421400px;}
._5{width:2.557200px;}
._3{width:3.870000px;}
._4{width:4.912800px;}
._9{width:5.942400px;}
._7{width:7.001400px;}
._6{width:8.425200px;}
._0{width:10.350450px;}
._d{width:12.180750px;}
._f{width:14.739600px;}
._13{width:15.915000px;}
._2{width:17.713200px;}
._11{width:19.690950px;}
._15{width:22.202700px;}
._14{width:25.884600px;}
._18{width:44.927832px;}
._1a{width:1681.020000px;}
._16{width:1740.903600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs3{font-size:34.380000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:12.884835px;}
.y47{bottom:21.465300px;}
.y89{bottom:103.275212px;}
.y43{bottom:104.895047px;}
.y44{bottom:106.154813px;}
.y45{bottom:106.515163px;}
.y88{bottom:118.215392px;}
.y42{bottom:119.834692px;}
.y41{bottom:134.954776px;}
.y87{bottom:138.915326px;}
.y40{bottom:147.915127px;}
.y86{bottom:161.054981px;}
.y85{bottom:162.854981px;}
.y3e{bottom:164.834627px;}
.y3f{bottom:165.734635px;}
.y83{bottom:177.615320px;}
.y84{bottom:177.975086px;}
.y3d{bottom:179.595002px;}
.y82{bottom:190.575091px;}
.y3b{bottom:194.354809px;}
.y3c{bottom:195.254807px;}
.y81{bottom:207.495217px;}
.y3a{bottom:209.474938px;}
.y80{bottom:222.075110px;}
.y39{bottom:224.595046px;}
.y7f{bottom:237.015355px;}
.y38{bottom:237.554845px;}
.y7e{bottom:251.954989px;}
.y37{bottom:254.654848px;}
.y7d{bottom:267.075053px;}
.y36{bottom:275.354818px;}
.y7c{bottom:282.015284px;}
.y7b{bottom:296.954929px;}
.y33{bottom:303.615240px;}
.y35{bottom:304.334773px;}
.y34{bottom:306.045118px;}
.y7a{bottom:310.545160px;}
.y32{bottom:319.275057px;}
.y2f{bottom:320.175058px;}
.y30{bottom:320.715292px;}
.y31{bottom:321.075057px;}
.y78{bottom:324.495164px;}
.y79{bottom:325.215295px;}
.y2e{bottom:333.315320px;}
.y77{bottom:341.775053px;}
.y2d{bottom:348.615371px;}
.y76{bottom:354.554928px;}
.y2c{bottom:365.355044px;}
.y75{bottom:369.854940px;}
.y2a{bottom:380.295227px;}
.y2b{bottom:381.104999px;}
.y74{bottom:386.954909px;}
.y28{bottom:393.615327px;}
.y29{bottom:396.495213px;}
.y73{bottom:402.075038px;}
.y27{bottom:408.554952px;}
.y72{bottom:417.195116px;}
.y26{bottom:425.475039px;}
.y71{bottom:438.254915px;}
.y25{bottom:440.595151px;}
.y24{bottom:455.534797px;}
.y70{bottom:461.834850px;}
.y23{bottom:470.654914px;}
.y6c{bottom:474.975039px;}
.y6e{bottom:475.154919px;}
.y6b{bottom:476.954922px;}
.y6f{bottom:477.045150px;}
.y6d{bottom:477.134799px;}
.y22{bottom:483.975064px;}
.y6a{bottom:491.715276px;}
.y21{bottom:499.275099px;}
.y69{bottom:504.675077px;}
.y1f{bottom:514.215351px;}
.y20{bottom:516.734871px;}
.y68{bottom:519.615278px;}
.y1e{bottom:531.134863px;}
.y67{bottom:536.895185px;}
.y1c{bottom:546.254968px;}
.y1d{bottom:546.975103px;}
.y66{bottom:551.834861px;}
.y1b{bottom:561.195157px;}
.y64{bottom:566.954999px;}
.y65{bottom:567.134891px;}
.y1a{bottom:574.334734px;}
.y63{bottom:579.915356px;}
.y19{bottom:589.634734px;}
.y18{bottom:589.995094px;}
.y17{bottom:591.434719px;}
.y62{bottom:595.034909px;}
.y61{bottom:609.975179px;}
.y16{bottom:612.674986px;}
.y60{bottom:625.095284px;}
.y5f{bottom:640.755056px;}
.y15{bottom:640.845169px;}
.y14{bottom:641.834818px;}
.y5e{bottom:657.134909px;}
.y13{bottom:657.225028px;}
.y11{bottom:671.895189px;}
.y5d{bottom:672.075134px;}
.y12{bottom:672.615328px;}
.y5b{bottom:685.035501px;}
.y10{bottom:687.015223px;}
.y5c{bottom:687.195260px;}
.yf{bottom:702.134753px;}
.y5a{bottom:702.134946px;}
.ye{bottom:717.075011px;}
.y59{bottom:723.015414px;}
.yd{bottom:732.195086px;}
.yc{bottom:747.134713px;}
.y58{bottom:747.855069px;}
.y56{bottom:748.035539px;}
.y57{bottom:750.015419px;}
.yb{bottom:762.074980px;}
.y54{bottom:762.615431px;}
.y53{bottom:762.795326px;}
.y55{bottom:764.955086px;}
.ya{bottom:777.195097px;}
.y52{bottom:780.075155px;}
.y9{bottom:792.315233px;}
.y51{bottom:793.215396px;}
.y8{bottom:807.435343px;}
.y50{bottom:810.495270px;}
.y7{bottom:822.554863px;}
.y4f{bottom:825.255030px;}
.y6{bottom:837.495100px;}
.y4e{bottom:840.375155px;}
.y5{bottom:852.254860px;}
.y4d{bottom:855.315390px;}
.y4{bottom:867.195102px;}
.y4c{bottom:870.435516px;}
.y3{bottom:879.974997px;}
.y4b{bottom:885.195278px;}
.y2{bottom:897.075000px;}
.y4a{bottom:899.955032px;}
.y46{bottom:927.674693px;}
.y1{bottom:929.475000px;}
.y49{bottom:932.355000px;}
.y8a{bottom:932.535329px;}
.h38{height:33.742090px;}
.h27{height:48.014062px;}
.h26{height:48.375000px;}
.h2{height:54.421875px;}
.h7{height:54.421887px;}
.h5{height:54.421893px;}
.h11{height:54.782835px;}
.h3d{height:55.141395px;}
.h3{height:55.141407px;}
.h8{height:55.141437px;}
.h36{height:55.141443px;}
.h40{height:55.143675px;}
.h3e{height:55.143735px;}
.h6{height:55.143747px;}
.h3b{height:55.143753px;}
.he{height:55.143783px;}
.h9{height:55.860861px;}
.ha{height:55.860939px;}
.hd{height:55.860973px;}
.hc{height:55.860975px;}
.h20{height:55.860993px;}
.h32{height:55.863243px;}
.h45{height:55.863255px;}
.h39{height:55.863279px;}
.h3a{height:55.863285px;}
.h49{height:55.863333px;}
.hb{height:55.863369px;}
.h58{height:56.580447px;}
.h53{height:56.580471px;}
.h48{height:56.580483px;}
.h4a{height:56.580495px;}
.hf{height:56.580537px;}
.h10{height:56.580555px;}
.h31{height:56.582788px;}
.h3f{height:56.582847px;}
.h4b{height:56.582865px;}
.h16{height:56.582895px;}
.h13{height:56.582907px;}
.h5a{height:56.941407px;}
.h22{height:56.941454px;}
.h52{height:56.941467px;}
.h5b{height:57.299955px;}
.h4f{height:57.302331px;}
.h4c{height:57.302343px;}
.h30{height:57.302349px;}
.h21{height:57.302369px;}
.h54{height:57.302397px;}
.h56{height:58.021869px;}
.h5c{height:58.021887px;}
.h55{height:58.021911px;}
.h17{height:58.021929px;}
.h57{height:58.021965px;}
.h2b{height:58.741395px;}
.h1a{height:58.741406px;}
.h1c{height:58.741424px;}
.h2c{height:58.741443px;}
.h15{height:58.741461px;}
.h12{height:59.102343px;}
.h1d{height:59.460930px;}
.h2f{height:59.460939px;}
.h2e{height:59.460975px;}
.h23{height:59.463243px;}
.h34{height:59.463339px;}
.h1b{height:60.182823px;}
.h35{height:60.182865px;}
.h41{height:60.902319px;}
.h28{height:62.341395px;}
.h37{height:62.341407px;}
.h51{height:62.702355px;}
.h4{height:63.060915px;}
.h3c{height:63.060933px;}
.h42{height:63.060975px;}
.h2a{height:63.063255px;}
.h29{height:63.780447px;}
.h44{height:63.782835px;}
.h46{height:64.499991px;}
.h47{height:64.502319px;}
.h18{height:64.502337px;}
.h43{height:64.502355px;}
.h24{height:64.860953px;}
.h4d{height:65.221827px;}
.h19{height:65.221876px;}
.h59{height:65.221893px;}
.h14{height:65.221899px;}
.h50{height:65.941455px;}
.h1f{height:66.660951px;}
.h25{height:66.660957px;}
.h2d{height:66.663279px;}
.h4e{height:66.663291px;}
.h33{height:67.380471px;}
.h1e{height:67.741395px;}
.h0{height:1010.655000px;}
.h1{height:1011.000000px;}
.w0{width:639.000000px;}
.x0{left:0.000000px;}
.x3{left:58.860000px;}
.x2{left:60.120000px;}
.x25{left:74.340180px;}
.x4{left:75.599880px;}
.x6{left:104.219550px;}
.xe{left:108.176445px;}
.x22{left:115.560330px;}
.x20{left:119.522460px;}
.x1c{left:130.861920px;}
.x23{left:153.990480px;}
.x24{left:159.120330px;}
.x19{left:170.910150px;}
.x7{left:175.499400px;}
.x14{left:178.335000px;}
.x1d{left:191.702220px;}
.x1b{left:194.401140px;}
.xf{left:196.196595px;}
.x16{left:227.880000px;}
.xb{left:230.758350px;}
.x15{left:236.565450px;}
.x1e{left:242.102220px;}
.x1{left:261.900000px;}
.x17{left:267.120600px;}
.x12{left:286.195710px;}
.xc{left:298.077330px;}
.xd{left:309.777090px;}
.x18{left:331.830300px;}
.x1a{left:343.440900px;}
.x10{left:346.676445px;}
.x21{left:380.160555px;}
.x8{left:415.799100px;}
.x11{left:473.576295px;}
.xa{left:481.498800px;}
.x13{left:517.135890px;}
.x9{left:534.239400px;}
.x1f{left:538.022160px;}
.x5{left:558.719400px;}
@media print{
.v11{vertical-align:-10.239573pt;}
.v1{vertical-align:-8.960427pt;}
.v7{vertical-align:-8.000000pt;}
.v2{vertical-align:-7.039573pt;}
.ve{vertical-align:-6.079147pt;}
.v9{vertical-align:-4.800000pt;}
.v12{vertical-align:-3.520832pt;}
.v4{vertical-align:-2.560416pt;}
.v8{vertical-align:-1.281248pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:0.960416pt;}
.v5{vertical-align:1.920832pt;}
.v10{vertical-align:3.200000pt;}
.vb{vertical-align:4.160416pt;}
.vd{vertical-align:5.439573pt;}
.vc{vertical-align:6.718773pt;}
.v6{vertical-align:7.679147pt;}
.v3{vertical-align:8.960427pt;}
.vf{vertical-align:10.241653pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-11.839584pt;}
._19{margin-left:-10.938553pt;}
._12{margin-left:-8.481624pt;}
._10{margin-left:-7.430296pt;}
._a{margin-left:-5.506133pt;}
._b{margin-left:-4.335055pt;}
._e{margin-left:-3.337772pt;}
._8{margin-left:-2.448000pt;}
._c{margin-left:-0.930880pt;}
._1{width:1.263467pt;}
._5{width:2.273067pt;}
._3{width:3.440000pt;}
._4{width:4.366933pt;}
._9{width:5.282133pt;}
._7{width:6.223467pt;}
._6{width:7.489067pt;}
._0{width:9.200400pt;}
._d{width:10.827333pt;}
._f{width:13.101867pt;}
._13{width:14.146667pt;}
._2{width:15.745067pt;}
._11{width:17.503067pt;}
._15{width:19.735733pt;}
._14{width:23.008533pt;}
._18{width:39.935851pt;}
._1a{width:1494.240000pt;}
._16{width:1547.469867pt;}
.fs3{font-size:30.560000pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:11.453187pt;}
.y47{bottom:19.080267pt;}
.y89{bottom:91.800189pt;}
.y43{bottom:93.240042pt;}
.y44{bottom:94.359834pt;}
.y45{bottom:94.680145pt;}
.y88{bottom:105.080349pt;}
.y42{bottom:106.519726pt;}
.y41{bottom:119.959801pt;}
.y87{bottom:123.480290pt;}
.y40{bottom:131.480113pt;}
.y86{bottom:143.159983pt;}
.y85{bottom:144.759983pt;}
.y3e{bottom:146.519669pt;}
.y3f{bottom:147.319675pt;}
.y83{bottom:157.880285pt;}
.y84{bottom:158.200077pt;}
.y3d{bottom:159.640002pt;}
.y82{bottom:169.400081pt;}
.y3b{bottom:172.759830pt;}
.y3c{bottom:173.559829pt;}
.y81{bottom:184.440193pt;}
.y3a{bottom:186.199945pt;}
.y80{bottom:197.400098pt;}
.y39{bottom:199.640041pt;}
.y7f{bottom:210.680315pt;}
.y38{bottom:211.159862pt;}
.y7e{bottom:223.959990pt;}
.y37{bottom:226.359865pt;}
.y7d{bottom:237.400047pt;}
.y36{bottom:244.759838pt;}
.y7c{bottom:250.680253pt;}
.y7b{bottom:263.959937pt;}
.y33{bottom:269.880213pt;}
.y35{bottom:270.519798pt;}
.y34{bottom:272.040105pt;}
.y7a{bottom:276.040143pt;}
.y32{bottom:283.800051pt;}
.y2f{bottom:284.600051pt;}
.y30{bottom:285.080259pt;}
.y31{bottom:285.400051pt;}
.y78{bottom:288.440145pt;}
.y79{bottom:289.080263pt;}
.y2e{bottom:296.280285pt;}
.y77{bottom:303.800047pt;}
.y2d{bottom:309.880329pt;}
.y76{bottom:315.159936pt;}
.y2c{bottom:324.760039pt;}
.y75{bottom:328.759947pt;}
.y2a{bottom:338.040202pt;}
.y2b{bottom:338.759999pt;}
.y74{bottom:343.959919pt;}
.y28{bottom:349.880291pt;}
.y29{bottom:352.440190pt;}
.y73{bottom:357.400033pt;}
.y27{bottom:363.159958pt;}
.y72{bottom:370.840103pt;}
.y26{bottom:378.200034pt;}
.y71{bottom:389.559924pt;}
.y25{bottom:391.640135pt;}
.y24{bottom:404.919820pt;}
.y70{bottom:410.519867pt;}
.y23{bottom:418.359924pt;}
.y6c{bottom:422.200035pt;}
.y6e{bottom:422.359928pt;}
.y6b{bottom:423.959931pt;}
.y6f{bottom:424.040133pt;}
.y6d{bottom:424.119821pt;}
.y22{bottom:430.200057pt;}
.y6a{bottom:437.080245pt;}
.y21{bottom:443.800088pt;}
.y69{bottom:448.600068pt;}
.y1f{bottom:457.080312pt;}
.y20{bottom:459.319885pt;}
.y68{bottom:461.880247pt;}
.y1e{bottom:472.119879pt;}
.y67{bottom:477.240164pt;}
.y1c{bottom:485.559972pt;}
.y1d{bottom:486.200092pt;}
.y66{bottom:490.519876pt;}
.y1b{bottom:498.840140pt;}
.y64{bottom:503.959999pt;}
.y65{bottom:504.119903pt;}
.y1a{bottom:510.519764pt;}
.y63{bottom:515.480316pt;}
.y19{bottom:524.119764pt;}
.y18{bottom:524.440084pt;}
.y17{bottom:525.719751pt;}
.y62{bottom:528.919919pt;}
.y61{bottom:542.200159pt;}
.y16{bottom:544.599988pt;}
.y60{bottom:555.640252pt;}
.y5f{bottom:569.560049pt;}
.y15{bottom:569.640151pt;}
.y14{bottom:570.519839pt;}
.y5e{bottom:584.119919pt;}
.y13{bottom:584.200025pt;}
.y11{bottom:597.240168pt;}
.y5d{bottom:597.400119pt;}
.y12{bottom:597.880292pt;}
.y5b{bottom:608.920445pt;}
.y10{bottom:610.680199pt;}
.y5c{bottom:610.840231pt;}
.yf{bottom:624.119780pt;}
.y5a{bottom:624.119952pt;}
.ye{bottom:637.400010pt;}
.y59{bottom:642.680368pt;}
.yd{bottom:650.840077pt;}
.yc{bottom:664.119745pt;}
.y58{bottom:664.760061pt;}
.y56{bottom:664.920479pt;}
.y57{bottom:666.680372pt;}
.yb{bottom:677.399982pt;}
.y54{bottom:677.880383pt;}
.y53{bottom:678.040289pt;}
.y55{bottom:679.960076pt;}
.ya{bottom:690.840086pt;}
.y52{bottom:693.400137pt;}
.y9{bottom:704.280207pt;}
.y51{bottom:705.080352pt;}
.y8{bottom:717.720305pt;}
.y50{bottom:720.440240pt;}
.y7{bottom:731.159878pt;}
.y4f{bottom:733.560027pt;}
.y6{bottom:744.440089pt;}
.y4e{bottom:747.000137pt;}
.y5{bottom:757.559875pt;}
.y4d{bottom:760.280347pt;}
.y4{bottom:770.840091pt;}
.y4c{bottom:773.720459pt;}
.y3{bottom:782.199997pt;}
.y4b{bottom:786.840247pt;}
.y2{bottom:797.400000pt;}
.y4a{bottom:799.960028pt;}
.y46{bottom:824.599727pt;}
.y1{bottom:826.200000pt;}
.y49{bottom:828.760000pt;}
.y8a{bottom:828.920293pt;}
.h38{height:29.992969pt;}
.h27{height:42.679166pt;}
.h26{height:43.000000pt;}
.h2{height:48.375000pt;}
.h7{height:48.375011pt;}
.h5{height:48.375016pt;}
.h11{height:48.695853pt;}
.h3d{height:49.014573pt;}
.h3{height:49.014584pt;}
.h8{height:49.014611pt;}
.h36{height:49.014616pt;}
.h40{height:49.016600pt;}
.h3e{height:49.016653pt;}
.h6{height:49.016664pt;}
.h3b{height:49.016669pt;}
.he{height:49.016696pt;}
.h9{height:49.654099pt;}
.ha{height:49.654168pt;}
.hd{height:49.654198pt;}
.hc{height:49.654200pt;}
.h20{height:49.654216pt;}
.h32{height:49.656216pt;}
.h45{height:49.656227pt;}
.h39{height:49.656248pt;}
.h3a{height:49.656253pt;}
.h49{height:49.656296pt;}
.hb{height:49.656328pt;}
.h58{height:50.293731pt;}
.h53{height:50.293752pt;}
.h48{height:50.293763pt;}
.h4a{height:50.293773pt;}
.hf{height:50.293811pt;}
.h10{height:50.293827pt;}
.h31{height:50.295812pt;}
.h3f{height:50.295864pt;}
.h4b{height:50.295880pt;}
.h16{height:50.295907pt;}
.h13{height:50.295917pt;}
.h5a{height:50.614584pt;}
.h22{height:50.614626pt;}
.h52{height:50.614637pt;}
.h5b{height:50.933293pt;}
.h4f{height:50.935405pt;}
.h4c{height:50.935416pt;}
.h30{height:50.935421pt;}
.h21{height:50.935439pt;}
.h54{height:50.935464pt;}
.h56{height:51.574995pt;}
.h5c{height:51.575011pt;}
.h55{height:51.575032pt;}
.h17{height:51.575048pt;}
.h57{height:51.575080pt;}
.h2b{height:52.214573pt;}
.h1a{height:52.214583pt;}
.h1c{height:52.214599pt;}
.h2c{height:52.214616pt;}
.h15{height:52.214632pt;}
.h12{height:52.535416pt;}
.h1d{height:52.854160pt;}
.h2f{height:52.854168pt;}
.h2e{height:52.854200pt;}
.h23{height:52.856216pt;}
.h34{height:52.856301pt;}
.h1b{height:53.495843pt;}
.h35{height:53.495880pt;}
.h41{height:54.135395pt;}
.h28{height:55.414573pt;}
.h37{height:55.414584pt;}
.h51{height:55.735427pt;}
.h4{height:56.054147pt;}
.h3c{height:56.054163pt;}
.h42{height:56.054200pt;}
.h2a{height:56.056227pt;}
.h29{height:56.693731pt;}
.h44{height:56.695853pt;}
.h46{height:57.333325pt;}
.h47{height:57.335395pt;}
.h18{height:57.335411pt;}
.h43{height:57.335427pt;}
.h24{height:57.654180pt;}
.h4d{height:57.974957pt;}
.h19{height:57.975001pt;}
.h59{height:57.975016pt;}
.h14{height:57.975021pt;}
.h50{height:58.614627pt;}
.h1f{height:59.254179pt;}
.h25{height:59.254184pt;}
.h2d{height:59.256248pt;}
.h4e{height:59.256259pt;}
.h33{height:59.893752pt;}
.h1e{height:60.214573pt;}
.h0{height:898.360000pt;}
.h1{height:898.666667pt;}
.w0{width:568.000000pt;}
.x0{left:0.000000pt;}
.x3{left:52.320000pt;}
.x2{left:53.440000pt;}
.x25{left:66.080160pt;}
.x4{left:67.199893pt;}
.x6{left:92.639600pt;}
.xe{left:96.156840pt;}
.x22{left:102.720293pt;}
.x20{left:106.242187pt;}
.x1c{left:116.321707pt;}
.x23{left:136.880427pt;}
.x24{left:141.440293pt;}
.x19{left:151.920133pt;}
.x7{left:155.999467pt;}
.x14{left:158.520000pt;}
.x1d{left:170.401973pt;}
.x1b{left:172.801013pt;}
.xf{left:174.396973pt;}
.x16{left:202.560000pt;}
.xb{left:205.118533pt;}
.x15{left:210.280400pt;}
.x1e{left:215.201973pt;}
.x1{left:232.800000pt;}
.x17{left:237.440533pt;}
.x12{left:254.396187pt;}
.xc{left:264.957627pt;}
.xd{left:275.357413pt;}
.x18{left:294.960267pt;}
.x1a{left:305.280800pt;}
.x10{left:308.156840pt;}
.x21{left:337.920493pt;}
.x8{left:369.599200pt;}
.x11{left:420.956707pt;}
.xa{left:427.998933pt;}
.x13{left:459.676347pt;}
.x9{left:474.879467pt;}
.x1f{left:478.241920pt;}
.x5{left:496.639467pt;}
}




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