
    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_6dd117569d64155ead08f9c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_1f6e53690287b44e05ff9c74.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_8b9e6b3ad656806d3e508ae2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_18f4fd10c143547bad8e06ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_a0d6cabbf13de0f68834d146.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_bd2e2047953ef25d7b962c0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_58c90acd474f905c7cbbb029.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_d325b350c5348c119e3479b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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:ff9;src:url('chunks/assets/font_857f1d8307a8e3242f987f09.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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:ffb;src:url('chunks/assets/font_dc56466042c378d2e1a63eb4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.ls14{letter-spacing:-0.037440px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.129600px;}
.ls0{letter-spacing:0.187200px;}
.lse{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.341280px;}
.ls3{letter-spacing:0.360000px;}
.ls6{letter-spacing:7.020000px;}
.ls9{letter-spacing:10.620000px;}
.ls11{letter-spacing:11.340000px;}
.ls12{letter-spacing:14.220000px;}
.lsb{letter-spacing:20.700000px;}
.lsf{letter-spacing:27.180000px;}
.ls8{letter-spacing:31.500000px;}
.ls5{letter-spacing:38.700000px;}
.ls4{letter-spacing:38.820000px;}
.lsa{letter-spacing:47.340000px;}
.ls13{letter-spacing:65.340000px;}
.ls10{letter-spacing:129.221280px;}
.lsd{letter-spacing:153.677280px;}
.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:-21.420000px;}
.ws0{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.022560px;}
.ws1{word-spacing:0.000000px;}
._15{margin-left:-5.802480px;}
._e{margin-left:-4.548960px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.189440px;}
._2{width:1.525440px;}
._11{width:2.948400px;}
._14{width:4.306320px;}
._19{width:6.318000px;}
._18{width:7.591680px;}
._20{width:9.529200px;}
._1a{width:10.567200px;}
._16{width:11.887920px;}
._9{width:13.720800px;}
._8{width:15.257520px;}
._a{width:16.332480px;}
._7{width:18.027360px;}
._1f{width:20.055360px;}
._3{width:22.225440px;}
._b{width:24.245040px;}
._21{width:26.629920px;}
._c{width:29.736720px;}
._d{width:30.884880px;}
._5{width:31.937040px;}
._4{width:32.947920px;}
._6{width:35.274000px;}
._17{width:37.918080px;}
._12{width:39.434400px;}
._13{width:40.899840px;}
._22{width:42.035760px;}
._10{width:44.731440px;}
._1e{width:45.994800px;}
._1d{width:47.184480px;}
._23{width:65.574480px;}
._f{width:76.995360px;}
._1c{width:95.612400px;}
._1b{width:96.633360px;}
.fc4{color:rgb(54,95,145);}
.fc3{color:rgb(36,63,96);}
.fc2{color:rgb(79,97,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,192,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:12.960000px;}
.y6{bottom:39.420000px;}
.y5{bottom:57.600000px;}
.y5c{bottom:124.380000px;}
.y44{bottom:128.880000px;}
.y39{bottom:148.500000px;}
.y5b{bottom:152.100000px;}
.y43{bottom:156.780000px;}
.y38{bottom:176.220000px;}
.y5a{bottom:179.820000px;}
.y42{bottom:184.500000px;}
.y37{bottom:225.030000px;}
.y23{bottom:225.750000px;}
.y59{bottom:228.630000px;}
.y41{bottom:233.310000px;}
.y22{bottom:253.470000px;}
.y58{bottom:256.350000px;}
.y40{bottom:262.470000px;}
.y36{bottom:273.810000px;}
.y21{bottom:281.190000px;}
.y57{bottom:284.250000px;}
.y3f{bottom:291.630000px;}
.y35{bottom:301.530000px;}
.y20{bottom:308.910000px;}
.y56{bottom:311.970000px;}
.y3e{bottom:320.970000px;}
.y1f{bottom:336.810000px;}
.y34{bottom:350.310000px;}
.y55{bottom:360.750000px;}
.y3d{bottom:371.370000px;}
.y1e{bottom:385.590000px;}
.y54{bottom:389.910000px;}
.y33{bottom:399.090000px;}
.y1d{bottom:413.310000px;}
.y53{bottom:419.250000px;}
.y3c{bottom:420.150000px;}
.y32{bottom:426.990000px;}
.y1c{bottom:441.030000px;}
.y3b{bottom:447.915000px;}
.y52{bottom:448.455000px;}
.y1b{bottom:468.795000px;}
.y3a{bottom:475.635000px;}
.y31{bottom:475.815000px;}
.y1a{bottom:496.695000px;}
.y51{bottom:498.855000px;}
.y30{bottom:503.535000px;}
.y19{bottom:524.415000px;}
.y50{bottom:547.815000px;}
.y2f{bottom:552.135000px;}
.y18{bottom:573.195000px;}
.y4f{bottom:576.795000px;}
.y2e{bottom:601.095000px;}
.y4e{bottom:606.135000px;}
.y17{bottom:621.975000px;}
.y4d{bottom:635.475000px;}
.y16{bottom:649.695000px;}
.y2d{bottom:649.875000px;}
.y15{bottom:677.415000px;}
.y2c{bottom:677.595000px;}
.y4c{bottom:685.725000px;}
.y65{bottom:699.225000px;}
.y14{bottom:726.225000px;}
.y2b{bottom:726.405000px;}
.y4b{bottom:734.505000px;}
.y64{bottom:748.005000px;}
.y13{bottom:754.125000px;}
.y2a{bottom:775.185000px;}
.y63{bottom:775.905000px;}
.y12{bottom:781.845000px;}
.y4a{bottom:783.285000px;}
.y62{bottom:803.625000px;}
.y11{bottom:809.565000px;}
.y49{bottom:811.185000px;}
.y29{bottom:823.965000px;}
.y61{bottom:831.345000px;}
.y10{bottom:837.465000px;}
.y60{bottom:859.065000px;}
.y48{bottom:859.965000px;}
.yf{bottom:865.185000px;}
.y28{bottom:872.745000px;}
.y5f{bottom:886.965000px;}
.y47{bottom:889.125000px;}
.ye{bottom:892.905000px;}
.y5e{bottom:914.685000px;}
.y46{bottom:918.330000px;}
.y27{bottom:921.570000px;}
.yd{bottom:923.730000px;}
.y5d{bottom:942.450000px;}
.y45{bottom:947.670000px;}
.yc{bottom:951.450000px;}
.y26{bottom:970.350000px;}
.yb{bottom:982.230000px;}
.y25{bottom:998.070000px;}
.ya{bottom:1013.010000px;}
.y24{bottom:1025.790000px;}
.y9{bottom:1043.790000px;}
.y8{bottom:1074.570000px;}
.y4{bottom:1098.330000px;}
.y3{bottom:1126.230000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1198.440000px;}
.h5{height:36.360000px;}
.h2{height:48.224531px;}
.h9{height:58.819922px;}
.h8{height:59.436914px;}
.h4{height:65.010937px;}
.ha{height:82.635820px;}
.h6{height:82.676953px;}
.h7{height:84.898125px;}
.hb{height:86.585445px;}
.h3{height:108.843750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:55.296000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x7{left:11.880000px;}
.x6{left:27.000000px;}
.x5{left:84.995987px;}
.x8{left:137.735987px;}
.xc{left:138.995987px;}
.x3{left:213.689987px;}
.xb{left:258.914987px;}
.x2{left:267.734987px;}
.xa{left:295.274987px;}
.xd{left:327.854987px;}
.x4{left:445.244987px;}
.x9{left:446.684987px;}
.x1{left:581.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.115200pt;}
.ls0{letter-spacing:0.166400pt;}
.lse{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.303360pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6{letter-spacing:6.240000pt;}
.ls9{letter-spacing:9.440000pt;}
.ls11{letter-spacing:10.080000pt;}
.ls12{letter-spacing:12.640000pt;}
.lsb{letter-spacing:18.400000pt;}
.lsf{letter-spacing:24.160000pt;}
.ls8{letter-spacing:28.000000pt;}
.ls5{letter-spacing:34.400000pt;}
.ls4{letter-spacing:34.506667pt;}
.lsa{letter-spacing:42.080000pt;}
.ls13{letter-spacing:58.080000pt;}
.ls10{letter-spacing:114.863360pt;}
.lsd{letter-spacing:136.602027pt;}
.ws2{word-spacing:-19.040000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.686720pt;}
.ws1{word-spacing:0.000000pt;}
._15{margin-left:-5.157760pt;}
._e{margin-left:-4.043520pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.057280pt;}
._2{width:1.355947pt;}
._11{width:2.620800pt;}
._14{width:3.827840pt;}
._19{width:5.616000pt;}
._18{width:6.748160pt;}
._20{width:8.470400pt;}
._1a{width:9.393067pt;}
._16{width:10.567040pt;}
._9{width:12.196267pt;}
._8{width:13.562240pt;}
._a{width:14.517760pt;}
._7{width:16.024320pt;}
._1f{width:17.826987pt;}
._3{width:19.755947pt;}
._b{width:21.551147pt;}
._21{width:23.671040pt;}
._c{width:26.432640pt;}
._d{width:27.453227pt;}
._5{width:28.388480pt;}
._4{width:29.287040pt;}
._6{width:31.354667pt;}
._17{width:33.704960pt;}
._12{width:35.052800pt;}
._13{width:36.355413pt;}
._22{width:37.365120pt;}
._10{width:39.761280pt;}
._1e{width:40.884267pt;}
._1d{width:41.941760pt;}
._23{width:58.288427pt;}
._f{width:68.440320pt;}
._1c{width:84.988800pt;}
._1b{width:85.896320pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:11.520000pt;}
.y6{bottom:35.040000pt;}
.y5{bottom:51.200000pt;}
.y5c{bottom:110.560000pt;}
.y44{bottom:114.560000pt;}
.y39{bottom:132.000000pt;}
.y5b{bottom:135.200000pt;}
.y43{bottom:139.360000pt;}
.y38{bottom:156.640000pt;}
.y5a{bottom:159.840000pt;}
.y42{bottom:164.000000pt;}
.y37{bottom:200.026667pt;}
.y23{bottom:200.666667pt;}
.y59{bottom:203.226667pt;}
.y41{bottom:207.386667pt;}
.y22{bottom:225.306667pt;}
.y58{bottom:227.866667pt;}
.y40{bottom:233.306667pt;}
.y36{bottom:243.386667pt;}
.y21{bottom:249.946667pt;}
.y57{bottom:252.666667pt;}
.y3f{bottom:259.226667pt;}
.y35{bottom:268.026667pt;}
.y20{bottom:274.586667pt;}
.y56{bottom:277.306667pt;}
.y3e{bottom:285.306667pt;}
.y1f{bottom:299.386667pt;}
.y34{bottom:311.386667pt;}
.y55{bottom:320.666667pt;}
.y3d{bottom:330.106667pt;}
.y1e{bottom:342.746667pt;}
.y54{bottom:346.586667pt;}
.y33{bottom:354.746667pt;}
.y1d{bottom:367.386667pt;}
.y53{bottom:372.666667pt;}
.y3c{bottom:373.466667pt;}
.y32{bottom:379.546667pt;}
.y1c{bottom:392.026667pt;}
.y3b{bottom:398.146667pt;}
.y52{bottom:398.626667pt;}
.y1b{bottom:416.706667pt;}
.y3a{bottom:422.786667pt;}
.y31{bottom:422.946667pt;}
.y1a{bottom:441.506667pt;}
.y51{bottom:443.426667pt;}
.y30{bottom:447.586667pt;}
.y19{bottom:466.146667pt;}
.y50{bottom:486.946667pt;}
.y2f{bottom:490.786667pt;}
.y18{bottom:509.506667pt;}
.y4f{bottom:512.706667pt;}
.y2e{bottom:534.306667pt;}
.y4e{bottom:538.786667pt;}
.y17{bottom:552.866667pt;}
.y4d{bottom:564.866667pt;}
.y16{bottom:577.506667pt;}
.y2d{bottom:577.666667pt;}
.y15{bottom:602.146667pt;}
.y2c{bottom:602.306667pt;}
.y4c{bottom:609.533333pt;}
.y65{bottom:621.533333pt;}
.y14{bottom:645.533333pt;}
.y2b{bottom:645.693333pt;}
.y4b{bottom:652.893333pt;}
.y64{bottom:664.893333pt;}
.y13{bottom:670.333333pt;}
.y2a{bottom:689.053333pt;}
.y63{bottom:689.693333pt;}
.y12{bottom:694.973333pt;}
.y4a{bottom:696.253333pt;}
.y62{bottom:714.333333pt;}
.y11{bottom:719.613333pt;}
.y49{bottom:721.053333pt;}
.y29{bottom:732.413333pt;}
.y61{bottom:738.973333pt;}
.y10{bottom:744.413333pt;}
.y60{bottom:763.613333pt;}
.y48{bottom:764.413333pt;}
.yf{bottom:769.053333pt;}
.y28{bottom:775.773333pt;}
.y5f{bottom:788.413333pt;}
.y47{bottom:790.333333pt;}
.ye{bottom:793.693333pt;}
.y5e{bottom:813.053333pt;}
.y46{bottom:816.293333pt;}
.y27{bottom:819.173333pt;}
.yd{bottom:821.093333pt;}
.y5d{bottom:837.733333pt;}
.y45{bottom:842.373333pt;}
.yc{bottom:845.733333pt;}
.y26{bottom:862.533333pt;}
.yb{bottom:873.093333pt;}
.y25{bottom:887.173333pt;}
.ya{bottom:900.453333pt;}
.y24{bottom:911.813333pt;}
.y9{bottom:927.813333pt;}
.y8{bottom:955.173333pt;}
.y4{bottom:976.293333pt;}
.y3{bottom:1001.093333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1065.280000pt;}
.h5{height:32.320000pt;}
.h2{height:42.866250pt;}
.h9{height:52.284375pt;}
.h8{height:52.832812pt;}
.h4{height:57.787500pt;}
.ha{height:73.454062pt;}
.h6{height:73.490625pt;}
.h7{height:75.465000pt;}
.hb{height:76.964840pt;}
.h3{height:96.750000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:49.152000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x7{left:10.560000pt;}
.x6{left:24.000000pt;}
.x5{left:75.551988pt;}
.x8{left:122.431988pt;}
.xc{left:123.551988pt;}
.x3{left:189.946655pt;}
.xb{left:230.146655pt;}
.x2{left:237.986655pt;}
.xa{left:262.466655pt;}
.xd{left:291.426655pt;}
.x4{left:395.773321pt;}
.x9{left:397.053321pt;}
.x1{left:517.093322pt;}
}




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