
    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_47c7ae097bcb1aa7a10a7625.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_935582319cbdcc4dd40f2b16.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad117061d0ba35990e46c17d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_d7f6dcad02b0994c521e880b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ed38c376da4c9487f27f2a24.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_c4988bfdd6178950dc4816c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_09dc5ff227f8becce689485e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723145;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_05e12eb7bf3a1cded61e9216.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861328;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);}
.v3{vertical-align:-30.960023px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:30.960023px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.094301px;}
.ls4{letter-spacing:1.078848px;}
.ls3{letter-spacing:2.878254px;}
.ls2{letter-spacing:3.801744px;}
.ls5{letter-spacing:17.279145px;}
.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;}
}
.ws4{word-spacing:-118.804496px;}
.ws2{word-spacing:-79.203150px;}
.ws1{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.760900px;}
.ws5{word-spacing:-19.800788px;}
.ws6{word-spacing:-13.860563px;}
.ws3{word-spacing:0.000000px;}
.ws7{word-spacing:820.494027px;}
._13{margin-left:-24.884503px;}
._14{margin-left:-23.801368px;}
._12{margin-left:-22.458599px;}
._19{margin-left:-14.636714px;}
._9{margin-left:-13.496191px;}
._1c{margin-left:-11.756633px;}
._15{margin-left:-10.166695px;}
._5{margin-left:-8.953126px;}
._e{margin-left:-7.637199px;}
._f{margin-left:-5.998959px;}
._7{margin-left:-4.719509px;}
._4{margin-left:-3.326526px;}
._8{margin-left:-1.520698px;}
._0{width:1.064507px;}
._6{width:2.186003px;}
._2{width:3.231482px;}
._3{width:4.562093px;}
._d{width:5.739742px;}
._10{width:6.828845px;}
._17{width:8.363837px;}
._18{width:9.474847px;}
._16{width:10.503121px;}
._11{width:11.846201px;}
._a{width:13.083345px;}
._b{width:14.617687px;}
._c{width:15.948297px;}
._1b{width:17.202892px;}
._22{width:18.791105px;}
._1f{width:27.234993px;}
._1d{width:241.156006px;}
._1e{width:344.064050px;}
._20{width:541.614714px;}
._21{width:564.238127px;}
._23{width:644.608840px;}
._1a{width:713.133523px;}
._24{width:1498.107985px;}
._1{width:1695.553076px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:55.442250px;}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.fs4{font-size:118.804496px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y1b{bottom:41.040115px;}
.y50{bottom:97.920043px;}
.y6b{bottom:102.960022px;}
.y78{bottom:115.380066px;}
.y54{bottom:121.320099px;}
.y19{bottom:121.860077px;}
.y5a{bottom:126.360077px;}
.y6a{bottom:131.400055px;}
.y77{bottom:144.000068px;}
.y37{bottom:149.940033px;}
.y18{bottom:150.300041px;}
.y76{bottom:172.440033px;}
.y36{bottom:178.380066px;}
.y42{bottom:178.560036px;}
.y59{bottom:178.740074px;}
.y17{bottom:178.920043px;}
.y69{bottom:188.460091px;}
.y35{bottom:207.000068px;}
.y16{bottom:207.360077px;}
.y68{bottom:217.080093px;}
.y75{bottom:229.680039px;}
.y34{bottom:235.440033px;}
.y57{bottom:235.620072px;}
.y15{bottom:235.980079px;}
.y67{bottom:245.520058px;}
.y33{bottom:264.060036px;}
.y14{bottom:264.420043px;}
.y66{bottom:274.140060px;}
.y74{bottom:286.740074px;}
.y32{bottom:292.500068px;}
.y56{bottom:292.680039px;}
.y4f{bottom:293.040047px;}
.y65{bottom:301.860077px;}
.y31{bottom:321.120072px;}
.y4e{bottom:321.480079px;}
.y64{bottom:329.580093px;}
.y73{bottom:343.800041px;}
.y30{bottom:349.560036px;}
.y53{bottom:349.740074px;}
.y13{bottom:350.100083px;}
.y63{bottom:357.300041px;}
.y52{bottom:378.180039px;}
.y12{bottom:378.540047px;}
.y62{bottom:385.020058px;}
.y2f{bottom:406.620072px;}
.y40{bottom:406.800041px;}
.y4d{bottom:407.160049px;}
.y61{bottom:412.920043px;}
.y2e{bottom:435.240074px;}
.y11{bottom:435.600083px;}
.y72{bottom:457.920043px;}
.y3f{bottom:463.860077px;}
.y4c{bottom:464.220085px;}
.y60{bottom:468.360077px;}
.y2d{bottom:492.300041px;}
.y4b{bottom:492.660049px;}
.y71{bottom:514.980079px;}
.y3e{bottom:520.920043px;}
.y10{bottom:521.280052px;}
.y5f{bottom:523.800041px;}
.y70{bottom:543.420043px;}
.y2c{bottom:549.360077px;}
.yf{bottom:549.720085px;}
.y6f{bottom:572.040047px;}
.y2b{bottom:577.800041px;}
.y3d{bottom:577.980079px;}
.ye{bottom:578.340088px;}
.y5e{bottom:579.240074px;}
.y3c{bottom:606.420043px;}
.y4a{bottom:606.780052px;}
.y5d{bottom:607.140060px;}
.y2a{bottom:634.860077px;}
.y3b{bottom:635.040047px;}
.yd{bottom:635.400055px;}
.y29{bottom:663.480079px;}
.yc{bottom:663.840088px;}
.y28{bottom:691.920078px;}
.y41{bottom:692.100083px;}
.yb{bottom:692.460056px;}
.y5c{bottom:719.640060px;}
.y27{bottom:720.540081px;}
.y49{bottom:720.900055px;}
.y6e{bottom:722.520058px;}
.y5b{bottom:748.080059px;}
.y26{bottom:748.980079px;}
.y55{bottom:749.160049px;}
.ya{bottom:749.520058px;}
.y25{bottom:777.600083px;}
.y9{bottom:777.960056px;}
.y6d{bottom:803.340054px;}
.y58{bottom:806.040081px;}
.y51{bottom:806.220051px;}
.y48{bottom:806.580059px;}
.y24{bottom:834.660049px;}
.y47{bottom:835.020058px;}
.y3a{bottom:863.280052px;}
.y46{bottom:863.640060px;}
.y39{bottom:891.720051px;}
.y8{bottom:892.080059px;}
.y6c{bottom:896.940067px;}
.y23{bottom:920.340054px;}
.y7{bottom:920.700061px;}
.y22{bottom:948.780053px;}
.y6{bottom:949.140060px;}
.y21{bottom:977.400072px;}
.y45{bottom:977.760064px;}
.y20{bottom:1005.840070px;}
.y5{bottom:1006.200061px;}
.y1f{bottom:1034.460074px;}
.y44{bottom:1034.820065px;}
.y38{bottom:1062.900072px;}
.y43{bottom:1063.260064px;}
.y1a{bottom:1069.020058px;}
.y1e{bottom:1091.520058px;}
.y4{bottom:1091.880066px;}
.y1d{bottom:1119.960065px;}
.y3{bottom:1120.320065px;}
.y1c{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.h6{height:55.302981px;}
.h8{height:55.596662px;}
.h7{height:57.534328px;}
.h5{height:65.992187px;}
.h2{height:67.837080px;}
.hb{height:69.496123px;}
.ha{height:70.346938px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.h9{height:85.912821px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:89.819996px;}
.x11{left:137.340002px;}
.x1{left:140.939999px;}
.x6{left:147.599997px;}
.x13{left:153.180005px;}
.xe{left:174.240006px;}
.x23{left:197.819996px;}
.x20{left:202.139992px;}
.x1c{left:208.439999px;}
.x2{left:212.759994px;}
.x10{left:224.639992px;}
.x1e{left:232.020006px;}
.x19{left:237.599997px;}
.x3{left:239.219999px;}
.x14{left:252.719999px;}
.x16{left:265.860008px;}
.x4{left:267.479994px;}
.xa{left:288.000000px;}
.x1b{left:309.060001px;}
.x24{left:315.000000px;}
.x12{left:322.920010px;}
.x21{left:324.720017px;}
.x1f{left:335.160015px;}
.xd{left:338.579990px;}
.x17{left:346.139992px;}
.x5{left:356.579990px;}
.x1a{left:365.579990px;}
.x7{left:370.620002px;}
.x9{left:410.939999px;}
.x8{left:419.579990px;}
.xf{left:440.100014px;}
.x22{left:503.819996px;}
.xb{left:532.800007px;}
.x15{left:628.559967px;}
.x18{left:633.960023px;}
.x1d{left:651.419975px;}
@media print{
.v3{vertical-align:-27.520020pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:27.520020pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.083823pt;}
.ls4{letter-spacing:0.958976pt;}
.ls3{letter-spacing:2.558448pt;}
.ls2{letter-spacing:3.379328pt;}
.ls5{letter-spacing:15.359240pt;}
.ws4{word-spacing:-105.603996pt;}
.ws2{word-spacing:-70.402800pt;}
.ws1{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.120800pt;}
.ws5{word-spacing:-17.600700pt;}
.ws6{word-spacing:-12.320500pt;}
.ws3{word-spacing:0.000000pt;}
.ws7{word-spacing:729.328024pt;}
._13{margin-left:-22.119558pt;}
._14{margin-left:-21.156772pt;}
._12{margin-left:-19.963199pt;}
._19{margin-left:-13.010413pt;}
._9{margin-left:-11.996614pt;}
._1c{margin-left:-10.450341pt;}
._15{margin-left:-9.037062pt;}
._5{margin-left:-7.958334pt;}
._e{margin-left:-6.788621pt;}
._f{margin-left:-5.332408pt;}
._7{margin-left:-4.195119pt;}
._4{margin-left:-2.956912pt;}
._8{margin-left:-1.351731pt;}
._0{width:0.946228pt;}
._6{width:1.943114pt;}
._2{width:2.872429pt;}
._3{width:4.055194pt;}
._d{width:5.101993pt;}
._10{width:6.070085pt;}
._17{width:7.434522pt;}
._18{width:8.422086pt;}
._16{width:9.336108pt;}
._11{width:10.529956pt;}
._a{width:11.629640pt;}
._b{width:12.993500pt;}
._c{width:14.176264pt;}
._1b{width:15.291459pt;}
._22{width:16.703204pt;}
._1f{width:24.208883pt;}
._1d{width:214.360894pt;}
._1e{width:305.834711pt;}
._20{width:481.435302pt;}
._21{width:501.545002pt;}
._23{width:572.985635pt;}
._1a{width:633.896465pt;}
._24{width:1331.651542pt;}
._1{width:1507.158290pt;}
.fs5{font-size:49.282000pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.fs4{font-size:105.603996pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y1b{bottom:36.480103pt;}
.y50{bottom:87.040039pt;}
.y6b{bottom:91.520020pt;}
.y78{bottom:102.560059pt;}
.y54{bottom:107.840088pt;}
.y19{bottom:108.320069pt;}
.y5a{bottom:112.320069pt;}
.y6a{bottom:116.800049pt;}
.y77{bottom:128.000061pt;}
.y37{bottom:133.280030pt;}
.y18{bottom:133.600037pt;}
.y76{bottom:153.280030pt;}
.y36{bottom:158.560059pt;}
.y42{bottom:158.720032pt;}
.y59{bottom:158.880066pt;}
.y17{bottom:159.040039pt;}
.y69{bottom:167.520081pt;}
.y35{bottom:184.000061pt;}
.y16{bottom:184.320069pt;}
.y68{bottom:192.960083pt;}
.y75{bottom:204.160035pt;}
.y34{bottom:209.280030pt;}
.y57{bottom:209.440064pt;}
.y15{bottom:209.760071pt;}
.y67{bottom:218.240052pt;}
.y33{bottom:234.720032pt;}
.y14{bottom:235.040039pt;}
.y66{bottom:243.680054pt;}
.y74{bottom:254.880066pt;}
.y32{bottom:260.000061pt;}
.y56{bottom:260.160035pt;}
.y4f{bottom:260.480042pt;}
.y65{bottom:268.320069pt;}
.y31{bottom:285.440064pt;}
.y4e{bottom:285.760071pt;}
.y64{bottom:292.960083pt;}
.y73{bottom:305.600037pt;}
.y30{bottom:310.720032pt;}
.y53{bottom:310.880066pt;}
.y13{bottom:311.200074pt;}
.y63{bottom:317.600037pt;}
.y52{bottom:336.160035pt;}
.y12{bottom:336.480042pt;}
.y62{bottom:342.240052pt;}
.y2f{bottom:361.440064pt;}
.y40{bottom:361.600037pt;}
.y4d{bottom:361.920044pt;}
.y61{bottom:367.040039pt;}
.y2e{bottom:386.880066pt;}
.y11{bottom:387.200074pt;}
.y72{bottom:407.040039pt;}
.y3f{bottom:412.320069pt;}
.y4c{bottom:412.640076pt;}
.y60{bottom:416.320069pt;}
.y2d{bottom:437.600037pt;}
.y4b{bottom:437.920044pt;}
.y71{bottom:457.760071pt;}
.y3e{bottom:463.040039pt;}
.y10{bottom:463.360047pt;}
.y5f{bottom:465.600037pt;}
.y70{bottom:483.040039pt;}
.y2c{bottom:488.320069pt;}
.yf{bottom:488.640076pt;}
.y6f{bottom:508.480042pt;}
.y2b{bottom:513.600037pt;}
.y3d{bottom:513.760071pt;}
.ye{bottom:514.080079pt;}
.y5e{bottom:514.880066pt;}
.y3c{bottom:539.040039pt;}
.y4a{bottom:539.360047pt;}
.y5d{bottom:539.680054pt;}
.y2a{bottom:564.320069pt;}
.y3b{bottom:564.480042pt;}
.yd{bottom:564.800049pt;}
.y29{bottom:589.760071pt;}
.yc{bottom:590.080079pt;}
.y28{bottom:615.040070pt;}
.y41{bottom:615.200074pt;}
.yb{bottom:615.520050pt;}
.y5c{bottom:639.680054pt;}
.y27{bottom:640.480072pt;}
.y49{bottom:640.800049pt;}
.y6e{bottom:642.240052pt;}
.y5b{bottom:664.960053pt;}
.y26{bottom:665.760071pt;}
.y55{bottom:665.920044pt;}
.ya{bottom:666.240052pt;}
.y25{bottom:691.200074pt;}
.y9{bottom:691.520050pt;}
.y6d{bottom:714.080048pt;}
.y58{bottom:716.480072pt;}
.y51{bottom:716.640046pt;}
.y48{bottom:716.960053pt;}
.y24{bottom:741.920044pt;}
.y47{bottom:742.240052pt;}
.y3a{bottom:767.360047pt;}
.y46{bottom:767.680054pt;}
.y39{bottom:792.640046pt;}
.y8{bottom:792.960053pt;}
.y6c{bottom:797.280060pt;}
.y23{bottom:818.080048pt;}
.y7{bottom:818.400055pt;}
.y22{bottom:843.360047pt;}
.y6{bottom:843.680054pt;}
.y21{bottom:868.800064pt;}
.y45{bottom:869.120057pt;}
.y20{bottom:894.080063pt;}
.y5{bottom:894.400055pt;}
.y1f{bottom:919.520066pt;}
.y44{bottom:919.840058pt;}
.y38{bottom:944.800064pt;}
.y43{bottom:945.120057pt;}
.y1a{bottom:950.240052pt;}
.y1e{bottom:970.240052pt;}
.y4{bottom:970.560059pt;}
.y1d{bottom:995.520058pt;}
.y3{bottom:995.840058pt;}
.y1c{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.h6{height:49.158205pt;}
.h8{height:49.419255pt;}
.h7{height:51.141625pt;}
.h5{height:58.659722pt;}
.h2{height:60.299627pt;}
.hb{height:61.774332pt;}
.ha{height:62.530612pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.h9{height:76.366952pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:79.839996pt;}
.x11{left:122.080002pt;}
.x1{left:125.279999pt;}
.x6{left:131.199997pt;}
.x13{left:136.160004pt;}
.xe{left:154.880005pt;}
.x23{left:175.839996pt;}
.x20{left:179.679993pt;}
.x1c{left:185.279999pt;}
.x2{left:189.119995pt;}
.x10{left:199.679993pt;}
.x1e{left:206.240005pt;}
.x19{left:211.199997pt;}
.x3{left:212.639999pt;}
.x14{left:224.639999pt;}
.x16{left:236.320007pt;}
.x4{left:237.759995pt;}
.xa{left:256.000000pt;}
.x1b{left:274.720001pt;}
.x24{left:280.000000pt;}
.x12{left:287.040009pt;}
.x21{left:288.640015pt;}
.x1f{left:297.920013pt;}
.xd{left:300.959991pt;}
.x17{left:307.679993pt;}
.x5{left:316.959991pt;}
.x1a{left:324.959991pt;}
.x7{left:329.440002pt;}
.x9{left:365.279999pt;}
.x8{left:372.959991pt;}
.xf{left:391.200012pt;}
.x22{left:447.839996pt;}
.xb{left:473.600006pt;}
.x15{left:558.719971pt;}
.x18{left:563.520020pt;}
.x1d{left:579.039978pt;}
}




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