
    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_011d838755b5801bcd88a6f9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_603703d85f6cd9cc5d515265.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a5b8f16daeb3ab28d65bb33c.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_75fe708a697a56df7be6ea8e.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_cce9ca21ce67f0ec4c5fc78a.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2c205bc984fade34f753f404.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_9408d156f71e42b3cf832215.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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;}
.ls29{letter-spacing:-0.864000px;}
.ls28{letter-spacing:-0.756000px;}
.ls11{letter-spacing:-0.660000px;}
.ls12{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.240000px;}
.ls25{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.060000px;}
.ls10{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.300000px;}
.ls1a{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.780000px;}
.ls0{letter-spacing:0.960000px;}
.ls6{letter-spacing:1.140000px;}
.ls1b{letter-spacing:1.188000px;}
.ls8{letter-spacing:1.260000px;}
.lsd{letter-spacing:1.440000px;}
.ls23{letter-spacing:1.458000px;}
.ls16{letter-spacing:1.560000px;}
.ls24{letter-spacing:1.566000px;}
.ls2{letter-spacing:1.740000px;}
.ls9{letter-spacing:1.920000px;}
.ls18{letter-spacing:1.980000px;}
.lsa{letter-spacing:2.220000px;}
.ls22{letter-spacing:2.484000px;}
.ls21{letter-spacing:2.538000px;}
.ls3{letter-spacing:3.060000px;}
.ls5{letter-spacing:3.600000px;}
.lsb{letter-spacing:4.200000px;}
.ls1d{letter-spacing:4.428000px;}
.ls20{letter-spacing:6.912000px;}
.ls1c{letter-spacing:7.938000px;}
.ls1e{letter-spacing:13.284000px;}
.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;}
}
.ws0{word-spacing:-36.450000px;}
.ws2c{word-spacing:-17.928000px;}
.ws2f{word-spacing:-15.984000px;}
.ws2{word-spacing:-15.660000px;}
.ws1{word-spacing:-15.000000px;}
.ws30{word-spacing:-14.958000px;}
.ws26{word-spacing:-14.760000px;}
.ws2b{word-spacing:-14.688000px;}
.ws27{word-spacing:-14.340000px;}
.ws2e{word-spacing:-13.662000px;}
.ws2a{word-spacing:-13.500000px;}
.ws28{word-spacing:-13.230000px;}
.ws29{word-spacing:-12.960000px;}
.ws2d{word-spacing:-12.636000px;}
.ws1f{word-spacing:-4.200000px;}
.ws1b{word-spacing:-3.780000px;}
.ws6{word-spacing:-3.720000px;}
.ws15{word-spacing:-3.420000px;}
.ws4f{word-spacing:-3.402000px;}
.wsb{word-spacing:-3.060000px;}
.ws3e{word-spacing:-2.700000px;}
.ws4a{word-spacing:-2.538000px;}
.ws4e{word-spacing:-2.430000px;}
.ws40{word-spacing:-2.280000px;}
.ws1d{word-spacing:-2.220000px;}
.ws19{word-spacing:-1.920000px;}
.wsa{word-spacing:-1.740000px;}
.ws4c{word-spacing:-1.566000px;}
.ws4b{word-spacing:-1.512000px;}
.ws22{word-spacing:-1.440000px;}
.ws16{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.140000px;}
.ws8{word-spacing:-0.960000px;}
.ws9{word-spacing:-0.780000px;}
.ws12{word-spacing:-0.720000px;}
.wsf{word-spacing:-0.660000px;}
.ws20{word-spacing:-0.600000px;}
.ws25{word-spacing:-0.480000px;}
.ws3c{word-spacing:-0.360000px;}
.ws11{word-spacing:-0.240000px;}
.ws49{word-spacing:-0.162000px;}
.ws13{word-spacing:-0.120000px;}
.ws3{word-spacing:0.000000px;}
.ws32{word-spacing:0.180000px;}
.ws1c{word-spacing:0.240000px;}
.ws44{word-spacing:0.270000px;}
.ws31{word-spacing:0.300000px;}
.ws24{word-spacing:0.360000px;}
.ws17{word-spacing:0.480000px;}
.ws1a{word-spacing:0.540000px;}
.ws35{word-spacing:0.660000px;}
.ws21{word-spacing:0.720000px;}
.ws45{word-spacing:0.756000px;}
.ws42{word-spacing:0.780000px;}
.ws48{word-spacing:0.864000px;}
.wsd{word-spacing:0.900000px;}
.ws41{word-spacing:0.960000px;}
.ws14{word-spacing:1.560000px;}
.ws3b{word-spacing:1.860000px;}
.ws37{word-spacing:2.220000px;}
.ws3f{word-spacing:2.520000px;}
.ws4d{word-spacing:2.592000px;}
.ws39{word-spacing:3.120000px;}
.ws43{word-spacing:3.180000px;}
.ws23{word-spacing:3.240000px;}
.ws38{word-spacing:3.480000px;}
.ws5{word-spacing:3.600000px;}
.ws3a{word-spacing:4.200000px;}
.ws4{word-spacing:4.644000px;}
.ws36{word-spacing:5.100000px;}
.ws34{word-spacing:5.400000px;}
.ws18{word-spacing:5.460000px;}
.ws33{word-spacing:5.820000px;}
.ws3d{word-spacing:6.480000px;}
.wse{word-spacing:6.540000px;}
.ws46{word-spacing:6.750000px;}
.wsc{word-spacing:7.380000px;}
.ws7{word-spacing:7.500000px;}
.ws1e{word-spacing:8.460000px;}
.ws47{word-spacing:8.856000px;}
._0{margin-left:-94.500000px;}
._4{margin-left:-7.740000px;}
._a{margin-left:-6.420000px;}
._3{margin-left:-4.800000px;}
._5{margin-left:-3.300000px;}
._e{margin-left:-2.280000px;}
._2{margin-left:-1.080000px;}
._10{width:1.020000px;}
._9{width:2.220000px;}
._7{width:4.590000px;}
._f{width:6.270000px;}
._d{width:7.560000px;}
._8{width:8.760000px;}
._b{width:10.200000px;}
._c{width:11.280000px;}
._11{width:12.900000px;}
._6{width:76.518000px;}
._12{width:1399.268400px;}
._1{width:1480.293600px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:87.688350px;}
.y6b{bottom:90.536400px;}
.y86{bottom:91.017750px;}
.y8{bottom:101.188350px;}
.y85{bottom:104.517750px;}
.y6a{bottom:108.536400px;}
.y84{bottom:118.017750px;}
.y69{bottom:126.536400px;}
.y24{bottom:139.245900px;}
.y3e{bottom:139.260900px;}
.y68{bottom:144.536400px;}
.y23{bottom:157.245900px;}
.y3d{bottom:157.260900px;}
.y67{bottom:162.536400px;}
.y22{bottom:175.245900px;}
.y3c{bottom:175.260900px;}
.y66{bottom:180.536400px;}
.y21{bottom:193.245900px;}
.y3b{bottom:193.260900px;}
.y65{bottom:198.536400px;}
.y20{bottom:211.245900px;}
.y3a{bottom:211.260900px;}
.y64{bottom:216.536400px;}
.y1f{bottom:229.245900px;}
.y39{bottom:229.260900px;}
.y63{bottom:234.536400px;}
.y1e{bottom:247.245900px;}
.y38{bottom:247.260900px;}
.y62{bottom:252.536400px;}
.y1d{bottom:265.245900px;}
.y37{bottom:265.260900px;}
.y61{bottom:270.536400px;}
.y1c{bottom:283.245900px;}
.y36{bottom:283.260900px;}
.y60{bottom:288.536400px;}
.y1b{bottom:301.245900px;}
.y35{bottom:301.260900px;}
.y5f{bottom:306.536400px;}
.y34{bottom:319.260900px;}
.y5e{bottom:324.536400px;}
.y1a{bottom:337.245900px;}
.y33{bottom:337.260900px;}
.y5d{bottom:342.536400px;}
.y19{bottom:355.245900px;}
.y32{bottom:355.260900px;}
.y5c{bottom:360.536400px;}
.y18{bottom:373.245900px;}
.y31{bottom:373.260900px;}
.y5b{bottom:378.536400px;}
.y17{bottom:391.245900px;}
.y30{bottom:391.260900px;}
.y5a{bottom:396.536400px;}
.y16{bottom:409.245900px;}
.y59{bottom:414.536400px;}
.y15{bottom:427.245900px;}
.y2f{bottom:427.260900px;}
.y58{bottom:432.536400px;}
.y14{bottom:445.245900px;}
.y2e{bottom:445.260900px;}
.y57{bottom:450.536400px;}
.y13{bottom:463.245900px;}
.y2d{bottom:463.260900px;}
.y56{bottom:468.536400px;}
.y12{bottom:481.245900px;}
.y55{bottom:486.536400px;}
.y83{bottom:492.116250px;}
.y11{bottom:499.245900px;}
.y2c{bottom:499.260900px;}
.y54{bottom:504.536400px;}
.y82{bottom:508.316250px;}
.y10{bottom:517.245900px;}
.y2b{bottom:517.260900px;}
.y53{bottom:522.536400px;}
.y81{bottom:524.516400px;}
.yf{bottom:535.245900px;}
.y2a{bottom:535.260900px;}
.y52{bottom:540.536400px;}
.y80{bottom:540.716400px;}
.ye{bottom:553.245900px;}
.y29{bottom:553.260900px;}
.y7f{bottom:556.916400px;}
.y51{bottom:558.536400px;}
.yd{bottom:571.245900px;}
.y28{bottom:571.260900px;}
.y7e{bottom:573.116400px;}
.y50{bottom:576.536400px;}
.yc{bottom:589.245900px;}
.y27{bottom:589.260900px;}
.y7d{bottom:589.316400px;}
.y4f{bottom:594.536400px;}
.y7c{bottom:605.516400px;}
.yb{bottom:607.245900px;}
.y26{bottom:607.260900px;}
.y4e{bottom:612.536400px;}
.y7b{bottom:621.716400px;}
.ya{bottom:625.245900px;}
.y25{bottom:625.260900px;}
.y4d{bottom:630.536400px;}
.y7a{bottom:637.916400px;}
.y4c{bottom:648.536400px;}
.y79{bottom:654.116400px;}
.y4b{bottom:666.536400px;}
.y78{bottom:670.316400px;}
.y6{bottom:679.786050px;}
.y4a{bottom:684.536400px;}
.y77{bottom:686.516400px;}
.y49{bottom:702.536400px;}
.y76{bottom:702.716400px;}
.y5{bottom:708.284550px;}
.y75{bottom:718.916400px;}
.y48{bottom:720.536400px;}
.y74{bottom:735.116400px;}
.y4{bottom:736.783050px;}
.y47{bottom:738.536400px;}
.y73{bottom:751.316400px;}
.y46{bottom:756.536400px;}
.y72{bottom:767.516400px;}
.y45{bottom:774.536400px;}
.y71{bottom:783.716400px;}
.y7{bottom:791.408850px;}
.y44{bottom:792.536400px;}
.y70{bottom:799.916400px;}
.y43{bottom:810.536400px;}
.y6f{bottom:816.116400px;}
.y42{bottom:828.536400px;}
.y6e{bottom:832.316400px;}
.y3{bottom:846.459900px;}
.y41{bottom:846.536400px;}
.y6d{bottom:848.516400px;}
.y40{bottom:864.536400px;}
.y2{bottom:882.459900px;}
.y3f{bottom:882.536400px;}
.y6c{bottom:882.716400px;}
.y1{bottom:937.589700px;}
.h6{height:42.117188px;}
.h5{height:47.381836px;}
.h2{height:47.961914px;}
.h4{height:52.646484px;}
.h3{height:53.291016px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:63.750000px;}
.x1{left:85.050000px;}
.xa{left:87.750000px;}
.x5{left:106.050000px;}
.x4{left:109.050000px;}
.x3{left:237.248400px;}
.xc{left:361.425000px;}
.x8{left:382.710000px;}
.x2{left:384.915000px;}
.x6{left:403.725000px;}
.x7{left:406.710000px;}
.xb{left:443.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-0.768000pt;}
.ls28{letter-spacing:-0.672000pt;}
.ls11{letter-spacing:-0.586667pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls25{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.053333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.266667pt;}
.ls1a{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.693333pt;}
.ls0{letter-spacing:0.853333pt;}
.ls6{letter-spacing:1.013333pt;}
.ls1b{letter-spacing:1.056000pt;}
.ls8{letter-spacing:1.120000pt;}
.lsd{letter-spacing:1.280000pt;}
.ls23{letter-spacing:1.296000pt;}
.ls16{letter-spacing:1.386667pt;}
.ls24{letter-spacing:1.392000pt;}
.ls2{letter-spacing:1.546667pt;}
.ls9{letter-spacing:1.706667pt;}
.ls18{letter-spacing:1.760000pt;}
.lsa{letter-spacing:1.973333pt;}
.ls22{letter-spacing:2.208000pt;}
.ls21{letter-spacing:2.256000pt;}
.ls3{letter-spacing:2.720000pt;}
.ls5{letter-spacing:3.200000pt;}
.lsb{letter-spacing:3.733333pt;}
.ls1d{letter-spacing:3.936000pt;}
.ls20{letter-spacing:6.144000pt;}
.ls1c{letter-spacing:7.056000pt;}
.ls1e{letter-spacing:11.808000pt;}
.ws0{word-spacing:-32.400000pt;}
.ws2c{word-spacing:-15.936000pt;}
.ws2f{word-spacing:-14.208000pt;}
.ws2{word-spacing:-13.920000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws30{word-spacing:-13.296000pt;}
.ws26{word-spacing:-13.120000pt;}
.ws2b{word-spacing:-13.056000pt;}
.ws27{word-spacing:-12.746667pt;}
.ws2e{word-spacing:-12.144000pt;}
.ws2a{word-spacing:-12.000000pt;}
.ws28{word-spacing:-11.760000pt;}
.ws29{word-spacing:-11.520000pt;}
.ws2d{word-spacing:-11.232000pt;}
.ws1f{word-spacing:-3.733333pt;}
.ws1b{word-spacing:-3.360000pt;}
.ws6{word-spacing:-3.306667pt;}
.ws15{word-spacing:-3.040000pt;}
.ws4f{word-spacing:-3.024000pt;}
.wsb{word-spacing:-2.720000pt;}
.ws3e{word-spacing:-2.400000pt;}
.ws4a{word-spacing:-2.256000pt;}
.ws4e{word-spacing:-2.160000pt;}
.ws40{word-spacing:-2.026667pt;}
.ws1d{word-spacing:-1.973333pt;}
.ws19{word-spacing:-1.706667pt;}
.wsa{word-spacing:-1.546667pt;}
.ws4c{word-spacing:-1.392000pt;}
.ws4b{word-spacing:-1.344000pt;}
.ws22{word-spacing:-1.280000pt;}
.ws16{word-spacing:-1.120000pt;}
.ws10{word-spacing:-1.013333pt;}
.ws8{word-spacing:-0.853333pt;}
.ws9{word-spacing:-0.693333pt;}
.ws12{word-spacing:-0.640000pt;}
.wsf{word-spacing:-0.586667pt;}
.ws20{word-spacing:-0.533333pt;}
.ws25{word-spacing:-0.426667pt;}
.ws3c{word-spacing:-0.320000pt;}
.ws11{word-spacing:-0.213333pt;}
.ws49{word-spacing:-0.144000pt;}
.ws13{word-spacing:-0.106667pt;}
.ws3{word-spacing:0.000000pt;}
.ws32{word-spacing:0.160000pt;}
.ws1c{word-spacing:0.213333pt;}
.ws44{word-spacing:0.240000pt;}
.ws31{word-spacing:0.266667pt;}
.ws24{word-spacing:0.320000pt;}
.ws17{word-spacing:0.426667pt;}
.ws1a{word-spacing:0.480000pt;}
.ws35{word-spacing:0.586667pt;}
.ws21{word-spacing:0.640000pt;}
.ws45{word-spacing:0.672000pt;}
.ws42{word-spacing:0.693333pt;}
.ws48{word-spacing:0.768000pt;}
.wsd{word-spacing:0.800000pt;}
.ws41{word-spacing:0.853333pt;}
.ws14{word-spacing:1.386667pt;}
.ws3b{word-spacing:1.653333pt;}
.ws37{word-spacing:1.973333pt;}
.ws3f{word-spacing:2.240000pt;}
.ws4d{word-spacing:2.304000pt;}
.ws39{word-spacing:2.773333pt;}
.ws43{word-spacing:2.826667pt;}
.ws23{word-spacing:2.880000pt;}
.ws38{word-spacing:3.093333pt;}
.ws5{word-spacing:3.200000pt;}
.ws3a{word-spacing:3.733333pt;}
.ws4{word-spacing:4.128000pt;}
.ws36{word-spacing:4.533333pt;}
.ws34{word-spacing:4.800000pt;}
.ws18{word-spacing:4.853333pt;}
.ws33{word-spacing:5.173333pt;}
.ws3d{word-spacing:5.760000pt;}
.wse{word-spacing:5.813333pt;}
.ws46{word-spacing:6.000000pt;}
.wsc{word-spacing:6.560000pt;}
.ws7{word-spacing:6.666667pt;}
.ws1e{word-spacing:7.520000pt;}
.ws47{word-spacing:7.872000pt;}
._0{margin-left:-84.000000pt;}
._4{margin-left:-6.880000pt;}
._a{margin-left:-5.706667pt;}
._3{margin-left:-4.266667pt;}
._5{margin-left:-2.933333pt;}
._e{margin-left:-2.026667pt;}
._2{margin-left:-0.960000pt;}
._10{width:0.906667pt;}
._9{width:1.973333pt;}
._7{width:4.080000pt;}
._f{width:5.573333pt;}
._d{width:6.720000pt;}
._8{width:7.786667pt;}
._b{width:9.066667pt;}
._c{width:10.026667pt;}
._11{width:11.466667pt;}
._6{width:68.016000pt;}
._12{width:1243.794133pt;}
._1{width:1315.816533pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:77.945200pt;}
.y6b{bottom:80.476800pt;}
.y86{bottom:80.904667pt;}
.y8{bottom:89.945200pt;}
.y85{bottom:92.904667pt;}
.y6a{bottom:96.476800pt;}
.y84{bottom:104.904667pt;}
.y69{bottom:112.476800pt;}
.y24{bottom:123.774133pt;}
.y3e{bottom:123.787467pt;}
.y68{bottom:128.476800pt;}
.y23{bottom:139.774133pt;}
.y3d{bottom:139.787467pt;}
.y67{bottom:144.476800pt;}
.y22{bottom:155.774133pt;}
.y3c{bottom:155.787467pt;}
.y66{bottom:160.476800pt;}
.y21{bottom:171.774133pt;}
.y3b{bottom:171.787467pt;}
.y65{bottom:176.476800pt;}
.y20{bottom:187.774133pt;}
.y3a{bottom:187.787467pt;}
.y64{bottom:192.476800pt;}
.y1f{bottom:203.774133pt;}
.y39{bottom:203.787467pt;}
.y63{bottom:208.476800pt;}
.y1e{bottom:219.774133pt;}
.y38{bottom:219.787467pt;}
.y62{bottom:224.476800pt;}
.y1d{bottom:235.774133pt;}
.y37{bottom:235.787467pt;}
.y61{bottom:240.476800pt;}
.y1c{bottom:251.774133pt;}
.y36{bottom:251.787467pt;}
.y60{bottom:256.476800pt;}
.y1b{bottom:267.774133pt;}
.y35{bottom:267.787467pt;}
.y5f{bottom:272.476800pt;}
.y34{bottom:283.787467pt;}
.y5e{bottom:288.476800pt;}
.y1a{bottom:299.774133pt;}
.y33{bottom:299.787467pt;}
.y5d{bottom:304.476800pt;}
.y19{bottom:315.774133pt;}
.y32{bottom:315.787467pt;}
.y5c{bottom:320.476800pt;}
.y18{bottom:331.774133pt;}
.y31{bottom:331.787467pt;}
.y5b{bottom:336.476800pt;}
.y17{bottom:347.774133pt;}
.y30{bottom:347.787467pt;}
.y5a{bottom:352.476800pt;}
.y16{bottom:363.774133pt;}
.y59{bottom:368.476800pt;}
.y15{bottom:379.774133pt;}
.y2f{bottom:379.787467pt;}
.y58{bottom:384.476800pt;}
.y14{bottom:395.774133pt;}
.y2e{bottom:395.787467pt;}
.y57{bottom:400.476800pt;}
.y13{bottom:411.774133pt;}
.y2d{bottom:411.787467pt;}
.y56{bottom:416.476800pt;}
.y12{bottom:427.774133pt;}
.y55{bottom:432.476800pt;}
.y83{bottom:437.436667pt;}
.y11{bottom:443.774133pt;}
.y2c{bottom:443.787467pt;}
.y54{bottom:448.476800pt;}
.y82{bottom:451.836667pt;}
.y10{bottom:459.774133pt;}
.y2b{bottom:459.787467pt;}
.y53{bottom:464.476800pt;}
.y81{bottom:466.236800pt;}
.yf{bottom:475.774133pt;}
.y2a{bottom:475.787467pt;}
.y52{bottom:480.476800pt;}
.y80{bottom:480.636800pt;}
.ye{bottom:491.774133pt;}
.y29{bottom:491.787467pt;}
.y7f{bottom:495.036800pt;}
.y51{bottom:496.476800pt;}
.yd{bottom:507.774133pt;}
.y28{bottom:507.787467pt;}
.y7e{bottom:509.436800pt;}
.y50{bottom:512.476800pt;}
.yc{bottom:523.774133pt;}
.y27{bottom:523.787467pt;}
.y7d{bottom:523.836800pt;}
.y4f{bottom:528.476800pt;}
.y7c{bottom:538.236800pt;}
.yb{bottom:539.774133pt;}
.y26{bottom:539.787467pt;}
.y4e{bottom:544.476800pt;}
.y7b{bottom:552.636800pt;}
.ya{bottom:555.774133pt;}
.y25{bottom:555.787467pt;}
.y4d{bottom:560.476800pt;}
.y7a{bottom:567.036800pt;}
.y4c{bottom:576.476800pt;}
.y79{bottom:581.436800pt;}
.y4b{bottom:592.476800pt;}
.y78{bottom:595.836800pt;}
.y6{bottom:604.254267pt;}
.y4a{bottom:608.476800pt;}
.y77{bottom:610.236800pt;}
.y49{bottom:624.476800pt;}
.y76{bottom:624.636800pt;}
.y5{bottom:629.586267pt;}
.y75{bottom:639.036800pt;}
.y48{bottom:640.476800pt;}
.y74{bottom:653.436800pt;}
.y4{bottom:654.918267pt;}
.y47{bottom:656.476800pt;}
.y73{bottom:667.836800pt;}
.y46{bottom:672.476800pt;}
.y72{bottom:682.236800pt;}
.y45{bottom:688.476800pt;}
.y71{bottom:696.636800pt;}
.y7{bottom:703.474533pt;}
.y44{bottom:704.476800pt;}
.y70{bottom:711.036800pt;}
.y43{bottom:720.476800pt;}
.y6f{bottom:725.436800pt;}
.y42{bottom:736.476800pt;}
.y6e{bottom:739.836800pt;}
.y3{bottom:752.408800pt;}
.y41{bottom:752.476800pt;}
.y6d{bottom:754.236800pt;}
.y40{bottom:768.476800pt;}
.y2{bottom:784.408800pt;}
.y3f{bottom:784.476800pt;}
.y6c{bottom:784.636800pt;}
.y1{bottom:833.413067pt;}
.h6{height:37.437500pt;}
.h5{height:42.117188pt;}
.h2{height:42.632812pt;}
.h4{height:46.796875pt;}
.h3{height:47.369792pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:56.666667pt;}
.x1{left:75.600000pt;}
.xa{left:78.000000pt;}
.x5{left:94.266667pt;}
.x4{left:96.933333pt;}
.x3{left:210.887467pt;}
.xc{left:321.266667pt;}
.x8{left:340.186667pt;}
.x2{left:342.146667pt;}
.x6{left:358.866667pt;}
.x7{left:361.520000pt;}
.xb{left:394.453333pt;}
}




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