
    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_09fa7a57db83e952d366e340.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.177734;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_daa0faf2fe435892e0997833.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.187012;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_4bcf6f193a5999156cfb72cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.157227;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_426e1651bd4dc4682e4e8493.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_b5dc10b956fe1f7c0dda5661.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.880371;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_5658924a27895948d1160d2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.678223;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.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-14.399400px;}
.v3{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.399400px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018144px;}
.ls2{letter-spacing:0.362016px;}
.ls11{letter-spacing:0.461808px;}
.ls1{letter-spacing:0.482976px;}
.ls4{letter-spacing:0.665280px;}
.ls9{letter-spacing:0.717816px;}
.ls3{letter-spacing:0.717984px;}
.ls5{letter-spacing:0.718128px;}
.ls0{letter-spacing:0.718416px;}
.lsa{letter-spacing:0.719016px;}
.lsb{letter-spacing:1.436832px;}
.lsc{letter-spacing:2.116800px;}
.lsd{letter-spacing:2.158272px;}
.ls7{letter-spacing:3.598128px;}
.ls10{letter-spacing:6.477840px;}
.ls8{letter-spacing:7.917696px;}
.lse{letter-spacing:16.556832px;}
.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;}
}
.ws6{word-spacing:-54.719400px;}
.ws2{word-spacing:-22.680000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.120000px;}
.ws5{word-spacing:-13.679850px;}
.ws1{word-spacing:-11.880000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-6.406294px;}
._6{margin-left:-5.261760px;}
._11{margin-left:-4.233600px;}
._2{margin-left:-2.721600px;}
._0{margin-left:-1.391040px;}
._1{width:1.088640px;}
._3{width:2.128902px;}
._b{width:3.556218px;}
._f{width:5.019840px;}
._9{width:6.350400px;}
._7{width:7.680960px;}
._8{width:8.769600px;}
._a{width:9.918720px;}
._12{width:11.309760px;}
._13{width:12.531461px;}
._10{width:16.985803px;}
._15{width:18.627840px;}
._5{width:20.281112px;}
._4{width:22.196160px;}
._14{width:24.346293px;}
._c{width:25.401600px;}
._d{width:26.792640px;}
.fc2{color:transparent;}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs7{font-size:54.719400px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:90.720000px;}
.y0{bottom:0.000000px;}
.y5{bottom:104.400000px;}
.y4{bottom:137.880000px;}
.y4e{bottom:156.240000px;}
.y29{bottom:159.120000px;}
.y78{bottom:173.160000px;}
.y28{bottom:176.040000px;}
.y77{bottom:189.720000px;}
.y4d{bottom:192.600000px;}
.y93{bottom:192.959850px;}
.y7b{bottom:197.640000px;}
.y27{bottom:202.680000px;}
.y6a{bottom:208.440000px;}
.y4c{bottom:209.520000px;}
.y7a{bottom:218.879850px;}
.y92{bottom:219.600000px;}
.y76{bottom:223.200000px;}
.y26{bottom:224.280000px;}
.y69{bottom:230.040000px;}
.y79{bottom:240.480000px;}
.y91{bottom:241.200000px;}
.y75{bottom:243.000000px;}
.y25{bottom:245.520000px;}
.y68{bottom:251.280000px;}
.y74{bottom:259.920000px;}
.y4b{bottom:261.720000px;}
.y90{bottom:262.440000px;}
.y24{bottom:267.120000px;}
.y67{bottom:272.879850px;}
.y4a{bottom:283.320000px;}
.y8f{bottom:284.040000px;}
.y23{bottom:288.360000px;}
.y66{bottom:294.480000px;}
.y49{bottom:304.560000px;}
.y8e{bottom:305.280000px;}
.y73{bottom:306.000000px;}
.y22{bottom:309.959850px;}
.y65{bottom:315.720000px;}
.y48{bottom:326.160000px;}
.y8d{bottom:326.880000px;}
.y72{bottom:327.240000px;}
.y21{bottom:331.560000px;}
.y64{bottom:337.320000px;}
.y47{bottom:347.400000px;}
.y8c{bottom:348.120000px;}
.y71{bottom:348.840000px;}
.y20{bottom:352.800000px;}
.y63{bottom:358.560000px;}
.y46{bottom:369.000000px;}
.y8b{bottom:369.720000px;}
.y70{bottom:370.440000px;}
.y1f{bottom:374.400000px;}
.y62{bottom:380.160000px;}
.y45{bottom:390.600000px;}
.y8a{bottom:390.960000px;}
.y6f{bottom:391.680000px;}
.y1e{bottom:395.640000px;}
.y61{bottom:401.400000px;}
.y44{bottom:411.840000px;}
.y89{bottom:412.560000px;}
.y6e{bottom:413.280000px;}
.y1d{bottom:417.240000px;}
.y60{bottom:423.000000px;}
.y43{bottom:433.440000px;}
.y88{bottom:433.800000px;}
.y6d{bottom:434.520000px;}
.y1c{bottom:438.480000px;}
.y5f{bottom:444.240000px;}
.y42{bottom:454.680000px;}
.y87{bottom:455.400000px;}
.y6c{bottom:455.759850px;}
.y1b{bottom:460.080000px;}
.y5e{bottom:465.840000px;}
.y41{bottom:476.280000px;}
.y6b{bottom:476.640000px;}
.y86{bottom:477.000000px;}
.y1a{bottom:481.320000px;}
.y5d{bottom:487.080000px;}
.y40{bottom:497.520000px;}
.y85{bottom:498.240000px;}
.y19{bottom:502.919850px;}
.y5c{bottom:508.680000px;}
.y3f{bottom:519.120000px;}
.y84{bottom:519.840000px;}
.y18{bottom:524.160000px;}
.y5b{bottom:529.919850px;}
.y3e{bottom:540.360000px;}
.y83{bottom:541.080000px;}
.y17{bottom:545.759850px;}
.y5a{bottom:551.520000px;}
.y3d{bottom:561.960000px;}
.y82{bottom:562.680000px;}
.y16{bottom:567.360000px;}
.y59{bottom:573.120000px;}
.y3c{bottom:583.200000px;}
.y81{bottom:583.919850px;}
.y15{bottom:586.080000px;}
.y58{bottom:603.360000px;}
.y14{bottom:604.440000px;}
.y3b{bottom:604.800000px;}
.y80{bottom:605.520000px;}
.y57{bottom:620.280000px;}
.y13{bottom:626.040000px;}
.y3a{bottom:626.400000px;}
.y7f{bottom:626.759850px;}
.y56{bottom:636.840000px;}
.y12{bottom:647.280000px;}
.y39{bottom:647.640000px;}
.y7e{bottom:648.360000px;}
.y55{bottom:668.520000px;}
.y11{bottom:668.880000px;}
.y38{bottom:669.240000px;}
.y7d{bottom:669.600000px;}
.y54{bottom:685.440000px;}
.y10{bottom:690.120000px;}
.y37{bottom:690.480000px;}
.y7c{bottom:690.840000px;}
.yf{bottom:711.720000px;}
.y36{bottom:712.080000px;}
.y53{bottom:717.120000px;}
.ye{bottom:730.800000px;}
.y35{bottom:733.320000px;}
.y52{bottom:734.040000px;}
.y9d{bottom:734.400000px;}
.yd{bottom:748.080000px;}
.y51{bottom:750.600000px;}
.y34{bottom:754.920000px;}
.y9c{bottom:756.000000px;}
.y50{bottom:767.520000px;}
.yc{bottom:769.680000px;}
.y33{bottom:776.160000px;}
.y9b{bottom:777.240000px;}
.y4f{bottom:784.440000px;}
.yb{bottom:790.920000px;}
.y32{bottom:797.760000px;}
.y9a{bottom:798.839850px;}
.ya{bottom:815.760000px;}
.y31{bottom:819.000000px;}
.y99{bottom:820.080000px;}
.y30{bottom:840.600000px;}
.y98{bottom:841.680000px;}
.y9{bottom:843.839850px;}
.y2f{bottom:862.200000px;}
.y97{bottom:862.920000px;}
.y8{bottom:865.440000px;}
.y2e{bottom:883.440000px;}
.y96{bottom:884.519850px;}
.y7{bottom:886.680000px;}
.y2d{bottom:905.040000px;}
.y95{bottom:905.760000px;}
.y6{bottom:908.280000px;}
.y2c{bottom:926.280000px;}
.y94{bottom:926.640000px;}
.y3{bottom:927.000000px;}
.y2b{bottom:945.000000px;}
.y2{bottom:945.720000px;}
.y2a{bottom:963.720000px;}
.y1{bottom:964.440000px;}
.h4{height:37.783828px;}
.h5{height:37.989301px;}
.h7{height:43.883437px;}
.h6{height:49.509301px;}
.h8{height:53.953594px;}
.h1{height:54.603281px;}
.h2{height:54.721406px;}
.h3{height:80.930391px;}
.h0{height:1063.500000px;}
.w0{width:706.500000px;}
.x0{left:0.000000px;}
.x6{left:84.960000px;}
.xc{left:106.200000px;}
.xf{left:127.439850px;}
.x10{left:136.080000px;}
.x1{left:186.120000px;}
.x7{left:190.440000px;}
.xe{left:222.120000px;}
.xa{left:244.080000px;}
.x12{left:252.720000px;}
.x8{left:267.120000px;}
.x2{left:280.800000px;}
.xb{left:293.760000px;}
.x13{left:306.360000px;}
.x11{left:345.240000px;}
.x5{left:348.840000px;}
.x9{left:352.800000px;}
.xd{left:363.240000px;}
.x4{left:379.800000px;}
.x3{left:461.880000px;}
@media print{
.v2{vertical-align:-12.799467pt;}
.v3{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.799467pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016128pt;}
.ls2{letter-spacing:0.321792pt;}
.ls11{letter-spacing:0.410496pt;}
.ls1{letter-spacing:0.429312pt;}
.ls4{letter-spacing:0.591360pt;}
.ls9{letter-spacing:0.638059pt;}
.ls3{letter-spacing:0.638208pt;}
.ls5{letter-spacing:0.638336pt;}
.ls0{letter-spacing:0.638592pt;}
.lsa{letter-spacing:0.639125pt;}
.lsb{letter-spacing:1.277184pt;}
.lsc{letter-spacing:1.881600pt;}
.lsd{letter-spacing:1.918464pt;}
.ls7{letter-spacing:3.198336pt;}
.ls10{letter-spacing:5.758080pt;}
.ls8{letter-spacing:7.037952pt;}
.lse{letter-spacing:14.717184pt;}
.ws6{word-spacing:-48.639467pt;}
.ws2{word-spacing:-20.160000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws5{word-spacing:-12.159867pt;}
.ws1{word-spacing:-10.560000pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-5.694483pt;}
._6{margin-left:-4.677120pt;}
._11{margin-left:-3.763200pt;}
._2{margin-left:-2.419200pt;}
._0{margin-left:-1.236480pt;}
._1{width:0.967680pt;}
._3{width:1.892358pt;}
._b{width:3.161082pt;}
._f{width:4.462080pt;}
._9{width:5.644800pt;}
._7{width:6.827520pt;}
._8{width:7.795200pt;}
._a{width:8.816640pt;}
._12{width:10.053120pt;}
._13{width:11.139076pt;}
._10{width:15.098492pt;}
._15{width:16.558080pt;}
._5{width:18.027655pt;}
._4{width:19.729920pt;}
._14{width:21.641150pt;}
._c{width:22.579200pt;}
._d{width:23.815680pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs7{font-size:48.639467pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:80.640000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:92.800000pt;}
.y4{bottom:122.560000pt;}
.y4e{bottom:138.880000pt;}
.y29{bottom:141.440000pt;}
.y78{bottom:153.920000pt;}
.y28{bottom:156.480000pt;}
.y77{bottom:168.640000pt;}
.y4d{bottom:171.200000pt;}
.y93{bottom:171.519867pt;}
.y7b{bottom:175.680000pt;}
.y27{bottom:180.160000pt;}
.y6a{bottom:185.280000pt;}
.y4c{bottom:186.240000pt;}
.y7a{bottom:194.559867pt;}
.y92{bottom:195.200000pt;}
.y76{bottom:198.400000pt;}
.y26{bottom:199.360000pt;}
.y69{bottom:204.480000pt;}
.y79{bottom:213.760000pt;}
.y91{bottom:214.400000pt;}
.y75{bottom:216.000000pt;}
.y25{bottom:218.240000pt;}
.y68{bottom:223.360000pt;}
.y74{bottom:231.040000pt;}
.y4b{bottom:232.640000pt;}
.y90{bottom:233.280000pt;}
.y24{bottom:237.440000pt;}
.y67{bottom:242.559867pt;}
.y4a{bottom:251.840000pt;}
.y8f{bottom:252.480000pt;}
.y23{bottom:256.320000pt;}
.y66{bottom:261.760000pt;}
.y49{bottom:270.720000pt;}
.y8e{bottom:271.360000pt;}
.y73{bottom:272.000000pt;}
.y22{bottom:275.519867pt;}
.y65{bottom:280.640000pt;}
.y48{bottom:289.920000pt;}
.y8d{bottom:290.560000pt;}
.y72{bottom:290.880000pt;}
.y21{bottom:294.720000pt;}
.y64{bottom:299.840000pt;}
.y47{bottom:308.800000pt;}
.y8c{bottom:309.440000pt;}
.y71{bottom:310.080000pt;}
.y20{bottom:313.600000pt;}
.y63{bottom:318.720000pt;}
.y46{bottom:328.000000pt;}
.y8b{bottom:328.640000pt;}
.y70{bottom:329.280000pt;}
.y1f{bottom:332.800000pt;}
.y62{bottom:337.920000pt;}
.y45{bottom:347.200000pt;}
.y8a{bottom:347.520000pt;}
.y6f{bottom:348.160000pt;}
.y1e{bottom:351.680000pt;}
.y61{bottom:356.800000pt;}
.y44{bottom:366.080000pt;}
.y89{bottom:366.720000pt;}
.y6e{bottom:367.360000pt;}
.y1d{bottom:370.880000pt;}
.y60{bottom:376.000000pt;}
.y43{bottom:385.280000pt;}
.y88{bottom:385.600000pt;}
.y6d{bottom:386.240000pt;}
.y1c{bottom:389.760000pt;}
.y5f{bottom:394.880000pt;}
.y42{bottom:404.160000pt;}
.y87{bottom:404.800000pt;}
.y6c{bottom:405.119867pt;}
.y1b{bottom:408.960000pt;}
.y5e{bottom:414.080000pt;}
.y41{bottom:423.360000pt;}
.y6b{bottom:423.680000pt;}
.y86{bottom:424.000000pt;}
.y1a{bottom:427.840000pt;}
.y5d{bottom:432.960000pt;}
.y40{bottom:442.240000pt;}
.y85{bottom:442.880000pt;}
.y19{bottom:447.039867pt;}
.y5c{bottom:452.160000pt;}
.y3f{bottom:461.440000pt;}
.y84{bottom:462.080000pt;}
.y18{bottom:465.920000pt;}
.y5b{bottom:471.039867pt;}
.y3e{bottom:480.320000pt;}
.y83{bottom:480.960000pt;}
.y17{bottom:485.119867pt;}
.y5a{bottom:490.240000pt;}
.y3d{bottom:499.520000pt;}
.y82{bottom:500.160000pt;}
.y16{bottom:504.320000pt;}
.y59{bottom:509.440000pt;}
.y3c{bottom:518.400000pt;}
.y81{bottom:519.039867pt;}
.y15{bottom:520.960000pt;}
.y58{bottom:536.320000pt;}
.y14{bottom:537.280000pt;}
.y3b{bottom:537.600000pt;}
.y80{bottom:538.240000pt;}
.y57{bottom:551.360000pt;}
.y13{bottom:556.480000pt;}
.y3a{bottom:556.800000pt;}
.y7f{bottom:557.119867pt;}
.y56{bottom:566.080000pt;}
.y12{bottom:575.360000pt;}
.y39{bottom:575.680000pt;}
.y7e{bottom:576.320000pt;}
.y55{bottom:594.240000pt;}
.y11{bottom:594.560000pt;}
.y38{bottom:594.880000pt;}
.y7d{bottom:595.200000pt;}
.y54{bottom:609.280000pt;}
.y10{bottom:613.440000pt;}
.y37{bottom:613.760000pt;}
.y7c{bottom:614.080000pt;}
.yf{bottom:632.640000pt;}
.y36{bottom:632.960000pt;}
.y53{bottom:637.440000pt;}
.ye{bottom:649.600000pt;}
.y35{bottom:651.840000pt;}
.y52{bottom:652.480000pt;}
.y9d{bottom:652.800000pt;}
.yd{bottom:664.960000pt;}
.y51{bottom:667.200000pt;}
.y34{bottom:671.040000pt;}
.y9c{bottom:672.000000pt;}
.y50{bottom:682.240000pt;}
.yc{bottom:684.160000pt;}
.y33{bottom:689.920000pt;}
.y9b{bottom:690.880000pt;}
.y4f{bottom:697.280000pt;}
.yb{bottom:703.040000pt;}
.y32{bottom:709.120000pt;}
.y9a{bottom:710.079867pt;}
.ya{bottom:725.120000pt;}
.y31{bottom:728.000000pt;}
.y99{bottom:728.960000pt;}
.y30{bottom:747.200000pt;}
.y98{bottom:748.160000pt;}
.y9{bottom:750.079867pt;}
.y2f{bottom:766.400000pt;}
.y97{bottom:767.040000pt;}
.y8{bottom:769.280000pt;}
.y2e{bottom:785.280000pt;}
.y96{bottom:786.239867pt;}
.y7{bottom:788.160000pt;}
.y2d{bottom:804.480000pt;}
.y95{bottom:805.120000pt;}
.y6{bottom:807.360000pt;}
.y2c{bottom:823.360000pt;}
.y94{bottom:823.680000pt;}
.y3{bottom:824.000000pt;}
.y2b{bottom:840.000000pt;}
.y2{bottom:840.640000pt;}
.y2a{bottom:856.640000pt;}
.y1{bottom:857.280000pt;}
.h4{height:33.585625pt;}
.h5{height:33.768267pt;}
.h7{height:39.007500pt;}
.h6{height:44.008267pt;}
.h8{height:47.958750pt;}
.h1{height:48.536250pt;}
.h2{height:48.641250pt;}
.h3{height:71.938125pt;}
.h0{height:945.333333pt;}
.w0{width:628.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.520000pt;}
.xc{left:94.400000pt;}
.xf{left:113.279867pt;}
.x10{left:120.960000pt;}
.x1{left:165.440000pt;}
.x7{left:169.280000pt;}
.xe{left:197.440000pt;}
.xa{left:216.960000pt;}
.x12{left:224.640000pt;}
.x8{left:237.440000pt;}
.x2{left:249.600000pt;}
.xb{left:261.120000pt;}
.x13{left:272.320000pt;}
.x11{left:306.880000pt;}
.x5{left:310.080000pt;}
.x9{left:313.600000pt;}
.xd{left:322.880000pt;}
.x4{left:337.600000pt;}
.x3{left:410.560000pt;}
}




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