
    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_97f3fffebcf6af3defb6b0ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769531;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_6994710155b54af1500dadac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_304682c620611e0d2548329a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961914;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_f05ead1ccae1817044e2647d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_2169f56e579acdde8321ae61.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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:ff6;src:url('chunks/assets/font_3450a42b6bced3b96f215ec3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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:ff7;src:url('chunks/assets/font_9a36bbb33bd1f9e04d3c85f6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d2380f51de5475a196aa947f.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v2{vertical-align:20.879928px;}
.v1{vertical-align:23.759996px;}
.v3{vertical-align:36.720157px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000306px;}
.ls8{letter-spacing:0.000311px;}
.lsb{letter-spacing:0.000445px;}
.lsd{letter-spacing:0.049958px;}
.ls0{letter-spacing:0.287357px;}
.ls4{letter-spacing:0.304855px;}
.lsf{letter-spacing:223.373799px;}
.ls3{letter-spacing:250.733736px;}
.lsc{letter-spacing:301.853808px;}
.ls6{letter-spacing:306.173772px;}
.lse{letter-spacing:349.373731px;}
.ls9{letter-spacing:359.453754px;}
.lsa{letter-spacing:360.893646px;}
.ls7{letter-spacing:366.653642px;}
.ls10{letter-spacing:454.493732px;}
.ls2{letter-spacing:481.853740px;}
.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;}
}
.ws2{word-spacing:-16.272611px;}
.ws5{word-spacing:-13.556226px;}
.ws4{word-spacing:-13.506269px;}
.ws0{word-spacing:-11.567969px;}
.ws1{word-spacing:-10.902647px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.027908px;}
._0{width:1.086128px;}
._3{width:223.290730px;}
._2{width:267.376307px;}
._5{width:368.813691px;}
._8{width:372.413777px;}
._7{width:402.653920px;}
._6{width:412.013583px;}
._4{width:454.493732px;}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(32,33,34);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.001395px;}
.fs2{font-size:41.761620px;}
.fs1{font-size:48.241800px;}
.fs6{font-size:59.762250px;}
.fs5{font-size:72.002705px;}
.fs0{font-size:95.763600px;}
.fs4{font-size:108.004050px;}
.y0{bottom:0.000000px;}
.y77{bottom:28.080093px;}
.y75{bottom:40.860077px;}
.y9e{bottom:44.280121px;}
.y74{bottom:62.820099px;}
.y9d{bottom:66.240005px;}
.y73{bottom:84.780121px;}
.y9c{bottom:88.200028px;}
.y72{bottom:106.740005px;}
.y9b{bottom:110.160049px;}
.y71{bottom:128.700096px;}
.y9a{bottom:132.120072px;}
.y70{bottom:150.660049px;}
.y99{bottom:154.080093px;}
.y6f{bottom:172.620072px;}
.y98{bottom:176.040047px;}
.y6e{bottom:194.580093px;}
.y97{bottom:198.180039px;}
.y6d{bottom:216.540047px;}
.y96{bottom:220.140060px;}
.y6c{bottom:238.500068px;}
.y95{bottom:242.100083px;}
.y6b{bottom:260.460091px;}
.y94{bottom:264.060036px;}
.y6a{bottom:282.420043px;}
.y93{bottom:286.020058px;}
.y69{bottom:304.380066px;}
.y92{bottom:307.980079px;}
.y41{bottom:315.000068px;}
.y40{bottom:325.980079px;}
.y68{bottom:326.520058px;}
.y91{bottom:329.940033px;}
.y3f{bottom:336.780052px;}
.y67{bottom:348.480079px;}
.y3e{bottom:348.840088px;}
.y90{bottom:351.900055px;}
.y3d{bottom:360.900055px;}
.y66{bottom:370.440033px;}
.y3c{bottom:373.140060px;}
.y8f{bottom:373.860077px;}
.y3b{bottom:385.200096px;}
.y65{bottom:392.400055px;}
.y8e{bottom:395.820099px;}
.y3a{bottom:397.260064px;}
.y39{bottom:409.320099px;}
.y64{bottom:414.360077px;}
.y8d{bottom:417.780052px;}
.y38{bottom:421.380066px;}
.y37{bottom:433.440033px;}
.y63{bottom:436.320099px;}
.y8c{bottom:439.740074px;}
.y36{bottom:445.500068px;}
.y35{bottom:457.560036px;}
.y62{bottom:458.280052px;}
.y8b{bottom:461.700096px;}
.y34{bottom:469.620072px;}
.y61{bottom:480.240074px;}
.y33{bottom:481.680039px;}
.y8a{bottom:483.660049px;}
.y32{bottom:493.740074px;}
.y60{bottom:502.200096px;}
.y89{bottom:505.620072px;}
.y31{bottom:505.800041px;}
.y30{bottom:518.040047px;}
.y5f{bottom:524.160049px;}
.y88{bottom:527.760064px;}
.y2f{bottom:530.100083px;}
.y2e{bottom:542.160049px;}
.y5e{bottom:546.120072px;}
.y87{bottom:550.260064px;}
.y2d{bottom:554.220085px;}
.y2c{bottom:566.280052px;}
.y5d{bottom:568.080093px;}
.y86{bottom:568.620072px;}
.y2b{bottom:578.340088px;}
.y85{bottom:588.420043px;}
.y5c{bottom:590.040047px;}
.y2a{bottom:590.400055px;}
.y29{bottom:602.460091px;}
.y84{bottom:606.600083px;}
.y5b{bottom:612.000068px;}
.y28{bottom:614.520058px;}
.y83{bottom:626.400055px;}
.y27{bottom:626.580093px;}
.y5a{bottom:634.140060px;}
.y26{bottom:638.640060px;}
.y82{bottom:644.760064px;}
.y25{bottom:650.700096px;}
.y59{bottom:656.100083px;}
.y24{bottom:662.760064px;}
.y81{bottom:664.560036px;}
.y7e{bottom:673.740074px;}
.y23{bottom:675.000068px;}
.y58{bottom:678.060036px;}
.y7d{bottom:682.920043px;}
.y22{bottom:687.060070px;}
.y7f{bottom:692.100083px;}
.y21{bottom:699.120072px;}
.y57{bottom:700.020058px;}
.y80{bottom:701.280052px;}
.y20{bottom:711.180073px;}
.y7c{bottom:721.800076px;}
.y56{bottom:721.980079px;}
.y1f{bottom:723.240074px;}
.y1e{bottom:735.300076px;}
.y7b{bottom:743.760064px;}
.y55{bottom:743.940067px;}
.y1d{bottom:747.360077px;}
.y1c{bottom:759.420078px;}
.y7a{bottom:765.720051px;}
.y54{bottom:765.900055px;}
.y1b{bottom:771.480079px;}
.y1a{bottom:783.540081px;}
.y79{bottom:787.680073px;}
.y53{bottom:787.860077px;}
.y19{bottom:795.600083px;}
.y18{bottom:807.660049px;}
.y52{bottom:809.820065px;}
.y17{bottom:819.720051px;}
.y51{bottom:831.780052px;}
.y16{bottom:831.960056px;}
.y15{bottom:844.020058px;}
.y50{bottom:853.740074px;}
.y14{bottom:856.080059px;}
.y13{bottom:868.140060px;}
.y4f{bottom:875.700061px;}
.y12{bottom:880.200061px;}
.y11{bottom:892.260064px;}
.y4e{bottom:897.660049px;}
.y10{bottom:904.320065px;}
.yf{bottom:916.380066px;}
.y4d{bottom:919.620072px;}
.ye{bottom:928.440067px;}
.yd{bottom:940.500068px;}
.y4c{bottom:941.760064px;}
.yc{bottom:952.560070px;}
.y4b{bottom:963.720051px;}
.yb{bottom:964.620072px;}
.ya{bottom:976.680073px;}
.y4a{bottom:985.680073px;}
.y9{bottom:988.920061px;}
.y8{bottom:1000.980063px;}
.y49{bottom:1007.640060px;}
.y7{bottom:1013.040064px;}
.y6{bottom:1025.100065px;}
.y48{bottom:1029.600065px;}
.y5{bottom:1037.160067px;}
.y4{bottom:1049.220068px;}
.y47{bottom:1051.560070px;}
.y3{bottom:1061.280069px;}
.y46{bottom:1073.520058px;}
.y45{bottom:1095.480063px;}
.y44{bottom:1117.440067px;}
.y43{bottom:1139.400064px;}
.y2{bottom:1176.480063px;}
.y42{bottom:1194.120067px;}
.y1{bottom:1194.660067px;}
.y78{bottom:1197.000065px;}
.y76{bottom:1209.060066px;}
.h7{height:27.493253px;}
.h6{height:30.403601px;}
.h4{height:31.382389px;}
.h5{height:37.438640px;}
.h3{height:43.248020px;}
.h10{height:59.441261px;}
.ha{height:71.615971px;}
.hc{height:71.742549px;}
.hb{height:71.742684px;}
.h13{height:71.742752px;}
.he{height:71.742819px;}
.hd{height:71.742824px;}
.h2{height:72.757891px;}
.h9{height:73.725425px;}
.h12{height:96.161140px;}
.h11{height:96.161414px;}
.hf{height:96.161419px;}
.h8{height:107.423950px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:19.980000px;}
.x1{left:21.420001px;}
.x8{left:104.400003px;}
.x2{left:106.379998px;}
.xa{left:116.099997px;}
.x4{left:212.759994px;}
.x9{left:214.379998px;}
.x12{left:239.939999px;}
.x5{left:265.680005px;}
.xb{left:437.399987px;}
.xc{left:523.079990px;}
.xd{left:538.199993px;}
.xf{left:626.399987px;}
.xe{left:628.919975px;}
.x10{left:633.419975px;}
.x11{left:721.259994px;}
.x6{left:754.559967px;}
.x7{left:789.120002px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.559936pt;}
.v1{vertical-align:21.119996pt;}
.v3{vertical-align:32.640140pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000272pt;}
.ls8{letter-spacing:0.000276pt;}
.lsb{letter-spacing:0.000396pt;}
.lsd{letter-spacing:0.044407pt;}
.ls0{letter-spacing:0.255429pt;}
.ls4{letter-spacing:0.270982pt;}
.lsf{letter-spacing:198.554488pt;}
.ls3{letter-spacing:222.874432pt;}
.lsc{letter-spacing:268.314496pt;}
.ls6{letter-spacing:272.154464pt;}
.lse{letter-spacing:310.554428pt;}
.ls9{letter-spacing:319.514448pt;}
.lsa{letter-spacing:320.794352pt;}
.ls7{letter-spacing:325.914348pt;}
.ls10{letter-spacing:403.994428pt;}
.ls2{letter-spacing:428.314436pt;}
.ws2{word-spacing:-14.464543pt;}
.ws5{word-spacing:-12.049979pt;}
.ws4{word-spacing:-12.005572pt;}
.ws0{word-spacing:-10.282639pt;}
.ws1{word-spacing:-9.691242pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-0.913696pt;}
._0{width:0.965447pt;}
._3{width:198.480649pt;}
._2{width:237.667828pt;}
._5{width:327.834392pt;}
._8{width:331.034468pt;}
._7{width:357.914596pt;}
._6{width:366.234296pt;}
._4{width:403.994428pt;}
.fs3{font-size:32.001240pt;}
.fs2{font-size:37.121440pt;}
.fs1{font-size:42.881600pt;}
.fs6{font-size:53.122000pt;}
.fs5{font-size:64.002404pt;}
.fs0{font-size:85.123200pt;}
.fs4{font-size:96.003600pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:24.960083pt;}
.y75{bottom:36.320069pt;}
.y9e{bottom:39.360108pt;}
.y74{bottom:55.840088pt;}
.y9d{bottom:58.880005pt;}
.y73{bottom:75.360108pt;}
.y9c{bottom:78.400025pt;}
.y72{bottom:94.880005pt;}
.y9b{bottom:97.920044pt;}
.y71{bottom:114.400086pt;}
.y9a{bottom:117.440064pt;}
.y70{bottom:133.920044pt;}
.y99{bottom:136.960083pt;}
.y6f{bottom:153.440064pt;}
.y98{bottom:156.480042pt;}
.y6e{bottom:172.960083pt;}
.y97{bottom:176.160035pt;}
.y6d{bottom:192.480042pt;}
.y96{bottom:195.680054pt;}
.y6c{bottom:212.000061pt;}
.y95{bottom:215.200074pt;}
.y6b{bottom:231.520081pt;}
.y94{bottom:234.720032pt;}
.y6a{bottom:251.040039pt;}
.y93{bottom:254.240052pt;}
.y69{bottom:270.560059pt;}
.y92{bottom:273.760071pt;}
.y41{bottom:280.000061pt;}
.y40{bottom:289.760071pt;}
.y68{bottom:290.240052pt;}
.y91{bottom:293.280030pt;}
.y3f{bottom:299.360047pt;}
.y67{bottom:309.760071pt;}
.y3e{bottom:310.080079pt;}
.y90{bottom:312.800049pt;}
.y3d{bottom:320.800049pt;}
.y66{bottom:329.280030pt;}
.y3c{bottom:331.680054pt;}
.y8f{bottom:332.320069pt;}
.y3b{bottom:342.400086pt;}
.y65{bottom:348.800049pt;}
.y8e{bottom:351.840088pt;}
.y3a{bottom:353.120057pt;}
.y39{bottom:363.840088pt;}
.y64{bottom:368.320069pt;}
.y8d{bottom:371.360047pt;}
.y38{bottom:374.560059pt;}
.y37{bottom:385.280030pt;}
.y63{bottom:387.840088pt;}
.y8c{bottom:390.880066pt;}
.y36{bottom:396.000061pt;}
.y35{bottom:406.720032pt;}
.y62{bottom:407.360047pt;}
.y8b{bottom:410.400086pt;}
.y34{bottom:417.440064pt;}
.y61{bottom:426.880066pt;}
.y33{bottom:428.160035pt;}
.y8a{bottom:429.920044pt;}
.y32{bottom:438.880066pt;}
.y60{bottom:446.400086pt;}
.y89{bottom:449.440064pt;}
.y31{bottom:449.600037pt;}
.y30{bottom:460.480042pt;}
.y5f{bottom:465.920044pt;}
.y88{bottom:469.120057pt;}
.y2f{bottom:471.200074pt;}
.y2e{bottom:481.920044pt;}
.y5e{bottom:485.440064pt;}
.y87{bottom:489.120057pt;}
.y2d{bottom:492.640076pt;}
.y2c{bottom:503.360047pt;}
.y5d{bottom:504.960083pt;}
.y86{bottom:505.440064pt;}
.y2b{bottom:514.080079pt;}
.y85{bottom:523.040039pt;}
.y5c{bottom:524.480042pt;}
.y2a{bottom:524.800049pt;}
.y29{bottom:535.520081pt;}
.y84{bottom:539.200074pt;}
.y5b{bottom:544.000061pt;}
.y28{bottom:546.240052pt;}
.y83{bottom:556.800049pt;}
.y27{bottom:556.960083pt;}
.y5a{bottom:563.680054pt;}
.y26{bottom:567.680054pt;}
.y82{bottom:573.120057pt;}
.y25{bottom:578.400086pt;}
.y59{bottom:583.200074pt;}
.y24{bottom:589.120057pt;}
.y81{bottom:590.720032pt;}
.y7e{bottom:598.880066pt;}
.y23{bottom:600.000061pt;}
.y58{bottom:602.720032pt;}
.y7d{bottom:607.040039pt;}
.y22{bottom:610.720063pt;}
.y7f{bottom:615.200074pt;}
.y21{bottom:621.440064pt;}
.y57{bottom:622.240052pt;}
.y80{bottom:623.360047pt;}
.y20{bottom:632.160065pt;}
.y7c{bottom:641.600068pt;}
.y56{bottom:641.760071pt;}
.y1f{bottom:642.880066pt;}
.y1e{bottom:653.600068pt;}
.y7b{bottom:661.120057pt;}
.y55{bottom:661.280060pt;}
.y1d{bottom:664.320069pt;}
.y1c{bottom:675.040070pt;}
.y7a{bottom:680.640046pt;}
.y54{bottom:680.800049pt;}
.y1b{bottom:685.760071pt;}
.y1a{bottom:696.480072pt;}
.y79{bottom:700.160065pt;}
.y53{bottom:700.320069pt;}
.y19{bottom:707.200074pt;}
.y18{bottom:717.920044pt;}
.y52{bottom:719.840058pt;}
.y17{bottom:728.640046pt;}
.y51{bottom:739.360047pt;}
.y16{bottom:739.520050pt;}
.y15{bottom:750.240052pt;}
.y50{bottom:758.880066pt;}
.y14{bottom:760.960053pt;}
.y13{bottom:771.680054pt;}
.y4f{bottom:778.400055pt;}
.y12{bottom:782.400055pt;}
.y11{bottom:793.120057pt;}
.y4e{bottom:797.920044pt;}
.y10{bottom:803.840058pt;}
.yf{bottom:814.560059pt;}
.y4d{bottom:817.440064pt;}
.ye{bottom:825.280060pt;}
.yd{bottom:836.000061pt;}
.y4c{bottom:837.120057pt;}
.yc{bottom:846.720063pt;}
.y4b{bottom:856.640046pt;}
.yb{bottom:857.440064pt;}
.ya{bottom:868.160065pt;}
.y4a{bottom:876.160065pt;}
.y9{bottom:879.040055pt;}
.y8{bottom:889.760056pt;}
.y49{bottom:895.680054pt;}
.y7{bottom:900.480057pt;}
.y6{bottom:911.200058pt;}
.y48{bottom:915.200058pt;}
.y5{bottom:921.920060pt;}
.y4{bottom:932.640061pt;}
.y47{bottom:934.720063pt;}
.y3{bottom:943.360062pt;}
.y46{bottom:954.240052pt;}
.y45{bottom:973.760056pt;}
.y44{bottom:993.280060pt;}
.y43{bottom:1012.800057pt;}
.y2{bottom:1045.760056pt;}
.y42{bottom:1061.440060pt;}
.y1{bottom:1061.920060pt;}
.y78{bottom:1064.000058pt;}
.y76{bottom:1074.720059pt;}
.h7{height:24.438447pt;}
.h6{height:27.025423pt;}
.h4{height:27.895457pt;}
.h5{height:33.278791pt;}
.h3{height:38.442684pt;}
.h10{height:52.836677pt;}
.ha{height:63.658641pt;}
.hc{height:63.771155pt;}
.hb{height:63.771275pt;}
.h13{height:63.771335pt;}
.he{height:63.771395pt;}
.hd{height:63.771399pt;}
.h2{height:64.673681pt;}
.h9{height:65.533712pt;}
.h12{height:85.476569pt;}
.h11{height:85.476813pt;}
.hf{height:85.476817pt;}
.h8{height:95.487956pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:17.760000pt;}
.x1{left:19.040001pt;}
.x8{left:92.800003pt;}
.x2{left:94.559998pt;}
.xa{left:103.199997pt;}
.x4{left:189.119995pt;}
.x9{left:190.559998pt;}
.x12{left:213.279999pt;}
.x5{left:236.160004pt;}
.xb{left:388.799988pt;}
.xc{left:464.959991pt;}
.xd{left:478.399994pt;}
.xf{left:556.799988pt;}
.xe{left:559.039978pt;}
.x10{left:563.039978pt;}
.x11{left:641.119995pt;}
.x6{left:670.719971pt;}
.x7{left:701.440002pt;}
}




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