
    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_398a1c4002e92b25ec2ab862.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_006714b1d0abbe355f1f0226.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_138fe690adb53599d99ff0ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927734;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.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053898px;}
.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:-16.528613px;}
.ws0{word-spacing:-13.421233px;}
.ws3{word-spacing:-12.037163px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-5.792777px;}
._4{margin-left:-4.357283px;}
._2{margin-left:-3.279130px;}
._5{margin-left:-2.270167px;}
._0{margin-left:-1.107934px;}
._1{width:1.043369px;}
._1d{width:2.346982px;}
._6{width:3.665327px;}
._7{width:4.815203px;}
._18{width:5.995901px;}
._16{width:7.222578px;}
._19{width:8.283912px;}
._b{width:9.484937px;}
._c{width:10.518989px;}
._8{width:12.287339px;}
._9{width:13.530801px;}
._a{width:14.585987px;}
._d{width:16.583660px;}
._28{width:19.247611px;}
._1c{width:20.302546px;}
._17{width:21.881697px;}
._1e{width:23.095907px;}
._f{width:24.909573px;}
._e{width:25.996956px;}
._1a{width:27.720057px;}
._1b{width:28.875035px;}
._1f{width:30.007718px;}
._23{width:31.984038px;}
._22{width:33.075526px;}
._21{width:34.278400px;}
._20{width:35.375443px;}
._24{width:36.858168px;}
._27{width:38.355393px;}
._2e{width:39.762360px;}
._2d{width:42.551369px;}
._2b{width:47.402722px;}
._38{width:57.006402px;}
._39{width:58.070326px;}
._29{width:60.054344px;}
._2a{width:61.895090px;}
._32{width:75.600898px;}
._2f{width:79.733562px;}
._2c{width:83.550133px;}
._25{width:127.473927px;}
._26{width:128.605608px;}
._3c{width:130.773935px;}
._3b{width:133.883664px;}
._3a{width:135.212019px;}
._30{width:175.615953px;}
._35{width:198.863340px;}
._34{width:199.907831px;}
._31{width:270.297154px;}
._37{width:288.711091px;}
._36{width:289.773606px;}
._33{width:321.392267px;}
._11{width:347.762007px;}
._15{width:416.521035px;}
._10{width:517.098417px;}
._13{width:542.138490px;}
._12{width:886.330575px;}
._14{width:982.429736px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.148650px;}
.fs0{font-size:66.114450px;}
.fs1{font-size:71.863650px;}
.fs3{font-size:75.950654px;}
.fs2{font-size:84.080250px;}
.y0{bottom:0.000000px;}
.y5c{bottom:3.239972px;}
.y5a{bottom:3.240005px;}
.y7d{bottom:3.240006px;}
.y5{bottom:58.139992px;}
.y4{bottom:80.100013px;}
.y34{bottom:116.639992px;}
.y7b{bottom:117.539977px;}
.y58{bottom:128.700027px;}
.y33{bottom:135.179970px;}
.y7a{bottom:137.700027px;}
.y57{bottom:149.039977px;}
.y32{bottom:153.899986px;}
.y79{bottom:158.039977px;}
.y56{bottom:169.200027px;}
.y31{bottom:172.440033px;}
.y78{bottom:178.200027px;}
.y55{bottom:189.539977px;}
.y30{bottom:190.980011px;}
.y77{bottom:198.539977px;}
.y54{bottom:209.700027px;}
.y2f{bottom:209.879998px;}
.y76{bottom:218.700027px;}
.y2e{bottom:230.039977px;}
.y75{bottom:239.039977px;}
.y53{bottom:250.200027px;}
.y2d{bottom:250.379998px;}
.y74{bottom:259.200027px;}
.y2c{bottom:270.539977px;}
.y73{bottom:279.539977px;}
.y52{bottom:290.700027px;}
.y2b{bottom:290.879998px;}
.y72{bottom:299.700027px;}
.y2a{bottom:311.039977px;}
.y71{bottom:320.039977px;}
.y51{bottom:331.200027px;}
.y29{bottom:331.379998px;}
.y70{bottom:340.200027px;}
.y28{bottom:351.539977px;}
.y6f{bottom:360.539977px;}
.y50{bottom:371.700027px;}
.y27{bottom:371.879998px;}
.y6e{bottom:380.700027px;}
.y26{bottom:392.039977px;}
.y6d{bottom:401.039977px;}
.y4f{bottom:412.200027px;}
.y25{bottom:412.379998px;}
.y6c{bottom:421.200027px;}
.y24{bottom:432.539977px;}
.y6b{bottom:441.539977px;}
.y4e{bottom:452.700027px;}
.y23{bottom:452.879998px;}
.y6a{bottom:461.700027px;}
.y22{bottom:473.039977px;}
.y69{bottom:482.039977px;}
.y96{bottom:484.200027px;}
.y4d{bottom:493.200027px;}
.y21{bottom:493.379998px;}
.y95{bottom:497.700027px;}
.y68{bottom:502.200027px;}
.y94{bottom:511.200027px;}
.y20{bottom:513.539977px;}
.y93{bottom:521.460022px;}
.y67{bottom:522.539977px;}
.y4c{bottom:533.700027px;}
.y1f{bottom:533.879998px;}
.y92{bottom:538.919975px;}
.y66{bottom:542.700027px;}
.y91{bottom:549.179970px;}
.y90{bottom:552.419975px;}
.y1e{bottom:554.039977px;}
.y65{bottom:563.039977px;}
.y8f{bottom:565.919975px;}
.y4b{bottom:574.200027px;}
.y1d{bottom:574.379998px;}
.y8e{bottom:579.419975px;}
.y64{bottom:583.200027px;}
.y8d{bottom:589.679970px;}
.y1c{bottom:594.539977px;}
.y63{bottom:603.539977px;}
.y8c{bottom:607.139992px;}
.y4a{bottom:614.699993px;}
.y1b{bottom:614.879998px;}
.y8b{bottom:620.639992px;}
.y62{bottom:623.699993px;}
.y8a{bottom:634.139992px;}
.y1a{bottom:635.040012px;}
.y61{bottom:644.040012px;}
.y89{bottom:647.639992px;}
.y49{bottom:655.199993px;}
.y19{bottom:655.379998px;}
.y88{bottom:657.899986px;}
.y60{bottom:663.660015px;}
.y18{bottom:675.180004px;}
.y48{bottom:675.540012px;}
.y5f{bottom:681.660015px;}
.y87{bottom:689.040012px;}
.y17{bottom:693.899986px;}
.y47{bottom:695.699993px;}
.y5e{bottom:699.660015px;}
.y86{bottom:702.540012px;}
.y16{bottom:712.800007px;}
.y46{bottom:716.040012px;}
.y5d{bottom:717.660015px;}
.y85{bottom:726.300007px;}
.y15{bottom:732.959988px;}
.y5b{bottom:735.660015px;}
.y45{bottom:736.199993px;}
.y84{bottom:743.759994px;}
.y14{bottom:753.300007px;}
.y59{bottom:754.379998px;}
.y44{bottom:756.540012px;}
.y83{bottom:757.259994px;}
.y82{bottom:770.759994px;}
.y13{bottom:773.100013px;}
.y43{bottom:776.699993px;}
.y81{bottom:784.259994px;}
.y12{bottom:792.000000px;}
.y80{bottom:794.519989px;}
.y42{bottom:797.040012px;}
.y11{bottom:811.800007px;}
.y41{bottom:817.199993px;}
.y7f{bottom:822.600013px;}
.y10{bottom:830.699993px;}
.y7e{bottom:836.100013px;}
.y40{bottom:837.540012px;}
.y7c{bottom:846.360008px;}
.yf{bottom:851.040012px;}
.y3f{bottom:857.699993px;}
.ye{bottom:871.199993px;}
.y3e{bottom:878.040012px;}
.yd{bottom:891.540012px;}
.y3d{bottom:898.199993px;}
.yc{bottom:911.699993px;}
.y3c{bottom:918.539996px;}
.y3b{bottom:938.699993px;}
.yb{bottom:941.939999px;}
.y3a{bottom:959.039995px;}
.ya{bottom:963.360008px;}
.y39{bottom:979.199993px;}
.y9{bottom:986.939999px;}
.y38{bottom:999.539996px;}
.y8{bottom:1010.520006px;}
.y37{bottom:1019.699993px;}
.y7{bottom:1034.099997px;}
.y36{bottom:1040.039996px;}
.y6{bottom:1057.860000px;}
.y35{bottom:1060.200002px;}
.y3{bottom:1080.900003px;}
.y2{bottom:1102.140000px;}
.y1{bottom:1120.680000px;}
.h8{height:13.500000px;}
.hb{height:13.680038px;}
.h9{height:32.608485px;}
.ha{height:40.296282px;}
.h6{height:48.669376px;}
.h7{height:51.437284px;}
.h1{height:55.332113px;}
.h3{height:56.943021px;}
.h5{height:57.301342px;}
.h4{height:60.143699px;}
.h2{height:62.284169px;}
.h0{height:1188.000000px;}
.w3{width:1.439964px;}
.w2{width:1.439965px;}
.w1{width:1.620002px;}
.wf{width:3.780000px;}
.w7{width:6.479976px;}
.w5{width:6.480011px;}
.w16{width:7.739972px;}
.we{width:13.860000px;}
.w14{width:35.099980px;}
.w13{width:40.860008px;}
.w12{width:46.799999px;}
.w4{width:48.960005px;}
.w18{width:54.540003px;}
.w10{width:55.800007px;}
.w8{width:57.599980px;}
.wa{width:60.660007px;}
.w11{width:69.300007px;}
.wc{width:79.199993px;}
.w15{width:80.100006px;}
.w17{width:80.459988px;}
.w19{width:91.800007px;}
.w9{width:111.779984px;}
.wd{width:142.379998px;}
.w6{width:219.420009px;}
.wb{width:231.120003px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:127.620002px;}
.x21{left:136.079999px;}
.x24{left:149.939999px;}
.x25{left:153.719999px;}
.x18{left:157.139992px;}
.x4{left:175.500000px;}
.x1a{left:181.620002px;}
.x9{left:186.120002px;}
.x7{left:200.879998px;}
.x19{left:206.099997px;}
.x1d{left:243.360008px;}
.x1b{left:247.680005px;}
.x12{left:250.919992px;}
.xf{left:266.219999px;}
.x5{left:367.740006px;}
.xe{left:373.860008px;}
.x2{left:444.600014px;}
.x1c{left:467.100014px;}
.x27{left:471.600014px;}
.xa{left:483.839985px;}
.x22{left:487.800007px;}
.x1e{left:505.800007px;}
.x1f{left:508.139992px;}
.x26{left:528.660015px;}
.x6{left:577.980011px;}
.xb{left:587.340019px;}
.x10{left:591.120002px;}
.x23{left:595.080025px;}
.xc{left:609.480011px;}
.x11{left:612.179970px;}
.x8{left:626.220017px;}
.xd{left:637.200027px;}
.x20{left:645.840019px;}
.x13{left:753.480011px;}
.x14{left:756.899987px;}
.x15{left:761.940033px;}
.x16{left:766.799973px;}
.x17{left:771.840019px;}
.x3{left:790.379998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047909pt;}
.ws1{word-spacing:-14.692100pt;}
.ws0{word-spacing:-11.929985pt;}
.ws3{word-spacing:-10.699700pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-5.149135pt;}
._4{margin-left:-3.873140pt;}
._2{margin-left:-2.914782pt;}
._5{margin-left:-2.017926pt;}
._0{margin-left:-0.984830pt;}
._1{width:0.927439pt;}
._1d{width:2.086206pt;}
._6{width:3.258068pt;}
._7{width:4.280181pt;}
._18{width:5.329690pt;}
._16{width:6.420069pt;}
._19{width:7.363477pt;}
._b{width:8.431055pt;}
._c{width:9.350212pt;}
._8{width:10.922079pt;}
._9{width:12.027378pt;}
._a{width:12.965322pt;}
._d{width:14.741031pt;}
._28{width:17.108987pt;}
._1c{width:18.046708pt;}
._17{width:19.450398pt;}
._1e{width:20.529695pt;}
._f{width:22.141843pt;}
._e{width:23.108405pt;}
._1a{width:24.640051pt;}
._1b{width:25.666698pt;}
._1f{width:26.673527pt;}
._23{width:28.430256pt;}
._22{width:29.400467pt;}
._21{width:30.469689pt;}
._20{width:31.444838pt;}
._24{width:32.762816pt;}
._27{width:34.093682pt;}
._2e{width:35.344320pt;}
._2d{width:37.823439pt;}
._2b{width:42.135753pt;}
._38{width:50.672357pt;}
._39{width:51.618068pt;}
._29{width:53.381639pt;}
._2a{width:55.017857pt;}
._32{width:67.200799pt;}
._2f{width:70.874277pt;}
._2c{width:74.266785pt;}
._25{width:113.310157pt;}
._26{width:114.316096pt;}
._3c{width:116.243498pt;}
._3b{width:119.007701pt;}
._3a{width:120.188461pt;}
._30{width:156.103069pt;}
._35{width:176.767413pt;}
._34{width:177.695850pt;}
._31{width:240.264137pt;}
._37{width:256.632081pt;}
._36{width:257.576539pt;}
._33{width:285.682015pt;}
._11{width:309.121784pt;}
._15{width:370.240920pt;}
._10{width:459.643037pt;}
._13{width:481.900880pt;}
._12{width:787.849400pt;}
._14{width:873.270876pt;}
.fs4{font-size:42.798800pt;}
.fs0{font-size:58.768400pt;}
.fs1{font-size:63.878800pt;}
.fs3{font-size:67.511693pt;}
.fs2{font-size:74.738000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.879975pt;}
.y5a{bottom:2.880004pt;}
.y7d{bottom:2.880005pt;}
.y5{bottom:51.679993pt;}
.y4{bottom:71.200012pt;}
.y34{bottom:103.679993pt;}
.y7b{bottom:104.479980pt;}
.y58{bottom:114.400024pt;}
.y33{bottom:120.159973pt;}
.y7a{bottom:122.400024pt;}
.y57{bottom:132.479980pt;}
.y32{bottom:136.799988pt;}
.y79{bottom:140.479980pt;}
.y56{bottom:150.400024pt;}
.y31{bottom:153.280029pt;}
.y78{bottom:158.400024pt;}
.y55{bottom:168.479980pt;}
.y30{bottom:169.760010pt;}
.y77{bottom:176.479980pt;}
.y54{bottom:186.400024pt;}
.y2f{bottom:186.559998pt;}
.y76{bottom:194.400024pt;}
.y2e{bottom:204.479980pt;}
.y75{bottom:212.479980pt;}
.y53{bottom:222.400024pt;}
.y2d{bottom:222.559998pt;}
.y74{bottom:230.400024pt;}
.y2c{bottom:240.479980pt;}
.y73{bottom:248.479980pt;}
.y52{bottom:258.400024pt;}
.y2b{bottom:258.559998pt;}
.y72{bottom:266.400024pt;}
.y2a{bottom:276.479980pt;}
.y71{bottom:284.479980pt;}
.y51{bottom:294.400024pt;}
.y29{bottom:294.559998pt;}
.y70{bottom:302.400024pt;}
.y28{bottom:312.479980pt;}
.y6f{bottom:320.479980pt;}
.y50{bottom:330.400024pt;}
.y27{bottom:330.559998pt;}
.y6e{bottom:338.400024pt;}
.y26{bottom:348.479980pt;}
.y6d{bottom:356.479980pt;}
.y4f{bottom:366.400024pt;}
.y25{bottom:366.559998pt;}
.y6c{bottom:374.400024pt;}
.y24{bottom:384.479980pt;}
.y6b{bottom:392.479980pt;}
.y4e{bottom:402.400024pt;}
.y23{bottom:402.559998pt;}
.y6a{bottom:410.400024pt;}
.y22{bottom:420.479980pt;}
.y69{bottom:428.479980pt;}
.y96{bottom:430.400024pt;}
.y4d{bottom:438.400024pt;}
.y21{bottom:438.559998pt;}
.y95{bottom:442.400024pt;}
.y68{bottom:446.400024pt;}
.y94{bottom:454.400024pt;}
.y20{bottom:456.479980pt;}
.y93{bottom:463.520020pt;}
.y67{bottom:464.479980pt;}
.y4c{bottom:474.400024pt;}
.y1f{bottom:474.559998pt;}
.y92{bottom:479.039978pt;}
.y66{bottom:482.400024pt;}
.y91{bottom:488.159973pt;}
.y90{bottom:491.039978pt;}
.y1e{bottom:492.479980pt;}
.y65{bottom:500.479980pt;}
.y8f{bottom:503.039978pt;}
.y4b{bottom:510.400024pt;}
.y1d{bottom:510.559998pt;}
.y8e{bottom:515.039978pt;}
.y64{bottom:518.400024pt;}
.y8d{bottom:524.159973pt;}
.y1c{bottom:528.479980pt;}
.y63{bottom:536.479980pt;}
.y8c{bottom:539.679993pt;}
.y4a{bottom:546.399994pt;}
.y1b{bottom:546.559998pt;}
.y8b{bottom:551.679993pt;}
.y62{bottom:554.399994pt;}
.y8a{bottom:563.679993pt;}
.y1a{bottom:564.480011pt;}
.y61{bottom:572.480011pt;}
.y89{bottom:575.679993pt;}
.y49{bottom:582.399994pt;}
.y19{bottom:582.559998pt;}
.y88{bottom:584.799988pt;}
.y60{bottom:589.920013pt;}
.y18{bottom:600.160004pt;}
.y48{bottom:600.480011pt;}
.y5f{bottom:605.920013pt;}
.y87{bottom:612.480011pt;}
.y17{bottom:616.799988pt;}
.y47{bottom:618.399994pt;}
.y5e{bottom:621.920013pt;}
.y86{bottom:624.480011pt;}
.y16{bottom:633.600006pt;}
.y46{bottom:636.480011pt;}
.y5d{bottom:637.920013pt;}
.y85{bottom:645.600006pt;}
.y15{bottom:651.519989pt;}
.y5b{bottom:653.920013pt;}
.y45{bottom:654.399994pt;}
.y84{bottom:661.119995pt;}
.y14{bottom:669.600006pt;}
.y59{bottom:670.559998pt;}
.y44{bottom:672.480011pt;}
.y83{bottom:673.119995pt;}
.y82{bottom:685.119995pt;}
.y13{bottom:687.200012pt;}
.y43{bottom:690.399994pt;}
.y81{bottom:697.119995pt;}
.y12{bottom:704.000000pt;}
.y80{bottom:706.239990pt;}
.y42{bottom:708.480011pt;}
.y11{bottom:721.600006pt;}
.y41{bottom:726.399994pt;}
.y7f{bottom:731.200012pt;}
.y10{bottom:738.399994pt;}
.y7e{bottom:743.200012pt;}
.y40{bottom:744.480011pt;}
.y7c{bottom:752.320007pt;}
.yf{bottom:756.480011pt;}
.y3f{bottom:762.399994pt;}
.ye{bottom:774.399994pt;}
.y3e{bottom:780.480011pt;}
.yd{bottom:792.480011pt;}
.y3d{bottom:798.399994pt;}
.yc{bottom:810.399994pt;}
.y3c{bottom:816.479996pt;}
.y3b{bottom:834.399994pt;}
.yb{bottom:837.279999pt;}
.y3a{bottom:852.479996pt;}
.ya{bottom:856.320007pt;}
.y39{bottom:870.399994pt;}
.y9{bottom:877.279999pt;}
.y38{bottom:888.479996pt;}
.y8{bottom:898.240005pt;}
.y37{bottom:906.399994pt;}
.y7{bottom:919.199997pt;}
.y36{bottom:924.479996pt;}
.y6{bottom:940.320000pt;}
.y35{bottom:942.400002pt;}
.y3{bottom:960.800003pt;}
.y2{bottom:979.680000pt;}
.y1{bottom:996.160000pt;}
.h8{height:12.000000pt;}
.hb{height:12.160034pt;}
.h9{height:28.985320pt;}
.ha{height:35.818918pt;}
.h6{height:43.261668pt;}
.h7{height:45.722030pt;}
.h1{height:49.184100pt;}
.h3{height:50.616019pt;}
.h5{height:50.934526pt;}
.h4{height:53.461066pt;}
.h2{height:55.363706pt;}
.h0{height:1056.000000pt;}
.w3{width:1.279968pt;}
.w2{width:1.279969pt;}
.w1{width:1.440002pt;}
.wf{width:3.360000pt;}
.w7{width:5.759979pt;}
.w5{width:5.760010pt;}
.w16{width:6.879975pt;}
.we{width:12.320000pt;}
.w14{width:31.199982pt;}
.w13{width:36.320007pt;}
.w12{width:41.599999pt;}
.w4{width:43.520004pt;}
.w18{width:48.480003pt;}
.w10{width:49.600006pt;}
.w8{width:51.199982pt;}
.wa{width:53.920006pt;}
.w11{width:61.600006pt;}
.wc{width:70.399994pt;}
.w15{width:71.200005pt;}
.w17{width:71.519989pt;}
.w19{width:81.600006pt;}
.w9{width:99.359986pt;}
.wd{width:126.559998pt;}
.w6{width:195.040008pt;}
.wb{width:205.440003pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440002pt;}
.x21{left:120.959999pt;}
.x24{left:133.279999pt;}
.x25{left:136.639999pt;}
.x18{left:139.679993pt;}
.x4{left:156.000000pt;}
.x1a{left:161.440002pt;}
.x9{left:165.440002pt;}
.x7{left:178.559998pt;}
.x19{left:183.199997pt;}
.x1d{left:216.320007pt;}
.x1b{left:220.160004pt;}
.x12{left:223.039993pt;}
.xf{left:236.639999pt;}
.x5{left:326.880005pt;}
.xe{left:332.320007pt;}
.x2{left:395.200012pt;}
.x1c{left:415.200012pt;}
.x27{left:419.200012pt;}
.xa{left:430.079987pt;}
.x22{left:433.600006pt;}
.x1e{left:449.600006pt;}
.x1f{left:451.679993pt;}
.x26{left:469.920013pt;}
.x6{left:513.760010pt;}
.xb{left:522.080017pt;}
.x10{left:525.440002pt;}
.x23{left:528.960022pt;}
.xc{left:541.760010pt;}
.x11{left:544.159973pt;}
.x8{left:556.640015pt;}
.xd{left:566.400024pt;}
.x20{left:574.080017pt;}
.x13{left:669.760010pt;}
.x14{left:672.799988pt;}
.x15{left:677.280029pt;}
.x16{left:681.599976pt;}
.x17{left:686.080017pt;}
.x3{left:702.559998pt;}
}




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