
    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_fb5fed0e872b04f1ef60b7fb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3d635d1e63c133575986e833.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_17b92d07ffd5033f2296e82a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bedefe5ecb3e14e24704c3ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_5b2f3a306397f16a691fa916.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:11.466720px;}
.ls6{letter-spacing:41.706720px;}
.ls5{letter-spacing:70.482720px;}
.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:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.027200px;}
._0{width:1.109280px;}
._13{width:2.297040px;}
._2{width:3.567120px;}
._7{width:5.199120px;}
._6{width:6.394320px;}
._b{width:7.496160px;}
._8{width:9.203040px;}
._e{width:10.842720px;}
._a{width:12.516000px;}
._9{width:13.565520px;}
._14{width:15.948480px;}
._19{width:17.020080px;}
._16{width:18.111120px;}
._15{width:19.123200px;}
._17{width:20.497680px;}
._10{width:22.051440px;}
._f{width:23.306400px;}
._d{width:24.740640px;}
._c{width:25.995600px;}
._18{width:27.515760px;}
._12{width:30.444000px;}
._11{width:31.792320px;}
._1a{width:32.860560px;}
._1c{width:34.959600px;}
._1b{width:36.154800px;}
._5{width:136.056000px;}
._4{width:636.906000px;}
._3{width:748.956000px;}
.fc4{color:rgb(34,35,37);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.240000px;}
.y7c{bottom:11.880000px;}
.y66{bottom:20.340000px;}
.y5c{bottom:20.520000px;}
.y68{bottom:20.550000px;}
.y5f{bottom:20.565000px;}
.ya{bottom:36.360000px;}
.y5d{bottom:37.620000px;}
.y62{bottom:37.800000px;}
.y69{bottom:37.830000px;}
.y60{bottom:37.845000px;}
.y9{bottom:54.360000px;}
.y58{bottom:114.516000px;}
.y78{bottom:126.756000px;}
.y57{bottom:137.916000px;}
.y8d{bottom:141.696000px;}
.y77{bottom:150.150000px;}
.y31{bottom:156.810000px;}
.y56{bottom:161.310000px;}
.y8c{bottom:165.090000px;}
.y76{bottom:173.550000px;}
.y30{bottom:180.210000px;}
.y55{bottom:184.710000px;}
.y8b{bottom:188.490000px;}
.y75{bottom:196.950000px;}
.y2f{bottom:203.610000px;}
.y54{bottom:208.110000px;}
.y8a{bottom:211.890000px;}
.y74{bottom:220.350000px;}
.y2e{bottom:227.010000px;}
.y53{bottom:231.510000px;}
.y89{bottom:235.290000px;}
.y73{bottom:243.750000px;}
.y2d{bottom:250.410000px;}
.y52{bottom:254.910000px;}
.y88{bottom:258.690000px;}
.y72{bottom:267.150000px;}
.y2c{bottom:273.810000px;}
.y51{bottom:278.310000px;}
.y87{bottom:282.090000px;}
.y71{bottom:290.550000px;}
.y2b{bottom:297.210000px;}
.y50{bottom:301.710000px;}
.y86{bottom:305.490000px;}
.y70{bottom:313.950000px;}
.y2a{bottom:320.610000px;}
.y4f{bottom:325.110000px;}
.y85{bottom:328.890000px;}
.y6f{bottom:337.395000px;}
.y29{bottom:344.055000px;}
.y4e{bottom:348.555000px;}
.y84{bottom:352.335000px;}
.y6e{bottom:360.795000px;}
.y28{bottom:367.455000px;}
.y4d{bottom:371.955000px;}
.y83{bottom:375.735000px;}
.y6d{bottom:378.615000px;}
.y27{bottom:390.855000px;}
.y4c{bottom:395.355000px;}
.y82{bottom:399.135000px;}
.y26{bottom:414.255000px;}
.y4b{bottom:418.755000px;}
.y81{bottom:422.535000px;}
.y6c{bottom:431.175000px;}
.y25{bottom:439.995000px;}
.y80{bottom:440.355000px;}
.y4a{bottom:442.155000px;}
.y24{bottom:463.395000px;}
.y49{bottom:465.555000px;}
.y7f{bottom:475.635000px;}
.y6b{bottom:483.735000px;}
.y23{bottom:486.795000px;}
.y48{bottom:488.955000px;}
.y22{bottom:510.195000px;}
.y7e{bottom:510.915000px;}
.y47{bottom:512.355000px;}
.y21{bottom:533.595000px;}
.y46{bottom:535.755000px;}
.y6a{bottom:536.115000px;}
.y7d{bottom:546.195000px;}
.y20{bottom:556.995000px;}
.y45{bottom:559.155000px;}
.y1f{bottom:580.395000px;}
.y7b{bottom:581.475000px;}
.y44{bottom:582.555000px;}
.y67{bottom:588.675000px;}
.y1e{bottom:603.825000px;}
.y43{bottom:605.985000px;}
.y7a{bottom:616.785000px;}
.y1d{bottom:627.225000px;}
.y42{bottom:629.385000px;}
.y65{bottom:641.265000px;}
.y1c{bottom:650.625000px;}
.y79{bottom:651.885000px;}
.y41{bottom:652.785000px;}
.y1b{bottom:674.025000px;}
.y40{bottom:676.185000px;}
.y64{bottom:693.645000px;}
.y1a{bottom:697.425000px;}
.y3f{bottom:699.585000px;}
.y19{bottom:720.825000px;}
.y3e{bottom:722.985000px;}
.y18{bottom:744.225000px;}
.y63{bottom:746.205000px;}
.y3d{bottom:746.385000px;}
.y17{bottom:767.625000px;}
.y3c{bottom:769.785000px;}
.y16{bottom:791.025000px;}
.y3b{bottom:793.185000px;}
.y61{bottom:798.585000px;}
.y15{bottom:814.425000px;}
.y3a{bottom:816.585000px;}
.y14{bottom:837.825000px;}
.y39{bottom:839.985000px;}
.y5e{bottom:851.145000px;}
.y13{bottom:861.225000px;}
.y38{bottom:863.385000px;}
.y12{bottom:884.670000px;}
.y37{bottom:886.830000px;}
.y5b{bottom:903.750000px;}
.y11{bottom:910.230000px;}
.y10{bottom:933.090000px;}
.y36{bottom:933.630000px;}
.y59{bottom:956.130000px;}
.yf{bottom:956.490000px;}
.y35{bottom:957.030000px;}
.ye{bottom:979.890000px;}
.y34{bottom:980.430000px;}
.yd{bottom:1003.830000px;}
.yc{bottom:1026.150000px;}
.y33{bottom:1027.230000px;}
.yb{bottom:1049.550000px;}
.y32{bottom:1050.630000px;}
.y8{bottom:1071.870000px;}
.y7{bottom:1089.870000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1123.710000px;}
.y4{bottom:1140.660000px;}
.y3{bottom:1181.340000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hc{height:17.280000px;}
.h11{height:34.380000px;}
.h12{height:34.416000px;}
.h13{height:34.560000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hb{height:43.302656px;}
.ha{height:43.506914px;}
.h14{height:43.681992px;}
.h3{height:44.240625px;}
.h9{height:46.251562px;}
.h8{height:46.736719px;}
.h4{height:50.800781px;}
.hd{height:51.660000px;}
.h10{height:51.696000px;}
.hf{height:51.840000px;}
.he{height:51.876000px;}
.h7{height:63.019687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:174.270000px;}
.w6{width:174.630000px;}
.w7{width:209.010000px;}
.w4{width:217.470000px;}
.w5{width:218.730000px;}
.w3{width:219.090000px;}
.w8{width:246.630000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:49.854000px;}
.x14{left:66.600000px;}
.x16{left:72.180000px;}
.x12{left:79.914000px;}
.x1c{left:94.500000px;}
.x1{left:108.035987px;}
.x2{left:123.155987px;}
.x7{left:126.215987px;}
.xf{left:135.035987px;}
.x4{left:157.169987px;}
.x10{left:162.029987px;}
.x18{left:248.249987px;}
.x8{left:256.529987px;}
.x1a{left:282.675000px;}
.x11{left:288.974987px;}
.x17{left:293.654987px;}
.xe{left:309.854987px;}
.x1d{left:317.594987px;}
.x13{left:327.135000px;}
.xc{left:335.234987px;}
.xa{left:362.594987px;}
.xd{left:378.974987px;}
.xb{left:380.054987px;}
.x1e{left:388.154987px;}
.x6{left:396.434987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x1b{left:492.405000px;}
.x3{left:518.324987px;}
.x15{left:545.325000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:10.192640pt;}
.ls6{letter-spacing:37.072640pt;}
.ls5{letter-spacing:62.651307pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-0.913067pt;}
._0{width:0.986027pt;}
._13{width:2.041813pt;}
._2{width:3.170773pt;}
._7{width:4.621440pt;}
._6{width:5.683840pt;}
._b{width:6.663253pt;}
._8{width:8.180480pt;}
._e{width:9.637973pt;}
._a{width:11.125333pt;}
._9{width:12.058240pt;}
._14{width:14.176427pt;}
._19{width:15.128960pt;}
._16{width:16.098773pt;}
._15{width:16.998400pt;}
._17{width:18.220160pt;}
._10{width:19.601280pt;}
._f{width:20.716800pt;}
._d{width:21.991680pt;}
._c{width:23.107200pt;}
._18{width:24.458453pt;}
._12{width:27.061333pt;}
._11{width:28.259840pt;}
._1a{width:29.209387pt;}
._1c{width:31.075200pt;}
._1b{width:32.137600pt;}
._5{width:120.938667pt;}
._4{width:566.138667pt;}
._3{width:665.738667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.880000pt;}
.y7c{bottom:10.560000pt;}
.y66{bottom:18.080000pt;}
.y5c{bottom:18.240000pt;}
.y68{bottom:18.266667pt;}
.y5f{bottom:18.280000pt;}
.ya{bottom:32.320000pt;}
.y5d{bottom:33.440000pt;}
.y62{bottom:33.600000pt;}
.y69{bottom:33.626667pt;}
.y60{bottom:33.640000pt;}
.y9{bottom:48.320000pt;}
.y58{bottom:101.792000pt;}
.y78{bottom:112.672000pt;}
.y57{bottom:122.592000pt;}
.y8d{bottom:125.952000pt;}
.y77{bottom:133.466667pt;}
.y31{bottom:139.386667pt;}
.y56{bottom:143.386667pt;}
.y8c{bottom:146.746667pt;}
.y76{bottom:154.266667pt;}
.y30{bottom:160.186667pt;}
.y55{bottom:164.186667pt;}
.y8b{bottom:167.546667pt;}
.y75{bottom:175.066667pt;}
.y2f{bottom:180.986667pt;}
.y54{bottom:184.986667pt;}
.y8a{bottom:188.346667pt;}
.y74{bottom:195.866667pt;}
.y2e{bottom:201.786667pt;}
.y53{bottom:205.786667pt;}
.y89{bottom:209.146667pt;}
.y73{bottom:216.666667pt;}
.y2d{bottom:222.586667pt;}
.y52{bottom:226.586667pt;}
.y88{bottom:229.946667pt;}
.y72{bottom:237.466667pt;}
.y2c{bottom:243.386667pt;}
.y51{bottom:247.386667pt;}
.y87{bottom:250.746667pt;}
.y71{bottom:258.266667pt;}
.y2b{bottom:264.186667pt;}
.y50{bottom:268.186667pt;}
.y86{bottom:271.546667pt;}
.y70{bottom:279.066667pt;}
.y2a{bottom:284.986667pt;}
.y4f{bottom:288.986667pt;}
.y85{bottom:292.346667pt;}
.y6f{bottom:299.906667pt;}
.y29{bottom:305.826667pt;}
.y4e{bottom:309.826667pt;}
.y84{bottom:313.186667pt;}
.y6e{bottom:320.706667pt;}
.y28{bottom:326.626667pt;}
.y4d{bottom:330.626667pt;}
.y83{bottom:333.986667pt;}
.y6d{bottom:336.546667pt;}
.y27{bottom:347.426667pt;}
.y4c{bottom:351.426667pt;}
.y82{bottom:354.786667pt;}
.y26{bottom:368.226667pt;}
.y4b{bottom:372.226667pt;}
.y81{bottom:375.586667pt;}
.y6c{bottom:383.266667pt;}
.y25{bottom:391.106667pt;}
.y80{bottom:391.426667pt;}
.y4a{bottom:393.026667pt;}
.y24{bottom:411.906667pt;}
.y49{bottom:413.826667pt;}
.y7f{bottom:422.786667pt;}
.y6b{bottom:429.986667pt;}
.y23{bottom:432.706667pt;}
.y48{bottom:434.626667pt;}
.y22{bottom:453.506667pt;}
.y7e{bottom:454.146667pt;}
.y47{bottom:455.426667pt;}
.y21{bottom:474.306667pt;}
.y46{bottom:476.226667pt;}
.y6a{bottom:476.546667pt;}
.y7d{bottom:485.506667pt;}
.y20{bottom:495.106667pt;}
.y45{bottom:497.026667pt;}
.y1f{bottom:515.906667pt;}
.y7b{bottom:516.866667pt;}
.y44{bottom:517.826667pt;}
.y67{bottom:523.266667pt;}
.y1e{bottom:536.733333pt;}
.y43{bottom:538.653333pt;}
.y7a{bottom:548.253333pt;}
.y1d{bottom:557.533333pt;}
.y42{bottom:559.453333pt;}
.y65{bottom:570.013333pt;}
.y1c{bottom:578.333333pt;}
.y79{bottom:579.453333pt;}
.y41{bottom:580.253333pt;}
.y1b{bottom:599.133333pt;}
.y40{bottom:601.053333pt;}
.y64{bottom:616.573333pt;}
.y1a{bottom:619.933333pt;}
.y3f{bottom:621.853333pt;}
.y19{bottom:640.733333pt;}
.y3e{bottom:642.653333pt;}
.y18{bottom:661.533333pt;}
.y63{bottom:663.293333pt;}
.y3d{bottom:663.453333pt;}
.y17{bottom:682.333333pt;}
.y3c{bottom:684.253333pt;}
.y16{bottom:703.133333pt;}
.y3b{bottom:705.053333pt;}
.y61{bottom:709.853333pt;}
.y15{bottom:723.933333pt;}
.y3a{bottom:725.853333pt;}
.y14{bottom:744.733333pt;}
.y39{bottom:746.653333pt;}
.y5e{bottom:756.573333pt;}
.y13{bottom:765.533333pt;}
.y38{bottom:767.453333pt;}
.y12{bottom:786.373333pt;}
.y37{bottom:788.293333pt;}
.y5b{bottom:803.333333pt;}
.y11{bottom:809.093333pt;}
.y10{bottom:829.413333pt;}
.y36{bottom:829.893333pt;}
.y59{bottom:849.893333pt;}
.yf{bottom:850.213333pt;}
.y35{bottom:850.693333pt;}
.ye{bottom:871.013333pt;}
.y34{bottom:871.493333pt;}
.yd{bottom:892.293333pt;}
.yc{bottom:912.133333pt;}
.y33{bottom:913.093333pt;}
.yb{bottom:932.933333pt;}
.y32{bottom:933.893333pt;}
.y8{bottom:952.773333pt;}
.y7{bottom:968.773333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:998.853333pt;}
.y4{bottom:1013.920000pt;}
.y3{bottom:1050.080000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hc{height:15.360000pt;}
.h11{height:30.560000pt;}
.h12{height:30.592000pt;}
.h13{height:30.720000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hb{height:38.491250pt;}
.ha{height:38.672812pt;}
.h14{height:38.828437pt;}
.h3{height:39.325000pt;}
.h9{height:41.112500pt;}
.h8{height:41.543750pt;}
.h4{height:45.156250pt;}
.hd{height:45.920000pt;}
.h10{height:45.952000pt;}
.hf{height:46.080000pt;}
.he{height:46.112000pt;}
.h7{height:56.017500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:154.906667pt;}
.w6{width:155.226667pt;}
.w7{width:185.786667pt;}
.w4{width:193.306667pt;}
.w5{width:194.426667pt;}
.w3{width:194.746667pt;}
.w8{width:219.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:44.314667pt;}
.x14{left:59.200000pt;}
.x16{left:64.160000pt;}
.x12{left:71.034667pt;}
.x1c{left:84.000000pt;}
.x1{left:96.031988pt;}
.x2{left:109.471988pt;}
.x7{left:112.191988pt;}
.xf{left:120.031988pt;}
.x4{left:139.706655pt;}
.x10{left:144.026655pt;}
.x18{left:220.666655pt;}
.x8{left:228.026655pt;}
.x1a{left:251.266667pt;}
.x11{left:256.866655pt;}
.x17{left:261.026655pt;}
.xe{left:275.426655pt;}
.x1d{left:282.306655pt;}
.x13{left:290.786667pt;}
.xc{left:297.986655pt;}
.xa{left:322.306655pt;}
.xd{left:336.866655pt;}
.xb{left:337.826655pt;}
.x1e{left:345.026655pt;}
.x6{left:352.386655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x1b{left:437.693333pt;}
.x3{left:460.733322pt;}
.x15{left:484.733333pt;}
}




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