
    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_ec3a3de2a58ea5370786d9d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_145210c47825b7ab6bb8e6e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976074;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);}
.v1{vertical-align:-45.365315px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.475199px;}
.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;}
}
.ws3{word-spacing:-57.451773px;}
.ws9{word-spacing:-42.456830px;}
.wsc{word-spacing:-36.897087px;}
.ws6{word-spacing:-33.834174px;}
.ws5{word-spacing:-33.358975px;}
.ws8{word-spacing:-31.337344px;}
.ws7{word-spacing:-29.568288px;}
.ws4{word-spacing:-25.777601px;}
.wsa{word-spacing:-24.008545px;}
.wsb{word-spacing:-20.217341px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:2.797594px;}
.ws1{word-spacing:43.595887px;}
._11{margin-left:-10.177193px;}
._f{margin-left:-9.123822px;}
._5{margin-left:-6.047984px;}
._8{margin-left:-4.031990px;}
._3{margin-left:-2.086566px;}
._1{margin-left:-1.051199px;}
._0{width:1.051199px;}
._6{width:2.082960px;}
._2{width:3.153597px;}
._7{width:4.744786px;}
._e{width:31.173059px;}
._4{width:87.191775px;}
._9{width:325.293542px;}
._a{width:335.903601px;}
._10{width:413.567974px;}
._b{width:455.355983px;}
._c{width:688.731970px;}
._d{width:704.835821px;}
.fc4{color:rgb(0,176,240);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,145,150);}
.fc1{color:rgb(199,1,127);}
.fc0{color:rgb(49,39,131);}
.fs10{font-size:57.599261px;}
.fs6{font-size:63.360367px;}
.fsd{font-size:68.400413px;}
.fs7{font-size:73.440459px;}
.fs9{font-size:84.240136px;}
.fs4{font-size:89.280182px;}
.fs8{font-size:95.039814px;}
.fsa{font-size:105.119906px;}
.fs5{font-size:110.159952px;}
.fsc{font-size:120.959629px;}
.fs2{font-size:125.999675px;}
.fsb{font-size:147.600504px;}
.fs3{font-size:168.480273px;}
.fse{font-size:189.360042px;}
.fs0{font-size:210.239811px;}
.fs1{font-size:231.840640px;}
.fsf{font-size:252.720409px;}
.y0{bottom:0.000000px;}
.y3{bottom:106.916107px;}
.y2d{bottom:110.875451px;}
.y4d{bottom:114.299981px;}
.y54{bottom:115.555712px;}
.y28{bottom:120.055259px;}
.y1f{bottom:120.596678px;}
.y7f{bottom:125.635809px;}
.y91{bottom:126.372601px;}
.y4c{bottom:134.090008px;}
.y53{bottom:142.202143px;}
.y90{bottom:143.647351px;}
.y7e{bottom:144.359912px;}
.y4b{bottom:157.309121px;}
.y8f{bottom:161.106549px;}
.y8c{bottom:162.722550px;}
.y19{bottom:162.905785px;}
.y2{bottom:163.607962px;}
.y52{bottom:164.876631px;}
.y44{bottom:167.753257px;}
.y7d{bottom:176.396534px;}
.y8e{bottom:178.390053px;}
.y4a{bottom:180.539397px;}
.y78{bottom:185.753361px;}
.y17{bottom:187.195768px;}
.yb{bottom:189.538198px;}
.y51{bottom:191.336654px;}
.y42{bottom:193.685574px;}
.y7c{bottom:195.115438px;}
.y49{bottom:203.758509px;}
.y77{bottom:204.477464px;}
.y18{bottom:211.676393px;}
.y7b{bottom:213.834342px;}
.y50{bottom:214.017543px;}
.y41{bottom:219.603446px;}
.y1{bottom:220.505174px;}
.y48{bottom:226.977568px;}
.y14{bottom:235.619122px;}
.y85{bottom:236.514086px;}
.y4f{bottom:240.663975px;}
.y40{bottom:245.521246px;}
.y76{bottom:245.870913px;}
.y47{bottom:246.773231px;}
.y65{bottom:252.357636px;}
.y84{bottom:255.232990px;}
.ya{bottom:256.675468px;}
.y4e{bottom:263.338462px;}
.y68{bottom:264.422239px;}
.y75{bottom:264.595016px;}
.y46{bottom:266.753730px;}
.y8b{bottom:268.022142px;}
.y43{bottom:271.439118px;}
.y83{bottom:273.951894px;}
.y21{bottom:274.132974px;}
.y64{bottom:276.475933px;}
.y94{bottom:288.181234px;}
.y67{bottom:288.540536px;}
.y1d{bottom:292.143636px;}
.y9{bottom:292.328245px;}
.y63{bottom:300.594230px;}
.y7a{bottom:305.998912px;}
.y13{bottom:311.400452px;}
.y66{bottom:312.844089px;}
.y22{bottom:313.920299px;}
.y74{bottom:315.360989px;}
.y79{bottom:324.717817px;}
.y62{bottom:324.897783px;}
.y93{bottom:338.585407px;}
.y12{bottom:349.206487px;}
.y3f{bottom:352.626672px;}
.y82{bottom:356.754388px;}
.y8{bottom:359.465515px;}
.y3b{bottom:365.585608px;}
.y71{bottom:366.116464px;}
.y8a{bottom:373.142067px;}
.y81{bottom:375.476452px;}
.y3e{bottom:378.544508px;}
.y70{bottom:384.836388px;}
.y11{bottom:387.181735px;}
.y92{bottom:387.539556px;}
.y3a{bottom:391.503444px;}
.y80{bottom:394.196375px;}
.y3d{bottom:404.462380px;}
.y23{bottom:410.758018px;}
.y6f{bottom:416.874029px;}
.y39{bottom:417.421280px;}
.y10{bottom:424.987817px;}
.y73{bottom:426.234016px;}
.y7{bottom:426.602785px;}
.y3c{bottom:430.380216px;}
.y6e{bottom:435.594004px;}
.y20{bottom:438.836118px;}
.y60{bottom:439.200837px;}
.y72{bottom:444.953940px;}
.y6d{bottom:454.313927px;}
.yf{bottom:462.963066px;}
.y24{bottom:463.139949px;}
.y5f{bottom:463.319134px;}
.y1c{bottom:464.578210px;}
.y8d{bottom:478.082916px;}
.y89{bottom:478.441620px;}
.y6c{bottom:486.359926px;}
.y5e{bottom:487.437431px;}
.y61{bottom:487.622687px;}
.y6{bottom:493.740055px;}
.ye{bottom:500.753728px;}
.y25{bottom:502.737924px;}
.y6b{bottom:505.079850px;}
.y38{bottom:511.556193px;}
.y5d{bottom:523.082313px;}
.y33{bottom:524.515093px;}
.y5a{bottom:526.856237px;}
.y1b{bottom:531.720732px;}
.y37{bottom:537.485606px;}
.y5c{bottom:549.541018px;}
.y32{bottom:550.444542px;}
.y59{bottom:553.314973px;}
.y5{bottom:561.061910px;}
.y36{bottom:563.403478px;}
.y88{bottom:569.163978px;}
.y5b{bottom:572.215537px;}
.y58{bottom:575.999754px;}
.y31{bottom:576.362378px;}
.y2b{bottom:588.061982px;}
.y35{bottom:589.321314px;}
.y1a{bottom:594.719780px;}
.y87{bottom:597.959034px;}
.y57{bottom:598.684535px;}
.y6a{bottom:600.473862px;}
.y30{bottom:602.280214px;}
.y27{bottom:604.078456px;}
.y2a{bottom:613.440962px;}
.y34{bottom:615.239150px;}
.y56{bottom:625.318068px;}
.y26{bottom:632.339809px;}
.y69{bottom:633.415890px;}
.y29{bottom:638.634851px;}
.y55{bottom:648.002865px;}
.y2e{bottom:665.096172px;}
.y4{bottom:676.082221px;}
.yd{bottom:696.241438px;}
.y16{bottom:696.426544px;}
.y86{bottom:715.501201px;}
.y2f{bottom:719.090754px;}
.y45{bottom:720.533180px;}
.y1e{bottom:722.345190px;}
.yc{bottom:741.590444px;}
.y15{bottom:741.775551px;}
.y2c{bottom:746.093179px;}
.h12{height:44.043185px;}
.h8{height:48.448406px;}
.hf{height:52.302269px;}
.h9{height:56.156132px;}
.hb{height:64.414089px;}
.h6{height:68.267952px;}
.ha{height:72.672045px;}
.hc{height:80.379772px;}
.h7{height:84.233635px;}
.he{height:92.491591px;}
.h4{height:96.345454px;}
.hd{height:112.862495px;}
.h5{height:128.828177px;}
.h10{height:144.793860px;}
.h2{height:160.759543px;}
.h3{height:177.276583px;}
.h11{height:193.242266px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x4{left:60.292816px;}
.xd{left:63.538261px;}
.x1{left:75.606259px;}
.x13{left:77.034227px;}
.x17{left:88.193622px;}
.x46{left:91.974799px;}
.x34{left:93.781819px;}
.x2{left:96.307823px;}
.x39{left:108.364570px;}
.x47{left:121.504256px;}
.x4e{left:126.895845px;}
.x14{left:132.118334px;}
.x3{left:149.578475px;}
.xa{left:168.478872px;}
.x18{left:171.541696px;}
.x5{left:193.676540px;}
.x11{left:196.196842px;}
.x10{left:214.924518px;}
.x1a{left:223.561672px;}
.x4d{left:233.097009px;}
.x25{left:234.896382px;}
.x2e{left:241.915317px;}
.x4b{left:245.694689px;}
.x1d{left:256.138799px;}
.x26{left:259.561249px;}
.x4c{left:261.003279px;}
.x12{left:262.438474px;}
.x1b{left:277.914894px;}
.x2d{left:281.882619px;}
.x1c{left:286.024359px;}
.x19{left:303.836568px;}
.xf{left:310.320008px;}
.x9{left:370.256852px;}
.xe{left:407.158875px;}
.x48{left:460.612286px;}
.x43{left:473.941325px;}
.x3a{left:480.600301px;}
.x3c{left:481.864526px;}
.x45{left:488.338181px;}
.x49{left:490.141758px;}
.xc{left:491.217241px;}
.x2f{left:499.318697px;}
.x27{left:502.195856px;}
.x44{left:503.999296px;}
.x3b{left:517.502471px;}
.x29{left:526.315468px;}
.x1e{left:529.923530px;}
.x1f{left:533.520014px;}
.x21{left:537.835789px;}
.x20{left:548.103159px;}
.x28{left:556.201046px;}
.x41{left:651.956800px;}
.x42{left:663.476480px;}
.x3f{left:671.759283px;}
.x3e{left:681.480691px;}
.x3d{left:686.528080px;}
.x15{left:689.407508px;}
.x40{left:704.347035px;}
.x16{left:716.039865px;}
.xb{left:736.742168px;}
.x2a{left:766.259978px;}
.x2c{left:773.634221px;}
.x22{left:788.034605px;}
.x31{left:791.819621px;}
.x24{left:796.503715px;}
.x32{left:803.334135px;}
.x30{left:814.681892px;}
.x2b{left:816.124862px;}
.x23{left:826.377680px;}
.x33{left:830.162697px;}
.x37{left:855.358227px;}
.x4a{left:858.788624px;}
.x38{left:861.303214px;}
.x35{left:868.501468px;}
.x36{left:877.859235px;}
.x7{left:895.676339px;}
.x8{left:917.282482px;}
.x6{left:934.202368px;}
@media print{
.v1{vertical-align:-40.324725pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.422399pt;}
.ws3{word-spacing:-51.068243pt;}
.ws9{word-spacing:-37.739404pt;}
.wsc{word-spacing:-32.797411pt;}
.ws6{word-spacing:-30.074821pt;}
.ws5{word-spacing:-29.652422pt;}
.ws8{word-spacing:-27.855417pt;}
.ws7{word-spacing:-26.282923pt;}
.ws4{word-spacing:-22.913423pt;}
.wsa{word-spacing:-21.340929pt;}
.wsb{word-spacing:-17.970970pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:2.486751pt;}
.ws1{word-spacing:38.751900pt;}
._11{margin-left:-9.046394pt;}
._f{margin-left:-8.110064pt;}
._5{margin-left:-5.375986pt;}
._8{margin-left:-3.583991pt;}
._3{margin-left:-1.854725pt;}
._1{margin-left:-0.934399pt;}
._0{width:0.934399pt;}
._6{width:1.851520pt;}
._2{width:2.803197pt;}
._7{width:4.217588pt;}
._e{width:27.709386pt;}
._4{width:77.503800pt;}
._9{width:289.149815pt;}
._a{width:298.580978pt;}
._10{width:367.615977pt;}
._b{width:404.760873pt;}
._c{width:612.206196pt;}
._d{width:626.520730pt;}
.fs10{font-size:51.199344pt;}
.fs6{font-size:56.320326pt;}
.fsd{font-size:60.800367pt;}
.fs7{font-size:65.280408pt;}
.fs9{font-size:74.880121pt;}
.fs4{font-size:79.360162pt;}
.fs8{font-size:84.479834pt;}
.fsa{font-size:93.439916pt;}
.fs5{font-size:97.919957pt;}
.fsc{font-size:107.519670pt;}
.fs2{font-size:111.999711pt;}
.fsb{font-size:131.200448pt;}
.fs3{font-size:149.760243pt;}
.fse{font-size:168.320037pt;}
.fs0{font-size:186.879832pt;}
.fs1{font-size:206.080569pt;}
.fsf{font-size:224.640364pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:95.036540pt;}
.y2d{bottom:98.555956pt;}
.y4d{bottom:101.599983pt;}
.y54{bottom:102.716188pt;}
.y28{bottom:106.715786pt;}
.y1f{bottom:107.197047pt;}
.y7f{bottom:111.676275pt;}
.y91{bottom:112.331201pt;}
.y4c{bottom:119.191119pt;}
.y53{bottom:126.401905pt;}
.y90{bottom:127.686534pt;}
.y7e{bottom:128.319921pt;}
.y4b{bottom:139.830330pt;}
.y8f{bottom:143.205821pt;}
.y8c{bottom:144.642267pt;}
.y19{bottom:144.805142pt;}
.y2{bottom:145.429300pt;}
.y52{bottom:146.557005pt;}
.y44{bottom:149.114007pt;}
.y7d{bottom:156.796919pt;}
.y8e{bottom:158.568936pt;}
.y4a{bottom:160.479464pt;}
.y78{bottom:165.114099pt;}
.y17{bottom:166.396238pt;}
.yb{bottom:168.478399pt;}
.y51{bottom:170.077026pt;}
.y42{bottom:172.164955pt;}
.y7c{bottom:173.435945pt;}
.y49{bottom:181.118675pt;}
.y77{bottom:181.757745pt;}
.y18{bottom:188.156794pt;}
.y7b{bottom:190.074971pt;}
.y50{bottom:190.237816pt;}
.y41{bottom:195.203063pt;}
.y1{bottom:196.004599pt;}
.y48{bottom:201.757838pt;}
.y14{bottom:209.439220pt;}
.y85{bottom:210.234743pt;}
.y4f{bottom:213.923533pt;}
.y40{bottom:218.241108pt;}
.y76{bottom:218.551923pt;}
.y47{bottom:219.353983pt;}
.y65{bottom:224.317899pt;}
.y84{bottom:226.873769pt;}
.ya{bottom:228.155972pt;}
.y4e{bottom:234.078633pt;}
.y68{bottom:235.041990pt;}
.y75{bottom:235.195569pt;}
.y46{bottom:237.114427pt;}
.y8b{bottom:238.241904pt;}
.y43{bottom:241.279216pt;}
.y83{bottom:243.512795pt;}
.y21{bottom:243.673755pt;}
.y64{bottom:245.756385pt;}
.y94{bottom:256.161097pt;}
.y67{bottom:256.480477pt;}
.y1d{bottom:259.683232pt;}
.y9{bottom:259.847329pt;}
.y63{bottom:267.194872pt;}
.y7a{bottom:271.999033pt;}
.y13{bottom:276.800402pt;}
.y66{bottom:278.083635pt;}
.y22{bottom:279.040266pt;}
.y74{bottom:280.320879pt;}
.y79{bottom:288.638059pt;}
.y62{bottom:288.798029pt;}
.y93{bottom:300.964807pt;}
.y12{bottom:310.405766pt;}
.y3f{bottom:313.445931pt;}
.y82{bottom:317.115011pt;}
.y8{bottom:319.524902pt;}
.y3b{bottom:324.964985pt;}
.y71{bottom:325.436857pt;}
.y8a{bottom:331.681837pt;}
.y81{bottom:333.756846pt;}
.y3e{bottom:336.484007pt;}
.y70{bottom:342.076789pt;}
.y11{bottom:344.161543pt;}
.y92{bottom:344.479605pt;}
.y3a{bottom:348.003061pt;}
.y80{bottom:350.396778pt;}
.y3d{bottom:359.522115pt;}
.y23{bottom:365.118238pt;}
.y6f{bottom:370.554693pt;}
.y39{bottom:371.041138pt;}
.y10{bottom:377.766949pt;}
.y73{bottom:378.874681pt;}
.y7{bottom:379.202475pt;}
.y3c{bottom:382.560192pt;}
.y6e{bottom:387.194670pt;}
.y20{bottom:390.076550pt;}
.y60{bottom:390.400744pt;}
.y72{bottom:395.514613pt;}
.y6d{bottom:403.834602pt;}
.yf{bottom:411.522725pt;}
.y24{bottom:411.679955pt;}
.y5f{bottom:411.839230pt;}
.y1c{bottom:412.958409pt;}
.y8d{bottom:424.962592pt;}
.y89{bottom:425.281440pt;}
.y6c{bottom:432.319934pt;}
.y5e{bottom:433.277717pt;}
.y61{bottom:433.442388pt;}
.y6{bottom:438.880048pt;}
.ye{bottom:445.114425pt;}
.y25{bottom:446.878155pt;}
.y6b{bottom:448.959866pt;}
.y38{bottom:454.716616pt;}
.y5d{bottom:464.962056pt;}
.y33{bottom:466.235638pt;}
.y5a{bottom:468.316655pt;}
.y1b{bottom:472.640650pt;}
.y37{bottom:477.764983pt;}
.y5c{bottom:488.480905pt;}
.y32{bottom:489.284037pt;}
.y59{bottom:491.835532pt;}
.y5{bottom:498.721698pt;}
.y36{bottom:500.803091pt;}
.y88{bottom:505.923536pt;}
.y5b{bottom:508.636032pt;}
.y58{bottom:511.999781pt;}
.y31{bottom:512.322114pt;}
.y2b{bottom:522.721762pt;}
.y35{bottom:523.841168pt;}
.y1a{bottom:528.639804pt;}
.y87{bottom:531.519141pt;}
.y57{bottom:532.164031pt;}
.y6a{bottom:533.754544pt;}
.y30{bottom:535.360190pt;}
.y27{bottom:536.958628pt;}
.y2a{bottom:545.280855pt;}
.y34{bottom:546.879244pt;}
.y56{bottom:555.838283pt;}
.y26{bottom:562.079830pt;}
.y69{bottom:563.036346pt;}
.y29{bottom:567.675423pt;}
.y55{bottom:576.002546pt;}
.y2e{bottom:591.196597pt;}
.y4{bottom:600.961974pt;}
.yd{bottom:618.881278pt;}
.y16{bottom:619.045817pt;}
.y86{bottom:636.001067pt;}
.y2f{bottom:639.191781pt;}
.y45{bottom:640.473938pt;}
.y1e{bottom:642.084613pt;}
.yc{bottom:659.191506pt;}
.y15{bottom:659.356045pt;}
.y2c{bottom:663.193937pt;}
.h12{height:39.149498pt;}
.h8{height:43.065250pt;}
.hf{height:46.490906pt;}
.h9{height:49.916562pt;}
.hb{height:57.256968pt;}
.h6{height:60.682624pt;}
.ha{height:64.597373pt;}
.hc{height:71.448686pt;}
.h7{height:74.874342pt;}
.he{height:82.214748pt;}
.h4{height:85.640404pt;}
.hd{height:100.322217pt;}
.h5{height:114.513935pt;}
.h10{height:128.705654pt;}
.h2{height:142.897372pt;}
.h3{height:157.579185pt;}
.h11{height:171.770903pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4{left:53.593614pt;}
.xd{left:56.478455pt;}
.x1{left:67.205564pt;}
.x13{left:68.474869pt;}
.x17{left:78.394331pt;}
.x46{left:81.755377pt;}
.x34{left:83.361617pt;}
.x2{left:85.606954pt;}
.x39{left:96.324062pt;}
.x47{left:108.003783pt;}
.x4e{left:112.796307pt;}
.x14{left:117.438519pt;}
.x3{left:132.958644pt;}
.xa{left:149.758998pt;}
.x18{left:152.481508pt;}
.x5{left:172.156924pt;}
.x11{left:174.397193pt;}
.x10{left:191.044016pt;}
.x1a{left:198.721486pt;}
.x4d{left:207.197341pt;}
.x25{left:208.796784pt;}
.x2e{left:215.035837pt;}
.x4b{left:218.395279pt;}
.x1d{left:227.678932pt;}
.x26{left:230.721111pt;}
.x4c{left:232.002915pt;}
.x12{left:233.278643pt;}
.x1b{left:247.035462pt;}
.x2d{left:250.562328pt;}
.x1c{left:254.243875pt;}
.x19{left:270.076949pt;}
.xf{left:275.840007pt;}
.x9{left:329.117202pt;}
.xe{left:361.919000pt;}
.x48{left:409.433143pt;}
.x43{left:421.281178pt;}
.x3a{left:427.200268pt;}
.x3c{left:428.324023pt;}
.x45{left:434.078383pt;}
.x49{left:435.681562pt;}
.xc{left:436.637547pt;}
.x2f{left:443.838842pt;}
.x27{left:446.396317pt;}
.x44{left:447.999374pt;}
.x3b{left:460.002196pt;}
.x29{left:467.835971pt;}
.x1e{left:471.043138pt;}
.x1f{left:474.240013pt;}
.x21{left:478.076257pt;}
.x20{left:487.202808pt;}
.x28{left:494.400930pt;}
.x41{left:579.517155pt;}
.x42{left:589.756871pt;}
.x3f{left:597.119362pt;}
.x3e{left:605.760614pt;}
.x3d{left:610.247182pt;}
.x15{left:612.806674pt;}
.x40{left:626.086254pt;}
.x16{left:636.479880pt;}
.xb{left:654.881927pt;}
.x2a{left:681.119981pt;}
.x2c{left:687.674863pt;}
.x22{left:700.475204pt;}
.x31{left:703.839663pt;}
.x24{left:708.003302pt;}
.x32{left:714.074787pt;}
.x30{left:724.161682pt;}
.x2b{left:725.444321pt;}
.x23{left:734.557938pt;}
.x33{left:737.922397pt;}
.x37{left:760.318424pt;}
.x4a{left:763.367666pt;}
.x38{left:765.602857pt;}
.x35{left:772.001305pt;}
.x36{left:780.319320pt;}
.x7{left:796.156745pt;}
.x8{left:815.362207pt;}
.x6{left:830.402105pt;}
}




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