
    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_e1ac63e37d5339aa5ee9784d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_af5db3f2e7584600b9d91195.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.677734;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_6f58d3314d8ccfa4ec28e8dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_f462c0c716c7ae4d30567c97.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.019531;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_ecbb8b92ebb73f64b7e7f0da.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.lsc{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.264960px;}
.lsb{letter-spacing:-0.252720px;}
.ls9{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.084240px;}
.ls8{letter-spacing:-0.059760px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.132480px;}
.lsd{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.298800px;}
.ls3{letter-spacing:2.160000px;}
.lse{letter-spacing:3.600000px;}
.ls10{letter-spacing:5.040000px;}
.lsf{letter-spacing:6.480000px;}
.ls0{letter-spacing:731.538000px;}
.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;}
}
.ws20{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws1{word-spacing:-13.804560px;}
.ws2{word-spacing:-13.446000px;}
.ws0{word-spacing:-12.204000px;}
.ws28{word-spacing:-4.464000px;}
.ws27{word-spacing:-4.032000px;}
.ws18{word-spacing:-3.600000px;}
.ws22{word-spacing:-3.312000px;}
.wsd{word-spacing:-2.880000px;}
.ws24{word-spacing:-2.592000px;}
.ws10{word-spacing:-2.160000px;}
.ws13{word-spacing:-1.872000px;}
.ws2c{word-spacing:-1.440000px;}
.ws1d{word-spacing:-1.152000px;}
.wsf{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.432000px;}
.ws34{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.059760px;}
.ws9{word-spacing:0.084240px;}
.ws3{word-spacing:0.162000px;}
.wsa{word-spacing:0.252720px;}
.ws6{word-spacing:0.264960px;}
.ws8{word-spacing:0.270000px;}
.wse{word-spacing:0.288000px;}
.ws16{word-spacing:0.720000px;}
.ws15{word-spacing:1.008000px;}
.ws17{word-spacing:1.440000px;}
.ws1e{word-spacing:1.728000px;}
.wsb{word-spacing:2.160000px;}
.ws21{word-spacing:2.448000px;}
.ws12{word-spacing:2.880000px;}
.ws1c{word-spacing:3.168000px;}
.ws32{word-spacing:3.456000px;}
.ws14{word-spacing:3.600000px;}
.ws19{word-spacing:3.888000px;}
.ws33{word-spacing:4.176000px;}
.ws1a{word-spacing:4.320000px;}
.ws25{word-spacing:4.608000px;}
.ws2f{word-spacing:5.040000px;}
.wsc{word-spacing:5.760000px;}
.ws2b{word-spacing:6.048000px;}
.ws2e{word-spacing:6.480000px;}
.ws1f{word-spacing:6.768000px;}
.ws26{word-spacing:7.200000px;}
.ws1b{word-spacing:7.488000px;}
.ws29{word-spacing:7.920000px;}
.ws2a{word-spacing:8.208000px;}
.ws30{word-spacing:8.640000px;}
.ws23{word-spacing:8.928000px;}
.ws2d{word-spacing:16.560000px;}
.ws31{word-spacing:26.928000px;}
._3{margin-left:-25.328520px;}
._0{margin-left:-1.063800px;}
._1{width:1.347768px;}
._2{width:3.460176px;}
.fc2{color:rgb(196,89,17);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:16.200000px;}
.y5{bottom:79.920000px;}
.y4{bottom:112.680000px;}
.y6{bottom:113.040000px;}
.y3{bottom:145.440000px;}
.y15{bottom:166.860000px;}
.y4d{bottom:184.680000px;}
.y14{bottom:198.000000px;}
.y4c{bottom:215.640000px;}
.y5c{bottom:224.640000px;}
.y13{bottom:228.960000px;}
.y33{bottom:233.640000px;}
.y4b{bottom:246.780000px;}
.y5b{bottom:255.780000px;}
.y12{bottom:260.100000px;}
.y32{bottom:264.780000px;}
.y4a{bottom:277.740000px;}
.y5a{bottom:286.740000px;}
.y11{bottom:291.060000px;}
.y31{bottom:295.740000px;}
.y49{bottom:308.880000px;}
.y59{bottom:317.880000px;}
.y10{bottom:322.200000px;}
.y30{bottom:335.880000px;}
.y48{bottom:339.840000px;}
.y5d{bottom:348.840000px;}
.y58{bottom:357.840000px;}
.yf{bottom:362.160000px;}
.y2f{bottom:366.840000px;}
.y47{bottom:379.980000px;}
.y57{bottom:388.980000px;}
.ye{bottom:390.960000px;}
.y2e{bottom:397.980000px;}
.y46{bottom:410.940000px;}
.y56{bottom:419.940000px;}
.y2d{bottom:428.940000px;}
.y45{bottom:442.080000px;}
.y55{bottom:451.080000px;}
.y2c{bottom:460.080000px;}
.y44{bottom:473.040000px;}
.y54{bottom:482.040000px;}
.y2b{bottom:491.040000px;}
.y43{bottom:504.180000px;}
.y53{bottom:513.180000px;}
.y2a{bottom:522.180000px;}
.y42{bottom:535.140000px;}
.y52{bottom:544.140000px;}
.y29{bottom:553.140000px;}
.y41{bottom:575.280000px;}
.y28{bottom:584.280000px;}
.y40{bottom:606.240000px;}
.y27{bottom:615.240000px;}
.y3f{bottom:637.380000px;}
.y26{bottom:646.380000px;}
.y3e{bottom:668.340000px;}
.y25{bottom:677.340000px;}
.y3d{bottom:699.480000px;}
.y24{bottom:708.480000px;}
.y3c{bottom:730.440000px;}
.y51{bottom:739.440000px;}
.y23{bottom:748.440000px;}
.y3b{bottom:770.580000px;}
.y22{bottom:779.580000px;}
.y3a{bottom:801.540000px;}
.y21{bottom:810.540000px;}
.y39{bottom:832.680000px;}
.y20{bottom:841.680000px;}
.y38{bottom:863.640000px;}
.y1f{bottom:881.640000px;}
.y37{bottom:903.780000px;}
.y1e{bottom:912.780000px;}
.y36{bottom:934.740000px;}
.y1d{bottom:943.740000px;}
.y5f{bottom:962.280000px;}
.y35{bottom:965.880000px;}
.y1c{bottom:974.880000px;}
.y5e{bottom:995.040000px;}
.y34{bottom:996.840000px;}
.y1b{bottom:1005.840000px;}
.yd{bottom:1025.820000px;}
.y50{bottom:1027.980000px;}
.y1a{bottom:1036.980000px;}
.yc{bottom:1049.760000px;}
.y4f{bottom:1058.940000px;}
.y19{bottom:1067.940000px;}
.yb{bottom:1075.140000px;}
.y4e{bottom:1090.080000px;}
.y18{bottom:1099.080000px;}
.ya{bottom:1104.480000px;}
.y17{bottom:1130.040000px;}
.y9{bottom:1131.113160px;}
.y8{bottom:1156.680000px;}
.y16{bottom:1161.180000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h5{height:32.940000px;}
.h3{height:47.527312px;}
.h2{height:47.545312px;}
.h8{height:49.992188px;}
.h4{height:63.175781px;}
.h6{height:68.938594px;}
.h7{height:68.965954px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:50.401500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:5.580000px;}
.xd{left:85.140000px;}
.x4{left:127.620000px;}
.x1{left:146.520000px;}
.x8{left:161.100000px;}
.xc{left:180.720000px;}
.x3{left:288.720000px;}
.x9{left:399.246480px;}
.x6{left:450.000000px;}
.x5{left:478.260000px;}
.xa{left:481.500000px;}
.x2{left:567.900000px;}
.xe{left:621.180000px;}
.xf{left:661.140000px;}
.xb{left:692.640000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.235520pt;}
.lsb{letter-spacing:-0.224640pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.074880pt;}
.ls8{letter-spacing:-0.053120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.117760pt;}
.lsd{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.265600pt;}
.ls3{letter-spacing:1.920000pt;}
.lse{letter-spacing:3.200000pt;}
.ls10{letter-spacing:4.480000pt;}
.lsf{letter-spacing:5.760000pt;}
.ls0{letter-spacing:650.256000pt;}
.ws20{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws1{word-spacing:-12.270720pt;}
.ws2{word-spacing:-11.952000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws28{word-spacing:-3.968000pt;}
.ws27{word-spacing:-3.584000pt;}
.ws18{word-spacing:-3.200000pt;}
.ws22{word-spacing:-2.944000pt;}
.wsd{word-spacing:-2.560000pt;}
.ws24{word-spacing:-2.304000pt;}
.ws10{word-spacing:-1.920000pt;}
.ws13{word-spacing:-1.664000pt;}
.ws2c{word-spacing:-1.280000pt;}
.ws1d{word-spacing:-1.024000pt;}
.wsf{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.384000pt;}
.ws34{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.053120pt;}
.ws9{word-spacing:0.074880pt;}
.ws3{word-spacing:0.144000pt;}
.wsa{word-spacing:0.224640pt;}
.ws6{word-spacing:0.235520pt;}
.ws8{word-spacing:0.240000pt;}
.wse{word-spacing:0.256000pt;}
.ws16{word-spacing:0.640000pt;}
.ws15{word-spacing:0.896000pt;}
.ws17{word-spacing:1.280000pt;}
.ws1e{word-spacing:1.536000pt;}
.wsb{word-spacing:1.920000pt;}
.ws21{word-spacing:2.176000pt;}
.ws12{word-spacing:2.560000pt;}
.ws1c{word-spacing:2.816000pt;}
.ws32{word-spacing:3.072000pt;}
.ws14{word-spacing:3.200000pt;}
.ws19{word-spacing:3.456000pt;}
.ws33{word-spacing:3.712000pt;}
.ws1a{word-spacing:3.840000pt;}
.ws25{word-spacing:4.096000pt;}
.ws2f{word-spacing:4.480000pt;}
.wsc{word-spacing:5.120000pt;}
.ws2b{word-spacing:5.376000pt;}
.ws2e{word-spacing:5.760000pt;}
.ws1f{word-spacing:6.016000pt;}
.ws26{word-spacing:6.400000pt;}
.ws1b{word-spacing:6.656000pt;}
.ws29{word-spacing:7.040000pt;}
.ws2a{word-spacing:7.296000pt;}
.ws30{word-spacing:7.680000pt;}
.ws23{word-spacing:7.936000pt;}
.ws2d{word-spacing:14.720000pt;}
.ws31{word-spacing:23.936000pt;}
._3{margin-left:-22.514240pt;}
._0{margin-left:-0.945600pt;}
._1{width:1.198016pt;}
._2{width:3.075712pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:14.400000pt;}
.y5{bottom:71.040000pt;}
.y4{bottom:100.160000pt;}
.y6{bottom:100.480000pt;}
.y3{bottom:129.280000pt;}
.y15{bottom:148.320000pt;}
.y4d{bottom:164.160000pt;}
.y14{bottom:176.000000pt;}
.y4c{bottom:191.680000pt;}
.y5c{bottom:199.680000pt;}
.y13{bottom:203.520000pt;}
.y33{bottom:207.680000pt;}
.y4b{bottom:219.360000pt;}
.y5b{bottom:227.360000pt;}
.y12{bottom:231.200000pt;}
.y32{bottom:235.360000pt;}
.y4a{bottom:246.880000pt;}
.y5a{bottom:254.880000pt;}
.y11{bottom:258.720000pt;}
.y31{bottom:262.880000pt;}
.y49{bottom:274.560000pt;}
.y59{bottom:282.560000pt;}
.y10{bottom:286.400000pt;}
.y30{bottom:298.560000pt;}
.y48{bottom:302.080000pt;}
.y5d{bottom:310.080000pt;}
.y58{bottom:318.080000pt;}
.yf{bottom:321.920000pt;}
.y2f{bottom:326.080000pt;}
.y47{bottom:337.760000pt;}
.y57{bottom:345.760000pt;}
.ye{bottom:347.520000pt;}
.y2e{bottom:353.760000pt;}
.y46{bottom:365.280000pt;}
.y56{bottom:373.280000pt;}
.y2d{bottom:381.280000pt;}
.y45{bottom:392.960000pt;}
.y55{bottom:400.960000pt;}
.y2c{bottom:408.960000pt;}
.y44{bottom:420.480000pt;}
.y54{bottom:428.480000pt;}
.y2b{bottom:436.480000pt;}
.y43{bottom:448.160000pt;}
.y53{bottom:456.160000pt;}
.y2a{bottom:464.160000pt;}
.y42{bottom:475.680000pt;}
.y52{bottom:483.680000pt;}
.y29{bottom:491.680000pt;}
.y41{bottom:511.360000pt;}
.y28{bottom:519.360000pt;}
.y40{bottom:538.880000pt;}
.y27{bottom:546.880000pt;}
.y3f{bottom:566.560000pt;}
.y26{bottom:574.560000pt;}
.y3e{bottom:594.080000pt;}
.y25{bottom:602.080000pt;}
.y3d{bottom:621.760000pt;}
.y24{bottom:629.760000pt;}
.y3c{bottom:649.280000pt;}
.y51{bottom:657.280000pt;}
.y23{bottom:665.280000pt;}
.y3b{bottom:684.960000pt;}
.y22{bottom:692.960000pt;}
.y3a{bottom:712.480000pt;}
.y21{bottom:720.480000pt;}
.y39{bottom:740.160000pt;}
.y20{bottom:748.160000pt;}
.y38{bottom:767.680000pt;}
.y1f{bottom:783.680000pt;}
.y37{bottom:803.360000pt;}
.y1e{bottom:811.360000pt;}
.y36{bottom:830.880000pt;}
.y1d{bottom:838.880000pt;}
.y5f{bottom:855.360000pt;}
.y35{bottom:858.560000pt;}
.y1c{bottom:866.560000pt;}
.y5e{bottom:884.480000pt;}
.y34{bottom:886.080000pt;}
.y1b{bottom:894.080000pt;}
.yd{bottom:911.840000pt;}
.y50{bottom:913.760000pt;}
.y1a{bottom:921.760000pt;}
.yc{bottom:933.120000pt;}
.y4f{bottom:941.280000pt;}
.y19{bottom:949.280000pt;}
.yb{bottom:955.680000pt;}
.y4e{bottom:968.960000pt;}
.y18{bottom:976.960000pt;}
.ya{bottom:981.760000pt;}
.y17{bottom:1004.480000pt;}
.y9{bottom:1005.433920pt;}
.y8{bottom:1028.160000pt;}
.y16{bottom:1032.160000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h5{height:29.280000pt;}
.h3{height:42.246500pt;}
.h2{height:42.262500pt;}
.h8{height:44.437500pt;}
.h4{height:56.156250pt;}
.h6{height:61.278750pt;}
.h7{height:61.303070pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.801333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:4.960000pt;}
.xd{left:75.680000pt;}
.x4{left:113.440000pt;}
.x1{left:130.240000pt;}
.x8{left:143.200000pt;}
.xc{left:160.640000pt;}
.x3{left:256.640000pt;}
.x9{left:354.885760pt;}
.x6{left:400.000000pt;}
.x5{left:425.120000pt;}
.xa{left:428.000000pt;}
.x2{left:504.800000pt;}
.xe{left:552.160000pt;}
.xf{left:587.680000pt;}
.xb{left:615.680000pt;}
}




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