
    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_0cbee96c31a2ae1b05dd80b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_9c5f34add4b52268472146a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_efcdd7f9c4b10f9885b67c40.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_9e6e0f74b32f4f40ce4d74c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006836;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_01ce8cbd34e42b9a86a59126.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_54390cbc81758c13bc0750ee.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_3830c6cbf7cdbbece28dc3ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_b453ba96ca3c106c81344679.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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:ff9;src:url('chunks/assets/font_8b8a7eb1b967ce869d9c00f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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:ffa;src:url('chunks/assets/font_8d5c1e6fb5bc1953ceab60fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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:18.000000px;}
.ls13{letter-spacing:-0.532800px;}
.lsd{letter-spacing:-0.309000px;}
.ls4{letter-spacing:-0.201000px;}
.ls10{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.000001px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.187200px;}
.ls6{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.360000px;}
.lse{letter-spacing:0.720000px;}
.ls7{letter-spacing:54.864000px;}
.lsf{letter-spacing:64.002720px;}
.lsc{letter-spacing:82.200000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.wse{word-spacing:-59.760000px;}
.ws1{word-spacing:-26.251800px;}
.ws2{word-spacing:-24.084000px;}
.ws3{word-spacing:-18.532800px;}
.wsa{word-spacing:-18.223800px;}
.ws9{word-spacing:-16.056000px;}
.wsd{word-spacing:-15.912000px;}
.ws7{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.696000px;}
.wsb{word-spacing:-14.572800px;}
.ws0{word-spacing:-11.880000px;}
.ws4{word-spacing:-10.612800px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-12.012000px;}
._8{margin-left:-3.228000px;}
._1{margin-left:-1.008000px;}
._0{width:1.404000px;}
._6{width:73.164000px;}
._3{width:75.432004px;}
._7{width:115.284000px;}
._5{width:129.036000px;}
._4{width:200.340000px;}
._9{width:848.280000px;}
.fc7{color:rgb(33,94,153);}
.fc6{color:rgb(70,120,134);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(15,71,97);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs3{font-size:300.240000px;}
.y0{bottom:0.000000px;}
.y17{bottom:7.200000px;}
.y25{bottom:7.245000px;}
.y22{bottom:10.440000px;}
.y1a{bottom:15.660000px;}
.y19{bottom:18.000000px;}
.y20{bottom:29.160000px;}
.y26{bottom:29.205000px;}
.y1f{bottom:31.500000px;}
.y24{bottom:31.545000px;}
.y1d{bottom:32.400000px;}
.y1c{bottom:34.740000px;}
.y2{bottom:56.916000px;}
.y1{bottom:72.756000px;}
.y72{bottom:120.996000px;}
.y91{bottom:139.716000px;}
.y71{bottom:145.116000px;}
.y90{bottom:164.010000px;}
.y70{bottom:170.490000px;}
.y4a{bottom:179.130000px;}
.y6f{bottom:195.870000px;}
.y49{bottom:203.430000px;}
.y8f{bottom:209.190000px;}
.y6e{bottom:219.990000px;}
.y48{bottom:227.730000px;}
.y8e{bottom:233.490000px;}
.y6d{bottom:244.290000px;}
.y47{bottom:252.030000px;}
.y8d{bottom:257.790000px;}
.y6c{bottom:268.590000px;}
.y46{bottom:276.330000px;}
.y23{bottom:281.910000px;}
.y6b{bottom:292.755000px;}
.y45{bottom:300.495000px;}
.y8c{bottom:303.195000px;}
.y6a{bottom:318.135000px;}
.y44{bottom:324.795000px;}
.y8b{bottom:327.315000px;}
.y21{bottom:331.275000px;}
.y69{bottom:342.435000px;}
.y43{bottom:349.095000px;}
.y68{bottom:367.635000px;}
.y8a{bottom:372.675000px;}
.y42{bottom:373.395000px;}
.y1e{bottom:383.835000px;}
.y67{bottom:391.935000px;}
.y89{bottom:396.975000px;}
.y41{bottom:397.695000px;}
.y66{bottom:416.235000px;}
.y88{bottom:421.275000px;}
.y40{bottom:421.995000px;}
.y1b{bottom:433.155000px;}
.y65{bottom:440.535000px;}
.y87{bottom:445.395000px;}
.y3f{bottom:447.195000px;}
.y64{bottom:464.655000px;}
.ya5{bottom:468.975000px;}
.y86{bottom:469.695000px;}
.y18{bottom:485.715000px;}
.y63{bottom:490.035000px;}
.y85{bottom:495.075000px;}
.y3e{bottom:495.435000px;}
.y62{bottom:514.155000px;}
.y3d{bottom:520.635000px;}
.y16{bottom:521.535000px;}
.y84{bottom:539.355000px;}
.y61{bottom:539.535000px;}
.y3c{bottom:545.835000px;}
.ya4{bottom:551.805000px;}
.y15{bottom:554.865000px;}
.y60{bottom:563.865000px;}
.y3b{bottom:571.245000px;}
.y14{bottom:583.125000px;}
.y5f{bottom:588.165000px;}
.y83{bottom:588.525000px;}
.ya3{bottom:592.305000px;}
.y3a{bottom:596.445000px;}
.y5e{bottom:612.465000px;}
.y82{bottom:612.825000px;}
.y39{bottom:622.905000px;}
.y13{bottom:628.125000px;}
.y5d{bottom:636.585000px;}
.y81{bottom:637.125000px;}
.ya2{bottom:640.545000px;}
.y12{bottom:649.905000px;}
.y38{bottom:650.085000px;}
.y80{bottom:661.425000px;}
.y5c{bottom:661.965000px;}
.ya1{bottom:664.845000px;}
.y11{bottom:673.845000px;}
.y37{bottom:674.385000px;}
.y5b{bottom:686.085000px;}
.y10{bottom:694.905000px;}
.y36{bottom:698.685000px;}
.y7f{bottom:706.605000px;}
.ya0{bottom:710.025000px;}
.y5a{bottom:711.465000px;}
.yf{bottom:716.145000px;}
.y35{bottom:722.985000px;}
.y7e{bottom:730.905000px;}
.y9f{bottom:734.325000px;}
.y59{bottom:735.765000px;}
.ye{bottom:737.205000px;}
.y34{bottom:747.285000px;}
.y7d{bottom:755.205000px;}
.y9e{bottom:758.625000px;}
.yd{bottom:758.985000px;}
.y58{bottom:760.065000px;}
.y33{bottom:772.665000px;}
.y9d{bottom:782.745000px;}
.y57{bottom:784.185000px;}
.y7c{bottom:800.565000px;}
.yc{bottom:803.985000px;}
.y56{bottom:809.430000px;}
.y32{bottom:820.770000px;}
.y7b{bottom:824.730000px;}
.yb{bottom:825.090000px;}
.y9c{bottom:828.150000px;}
.y55{bottom:834.810000px;}
.y31{bottom:845.070000px;}
.ya{bottom:846.150000px;}
.y7a{bottom:849.030000px;}
.y9b{bottom:852.450000px;}
.y54{bottom:860.190000px;}
.y9{bottom:867.930000px;}
.y30{bottom:869.370000px;}
.y9a{bottom:876.750000px;}
.y53{bottom:884.310000px;}
.y79{bottom:894.390000px;}
.y2f{bottom:894.750000px;}
.y99{bottom:900.870000px;}
.y52{bottom:908.610000px;}
.y8{bottom:912.930000px;}
.y78{bottom:918.510000px;}
.y98{bottom:925.170000px;}
.y51{bottom:932.910000px;}
.y7{bottom:934.710000px;}
.y2e{bottom:942.990000px;}
.y97{bottom:950.730000px;}
.y50{bottom:957.210000px;}
.y6{bottom:959.190000px;}
.y77{bottom:963.870000px;}
.y2d{bottom:967.290000px;}
.y4f{bottom:981.510000px;}
.y5{bottom:985.110000px;}
.y76{bottom:988.170000px;}
.y2c{bottom:991.410000px;}
.y96{bottom:994.830000px;}
.y4e{bottom:1005.630000px;}
.y2b{bottom:1015.710000px;}
.y4{bottom:1027.590000px;}
.y4d{bottom:1029.930000px;}
.y75{bottom:1032.990000px;}
.y2a{bottom:1040.010000px;}
.y95{bottom:1044.150000px;}
.y4c{bottom:1054.230000px;}
.y74{bottom:1055.310000px;}
.y29{bottom:1064.310000px;}
.y94{bottom:1068.300000px;}
.y73{bottom:1077.840000px;}
.y4b{bottom:1085.760000px;}
.y28{bottom:1088.640000px;}
.y93{bottom:1092.600000px;}
.y3{bottom:1105.560000px;}
.y27{bottom:1114.020000px;}
.y92{bottom:1116.900000px;}
.h8{height:24.300000px;}
.h9{height:35.100000px;}
.h1{height:45.720703px;}
.hb{height:48.600000px;}
.hc{height:48.636000px;}
.ha{height:51.840000px;}
.h2{height:56.084062px;}
.h7{height:60.960938px;}
.h6{height:71.324297px;}
.h5{height:91.441406px;}
.h3{height:101.804766px;}
.h4{height:254.207109px;}
.h0{height:1188.000000px;}
.w2{width:255.495000px;}
.w3{width:256.890000px;}
.w4{width:301.890000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:32.580000px;}
.x6{left:34.740000px;}
.x5{left:54.720000px;}
.x4{left:80.999986px;}
.x3{left:87.839986px;}
.xa{left:94.535986px;}
.xf{left:108.035986px;}
.xe{left:114.875986px;}
.xb{left:121.535986px;}
.x11{left:135.035986px;}
.xd{left:148.535986px;}
.xc{left:155.369986px;}
.x12{left:162.029986px;}
.x2{left:192.809986px;}
.x1{left:209.369986px;}
.x7{left:310.935000px;}
.x13{left:475.994986px;}
.x8{left:568.545000px;}
.x10{left:830.489986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls13{letter-spacing:-0.473600pt;}
.lsd{letter-spacing:-0.274667pt;}
.ls4{letter-spacing:-0.178667pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.000001pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.166400pt;}
.ls6{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.640000pt;}
.ls7{letter-spacing:48.768000pt;}
.lsf{letter-spacing:56.891307pt;}
.lsc{letter-spacing:73.066667pt;}
.ws5{word-spacing:-64.000000pt;}
.wse{word-spacing:-53.120000pt;}
.ws1{word-spacing:-23.334933pt;}
.ws2{word-spacing:-21.408000pt;}
.ws3{word-spacing:-16.473600pt;}
.wsa{word-spacing:-16.198933pt;}
.ws9{word-spacing:-14.272000pt;}
.wsd{word-spacing:-14.144000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws8{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.952000pt;}
.wsb{word-spacing:-12.953600pt;}
.ws0{word-spacing:-10.560000pt;}
.ws4{word-spacing:-9.433600pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-10.677333pt;}
._8{margin-left:-2.869333pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.248000pt;}
._6{width:65.034667pt;}
._3{width:67.050670pt;}
._7{width:102.474667pt;}
._5{width:114.698667pt;}
._4{width:178.080000pt;}
._9{width:754.026667pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs3{font-size:266.880000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:6.400000pt;}
.y25{bottom:6.440000pt;}
.y22{bottom:9.280000pt;}
.y1a{bottom:13.920000pt;}
.y19{bottom:16.000000pt;}
.y20{bottom:25.920000pt;}
.y26{bottom:25.960000pt;}
.y1f{bottom:28.000000pt;}
.y24{bottom:28.040000pt;}
.y1d{bottom:28.800000pt;}
.y1c{bottom:30.880000pt;}
.y2{bottom:50.592000pt;}
.y1{bottom:64.672000pt;}
.y72{bottom:107.552000pt;}
.y91{bottom:124.192000pt;}
.y71{bottom:128.992000pt;}
.y90{bottom:145.786667pt;}
.y70{bottom:151.546667pt;}
.y4a{bottom:159.226667pt;}
.y6f{bottom:174.106667pt;}
.y49{bottom:180.826667pt;}
.y8f{bottom:185.946667pt;}
.y6e{bottom:195.546667pt;}
.y48{bottom:202.426667pt;}
.y8e{bottom:207.546667pt;}
.y6d{bottom:217.146667pt;}
.y47{bottom:224.026667pt;}
.y8d{bottom:229.146667pt;}
.y6c{bottom:238.746667pt;}
.y46{bottom:245.626667pt;}
.y23{bottom:250.586667pt;}
.y6b{bottom:260.226667pt;}
.y45{bottom:267.106667pt;}
.y8c{bottom:269.506667pt;}
.y6a{bottom:282.786667pt;}
.y44{bottom:288.706667pt;}
.y8b{bottom:290.946667pt;}
.y21{bottom:294.466667pt;}
.y69{bottom:304.386667pt;}
.y43{bottom:310.306667pt;}
.y68{bottom:326.786667pt;}
.y8a{bottom:331.266667pt;}
.y42{bottom:331.906667pt;}
.y1e{bottom:341.186667pt;}
.y67{bottom:348.386667pt;}
.y89{bottom:352.866667pt;}
.y41{bottom:353.506667pt;}
.y66{bottom:369.986667pt;}
.y88{bottom:374.466667pt;}
.y40{bottom:375.106667pt;}
.y1b{bottom:385.026667pt;}
.y65{bottom:391.586667pt;}
.y87{bottom:395.906667pt;}
.y3f{bottom:397.506667pt;}
.y64{bottom:413.026667pt;}
.ya5{bottom:416.866667pt;}
.y86{bottom:417.506667pt;}
.y18{bottom:431.746667pt;}
.y63{bottom:435.586667pt;}
.y85{bottom:440.066667pt;}
.y3e{bottom:440.386667pt;}
.y62{bottom:457.026667pt;}
.y3d{bottom:462.786667pt;}
.y16{bottom:463.586667pt;}
.y84{bottom:479.426667pt;}
.y61{bottom:479.586667pt;}
.y3c{bottom:485.186667pt;}
.ya4{bottom:490.493333pt;}
.y15{bottom:493.213333pt;}
.y60{bottom:501.213333pt;}
.y3b{bottom:507.773333pt;}
.y14{bottom:518.333333pt;}
.y5f{bottom:522.813333pt;}
.y83{bottom:523.133333pt;}
.ya3{bottom:526.493333pt;}
.y3a{bottom:530.173333pt;}
.y5e{bottom:544.413333pt;}
.y82{bottom:544.733333pt;}
.y39{bottom:553.693333pt;}
.y13{bottom:558.333333pt;}
.y5d{bottom:565.853333pt;}
.y81{bottom:566.333333pt;}
.ya2{bottom:569.373333pt;}
.y12{bottom:577.693333pt;}
.y38{bottom:577.853333pt;}
.y80{bottom:587.933333pt;}
.y5c{bottom:588.413333pt;}
.ya1{bottom:590.973333pt;}
.y11{bottom:598.973333pt;}
.y37{bottom:599.453333pt;}
.y5b{bottom:609.853333pt;}
.y10{bottom:617.693333pt;}
.y36{bottom:621.053333pt;}
.y7f{bottom:628.093333pt;}
.ya0{bottom:631.133333pt;}
.y5a{bottom:632.413333pt;}
.yf{bottom:636.573333pt;}
.y35{bottom:642.653333pt;}
.y7e{bottom:649.693333pt;}
.y9f{bottom:652.733333pt;}
.y59{bottom:654.013333pt;}
.ye{bottom:655.293333pt;}
.y34{bottom:664.253333pt;}
.y7d{bottom:671.293333pt;}
.y9e{bottom:674.333333pt;}
.yd{bottom:674.653333pt;}
.y58{bottom:675.613333pt;}
.y33{bottom:686.813333pt;}
.y9d{bottom:695.773333pt;}
.y57{bottom:697.053333pt;}
.y7c{bottom:711.613333pt;}
.yc{bottom:714.653333pt;}
.y56{bottom:719.493333pt;}
.y32{bottom:729.573333pt;}
.y7b{bottom:733.093333pt;}
.yb{bottom:733.413333pt;}
.y9c{bottom:736.133333pt;}
.y55{bottom:742.053333pt;}
.y31{bottom:751.173333pt;}
.ya{bottom:752.133333pt;}
.y7a{bottom:754.693333pt;}
.y9b{bottom:757.733333pt;}
.y54{bottom:764.613333pt;}
.y9{bottom:771.493333pt;}
.y30{bottom:772.773333pt;}
.y9a{bottom:779.333333pt;}
.y53{bottom:786.053333pt;}
.y79{bottom:795.013333pt;}
.y2f{bottom:795.333333pt;}
.y99{bottom:800.773333pt;}
.y52{bottom:807.653333pt;}
.y8{bottom:811.493333pt;}
.y78{bottom:816.453333pt;}
.y98{bottom:822.373333pt;}
.y51{bottom:829.253333pt;}
.y7{bottom:830.853333pt;}
.y2e{bottom:838.213333pt;}
.y97{bottom:845.093333pt;}
.y50{bottom:850.853333pt;}
.y6{bottom:852.613333pt;}
.y77{bottom:856.773333pt;}
.y2d{bottom:859.813333pt;}
.y4f{bottom:872.453333pt;}
.y5{bottom:875.653333pt;}
.y76{bottom:878.373333pt;}
.y2c{bottom:881.253333pt;}
.y96{bottom:884.293333pt;}
.y4e{bottom:893.893333pt;}
.y2b{bottom:902.853333pt;}
.y4{bottom:913.413333pt;}
.y4d{bottom:915.493333pt;}
.y75{bottom:918.213333pt;}
.y2a{bottom:924.453333pt;}
.y95{bottom:928.133333pt;}
.y4c{bottom:937.093333pt;}
.y74{bottom:938.053333pt;}
.y29{bottom:946.053333pt;}
.y94{bottom:949.600000pt;}
.y73{bottom:958.080000pt;}
.y4b{bottom:965.120000pt;}
.y28{bottom:967.680000pt;}
.y93{bottom:971.200000pt;}
.y3{bottom:982.720000pt;}
.y27{bottom:990.240000pt;}
.y92{bottom:992.800000pt;}
.h8{height:21.600000pt;}
.h9{height:31.200000pt;}
.h1{height:40.640625pt;}
.hb{height:43.200000pt;}
.hc{height:43.232000pt;}
.ha{height:46.080000pt;}
.h2{height:49.852500pt;}
.h7{height:54.187500pt;}
.h6{height:63.399375pt;}
.h5{height:81.281250pt;}
.h3{height:90.493125pt;}
.h4{height:225.961875pt;}
.h0{height:1056.000000pt;}
.w2{width:227.106667pt;}
.w3{width:228.346667pt;}
.w4{width:268.346667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:28.960000pt;}
.x6{left:30.880000pt;}
.x5{left:48.640000pt;}
.x4{left:71.999988pt;}
.x3{left:78.079988pt;}
.xa{left:84.031988pt;}
.xf{left:96.031988pt;}
.xe{left:102.111988pt;}
.xb{left:108.031988pt;}
.x11{left:120.031988pt;}
.xd{left:132.031988pt;}
.xc{left:138.106655pt;}
.x12{left:144.026655pt;}
.x2{left:171.386655pt;}
.x1{left:186.106655pt;}
.x7{left:276.386667pt;}
.x13{left:423.106655pt;}
.x8{left:505.373333pt;}
.x10{left:738.213321pt;}
}




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