
    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_f4792307e7f33b90c85f7f85.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_764f9963682d0b82e0ed945c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_5b3ae1d51d67a20603890999.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728516;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_ef1f3490b9b0165d449696b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_82c5b881fef7191d318bb6a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.129395;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_0c61cfa9b10c899419af0f65.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.041016;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_de2529b4e3b1725f30488574.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.929199;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);}
.v4{vertical-align:-23.759995px;}
.v5{vertical-align:-20.880067px;}
.v6{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440036px;}
.v1{vertical-align:5.760135px;}
.v3{vertical-align:23.759995px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.005821px;}
.ls3{letter-spacing:0.005825px;}
.ls0{letter-spacing:0.007763px;}
.lsb{letter-spacing:0.179374px;}
.lsd{letter-spacing:0.179437px;}
.ls7{letter-spacing:0.179442px;}
.lsf{letter-spacing:0.261145px;}
.ls8{letter-spacing:0.725906px;}
.ls17{letter-spacing:2.165807px;}
.ls2{letter-spacing:3.779451px;}
.ls5{letter-spacing:4.319423px;}
.ls16{letter-spacing:5.759289px;}
.ls4{letter-spacing:6.479337px;}
.ls18{letter-spacing:6.850732px;}
.ls15{letter-spacing:6.850799px;}
.ls14{letter-spacing:7.919339px;}
.ls9{letter-spacing:16.565861px;}
.lsa{letter-spacing:17.285875px;}
.lse{letter-spacing:18.899456px;}
.ls12{letter-spacing:39.970732px;}
.ls13{letter-spacing:39.970799px;}
.ls11{letter-spacing:62.645884px;}
.ls10{letter-spacing:67.330808px;}
.ls6{letter-spacing:101.699428px;}
.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:-19.814330px;}
.ws5{word-spacing:-16.560675px;}
.ws4{word-spacing:-14.940563px;}
.ws6{word-spacing:-10.770171px;}
.ws2{word-spacing:-10.440405px;}
.ws3{word-spacing:-9.720371px;}
.ws1{word-spacing:0.000000px;}
._27{margin-left:-14.031253px;}
._15{margin-left:-2.249175px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._16{width:2.087908px;}
._2{width:3.149217px;}
._a{width:4.604148px;}
._6{width:5.903579px;}
._5{width:7.352940px;}
._b{width:9.284587px;}
._f{width:11.007415px;}
._e{width:12.022274px;}
._11{width:13.568627px;}
._12{width:14.825589px;}
._18{width:16.799673px;}
._10{width:17.960311px;}
._9{width:19.234189px;}
._c{width:20.485534px;}
._8{width:21.639627px;}
._7{width:23.261797px;}
._17{width:25.252183px;}
._22{width:26.628915px;}
._1e{width:28.061101px;}
._1d{width:29.069936px;}
._1f{width:30.931685px;}
._1b{width:32.051436px;}
._13{width:33.242709px;}
._24{width:35.628998px;}
._25{width:36.962909px;}
._d{width:38.166922px;}
._1c{width:39.493593px;}
._2b{width:49.612311px;}
._23{width:54.487784px;}
._28{width:61.128001px;}
._29{width:62.283026px;}
._21{width:102.051651px;}
._20{width:133.865244px;}
._1a{width:136.516589px;}
._19{width:137.802644px;}
._14{width:139.165821px;}
._4{width:179.423891px;}
._26{width:195.415965px;}
._3{width:322.360104px;}
._2a{width:1460.376990px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs6{font-size:38.881485px;}
.fs5{font-size:41.761620px;}
.fs0{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.779984px;}
.yf{bottom:3.959988px;}
.yc{bottom:3.959997px;}
.y7{bottom:301.500068px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y61{bottom:342.360077px;}
.y67{bottom:346.680039px;}
.y60{bottom:359.640060px;}
.y71{bottom:364.860077px;}
.y37{bottom:369.180039px;}
.y5f{bottom:376.740074px;}
.y70{bottom:381.960091px;}
.y66{bottom:382.140060px;}
.y8c{bottom:387.000068px;}
.y34{bottom:389.160049px;}
.y5e{bottom:394.020058px;}
.y87{bottom:394.740074px;}
.y7a{bottom:399.240074px;}
.y65{bottom:399.420043px;}
.y8b{bottom:406.080093px;}
.y33{bottom:408.060036px;}
.y36{bottom:408.420043px;}
.y6f{bottom:411.300041px;}
.y80{bottom:415.620072px;}
.y64{bottom:415.800041px;}
.y5d{bottom:416.520058px;}
.y8a{bottom:424.980079px;}
.y32{bottom:426.960091px;}
.y35{bottom:427.320099px;}
.y79{bottom:428.580093px;}
.y63{bottom:433.080093px;}
.y5c{bottom:433.800041px;}
.y86{bottom:444.060036px;}
.y5b{bottom:445.860077px;}
.y7f{bottom:446.580093px;}
.y31{bottom:446.760064px;}
.y78{bottom:450.180039px;}
.y7e{bottom:451.080093px;}
.y89{bottom:462.600083px;}
.y85{bottom:462.960091px;}
.y7d{bottom:463.140060px;}
.y30{bottom:465.660049px;}
.y5a{bottom:468.360077px;}
.y6e{bottom:480.240074px;}
.y77{bottom:480.420043px;}
.y59{bottom:481.140060px;}
.y88{bottom:481.500068px;}
.y84{bottom:481.860077px;}
.y2f{bottom:484.740074px;}
.y7c{bottom:485.460091px;}
.y6d{bottom:497.520058px;}
.y76{bottom:497.700096px;}
.y7b{bottom:498.240074px;}
.y62{bottom:500.940033px;}
.y2e{bottom:504.720085px;}
.y58{bottom:519.840088px;}
.y6c{bottom:520.020058px;}
.y2d{bottom:523.800041px;}
.y6b{bottom:532.080093px;}
.y57{bottom:538.920043px;}
.y2c{bottom:542.700096px;}
.y6a{bottom:549.360077px;}
.y56{bottom:557.820099px;}
.y2b{bottom:561.780052px;}
.y69{bottom:571.860077px;}
.y83{bottom:576.360077px;}
.y55{bottom:576.720085px;}
.y2a{bottom:580.680039px;}
.y75{bottom:583.920043px;}
.y68{bottom:584.640060px;}
.y82{bottom:595.440033px;}
.y54{bottom:595.800041px;}
.y29{bottom:599.580093px;}
.y74{bottom:601.200096px;}
.y81{bottom:614.340088px;}
.y53{bottom:614.700096px;}
.y28{bottom:618.660049px;}
.y73{bottom:622.800041px;}
.y52{bottom:633.780052px;}
.y72{bottom:636.480079px;}
.y27{bottom:637.560036px;}
.y51{bottom:652.680039px;}
.y26{bottom:656.640060px;}
.y50{bottom:671.760064px;}
.y25{bottom:675.540047px;}
.y4f{bottom:690.660049px;}
.y24{bottom:694.440067px;}
.y4e{bottom:709.560070px;}
.y23{bottom:713.520058px;}
.y4d{bottom:728.640060px;}
.y22{bottom:732.420078px;}
.y4c{bottom:747.540081px;}
.y21{bottom:751.500068px;}
.y4b{bottom:766.620072px;}
.y20{bottom:770.400055px;}
.y4a{bottom:785.520058px;}
.y1f{bottom:789.480079px;}
.y49{bottom:804.420078px;}
.y1e{bottom:808.380066px;}
.y48{bottom:823.500068px;}
.y1d{bottom:827.280052px;}
.y47{bottom:842.400055px;}
.y1c{bottom:846.000068px;}
.y46{bottom:861.480079px;}
.y1b{bottom:865.440067px;}
.y45{bottom:880.380066px;}
.y1a{bottom:882.720051px;}
.y44{bottom:899.280052px;}
.y19{bottom:899.820065px;}
.y18{bottom:915.660049px;}
.y43{bottom:918.360077px;}
.y17{bottom:936.000068px;}
.y42{bottom:937.260064px;}
.y41{bottom:956.340054px;}
.y16{bottom:956.700061px;}
.y15{bottom:974.340054px;}
.y40{bottom:975.240074px;}
.y3f{bottom:994.140060px;}
.y14{bottom:995.040064px;}
.y3e{bottom:1013.220068px;}
.y13{bottom:1015.740074px;}
.y3d{bottom:1032.120072px;}
.y12{bottom:1036.440067px;}
.y8e{bottom:1050.840070px;}
.y3c{bottom:1051.200061px;}
.y11{bottom:1057.140060px;}
.y8d{bottom:1069.740074px;}
.y3b{bottom:1070.100065px;}
.y10{bottom:1077.840070px;}
.y3a{bottom:1089.000068px;}
.ye{bottom:1096.740074px;}
.yd{bottom:1100.700061px;}
.y39{bottom:1108.080059px;}
.yb{bottom:1117.440067px;}
.ya{bottom:1121.400064px;}
.y38{bottom:1126.980063px;}
.y9{bottom:1140.660067px;}
.y4{bottom:1145.880066px;}
.y3{bottom:1164.420069px;}
.y2{bottom:1180.260064px;}
.y1{bottom:1196.100065px;}
.h6{height:4.128911px;}
.h5{height:19.259996px;}
.h8{height:20.159998px;}
.h1a{height:32.046849px;}
.h15{height:34.040284px;}
.h18{height:34.321150px;}
.h2{height:38.682276px;}
.h3{height:47.450215px;}
.h11{height:47.482560px;}
.hb{height:51.611314px;}
.ha{height:52.321150px;}
.hd{height:53.079850px;}
.h1b{height:53.757504px;}
.hf{height:54.598475px;}
.h10{height:57.994708px;}
.h7{height:58.431882px;}
.he{height:58.835679px;}
.hc{height:58.839985px;}
.h14{height:60.321665px;}
.h17{height:60.321800px;}
.h12{height:60.321804px;}
.h16{height:60.321836px;}
.h19{height:60.321939px;}
.h13{height:60.321944px;}
.h4{height:63.037524px;}
.h9{height:63.951621px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:4.320030px;}
.w3{width:8.100013px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:166.860008px;}
.x17{left:175.319996px;}
.x1a{left:180.360008px;}
.x1c{left:193.860008px;}
.xb{left:197.280001px;}
.x1b{left:202.319996px;}
.x19{left:207.360008px;}
.x2{left:215.099997px;}
.x18{left:219.780001px;}
.x14{left:223.560001px;}
.x1{left:228.780001px;}
.xc{left:230.580008px;}
.x13{left:237.240006px;}
.x12{left:282.960005px;}
.xf{left:291.420010px;}
.x10{left:304.920010px;}
.x11{left:329.579990px;}
.xd{left:363.600014px;}
.x3{left:375.300007px;}
.x15{left:383.759994px;}
.x6{left:427.500000px;}
.xe{left:433.980011px;}
.x4{left:442.079990px;}
.x16{left:450.540012px;}
.x7{left:458.279983px;}
.xa{left:472.500000px;}
.x8{left:576.000000px;}
.x9{left:717.480011px;}
@media print{
.v4{vertical-align:-21.119996pt;}
.v5{vertical-align:-18.560060pt;}
.v6{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280032pt;}
.v1{vertical-align:5.120120pt;}
.v3{vertical-align:21.119996pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.005174pt;}
.ls3{letter-spacing:0.005178pt;}
.ls0{letter-spacing:0.006900pt;}
.lsb{letter-spacing:0.159444pt;}
.lsd{letter-spacing:0.159500pt;}
.ls7{letter-spacing:0.159504pt;}
.lsf{letter-spacing:0.232129pt;}
.ls8{letter-spacing:0.645250pt;}
.ls17{letter-spacing:1.925162pt;}
.ls2{letter-spacing:3.359512pt;}
.ls5{letter-spacing:3.839487pt;}
.ls16{letter-spacing:5.119368pt;}
.ls4{letter-spacing:5.759411pt;}
.ls18{letter-spacing:6.089539pt;}
.ls15{letter-spacing:6.089599pt;}
.ls14{letter-spacing:7.039412pt;}
.ls9{letter-spacing:14.725210pt;}
.lsa{letter-spacing:15.365222pt;}
.lse{letter-spacing:16.799516pt;}
.ls12{letter-spacing:35.529539pt;}
.ls13{letter-spacing:35.529599pt;}
.ls11{letter-spacing:55.685230pt;}
.ls10{letter-spacing:59.849607pt;}
.ls6{letter-spacing:90.399492pt;}
.ws0{word-spacing:-17.612738pt;}
.ws5{word-spacing:-14.720600pt;}
.ws4{word-spacing:-13.280500pt;}
.ws6{word-spacing:-9.573486pt;}
.ws2{word-spacing:-9.280360pt;}
.ws3{word-spacing:-8.640330pt;}
.ws1{word-spacing:0.000000pt;}
._27{margin-left:-12.472225pt;}
._15{margin-left:-1.999266pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._16{width:1.855918pt;}
._2{width:2.799304pt;}
._a{width:4.092576pt;}
._6{width:5.247626pt;}
._5{width:6.535946pt;}
._b{width:8.252966pt;}
._f{width:9.784369pt;}
._e{width:10.686465pt;}
._11{width:12.061002pt;}
._12{width:13.178301pt;}
._18{width:14.933042pt;}
._10{width:15.964721pt;}
._9{width:17.097057pt;}
._c{width:18.209363pt;}
._8{width:19.235224pt;}
._7{width:20.677153pt;}
._17{width:22.446385pt;}
._22{width:23.670146pt;}
._1e{width:24.943201pt;}
._1d{width:25.839943pt;}
._1f{width:27.494831pt;}
._1b{width:28.490166pt;}
._13{width:29.549074pt;}
._24{width:31.670221pt;}
._25{width:32.855919pt;}
._d{width:33.926153pt;}
._1c{width:35.105416pt;}
._2b{width:44.099832pt;}
._23{width:48.433586pt;}
._28{width:54.336001pt;}
._29{width:55.362690pt;}
._21{width:90.712578pt;}
._20{width:118.991328pt;}
._1a{width:121.348079pt;}
._19{width:122.491239pt;}
._14{width:123.702952pt;}
._4{width:159.487903pt;}
._26{width:173.703080pt;}
._3{width:286.542314pt;}
._2a{width:1298.112880pt;}
.fs3{font-size:5.120200pt;}
.fs6{font-size:34.561320pt;}
.fs5{font-size:37.121440pt;}
.fs0{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.359986pt;}
.yf{bottom:3.519989pt;}
.yc{bottom:3.519997pt;}
.y7{bottom:268.000061pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y61{bottom:304.320069pt;}
.y67{bottom:308.160035pt;}
.y60{bottom:319.680054pt;}
.y71{bottom:324.320069pt;}
.y37{bottom:328.160035pt;}
.y5f{bottom:334.880066pt;}
.y70{bottom:339.520081pt;}
.y66{bottom:339.680054pt;}
.y8c{bottom:344.000061pt;}
.y34{bottom:345.920044pt;}
.y5e{bottom:350.240052pt;}
.y87{bottom:350.880066pt;}
.y7a{bottom:354.880066pt;}
.y65{bottom:355.040039pt;}
.y8b{bottom:360.960083pt;}
.y33{bottom:362.720032pt;}
.y36{bottom:363.040039pt;}
.y6f{bottom:365.600037pt;}
.y80{bottom:369.440064pt;}
.y64{bottom:369.600037pt;}
.y5d{bottom:370.240052pt;}
.y8a{bottom:377.760071pt;}
.y32{bottom:379.520081pt;}
.y35{bottom:379.840088pt;}
.y79{bottom:380.960083pt;}
.y63{bottom:384.960083pt;}
.y5c{bottom:385.600037pt;}
.y86{bottom:394.720032pt;}
.y5b{bottom:396.320069pt;}
.y7f{bottom:396.960083pt;}
.y31{bottom:397.120057pt;}
.y78{bottom:400.160035pt;}
.y7e{bottom:400.960083pt;}
.y89{bottom:411.200074pt;}
.y85{bottom:411.520081pt;}
.y7d{bottom:411.680054pt;}
.y30{bottom:413.920044pt;}
.y5a{bottom:416.320069pt;}
.y6e{bottom:426.880066pt;}
.y77{bottom:427.040039pt;}
.y59{bottom:427.680054pt;}
.y88{bottom:428.000061pt;}
.y84{bottom:428.320069pt;}
.y2f{bottom:430.880066pt;}
.y7c{bottom:431.520081pt;}
.y6d{bottom:442.240052pt;}
.y76{bottom:442.400086pt;}
.y7b{bottom:442.880066pt;}
.y62{bottom:445.280030pt;}
.y2e{bottom:448.640076pt;}
.y58{bottom:462.080079pt;}
.y6c{bottom:462.240052pt;}
.y2d{bottom:465.600037pt;}
.y6b{bottom:472.960083pt;}
.y57{bottom:479.040039pt;}
.y2c{bottom:482.400086pt;}
.y6a{bottom:488.320069pt;}
.y56{bottom:495.840088pt;}
.y2b{bottom:499.360047pt;}
.y69{bottom:508.320069pt;}
.y83{bottom:512.320069pt;}
.y55{bottom:512.640076pt;}
.y2a{bottom:516.160035pt;}
.y75{bottom:519.040039pt;}
.y68{bottom:519.680054pt;}
.y82{bottom:529.280030pt;}
.y54{bottom:529.600037pt;}
.y29{bottom:532.960083pt;}
.y74{bottom:534.400086pt;}
.y81{bottom:546.080079pt;}
.y53{bottom:546.400086pt;}
.y28{bottom:549.920044pt;}
.y73{bottom:553.600037pt;}
.y52{bottom:563.360047pt;}
.y72{bottom:565.760071pt;}
.y27{bottom:566.720032pt;}
.y51{bottom:580.160035pt;}
.y26{bottom:583.680054pt;}
.y50{bottom:597.120057pt;}
.y25{bottom:600.480042pt;}
.y4f{bottom:613.920044pt;}
.y24{bottom:617.280060pt;}
.y4e{bottom:630.720063pt;}
.y23{bottom:634.240052pt;}
.y4d{bottom:647.680054pt;}
.y22{bottom:651.040070pt;}
.y4c{bottom:664.480072pt;}
.y21{bottom:668.000061pt;}
.y4b{bottom:681.440064pt;}
.y20{bottom:684.800049pt;}
.y4a{bottom:698.240052pt;}
.y1f{bottom:701.760071pt;}
.y49{bottom:715.040070pt;}
.y1e{bottom:718.560059pt;}
.y48{bottom:732.000061pt;}
.y1d{bottom:735.360047pt;}
.y47{bottom:748.800049pt;}
.y1c{bottom:752.000061pt;}
.y46{bottom:765.760071pt;}
.y1b{bottom:769.280060pt;}
.y45{bottom:782.560059pt;}
.y1a{bottom:784.640046pt;}
.y44{bottom:799.360047pt;}
.y19{bottom:799.840058pt;}
.y18{bottom:813.920044pt;}
.y43{bottom:816.320069pt;}
.y17{bottom:832.000061pt;}
.y42{bottom:833.120057pt;}
.y41{bottom:850.080048pt;}
.y16{bottom:850.400055pt;}
.y15{bottom:866.080048pt;}
.y40{bottom:866.880066pt;}
.y3f{bottom:883.680054pt;}
.y14{bottom:884.480057pt;}
.y3e{bottom:900.640061pt;}
.y13{bottom:902.880066pt;}
.y3d{bottom:917.440064pt;}
.y12{bottom:921.280060pt;}
.y8e{bottom:934.080063pt;}
.y3c{bottom:934.400055pt;}
.y11{bottom:939.680054pt;}
.y8d{bottom:950.880066pt;}
.y3b{bottom:951.200058pt;}
.y10{bottom:958.080063pt;}
.y3a{bottom:968.000061pt;}
.ye{bottom:974.880066pt;}
.yd{bottom:978.400055pt;}
.y39{bottom:984.960053pt;}
.yb{bottom:993.280060pt;}
.ya{bottom:996.800057pt;}
.y38{bottom:1001.760056pt;}
.y9{bottom:1013.920060pt;}
.y4{bottom:1018.560059pt;}
.y3{bottom:1035.040062pt;}
.y2{bottom:1049.120057pt;}
.y1{bottom:1063.200058pt;}
.h6{height:3.670143pt;}
.h5{height:17.119996pt;}
.h8{height:17.919998pt;}
.h1a{height:28.486088pt;}
.h15{height:30.258031pt;}
.h18{height:30.507688pt;}
.h2{height:34.384245pt;}
.h3{height:42.177969pt;}
.h11{height:42.206720pt;}
.hb{height:45.876723pt;}
.ha{height:46.507688pt;}
.hd{height:47.182089pt;}
.h1b{height:47.784448pt;}
.hf{height:48.531978pt;}
.h10{height:51.550851pt;}
.h7{height:51.939451pt;}
.he{height:52.298382pt;}
.hc{height:52.302209pt;}
.h14{height:53.619258pt;}
.h17{height:53.619378pt;}
.h12{height:53.619382pt;}
.h16{height:53.619410pt;}
.h19{height:53.619502pt;}
.h13{height:53.619506pt;}
.h4{height:56.033355pt;}
.h9{height:56.845885pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.840027pt;}
.w3{width:7.200012pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:148.320007pt;}
.x17{left:155.839996pt;}
.x1a{left:160.320007pt;}
.x1c{left:172.320007pt;}
.xb{left:175.360001pt;}
.x1b{left:179.839996pt;}
.x19{left:184.320007pt;}
.x2{left:191.199997pt;}
.x18{left:195.360001pt;}
.x14{left:198.720001pt;}
.x1{left:203.360001pt;}
.xc{left:204.960007pt;}
.x13{left:210.880005pt;}
.x12{left:251.520004pt;}
.xf{left:259.040009pt;}
.x10{left:271.040009pt;}
.x11{left:292.959991pt;}
.xd{left:323.200012pt;}
.x3{left:333.600006pt;}
.x15{left:341.119995pt;}
.x6{left:380.000000pt;}
.xe{left:385.760010pt;}
.x4{left:392.959991pt;}
.x16{left:400.480011pt;}
.x7{left:407.359985pt;}
.xa{left:420.000000pt;}
.x8{left:512.000000pt;}
.x9{left:637.760010pt;}
}




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