
    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_de252c2d83105aec50fdaa17.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d4ef489b8cf0bcda01d82775.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_84b176ae9e3675e18f35a80c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a9295299c8e85107b97ff340.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_ff7647d20376ffc9ac00e350.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.872361px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.097888px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.064087px;}
.ls3{letter-spacing:0.107920px;}
.ls6{letter-spacing:0.109579px;}
.ls4{letter-spacing:0.159551px;}
.ls2{letter-spacing:102.788849px;}
.ls5{letter-spacing:116.217827px;}
.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;}
}
.wsb{word-spacing:-46.071026px;}
.ws4{word-spacing:-45.373223px;}
.ws9{word-spacing:-10.412052px;}
.ws2{word-spacing:-10.254348px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:202.026078px;}
.ws8{word-spacing:205.133076px;}
.ws5{word-spacing:210.657858px;}
.wsc{word-spacing:213.897606px;}
.ws6{word-spacing:233.943653px;}
.wsd{word-spacing:237.436666px;}
.ws3{word-spacing:253.430679px;}
.wsa{word-spacing:257.433088px;}
.ws7{word-spacing:414.175096px;}
.wsf{word-spacing:430.300675px;}
.wse{word-spacing:432.445367px;}
.ws10{word-spacing:453.892160px;}
._0{margin-left:-3.510994px;}
._3{margin-left:-2.389191px;}
._1{margin-left:-1.043176px;}
._b{width:1.331138px;}
._27{width:26.244979px;}
._2{width:27.275605px;}
._31{width:39.071059px;}
._11{width:45.826800px;}
._c{width:60.560089px;}
._1d{width:66.767865px;}
._3d{width:67.810383px;}
._d{width:82.438059px;}
._32{width:95.174624px;}
._8{width:110.642871px;}
._2d{width:112.449320px;}
._22{width:121.439573px;}
._1a{width:123.366948px;}
._2f{width:124.767930px;}
._25{width:159.443530px;}
._40{width:161.733446px;}
._26{width:162.785150px;}
._41{width:165.325036px;}
._17{width:170.311602px;}
._15{width:174.132331px;}
._12{width:178.107955px;}
._5{width:196.221173px;}
._2a{width:199.238895px;}
._36{width:215.959418px;}
._16{width:231.957734px;}
._14{width:233.562609px;}
._13{width:237.373959px;}
._7{width:243.906127px;}
._2c{width:247.512576px;}
._e{width:263.443826px;}
._34{width:267.495378px;}
._38{width:275.158943px;}
._37{width:279.028909px;}
._9{width:297.957157px;}
._2e{width:302.539497px;}
._42{width:338.256210px;}
._1b{width:376.652509px;}
._1c{width:381.802104px;}
._1e{width:395.208320px;}
._3c{width:404.100596px;}
._23{width:409.794903px;}
._21{width:422.364023px;}
._10{width:426.184752px;}
._3b{width:429.728544px;}
._35{width:431.933641px;}
._a{width:444.429715px;}
._24{width:445.546554px;}
._f{width:451.503010px;}
._3e{width:452.586275px;}
._33{width:459.252247px;}
._4{width:466.450971px;}
._30{width:471.100415px;}
._29{width:485.952944px;}
._18{width:493.839253px;}
._20{width:499.604672px;}
._39{width:501.276824px;}
._1f{width:641.456785px;}
._3f{width:667.905832px;}
._19{width:686.795296px;}
._3a{width:701.279080px;}
._28{width:743.572516px;}
._2b{width:1152.555696px;}
._6{width:1204.801286px;}
.fc1{color:rgb(255,192,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:40.374263px;}
.fs4{font-size:40.995187px;}
.fs1{font-size:45.373223px;}
.fs3{font-size:46.071026px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:2.594484px;}
.y2e{bottom:2.594489px;}
.y20{bottom:2.620300px;}
.y22{bottom:2.620303px;}
.y1e{bottom:2.620304px;}
.y54{bottom:2.634383px;}
.y61{bottom:2.668197px;}
.y5e{bottom:2.668459px;}
.y4c{bottom:2.673702px;}
.y5f{bottom:20.595105px;}
.y3a{bottom:21.051738px;}
.y39{bottom:35.760247px;}
.y5c{bottom:67.837055px;}
.y5b{bottom:83.584372px;}
.y38{bottom:97.827728px;}
.y5a{bottom:100.112829px;}
.y37{bottom:114.105828px;}
.y59{bottom:115.079005px;}
.y13{bottom:126.787500px;}
.y36{bottom:128.842758px;}
.y58{bottom:130.825011px;}
.y35{bottom:145.119564px;}
.y41{bottom:146.287500px;}
.y57{bottom:146.578881px;}
.y12{bottom:148.537500px;}
.y34{bottom:159.860375px;}
.y56{bottom:162.319645px;}
.y11{bottom:170.670000px;}
.y33{bottom:175.375633px;}
.y55{bottom:178.073515px;}
.y10{bottom:187.950000px;}
.y32{bottom:190.877983px;}
.y9{bottom:196.200000px;}
.y31{bottom:206.393241px;}
.y30{bottom:221.895585px;}
.y52{bottom:241.062781px;}
.y51{bottom:256.803545px;}
.y50{bottom:272.557415px;}
.y2a{bottom:283.930793px;}
.y4f{bottom:288.298178px;}
.y29{bottom:299.446053px;}
.y4e{bottom:304.052048px;}
.y28{bottom:314.948403px;}
.y4d{bottom:319.792812px;}
.y27{bottom:330.463661px;}
.y4a{bottom:335.546682px;}
.y26{bottom:345.966011px;}
.y49{bottom:351.287445px;}
.y25{bottom:361.481263px;}
.y48{bottom:367.067528px;}
.y24{bottom:376.983618px;}
.y47{bottom:382.821398px;}
.y23{bottom:392.498871px;}
.y46{bottom:398.562161px;}
.y1c{bottom:408.001225px;}
.y45{bottom:414.316031px;}
.y1b{bottom:423.516484px;}
.y1a{bottom:439.057555px;}
.y44{bottom:446.780537px;}
.y19{bottom:454.559902px;}
.y43{bottom:461.551428px;}
.y18{bottom:470.075161px;}
.yf{bottom:485.400000px;}
.y17{bottom:485.577516px;}
.y8{bottom:493.650000px;}
.ye{bottom:507.525000px;}
.y7{bottom:515.775000px;}
.y16{bottom:517.563215px;}
.y40{bottom:520.275000px;}
.yd{bottom:529.275000px;}
.y15{bottom:532.110366px;}
.y6{bottom:537.900000px;}
.y3f{bottom:542.400000px;}
.yc{bottom:551.400000px;}
.y5{bottom:559.650000px;}
.y3e{bottom:564.195000px;}
.yb{bottom:573.570000px;}
.y4{bottom:581.820000px;}
.y3d{bottom:586.320000px;}
.ya{bottom:590.445000px;}
.y3{bottom:599.070000px;}
.y14{bottom:600.038055px;}
.y3c{bottom:603.195000px;}
.y42{bottom:612.479542px;}
.y60{bottom:615.440273px;}
.y5d{bottom:662.681961px;}
.y53{bottom:835.940453px;}
.y2f{bottom:866.633571px;}
.y2d{bottom:866.633573px;}
.y2b{bottom:866.633581px;}
.y4b{bottom:946.165117px;}
.y21{bottom:1006.219244px;}
.y1f{bottom:1006.219249px;}
.y1d{bottom:1006.219252px;}
.y3b{bottom:1093.830000px;}
.y2{bottom:1115.955000px;}
.y1{bottom:1137.705000px;}
.h7{height:13.554556px;}
.h8{height:13.554558px;}
.h6{height:13.554560px;}
.h9{height:13.554566px;}
.h11{height:13.763011px;}
.h15{height:13.795777px;}
.h5{height:45.129519px;}
.h4{height:45.684340px;}
.h10{height:45.823574px;}
.hf{height:46.386928px;}
.h3{height:46.458812px;}
.he{height:47.173311px;}
.hb{height:48.175776px;}
.hc{height:48.227407px;}
.h14{height:48.948135px;}
.h13{height:48.969106px;}
.ha{height:49.556701px;}
.h12{height:50.266417px;}
.h1{height:71.613281px;}
.hd{height:475.420863px;}
.h2{height:545.757623px;}
.h0{height:1263.000000px;}
.w8{width:38.741419px;}
.wf{width:39.370063px;}
.w4{width:52.327313px;}
.wb{width:53.132153px;}
.wc{width:54.108606px;}
.w5{width:95.939000px;}
.w3{width:124.042760px;}
.wa{width:125.950647px;}
.w7{width:139.550687px;}
.we{width:141.697099px;}
.w10{width:182.039683px;}
.w6{width:232.580175px;}
.wd{width:238.136583px;}
.w9{width:672.048730px;}
.w2{width:699.650946px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:3.007614px;}
.x10{left:5.924870px;}
.x19{left:13.643981px;}
.x1f{left:42.715087px;}
.x1{left:81.037487px;}
.x22{left:90.207882px;}
.x4{left:91.478366px;}
.x15{left:93.401046px;}
.x1a{left:101.835990px;}
.x30{left:104.377853px;}
.x1c{left:168.519818px;}
.x1e{left:173.554021px;}
.x33{left:177.196350px;}
.x6{left:178.575312px;}
.x24{left:183.317198px;}
.x7{left:188.101573px;}
.x25{left:191.967655px;}
.x16{left:197.396131px;}
.xb{left:201.461574px;}
.x28{left:206.516151px;}
.xc{left:216.293110px;}
.x29{left:221.575810px;}
.x14{left:238.469421px;}
.xa{left:240.431467px;}
.x2e{left:244.119425px;}
.x27{left:246.072329px;}
.x8{left:285.958733px;}
.x12{left:289.844106px;}
.x9{left:291.793245px;}
.x13{left:296.633826px;}
.x26{left:298.237203px;}
.x2d{left:303.152237px;}
.x31{left:320.872567px;}
.x17{left:326.940173px;}
.x2f{left:331.273433px;}
.x1b{left:448.770022px;}
.x32{left:460.590547px;}
.x18{left:467.484792px;}
.x5{left:471.049594px;}
.x1d{left:472.998737px;}
.x23{left:483.199691px;}
.xd{left:513.980173px;}
.x2a{left:524.113079px;}
.x21{left:571.724987px;}
.x3{left:576.224987px;}
.xf{left:638.983304px;}
.x2b{left:651.078188px;}
.x11{left:692.307130px;}
.x2c{left:705.182862px;}
.x20{left:769.454987px;}
.x2{left:801.329987px;}
@media print{
.v1{vertical-align:-3.442098pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.753679pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.056966pt;}
.ls3{letter-spacing:0.095929pt;}
.ls6{letter-spacing:0.097404pt;}
.ls4{letter-spacing:0.141823pt;}
.ls2{letter-spacing:91.367866pt;}
.ls5{letter-spacing:103.304735pt;}
.wsb{word-spacing:-40.952023pt;}
.ws4{word-spacing:-40.331753pt;}
.ws9{word-spacing:-9.255157pt;}
.ws2{word-spacing:-9.114976pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:179.578736pt;}
.ws8{word-spacing:182.340512pt;}
.ws5{word-spacing:187.251430pt;}
.wsc{word-spacing:190.131205pt;}
.ws6{word-spacing:207.949914pt;}
.wsd{word-spacing:211.054814pt;}
.ws3{word-spacing:225.271714pt;}
.wsa{word-spacing:228.829411pt;}
.ws7{word-spacing:368.155641pt;}
.wsf{word-spacing:382.489489pt;}
.wse{word-spacing:384.395882pt;}
.ws10{word-spacing:403.459698pt;}
._0{margin-left:-3.120884pt;}
._3{margin-left:-2.123726pt;}
._1{margin-left:-0.927267pt;}
._b{width:1.183234pt;}
._27{width:23.328870pt;}
._2{width:24.244983pt;}
._31{width:34.729830pt;}
._11{width:40.734933pt;}
._c{width:53.831191pt;}
._1d{width:59.349214pt;}
._3d{width:60.275896pt;}
._d{width:73.278275pt;}
._32{width:84.599665pt;}
._8{width:98.349219pt;}
._2d{width:99.954951pt;}
._22{width:107.946287pt;}
._1a{width:109.659509pt;}
._2f{width:110.904827pt;}
._25{width:141.727582pt;}
._40{width:143.763063pt;}
._26{width:144.697911pt;}
._41{width:146.955587pt;}
._17{width:151.388091pt;}
._15{width:154.784294pt;}
._12{width:158.318182pt;}
._5{width:174.418820pt;}
._2a{width:177.101240pt;}
._36{width:191.963927pt;}
._16{width:206.184653pt;}
._14{width:207.611208pt;}
._13{width:210.999075pt;}
._7{width:216.805446pt;}
._2c{width:220.011178pt;}
._e{width:234.172290pt;}
._34{width:237.773670pt;}
._38{width:244.585727pt;}
._37{width:248.025697pt;}
._9{width:264.850807pt;}
._2e{width:268.923997pt;}
._42{width:300.672187pt;}
._1b{width:334.802230pt;}
._1c{width:339.379648pt;}
._1e{width:351.296284pt;}
._3c{width:359.200530pt;}
._23{width:364.262136pt;}
._21{width:375.434687pt;}
._10{width:378.830891pt;}
._3b{width:381.980928pt;}
._35{width:383.941014pt;}
._a{width:395.048636pt;}
._24{width:396.041382pt;}
._f{width:401.336009pt;}
._3e{width:402.298911pt;}
._33{width:408.224220pt;}
._4{width:414.623086pt;}
._30{width:418.755925pt;}
._29{width:431.958172pt;}
._18{width:438.968225pt;}
._20{width:444.093041pt;}
._39{width:445.579399pt;}
._1f{width:570.183809pt;}
._3f{width:593.694073pt;}
._19{width:610.484708pt;}
._3a{width:623.359183pt;}
._28{width:660.953348pt;}
._2b{width:1024.493952pt;}
._6{width:1070.934476pt;}
.fs2{font-size:35.888234pt;}
.fs4{font-size:36.440166pt;}
.fs1{font-size:40.331753pt;}
.fs3{font-size:40.952023pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:2.306208pt;}
.y2e{bottom:2.306213pt;}
.y20{bottom:2.329155pt;}
.y22{bottom:2.329158pt;}
.y1e{bottom:2.329159pt;}
.y54{bottom:2.341673pt;}
.y61{bottom:2.371731pt;}
.y5e{bottom:2.371964pt;}
.y4c{bottom:2.376624pt;}
.y5f{bottom:18.306760pt;}
.y3a{bottom:18.712656pt;}
.y39{bottom:31.786886pt;}
.y5c{bottom:60.299604pt;}
.y5b{bottom:74.297219pt;}
.y38{bottom:86.957981pt;}
.y5a{bottom:88.989181pt;}
.y37{bottom:101.427402pt;}
.y59{bottom:102.292449pt;}
.y13{bottom:112.700000pt;}
.y36{bottom:114.526896pt;}
.y58{bottom:116.288899pt;}
.y35{bottom:128.995168pt;}
.y41{bottom:130.033333pt;}
.y57{bottom:130.292339pt;}
.y12{bottom:132.033333pt;}
.y34{bottom:142.098111pt;}
.y56{bottom:144.284129pt;}
.y11{bottom:151.706667pt;}
.y33{bottom:155.889452pt;}
.y55{bottom:158.287569pt;}
.y10{bottom:167.066667pt;}
.y32{bottom:169.669318pt;}
.y9{bottom:174.400000pt;}
.y31{bottom:183.460659pt;}
.y30{bottom:197.240520pt;}
.y52{bottom:214.278028pt;}
.y51{bottom:228.269818pt;}
.y50{bottom:242.273258pt;}
.y2a{bottom:252.382927pt;}
.y4f{bottom:256.265047pt;}
.y29{bottom:266.174269pt;}
.y4e{bottom:270.268487pt;}
.y28{bottom:279.954136pt;}
.y4d{bottom:284.260277pt;}
.y27{bottom:293.745476pt;}
.y4a{bottom:298.263717pt;}
.y26{bottom:307.525343pt;}
.y49{bottom:312.255507pt;}
.y25{bottom:321.316678pt;}
.y48{bottom:326.282247pt;}
.y24{bottom:335.096550pt;}
.y47{bottom:340.285687pt;}
.y23{bottom:348.887886pt;}
.y46{bottom:354.277477pt;}
.y1c{bottom:362.667756pt;}
.y45{bottom:368.280917pt;}
.y1b{bottom:376.459097pt;}
.y1a{bottom:390.273383pt;}
.y44{bottom:397.138255pt;}
.y19{bottom:404.053247pt;}
.y43{bottom:410.267936pt;}
.y18{bottom:417.844587pt;}
.yf{bottom:431.466667pt;}
.y17{bottom:431.624459pt;}
.y8{bottom:438.800000pt;}
.ye{bottom:451.133333pt;}
.y7{bottom:458.466667pt;}
.y16{bottom:460.056191pt;}
.y40{bottom:462.466667pt;}
.yd{bottom:470.466667pt;}
.y15{bottom:472.986992pt;}
.y6{bottom:478.133333pt;}
.y3f{bottom:482.133333pt;}
.yc{bottom:490.133333pt;}
.y5{bottom:497.466667pt;}
.y3e{bottom:501.506667pt;}
.yb{bottom:509.840000pt;}
.y4{bottom:517.173333pt;}
.y3d{bottom:521.173333pt;}
.ya{bottom:524.840000pt;}
.y3{bottom:532.506667pt;}
.y14{bottom:533.367160pt;}
.y3c{bottom:536.173333pt;}
.y42{bottom:544.426259pt;}
.y60{bottom:547.058020pt;}
.y5d{bottom:589.050632pt;}
.y53{bottom:743.058181pt;}
.y2f{bottom:770.340952pt;}
.y2d{bottom:770.340954pt;}
.y2b{bottom:770.340961pt;}
.y4b{bottom:841.035660pt;}
.y21{bottom:894.417106pt;}
.y1f{bottom:894.417110pt;}
.y1d{bottom:894.417113pt;}
.y3b{bottom:972.293333pt;}
.y2{bottom:991.960000pt;}
.y1{bottom:1011.293333pt;}
.h7{height:12.048494pt;}
.h8{height:12.048496pt;}
.h6{height:12.048497pt;}
.h9{height:12.048503pt;}
.h11{height:12.233787pt;}
.h15{height:12.262913pt;}
.h5{height:40.115128pt;}
.h4{height:40.608303pt;}
.h10{height:40.732066pt;}
.hf{height:41.232825pt;}
.h3{height:41.296722pt;}
.he{height:41.931832pt;}
.hb{height:42.822912pt;}
.hc{height:42.868806pt;}
.h14{height:43.509454pt;}
.h13{height:43.528094pt;}
.ha{height:44.050401pt;}
.h12{height:44.681260pt;}
.h1{height:63.656250pt;}
.hd{height:422.596322pt;}
.h2{height:485.117887pt;}
.h0{height:1122.666667pt;}
.w8{width:34.436817pt;}
.wf{width:34.995611pt;}
.w4{width:46.513167pt;}
.wb{width:47.228580pt;}
.wc{width:48.096538pt;}
.w5{width:85.279111pt;}
.w3{width:110.260231pt;}
.wa{width:111.956131pt;}
.w7{width:124.045055pt;}
.we{width:125.952977pt;}
.w10{width:161.813052pt;}
.w6{width:206.737934pt;}
.wd{width:211.676963pt;}
.w9{width:597.376649pt;}
.w2{width:621.911952pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:2.673434pt;}
.x10{left:5.266551pt;}
.x19{left:12.127983pt;}
.x1f{left:37.968967pt;}
.x1{left:72.033322pt;}
.x22{left:80.184784pt;}
.x4{left:81.314103pt;}
.x15{left:83.023152pt;}
.x1a{left:90.520880pt;}
.x30{left:92.780314pt;}
.x1c{left:149.795393pt;}
.x1e{left:154.270241pt;}
.x33{left:157.507866pt;}
.x6{left:158.733611pt;}
.x24{left:162.948621pt;}
.x7{left:167.201398pt;}
.x25{left:170.637916pt;}
.x16{left:175.463228pt;}
.xb{left:179.076954pt;}
.x28{left:183.569912pt;}
.xc{left:192.260542pt;}
.x29{left:196.956275pt;}
.x14{left:211.972818pt;}
.xa{left:213.716860pt;}
.x2e{left:216.995044pt;}
.x27{left:218.730959pt;}
.x8{left:254.185541pt;}
.x12{left:257.639205pt;}
.x9{left:259.371774pt;}
.x13{left:263.674512pt;}
.x26{left:265.099736pt;}
.x2d{left:269.468655pt;}
.x31{left:285.220060pt;}
.x17{left:290.613487pt;}
.x2f{left:294.465274pt;}
.x1b{left:398.906686pt;}
.x32{left:409.413820pt;}
.x18{left:415.542037pt;}
.x5{left:418.710750pt;}
.x1d{left:420.443322pt;}
.x23{left:429.510837pt;}
.xd{left:456.871264pt;}
.x2a{left:465.878292pt;}
.x21{left:508.199988pt;}
.x3{left:512.199988pt;}
.xf{left:567.985159pt;}
.x2b{left:578.736167pt;}
.x11{left:615.384116pt;}
.x2c{left:626.829211pt;}
.x20{left:683.959988pt;}
.x2{left:712.293322pt;}
}




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