
    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_26c63296bca2da46b9d6e99a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_843c85972da674cdfc92b16e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.163086;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_e9e8804daf4f99bda94d76d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_0f6a28fddde706c074d7c039.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948730;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_ee0ee9f75d8307823a2045df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_cb7c21f34ce36f8453faeeac.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls2{letter-spacing:0.055375px;}
.ls3{letter-spacing:4.690786px;}
.ls1{letter-spacing:32.615251px;}
.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:-18.000676px;}
.ws3{word-spacing:-15.026225px;}
.ws0{word-spacing:-10.902647px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-4.199220px;}
._4{margin-left:-2.872659px;}
._1{margin-left:-1.122647px;}
._0{width:1.079997px;}
._1b{width:2.259802px;}
._2{width:3.657077px;}
._1a{width:4.710244px;}
._3{width:5.764308px;}
._5{width:7.261304px;}
._c{width:8.786017px;}
._b{width:10.200758px;}
._a{width:11.280236px;}
._9{width:12.371246px;}
._11{width:13.599972px;}
._10{width:14.666051px;}
._f{width:15.683262px;}
._8{width:16.867051px;}
._12{width:19.645023px;}
._17{width:21.652001px;}
._1c{width:23.431751px;}
._16{width:24.665708px;}
._24{width:26.246392px;}
._15{width:27.428803px;}
._14{width:28.816551px;}
._1f{width:30.339577px;}
._20{width:31.471056px;}
._25{width:32.566533px;}
._13{width:33.747330px;}
._d{width:35.426456px;}
._e{width:36.530209px;}
._22{width:37.537799px;}
._7{width:38.783582px;}
._6{width:39.950532px;}
._1e{width:41.005821px;}
._26{width:44.354228px;}
._27{width:46.206280px;}
._23{width:56.185735px;}
._1d{width:58.587138px;}
._18{width:65.711187px;}
._19{width:66.909963px;}
._28{width:846.572642px;}
._29{width:848.304518px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y63{bottom:99.180039px;}
.yb3{bottom:103.320099px;}
.ya6{bottom:110.520127px;}
.y3d{bottom:112.860077px;}
.y62{bottom:119.880066px;}
.yb2{bottom:124.020058px;}
.y81{bottom:126.720085px;}
.ya5{bottom:131.220085px;}
.y3c{bottom:133.560036px;}
.y61{bottom:140.580093px;}
.yb1{bottom:144.720085px;}
.y80{bottom:147.420043px;}
.ya4{bottom:151.920043px;}
.y3b{bottom:154.260064px;}
.y60{bottom:161.280052px;}
.yb0{bottom:165.420043px;}
.y7f{bottom:168.120072px;}
.ya3{bottom:172.620072px;}
.y3a{bottom:174.960091px;}
.y5f{bottom:181.980079px;}
.yaf{bottom:186.120072px;}
.y7e{bottom:188.820099px;}
.ya2{bottom:193.320099px;}
.y39{bottom:195.660049px;}
.y5e{bottom:202.680039px;}
.yae{bottom:206.820099px;}
.y7d{bottom:209.520058px;}
.ya1{bottom:214.020058px;}
.y38{bottom:216.360077px;}
.y5d{bottom:223.380066px;}
.yad{bottom:227.520058px;}
.y7c{bottom:230.220085px;}
.ya0{bottom:234.720085px;}
.y37{bottom:237.060036px;}
.y5c{bottom:244.080093px;}
.yac{bottom:248.220085px;}
.y7b{bottom:250.920043px;}
.y9f{bottom:255.420043px;}
.y36{bottom:257.760064px;}
.y5b{bottom:264.780052px;}
.yab{bottom:268.920043px;}
.y7a{bottom:271.620072px;}
.y9e{bottom:276.120072px;}
.y35{bottom:278.460091px;}
.y5a{bottom:285.480079px;}
.yaa{bottom:289.620072px;}
.y79{bottom:292.320099px;}
.y9d{bottom:296.820099px;}
.y34{bottom:299.160049px;}
.y59{bottom:306.180039px;}
.ya9{bottom:310.320099px;}
.y78{bottom:313.020058px;}
.y9c{bottom:317.520058px;}
.y33{bottom:319.860077px;}
.y58{bottom:326.520058px;}
.ya8{bottom:330.660049px;}
.y77{bottom:333.720085px;}
.y9b{bottom:338.220085px;}
.y32{bottom:340.560036px;}
.y57{bottom:347.220085px;}
.ya7{bottom:351.360077px;}
.y76{bottom:354.420043px;}
.y9a{bottom:358.920043px;}
.y31{bottom:361.260064px;}
.y56{bottom:367.920043px;}
.y75{bottom:375.120072px;}
.y99{bottom:379.620072px;}
.y30{bottom:381.960091px;}
.y55{bottom:388.980079px;}
.y74{bottom:395.820099px;}
.y98{bottom:400.320099px;}
.y2f{bottom:402.660049px;}
.y54{bottom:405.360077px;}
.y73{bottom:416.520058px;}
.y97{bottom:421.020058px;}
.y2e{bottom:423.360077px;}
.y72{bottom:437.220085px;}
.y96{bottom:441.720085px;}
.y2d{bottom:444.060036px;}
.y71{bottom:457.920043px;}
.y95{bottom:462.420043px;}
.y2c{bottom:464.760064px;}
.y70{bottom:478.620072px;}
.y94{bottom:483.120072px;}
.y2b{bottom:485.460091px;}
.y6f{bottom:499.320099px;}
.y93{bottom:503.820099px;}
.y2a{bottom:506.160049px;}
.y6e{bottom:520.020058px;}
.y92{bottom:524.520058px;}
.y29{bottom:526.860077px;}
.y6d{bottom:540.720085px;}
.y91{bottom:545.220085px;}
.y28{bottom:547.560036px;}
.y6c{bottom:561.420043px;}
.y90{bottom:565.920043px;}
.y27{bottom:568.260064px;}
.y6b{bottom:582.120072px;}
.y8f{bottom:586.620072px;}
.y26{bottom:588.960091px;}
.y6a{bottom:602.820099px;}
.y8e{bottom:607.320099px;}
.y25{bottom:609.660049px;}
.y69{bottom:623.520058px;}
.y8d{bottom:628.020058px;}
.y24{bottom:630.360077px;}
.y68{bottom:644.220085px;}
.y8c{bottom:648.720085px;}
.y23{bottom:651.060036px;}
.y67{bottom:664.920043px;}
.y8b{bottom:669.420043px;}
.y22{bottom:671.760064px;}
.y66{bottom:685.620072px;}
.y8a{bottom:690.120072px;}
.y21{bottom:692.460056px;}
.y65{bottom:706.320065px;}
.y89{bottom:710.820065px;}
.y20{bottom:713.160049px;}
.y53{bottom:727.020058px;}
.y88{bottom:731.520058px;}
.y1f{bottom:733.860077px;}
.y52{bottom:747.720051px;}
.y87{bottom:752.220051px;}
.y1e{bottom:754.560070px;}
.y51{bottom:768.420078px;}
.y86{bottom:772.920078px;}
.y1d{bottom:775.260064px;}
.y50{bottom:789.120072px;}
.y85{bottom:793.620072px;}
.y1c{bottom:795.960056px;}
.y4f{bottom:809.820065px;}
.y84{bottom:813.960056px;}
.y1b{bottom:816.660049px;}
.yb5{bottom:830.160049px;}
.y4e{bottom:830.520058px;}
.y83{bottom:834.660049px;}
.y1a{bottom:837.360077px;}
.yb4{bottom:850.860077px;}
.y4d{bottom:851.220051px;}
.y82{bottom:855.720051px;}
.y19{bottom:857.700061px;}
.y4c{bottom:871.920078px;}
.y18{bottom:878.040081px;}
.y4b{bottom:892.620072px;}
.y17{bottom:895.320065px;}
.y16{bottom:912.600083px;}
.y4a{bottom:913.320065px;}
.y15{bottom:930.240074px;}
.y49{bottom:934.020058px;}
.y14{bottom:951.300076px;}
.y48{bottom:954.720051px;}
.y13{bottom:972.000068px;}
.y47{bottom:975.420061px;}
.y12{bottom:992.340070px;}
.y46{bottom:995.760064px;}
.y64{bottom:996.120072px;}
.y11{bottom:1013.400072px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1033.740074px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1054.440067px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1075.140060px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1095.840070px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1116.540064px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1137.060070px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.h6{height:33.825793px;}
.hb{height:41.903609px;}
.h4{height:47.982689px;}
.h2{height:50.486271px;}
.h9{height:51.998047px;}
.hc{height:52.419938px;}
.ha{height:59.345979px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.hd{height:65.886904px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.xb{left:87.299998px;}
.x17{left:97.739997px;}
.x8{left:112.139358px;}
.x15{left:117.719999px;}
.x11{left:138.060001px;}
.xa{left:172.259994px;}
.x16{left:256.500000px;}
.x18{left:392.040012px;}
.x13{left:412.019989px;}
.x1a{left:426.420010px;}
.x2{left:432.899987px;}
.x9{left:446.399987px;}
.x19{left:472.860008px;}
.xe{left:523.439999px;}
.xf{left:532.620002px;}
.xd{left:551.699993px;}
.x10{left:564.480011px;}
.x12{left:723.419975px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x7{left:786.240006px;}
.x14{left:797.399987px;}
.xc{left:807.840019px;}
.x4{left:812.879998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.049222pt;}
.ls3{letter-spacing:4.169587pt;}
.ls1{letter-spacing:28.991334pt;}
.ws1{word-spacing:-16.000601pt;}
.ws3{word-spacing:-13.356644pt;}
.ws0{word-spacing:-9.691242pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-3.732640pt;}
._4{margin-left:-2.553475pt;}
._1{margin-left:-0.997909pt;}
._0{width:0.959998pt;}
._1b{width:2.008713pt;}
._2{width:3.250735pt;}
._1a{width:4.186884pt;}
._3{width:5.123830pt;}
._5{width:6.454492pt;}
._c{width:7.809793pt;}
._b{width:9.067341pt;}
._a{width:10.026877pt;}
._9{width:10.996663pt;}
._11{width:12.088864pt;}
._10{width:13.036490pt;}
._f{width:13.940677pt;}
._8{width:14.992934pt;}
._12{width:17.462243pt;}
._17{width:19.246223pt;}
._1c{width:20.828223pt;}
._16{width:21.925074pt;}
._24{width:23.330126pt;}
._15{width:24.381158pt;}
._14{width:25.614712pt;}
._1f{width:26.968513pt;}
._20{width:27.974272pt;}
._25{width:28.948030pt;}
._13{width:29.997627pt;}
._d{width:31.490183pt;}
._e{width:32.471297pt;}
._22{width:33.366932pt;}
._7{width:34.474295pt;}
._6{width:35.511584pt;}
._1e{width:36.449619pt;}
._26{width:39.425981pt;}
._27{width:41.072248pt;}
._23{width:49.942876pt;}
._1d{width:52.077456pt;}
._18{width:58.409944pt;}
._19{width:59.475522pt;}
._28{width:752.509015pt;}
._29{width:754.048460pt;}
.fs1{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y63{bottom:88.160035pt;}
.yb3{bottom:91.840088pt;}
.ya6{bottom:98.240113pt;}
.y3d{bottom:100.320069pt;}
.y62{bottom:106.560059pt;}
.yb2{bottom:110.240052pt;}
.y81{bottom:112.640076pt;}
.ya5{bottom:116.640076pt;}
.y3c{bottom:118.720032pt;}
.y61{bottom:124.960083pt;}
.yb1{bottom:128.640076pt;}
.y80{bottom:131.040039pt;}
.ya4{bottom:135.040039pt;}
.y3b{bottom:137.120057pt;}
.y60{bottom:143.360047pt;}
.yb0{bottom:147.040039pt;}
.y7f{bottom:149.440064pt;}
.ya3{bottom:153.440064pt;}
.y3a{bottom:155.520081pt;}
.y5f{bottom:161.760071pt;}
.yaf{bottom:165.440064pt;}
.y7e{bottom:167.840088pt;}
.ya2{bottom:171.840088pt;}
.y39{bottom:173.920044pt;}
.y5e{bottom:180.160035pt;}
.yae{bottom:183.840088pt;}
.y7d{bottom:186.240052pt;}
.ya1{bottom:190.240052pt;}
.y38{bottom:192.320069pt;}
.y5d{bottom:198.560059pt;}
.yad{bottom:202.240052pt;}
.y7c{bottom:204.640076pt;}
.ya0{bottom:208.640076pt;}
.y37{bottom:210.720032pt;}
.y5c{bottom:216.960083pt;}
.yac{bottom:220.640076pt;}
.y7b{bottom:223.040039pt;}
.y9f{bottom:227.040039pt;}
.y36{bottom:229.120057pt;}
.y5b{bottom:235.360047pt;}
.yab{bottom:239.040039pt;}
.y7a{bottom:241.440064pt;}
.y9e{bottom:245.440064pt;}
.y35{bottom:247.520081pt;}
.y5a{bottom:253.760071pt;}
.yaa{bottom:257.440064pt;}
.y79{bottom:259.840088pt;}
.y9d{bottom:263.840088pt;}
.y34{bottom:265.920044pt;}
.y59{bottom:272.160035pt;}
.ya9{bottom:275.840088pt;}
.y78{bottom:278.240052pt;}
.y9c{bottom:282.240052pt;}
.y33{bottom:284.320069pt;}
.y58{bottom:290.240052pt;}
.ya8{bottom:293.920044pt;}
.y77{bottom:296.640076pt;}
.y9b{bottom:300.640076pt;}
.y32{bottom:302.720032pt;}
.y57{bottom:308.640076pt;}
.ya7{bottom:312.320069pt;}
.y76{bottom:315.040039pt;}
.y9a{bottom:319.040039pt;}
.y31{bottom:321.120057pt;}
.y56{bottom:327.040039pt;}
.y75{bottom:333.440064pt;}
.y99{bottom:337.440064pt;}
.y30{bottom:339.520081pt;}
.y55{bottom:345.760071pt;}
.y74{bottom:351.840088pt;}
.y98{bottom:355.840088pt;}
.y2f{bottom:357.920044pt;}
.y54{bottom:360.320069pt;}
.y73{bottom:370.240052pt;}
.y97{bottom:374.240052pt;}
.y2e{bottom:376.320069pt;}
.y72{bottom:388.640076pt;}
.y96{bottom:392.640076pt;}
.y2d{bottom:394.720032pt;}
.y71{bottom:407.040039pt;}
.y95{bottom:411.040039pt;}
.y2c{bottom:413.120057pt;}
.y70{bottom:425.440064pt;}
.y94{bottom:429.440064pt;}
.y2b{bottom:431.520081pt;}
.y6f{bottom:443.840088pt;}
.y93{bottom:447.840088pt;}
.y2a{bottom:449.920044pt;}
.y6e{bottom:462.240052pt;}
.y92{bottom:466.240052pt;}
.y29{bottom:468.320069pt;}
.y6d{bottom:480.640076pt;}
.y91{bottom:484.640076pt;}
.y28{bottom:486.720032pt;}
.y6c{bottom:499.040039pt;}
.y90{bottom:503.040039pt;}
.y27{bottom:505.120057pt;}
.y6b{bottom:517.440064pt;}
.y8f{bottom:521.440064pt;}
.y26{bottom:523.520081pt;}
.y6a{bottom:535.840088pt;}
.y8e{bottom:539.840088pt;}
.y25{bottom:541.920044pt;}
.y69{bottom:554.240052pt;}
.y8d{bottom:558.240052pt;}
.y24{bottom:560.320069pt;}
.y68{bottom:572.640076pt;}
.y8c{bottom:576.640076pt;}
.y23{bottom:578.720032pt;}
.y67{bottom:591.040039pt;}
.y8b{bottom:595.040039pt;}
.y22{bottom:597.120057pt;}
.y66{bottom:609.440064pt;}
.y8a{bottom:613.440064pt;}
.y21{bottom:615.520050pt;}
.y65{bottom:627.840058pt;}
.y89{bottom:631.840058pt;}
.y20{bottom:633.920044pt;}
.y53{bottom:646.240052pt;}
.y88{bottom:650.240052pt;}
.y1f{bottom:652.320069pt;}
.y52{bottom:664.640046pt;}
.y87{bottom:668.640046pt;}
.y1e{bottom:670.720063pt;}
.y51{bottom:683.040070pt;}
.y86{bottom:687.040070pt;}
.y1d{bottom:689.120057pt;}
.y50{bottom:701.440064pt;}
.y85{bottom:705.440064pt;}
.y1c{bottom:707.520050pt;}
.y4f{bottom:719.840058pt;}
.y84{bottom:723.520050pt;}
.y1b{bottom:725.920044pt;}
.yb5{bottom:737.920044pt;}
.y4e{bottom:738.240052pt;}
.y83{bottom:741.920044pt;}
.y1a{bottom:744.320069pt;}
.yb4{bottom:756.320069pt;}
.y4d{bottom:756.640046pt;}
.y82{bottom:760.640046pt;}
.y19{bottom:762.400055pt;}
.y4c{bottom:775.040070pt;}
.y18{bottom:780.480072pt;}
.y4b{bottom:793.440064pt;}
.y17{bottom:795.840058pt;}
.y16{bottom:811.200074pt;}
.y4a{bottom:811.840058pt;}
.y15{bottom:826.880066pt;}
.y49{bottom:830.240052pt;}
.y14{bottom:845.600068pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:864.000061pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:882.080063pt;}
.y46{bottom:885.120057pt;}
.y64{bottom:885.440064pt;}
.y11{bottom:900.800064pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:918.880066pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:937.280060pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:955.680054pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:974.080063pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:992.480057pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1010.720063pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.h6{height:30.067372pt;}
.hb{height:37.247652pt;}
.h4{height:42.651279pt;}
.h2{height:44.876686pt;}
.h9{height:46.220486pt;}
.hc{height:46.595500pt;}
.ha{height:52.751981pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.hd{height:58.566137pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.xb{left:77.599998pt;}
.x17{left:86.879997pt;}
.x8{left:99.679429pt;}
.x15{left:104.639999pt;}
.x11{left:122.720001pt;}
.xa{left:153.119995pt;}
.x16{left:228.000000pt;}
.x18{left:348.480011pt;}
.x13{left:366.239990pt;}
.x1a{left:379.040009pt;}
.x2{left:384.799988pt;}
.x9{left:396.799988pt;}
.x19{left:420.320007pt;}
.xe{left:465.279999pt;}
.xf{left:473.440002pt;}
.xd{left:490.399994pt;}
.x10{left:501.760010pt;}
.x12{left:643.039978pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x7{left:698.880005pt;}
.x14{left:708.799988pt;}
.xc{left:718.080017pt;}
.x4{left:722.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; }
  