
    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_2d0b770cef507085619631dc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fafac3ea147892ceb4f5de8c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c657801522df2ff2882061ed.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6345e792b3eba57e3403d6da.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e973f0bc6362fef7b4f46388.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_1ddb630c86fc080cd7b523e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c4ee098b27893d309ffdbaac.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_80ceeafebd728bc85c233793.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.730957;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_451d8a5a57d77875b7f77d9f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e5749003288b2af9b92d6871.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.709473;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;}
.m4{transform:matrix(0.000000,-0.250256,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250256,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250256,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.249839,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249839,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249839,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.229706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229706,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-77.760000px;}
.v8{vertical-align:-21.937070px;}
.v6{vertical-align:-15.186389px;}
.v1{vertical-align:-12.240000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v5{vertical-align:15.186389px;}
.v7{vertical-align:21.937070px;}
.ls9{letter-spacing:-1.656000px;}
.lsd{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-0.627997px;}
.ls19{letter-spacing:-0.524024px;}
.ls7{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.204769px;}
.ls10{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.028080px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.192000px;}
.ls1d{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.341280px;}
.ls4{letter-spacing:0.350400px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.373144px;}
.ls18{letter-spacing:0.536501px;}
.ls14{letter-spacing:0.540000px;}
.lse{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.924000px;}
.lsc{letter-spacing:9.765240px;}
.ls12{letter-spacing:13.998726px;}
.ls15{letter-spacing:31.680000px;}
.ls2{letter-spacing:273.576000px;}
.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:-21.410400px;}
.ws1{word-spacing:-21.060000px;}
.ws17{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.568000px;}
.ws11{word-spacing:-16.965493px;}
.ws9{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.344000px;}
.ws16{word-spacing:-15.864000px;}
.ws13{word-spacing:-15.300000px;}
.ws14{word-spacing:-14.940000px;}
.ws3{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.799744px;}
.ws12{word-spacing:-11.302496px;}
.wse{word-spacing:-10.440000px;}
.ws15{word-spacing:-9.720000px;}
.wsd{word-spacing:-7.861048px;}
.ws8{word-spacing:0.000000px;}
.ws10{word-spacing:222.397303px;}
.wsf{word-spacing:231.726861px;}
._3{margin-left:-8.928000px;}
._1{margin-left:-5.760000px;}
._2{margin-left:-4.176000px;}
._6{margin-left:-2.952000px;}
._0{margin-left:-1.103520px;}
._4{width:1.943520px;}
._e{width:3.096480px;}
._c{width:4.536000px;}
._7{width:6.312000px;}
._8{width:7.332000px;}
._d{width:9.311520px;}
._9{width:11.088000px;}
._a{width:12.096000px;}
._b{width:13.332000px;}
._16{width:14.556000px;}
._11{width:16.464480px;}
._5{width:19.247040px;}
._14{width:20.679840px;}
._17{width:31.607520px;}
._18{width:33.120960px;}
._f{width:35.916000px;}
._10{width:37.104000px;}
._13{width:53.989440px;}
._12{width:55.007520px;}
._15{width:242.614826px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.783399px;}
.fs9{font-size:37.400051px;}
.fse{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fsc{font-size:50.011046px;}
.fs4{font-size:52.172538px;}
.fs5{font-size:52.211256px;}
.fs1{font-size:54.000000px;}
.fsd{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:74.887916px;}
.fsb{font-size:75.068555px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y35{bottom:4.948390px;}
.y2d{bottom:6.074367px;}
.y32{bottom:17.976835px;}
.y36{bottom:42.534342px;}
.y37{bottom:77.053401px;}
.y3b{bottom:116.668179px;}
.y1d{bottom:134.676000px;}
.y2c{bottom:139.654262px;}
.y34{bottom:146.456463px;}
.y3a{bottom:154.483184px;}
.y1c{bottom:175.170000px;}
.y39{bottom:195.864465px;}
.y1b{bottom:215.670000px;}
.y38{bottom:234.209733px;}
.y30{bottom:248.610000px;}
.y1a{bottom:256.170000px;}
.y2f{bottom:275.610000px;}
.y19{bottom:296.670000px;}
.y2e{bottom:304.770000px;}
.y2b{bottom:304.815000px;}
.y18{bottom:337.215000px;}
.y4c{bottom:356.115000px;}
.y17{bottom:377.715000px;}
.y4b{bottom:383.115000px;}
.y4a{bottom:410.115000px;}
.y16{bottom:418.215000px;}
.y49{bottom:437.115000px;}
.y15{bottom:458.715000px;}
.y48{bottom:464.115000px;}
.y47{bottom:491.115000px;}
.y14{bottom:499.215000px;}
.y46{bottom:518.115000px;}
.y13{bottom:539.715000px;}
.y45{bottom:545.115000px;}
.y44{bottom:572.115000px;}
.y12{bottom:580.215000px;}
.y43{bottom:599.115000px;}
.y2a{bottom:608.145000px;}
.y11{bottom:620.745000px;}
.y42{bottom:626.145000px;}
.y29{bottom:641.805000px;}
.y10{bottom:661.245000px;}
.y41{bottom:668.805000px;}
.y28{bottom:682.305000px;}
.yf{bottom:701.745000px;}
.y40{bottom:709.305000px;}
.y27{bottom:722.805000px;}
.ye{bottom:742.245000px;}
.y3f{bottom:744.225000px;}
.y26{bottom:763.305000px;}
.y3e{bottom:771.225000px;}
.yd{bottom:782.745000px;}
.y3d{bottom:798.225000px;}
.y25{bottom:803.805000px;}
.y33{bottom:818.340000px;}
.y3c{bottom:818.385000px;}
.yc{bottom:823.245000px;}
.y31{bottom:825.367852px;}
.y24{bottom:844.305000px;}
.yb{bottom:857.085000px;}
.ya{bottom:881.250000px;}
.y23{bottom:884.850000px;}
.y9{bottom:905.190000px;}
.y22{bottom:925.350000px;}
.y8{bottom:932.190000px;}
.y7{bottom:956.310000px;}
.y21{bottom:965.850000px;}
.y6{bottom:977.190000px;}
.y5{bottom:998.250000px;}
.y20{bottom:1006.350000px;}
.y4{bottom:1019.310000px;}
.y1f{bottom:1046.850000px;}
.y3{bottom:1059.270000px;}
.y2{bottom:1078.890000px;}
.y1e{bottom:1087.350000px;}
.y1{bottom:1098.330000px;}
.ha{height:26.881287px;}
.h6{height:36.148844px;}
.h7{height:39.286800px;}
.h10{height:49.992188px;}
.hc{height:51.887672px;}
.he{height:52.012832px;}
.hd{height:56.588278px;}
.hf{height:58.651172px;}
.h8{height:65.010937px;}
.h4{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:84.898125px;}
.h9{height:286.184336px;}
.hb{height:293.994247px;}
.h5{height:295.044217px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:364.575139px;}
.w4{width:396.511263px;}
.w2{width:466.730753px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:16.733565px;}
.x14{left:24.486584px;}
.x12{left:44.897609px;}
.x3{left:127.656000px;}
.x1{left:132.156000px;}
.x1d{left:141.156000px;}
.x1c{left:145.116000px;}
.xc{left:149.256000px;}
.x7{left:163.650000px;}
.x1e{left:174.990000px;}
.x15{left:176.209918px;}
.xb{left:191.910000px;}
.x5{left:198.930000px;}
.xd{left:208.364998px;}
.xf{left:232.424680px;}
.x8{left:233.490000px;}
.x13{left:248.339998px;}
.x11{left:253.014001px;}
.x9{left:273.315000px;}
.x6{left:276.015000px;}
.x16{left:324.510842px;}
.x17{left:329.849592px;}
.x1a{left:337.151423px;}
.x19{left:342.064319px;}
.x18{left:349.096097px;}
.xa{left:355.755000px;}
.x2{left:411.765000px;}
.x4{left:446.505000px;}
.x1b{left:644.910000px;}
.x10{left:675.150000px;}
@media print{
.v2{vertical-align:-69.120000pt;}
.v8{vertical-align:-19.499617pt;}
.v6{vertical-align:-13.499012pt;}
.v1{vertical-align:-10.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v5{vertical-align:13.499012pt;}
.v7{vertical-align:19.499617pt;}
.ls9{letter-spacing:-1.472000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-0.558220pt;}
.ls19{letter-spacing:-0.465799pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.182016pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.024960pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.170667pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.303360pt;}
.ls4{letter-spacing:0.311467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.331684pt;}
.ls18{letter-spacing:0.476890pt;}
.ls14{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.821333pt;}
.lsc{letter-spacing:8.680214pt;}
.ls12{letter-spacing:12.443312pt;}
.ls15{letter-spacing:28.160000pt;}
.ls2{letter-spacing:243.178667pt;}
.ws0{word-spacing:-19.031467pt;}
.ws1{word-spacing:-18.720000pt;}
.ws17{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.616000pt;}
.ws11{word-spacing:-15.080439pt;}
.ws9{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.528000pt;}
.ws16{word-spacing:-14.101333pt;}
.ws13{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.280000pt;}
.ws3{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.488661pt;}
.ws12{word-spacing:-10.046663pt;}
.wse{word-spacing:-9.280000pt;}
.ws15{word-spacing:-8.640000pt;}
.wsd{word-spacing:-6.987598pt;}
.ws8{word-spacing:0.000000pt;}
.ws10{word-spacing:197.686492pt;}
.wsf{word-spacing:205.979432pt;}
._3{margin-left:-7.936000pt;}
._1{margin-left:-5.120000pt;}
._2{margin-left:-3.712000pt;}
._6{margin-left:-2.624000pt;}
._0{margin-left:-0.980907pt;}
._4{width:1.727573pt;}
._e{width:2.752427pt;}
._c{width:4.032000pt;}
._7{width:5.610667pt;}
._8{width:6.517333pt;}
._d{width:8.276907pt;}
._9{width:9.856000pt;}
._a{width:10.752000pt;}
._b{width:11.850667pt;}
._16{width:12.938667pt;}
._11{width:14.635093pt;}
._5{width:17.108480pt;}
._14{width:18.382080pt;}
._17{width:28.095573pt;}
._18{width:29.440853pt;}
._f{width:31.925333pt;}
._10{width:32.981333pt;}
._13{width:47.990613pt;}
._12{width:48.895573pt;}
._15{width:215.657623pt;}
.fs6{font-size:30.918577pt;}
.fs9{font-size:33.244490pt;}
.fse{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fsc{font-size:44.454263pt;}
.fs4{font-size:46.375590pt;}
.fs5{font-size:46.410005pt;}
.fs1{font-size:48.000000pt;}
.fsd{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:66.567036pt;}
.fsb{font-size:66.727604pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:4.398569pt;}
.y2d{bottom:5.399438pt;}
.y32{bottom:15.979409pt;}
.y36{bottom:37.808304pt;}
.y37{bottom:68.491912pt;}
.y3b{bottom:103.705048pt;}
.y1d{bottom:119.712000pt;}
.y2c{bottom:124.137122pt;}
.y34{bottom:130.183523pt;}
.y3a{bottom:137.318386pt;}
.y1c{bottom:155.706667pt;}
.y39{bottom:174.101747pt;}
.y1b{bottom:191.706667pt;}
.y38{bottom:208.186429pt;}
.y30{bottom:220.986667pt;}
.y1a{bottom:227.706667pt;}
.y2f{bottom:244.986667pt;}
.y19{bottom:263.706667pt;}
.y2e{bottom:270.906667pt;}
.y2b{bottom:270.946667pt;}
.y18{bottom:299.746667pt;}
.y4c{bottom:316.546667pt;}
.y17{bottom:335.746667pt;}
.y4b{bottom:340.546667pt;}
.y4a{bottom:364.546667pt;}
.y16{bottom:371.746667pt;}
.y49{bottom:388.546667pt;}
.y15{bottom:407.746667pt;}
.y48{bottom:412.546667pt;}
.y47{bottom:436.546667pt;}
.y14{bottom:443.746667pt;}
.y46{bottom:460.546667pt;}
.y13{bottom:479.746667pt;}
.y45{bottom:484.546667pt;}
.y44{bottom:508.546667pt;}
.y12{bottom:515.746667pt;}
.y43{bottom:532.546667pt;}
.y2a{bottom:540.573333pt;}
.y11{bottom:551.773333pt;}
.y42{bottom:556.573333pt;}
.y29{bottom:570.493333pt;}
.y10{bottom:587.773333pt;}
.y41{bottom:594.493333pt;}
.y28{bottom:606.493333pt;}
.yf{bottom:623.773333pt;}
.y40{bottom:630.493333pt;}
.y27{bottom:642.493333pt;}
.ye{bottom:659.773333pt;}
.y3f{bottom:661.533333pt;}
.y26{bottom:678.493333pt;}
.y3e{bottom:685.533333pt;}
.yd{bottom:695.773333pt;}
.y3d{bottom:709.533333pt;}
.y25{bottom:714.493333pt;}
.y33{bottom:727.413333pt;}
.y3c{bottom:727.453333pt;}
.yc{bottom:731.773333pt;}
.y31{bottom:733.660313pt;}
.y24{bottom:750.493333pt;}
.yb{bottom:761.853333pt;}
.ya{bottom:783.333333pt;}
.y23{bottom:786.533333pt;}
.y9{bottom:804.613333pt;}
.y22{bottom:822.533333pt;}
.y8{bottom:828.613333pt;}
.y7{bottom:850.053333pt;}
.y21{bottom:858.533333pt;}
.y6{bottom:868.613333pt;}
.y5{bottom:887.333333pt;}
.y20{bottom:894.533333pt;}
.y4{bottom:906.053333pt;}
.y1f{bottom:930.533333pt;}
.y3{bottom:941.573333pt;}
.y2{bottom:959.013333pt;}
.y1e{bottom:966.533333pt;}
.y1{bottom:976.293333pt;}
.ha{height:23.894477pt;}
.h6{height:32.132305pt;}
.h7{height:34.921600pt;}
.h10{height:44.437500pt;}
.hc{height:46.122375pt;}
.he{height:46.233628pt;}
.hd{height:50.300691pt;}
.hf{height:52.134375pt;}
.h8{height:57.787500pt;}
.h4{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:75.465000pt;}
.h9{height:254.386077pt;}
.hb{height:261.328219pt;}
.h5{height:262.261526pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:324.066791pt;}
.w4{width:352.454456pt;}
.w2{width:414.871781pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:14.874280pt;}
.x14{left:21.765852pt;}
.x12{left:39.908985pt;}
.x3{left:113.472000pt;}
.x1{left:117.472000pt;}
.x1d{left:125.472000pt;}
.x1c{left:128.992000pt;}
.xc{left:132.672000pt;}
.x7{left:145.466667pt;}
.x1e{left:155.546667pt;}
.x15{left:156.631038pt;}
.xb{left:170.586667pt;}
.x5{left:176.826667pt;}
.xd{left:185.213332pt;}
.xf{left:206.599715pt;}
.x8{left:207.546667pt;}
.x13{left:220.746665pt;}
.x11{left:224.901334pt;}
.x9{left:242.946667pt;}
.x6{left:245.346667pt;}
.x16{left:288.454082pt;}
.x17{left:293.199637pt;}
.x1a{left:299.690154pt;}
.x19{left:304.057173pt;}
.x18{left:310.307642pt;}
.xa{left:316.226667pt;}
.x2{left:366.013333pt;}
.x4{left:396.893333pt;}
.x1b{left:573.253333pt;}
.x10{left:600.133333pt;}
}




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