
    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_3514338f068c8797027324ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_cc404b175c0798b8f1f83df9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104492;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_38658c82c59a811a812d8678.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.114258;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_df270dd6551945b78cb73170.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_dd3ba4ca04734f078a441bf6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_78436c9a0e9325dafcc6bdff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.873535;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_4cd42468cedc17eab1d58c54.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_0332a8f5cc206aeda1288a35.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930176;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);}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.018000px;}
.v3{vertical-align:30.942000px;}
.v4{vertical-align:54.702000px;}
.lsc{letter-spacing:-0.861120px;}
.ls23{letter-spacing:-0.486000px;}
.lsa{letter-spacing:-0.463680px;}
.ls27{letter-spacing:-0.378000px;}
.lse{letter-spacing:-0.298800px;}
.ls8{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.119520px;}
.ls25{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.059760px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.077688px;}
.ls10{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.238464px;}
.ls6{letter-spacing:0.239040px;}
.lsb{letter-spacing:0.264960px;}
.ls4{letter-spacing:0.280872px;}
.ls28{letter-spacing:0.322704px;}
.ls26{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.397440px;}
.ls5{letter-spacing:0.406368px;}
.ls3{letter-spacing:0.657360px;}
.ls1f{letter-spacing:78.570000px;}
.ls16{letter-spacing:88.668000px;}
.ls17{letter-spacing:89.370000px;}
.ls14{letter-spacing:95.850000px;}
.ls21{letter-spacing:108.108000px;}
.ls1c{letter-spacing:110.970000px;}
.ls1b{letter-spacing:113.130000px;}
.ls18{letter-spacing:120.366000px;}
.ls1a{letter-spacing:121.068000px;}
.ls1e{letter-spacing:136.890000px;}
.ls13{letter-spacing:138.348000px;}
.ls20{letter-spacing:139.050000px;}
.ls19{letter-spacing:149.850000px;}
.ls1d{letter-spacing:167.886000px;}
.ls15{letter-spacing:180.846000px;}
.ls12{letter-spacing:258.606000px;}
.ls29{letter-spacing:848.194560px;}
.ls7{letter-spacing:849.029760px;}
.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:-18.414720px;}
.ws2{word-spacing:-16.852320px;}
.ws1{word-spacing:-16.493760px;}
.wsf{word-spacing:-15.228000px;}
.ws14{word-spacing:-15.174000px;}
.ws10{word-spacing:-15.120000px;}
.ws12{word-spacing:-15.012000px;}
.ws15{word-spacing:-14.904000px;}
.ws16{word-spacing:-14.634000px;}
.ws13{word-spacing:-14.526000px;}
.ws11{word-spacing:-10.008000px;}
.ws17{word-spacing:-0.810000px;}
.ws1b{word-spacing:-0.657360px;}
.wsb{word-spacing:-0.298800px;}
.ws1a{word-spacing:-0.270000px;}
.ws6{word-spacing:-0.264960px;}
.ws18{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.108000px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.059760px;}
.ws19{word-spacing:0.108000px;}
.wsd{word-spacing:0.119520px;}
.ws4{word-spacing:0.132480px;}
.wsa{word-spacing:0.239040px;}
.wse{word-spacing:0.298800px;}
.ws7{word-spacing:0.463680px;}
.ws9{word-spacing:0.776880px;}
.ws5{word-spacing:0.794880px;}
._1{margin-left:-1.324800px;}
._0{width:1.079712px;}
._2{width:2.138544px;}
._7{width:242.136000px;}
._4{width:243.594000px;}
._5{width:246.564000px;}
._6{width:333.504000px;}
._3{width:364.500000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:14.760000px;}
.y40{bottom:14.940000px;}
.y44{bottom:42.480000px;}
.y7b{bottom:66.600000px;}
.y77{bottom:94.135500px;}
.y7a{bottom:94.860000px;}
.y76{bottom:109.795500px;}
.y79{bottom:109.800000px;}
.y78{bottom:123.120000px;}
.y75{bottom:125.280000px;}
.y74{bottom:150.660000px;}
.y73{bottom:178.920000px;}
.y71{bottom:193.860000px;}
.y72{bottom:207.180000px;}
.y6f{bottom:235.440000px;}
.y70{bottom:250.380000px;}
.y6e{bottom:256.324500px;}
.y32{bottom:258.120000px;}
.y6b{bottom:262.795500px;}
.y6d{bottom:264.060000px;}
.y69{bottom:278.280000px;}
.y31{bottom:285.660000px;}
.y6c{bottom:291.240000px;}
.y6a{bottom:293.764500px;}
.y30{bottom:301.260600px;}
.y2f{bottom:318.546180px;}
.y2e{bottom:335.831760px;}
.y3c{bottom:340.740000px;}
.y2d{bottom:353.117340px;}
.y2c{bottom:370.402920px;}
.y3b{bottom:370.620000px;}
.y3a{bottom:387.348120px;}
.y2b{bottom:387.688500px;}
.y39{bottom:404.454420px;}
.y2a{bottom:404.794800px;}
.y38{bottom:421.740000px;}
.y29{bottom:422.080380px;}
.y28{bottom:439.365960px;}
.y37{bottom:450.715500px;}
.y27{bottom:456.651540px;}
.y36{bottom:466.195500px;}
.y26{bottom:473.937120px;}
.y35{bottom:481.680000px;}
.y25{bottom:491.222700px;}
.y34{bottom:501.840000px;}
.y24{bottom:508.329000px;}
.y68{bottom:510.660000px;}
.y23{bottom:525.614580px;}
.y67{bottom:538.920000px;}
.y22{bottom:542.900160px;}
.y64{bottom:546.115500px;}
.y66{bottom:553.860000px;}
.y21{bottom:560.185740px;}
.y63{bottom:561.600000px;}
.y65{bottom:567.180000px;}
.y20{bottom:577.471320px;}
.y62{bottom:594.720000px;}
.y1f{bottom:594.756900px;}
.y1e{bottom:611.863200px;}
.y61{bottom:622.260000px;}
.y1d{bottom:629.148780px;}
.y5e{bottom:629.455500px;}
.y60{bottom:637.200000px;}
.y5d{bottom:644.940000px;}
.y1c{bottom:646.434360px;}
.y5f{bottom:649.800000px;}
.y1b{bottom:663.719940px;}
.y5c{bottom:677.340000px;}
.y1a{bottom:681.005520px;}
.y19{bottom:698.111820px;}
.y5a{bottom:704.880000px;}
.y57{bottom:711.900000px;}
.y18{bottom:715.397400px;}
.y59{bottom:719.640000px;}
.y56{bottom:727.560000px;}
.y58{bottom:732.240000px;}
.y17{bottom:732.682980px;}
.y16{bottom:749.968560px;}
.y55{bottom:759.780000px;}
.y15{bottom:767.254140px;}
.y14{bottom:784.539720px;}
.y54{bottom:787.320000px;}
.y51{bottom:794.515500px;}
.y13{bottom:801.646020px;}
.y53{bottom:802.260000px;}
.y50{bottom:810.000000px;}
.y52{bottom:814.860000px;}
.y12{bottom:818.931600px;}
.y11{bottom:836.217180px;}
.y4f{bottom:842.400000px;}
.y10{bottom:853.502760px;}
.y8b{bottom:856.620000px;}
.y4e{bottom:869.940000px;}
.yf{bottom:870.788340px;}
.y8a{bottom:873.303480px;}
.y4b{bottom:877.135500px;}
.y4d{bottom:884.880000px;}
.ye{bottom:888.073920px;}
.y89{bottom:890.589060px;}
.y4a{bottom:892.620000px;}
.y4c{bottom:897.480000px;}
.yd{bottom:905.180220px;}
.y88{bottom:907.874640px;}
.yc{bottom:922.465800px;}
.y49{bottom:925.020000px;}
.y87{bottom:925.160220px;}
.yb{bottom:939.751380px;}
.y86{bottom:942.445800px;}
.y48{bottom:953.280000px;}
.ya{bottom:957.036960px;}
.y85{bottom:959.552100px;}
.y46{bottom:968.220000px;}
.y9{bottom:974.322540px;}
.y84{bottom:976.837680px;}
.y47{bottom:981.540000px;}
.y8{bottom:991.428840px;}
.y83{bottom:994.123260px;}
.y7{bottom:1008.714420px;}
.y43{bottom:1009.800000px;}
.y82{bottom:1011.408840px;}
.y45{bottom:1024.740000px;}
.y6{bottom:1026.000000px;}
.y81{bottom:1028.694420px;}
.y42{bottom:1038.420000px;}
.y5{bottom:1042.920000px;}
.y3e{bottom:1044.886500px;}
.y80{bottom:1045.980000px;}
.y3d{bottom:1052.635500px;}
.y41{bottom:1052.640000px;}
.y4{bottom:1058.754420px;}
.y3f{bottom:1065.600000px;}
.y7f{bottom:1074.780000px;}
.y3{bottom:1076.040000px;}
.y7e{bottom:1090.431000px;}
.y2{bottom:1099.625040px;}
.y7d{bottom:1105.915500px;}
.y1{bottom:1118.520000px;}
.y33{bottom:1121.400000px;}
.y7c{bottom:1125.900000px;}
.h10{height:27.360000px;}
.hc{height:27.540000px;}
.h8{height:32.273438px;}
.ha{height:37.910742px;}
.h4{height:48.410156px;}
.h7{height:48.752930px;}
.hd{height:50.273438px;}
.h9{height:50.291438px;}
.h12{height:50.309437px;}
.h13{height:50.992031px;}
.h2{height:53.428008px;}
.h5{height:53.573906px;}
.h6{height:53.953242px;}
.h3{height:54.011602px;}
.he{height:55.080000px;}
.h1{height:59.803594px;}
.hb{height:79.352156px;}
.h11{height:80.108156px;}
.hf{height:103.112156px;}
.h0{height:1188.000000px;}
.we{width:56.700000px;}
.w7{width:61.200000px;}
.wb{width:61.201500px;}
.w3{width:67.318500px;}
.w4{width:67.320000px;}
.w5{width:67.500000px;}
.wc{width:72.000000px;}
.wa{width:76.140000px;}
.wd{width:84.600000px;}
.w6{width:85.500000px;}
.w9{width:216.540000px;}
.w2{width:233.100000px;}
.w1{width:397.980000px;}
.w8{width:427.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x3{left:23.746500px;}
.x13{left:38.160000px;}
.x1{left:54.000000px;}
.x2{left:67.500000px;}
.x10{left:117.000000px;}
.x4{left:125.091000px;}
.x1d{left:133.560000px;}
.x14{left:141.664500px;}
.x5{left:202.500000px;}
.x9{left:210.600000px;}
.x17{left:217.800000px;}
.x11{left:270.000000px;}
.xa{left:337.320000px;}
.x1e{left:342.900000px;}
.xb{left:345.420000px;}
.x18{left:350.991000px;}
.xc{left:404.460000px;}
.xd{left:412.560000px;}
.x19{left:427.500000px;}
.x1a{left:435.600000px;}
.xe{left:471.780000px;}
.xf{left:479.880000px;}
.x1b{left:495.000000px;}
.x1c{left:503.100000px;}
.x12{left:539.280000px;}
.x1f{left:580.500000px;}
.x7{left:608.580000px;}
.x15{left:645.300000px;}
.x8{left:667.980000px;}
.x16{left:701.460000px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.016000pt;}
.v3{vertical-align:27.504000pt;}
.v4{vertical-align:48.624000pt;}
.lsc{letter-spacing:-0.765440pt;}
.ls23{letter-spacing:-0.432000pt;}
.lsa{letter-spacing:-0.412160pt;}
.ls27{letter-spacing:-0.336000pt;}
.lse{letter-spacing:-0.265600pt;}
.ls8{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.106240pt;}
.ls25{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.053120pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.069056pt;}
.ls10{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.211968pt;}
.ls6{letter-spacing:0.212480pt;}
.lsb{letter-spacing:0.235520pt;}
.ls4{letter-spacing:0.249664pt;}
.ls28{letter-spacing:0.286848pt;}
.ls26{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.353280pt;}
.ls5{letter-spacing:0.361216pt;}
.ls3{letter-spacing:0.584320pt;}
.ls1f{letter-spacing:69.840000pt;}
.ls16{letter-spacing:78.816000pt;}
.ls17{letter-spacing:79.440000pt;}
.ls14{letter-spacing:85.200000pt;}
.ls21{letter-spacing:96.096000pt;}
.ls1c{letter-spacing:98.640000pt;}
.ls1b{letter-spacing:100.560000pt;}
.ls18{letter-spacing:106.992000pt;}
.ls1a{letter-spacing:107.616000pt;}
.ls1e{letter-spacing:121.680000pt;}
.ls13{letter-spacing:122.976000pt;}
.ls20{letter-spacing:123.600000pt;}
.ls19{letter-spacing:133.200000pt;}
.ls1d{letter-spacing:149.232000pt;}
.ls15{letter-spacing:160.752000pt;}
.ls12{letter-spacing:229.872000pt;}
.ls29{letter-spacing:753.950720pt;}
.ls7{letter-spacing:754.693120pt;}
.ws0{word-spacing:-16.368640pt;}
.ws2{word-spacing:-14.979840pt;}
.ws1{word-spacing:-14.661120pt;}
.wsf{word-spacing:-13.536000pt;}
.ws14{word-spacing:-13.488000pt;}
.ws10{word-spacing:-13.440000pt;}
.ws12{word-spacing:-13.344000pt;}
.ws15{word-spacing:-13.248000pt;}
.ws16{word-spacing:-13.008000pt;}
.ws13{word-spacing:-12.912000pt;}
.ws11{word-spacing:-8.896000pt;}
.ws17{word-spacing:-0.720000pt;}
.ws1b{word-spacing:-0.584320pt;}
.wsb{word-spacing:-0.265600pt;}
.ws1a{word-spacing:-0.240000pt;}
.ws6{word-spacing:-0.235520pt;}
.ws18{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.096000pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.053120pt;}
.ws19{word-spacing:0.096000pt;}
.wsd{word-spacing:0.106240pt;}
.ws4{word-spacing:0.117760pt;}
.wsa{word-spacing:0.212480pt;}
.wse{word-spacing:0.265600pt;}
.ws7{word-spacing:0.412160pt;}
.ws9{word-spacing:0.690560pt;}
.ws5{word-spacing:0.706560pt;}
._1{margin-left:-1.177600pt;}
._0{width:0.959744pt;}
._2{width:1.900928pt;}
._7{width:215.232000pt;}
._4{width:216.528000pt;}
._5{width:219.168000pt;}
._6{width:296.448000pt;}
._3{width:324.000000pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:13.120000pt;}
.y40{bottom:13.280000pt;}
.y44{bottom:37.760000pt;}
.y7b{bottom:59.200000pt;}
.y77{bottom:83.676000pt;}
.y7a{bottom:84.320000pt;}
.y76{bottom:97.596000pt;}
.y79{bottom:97.600000pt;}
.y78{bottom:109.440000pt;}
.y75{bottom:111.360000pt;}
.y74{bottom:133.920000pt;}
.y73{bottom:159.040000pt;}
.y71{bottom:172.320000pt;}
.y72{bottom:184.160000pt;}
.y6f{bottom:209.280000pt;}
.y70{bottom:222.560000pt;}
.y6e{bottom:227.844000pt;}
.y32{bottom:229.440000pt;}
.y6b{bottom:233.596000pt;}
.y6d{bottom:234.720000pt;}
.y69{bottom:247.360000pt;}
.y31{bottom:253.920000pt;}
.y6c{bottom:258.880000pt;}
.y6a{bottom:261.124000pt;}
.y30{bottom:267.787200pt;}
.y2f{bottom:283.152160pt;}
.y2e{bottom:298.517120pt;}
.y3c{bottom:302.880000pt;}
.y2d{bottom:313.882080pt;}
.y2c{bottom:329.247040pt;}
.y3b{bottom:329.440000pt;}
.y3a{bottom:344.309440pt;}
.y2b{bottom:344.612000pt;}
.y39{bottom:359.515040pt;}
.y2a{bottom:359.817600pt;}
.y38{bottom:374.880000pt;}
.y29{bottom:375.182560pt;}
.y28{bottom:390.547520pt;}
.y37{bottom:400.636000pt;}
.y27{bottom:405.912480pt;}
.y36{bottom:414.396000pt;}
.y26{bottom:421.277440pt;}
.y35{bottom:428.160000pt;}
.y25{bottom:436.642400pt;}
.y34{bottom:446.080000pt;}
.y24{bottom:451.848000pt;}
.y68{bottom:453.920000pt;}
.y23{bottom:467.212960pt;}
.y67{bottom:479.040000pt;}
.y22{bottom:482.577920pt;}
.y64{bottom:485.436000pt;}
.y66{bottom:492.320000pt;}
.y21{bottom:497.942880pt;}
.y63{bottom:499.200000pt;}
.y65{bottom:504.160000pt;}
.y20{bottom:513.307840pt;}
.y62{bottom:528.640000pt;}
.y1f{bottom:528.672800pt;}
.y1e{bottom:543.878400pt;}
.y61{bottom:553.120000pt;}
.y1d{bottom:559.243360pt;}
.y5e{bottom:559.516000pt;}
.y60{bottom:566.400000pt;}
.y5d{bottom:573.280000pt;}
.y1c{bottom:574.608320pt;}
.y5f{bottom:577.600000pt;}
.y1b{bottom:589.973280pt;}
.y5c{bottom:602.080000pt;}
.y1a{bottom:605.338240pt;}
.y19{bottom:620.543840pt;}
.y5a{bottom:626.560000pt;}
.y57{bottom:632.800000pt;}
.y18{bottom:635.908800pt;}
.y59{bottom:639.680000pt;}
.y56{bottom:646.720000pt;}
.y58{bottom:650.880000pt;}
.y17{bottom:651.273760pt;}
.y16{bottom:666.638720pt;}
.y55{bottom:675.360000pt;}
.y15{bottom:682.003680pt;}
.y14{bottom:697.368640pt;}
.y54{bottom:699.840000pt;}
.y51{bottom:706.236000pt;}
.y13{bottom:712.574240pt;}
.y53{bottom:713.120000pt;}
.y50{bottom:720.000000pt;}
.y52{bottom:724.320000pt;}
.y12{bottom:727.939200pt;}
.y11{bottom:743.304160pt;}
.y4f{bottom:748.800000pt;}
.y10{bottom:758.669120pt;}
.y8b{bottom:761.440000pt;}
.y4e{bottom:773.280000pt;}
.yf{bottom:774.034080pt;}
.y8a{bottom:776.269760pt;}
.y4b{bottom:779.676000pt;}
.y4d{bottom:786.560000pt;}
.ye{bottom:789.399040pt;}
.y89{bottom:791.634720pt;}
.y4a{bottom:793.440000pt;}
.y4c{bottom:797.760000pt;}
.yd{bottom:804.604640pt;}
.y88{bottom:806.999680pt;}
.yc{bottom:819.969600pt;}
.y49{bottom:822.240000pt;}
.y87{bottom:822.364640pt;}
.yb{bottom:835.334560pt;}
.y86{bottom:837.729600pt;}
.y48{bottom:847.360000pt;}
.ya{bottom:850.699520pt;}
.y85{bottom:852.935200pt;}
.y46{bottom:860.640000pt;}
.y9{bottom:866.064480pt;}
.y84{bottom:868.300160pt;}
.y47{bottom:872.480000pt;}
.y8{bottom:881.270080pt;}
.y83{bottom:883.665120pt;}
.y7{bottom:896.635040pt;}
.y43{bottom:897.600000pt;}
.y82{bottom:899.030080pt;}
.y45{bottom:910.880000pt;}
.y6{bottom:912.000000pt;}
.y81{bottom:914.395040pt;}
.y42{bottom:923.040000pt;}
.y5{bottom:927.040000pt;}
.y3e{bottom:928.788000pt;}
.y80{bottom:929.760000pt;}
.y3d{bottom:935.676000pt;}
.y41{bottom:935.680000pt;}
.y4{bottom:941.115040pt;}
.y3f{bottom:947.200000pt;}
.y7f{bottom:955.360000pt;}
.y3{bottom:956.480000pt;}
.y7e{bottom:969.272000pt;}
.y2{bottom:977.444480pt;}
.y7d{bottom:983.036000pt;}
.y1{bottom:994.240000pt;}
.y33{bottom:996.800000pt;}
.y7c{bottom:1000.800000pt;}
.h10{height:24.320000pt;}
.hc{height:24.480000pt;}
.h8{height:28.687500pt;}
.ha{height:33.698437pt;}
.h4{height:43.031250pt;}
.h7{height:43.335938pt;}
.hd{height:44.687500pt;}
.h9{height:44.703500pt;}
.h12{height:44.719500pt;}
.h13{height:45.326250pt;}
.h2{height:47.491563pt;}
.h5{height:47.621250pt;}
.h6{height:47.958438pt;}
.h3{height:48.010313pt;}
.he{height:48.960000pt;}
.h1{height:53.158750pt;}
.hb{height:70.535250pt;}
.h11{height:71.207250pt;}
.hf{height:91.655250pt;}
.h0{height:1056.000000pt;}
.we{width:50.400000pt;}
.w7{width:54.400000pt;}
.wb{width:54.401333pt;}
.w3{width:59.838667pt;}
.w4{width:59.840000pt;}
.w5{width:60.000000pt;}
.wc{width:64.000000pt;}
.wa{width:67.680000pt;}
.wd{width:75.200000pt;}
.w6{width:76.000000pt;}
.w9{width:192.480000pt;}
.w2{width:207.200000pt;}
.w1{width:353.760000pt;}
.w8{width:380.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x3{left:21.108000pt;}
.x13{left:33.920000pt;}
.x1{left:48.000000pt;}
.x2{left:60.000000pt;}
.x10{left:104.000000pt;}
.x4{left:111.192000pt;}
.x1d{left:118.720000pt;}
.x14{left:125.924000pt;}
.x5{left:180.000000pt;}
.x9{left:187.200000pt;}
.x17{left:193.600000pt;}
.x11{left:240.000000pt;}
.xa{left:299.840000pt;}
.x1e{left:304.800000pt;}
.xb{left:307.040000pt;}
.x18{left:311.992000pt;}
.xc{left:359.520000pt;}
.xd{left:366.720000pt;}
.x19{left:380.000000pt;}
.x1a{left:387.200000pt;}
.xe{left:419.360000pt;}
.xf{left:426.560000pt;}
.x1b{left:440.000000pt;}
.x1c{left:447.200000pt;}
.x12{left:479.360000pt;}
.x1f{left:516.000000pt;}
.x7{left:540.960000pt;}
.x15{left:573.600000pt;}
.x8{left:593.760000pt;}
.x16{left:623.520000pt;}
}




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