
    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_bebbcf89d8c8664d84958c42.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.124500;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_2c21e80e3ed6c68929b26f38.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.135500;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_826f4aedbd89090620434d15.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-67.500002px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:67.500002px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001350px;}
.ls1{letter-spacing:0.032096px;}
.ls2{letter-spacing:0.032546px;}
.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;}
}
.ws1{word-spacing:-36.000001px;}
.ws0{word-spacing:-24.000002px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-24.459945px;}
._2{margin-left:-18.000000px;}
._a{margin-left:-15.743401px;}
._33{margin-left:-14.652968px;}
._7{margin-left:-13.500000px;}
._4{margin-left:-11.550000px;}
._1{margin-left:-10.500000px;}
._c{margin-left:-8.870055px;}
._6{margin-left:-7.854000px;}
._9{margin-left:-6.777004px;}
._53{margin-left:-5.640000px;}
._3{margin-left:-4.620000px;}
._0{margin-left:-3.000000px;}
._b{margin-left:-1.787032px;}
._8{width:1.132076px;}
._5{width:2.850953px;}
._19{width:4.320000px;}
._1a{width:5.340001px;}
._50{width:7.200000px;}
._42{width:10.620000px;}
._56{width:12.407033px;}
._65{width:13.680000px;}
._3e{width:15.420001px;}
._25{width:16.620000px;}
._26{width:17.760000px;}
._28{width:22.590001px;}
._27{width:24.150000px;}
._64{width:27.660001px;}
._63{width:28.860001px;}
._38{width:31.440001px;}
._37{width:32.460001px;}
._2c{width:34.800001px;}
._3f{width:37.320001px;}
._23{width:38.640001px;}
._24{width:39.960001px;}
._3a{width:42.780001px;}
._21{width:43.860001px;}
._5e{width:46.637810px;}
._5d{width:47.764067px;}
._43{width:48.960002px;}
._18{width:50.040002px;}
._61{width:51.107035px;}
._39{width:52.560001px;}
._40{width:57.347034px;}
._1f{width:61.500002px;}
._20{width:62.940002px;}
._5b{width:64.427034px;}
._35{width:66.780002px;}
._34{width:68.267034px;}
._44{width:70.907035px;}
._4f{width:72.000002px;}
._51{width:73.560002px;}
._30{width:74.880002px;}
._29{width:76.320002px;}
._11{width:84.900043px;}
._f{width:86.400060px;}
._2d{width:87.959889px;}
._5f{width:89.157653px;}
._2b{width:117.322943px;}
._2a{width:118.367036px;}
._2f{width:120.240004px;}
._2e{width:121.500004px;}
._1c{width:122.700004px;}
._1b{width:123.720004px;}
._15{width:127.050042px;}
._5a{width:133.560004px;}
._58{width:138.000004px;}
._54{width:140.027037px;}
._55{width:141.385940px;}
._57{width:151.020005px;}
._d{width:160.637092px;}
._16{width:168.750042px;}
._5c{width:170.309969px;}
._3c{width:186.240006px;}
._3b{width:187.427038px;}
._22{width:189.149970px;}
._14{width:190.650042px;}
._52{width:194.040006px;}
._36{width:208.560007px;}
._1d{width:227.160007px;}
._1e{width:228.480007px;}
._17{width:233.687074px;}
._13{width:266.824106px;}
._4e{width:328.105946px;}
._4d{width:329.614075px;}
._46{width:393.660013px;}
._31{width:408.360013px;}
._48{width:447.741111px;}
._59{width:476.927047px;}
._32{width:494.640016px;}
._e{width:501.000056px;}
._10{width:533.850056px;}
._49{width:546.660017px;}
._4c{width:558.672985px;}
._47{width:565.800018px;}
._41{width:705.960023px;}
._4b{width:797.520025px;}
._3d{width:954.480030px;}
._4a{width:1093.440035px;}
._62{width:2037.780065px;}
._45{width:2087.734131px;}
._60{width:4891.667189px;}
.fc4{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(0,128,161);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(102,102,102);}
.fs5{font-size:120.000001px;}
.fs3{font-size:120.000010px;}
.fs0{font-size:149.999999px;}
.fs4{font-size:180.000006px;}
.fs7{font-size:210.000013px;}
.fs6{font-size:234.000007px;}
.fs2{font-size:270.000009px;}
.fs1{font-size:462.000003px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.721716px;}
.y7d{bottom:467.399141px;}
.y13{bottom:472.381878px;}
.yd{bottom:473.373903px;}
.y12{bottom:517.381880px;}
.yc{bottom:518.373905px;}
.y7c{bottom:529.499109px;}
.y11{bottom:562.381881px;}
.yb{bottom:563.373906px;}
.y7b{bottom:591.599088px;}
.y10{bottom:607.381883px;}
.ya{bottom:608.373908px;}
.yf{bottom:652.381884px;}
.y9{bottom:653.373909px;}
.y7a{bottom:653.699079px;}
.ye{bottom:697.381886px;}
.y8{bottom:698.373911px;}
.y79{bottom:715.799059px;}
.y7{bottom:743.373912px;}
.y78{bottom:795.899061px;}
.y77{bottom:857.999052px;}
.y76{bottom:920.099054px;}
.y75{bottom:982.199047px;}
.y51{bottom:1143.946150px;}
.y50{bottom:1206.046039px;}
.y4f{bottom:1268.146041px;}
.y4e{bottom:1330.245931px;}
.y4d{bottom:1392.345933px;}
.y4c{bottom:1454.445822px;}
.y4b{bottom:1516.545824px;}
.y4a{bottom:1578.645826px;}
.y14{bottom:1632.811990px;}
.y6e{bottom:1638.215141px;}
.y49{bottom:1640.745716px;}
.y6d{bottom:1700.315030px;}
.y48{bottom:1702.845605px;}
.y34{bottom:1709.478155px;}
.y6c{bottom:1762.415032px;}
.y33{bottom:1771.578045px;}
.y47{bottom:1782.945608px;}
.y6b{bottom:1824.514922px;}
.y32{bottom:1833.678047px;}
.y46{bottom:1845.045610px;}
.y31{bottom:1895.778049px;}
.y6a{bottom:1904.614924px;}
.y45{bottom:1907.145578px;}
.y30{bottom:1957.877938px;}
.y69{bottom:1966.714814px;}
.y44{bottom:1969.245614px;}
.y2f{bottom:2019.977940px;}
.y68{bottom:2028.814816px;}
.y43{bottom:2031.345616px;}
.y2e{bottom:2082.077830px;}
.y67{bottom:2090.914705px;}
.y42{bottom:2111.445618px;}
.y2d{bottom:2144.177832px;}
.y66{bottom:2153.014707px;}
.y41{bottom:2173.545620px;}
.y2c{bottom:2206.277721px;}
.y65{bottom:2215.114597px;}
.y40{bottom:2235.645622px;}
.y2b{bottom:2268.377723px;}
.y64{bottom:2277.214599px;}
.y3f{bottom:2297.745669px;}
.y63{bottom:2339.314488px;}
.y2a{bottom:2348.477613px;}
.y3e{bottom:2359.845683px;}
.y62{bottom:2401.414456px;}
.y29{bottom:2410.577615px;}
.y3d{bottom:2421.945707px;}
.y28{bottom:2472.677505px;}
.y61{bottom:2481.514493px;}
.y3c{bottom:2502.045721px;}
.y27{bottom:2534.777507px;}
.y60{bottom:2543.614495px;}
.y3b{bottom:2564.145700px;}
.y26{bottom:2596.877396px;}
.y5f{bottom:2605.714497px;}
.y3a{bottom:2626.245680px;}
.y25{bottom:2658.977365px;}
.y5e{bottom:2667.814499px;}
.y39{bottom:2688.345659px;}
.y24{bottom:2721.077400px;}
.y5d{bottom:2729.914501px;}
.y38{bottom:2750.445639px;}
.y5c{bottom:2792.014548px;}
.y23{bottom:2801.177403px;}
.y37{bottom:2812.545663px;}
.y5b{bottom:2854.114561px;}
.y22{bottom:2863.277405px;}
.y36{bottom:2898.315643px;}
.y21{bottom:2925.377407px;}
.y5a{bottom:2934.214575px;}
.y35{bottom:2979.045646px;}
.y20{bottom:2987.477409px;}
.y59{bottom:2996.314599px;}
.y1f{bottom:3049.577456px;}
.y58{bottom:3058.414579px;}
.y1e{bottom:3111.677469px;}
.y57{bottom:3120.514558px;}
.y56{bottom:3182.614538px;}
.y1d{bottom:3191.777483px;}
.y55{bottom:3244.714517px;}
.y1c{bottom:3253.877507px;}
.y54{bottom:3306.814530px;}
.y1b{bottom:3315.977487px;}
.y1a{bottom:3378.077466px;}
.y53{bottom:3386.914533px;}
.y19{bottom:3440.177446px;}
.y52{bottom:3472.684524px;}
.y18{bottom:3502.277425px;}
.y17{bottom:3564.377439px;}
.y16{bottom:3644.477441px;}
.y15{bottom:3730.247433px;}
.y74{bottom:3857.153107px;}
.y73{bottom:3920.153109px;}
.y72{bottom:3983.153111px;}
.y71{bottom:4046.153113px;}
.y70{bottom:4109.153115px;}
.y6f{bottom:4172.153117px;}
.y6{bottom:4351.864965px;}
.y5{bottom:4394.389955px;}
.y4{bottom:4475.389946px;}
.y3{bottom:4641.461946px;}
.y2{bottom:4780.061927px;}
.h6{height:87.421876px;}
.h4{height:104.340009px;}
.h1{height:130.424999px;}
.h5{height:132.074999px;}
.h9{height:156.510005px;}
.h8{height:158.490005px;}
.ha{height:184.905011px;}
.h7{height:206.037007px;}
.h3{height:234.765008px;}
.h2{height:406.791002px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.xc{left:163.246055px;}
.xb{left:256.234474px;}
.xa{left:260.518700px;}
.x3{left:271.164316px;}
.x4{left:419.986172px;}
.x2{left:446.677642px;}
.x6{left:633.971687px;}
.x5{left:994.618686px;}
.xf{left:1250.757940px;}
.xd{left:1356.400105px;}
.xe{left:1560.623832px;}
.x7{left:1869.631935px;}
.x12{left:2371.506151px;}
.x10{left:2414.052047px;}
.x11{left:2459.184536px;}
.x8{left:2665.139935px;}
.x1{left:2715.431262px;}
.x9{left:3455.287311px;}
@media print{
.v2{vertical-align:-60.000002pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:60.000002pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001200pt;}
.ls1{letter-spacing:0.028530pt;}
.ls2{letter-spacing:0.028930pt;}
.ws1{word-spacing:-32.000001pt;}
.ws0{word-spacing:-21.333335pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-21.742173pt;}
._2{margin-left:-16.000000pt;}
._a{margin-left:-13.994134pt;}
._33{margin-left:-13.024861pt;}
._7{margin-left:-12.000000pt;}
._4{margin-left:-10.266667pt;}
._1{margin-left:-9.333333pt;}
._c{margin-left:-7.884493pt;}
._6{margin-left:-6.981333pt;}
._9{margin-left:-6.024003pt;}
._53{margin-left:-5.013334pt;}
._3{margin-left:-4.106667pt;}
._0{margin-left:-2.666667pt;}
._b{margin-left:-1.588473pt;}
._8{width:1.006290pt;}
._5{width:2.534180pt;}
._19{width:3.840000pt;}
._1a{width:4.746668pt;}
._50{width:6.400000pt;}
._42{width:9.440000pt;}
._56{width:11.028473pt;}
._65{width:12.160000pt;}
._3e{width:13.706667pt;}
._25{width:14.773334pt;}
._26{width:15.786667pt;}
._28{width:20.080001pt;}
._27{width:21.466667pt;}
._64{width:24.586667pt;}
._63{width:25.653334pt;}
._38{width:27.946667pt;}
._37{width:28.853334pt;}
._2c{width:30.933334pt;}
._3f{width:33.173335pt;}
._23{width:34.346668pt;}
._24{width:35.520001pt;}
._3a{width:38.026668pt;}
._21{width:38.986668pt;}
._5e{width:41.455831pt;}
._5d{width:42.456948pt;}
._43{width:43.520001pt;}
._18{width:44.480001pt;}
._61{width:45.428476pt;}
._39{width:46.720001pt;}
._40{width:50.975141pt;}
._1f{width:54.666668pt;}
._20{width:55.946668pt;}
._5b{width:57.268475pt;}
._35{width:59.360002pt;}
._34{width:60.681808pt;}
._44{width:63.028475pt;}
._4f{width:64.000002pt;}
._51{width:65.386669pt;}
._30{width:66.560002pt;}
._29{width:67.840002pt;}
._11{width:75.466704pt;}
._f{width:76.800053pt;}
._2d{width:78.186568pt;}
._5f{width:79.251247pt;}
._2b{width:104.287060pt;}
._2a{width:105.215143pt;}
._2f{width:106.880003pt;}
._2e{width:108.000003pt;}
._1c{width:109.066670pt;}
._1b{width:109.973337pt;}
._15{width:112.933371pt;}
._5a{width:118.720004pt;}
._58{width:122.666670pt;}
._54{width:124.468477pt;}
._55{width:125.676391pt;}
._57{width:134.240004pt;}
._d{width:142.788526pt;}
._16{width:150.000037pt;}
._5c{width:151.386639pt;}
._3c{width:165.546672pt;}
._3b{width:166.601812pt;}
._22{width:168.133307pt;}
._14{width:169.466704pt;}
._52{width:172.480006pt;}
._36{width:185.386672pt;}
._1d{width:201.920006pt;}
._1e{width:203.093340pt;}
._17{width:207.721843pt;}
._13{width:237.176983pt;}
._4e{width:291.649730pt;}
._4d{width:292.990289pt;}
._46{width:349.920011pt;}
._31{width:362.986678pt;}
._48{width:397.992099pt;}
._59{width:423.935153pt;}
._32{width:439.680014pt;}
._e{width:445.333384pt;}
._10{width:474.533383pt;}
._49{width:485.920016pt;}
._4c{width:496.598209pt;}
._47{width:502.933349pt;}
._41{width:627.520020pt;}
._4b{width:708.906689pt;}
._3d{width:848.426694pt;}
._4a{width:971.946698pt;}
._62{width:1811.360058pt;}
._45{width:1855.763672pt;}
._60{width:4348.148612pt;}
.fs5{font-size:106.666667pt;}
.fs3{font-size:106.666675pt;}
.fs0{font-size:133.333332pt;}
.fs4{font-size:160.000005pt;}
.fs7{font-size:186.666678pt;}
.fs6{font-size:208.000007pt;}
.fs2{font-size:240.000008pt;}
.fs1{font-size:410.666669pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:83.308192pt;}
.y7d{bottom:415.465903pt;}
.y13{bottom:419.895003pt;}
.yd{bottom:420.776803pt;}
.y12{bottom:459.895004pt;}
.yc{bottom:460.776804pt;}
.y7c{bottom:470.665875pt;}
.y11{bottom:499.895006pt;}
.yb{bottom:500.776806pt;}
.y7b{bottom:525.865856pt;}
.y10{bottom:539.895007pt;}
.ya{bottom:540.776807pt;}
.yf{bottom:579.895008pt;}
.y9{bottom:580.776808pt;}
.y7a{bottom:581.065848pt;}
.ye{bottom:619.895009pt;}
.y8{bottom:620.776809pt;}
.y79{bottom:636.265830pt;}
.y7{bottom:660.776811pt;}
.y78{bottom:707.465832pt;}
.y77{bottom:762.665824pt;}
.y76{bottom:817.865826pt;}
.y75{bottom:873.065819pt;}
.y51{bottom:1016.841022pt;}
.y50{bottom:1072.040924pt;}
.y4f{bottom:1127.240926pt;}
.y4e{bottom:1182.440827pt;}
.y4d{bottom:1237.640829pt;}
.y4c{bottom:1292.840731pt;}
.y4b{bottom:1348.040733pt;}
.y4a{bottom:1403.240734pt;}
.y14{bottom:1451.388436pt;}
.y6e{bottom:1456.191236pt;}
.y49{bottom:1458.440636pt;}
.y6d{bottom:1511.391138pt;}
.y48{bottom:1513.640538pt;}
.y34{bottom:1519.536138pt;}
.y6c{bottom:1566.591140pt;}
.y33{bottom:1574.736040pt;}
.y47{bottom:1584.840540pt;}
.y6b{bottom:1621.791041pt;}
.y32{bottom:1629.936042pt;}
.y46{bottom:1640.040542pt;}
.y31{bottom:1685.136043pt;}
.y6a{bottom:1692.991044pt;}
.y45{bottom:1695.240514pt;}
.y30{bottom:1740.335945pt;}
.y69{bottom:1748.190945pt;}
.y44{bottom:1750.440546pt;}
.y2f{bottom:1795.535947pt;}
.y68{bottom:1803.390947pt;}
.y43{bottom:1805.640547pt;}
.y2e{bottom:1850.735849pt;}
.y67{bottom:1858.590849pt;}
.y42{bottom:1876.840550pt;}
.y2d{bottom:1905.935851pt;}
.y66{bottom:1913.790851pt;}
.y41{bottom:1932.040551pt;}
.y2c{bottom:1961.135752pt;}
.y65{bottom:1968.990753pt;}
.y40{bottom:1987.240553pt;}
.y2b{bottom:2016.335754pt;}
.y64{bottom:2024.190754pt;}
.y3f{bottom:2042.440595pt;}
.y63{bottom:2079.390656pt;}
.y2a{bottom:2087.535656pt;}
.y3e{bottom:2097.640607pt;}
.y62{bottom:2134.590628pt;}
.y29{bottom:2142.735658pt;}
.y3d{bottom:2152.840628pt;}
.y28{bottom:2197.935560pt;}
.y61{bottom:2205.790660pt;}
.y3c{bottom:2224.040641pt;}
.y27{bottom:2253.135562pt;}
.y60{bottom:2260.990662pt;}
.y3b{bottom:2279.240622pt;}
.y26{bottom:2308.335463pt;}
.y5f{bottom:2316.190664pt;}
.y3a{bottom:2334.440604pt;}
.y25{bottom:2363.535435pt;}
.y5e{bottom:2371.390665pt;}
.y39{bottom:2389.640586pt;}
.y24{bottom:2418.735467pt;}
.y5d{bottom:2426.590667pt;}
.y38{bottom:2444.840568pt;}
.y5c{bottom:2481.790709pt;}
.y23{bottom:2489.935469pt;}
.y37{bottom:2500.040590pt;}
.y5b{bottom:2536.990721pt;}
.y22{bottom:2545.135471pt;}
.y36{bottom:2576.280572pt;}
.y21{bottom:2600.335473pt;}
.y5a{bottom:2608.190733pt;}
.y35{bottom:2648.040574pt;}
.y20{bottom:2655.535475pt;}
.y59{bottom:2663.390755pt;}
.y1f{bottom:2710.735516pt;}
.y58{bottom:2718.590737pt;}
.y1e{bottom:2765.935528pt;}
.y57{bottom:2773.790718pt;}
.y56{bottom:2828.990700pt;}
.y1d{bottom:2837.135540pt;}
.y55{bottom:2884.190682pt;}
.y1c{bottom:2892.335562pt;}
.y54{bottom:2939.390694pt;}
.y1b{bottom:2947.535544pt;}
.y1a{bottom:3002.735526pt;}
.y53{bottom:3010.590696pt;}
.y19{bottom:3057.935507pt;}
.y52{bottom:3086.830688pt;}
.y18{bottom:3113.135489pt;}
.y17{bottom:3168.335501pt;}
.y16{bottom:3239.535503pt;}
.y15{bottom:3315.775496pt;}
.y74{bottom:3428.580539pt;}
.y73{bottom:3484.580541pt;}
.y72{bottom:3540.580543pt;}
.y71{bottom:3596.580545pt;}
.y70{bottom:3652.580546pt;}
.y6f{bottom:3708.580548pt;}
.y6{bottom:3868.324413pt;}
.y5{bottom:3906.124405pt;}
.y4{bottom:3978.124397pt;}
.y3{bottom:4125.743952pt;}
.y2{bottom:4248.943936pt;}
.h6{height:77.708334pt;}
.h4{height:92.746674pt;}
.h1{height:115.933332pt;}
.h5{height:117.399999pt;}
.h9{height:139.120004pt;}
.h8{height:140.880005pt;}
.ha{height:164.360010pt;}
.h7{height:183.144006pt;}
.h3{height:208.680007pt;}
.h2{height:361.592002pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.xc{left:145.107605pt;}
.xb{left:227.763977pt;}
.xa{left:231.572177pt;}
.x3{left:241.034948pt;}
.x4{left:373.321042pt;}
.x2{left:397.046793pt;}
.x6{left:563.530388pt;}
.x5{left:884.105498pt;}
.xf{left:1111.784836pt;}
.xd{left:1205.688983pt;}
.xe{left:1387.221184pt;}
.x7{left:1661.895053pt;}
.x12{left:2108.005467pt;}
.x10{left:2145.824042pt;}
.x11{left:2185.941810pt;}
.x8{left:2369.013276pt;}
.x1{left:2413.716677pt;}
.x9{left:3071.366498pt;}
}




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