
    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_4d422805550933018e38d10b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.754395;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_56b7ccdc943fd82f4ea64fc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_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_7968cc320597db90a8455df0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_60bf9e4f95a8c06ac18a83cd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_355a66a73b9db60aa30d33b4.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_5ec101f88f2d7d28e09693b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e013660c0d2792401126a21d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e92ee635d5041691ed34aa10.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_94630a71ec4254ea081500a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.360000px;}
.ls14{letter-spacing:-0.684000px;}
.ls4{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.341400px;}
.lsb{letter-spacing:-0.331800px;}
.ls2{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.037440px;}
.lse{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.037440px;}
.lsd{letter-spacing:0.252720px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378600px;}
.ls9{letter-spacing:0.504000px;}
.ls8{letter-spacing:4.140000px;}
.ls10{letter-spacing:5.580000px;}
.ls12{letter-spacing:6.300000px;}
.ls13{letter-spacing:7.020000px;}
.lsf{letter-spacing:19.980000px;}
.ls7{letter-spacing:35.100000px;}
.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:-24.300000px;}
.ws0{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.wsb{word-spacing:-21.041280px;}
.ws8{word-spacing:-21.022560px;}
.ws9{word-spacing:-20.728200px;}
.wsa{word-spacing:-20.718600px;}
.ws5{word-spacing:-20.700000px;}
.ws3{word-spacing:-20.681400px;}
.wsc{word-spacing:-20.376000px;}
.ws6{word-spacing:0.000000px;}
._24{margin-left:-6.439920px;}
._15{margin-left:-4.717440px;}
._c{margin-left:-2.442960px;}
._0{margin-left:-1.263600px;}
._1{width:1.241040px;}
._13{width:2.397360px;}
._16{width:4.004880px;}
._9{width:5.559840px;}
._a{width:6.570720px;}
._1a{width:7.793280px;}
._25{width:8.951520px;}
._1b{width:10.171920px;}
._19{width:11.877840px;}
._f{width:12.888720px;}
._10{width:14.152320px;}
._17{width:15.163200px;}
._1f{width:16.426800px;}
._20{width:17.428800px;}
._18{width:18.701280px;}
._b{width:19.796400px;}
._23{width:22.910880px;}
._28{width:24.682320px;}
._2{width:26.619840px;}
._3{width:28.136160px;}
._5{width:29.568240px;}
._6{width:30.663360px;}
._29{width:32.689200px;}
._21{width:34.875360px;}
._14{width:35.886240px;}
._1d{width:37.435200px;}
._7{width:38.862000px;}
._8{width:40.070880px;}
._26{width:41.414880px;}
._27{width:42.427440px;}
._1e{width:44.478720px;}
._4{width:48.438000px;}
._2a{width:52.305360px;}
._12{width:53.492400px;}
._11{width:54.503280px;}
._d{width:65.033280px;}
._e{width:66.324000px;}
._22{width:99.318960px;}
._1c{width:267.377760px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y4{bottom:-14.580000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y8{bottom:5.400000px;}
.y7{bottom:6.300000px;}
.y9{bottom:14.400000px;}
.y45{bottom:16.560000px;}
.y43{bottom:16.740000px;}
.y6{bottom:34.200000px;}
.y44{bottom:52.740000px;}
.y4f{bottom:52.914000px;}
.y4d{bottom:52.920000px;}
.y42{bottom:52.950000px;}
.y55{bottom:52.965000px;}
.y5d{bottom:89.100000px;}
.y54{bottom:89.145000px;}
.y26{bottom:99.396000px;}
.y50{bottom:111.276000px;}
.y5b{bottom:113.616000px;}
.y71{bottom:117.396000px;}
.y4e{bottom:131.616000px;}
.y25{bottom:135.576000px;}
.y5a{bottom:149.796000px;}
.y40{bottom:153.570000px;}
.y24{bottom:171.750000px;}
.y59{bottom:185.970000px;}
.y3f{bottom:189.750000px;}
.y4c{bottom:204.870000px;}
.y23{bottom:207.930000px;}
.y58{bottom:222.330000px;}
.y3e{bottom:225.930000px;}
.y22{bottom:244.290000px;}
.y57{bottom:258.510000px;}
.y3d{bottom:262.290000px;}
.y4b{bottom:278.130000px;}
.y56{bottom:278.850000px;}
.y21{bottom:280.470000px;}
.y70{bottom:294.690000px;}
.y3c{bottom:298.470000px;}
.y4a{bottom:315.030000px;}
.y53{bottom:315.750000px;}
.y20{bottom:316.650000px;}
.y6f{bottom:330.870000px;}
.y3b{bottom:334.650000px;}
.y1f{bottom:352.875000px;}
.y6e{bottom:367.095000px;}
.y49{bottom:368.715000px;}
.y3a{bottom:370.875000px;}
.y1e{bottom:389.235000px;}
.y6d{bottom:403.455000px;}
.y48{bottom:404.895000px;}
.y39{bottom:407.235000px;}
.y52{bottom:425.235000px;}
.y1d{bottom:425.415000px;}
.y6c{bottom:439.635000px;}
.y47{bottom:441.075000px;}
.y38{bottom:443.415000px;}
.y1c{bottom:461.595000px;}
.y51{bottom:462.315000px;}
.y6b{bottom:475.815000px;}
.y46{bottom:477.255000px;}
.y37{bottom:479.595000px;}
.y1b{bottom:497.775000px;}
.y6a{bottom:511.995000px;}
.y36{bottom:515.775000px;}
.y1a{bottom:533.955000px;}
.y69{bottom:548.355000px;}
.y35{bottom:551.955000px;}
.y19{bottom:570.315000px;}
.y41{bottom:570.855000px;}
.y68{bottom:584.535000px;}
.y34{bottom:588.315000px;}
.y18{bottom:606.525000px;}
.y67{bottom:620.745000px;}
.y33{bottom:624.525000px;}
.y17{bottom:642.705000px;}
.y66{bottom:656.925000px;}
.y32{bottom:660.705000px;}
.y16{bottom:678.885000px;}
.y65{bottom:693.285000px;}
.y31{bottom:696.885000px;}
.y15{bottom:715.245000px;}
.y64{bottom:729.465000px;}
.y30{bottom:733.245000px;}
.y14{bottom:751.425000px;}
.y63{bottom:765.645000px;}
.y2f{bottom:769.425000px;}
.y13{bottom:787.605000px;}
.y62{bottom:801.825000px;}
.y2e{bottom:805.605000px;}
.y12{bottom:823.785000px;}
.y61{bottom:838.005000px;}
.y2d{bottom:841.785000px;}
.y11{bottom:860.145000px;}
.y60{bottom:874.410000px;}
.y2c{bottom:878.190000px;}
.y5f{bottom:894.750000px;}
.y10{bottom:896.370000px;}
.y2b{bottom:914.370000px;}
.y5e{bottom:931.650000px;}
.yf{bottom:932.550000px;}
.y2a{bottom:950.550000px;}
.ye{bottom:968.730000px;}
.y29{bottom:986.730000px;}
.yd{bottom:1004.910000px;}
.y5c{bottom:1005.630000px;}
.y28{bottom:1022.910000px;}
.yc{bottom:1041.270000px;}
.y27{bottom:1059.270000px;}
.yb{bottom:1095.450000px;}
.ya{bottom:1131.630000px;}
.y5{bottom:1155.960000px;}
.y3{bottom:1177.020000px;}
.y1{bottom:1194.300000px;}
.h4{height:6.480000px;}
.h2{height:25.740000px;}
.h5{height:27.720000px;}
.h12{height:36.180000px;}
.h11{height:36.216000px;}
.h16{height:36.360000px;}
.h8{height:47.344922px;}
.hd{height:58.819922px;}
.hf{height:59.436914px;}
.h3{height:62.028281px;}
.hc{height:64.208320px;}
.h10{height:72.360000px;}
.h13{height:72.540000px;}
.he{height:72.576000px;}
.hb{height:82.635820px;}
.ha{height:82.676953px;}
.h6{height:83.787539px;}
.h9{height:84.898125px;}
.h7{height:96.508125px;}
.h15{height:108.720000px;}
.h14{height:108.756000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:38.376000px;}
.w11{width:41.076000px;}
.we{width:52.056000px;}
.w6{width:63.756000px;}
.wb{width:85.536000px;}
.wc{width:101.880000px;}
.w8{width:102.960000px;}
.w17{width:104.220000px;}
.w9{width:107.856000px;}
.wa{width:120.960000px;}
.w13{width:140.400000px;}
.w15{width:156.090000px;}
.wd{width:159.510000px;}
.w16{width:166.890000px;}
.w14{width:180.030000px;}
.w18{width:187.950000px;}
.w12{width:196.230000px;}
.w19{width:196.950000px;}
.wf{width:254.370000px;}
.w10{width:392.115000px;}
.w3{width:404.205000px;}
.w2{width:425.235000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.560000px;}
.x5{left:8.640000px;}
.x7{left:17.100000px;}
.x9{left:19.800000px;}
.x1{left:31.860000px;}
.x6{left:84.959987px;}
.x10{left:91.115987px;}
.x4{left:98.850000px;}
.xc{left:104.975987px;}
.x2{left:110.376000px;}
.x18{left:124.956000px;}
.xa{left:127.475987px;}
.x1e{left:138.636000px;}
.xd{left:198.029987px;}
.x19{left:228.630000px;}
.x11{left:230.789987px;}
.x12{left:264.089987px;}
.xf{left:268.769987px;}
.x14{left:270.389987px;}
.x23{left:295.455000px;}
.x13{left:310.214987px;}
.x21{left:324.975000px;}
.xe{left:333.434987px;}
.x1a{left:337.215000px;}
.x15{left:373.574987px;}
.x16{left:378.434987px;}
.x17{left:392.654987px;}
.x1f{left:393.915000px;}
.x24{left:400.395000px;}
.xb{left:446.474987px;}
.x3{left:457.095000px;}
.x1b{left:458.895000px;}
.x22{left:466.095000px;}
.x1c{left:545.145000px;}
.x25{left:589.065000px;}
.x1d{left:647.745000px;}
.x8{left:797.550000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.320000pt;}
.ls14{letter-spacing:-0.608000pt;}
.ls4{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.303467pt;}
.lsb{letter-spacing:-0.294933pt;}
.ls2{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.033280pt;}
.lse{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.033280pt;}
.lsd{letter-spacing:0.224640pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336533pt;}
.ls9{letter-spacing:0.448000pt;}
.ls8{letter-spacing:3.680000pt;}
.ls10{letter-spacing:4.960000pt;}
.ls12{letter-spacing:5.600000pt;}
.ls13{letter-spacing:6.240000pt;}
.lsf{letter-spacing:17.760000pt;}
.ls7{letter-spacing:31.200000pt;}
.ws1{word-spacing:-21.600000pt;}
.ws0{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.703360pt;}
.ws8{word-spacing:-18.686720pt;}
.ws9{word-spacing:-18.425067pt;}
.wsa{word-spacing:-18.416533pt;}
.ws5{word-spacing:-18.400000pt;}
.ws3{word-spacing:-18.383467pt;}
.wsc{word-spacing:-18.112000pt;}
.ws6{word-spacing:0.000000pt;}
._24{margin-left:-5.724373pt;}
._15{margin-left:-4.193280pt;}
._c{margin-left:-2.171520pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.103147pt;}
._13{width:2.130987pt;}
._16{width:3.559893pt;}
._9{width:4.942080pt;}
._a{width:5.840640pt;}
._1a{width:6.927360pt;}
._25{width:7.956907pt;}
._1b{width:9.041707pt;}
._19{width:10.558080pt;}
._f{width:11.456640pt;}
._10{width:12.579840pt;}
._17{width:13.478400pt;}
._1f{width:14.601600pt;}
._20{width:15.492267pt;}
._18{width:16.623360pt;}
._b{width:17.596800pt;}
._23{width:20.365227pt;}
._28{width:21.939840pt;}
._2{width:23.662080pt;}
._3{width:25.009920pt;}
._5{width:26.282880pt;}
._6{width:27.256320pt;}
._29{width:29.057067pt;}
._21{width:31.000320pt;}
._14{width:31.898880pt;}
._1d{width:33.275733pt;}
._7{width:34.544000pt;}
._8{width:35.618560pt;}
._26{width:36.813227pt;}
._27{width:37.713280pt;}
._1e{width:39.536640pt;}
._4{width:43.056000pt;}
._2a{width:46.493653pt;}
._12{width:47.548800pt;}
._11{width:48.447360pt;}
._d{width:57.807360pt;}
._e{width:58.954667pt;}
._22{width:88.283520pt;}
._1c{width:237.669120pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y4{bottom:-12.960000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y8{bottom:4.800000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:12.800000pt;}
.y45{bottom:14.720000pt;}
.y43{bottom:14.880000pt;}
.y6{bottom:30.400000pt;}
.y44{bottom:46.880000pt;}
.y4f{bottom:47.034667pt;}
.y4d{bottom:47.040000pt;}
.y42{bottom:47.066667pt;}
.y55{bottom:47.080000pt;}
.y5d{bottom:79.200000pt;}
.y54{bottom:79.240000pt;}
.y26{bottom:88.352000pt;}
.y50{bottom:98.912000pt;}
.y5b{bottom:100.992000pt;}
.y71{bottom:104.352000pt;}
.y4e{bottom:116.992000pt;}
.y25{bottom:120.512000pt;}
.y5a{bottom:133.152000pt;}
.y40{bottom:136.506667pt;}
.y24{bottom:152.666667pt;}
.y59{bottom:165.306667pt;}
.y3f{bottom:168.666667pt;}
.y4c{bottom:182.106667pt;}
.y23{bottom:184.826667pt;}
.y58{bottom:197.626667pt;}
.y3e{bottom:200.826667pt;}
.y22{bottom:217.146667pt;}
.y57{bottom:229.786667pt;}
.y3d{bottom:233.146667pt;}
.y4b{bottom:247.226667pt;}
.y56{bottom:247.866667pt;}
.y21{bottom:249.306667pt;}
.y70{bottom:261.946667pt;}
.y3c{bottom:265.306667pt;}
.y4a{bottom:280.026667pt;}
.y53{bottom:280.666667pt;}
.y20{bottom:281.466667pt;}
.y6f{bottom:294.106667pt;}
.y3b{bottom:297.466667pt;}
.y1f{bottom:313.666667pt;}
.y6e{bottom:326.306667pt;}
.y49{bottom:327.746667pt;}
.y3a{bottom:329.666667pt;}
.y1e{bottom:345.986667pt;}
.y6d{bottom:358.626667pt;}
.y48{bottom:359.906667pt;}
.y39{bottom:361.986667pt;}
.y52{bottom:377.986667pt;}
.y1d{bottom:378.146667pt;}
.y6c{bottom:390.786667pt;}
.y47{bottom:392.066667pt;}
.y38{bottom:394.146667pt;}
.y1c{bottom:410.306667pt;}
.y51{bottom:410.946667pt;}
.y6b{bottom:422.946667pt;}
.y46{bottom:424.226667pt;}
.y37{bottom:426.306667pt;}
.y1b{bottom:442.466667pt;}
.y6a{bottom:455.106667pt;}
.y36{bottom:458.466667pt;}
.y1a{bottom:474.626667pt;}
.y69{bottom:487.426667pt;}
.y35{bottom:490.626667pt;}
.y19{bottom:506.946667pt;}
.y41{bottom:507.426667pt;}
.y68{bottom:519.586667pt;}
.y34{bottom:522.946667pt;}
.y18{bottom:539.133333pt;}
.y67{bottom:551.773333pt;}
.y33{bottom:555.133333pt;}
.y17{bottom:571.293333pt;}
.y66{bottom:583.933333pt;}
.y32{bottom:587.293333pt;}
.y16{bottom:603.453333pt;}
.y65{bottom:616.253333pt;}
.y31{bottom:619.453333pt;}
.y15{bottom:635.773333pt;}
.y64{bottom:648.413333pt;}
.y30{bottom:651.773333pt;}
.y14{bottom:667.933333pt;}
.y63{bottom:680.573333pt;}
.y2f{bottom:683.933333pt;}
.y13{bottom:700.093333pt;}
.y62{bottom:712.733333pt;}
.y2e{bottom:716.093333pt;}
.y12{bottom:732.253333pt;}
.y61{bottom:744.893333pt;}
.y2d{bottom:748.253333pt;}
.y11{bottom:764.573333pt;}
.y60{bottom:777.253333pt;}
.y2c{bottom:780.613333pt;}
.y5f{bottom:795.333333pt;}
.y10{bottom:796.773333pt;}
.y2b{bottom:812.773333pt;}
.y5e{bottom:828.133333pt;}
.yf{bottom:828.933333pt;}
.y2a{bottom:844.933333pt;}
.ye{bottom:861.093333pt;}
.y29{bottom:877.093333pt;}
.yd{bottom:893.253333pt;}
.y5c{bottom:893.893333pt;}
.y28{bottom:909.253333pt;}
.yc{bottom:925.573333pt;}
.y27{bottom:941.573333pt;}
.yb{bottom:973.733333pt;}
.ya{bottom:1005.893333pt;}
.y5{bottom:1027.520000pt;}
.y3{bottom:1046.240000pt;}
.y1{bottom:1061.600000pt;}
.h4{height:5.760000pt;}
.h2{height:22.880000pt;}
.h5{height:24.640000pt;}
.h12{height:32.160000pt;}
.h11{height:32.192000pt;}
.h16{height:32.320000pt;}
.h8{height:42.084375pt;}
.hd{height:52.284375pt;}
.hf{height:52.832812pt;}
.h3{height:55.136250pt;}
.hc{height:57.074062pt;}
.h10{height:64.320000pt;}
.h13{height:64.480000pt;}
.he{height:64.512000pt;}
.hb{height:73.454062pt;}
.ha{height:73.490625pt;}
.h6{height:74.477812pt;}
.h9{height:75.465000pt;}
.h7{height:85.785000pt;}
.h15{height:96.640000pt;}
.h14{height:96.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:34.112000pt;}
.w11{width:36.512000pt;}
.we{width:46.272000pt;}
.w6{width:56.672000pt;}
.wb{width:76.032000pt;}
.wc{width:90.560000pt;}
.w8{width:91.520000pt;}
.w17{width:92.640000pt;}
.w9{width:95.872000pt;}
.wa{width:107.520000pt;}
.w13{width:124.800000pt;}
.w15{width:138.746667pt;}
.wd{width:141.786667pt;}
.w16{width:148.346667pt;}
.w14{width:160.026667pt;}
.w18{width:167.066667pt;}
.w12{width:174.426667pt;}
.w19{width:175.066667pt;}
.wf{width:226.106667pt;}
.w10{width:348.546667pt;}
.w3{width:359.293333pt;}
.w2{width:377.986667pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.720000pt;}
.x5{left:7.680000pt;}
.x7{left:15.200000pt;}
.x9{left:17.600000pt;}
.x1{left:28.320000pt;}
.x6{left:75.519988pt;}
.x10{left:80.991988pt;}
.x4{left:87.866667pt;}
.xc{left:93.311988pt;}
.x2{left:98.112000pt;}
.x18{left:111.072000pt;}
.xa{left:113.311988pt;}
.x1e{left:123.232000pt;}
.xd{left:176.026655pt;}
.x19{left:203.226667pt;}
.x11{left:205.146655pt;}
.x12{left:234.746655pt;}
.xf{left:238.906655pt;}
.x14{left:240.346655pt;}
.x23{left:262.626667pt;}
.x13{left:275.746655pt;}
.x21{left:288.866667pt;}
.xe{left:296.386655pt;}
.x1a{left:299.746667pt;}
.x15{left:332.066655pt;}
.x16{left:336.386655pt;}
.x17{left:349.026655pt;}
.x1f{left:350.146667pt;}
.x24{left:355.906667pt;}
.xb{left:396.866655pt;}
.x3{left:406.306667pt;}
.x1b{left:407.906667pt;}
.x22{left:414.306667pt;}
.x1c{left:484.573333pt;}
.x25{left:523.613333pt;}
.x1d{left:575.773333pt;}
.x8{left:708.933333pt;}
}




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