
    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_a15a17cd26a9391802238b8f.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_d910c60722e483884eca284f.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_3673ded91ab0ff364126f927.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_09b671989a153d4efc14f0fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_2b1595aa8c2169b3376c1618.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4d5d30e25d56a6d995d74325.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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);}
.v5{vertical-align:-27.359941px;}
.v3{vertical-align:-23.759996px;}
.v6{vertical-align:-20.880067px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440031px;}
.v2{vertical-align:23.759996px;}
.v4{vertical-align:27.359941px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007763px;}
.ls1{letter-spacing:0.179339px;}
.ls7{letter-spacing:0.179442px;}
.ls3{letter-spacing:0.179473px;}
.ls2{letter-spacing:0.179478px;}
.lse{letter-spacing:2.530772px;}
.lsc{letter-spacing:6.850732px;}
.lsb{letter-spacing:6.850799px;}
.lsd{letter-spacing:35.650772px;}
.ls9{letter-spacing:39.970732px;}
.lsa{letter-spacing:39.970799px;}
.ls5{letter-spacing:56.339419px;}
.ls6{letter-spacing:56.339424px;}
.ls8{letter-spacing:110.339424px;}
.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.560675px;}
.ws1{word-spacing:-15.840563px;}
.ws5{word-spacing:-14.940563px;}
.ws3{word-spacing:-10.440405px;}
.ws4{word-spacing:-9.720371px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-2.116614px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._1d{width:2.103271px;}
._2{width:3.149217px;}
._f{width:4.310614px;}
._1c{width:6.166226px;}
._12{width:7.329725px;}
._13{width:8.590204px;}
._c{width:10.100255px;}
._6{width:11.377153px;}
._19{width:12.417173px;}
._1a{width:13.608197px;}
._7{width:14.826272px;}
._26{width:16.135101px;}
._d{width:17.171170px;}
._e{width:18.195689px;}
._14{width:19.198762px;}
._21{width:20.371959px;}
._11{width:21.598357px;}
._10{width:22.864119px;}
._18{width:24.091146px;}
._a{width:25.253074px;}
._b{width:26.487812px;}
._17{width:28.448686px;}
._23{width:29.503475px;}
._9{width:30.593819px;}
._8{width:31.681125px;}
._22{width:33.043318px;}
._25{width:34.205601px;}
._1e{width:35.406464px;}
._24{width:36.733388px;}
._1b{width:38.598793px;}
._28{width:39.961800px;}
._36{width:41.075196px;}
._2b{width:42.180270px;}
._29{width:43.433993px;}
._2a{width:44.623727px;}
._2d{width:45.991236px;}
._5{width:47.731575px;}
._27{width:49.350812px;}
._32{width:50.824568px;}
._2e{width:51.946438px;}
._1f{width:56.264604px;}
._20{width:57.531437px;}
._34{width:59.163849px;}
._31{width:66.932941px;}
._2c{width:68.128258px;}
._33{width:93.826026px;}
._2f{width:95.021199px;}
._30{width:96.024757px;}
._35{width:110.648179px;}
._16{width:154.123585px;}
._4{width:192.895704px;}
._3{width:469.241023px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs7{font-size:38.881485px;}
.fs6{font-size:41.761620px;}
.fs0{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.599997px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y6b{bottom:342.360077px;}
.y7a{bottom:347.580093px;}
.y93{bottom:349.200096px;}
.y36{bottom:357.120072px;}
.y72{bottom:359.640060px;}
.y6a{bottom:364.860077px;}
.y92{bottom:368.100083px;}
.y35{bottom:376.200096px;}
.y69{bottom:376.740074px;}
.y90{bottom:377.640060px;}
.y71{bottom:381.960091px;}
.y91{bottom:387.000068px;}
.y70{bottom:394.020058px;}
.y34{bottom:394.740074px;}
.y68{bottom:399.240074px;}
.y8f{bottom:406.080093px;}
.y67{bottom:411.300041px;}
.y88{bottom:412.020058px;}
.y33{bottom:414.180039px;}
.y6f{bottom:416.520058px;}
.y8e{bottom:424.980079px;}
.y79{bottom:428.580093px;}
.y30{bottom:433.260064px;}
.y66{bottom:433.800041px;}
.y5b{bottom:444.060036px;}
.y65{bottom:445.860077px;}
.y78{bottom:451.080093px;}
.y2f{bottom:451.440033px;}
.y32{bottom:451.800041px;}
.y5a{bottom:462.960091px;}
.y77{bottom:463.140060px;}
.y64{bottom:468.360077px;}
.y2e{bottom:469.620072px;}
.y31{bottom:469.980079px;}
.y63{bottom:480.240074px;}
.y59{bottom:481.860077px;}
.y7c{bottom:485.460091px;}
.y2d{bottom:488.340088px;}
.y6e{bottom:497.520058px;}
.y7b{bottom:498.240074px;}
.y97{bottom:500.580093px;}
.y58{bottom:500.940033px;}
.y62{bottom:502.740074px;}
.y2c{bottom:506.520058px;}
.y61{bottom:514.800041px;}
.y7e{bottom:515.520058px;}
.y57{bottom:519.840088px;}
.y6d{bottom:520.020058px;}
.y2b{bottom:525.780052px;}
.y84{bottom:532.080093px;}
.y6c{bottom:532.800041px;}
.y60{bottom:537.300041px;}
.y98{bottom:538.560036px;}
.y56{bottom:538.920043px;}
.y2a{bottom:543.780052px;}
.y5f{bottom:549.360077px;}
.y83{bottom:554.580093px;}
.y55{bottom:557.820099px;}
.y29{bottom:561.960091px;}
.y76{bottom:566.640060px;}
.y89{bottom:567.360077px;}
.y5e{bottom:571.860077px;}
.y8d{bottom:576.360077px;}
.y54{bottom:576.720085px;}
.y28{bottom:580.140060px;}
.y5d{bottom:584.640060px;}
.y75{bottom:588.960091px;}
.y8c{bottom:595.440033px;}
.y53{bottom:595.800041px;}
.y27{bottom:598.140060px;}
.y82{bottom:601.020058px;}
.y74{bottom:601.740074px;}
.y8a{bottom:614.340088px;}
.y52{bottom:614.700096px;}
.y26{bottom:616.320099px;}
.y81{bottom:623.520058px;}
.y73{bottom:633.420043px;}
.y51{bottom:633.780052px;}
.y25{bottom:634.320099px;}
.y80{bottom:636.300041px;}
.y24{bottom:652.500068px;}
.y50{bottom:652.680039px;}
.y23{bottom:670.680039px;}
.y87{bottom:671.400055px;}
.y4f{bottom:671.760064px;}
.y22{bottom:688.680073px;}
.y4e{bottom:690.660049px;}
.y21{bottom:706.860077px;}
.y4d{bottom:709.560070px;}
.y20{bottom:725.040081px;}
.y4c{bottom:728.640060px;}
.y1f{bottom:743.040081px;}
.y4b{bottom:747.540081px;}
.y1e{bottom:761.220051px;}
.y4a{bottom:766.620072px;}
.y1d{bottom:779.220051px;}
.y49{bottom:785.520058px;}
.y1c{bottom:797.400055px;}
.y96{bottom:804.060070px;}
.y48{bottom:804.420078px;}
.y1b{bottom:815.580059px;}
.y47{bottom:823.500068px;}
.y1a{bottom:833.580059px;}
.y8b{bottom:842.040081px;}
.y46{bottom:842.400055px;}
.y19{bottom:851.760064px;}
.y95{bottom:861.120072px;}
.y45{bottom:861.480079px;}
.y18{bottom:869.760064px;}
.y94{bottom:880.020058px;}
.y44{bottom:880.380066px;}
.y17{bottom:887.580059px;}
.y43{bottom:899.280052px;}
.y16{bottom:906.480079px;}
.y42{bottom:918.360077px;}
.y15{bottom:924.480079px;}
.y41{bottom:937.260064px;}
.y14{bottom:942.660049px;}
.y86{bottom:955.980079px;}
.y40{bottom:956.340054px;}
.y13{bottom:962.100083px;}
.y85{bottom:974.880066px;}
.y3f{bottom:975.240074px;}
.y12{bottom:982.440067px;}
.y7f{bottom:993.780069px;}
.y3e{bottom:994.140060px;}
.y11{bottom:999.540064px;}
.y99{bottom:1012.140060px;}
.y9a{bottom:1012.860060px;}
.y3d{bottom:1013.220068px;}
.y10{bottom:1018.620072px;}
.y3c{bottom:1032.120072px;}
.yf{bottom:1037.520058px;}
.y3b{bottom:1051.200061px;}
.ye{bottom:1056.600065px;}
.y3a{bottom:1070.100065px;}
.yd{bottom:1075.500068px;}
.y39{bottom:1089.000068px;}
.yc{bottom:1100.160067px;}
.yb{bottom:1103.760064px;}
.y7d{bottom:1107.720068px;}
.y38{bottom:1108.080059px;}
.y9{bottom:1119.060070px;}
.y8{bottom:1122.660067px;}
.y5c{bottom:1126.620063px;}
.y37{bottom:1126.980063px;}
.y7{bottom:1140.660067px;}
.y4{bottom:1145.880066px;}
.y3{bottom:1164.420069px;}
.y2{bottom:1180.260064px;}
.y1{bottom:1196.100065px;}
.h5{height:5.116137px;}
.h7{height:18.539994px;}
.h13{height:34.040284px;}
.h2{height:38.682276px;}
.h3{height:47.450215px;}
.h6{height:49.908440px;}
.hc{height:52.224354px;}
.h9{height:52.321150px;}
.h18{height:54.598475px;}
.hd{height:55.472907px;}
.hb{height:56.277311px;}
.he{height:57.994708px;}
.h8{height:58.835679px;}
.h14{height:60.321665px;}
.h16{height:60.321669px;}
.h10{height:60.321800px;}
.hf{height:60.321804px;}
.h17{height:60.321836px;}
.h12{height:60.321939px;}
.h15{height:60.321944px;}
.h11{height:61.780652px;}
.h4{height:63.037524px;}
.ha{height:63.951621px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:6.660049px;}
.w2{width:8.100013px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:166.860008px;}
.x5{left:175.319996px;}
.xd{left:183.060001px;}
.x1c{left:193.860008px;}
.x1b{left:202.319996px;}
.x14{left:215.099997px;}
.x19{left:219.060001px;}
.x17{left:220.860008px;}
.x2{left:223.560001px;}
.x18{left:227.520006px;}
.x13{left:229.319996px;}
.xc{left:233.460005px;}
.x1{left:237.240006px;}
.x12{left:291.420010px;}
.x10{left:321.839985px;}
.xb{left:372.959988px;}
.x15{left:375.300007px;}
.x3{left:383.759994px;}
.x11{left:403.560001px;}
.xe{left:404.819996px;}
.x6{left:427.500000px;}
.xf{left:442.620002px;}
.x4{left:450.540012px;}
.x1a{left:477.540012px;}
.x9{left:524.519989px;}
.x7{left:534.600014px;}
.x8{left:747.720017px;}
.xa{left:749.159981px;}
@media print{
.v5{vertical-align:-24.319948pt;}
.v3{vertical-align:-21.119996pt;}
.v6{vertical-align:-18.560060pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280028pt;}
.v2{vertical-align:21.119996pt;}
.v4{vertical-align:24.319948pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006900pt;}
.ls1{letter-spacing:0.159412pt;}
.ls7{letter-spacing:0.159504pt;}
.ls3{letter-spacing:0.159532pt;}
.ls2{letter-spacing:0.159536pt;}
.lse{letter-spacing:2.249575pt;}
.lsc{letter-spacing:6.089539pt;}
.lsb{letter-spacing:6.089599pt;}
.lsd{letter-spacing:31.689575pt;}
.ls9{letter-spacing:35.529539pt;}
.lsa{letter-spacing:35.529599pt;}
.ls5{letter-spacing:50.079484pt;}
.ls6{letter-spacing:50.079488pt;}
.ls8{letter-spacing:98.079488pt;}
.ws0{word-spacing:-14.720600pt;}
.ws1{word-spacing:-14.080500pt;}
.ws5{word-spacing:-13.280500pt;}
.ws3{word-spacing:-9.280360pt;}
.ws4{word-spacing:-8.640330pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-1.881435pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._1d{width:1.869574pt;}
._2{width:2.799304pt;}
._f{width:3.831657pt;}
._1c{width:5.481090pt;}
._12{width:6.515311pt;}
._13{width:7.635737pt;}
._c{width:8.978005pt;}
._6{width:10.113025pt;}
._19{width:11.037487pt;}
._1a{width:12.096176pt;}
._7{width:13.178908pt;}
._26{width:14.342312pt;}
._d{width:15.263262pt;}
._e{width:16.173946pt;}
._14{width:17.065566pt;}
._21{width:18.108408pt;}
._11{width:19.198539pt;}
._10{width:20.323662pt;}
._18{width:21.414352pt;}
._a{width:22.447177pt;}
._b{width:23.544722pt;}
._17{width:25.287721pt;}
._23{width:26.225311pt;}
._9{width:27.194506pt;}
._8{width:28.161000pt;}
._22{width:29.371838pt;}
._25{width:30.404979pt;}
._1e{width:31.472413pt;}
._24{width:32.651901pt;}
._1b{width:34.310038pt;}
._28{width:35.521600pt;}
._36{width:36.511285pt;}
._2b{width:37.493573pt;}
._29{width:38.607994pt;}
._2a{width:39.665535pt;}
._2d{width:40.881099pt;}
._5{width:42.428067pt;}
._27{width:43.867388pt;}
._32{width:45.177394pt;}
._2e{width:46.174612pt;}
._1f{width:50.012981pt;}
._20{width:51.139055pt;}
._34{width:52.590088pt;}
._31{width:59.495948pt;}
._2c{width:60.558452pt;}
._33{width:83.400912pt;}
._2f{width:84.463288pt;}
._30{width:85.355339pt;}
._35{width:98.353937pt;}
._16{width:136.998742pt;}
._4{width:171.462848pt;}
._3{width:417.103131pt;}
.fs3{font-size:5.120200pt;}
.fs7{font-size:34.561320pt;}
.fs6{font-size:37.121440pt;}
.fs0{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.199997pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y6b{bottom:304.320069pt;}
.y7a{bottom:308.960083pt;}
.y93{bottom:310.400086pt;}
.y36{bottom:317.440064pt;}
.y72{bottom:319.680054pt;}
.y6a{bottom:324.320069pt;}
.y92{bottom:327.200074pt;}
.y35{bottom:334.400086pt;}
.y69{bottom:334.880066pt;}
.y90{bottom:335.680054pt;}
.y71{bottom:339.520081pt;}
.y91{bottom:344.000061pt;}
.y70{bottom:350.240052pt;}
.y34{bottom:350.880066pt;}
.y68{bottom:354.880066pt;}
.y8f{bottom:360.960083pt;}
.y67{bottom:365.600037pt;}
.y88{bottom:366.240052pt;}
.y33{bottom:368.160035pt;}
.y6f{bottom:370.240052pt;}
.y8e{bottom:377.760071pt;}
.y79{bottom:380.960083pt;}
.y30{bottom:385.120057pt;}
.y66{bottom:385.600037pt;}
.y5b{bottom:394.720032pt;}
.y65{bottom:396.320069pt;}
.y78{bottom:400.960083pt;}
.y2f{bottom:401.280030pt;}
.y32{bottom:401.600037pt;}
.y5a{bottom:411.520081pt;}
.y77{bottom:411.680054pt;}
.y64{bottom:416.320069pt;}
.y2e{bottom:417.440064pt;}
.y31{bottom:417.760071pt;}
.y63{bottom:426.880066pt;}
.y59{bottom:428.320069pt;}
.y7c{bottom:431.520081pt;}
.y2d{bottom:434.080079pt;}
.y6e{bottom:442.240052pt;}
.y7b{bottom:442.880066pt;}
.y97{bottom:444.960083pt;}
.y58{bottom:445.280030pt;}
.y62{bottom:446.880066pt;}
.y2c{bottom:450.240052pt;}
.y61{bottom:457.600037pt;}
.y7e{bottom:458.240052pt;}
.y57{bottom:462.080079pt;}
.y6d{bottom:462.240052pt;}
.y2b{bottom:467.360047pt;}
.y84{bottom:472.960083pt;}
.y6c{bottom:473.600037pt;}
.y60{bottom:477.600037pt;}
.y98{bottom:478.720032pt;}
.y56{bottom:479.040039pt;}
.y2a{bottom:483.360047pt;}
.y5f{bottom:488.320069pt;}
.y83{bottom:492.960083pt;}
.y55{bottom:495.840088pt;}
.y29{bottom:499.520081pt;}
.y76{bottom:503.680054pt;}
.y89{bottom:504.320069pt;}
.y5e{bottom:508.320069pt;}
.y8d{bottom:512.320069pt;}
.y54{bottom:512.640076pt;}
.y28{bottom:515.680054pt;}
.y5d{bottom:519.680054pt;}
.y75{bottom:523.520081pt;}
.y8c{bottom:529.280030pt;}
.y53{bottom:529.600037pt;}
.y27{bottom:531.680054pt;}
.y82{bottom:534.240052pt;}
.y74{bottom:534.880066pt;}
.y8a{bottom:546.080079pt;}
.y52{bottom:546.400086pt;}
.y26{bottom:547.840088pt;}
.y81{bottom:554.240052pt;}
.y73{bottom:563.040039pt;}
.y51{bottom:563.360047pt;}
.y25{bottom:563.840088pt;}
.y80{bottom:565.600037pt;}
.y24{bottom:580.000061pt;}
.y50{bottom:580.160035pt;}
.y23{bottom:596.160035pt;}
.y87{bottom:596.800049pt;}
.y4f{bottom:597.120057pt;}
.y22{bottom:612.160065pt;}
.y4e{bottom:613.920044pt;}
.y21{bottom:628.320069pt;}
.y4d{bottom:630.720063pt;}
.y20{bottom:644.480072pt;}
.y4c{bottom:647.680054pt;}
.y1f{bottom:660.480072pt;}
.y4b{bottom:664.480072pt;}
.y1e{bottom:676.640046pt;}
.y4a{bottom:681.440064pt;}
.y1d{bottom:692.640046pt;}
.y49{bottom:698.240052pt;}
.y1c{bottom:708.800049pt;}
.y96{bottom:714.720063pt;}
.y48{bottom:715.040070pt;}
.y1b{bottom:724.960053pt;}
.y47{bottom:732.000061pt;}
.y1a{bottom:740.960053pt;}
.y8b{bottom:748.480072pt;}
.y46{bottom:748.800049pt;}
.y19{bottom:757.120057pt;}
.y95{bottom:765.440064pt;}
.y45{bottom:765.760071pt;}
.y18{bottom:773.120057pt;}
.y94{bottom:782.240052pt;}
.y44{bottom:782.560059pt;}
.y17{bottom:788.960053pt;}
.y43{bottom:799.360047pt;}
.y16{bottom:805.760071pt;}
.y42{bottom:816.320069pt;}
.y15{bottom:821.760071pt;}
.y41{bottom:833.120057pt;}
.y14{bottom:837.920044pt;}
.y86{bottom:849.760071pt;}
.y40{bottom:850.080048pt;}
.y13{bottom:855.200074pt;}
.y85{bottom:866.560059pt;}
.y3f{bottom:866.880066pt;}
.y12{bottom:873.280060pt;}
.y7f{bottom:883.360062pt;}
.y3e{bottom:883.680054pt;}
.y11{bottom:888.480057pt;}
.y99{bottom:899.680054pt;}
.y9a{bottom:900.320054pt;}
.y3d{bottom:900.640061pt;}
.y10{bottom:905.440064pt;}
.y3c{bottom:917.440064pt;}
.yf{bottom:922.240052pt;}
.y3b{bottom:934.400055pt;}
.ye{bottom:939.200058pt;}
.y3a{bottom:951.200058pt;}
.yd{bottom:956.000061pt;}
.y39{bottom:968.000061pt;}
.yc{bottom:977.920060pt;}
.yb{bottom:981.120057pt;}
.y7d{bottom:984.640061pt;}
.y38{bottom:984.960053pt;}
.y9{bottom:994.720063pt;}
.y8{bottom:997.920060pt;}
.y5c{bottom:1001.440056pt;}
.y37{bottom:1001.760056pt;}
.y7{bottom:1013.920060pt;}
.y4{bottom:1018.560059pt;}
.y3{bottom:1035.040062pt;}
.y2{bottom:1049.120057pt;}
.y1{bottom:1063.200058pt;}
.h5{height:4.547678pt;}
.h7{height:16.479995pt;}
.h13{height:30.258031pt;}
.h2{height:34.384245pt;}
.h3{height:42.177969pt;}
.h6{height:44.363058pt;}
.hc{height:46.421648pt;}
.h9{height:46.507688pt;}
.h18{height:48.531978pt;}
.hd{height:49.309251pt;}
.hb{height:50.024276pt;}
.he{height:51.550851pt;}
.h8{height:52.298382pt;}
.h14{height:53.619258pt;}
.h16{height:53.619262pt;}
.h10{height:53.619378pt;}
.hf{height:53.619382pt;}
.h17{height:53.619410pt;}
.h12{height:53.619502pt;}
.h15{height:53.619506pt;}
.h11{height:54.916135pt;}
.h4{height:56.033355pt;}
.ha{height:56.845885pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:5.920044pt;}
.w2{width:7.200012pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:148.320007pt;}
.x5{left:155.839996pt;}
.xd{left:162.720001pt;}
.x1c{left:172.320007pt;}
.x1b{left:179.839996pt;}
.x14{left:191.199997pt;}
.x19{left:194.720001pt;}
.x17{left:196.320007pt;}
.x2{left:198.720001pt;}
.x18{left:202.240005pt;}
.x13{left:203.839996pt;}
.xc{left:207.520004pt;}
.x1{left:210.880005pt;}
.x12{left:259.040009pt;}
.x10{left:286.079987pt;}
.xb{left:331.519989pt;}
.x15{left:333.600006pt;}
.x3{left:341.119995pt;}
.x11{left:358.720001pt;}
.xe{left:359.839996pt;}
.x6{left:380.000000pt;}
.xf{left:393.440002pt;}
.x4{left:400.480011pt;}
.x1a{left:424.480011pt;}
.x9{left:466.239990pt;}
.x7{left:475.200012pt;}
.x8{left:664.640015pt;}
.xa{left:665.919983pt;}
}




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