
    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_f4f9cc1dee51093d0c886ed9.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_14bbf9496f2a3e403da9a6a7.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_c3737f0a487cf68552d1e16b.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_344e0317f2869658866dc493.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5a84462d967cd1f6d3040166.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:21.546720px;}
.ls7{letter-spacing:46.002720px;}
.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.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.598400px;}
._0{width:1.022160px;}
._7{width:2.275200px;}
._2{width:3.545040px;}
._8{width:4.780800px;}
._b{width:6.441600px;}
._f{width:8.225520px;}
._9{width:9.681120px;}
._d{width:10.734480px;}
._c{width:11.886000px;}
._e{width:13.723440px;}
._10{width:16.009440px;}
._12{width:17.688960px;}
._11{width:19.123200px;}
._a{width:20.617200px;}
._13{width:21.925680px;}
._14{width:23.669760px;}
._5{width:25.099200px;}
._6{width:26.294400px;}
._15{width:28.379760px;}
._16{width:30.823680px;}
._18{width:51.931440px;}
._17{width:53.186400px;}
._1c{width:54.188400px;}
._1a{width:72.166560px;}
._19{width:73.504800px;}
._4{width:85.536000px;}
._1b{width:87.010560px;}
._3{width:687.426000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb{bottom:35.100000px;}
.ya{bottom:50.580000px;}
.y71{bottom:117.360000px;}
.ya7{bottom:118.980000px;}
.y3e{bottom:122.220000px;}
.y70{bottom:134.640000px;}
.ya6{bottom:136.260000px;}
.y3d{bottom:140.940000px;}
.y6f{bottom:151.920000px;}
.ya5{bottom:153.540000px;}
.y3c{bottom:159.480000px;}
.y6e{bottom:169.200000px;}
.ya4{bottom:170.640000px;}
.y3b{bottom:178.200000px;}
.y6d{bottom:186.480000px;}
.ya3{bottom:187.920000px;}
.y3a{bottom:196.740000px;}
.y6c{bottom:203.760000px;}
.ya2{bottom:205.200000px;}
.y39{bottom:215.310000px;}
.y6b{bottom:220.890000px;}
.ya1{bottom:222.510000px;}
.y38{bottom:234.030000px;}
.y6a{bottom:238.170000px;}
.ya0{bottom:239.790000px;}
.y37{bottom:252.570000px;}
.y69{bottom:255.450000px;}
.y9f{bottom:256.890000px;}
.y36{bottom:271.290000px;}
.y68{bottom:272.730000px;}
.y9e{bottom:274.170000px;}
.y35{bottom:289.830000px;}
.y67{bottom:290.010000px;}
.y9d{bottom:291.450000px;}
.y66{bottom:307.290000px;}
.y34{bottom:308.550000px;}
.y9c{bottom:308.730000px;}
.y65{bottom:325.830000px;}
.y9b{bottom:326.010000px;}
.y33{bottom:327.090000px;}
.ya9{bottom:340.410000px;}
.y9a{bottom:343.290000px;}
.y64{bottom:344.370000px;}
.y32{bottom:345.630000px;}
.ya8{bottom:359.130000px;}
.y99{bottom:360.390000px;}
.y31{bottom:362.910000px;}
.y63{bottom:363.090000px;}
.y98{bottom:377.670000px;}
.y30{bottom:380.190000px;}
.y62{bottom:381.630000px;}
.y97{bottom:394.950000px;}
.y61{bottom:400.170000px;}
.y2f{bottom:401.430000px;}
.y96{bottom:412.230000px;}
.y2e{bottom:418.710000px;}
.y60{bottom:418.890000px;}
.y95{bottom:429.510000px;}
.y2d{bottom:435.990000px;}
.y5f{bottom:437.430000px;}
.y94{bottom:446.790000px;}
.y2c{bottom:453.315000px;}
.y5e{bottom:456.195000px;}
.y93{bottom:463.935000px;}
.y2b{bottom:470.415000px;}
.y5d{bottom:474.735000px;}
.y92{bottom:481.215000px;}
.y2a{bottom:487.695000px;}
.y5c{bottom:493.455000px;}
.y91{bottom:498.495000px;}
.y29{bottom:504.975000px;}
.y5b{bottom:511.995000px;}
.y90{bottom:515.775000px;}
.y28{bottom:522.255000px;}
.y5a{bottom:530.535000px;}
.y8f{bottom:533.055000px;}
.y27{bottom:539.535000px;}
.y59{bottom:549.255000px;}
.y8e{bottom:550.335000px;}
.y26{bottom:556.815000px;}
.y8d{bottom:567.435000px;}
.y58{bottom:567.795000px;}
.y25{bottom:573.915000px;}
.y8c{bottom:584.715000px;}
.y57{bottom:586.515000px;}
.y24{bottom:591.195000px;}
.y8b{bottom:601.995000px;}
.y56{bottom:605.055000px;}
.y23{bottom:608.475000px;}
.y8a{bottom:619.275000px;}
.y55{bottom:623.595000px;}
.y22{bottom:625.755000px;}
.y89{bottom:636.555000px;}
.y54{bottom:642.315000px;}
.y21{bottom:643.035000px;}
.y88{bottom:653.655000px;}
.y20{bottom:660.315000px;}
.y53{bottom:660.855000px;}
.y87{bottom:670.935000px;}
.y1f{bottom:677.415000px;}
.y52{bottom:679.575000px;}
.y86{bottom:688.245000px;}
.y1e{bottom:694.725000px;}
.y51{bottom:698.145000px;}
.y85{bottom:705.525000px;}
.y1d{bottom:712.005000px;}
.y50{bottom:716.685000px;}
.y84{bottom:722.805000px;}
.y1c{bottom:730.545000px;}
.y4f{bottom:735.405000px;}
.y83{bottom:740.085000px;}
.y1b{bottom:749.265000px;}
.y4e{bottom:753.945000px;}
.y82{bottom:757.185000px;}
.y1a{bottom:767.625000px;}
.y4d{bottom:772.665000px;}
.y81{bottom:774.465000px;}
.y19{bottom:784.905000px;}
.y4c{bottom:791.205000px;}
.y80{bottom:791.745000px;}
.y18{bottom:802.545000px;}
.y7f{bottom:809.025000px;}
.y4b{bottom:809.925000px;}
.y17{bottom:821.445000px;}
.y7e{bottom:826.305000px;}
.y4a{bottom:828.465000px;}
.y16{bottom:840.525000px;}
.y7d{bottom:843.585000px;}
.y49{bottom:847.005000px;}
.y15{bottom:859.425000px;}
.y7c{bottom:860.685000px;}
.y48{bottom:865.725000px;}
.y7b{bottom:877.965000px;}
.y14{bottom:878.505000px;}
.y47{bottom:884.265000px;}
.y7a{bottom:895.245000px;}
.y13{bottom:897.405000px;}
.y46{bottom:902.985000px;}
.y79{bottom:912.525000px;}
.y12{bottom:916.305000px;}
.y45{bottom:921.570000px;}
.y78{bottom:929.850000px;}
.y11{bottom:935.430000px;}
.y44{bottom:940.110000px;}
.y77{bottom:947.130000px;}
.y10{bottom:954.330000px;}
.y43{bottom:958.830000px;}
.y76{bottom:964.230000px;}
.yf{bottom:973.410000px;}
.y42{bottom:977.370000px;}
.y75{bottom:981.510000px;}
.ye{bottom:992.310000px;}
.y41{bottom:996.090000px;}
.y74{bottom:998.790000px;}
.yd{bottom:1011.210000px;}
.y40{bottom:1014.630000px;}
.y73{bottom:1016.070000px;}
.yc{bottom:1030.470000px;}
.y3f{bottom:1033.170000px;}
.y72{bottom:1033.350000px;}
.y9{bottom:1051.710000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1087.890000px;}
.y6{bottom:1105.890000px;}
.y5{bottom:1122.630000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hb{height:43.506914px;}
.ha{height:43.681992px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.h4{height:50.800781px;}
.h9{height:53.224453px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x8{left:121.895987px;}
.x1{left:128.015987px;}
.x14{left:135.035987px;}
.x5{left:157.169987px;}
.x13{left:162.029987px;}
.xb{left:207.569987px;}
.xd{left:222.149987px;}
.xf{left:245.369987px;}
.x9{left:279.974987px;}
.x12{left:346.394987px;}
.x15{left:362.414987px;}
.xe{left:372.854987px;}
.xa{left:375.194987px;}
.xc{left:383.114987px;}
.x11{left:384.374987px;}
.x7{left:386.354987px;}
.x16{left:395.714987px;}
.x10{left:398.954987px;}
.x6{left:412.274987px;}
.x3{left:446.504987px;}
.x4{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:19.152640pt;}
.ls7{letter-spacing:40.891307pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.420800pt;}
._0{width:0.908587pt;}
._7{width:2.022400pt;}
._2{width:3.151147pt;}
._8{width:4.249600pt;}
._b{width:5.725867pt;}
._f{width:7.311573pt;}
._9{width:8.605440pt;}
._d{width:9.541760pt;}
._c{width:10.565333pt;}
._e{width:12.198613pt;}
._10{width:14.230613pt;}
._12{width:15.723520pt;}
._11{width:16.998400pt;}
._a{width:18.326400pt;}
._13{width:19.489493pt;}
._14{width:21.039787pt;}
._5{width:22.310400pt;}
._6{width:23.372800pt;}
._15{width:25.226453pt;}
._16{width:27.398827pt;}
._18{width:46.161280pt;}
._17{width:47.276800pt;}
._1c{width:48.167467pt;}
._1a{width:64.148053pt;}
._19{width:65.337600pt;}
._4{width:76.032000pt;}
._1b{width:77.342720pt;}
._3{width:611.045333pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:31.200000pt;}
.ya{bottom:44.960000pt;}
.y71{bottom:104.320000pt;}
.ya7{bottom:105.760000pt;}
.y3e{bottom:108.640000pt;}
.y70{bottom:119.680000pt;}
.ya6{bottom:121.120000pt;}
.y3d{bottom:125.280000pt;}
.y6f{bottom:135.040000pt;}
.ya5{bottom:136.480000pt;}
.y3c{bottom:141.760000pt;}
.y6e{bottom:150.400000pt;}
.ya4{bottom:151.680000pt;}
.y3b{bottom:158.400000pt;}
.y6d{bottom:165.760000pt;}
.ya3{bottom:167.040000pt;}
.y3a{bottom:174.880000pt;}
.y6c{bottom:181.120000pt;}
.ya2{bottom:182.400000pt;}
.y39{bottom:191.386667pt;}
.y6b{bottom:196.346667pt;}
.ya1{bottom:197.786667pt;}
.y38{bottom:208.026667pt;}
.y6a{bottom:211.706667pt;}
.ya0{bottom:213.146667pt;}
.y37{bottom:224.506667pt;}
.y69{bottom:227.066667pt;}
.y9f{bottom:228.346667pt;}
.y36{bottom:241.146667pt;}
.y68{bottom:242.426667pt;}
.y9e{bottom:243.706667pt;}
.y35{bottom:257.626667pt;}
.y67{bottom:257.786667pt;}
.y9d{bottom:259.066667pt;}
.y66{bottom:273.146667pt;}
.y34{bottom:274.266667pt;}
.y9c{bottom:274.426667pt;}
.y65{bottom:289.626667pt;}
.y9b{bottom:289.786667pt;}
.y33{bottom:290.746667pt;}
.ya9{bottom:302.586667pt;}
.y9a{bottom:305.146667pt;}
.y64{bottom:306.106667pt;}
.y32{bottom:307.226667pt;}
.ya8{bottom:319.226667pt;}
.y99{bottom:320.346667pt;}
.y31{bottom:322.586667pt;}
.y63{bottom:322.746667pt;}
.y98{bottom:335.706667pt;}
.y30{bottom:337.946667pt;}
.y62{bottom:339.226667pt;}
.y97{bottom:351.066667pt;}
.y61{bottom:355.706667pt;}
.y2f{bottom:356.826667pt;}
.y96{bottom:366.426667pt;}
.y2e{bottom:372.186667pt;}
.y60{bottom:372.346667pt;}
.y95{bottom:381.786667pt;}
.y2d{bottom:387.546667pt;}
.y5f{bottom:388.826667pt;}
.y94{bottom:397.146667pt;}
.y2c{bottom:402.946667pt;}
.y5e{bottom:405.506667pt;}
.y93{bottom:412.386667pt;}
.y2b{bottom:418.146667pt;}
.y5d{bottom:421.986667pt;}
.y92{bottom:427.746667pt;}
.y2a{bottom:433.506667pt;}
.y5c{bottom:438.626667pt;}
.y91{bottom:443.106667pt;}
.y29{bottom:448.866667pt;}
.y5b{bottom:455.106667pt;}
.y90{bottom:458.466667pt;}
.y28{bottom:464.226667pt;}
.y5a{bottom:471.586667pt;}
.y8f{bottom:473.826667pt;}
.y27{bottom:479.586667pt;}
.y59{bottom:488.226667pt;}
.y8e{bottom:489.186667pt;}
.y26{bottom:494.946667pt;}
.y8d{bottom:504.386667pt;}
.y58{bottom:504.706667pt;}
.y25{bottom:510.146667pt;}
.y8c{bottom:519.746667pt;}
.y57{bottom:521.346667pt;}
.y24{bottom:525.506667pt;}
.y8b{bottom:535.106667pt;}
.y56{bottom:537.826667pt;}
.y23{bottom:540.866667pt;}
.y8a{bottom:550.466667pt;}
.y55{bottom:554.306667pt;}
.y22{bottom:556.226667pt;}
.y89{bottom:565.826667pt;}
.y54{bottom:570.946667pt;}
.y21{bottom:571.586667pt;}
.y88{bottom:581.026667pt;}
.y20{bottom:586.946667pt;}
.y53{bottom:587.426667pt;}
.y87{bottom:596.386667pt;}
.y1f{bottom:602.146667pt;}
.y52{bottom:604.066667pt;}
.y86{bottom:611.773333pt;}
.y1e{bottom:617.533333pt;}
.y51{bottom:620.573333pt;}
.y85{bottom:627.133333pt;}
.y1d{bottom:632.893333pt;}
.y50{bottom:637.053333pt;}
.y84{bottom:642.493333pt;}
.y1c{bottom:649.373333pt;}
.y4f{bottom:653.693333pt;}
.y83{bottom:657.853333pt;}
.y1b{bottom:666.013333pt;}
.y4e{bottom:670.173333pt;}
.y82{bottom:673.053333pt;}
.y1a{bottom:682.333333pt;}
.y4d{bottom:686.813333pt;}
.y81{bottom:688.413333pt;}
.y19{bottom:697.693333pt;}
.y4c{bottom:703.293333pt;}
.y80{bottom:703.773333pt;}
.y18{bottom:713.373333pt;}
.y7f{bottom:719.133333pt;}
.y4b{bottom:719.933333pt;}
.y17{bottom:730.173333pt;}
.y7e{bottom:734.493333pt;}
.y4a{bottom:736.413333pt;}
.y16{bottom:747.133333pt;}
.y7d{bottom:749.853333pt;}
.y49{bottom:752.893333pt;}
.y15{bottom:763.933333pt;}
.y7c{bottom:765.053333pt;}
.y48{bottom:769.533333pt;}
.y7b{bottom:780.413333pt;}
.y14{bottom:780.893333pt;}
.y47{bottom:786.013333pt;}
.y7a{bottom:795.773333pt;}
.y13{bottom:797.693333pt;}
.y46{bottom:802.653333pt;}
.y79{bottom:811.133333pt;}
.y12{bottom:814.493333pt;}
.y45{bottom:819.173333pt;}
.y78{bottom:826.533333pt;}
.y11{bottom:831.493333pt;}
.y44{bottom:835.653333pt;}
.y77{bottom:841.893333pt;}
.y10{bottom:848.293333pt;}
.y43{bottom:852.293333pt;}
.y76{bottom:857.093333pt;}
.yf{bottom:865.253333pt;}
.y42{bottom:868.773333pt;}
.y75{bottom:872.453333pt;}
.ye{bottom:882.053333pt;}
.y41{bottom:885.413333pt;}
.y74{bottom:887.813333pt;}
.yd{bottom:898.853333pt;}
.y40{bottom:901.893333pt;}
.y73{bottom:903.173333pt;}
.yc{bottom:915.973333pt;}
.y3f{bottom:918.373333pt;}
.y72{bottom:918.533333pt;}
.y9{bottom:934.853333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:967.013333pt;}
.y6{bottom:983.013333pt;}
.y5{bottom:997.893333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hb{height:38.672812pt;}
.ha{height:38.828437pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.h4{height:45.156250pt;}
.h9{height:47.310625pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x8{left:108.351988pt;}
.x1{left:113.791988pt;}
.x14{left:120.031988pt;}
.x5{left:139.706655pt;}
.x13{left:144.026655pt;}
.xb{left:184.506655pt;}
.xd{left:197.466655pt;}
.xf{left:218.106655pt;}
.x9{left:248.866655pt;}
.x12{left:307.906655pt;}
.x15{left:322.146655pt;}
.xe{left:331.426655pt;}
.xa{left:333.506655pt;}
.xc{left:340.546655pt;}
.x11{left:341.666655pt;}
.x7{left:343.426655pt;}
.x16{left:351.746655pt;}
.x10{left:354.626655pt;}
.x6{left:366.466655pt;}
.x3{left:396.893322pt;}
.x4{left:460.893322pt;}
}




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