
    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_5f40fbf71befeff089c3d8e2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7e1934ddcafc36846fd21cfe.woff')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_e8ca08f170fbc90498bd8cd5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_b9116598a9d957d4b318334e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_84b86c55853916822efc4fe6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.648000px;}
.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;}
}
.ws8{word-spacing:-15.048000px;}
.ws5{word-spacing:-14.832000px;}
.ws6{word-spacing:-14.688000px;}
.ws0{word-spacing:-14.616000px;}
.ws2{word-spacing:-14.544000px;}
.ws3{word-spacing:-14.472000px;}
.ws4{word-spacing:-14.400000px;}
.ws7{word-spacing:-14.328000px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-10.728000px;}
._6{margin-left:-9.516000px;}
._9{margin-left:-7.764000px;}
._4{margin-left:-6.696000px;}
._5{margin-left:-5.592000px;}
._2{margin-left:-4.392000px;}
._1{margin-left:-2.952000px;}
._0{margin-left:-1.008000px;}
._3{width:1.056000px;}
._7{width:2.352000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.860000px;}
.y1{bottom:80.820000px;}
.y78{bottom:113.580000px;}
.y3e{bottom:115.020000px;}
.y64{bottom:116.460000px;}
.yda{bottom:120.780000px;}
.yb5{bottom:127.080000px;}
.yb7{bottom:128.520000px;}
.y77{bottom:138.960000px;}
.y23{bottom:140.400000px;}
.y63{bottom:141.840000px;}
.yea{bottom:144.720000px;}
.ya1{bottom:151.020000px;}
.yb4{bottom:152.460000px;}
.y93{bottom:153.900000px;}
.yd9{bottom:158.220000px;}
.yc6{bottom:163.080000px;}
.y76{bottom:164.520000px;}
.y22{bottom:165.960000px;}
.y62{bottom:167.400000px;}
.ye9{bottom:170.280000px;}
.yc8{bottom:172.830000px;}
.ya0{bottom:176.430000px;}
.yb3{bottom:177.870000px;}
.yb6{bottom:179.310000px;}
.yd8{bottom:183.810000px;}
.yc5{bottom:188.490000px;}
.y75{bottom:189.930000px;}
.y21{bottom:191.370000px;}
.y9f{bottom:201.990000px;}
.y7e{bottom:203.430000px;}
.y61{bottom:204.870000px;}
.ye8{bottom:207.750000px;}
.yc4{bottom:213.870000px;}
.y74{bottom:215.310000px;}
.y20{bottom:216.750000px;}
.yd7{bottom:221.250000px;}
.y88{bottom:227.370000px;}
.y7d{bottom:228.810000px;}
.yf1{bottom:233.130000px;}
.yc3{bottom:239.430000px;}
.y73{bottom:240.870000px;}
.y1f{bottom:242.310000px;}
.ye7{bottom:245.190000px;}
.yd6{bottom:246.630000px;}
.y9e{bottom:252.750000px;}
.y3d{bottom:254.370000px;}
.y87{bottom:264.810000px;}
.yab{bottom:266.250000px;}
.y1e{bottom:267.690000px;}
.ye6{bottom:270.570000px;}
.y60{bottom:274.710000px;}
.y72{bottom:278.310000px;}
.y3c{bottom:279.750000px;}
.yd5{bottom:284.070000px;}
.y86{bottom:290.370000px;}
.yaa{bottom:291.810000px;}
.y1d{bottom:293.250000px;}
.yf0{bottom:296.130000px;}
.ya5{bottom:303.690000px;}
.y3b{bottom:305.130000px;}
.ye5{bottom:308.010000px;}
.y71{bottom:315.750000px;}
.y5f{bottom:317.190000px;}
.y1c{bottom:318.630000px;}
.yd4{bottom:321.510000px;}
.y9d{bottom:327.810000px;}
.ya4{bottom:329.250000px;}
.y3a{bottom:330.690000px;}
.yef{bottom:333.570000px;}
.y70{bottom:341.130000px;}
.y55{bottom:342.570000px;}
.y1b{bottom:344.010000px;}
.ye4{bottom:345.630000px;}
.yd3{bottom:347.070000px;}
.y9c{bottom:353.190000px;}
.ya3{bottom:354.630000px;}
.y39{bottom:356.070000px;}
.yee{bottom:358.950000px;}
.y6f{bottom:366.690000px;}
.y5e{bottom:368.130000px;}
.ye3{bottom:371.010000px;}
.yd2{bottom:372.450000px;}
.y54{bottom:374.970000px;}
.y9b{bottom:378.570000px;}
.yb8{bottom:380.010000px;}
.y1a{bottom:381.630000px;}
.y6e{bottom:392.070000px;}
.y5d{bottom:393.510000px;}
.ye2{bottom:396.390000px;}
.y9a{bottom:404.175000px;}
.yb2{bottom:405.615000px;}
.y19{bottom:407.055000px;}
.yd1{bottom:409.935000px;}
.yc2{bottom:416.055000px;}
.y53{bottom:417.675000px;}
.y38{bottom:419.115000px;}
.yed{bottom:421.995000px;}
.y99{bottom:429.555000px;}
.y7c{bottom:430.995000px;}
.y18{bottom:432.435000px;}
.ye1{bottom:433.875000px;}
.yc1{bottom:441.615000px;}
.y52{bottom:443.055000px;}
.ya9{bottom:444.495000px;}
.yd0{bottom:447.375000px;}
.y85{bottom:455.115000px;}
.y37{bottom:456.555000px;}
.y17{bottom:457.995000px;}
.ye0{bottom:459.435000px;}
.y7b{bottom:463.395000px;}
.yc0{bottom:466.995000px;}
.y51{bottom:468.435000px;}
.ya8{bottom:469.875000px;}
.yb1{bottom:475.455000px;}
.y84{bottom:480.495000px;}
.y36{bottom:481.935000px;}
.y16{bottom:483.375000px;}
.ycf{bottom:484.815000px;}
.ybf{bottom:492.555000px;}
.y50{bottom:493.995000px;}
.y92{bottom:495.435000px;}
.ydf{bottom:496.875000px;}
.y6d{bottom:505.875000px;}
.y35{bottom:507.315000px;}
.y15{bottom:508.935000px;}
.yce{bottom:510.375000px;}
.yb0{bottom:517.935000px;}
.y4f{bottom:519.375000px;}
.y91{bottom:520.815000px;}
.yde{bottom:522.255000px;}
.y6c{bottom:531.435000px;}
.y34{bottom:532.875000px;}
.y14{bottom:534.315000px;}
.y98{bottom:543.315000px;}
.y4e{bottom:544.935000px;}
.y90{bottom:546.375000px;}
.ycd{bottom:547.815000px;}
.ybe{bottom:555.375000px;}
.y6b{bottom:556.815000px;}
.y33{bottom:558.255000px;}
.ydd{bottom:559.695000px;}
.y97{bottom:568.875000px;}
.y4d{bottom:570.315000px;}
.y13{bottom:571.755000px;}
.ycc{bottom:573.195000px;}
.ybd{bottom:580.935000px;}
.y6a{bottom:582.375000px;}
.y32{bottom:583.815000px;}
.ydc{bottom:585.255000px;}
.y83{bottom:594.255000px;}
.y5c{bottom:595.695000px;}
.y12{bottom:597.135000px;}
.yaf{bottom:606.315000px;}
.y4c{bottom:607.755000px;}
.y31{bottom:609.195000px;}
.ycb{bottom:610.635000px;}
.y96{bottom:619.815000px;}
.y5b{bottom:621.255000px;}
.y11{bottom:622.695000px;}
.y82{bottom:631.725000px;}
.y69{bottom:633.165000px;}
.ybb{bottom:634.605000px;}
.y4b{bottom:645.225000px;}
.y30{bottom:646.665000px;}
.y10{bottom:648.105000px;}
.y81{bottom:657.285000px;}
.y5a{bottom:658.725000px;}
.y4a{bottom:670.605000px;}
.y2f{bottom:672.045000px;}
.yf{bottom:673.665000px;}
.ya7{bottom:679.065000px;}
.y80{bottom:682.665000px;}
.y8f{bottom:684.105000px;}
.ydb{bottom:685.545000px;}
.y49{bottom:696.165000px;}
.y2e{bottom:697.605000px;}
.ye{bottom:699.045000px;}
.y7a{bottom:708.045000px;}
.y8e{bottom:709.665000px;}
.yca{bottom:711.105000px;}
.y48{bottom:721.545000px;}
.y2d{bottom:722.985000px;}
.yd{bottom:724.425000px;}
.y79{bottom:733.605000px;}
.y8d{bottom:735.045000px;}
.yec{bottom:736.485000px;}
.y47{bottom:747.105000px;}
.y2c{bottom:748.545000px;}
.y59{bottom:758.985000px;}
.y8c{bottom:760.425000px;}
.yc{bottom:761.865000px;}
.y95{bottom:771.045000px;}
.y68{bottom:772.485000px;}
.y2b{bottom:773.925000px;}
.y46{bottom:784.545000px;}
.y8b{bottom:785.985000px;}
.yb{bottom:794.265000px;}
.y94{bottom:796.425000px;}
.ya2{bottom:797.865000px;}
.y2a{bottom:799.305000px;}
.y45{bottom:809.925000px;}
.y8a{bottom:811.365000px;}
.y7f{bottom:821.985000px;}
.yc7{bottom:823.425000px;}
.yeb{bottom:824.865000px;}
.ybc{bottom:833.865000px;}
.y44{bottom:835.305000px;}
.ya{bottom:836.925000px;}
.yc9{bottom:843.765000px;}
.y67{bottom:847.365000px;}
.yae{bottom:859.470000px;}
.y43{bottom:860.910000px;}
.y9{bottom:862.350000px;}
.y66{bottom:872.970000px;}
.y29{bottom:874.410000px;}
.yad{bottom:884.850000px;}
.y42{bottom:886.290000px;}
.y8{bottom:887.730000px;}
.y58{bottom:898.350000px;}
.yba{bottom:899.790000px;}
.y28{bottom:906.810000px;}
.yac{bottom:910.410000px;}
.y41{bottom:911.850000px;}
.y65{bottom:923.730000px;}
.y7{bottom:925.170000px;}
.y57{bottom:935.790000px;}
.ya6{bottom:937.230000px;}
.y89{bottom:944.250000px;}
.y27{bottom:949.290000px;}
.y56{bottom:961.170000px;}
.y6{bottom:962.610000px;}
.yb9{bottom:969.630000px;}
.y26{bottom:974.670000px;}
.y40{bottom:986.730000px;}
.y5{bottom:988.170000px;}
.y25{bottom:1000.230000px;}
.y3f{bottom:1012.110000px;}
.y4{bottom:1025.610000px;}
.y24{bottom:1037.670000px;}
.y3{bottom:1063.050000px;}
.h1{height:62.402344px;}
.h2{height:62.507812px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.035986px;}
.x4{left:449.354986px;}
.x1{left:454.214986px;}
.x3{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.576000pt;}
.ws8{word-spacing:-13.376000pt;}
.ws5{word-spacing:-13.184000pt;}
.ws6{word-spacing:-13.056000pt;}
.ws0{word-spacing:-12.992000pt;}
.ws2{word-spacing:-12.928000pt;}
.ws3{word-spacing:-12.864000pt;}
.ws4{word-spacing:-12.800000pt;}
.ws7{word-spacing:-12.736000pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-9.536000pt;}
._6{margin-left:-8.458667pt;}
._9{margin-left:-6.901333pt;}
._4{margin-left:-5.952000pt;}
._5{margin-left:-4.970667pt;}
._2{margin-left:-3.904000pt;}
._1{margin-left:-2.624000pt;}
._0{margin-left:-0.896000pt;}
._3{width:0.938667pt;}
._7{width:2.090667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:52.320000pt;}
.y1{bottom:71.840000pt;}
.y78{bottom:100.960000pt;}
.y3e{bottom:102.240000pt;}
.y64{bottom:103.520000pt;}
.yda{bottom:107.360000pt;}
.yb5{bottom:112.960000pt;}
.yb7{bottom:114.240000pt;}
.y77{bottom:123.520000pt;}
.y23{bottom:124.800000pt;}
.y63{bottom:126.080000pt;}
.yea{bottom:128.640000pt;}
.ya1{bottom:134.240000pt;}
.yb4{bottom:135.520000pt;}
.y93{bottom:136.800000pt;}
.yd9{bottom:140.640000pt;}
.yc6{bottom:144.960000pt;}
.y76{bottom:146.240000pt;}
.y22{bottom:147.520000pt;}
.y62{bottom:148.800000pt;}
.ye9{bottom:151.360000pt;}
.yc8{bottom:153.626667pt;}
.ya0{bottom:156.826667pt;}
.yb3{bottom:158.106667pt;}
.yb6{bottom:159.386667pt;}
.yd8{bottom:163.386667pt;}
.yc5{bottom:167.546667pt;}
.y75{bottom:168.826667pt;}
.y21{bottom:170.106667pt;}
.y9f{bottom:179.546667pt;}
.y7e{bottom:180.826667pt;}
.y61{bottom:182.106667pt;}
.ye8{bottom:184.666667pt;}
.yc4{bottom:190.106667pt;}
.y74{bottom:191.386667pt;}
.y20{bottom:192.666667pt;}
.yd7{bottom:196.666667pt;}
.y88{bottom:202.106667pt;}
.y7d{bottom:203.386667pt;}
.yf1{bottom:207.226667pt;}
.yc3{bottom:212.826667pt;}
.y73{bottom:214.106667pt;}
.y1f{bottom:215.386667pt;}
.ye7{bottom:217.946667pt;}
.yd6{bottom:219.226667pt;}
.y9e{bottom:224.666667pt;}
.y3d{bottom:226.106667pt;}
.y87{bottom:235.386667pt;}
.yab{bottom:236.666667pt;}
.y1e{bottom:237.946667pt;}
.ye6{bottom:240.506667pt;}
.y60{bottom:244.186667pt;}
.y72{bottom:247.386667pt;}
.y3c{bottom:248.666667pt;}
.yd5{bottom:252.506667pt;}
.y86{bottom:258.106667pt;}
.yaa{bottom:259.386667pt;}
.y1d{bottom:260.666667pt;}
.yf0{bottom:263.226667pt;}
.ya5{bottom:269.946667pt;}
.y3b{bottom:271.226667pt;}
.ye5{bottom:273.786667pt;}
.y71{bottom:280.666667pt;}
.y5f{bottom:281.946667pt;}
.y1c{bottom:283.226667pt;}
.yd4{bottom:285.786667pt;}
.y9d{bottom:291.386667pt;}
.ya4{bottom:292.666667pt;}
.y3a{bottom:293.946667pt;}
.yef{bottom:296.506667pt;}
.y70{bottom:303.226667pt;}
.y55{bottom:304.506667pt;}
.y1b{bottom:305.786667pt;}
.ye4{bottom:307.226667pt;}
.yd3{bottom:308.506667pt;}
.y9c{bottom:313.946667pt;}
.ya3{bottom:315.226667pt;}
.y39{bottom:316.506667pt;}
.yee{bottom:319.066667pt;}
.y6f{bottom:325.946667pt;}
.y5e{bottom:327.226667pt;}
.ye3{bottom:329.786667pt;}
.yd2{bottom:331.066667pt;}
.y54{bottom:333.306667pt;}
.y9b{bottom:336.506667pt;}
.yb8{bottom:337.786667pt;}
.y1a{bottom:339.226667pt;}
.y6e{bottom:348.506667pt;}
.y5d{bottom:349.786667pt;}
.ye2{bottom:352.346667pt;}
.y9a{bottom:359.266667pt;}
.yb2{bottom:360.546667pt;}
.y19{bottom:361.826667pt;}
.yd1{bottom:364.386667pt;}
.yc2{bottom:369.826667pt;}
.y53{bottom:371.266667pt;}
.y38{bottom:372.546667pt;}
.yed{bottom:375.106667pt;}
.y99{bottom:381.826667pt;}
.y7c{bottom:383.106667pt;}
.y18{bottom:384.386667pt;}
.ye1{bottom:385.666667pt;}
.yc1{bottom:392.546667pt;}
.y52{bottom:393.826667pt;}
.ya9{bottom:395.106667pt;}
.yd0{bottom:397.666667pt;}
.y85{bottom:404.546667pt;}
.y37{bottom:405.826667pt;}
.y17{bottom:407.106667pt;}
.ye0{bottom:408.386667pt;}
.y7b{bottom:411.906667pt;}
.yc0{bottom:415.106667pt;}
.y51{bottom:416.386667pt;}
.ya8{bottom:417.666667pt;}
.yb1{bottom:422.626667pt;}
.y84{bottom:427.106667pt;}
.y36{bottom:428.386667pt;}
.y16{bottom:429.666667pt;}
.ycf{bottom:430.946667pt;}
.ybf{bottom:437.826667pt;}
.y50{bottom:439.106667pt;}
.y92{bottom:440.386667pt;}
.ydf{bottom:441.666667pt;}
.y6d{bottom:449.666667pt;}
.y35{bottom:450.946667pt;}
.y15{bottom:452.386667pt;}
.yce{bottom:453.666667pt;}
.yb0{bottom:460.386667pt;}
.y4f{bottom:461.666667pt;}
.y91{bottom:462.946667pt;}
.yde{bottom:464.226667pt;}
.y6c{bottom:472.386667pt;}
.y34{bottom:473.666667pt;}
.y14{bottom:474.946667pt;}
.y98{bottom:482.946667pt;}
.y4e{bottom:484.386667pt;}
.y90{bottom:485.666667pt;}
.ycd{bottom:486.946667pt;}
.ybe{bottom:493.666667pt;}
.y6b{bottom:494.946667pt;}
.y33{bottom:496.226667pt;}
.ydd{bottom:497.506667pt;}
.y97{bottom:505.666667pt;}
.y4d{bottom:506.946667pt;}
.y13{bottom:508.226667pt;}
.ycc{bottom:509.506667pt;}
.ybd{bottom:516.386667pt;}
.y6a{bottom:517.666667pt;}
.y32{bottom:518.946667pt;}
.ydc{bottom:520.226667pt;}
.y83{bottom:528.226667pt;}
.y5c{bottom:529.506667pt;}
.y12{bottom:530.786667pt;}
.yaf{bottom:538.946667pt;}
.y4c{bottom:540.226667pt;}
.y31{bottom:541.506667pt;}
.ycb{bottom:542.786667pt;}
.y96{bottom:550.946667pt;}
.y5b{bottom:552.226667pt;}
.y11{bottom:553.506667pt;}
.y82{bottom:561.533333pt;}
.y69{bottom:562.813333pt;}
.ybb{bottom:564.093333pt;}
.y4b{bottom:573.533333pt;}
.y30{bottom:574.813333pt;}
.y10{bottom:576.093333pt;}
.y81{bottom:584.253333pt;}
.y5a{bottom:585.533333pt;}
.y4a{bottom:596.093333pt;}
.y2f{bottom:597.373333pt;}
.yf{bottom:598.813333pt;}
.ya7{bottom:603.613333pt;}
.y80{bottom:606.813333pt;}
.y8f{bottom:608.093333pt;}
.ydb{bottom:609.373333pt;}
.y49{bottom:618.813333pt;}
.y2e{bottom:620.093333pt;}
.ye{bottom:621.373333pt;}
.y7a{bottom:629.373333pt;}
.y8e{bottom:630.813333pt;}
.yca{bottom:632.093333pt;}
.y48{bottom:641.373333pt;}
.y2d{bottom:642.653333pt;}
.yd{bottom:643.933333pt;}
.y79{bottom:652.093333pt;}
.y8d{bottom:653.373333pt;}
.yec{bottom:654.653333pt;}
.y47{bottom:664.093333pt;}
.y2c{bottom:665.373333pt;}
.y59{bottom:674.653333pt;}
.y8c{bottom:675.933333pt;}
.yc{bottom:677.213333pt;}
.y95{bottom:685.373333pt;}
.y68{bottom:686.653333pt;}
.y2b{bottom:687.933333pt;}
.y46{bottom:697.373333pt;}
.y8b{bottom:698.653333pt;}
.yb{bottom:706.013333pt;}
.y94{bottom:707.933333pt;}
.ya2{bottom:709.213333pt;}
.y2a{bottom:710.493333pt;}
.y45{bottom:719.933333pt;}
.y8a{bottom:721.213333pt;}
.y7f{bottom:730.653333pt;}
.yc7{bottom:731.933333pt;}
.yeb{bottom:733.213333pt;}
.ybc{bottom:741.213333pt;}
.y44{bottom:742.493333pt;}
.ya{bottom:743.933333pt;}
.yc9{bottom:750.013333pt;}
.y67{bottom:753.213333pt;}
.yae{bottom:763.973333pt;}
.y43{bottom:765.253333pt;}
.y9{bottom:766.533333pt;}
.y66{bottom:775.973333pt;}
.y29{bottom:777.253333pt;}
.yad{bottom:786.533333pt;}
.y42{bottom:787.813333pt;}
.y8{bottom:789.093333pt;}
.y58{bottom:798.533333pt;}
.yba{bottom:799.813333pt;}
.y28{bottom:806.053333pt;}
.yac{bottom:809.253333pt;}
.y41{bottom:810.533333pt;}
.y65{bottom:821.093333pt;}
.y7{bottom:822.373333pt;}
.y57{bottom:831.813333pt;}
.ya6{bottom:833.093333pt;}
.y89{bottom:839.333333pt;}
.y27{bottom:843.813333pt;}
.y56{bottom:854.373333pt;}
.y6{bottom:855.653333pt;}
.yb9{bottom:861.893333pt;}
.y26{bottom:866.373333pt;}
.y40{bottom:877.093333pt;}
.y5{bottom:878.373333pt;}
.y25{bottom:889.093333pt;}
.y3f{bottom:899.653333pt;}
.y4{bottom:911.653333pt;}
.y24{bottom:922.373333pt;}
.y3{bottom:944.933333pt;}
.h1{height:55.468750pt;}
.h2{height:55.562500pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x4{left:399.426655pt;}
.x1{left:403.746655pt;}
.x3{left:720.133321pt;}
}




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