
    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_d599eb85ac3f629133045176.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e9ddf06ee7cffe9eb30d6939.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0fb4cb3b6339a81a40b577a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_a30211410b5755c837b80ba4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d8738336bd845262f5607cf4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_90341ee91f734392f8c0fcc7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_3d92e9a5941b55975789c2f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_bee5712f8ece163410a35848.woff2')format("woff");}.ff8{font-family:ff8;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);}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.134000px;}
.lsd{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.513600px;}
.ls6{letter-spacing:0.828000px;}
.ls7{letter-spacing:3.780000px;}
.lsa{letter-spacing:31.602720px;}
.ls9{letter-spacing:31.626720px;}
.ls0{letter-spacing:953.040000px;}
.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:-15.300000px;}
.ws5{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.806000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-4.024080px;}
._5{margin-left:-2.921520px;}
._3{margin-left:-1.374480px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._4{width:4.422240px;}
._d{width:5.438160px;}
._7{width:6.454080px;}
._6{width:7.649280px;}
._a{width:9.203040px;}
._b{width:10.218960px;}
._9{width:12.191040px;}
._8{width:13.914240px;}
._e{width:16.206240px;}
._19{width:17.572800px;}
._c{width:18.645120px;}
._f{width:20.617200px;}
._13{width:21.752640px;}
._11{width:23.127120px;}
._15{width:24.202800px;}
._18{width:25.218720px;}
._17{width:30.119040px;}
._16{width:32.688720px;}
._14{width:34.660800px;}
._1a{width:45.297360px;}
._1b{width:46.842480px;}
._1c{width:50.317920px;}
._10{width:767.850240px;}
._2{width:768.960480px;}
._1d{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:56.160000px;}
.y3f{bottom:92.520000px;}
.y7e{bottom:106.020000px;}
.y3e{bottom:109.800000px;}
.y7d{bottom:123.300000px;}
.y3d{bottom:127.080000px;}
.y7c{bottom:140.400000px;}
.y3c{bottom:144.360000px;}
.y7b{bottom:157.680000px;}
.y3b{bottom:161.670000px;}
.y7a{bottom:174.990000px;}
.y3a{bottom:178.950000px;}
.y79{bottom:192.270000px;}
.y39{bottom:196.050000px;}
.y78{bottom:209.550000px;}
.y38{bottom:213.330000px;}
.y81{bottom:226.470000px;}
.y77{bottom:226.830000px;}
.y37{bottom:230.610000px;}
.y76{bottom:243.930000px;}
.y36{bottom:247.890000px;}
.y75{bottom:261.210000px;}
.y35{bottom:265.170000px;}
.y74{bottom:278.490000px;}
.y34{bottom:282.450000px;}
.y73{bottom:295.770000px;}
.y33{bottom:299.550000px;}
.y72{bottom:313.050000px;}
.y32{bottom:316.830000px;}
.y71{bottom:330.330000px;}
.y31{bottom:334.110000px;}
.y70{bottom:347.430000px;}
.y30{bottom:351.390000px;}
.y6f{bottom:364.710000px;}
.y2f{bottom:368.670000px;}
.y6e{bottom:381.990000px;}
.y2e{bottom:385.950000px;}
.y6d{bottom:399.270000px;}
.y2d{bottom:403.050000px;}
.y6c{bottom:416.595000px;}
.y2c{bottom:420.375000px;}
.y6b{bottom:433.695000px;}
.y2b{bottom:437.655000px;}
.y6a{bottom:450.975000px;}
.y2a{bottom:454.935000px;}
.y80{bottom:467.895000px;}
.y69{bottom:468.255000px;}
.y29{bottom:472.215000px;}
.y68{bottom:485.535000px;}
.y28{bottom:489.315000px;}
.y67{bottom:502.815000px;}
.y27{bottom:506.595000px;}
.y66{bottom:520.095000px;}
.y26{bottom:523.875000px;}
.y7f{bottom:537.195000px;}
.y25{bottom:541.155000px;}
.y65{bottom:554.475000px;}
.y24{bottom:558.435000px;}
.y64{bottom:571.755000px;}
.y23{bottom:575.715000px;}
.y63{bottom:589.035000px;}
.y22{bottom:592.815000px;}
.y62{bottom:606.315000px;}
.y21{bottom:610.095000px;}
.y61{bottom:623.595000px;}
.y20{bottom:627.375000px;}
.y60{bottom:640.695000px;}
.y1f{bottom:644.655000px;}
.y5f{bottom:658.005000px;}
.y1e{bottom:661.965000px;}
.y5e{bottom:675.285000px;}
.y1d{bottom:679.245000px;}
.y5d{bottom:692.565000px;}
.y1c{bottom:696.345000px;}
.y5c{bottom:709.845000px;}
.y1b{bottom:713.625000px;}
.y5b{bottom:726.945000px;}
.y1a{bottom:730.905000px;}
.y5a{bottom:744.225000px;}
.y19{bottom:747.825000px;}
.y59{bottom:761.505000px;}
.y18{bottom:765.465000px;}
.y58{bottom:778.785000px;}
.y17{bottom:782.205000px;}
.y57{bottom:796.065000px;}
.y16{bottom:799.845000px;}
.y56{bottom:813.345000px;}
.y15{bottom:817.125000px;}
.y55{bottom:830.445000px;}
.y14{bottom:834.405000px;}
.y54{bottom:847.725000px;}
.y13{bottom:851.685000px;}
.y53{bottom:865.005000px;}
.y12{bottom:868.965000px;}
.y52{bottom:882.285000px;}
.y11{bottom:886.065000px;}
.y51{bottom:899.610000px;}
.y10{bottom:903.390000px;}
.y83{bottom:916.530000px;}
.y50{bottom:916.890000px;}
.yf{bottom:920.670000px;}
.y4f{bottom:933.990000px;}
.ye{bottom:937.950000px;}
.y4e{bottom:951.270000px;}
.yd{bottom:955.230000px;}
.y4d{bottom:968.550000px;}
.yc{bottom:972.510000px;}
.y4c{bottom:985.830000px;}
.yb{bottom:989.610000px;}
.y4b{bottom:1003.110000px;}
.ya{bottom:1006.530000px;}
.y4a{bottom:1020.390000px;}
.y9{bottom:1024.170000px;}
.y49{bottom:1037.490000px;}
.y8{bottom:1041.450000px;}
.y48{bottom:1054.770000px;}
.y7{bottom:1058.730000px;}
.y47{bottom:1072.050000px;}
.y6{bottom:1076.010000px;}
.y46{bottom:1089.330000px;}
.y45{bottom:1106.610000px;}
.y5{bottom:1110.030000px;}
.y44{bottom:1123.710000px;}
.y4{bottom:1127.310000px;}
.y43{bottom:1141.020000px;}
.y3{bottom:1144.620000px;}
.y42{bottom:1158.300000px;}
.y2{bottom:1164.780000px;}
.y82{bottom:1175.220000px;}
.y41{bottom:1175.580000px;}
.y1{bottom:1195.380000px;}
.h8{height:52.998047px;}
.h9{height:53.252930px;}
.h7{height:53.573906px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.ha{height:61.423863px;}
.h3{height:81.949219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x9{left:136.115987px;}
.x4{left:180.929987px;}
.x5{left:224.129987px;}
.x2{left:275.249987px;}
.xa{left:457.274987px;}
.x3{left:461.414987px;}
.xb{left:487.004987px;}
.x7{left:537.944987px;}
.x6{left:551.444987px;}
.xc{left:599.324987px;}
.x8{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.008000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.456533pt;}
.ls6{letter-spacing:0.736000pt;}
.ls7{letter-spacing:3.360000pt;}
.lsa{letter-spacing:28.091307pt;}
.ls9{letter-spacing:28.112640pt;}
.ls0{letter-spacing:847.146667pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.272000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-3.576960pt;}
._5{margin-left:-2.596907pt;}
._3{margin-left:-1.221760pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._4{width:3.930880pt;}
._d{width:4.833920pt;}
._7{width:5.736960pt;}
._6{width:6.799360pt;}
._a{width:8.180480pt;}
._b{width:9.083520pt;}
._9{width:10.836480pt;}
._8{width:12.368213pt;}
._e{width:14.405547pt;}
._19{width:15.620267pt;}
._c{width:16.573440pt;}
._f{width:18.326400pt;}
._13{width:19.335680pt;}
._11{width:20.557440pt;}
._15{width:21.513600pt;}
._18{width:22.416640pt;}
._17{width:26.772480pt;}
._16{width:29.056640pt;}
._14{width:30.809600pt;}
._1a{width:40.264320pt;}
._1b{width:41.637760pt;}
._1c{width:44.727040pt;}
._10{width:682.533547pt;}
._2{width:683.520427pt;}
._1d{width:754.858667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:49.920000pt;}
.y3f{bottom:82.240000pt;}
.y7e{bottom:94.240000pt;}
.y3e{bottom:97.600000pt;}
.y7d{bottom:109.600000pt;}
.y3d{bottom:112.960000pt;}
.y7c{bottom:124.800000pt;}
.y3c{bottom:128.320000pt;}
.y7b{bottom:140.160000pt;}
.y3b{bottom:143.706667pt;}
.y7a{bottom:155.546667pt;}
.y3a{bottom:159.066667pt;}
.y79{bottom:170.906667pt;}
.y39{bottom:174.266667pt;}
.y78{bottom:186.266667pt;}
.y38{bottom:189.626667pt;}
.y81{bottom:201.306667pt;}
.y77{bottom:201.626667pt;}
.y37{bottom:204.986667pt;}
.y76{bottom:216.826667pt;}
.y36{bottom:220.346667pt;}
.y75{bottom:232.186667pt;}
.y35{bottom:235.706667pt;}
.y74{bottom:247.546667pt;}
.y34{bottom:251.066667pt;}
.y73{bottom:262.906667pt;}
.y33{bottom:266.266667pt;}
.y72{bottom:278.266667pt;}
.y32{bottom:281.626667pt;}
.y71{bottom:293.626667pt;}
.y31{bottom:296.986667pt;}
.y70{bottom:308.826667pt;}
.y30{bottom:312.346667pt;}
.y6f{bottom:324.186667pt;}
.y2f{bottom:327.706667pt;}
.y6e{bottom:339.546667pt;}
.y2e{bottom:343.066667pt;}
.y6d{bottom:354.906667pt;}
.y2d{bottom:358.266667pt;}
.y6c{bottom:370.306667pt;}
.y2c{bottom:373.666667pt;}
.y6b{bottom:385.506667pt;}
.y2b{bottom:389.026667pt;}
.y6a{bottom:400.866667pt;}
.y2a{bottom:404.386667pt;}
.y80{bottom:415.906667pt;}
.y69{bottom:416.226667pt;}
.y29{bottom:419.746667pt;}
.y68{bottom:431.586667pt;}
.y28{bottom:434.946667pt;}
.y67{bottom:446.946667pt;}
.y27{bottom:450.306667pt;}
.y66{bottom:462.306667pt;}
.y26{bottom:465.666667pt;}
.y7f{bottom:477.506667pt;}
.y25{bottom:481.026667pt;}
.y65{bottom:492.866667pt;}
.y24{bottom:496.386667pt;}
.y64{bottom:508.226667pt;}
.y23{bottom:511.746667pt;}
.y63{bottom:523.586667pt;}
.y22{bottom:526.946667pt;}
.y62{bottom:538.946667pt;}
.y21{bottom:542.306667pt;}
.y61{bottom:554.306667pt;}
.y20{bottom:557.666667pt;}
.y60{bottom:569.506667pt;}
.y1f{bottom:573.026667pt;}
.y5f{bottom:584.893333pt;}
.y1e{bottom:588.413333pt;}
.y5e{bottom:600.253333pt;}
.y1d{bottom:603.773333pt;}
.y5d{bottom:615.613333pt;}
.y1c{bottom:618.973333pt;}
.y5c{bottom:630.973333pt;}
.y1b{bottom:634.333333pt;}
.y5b{bottom:646.173333pt;}
.y1a{bottom:649.693333pt;}
.y5a{bottom:661.533333pt;}
.y19{bottom:664.733333pt;}
.y59{bottom:676.893333pt;}
.y18{bottom:680.413333pt;}
.y58{bottom:692.253333pt;}
.y17{bottom:695.293333pt;}
.y57{bottom:707.613333pt;}
.y16{bottom:710.973333pt;}
.y56{bottom:722.973333pt;}
.y15{bottom:726.333333pt;}
.y55{bottom:738.173333pt;}
.y14{bottom:741.693333pt;}
.y54{bottom:753.533333pt;}
.y13{bottom:757.053333pt;}
.y53{bottom:768.893333pt;}
.y12{bottom:772.413333pt;}
.y52{bottom:784.253333pt;}
.y11{bottom:787.613333pt;}
.y51{bottom:799.653333pt;}
.y10{bottom:803.013333pt;}
.y83{bottom:814.693333pt;}
.y50{bottom:815.013333pt;}
.yf{bottom:818.373333pt;}
.y4f{bottom:830.213333pt;}
.ye{bottom:833.733333pt;}
.y4e{bottom:845.573333pt;}
.yd{bottom:849.093333pt;}
.y4d{bottom:860.933333pt;}
.yc{bottom:864.453333pt;}
.y4c{bottom:876.293333pt;}
.yb{bottom:879.653333pt;}
.y4b{bottom:891.653333pt;}
.ya{bottom:894.693333pt;}
.y4a{bottom:907.013333pt;}
.y9{bottom:910.373333pt;}
.y49{bottom:922.213333pt;}
.y8{bottom:925.733333pt;}
.y48{bottom:937.573333pt;}
.y7{bottom:941.093333pt;}
.y47{bottom:952.933333pt;}
.y6{bottom:956.453333pt;}
.y46{bottom:968.293333pt;}
.y45{bottom:983.653333pt;}
.y5{bottom:986.693333pt;}
.y44{bottom:998.853333pt;}
.y4{bottom:1002.053333pt;}
.y43{bottom:1014.240000pt;}
.y3{bottom:1017.440000pt;}
.y42{bottom:1029.600000pt;}
.y2{bottom:1035.360000pt;}
.y82{bottom:1044.640000pt;}
.y41{bottom:1044.960000pt;}
.y1{bottom:1062.560000pt;}
.h8{height:47.109375pt;}
.h9{height:47.335938pt;}
.h7{height:47.621250pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.ha{height:54.598989pt;}
.h3{height:72.843750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x9{left:120.991988pt;}
.x4{left:160.826655pt;}
.x5{left:199.226655pt;}
.x2{left:244.666655pt;}
.xa{left:406.466655pt;}
.x3{left:410.146655pt;}
.xb{left:432.893322pt;}
.x7{left:478.173322pt;}
.x6{left:490.173322pt;}
.xc{left:532.733322pt;}
.x8{left:699.333322pt;}
}




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