
    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_f9bc818284089e18d27b87d6.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e3a06103f7a1a248985c9438.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_85c0a638f09dcfd35b4562b1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_d5c1e46bd188dd8bab172bd7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.878000;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_0aa732eac690325a08ba7538.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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);}
.v8{vertical-align:-85.500003px;}
.va{vertical-align:-77.489957px;}
.v5{vertical-align:-50.344877px;}
.v4{vertical-align:-36.000001px;}
.v3{vertical-align:-15.590565px;}
.vd{vertical-align:-3.319200px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.760014px;}
.v1{vertical-align:15.649651px;}
.v6{vertical-align:17.155126px;}
.v2{vertical-align:19.234261px;}
.v7{vertical-align:47.812502px;}
.ve{vertical-align:52.930802px;}
.vc{vertical-align:56.250002px;}
.vb{vertical-align:83.249971px;}
.lsa{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000702px;}
.ls5{letter-spacing:0.020404px;}
.ls4{letter-spacing:0.149805px;}
.ls6{letter-spacing:0.166514px;}
.ls9{letter-spacing:107.976572px;}
.ls2{letter-spacing:1073.692969px;}
.ls7{letter-spacing:1471.394308px;}
.ls1{letter-spacing:2543.616666px;}
.ls0{letter-spacing:2623.828719px;}
.ls3{letter-spacing:6095.102541px;}
.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:-83.099999px;}
.ws7{word-spacing:-63.156004px;}
.ws3{word-spacing:-49.860002px;}
.ws11{word-spacing:-48.198003px;}
.wsd{word-spacing:-43.212003px;}
.wse{word-spacing:-41.550000px;}
.ws9{word-spacing:-40.996002px;}
.ws5{word-spacing:-35.317502px;}
.ws4{word-spacing:-33.240003px;}
.wsf{word-spacing:-24.930001px;}
.ws6{word-spacing:-23.545002px;}
.wsc{word-spacing:-0.156000px;}
.ws10{word-spacing:-0.090000px;}
.ws12{word-spacing:0.000000px;}
.ws8{word-spacing:280.029953px;}
.wsb{word-spacing:442.660094px;}
.wsa{word-spacing:1409.568836px;}
.ws1{word-spacing:2670.868435px;}
.ws2{word-spacing:2802.075390px;}
._5{margin-left:-9.240000px;}
._1{margin-left:-7.012500px;}
._6{margin-left:-5.610000px;}
._3{margin-left:-4.320000px;}
._4{margin-left:-3.024000px;}
._0{width:1.629221px;}
._2{width:3.862412px;}
.fcb{color:transparent;}
.fca{color:rgb(5,99,193);}
.fc8{color:rgb(246,178,107);}
.fc7{color:rgb(147,196,125);}
.fc9{color:rgb(0,181,255);}
.fc6{color:rgb(159,197,232);}
.fc5{color:rgb(183,183,183);}
.fc4{color:rgb(67,67,67);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(153,153,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs18{font-size:49.500002px;}
.fs1{font-size:84.000000px;}
.fsa{font-size:85.000009px;}
.fs17{font-size:90.000003px;}
.fs16{font-size:100.000004px;}
.fs19{font-size:102.000000px;}
.fs7{font-size:120.000010px;}
.fs9{font-size:127.500007px;}
.fs0{font-size:138.000001px;}
.fse{font-size:148.000008px;}
.fs15{font-size:149.999999px;}
.fsc{font-size:152.000016px;}
.fsf{font-size:156.000011px;}
.fs10{font-size:167.999999px;}
.fs4{font-size:171.899992px;}
.fs1a{font-size:174.000012px;}
.fs6{font-size:180.000006px;}
.fs1b{font-size:198.000006px;}
.fs14{font-size:216.000007px;}
.fsd{font-size:222.000001px;}
.fsb{font-size:228.000013px;}
.fs13{font-size:240.000002px;}
.fs11{font-size:270.000009px;}
.fs5{font-size:279.000009px;}
.fs12{font-size:282.000015px;}
.fs3{font-size:299.999998px;}
.fs8{font-size:306.000010px;}
.fs2{font-size:360.000012px;}
.y0{bottom:0.000000px;}
.y2b{bottom:69.293817px;}
.y28{bottom:87.114381px;}
.y27{bottom:175.963618px;}
.y2a{bottom:306.293637px;}
.y26{bottom:311.866323px;}
.y25{bottom:383.866328px;}
.y24{bottom:474.714578px;}
.y29{bottom:560.050671px;}
.y23{bottom:630.117474px;}
.y22{bottom:719.465536px;}
.y21{bottom:820.296027px;}
.y20{bottom:1080.123897px;}
.y1f{bottom:1170.123900px;}
.y9{bottom:1319.689843px;}
.y8{bottom:1515.533567px;}
.y4{bottom:1523.779485px;}
.y1{bottom:1581.335612px;}
.y38{bottom:1746.844144px;}
.y37{bottom:1797.244123px;}
.y36{bottom:1847.644113px;}
.y3e{bottom:1870.067200px;}
.y35{bottom:1898.044104px;}
.y1c{bottom:1912.335834px;}
.y34{bottom:1948.444094px;}
.y1b{bottom:1993.335825px;}
.y33{bottom:2049.244063px;}
.y1a{bottom:2074.335817px;}
.y32{bottom:2099.644054px;}
.y31{bottom:2150.044055px;}
.y39{bottom:2157.492444px;}
.y30{bottom:2200.444057px;}
.y1e{bottom:2207.767458px;}
.y2f{bottom:2250.844052px;}
.y3a{bottom:2281.829811px;}
.y3b{bottom:2283.762561px;}
.y1d{bottom:2308.280024px;}
.y18{bottom:2370.157265px;}
.y19{bottom:2373.396478px;}
.y13{bottom:2798.273115px;}
.y12{bottom:2845.073116px;}
.y11{bottom:2899.269435px;}
.y2e{bottom:2996.042077px;}
.y2d{bottom:3031.500278px;}
.y2{bottom:3222.606706px;}
.y3{bottom:3228.794206px;}
.ye{bottom:3253.751429px;}
.y17{bottom:3293.731681px;}
.y15{bottom:3294.034981px;}
.y16{bottom:3340.531682px;}
.y14{bottom:3340.834982px;}
.yf{bottom:3389.206609px;}
.y2c{bottom:3396.593460px;}
.yd{bottom:3423.055504px;}
.yc{bottom:3423.725761px;}
.y10{bottom:3443.013678px;}
.yb{bottom:3521.961113px;}
.y42{bottom:3571.556526px;}
.ya{bottom:3583.780307px;}
.y41{bottom:3621.956521px;}
.y3d{bottom:4013.664159px;}
.y3c{bottom:4071.614981px;}
.y3f{bottom:4145.885649px;}
.y6{bottom:4211.474991px;}
.y7{bottom:4314.372635px;}
.y5{bottom:4485.975000px;}
.y40{bottom:4556.883546px;}
.h16{height:65.566408px;}
.h2{height:67.265625px;}
.h1a{height:74.308594px;}
.ha{height:92.885747px;}
.h1{height:100.535157px;}
.hb{height:109.736336px;}
.hd{height:113.648446px;}
.hf{height:122.390625px;}
.he{height:123.359025px;}
.h8{height:125.231830px;}
.h19{height:126.761727px;}
.h15{height:129.101567px;}
.h1b{height:131.967778px;}
.h17{height:134.531250px;}
.h14{height:157.359380px;}
.h18{height:166.101572px;}
.hc{height:167.490483px;}
.h13{height:174.843751px;}
.h10{height:196.699225px;}
.h9{height:203.255866px;}
.h11{height:205.441417px;}
.h7{height:218.408201px;}
.h12{height:218.554686px;}
.h3{height:262.089852px;}
.h6{height:262.265633px;}
.h4{height:277.915284px;}
.h5{height:281.324113px;}
.h0{height:4677.000000px;}
.w0{width:3307.500000px;}
.x0{left:0.000000px;}
.x9{left:81.747051px;}
.x1b{left:153.882610px;}
.x2c{left:160.875005px;}
.x2d{left:163.090183px;}
.x19{left:178.338177px;}
.x1f{left:252.265756px;}
.x21{left:258.434063px;}
.x20{left:267.265752px;}
.x1a{left:303.994309px;}
.xd{left:354.458568px;}
.x8{left:401.859744px;}
.xb{left:420.862120px;}
.xa{left:430.459101px;}
.x4{left:649.746988px;}
.x5{left:722.686973px;}
.x7{left:727.703798px;}
.x2b{left:730.149413px;}
.x6{left:748.748083px;}
.xc{left:768.343520px;}
.x26{left:778.179824px;}
.x18{left:824.457595px;}
.x2f{left:890.160989px;}
.x1{left:892.746647px;}
.x30{left:1005.132367px;}
.x17{left:1064.017623px;}
.x2a{left:1075.762908px;}
.x10{left:1114.901923px;}
.x14{left:1178.238300px;}
.xf{left:1207.681351px;}
.x12{left:1312.139967px;}
.x13{left:1380.004019px;}
.xe{left:1402.089345px;}
.x2{left:1434.308558px;}
.x3{left:1448.933559px;}
.x1e{left:1451.903390px;}
.x16{left:1661.511653px;}
.x1c{left:1744.108936px;}
.x11{left:1795.228820px;}
.x15{left:1830.211371px;}
.x29{left:2162.031538px;}
.x1d{left:2198.896838px;}
.x25{left:2356.961282px;}
.x27{left:2545.473541px;}
.x28{left:2614.467684px;}
.x2e{left:3020.625097px;}
.x22{left:3130.125063px;}
.x23{left:3139.125063px;}
.x24{left:3143.964813px;}
@media print{
.v8{vertical-align:-76.000002pt;}
.va{vertical-align:-68.879962pt;}
.v5{vertical-align:-44.751001pt;}
.v4{vertical-align:-32.000001pt;}
.v3{vertical-align:-13.858280pt;}
.vd{vertical-align:-2.950400pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.120012pt;}
.v1{vertical-align:13.910800pt;}
.v6{vertical-align:15.249000pt;}
.v2{vertical-align:17.097121pt;}
.v7{vertical-align:42.500001pt;}
.ve{vertical-align:47.049602pt;}
.vc{vertical-align:50.000002pt;}
.vb{vertical-align:73.999974pt;}
.lsa{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000624pt;}
.ls5{letter-spacing:0.018137pt;}
.ls4{letter-spacing:0.133160pt;}
.ls6{letter-spacing:0.148012pt;}
.ls9{letter-spacing:95.979175pt;}
.ls2{letter-spacing:954.393751pt;}
.ls7{letter-spacing:1307.906051pt;}
.ls1{letter-spacing:2260.992592pt;}
.ls0{letter-spacing:2332.292195pt;}
.ls3{letter-spacing:5417.868925pt;}
.ws0{word-spacing:-73.866666pt;}
.ws7{word-spacing:-56.138670pt;}
.ws3{word-spacing:-44.320001pt;}
.ws11{word-spacing:-42.842670pt;}
.wsd{word-spacing:-38.410669pt;}
.wse{word-spacing:-36.933333pt;}
.ws9{word-spacing:-36.440891pt;}
.ws5{word-spacing:-31.393335pt;}
.ws4{word-spacing:-29.546669pt;}
.wsf{word-spacing:-22.160001pt;}
.ws6{word-spacing:-20.928891pt;}
.wsc{word-spacing:-0.138667pt;}
.ws10{word-spacing:-0.080000pt;}
.ws12{word-spacing:0.000000pt;}
.ws8{word-spacing:248.915514pt;}
.wsb{word-spacing:393.475639pt;}
.wsa{word-spacing:1252.950077pt;}
.ws1{word-spacing:2374.105276pt;}
.ws2{word-spacing:2490.733680pt;}
._5{margin-left:-8.213333pt;}
._1{margin-left:-6.233334pt;}
._6{margin-left:-4.986667pt;}
._3{margin-left:-3.840000pt;}
._4{margin-left:-2.688000pt;}
._0{width:1.448197pt;}
._2{width:3.433255pt;}
.fs18{font-size:44.000001pt;}
.fs1{font-size:74.666666pt;}
.fsa{font-size:75.555564pt;}
.fs17{font-size:80.000003pt;}
.fs16{font-size:88.888893pt;}
.fs19{font-size:90.666667pt;}
.fs7{font-size:106.666675pt;}
.fs9{font-size:113.333340pt;}
.fs0{font-size:122.666668pt;}
.fse{font-size:131.555563pt;}
.fs15{font-size:133.333332pt;}
.fsc{font-size:135.111126pt;}
.fsf{font-size:138.666676pt;}
.fs10{font-size:149.333333pt;}
.fs4{font-size:152.799993pt;}
.fs1a{font-size:154.666677pt;}
.fs6{font-size:160.000005pt;}
.fs1b{font-size:176.000006pt;}
.fs14{font-size:192.000006pt;}
.fsd{font-size:197.333334pt;}
.fsb{font-size:202.666678pt;}
.fs13{font-size:213.333335pt;}
.fs11{font-size:240.000008pt;}
.fs5{font-size:248.000008pt;}
.fs12{font-size:250.666680pt;}
.fs3{font-size:266.666665pt;}
.fs8{font-size:272.000009pt;}
.fs2{font-size:320.000010pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:61.594504pt;}
.y28{bottom:77.435006pt;}
.y27{bottom:156.412105pt;}
.y2a{bottom:272.261011pt;}
.y26{bottom:277.214509pt;}
.y25{bottom:341.214514pt;}
.y24{bottom:421.968514pt;}
.y29{bottom:497.822818pt;}
.y23{bottom:560.104421pt;}
.y22{bottom:639.524921pt;}
.y21{bottom:729.152024pt;}
.y20{bottom:960.110131pt;}
.y1f{bottom:1040.110134pt;}
.y9{bottom:1173.057638pt;}
.y8{bottom:1347.140948pt;}
.y4{bottom:1354.470654pt;}
.y1{bottom:1405.631655pt;}
.y38{bottom:1552.750350pt;}
.y37{bottom:1597.550331pt;}
.y36{bottom:1642.350323pt;}
.y3e{bottom:1662.281955pt;}
.y35{bottom:1687.150314pt;}
.y1c{bottom:1699.854075pt;}
.y34{bottom:1731.950306pt;}
.y1b{bottom:1771.854067pt;}
.y33{bottom:1821.550279pt;}
.y1a{bottom:1843.854059pt;}
.y32{bottom:1866.350270pt;}
.y31{bottom:1911.150271pt;}
.y39{bottom:1917.771062pt;}
.y30{bottom:1955.950273pt;}
.y1e{bottom:1962.459963pt;}
.y2f{bottom:2000.750268pt;}
.y3a{bottom:2028.293165pt;}
.y3b{bottom:2030.011165pt;}
.y1d{bottom:2051.804466pt;}
.y18{bottom:2106.806458pt;}
.y19{bottom:2109.685758pt;}
.y13{bottom:2487.353880pt;}
.y12{bottom:2528.953881pt;}
.y11{bottom:2577.128387pt;}
.y2e{bottom:2663.148513pt;}
.y2d{bottom:2694.666914pt;}
.y2{bottom:2864.539294pt;}
.y3{bottom:2870.039294pt;}
.ye{bottom:2892.223493pt;}
.y17{bottom:2927.761494pt;}
.y15{bottom:2928.031094pt;}
.y16{bottom:2969.361495pt;}
.y14{bottom:2969.631095pt;}
.yf{bottom:3012.628097pt;}
.y2c{bottom:3019.194187pt;}
.yd{bottom:3042.716004pt;}
.yc{bottom:3043.311788pt;}
.y10{bottom:3060.456602pt;}
.yb{bottom:3130.632100pt;}
.y42{bottom:3174.716912pt;}
.ya{bottom:3185.582495pt;}
.y41{bottom:3219.516907pt;}
.y3d{bottom:3567.701474pt;}
.y3c{bottom:3619.213316pt;}
.y3f{bottom:3685.231688pt;}
.y6{bottom:3743.533325pt;}
.y7{bottom:3834.997898pt;}
.y5{bottom:3987.533333pt;}
.y40{bottom:4050.563152pt;}
.h16{height:58.281252pt;}
.h2{height:59.791666pt;}
.h1a{height:66.052084pt;}
.ha{height:82.565109pt;}
.h1{height:89.364584pt;}
.hb{height:97.543410pt;}
.hd{height:101.020840pt;}
.hf{height:108.791666pt;}
.he{height:109.652466pt;}
.h8{height:111.317182pt;}
.h19{height:112.677091pt;}
.h15{height:114.756949pt;}
.h1b{height:117.304691pt;}
.h17{height:119.583333pt;}
.h14{height:139.875004pt;}
.h18{height:147.645842pt;}
.hc{height:148.880430pt;}
.h13{height:155.416668pt;}
.h10{height:174.843756pt;}
.h9{height:180.671881pt;}
.h11{height:182.614593pt;}
.h7{height:194.140623pt;}
.h12{height:194.270832pt;}
.h3{height:232.968757pt;}
.h6{height:233.125007pt;}
.h4{height:247.035808pt;}
.h5{height:250.065878pt;}
.h0{height:4157.333333pt;}
.w0{width:2940.000000pt;}
.x0{left:0.000000pt;}
.x9{left:72.664045pt;}
.x1b{left:136.784542pt;}
.x2c{left:143.000005pt;}
.x2d{left:144.969052pt;}
.x19{left:158.522824pt;}
.x1f{left:224.236227pt;}
.x21{left:229.719167pt;}
.x20{left:237.569558pt;}
.x1a{left:270.217164pt;}
.xd{left:315.074283pt;}
.x8{left:357.208661pt;}
.xb{left:374.099662pt;}
.xa{left:382.630312pt;}
.x4{left:577.552878pt;}
.x5{left:642.388421pt;}
.x7{left:646.847821pt;}
.x2b{left:649.021701pt;}
.x6{left:665.553851pt;}
.xc{left:682.972018pt;}
.x26{left:691.715399pt;}
.x18{left:732.851195pt;}
.x2f{left:791.254212pt;}
.x1{left:793.552575pt;}
.x30{left:893.450993pt;}
.x17{left:945.793442pt;}
.x2a{left:956.233696pt;}
.x10{left:991.023932pt;}
.x14{left:1047.322934pt;}
.xf{left:1073.494534pt;}
.x12{left:1166.346637pt;}
.x13{left:1226.670239pt;}
.xe{left:1246.301640pt;}
.x2{left:1274.940941pt;}
.x3{left:1287.940941pt;}
.x1e{left:1290.580791pt;}
.x16{left:1476.899247pt;}
.x1c{left:1550.319055pt;}
.x11{left:1595.758951pt;}
.x15{left:1626.854552pt;}
.x29{left:1921.805811pt;}
.x1d{left:1954.574968pt;}
.x25{left:2095.076695pt;}
.x27{left:2262.643147pt;}
.x28{left:2323.971274pt;}
.x2e{left:2685.000086pt;}
.x22{left:2782.333389pt;}
.x23{left:2790.333389pt;}
.x24{left:2794.635389pt;}
}




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