
    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_a38464a0e9f762841dc585bf.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_1aa4f67cc96485de50ba5123.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_7c8db2a88790262be9a46cda.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_fa81c1b02a3441700cc4cc30.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ea98773cea7d7e24f1e483e5.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_cdb3d65c9b40171a99a5eda1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_08bbddd5d8628490c0d1f2dc.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f35f1d13cfd07e2985d47c5f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.916992;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.v2{vertical-align:-9.360000px;}
.v3{vertical-align:-5.760003px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.759998px;}
.v5{vertical-align:9.360000px;}
.v1{vertical-align:30.240000px;}
.ls7{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.690000px;}
.ls13{letter-spacing:-0.378600px;}
.ls6{letter-spacing:-0.369600px;}
.lsb{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.350400px;}
.ls15{letter-spacing:-0.341400px;}
.ls3{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls1a{letter-spacing:0.082560px;}
.lsa{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.208080px;}
.ls10{letter-spacing:0.341400px;}
.ls4{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378600px;}
.ls11{letter-spacing:0.378720px;}
.ls9{letter-spacing:0.485280px;}
.ls19{letter-spacing:0.498720px;}
.lsd{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.522720px;}
.ls17{letter-spacing:0.558720px;}
.ls1b{letter-spacing:1.260000px;}
.lsf{letter-spacing:4.860000px;}
.ls8{letter-spacing:9.900000px;}
.ls14{letter-spacing:48.268080px;}
.lse{letter-spacing:48.780000px;}
.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;}
}
.wse{word-spacing:-84.600000px;}
.ws2{word-spacing:-84.221280px;}
.ws1{word-spacing:-24.300000px;}
.ws0{word-spacing:-21.438600px;}
.ws7{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.wsf{word-spacing:-21.041280px;}
.ws10{word-spacing:-20.718600px;}
.ws14{word-spacing:-20.709600px;}
.ws8{word-spacing:-20.700000px;}
.ws4{word-spacing:-20.690400px;}
.ws9{word-spacing:-20.370000px;}
.ws5{word-spacing:-19.980000px;}
.wsa{word-spacing:-14.940000px;}
.ws12{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.140000px;}
.ws6{word-spacing:0.000000px;}
.ws11{word-spacing:26.785440px;}
.ws13{word-spacing:27.125280px;}
._25{margin-left:-6.548640px;}
._2{margin-left:-4.970160px;}
._8{margin-left:-3.201120px;}
._0{margin-left:-1.263600px;}
._1{width:1.241040px;}
._5{width:2.664480px;}
._d{width:3.959280px;}
._13{width:5.644080px;}
._7{width:6.740400px;}
._6{width:7.834320px;}
._c{width:8.853840px;}
._f{width:10.024560px;}
._e{width:11.035440px;}
._9{width:12.214800px;}
._10{width:13.799760px;}
._14{width:15.668640px;}
._15{width:16.917120px;}
._23{width:17.953440px;}
._12{width:18.954000px;}
._26{width:20.049120px;}
._29{width:22.070880px;}
._16{width:23.166000px;}
._17{width:24.543840px;}
._1c{width:25.777440px;}
._1d{width:27.209520px;}
._1e{width:28.388880px;}
._1f{width:29.982000px;}
._22{width:31.103760px;}
._11{width:32.685120px;}
._20{width:34.089120px;}
._1a{width:35.097600px;}
._3{width:36.138960px;}
._4{width:37.318320px;}
._a{width:38.497680px;}
._b{width:39.592800px;}
._24{width:47.427120px;}
._1b{width:49.027680px;}
._21{width:51.035520px;}
._18{width:52.365360px;}
._19{width:53.543760px;}
._27{width:79.567680px;}
._28{width:80.705520px;}
.fc3{color:rgb(68,114,196);}
.fc4{color:rgb(209,52,56);}
.fc2{color:rgb(5,99,193);}
.fc5{color:rgb(33,29,30);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y4{bottom:-14.580000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:4.500000px;}
.y55{bottom:4.545000px;}
.y2{bottom:4.680000px;}
.y8{bottom:5.400000px;}
.y7{bottom:6.300000px;}
.y9{bottom:14.400000px;}
.y53{bottom:16.560000px;}
.y60{bottom:16.770000px;}
.y50{bottom:19.800000px;}
.y5d{bottom:25.920000px;}
.y49{bottom:28.620000px;}
.y61{bottom:28.830000px;}
.y58{bottom:29.340000px;}
.y6{bottom:34.200000px;}
.y47{bottom:40.680000px;}
.y4f{bottom:40.725000px;}
.y48{bottom:52.740000px;}
.y4a{bottom:77.040000px;}
.y44{bottom:88.236000px;}
.y43{bottom:93.456000px;}
.y65{bottom:97.734000px;}
.y26{bottom:99.396000px;}
.y64{bottom:101.556000px;}
.y42{bottom:106.776000px;}
.y45{bottom:117.396000px;}
.y71{bottom:126.576000px;}
.y25{bottom:135.576000px;}
.y4d{bottom:147.450000px;}
.y70{bottom:151.410000px;}
.y41{bottom:153.570000px;}
.y24{bottom:171.750000px;}
.y40{bottom:189.750000px;}
.y6f{bottom:200.550000px;}
.y23{bottom:207.930000px;}
.y6e{bottom:225.390000px;}
.y3f{bottom:225.930000px;}
.y22{bottom:244.290000px;}
.y6a{bottom:250.230000px;}
.y3e{bottom:262.290000px;}
.y6d{bottom:275.070000px;}
.y21{bottom:280.470000px;}
.y3d{bottom:298.470000px;}
.y6c{bottom:300.090000px;}
.y20{bottom:316.650000px;}
.y3c{bottom:334.650000px;}
.y6b{bottom:349.095000px;}
.y1f{bottom:352.875000px;}
.y3b{bottom:370.875000px;}
.y69{bottom:374.115000px;}
.y1e{bottom:389.235000px;}
.y66{bottom:398.955000px;}
.y3a{bottom:407.235000px;}
.y68{bottom:423.795000px;}
.y1d{bottom:425.415000px;}
.y39{bottom:443.415000px;}
.y67{bottom:448.815000px;}
.y1c{bottom:461.595000px;}
.y37{bottom:479.595000px;}
.y38{bottom:487.155000px;}
.y1b{bottom:497.775000px;}
.y36{bottom:515.775000px;}
.y63{bottom:522.615000px;}
.y1a{bottom:533.955000px;}
.y4c{bottom:547.635000px;}
.y35{bottom:551.955000px;}
.y19{bottom:570.315000px;}
.y62{bottom:572.475000px;}
.y34{bottom:588.315000px;}
.y5f{bottom:597.315000px;}
.y18{bottom:606.525000px;}
.y33{bottom:624.525000px;}
.y17{bottom:642.705000px;}
.y5e{bottom:646.485000px;}
.y32{bottom:660.705000px;}
.y5c{bottom:671.325000px;}
.y16{bottom:678.885000px;}
.y57{bottom:696.165000px;}
.y31{bottom:696.885000px;}
.y15{bottom:715.245000px;}
.y5b{bottom:721.185000px;}
.y30{bottom:733.245000px;}
.y72{bottom:740.805000px;}
.y5a{bottom:746.025000px;}
.y14{bottom:751.425000px;}
.y2f{bottom:769.425000px;}
.y13{bottom:787.605000px;}
.y59{bottom:795.165000px;}
.y2e{bottom:805.605000px;}
.y56{bottom:820.005000px;}
.y12{bottom:823.785000px;}
.y2d{bottom:841.785000px;}
.y4e{bottom:844.845000px;}
.y11{bottom:860.145000px;}
.y54{bottom:869.865000px;}
.y2c{bottom:878.190000px;}
.y52{bottom:894.750000px;}
.y10{bottom:896.370000px;}
.y2b{bottom:914.370000px;}
.yf{bottom:932.550000px;}
.y51{bottom:943.710000px;}
.y2a{bottom:950.550000px;}
.ye{bottom:968.730000px;}
.y29{bottom:986.730000px;}
.y46{bottom:993.570000px;}
.yd{bottom:1004.910000px;}
.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;}
.h13{height:24.120000px;}
.h18{height:24.156000px;}
.h16{height:24.300000px;}
.h2{height:25.740000px;}
.h5{height:27.720000px;}
.hf{height:38.158594px;}
.h8{height:47.344922px;}
.h17{height:48.240000px;}
.h1d{height:48.276000px;}
.h1b{height:48.456000px;}
.he{height:52.998047px;}
.h10{height:58.651172px;}
.h1e{height:59.066719px;}
.h3{height:62.028281px;}
.hd{height:64.084922px;}
.hc{height:68.362734px;}
.hb{height:82.635820px;}
.h9{height:82.676953px;}
.h11{height:83.238047px;}
.h6{height:83.787539px;}
.ha{height:84.898125px;}
.h7{height:96.508125px;}
.h12{height:96.660000px;}
.h1a{height:147.816000px;}
.h19{height:147.960000px;}
.h15{height:147.996000px;}
.h14{height:445.215000px;}
.h1c{height:445.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:36.540000px;}
.wf{width:63.180000px;}
.w9{width:63.540000px;}
.w6{width:63.756000px;}
.w10{width:104.076000px;}
.wa{width:104.616000px;}
.wd{width:112.716000px;}
.wc{width:127.836000px;}
.wb{width:128.700000px;}
.we{width:129.060000px;}
.w3{width:404.205000px;}
.w2{width:425.235000px;}
.w5{width:765.690000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x7{left:17.100000px;}
.x9{left:19.800000px;}
.x1{left:31.860000px;}
.x22{left:39.054000px;}
.x23{left:47.160000px;}
.x25{left:59.580000px;}
.x24{left:72.000000px;}
.x6{left:84.959987px;}
.x1a{left:89.855987px;}
.x1b{left:93.996000px;}
.x4{left:98.850000px;}
.xb{left:103.535987px;}
.x27{left:106.235987px;}
.x2{left:110.376000px;}
.xa{left:127.475987px;}
.x1c{left:130.896000px;}
.x28{left:134.135987px;}
.x11{left:173.189987px;}
.x1d{left:194.790000px;}
.x12{left:202.349987px;}
.xc{left:252.569987px;}
.xf{left:260.489987px;}
.x13{left:281.594987px;}
.x26{left:292.394987px;}
.x10{left:295.814987px;}
.x1e{left:299.775000px;}
.x19{left:301.034987px;}
.x17{left:304.994973px;}
.x18{left:311.834987px;}
.xe{left:328.574987px;}
.x14{left:373.574987px;}
.x15{left:378.434987px;}
.x16{left:392.654987px;}
.x1f{left:428.835000px;}
.xd{left:446.474987px;}
.x3{left:457.095000px;}
.x20{left:557.025000px;}
.x21{left:670.110000px;}
.x8{left:797.550000px;}
@media print{
.v2{vertical-align:-8.320000pt;}
.v3{vertical-align:-5.120002pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.119998pt;}
.v5{vertical-align:8.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls7{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.613333pt;}
.ls13{letter-spacing:-0.336533pt;}
.ls6{letter-spacing:-0.328533pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.311467pt;}
.ls15{letter-spacing:-0.303467pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls1a{letter-spacing:0.073387pt;}
.lsa{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.184960pt;}
.ls10{letter-spacing:0.303467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336533pt;}
.ls11{letter-spacing:0.336640pt;}
.ls9{letter-spacing:0.431360pt;}
.ls19{letter-spacing:0.443307pt;}
.lsd{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.464640pt;}
.ls17{letter-spacing:0.496640pt;}
.ls1b{letter-spacing:1.120000pt;}
.lsf{letter-spacing:4.320000pt;}
.ls8{letter-spacing:8.800000pt;}
.ls14{letter-spacing:42.904960pt;}
.lse{letter-spacing:43.360000pt;}
.wse{word-spacing:-75.200000pt;}
.ws2{word-spacing:-74.863360pt;}
.ws1{word-spacing:-21.600000pt;}
.ws0{word-spacing:-19.056533pt;}
.ws7{word-spacing:-19.040000pt;}
.wsb{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.wsf{word-spacing:-18.703360pt;}
.ws10{word-spacing:-18.416533pt;}
.ws14{word-spacing:-18.408533pt;}
.ws8{word-spacing:-18.400000pt;}
.ws4{word-spacing:-18.391467pt;}
.ws9{word-spacing:-18.106667pt;}
.ws5{word-spacing:-17.760000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws12{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws11{word-spacing:23.809280pt;}
.ws13{word-spacing:24.111360pt;}
._25{margin-left:-5.821013pt;}
._2{margin-left:-4.417920pt;}
._8{margin-left:-2.845440pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.103147pt;}
._5{width:2.368427pt;}
._d{width:3.519360pt;}
._13{width:5.016960pt;}
._7{width:5.991467pt;}
._6{width:6.963840pt;}
._c{width:7.870080pt;}
._f{width:8.910720pt;}
._e{width:9.809280pt;}
._9{width:10.857600pt;}
._10{width:12.266453pt;}
._14{width:13.927680pt;}
._15{width:15.037440pt;}
._23{width:15.958613pt;}
._12{width:16.848000pt;}
._26{width:17.821440pt;}
._29{width:19.618560pt;}
._16{width:20.592000pt;}
._17{width:21.816747pt;}
._1c{width:22.913280pt;}
._1d{width:24.186240pt;}
._1e{width:25.234560pt;}
._1f{width:26.650667pt;}
._22{width:27.647787pt;}
._11{width:29.053440pt;}
._20{width:30.301440pt;}
._1a{width:31.197867pt;}
._3{width:32.123520pt;}
._4{width:33.171840pt;}
._a{width:34.220160pt;}
._b{width:35.193600pt;}
._24{width:42.157440pt;}
._1b{width:43.580160pt;}
._21{width:45.364907pt;}
._18{width:46.546987pt;}
._19{width:47.594453pt;}
._27{width:70.726827pt;}
._28{width:71.738240pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y4{bottom:-12.960000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:4.000000pt;}
.y55{bottom:4.040000pt;}
.y2{bottom:4.160000pt;}
.y8{bottom:4.800000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:12.800000pt;}
.y53{bottom:14.720000pt;}
.y60{bottom:14.906667pt;}
.y50{bottom:17.600000pt;}
.y5d{bottom:23.040000pt;}
.y49{bottom:25.440000pt;}
.y61{bottom:25.626667pt;}
.y58{bottom:26.080000pt;}
.y6{bottom:30.400000pt;}
.y47{bottom:36.160000pt;}
.y4f{bottom:36.200000pt;}
.y48{bottom:46.880000pt;}
.y4a{bottom:68.480000pt;}
.y44{bottom:78.432000pt;}
.y43{bottom:83.072000pt;}
.y65{bottom:86.874667pt;}
.y26{bottom:88.352000pt;}
.y64{bottom:90.272000pt;}
.y42{bottom:94.912000pt;}
.y45{bottom:104.352000pt;}
.y71{bottom:112.512000pt;}
.y25{bottom:120.512000pt;}
.y4d{bottom:131.066667pt;}
.y70{bottom:134.586667pt;}
.y41{bottom:136.506667pt;}
.y24{bottom:152.666667pt;}
.y40{bottom:168.666667pt;}
.y6f{bottom:178.266667pt;}
.y23{bottom:184.826667pt;}
.y6e{bottom:200.346667pt;}
.y3f{bottom:200.826667pt;}
.y22{bottom:217.146667pt;}
.y6a{bottom:222.426667pt;}
.y3e{bottom:233.146667pt;}
.y6d{bottom:244.506667pt;}
.y21{bottom:249.306667pt;}
.y3d{bottom:265.306667pt;}
.y6c{bottom:266.746667pt;}
.y20{bottom:281.466667pt;}
.y3c{bottom:297.466667pt;}
.y6b{bottom:310.306667pt;}
.y1f{bottom:313.666667pt;}
.y3b{bottom:329.666667pt;}
.y69{bottom:332.546667pt;}
.y1e{bottom:345.986667pt;}
.y66{bottom:354.626667pt;}
.y3a{bottom:361.986667pt;}
.y68{bottom:376.706667pt;}
.y1d{bottom:378.146667pt;}
.y39{bottom:394.146667pt;}
.y67{bottom:398.946667pt;}
.y1c{bottom:410.306667pt;}
.y37{bottom:426.306667pt;}
.y38{bottom:433.026667pt;}
.y1b{bottom:442.466667pt;}
.y36{bottom:458.466667pt;}
.y63{bottom:464.546667pt;}
.y1a{bottom:474.626667pt;}
.y4c{bottom:486.786667pt;}
.y35{bottom:490.626667pt;}
.y19{bottom:506.946667pt;}
.y62{bottom:508.866667pt;}
.y34{bottom:522.946667pt;}
.y5f{bottom:530.946667pt;}
.y18{bottom:539.133333pt;}
.y33{bottom:555.133333pt;}
.y17{bottom:571.293333pt;}
.y5e{bottom:574.653333pt;}
.y32{bottom:587.293333pt;}
.y5c{bottom:596.733333pt;}
.y16{bottom:603.453333pt;}
.y57{bottom:618.813333pt;}
.y31{bottom:619.453333pt;}
.y15{bottom:635.773333pt;}
.y5b{bottom:641.053333pt;}
.y30{bottom:651.773333pt;}
.y72{bottom:658.493333pt;}
.y5a{bottom:663.133333pt;}
.y14{bottom:667.933333pt;}
.y2f{bottom:683.933333pt;}
.y13{bottom:700.093333pt;}
.y59{bottom:706.813333pt;}
.y2e{bottom:716.093333pt;}
.y56{bottom:728.893333pt;}
.y12{bottom:732.253333pt;}
.y2d{bottom:748.253333pt;}
.y4e{bottom:750.973333pt;}
.y11{bottom:764.573333pt;}
.y54{bottom:773.213333pt;}
.y2c{bottom:780.613333pt;}
.y52{bottom:795.333333pt;}
.y10{bottom:796.773333pt;}
.y2b{bottom:812.773333pt;}
.yf{bottom:828.933333pt;}
.y51{bottom:838.853333pt;}
.y2a{bottom:844.933333pt;}
.ye{bottom:861.093333pt;}
.y29{bottom:877.093333pt;}
.y46{bottom:883.173333pt;}
.yd{bottom:893.253333pt;}
.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;}
.h13{height:21.440000pt;}
.h18{height:21.472000pt;}
.h16{height:21.600000pt;}
.h2{height:22.880000pt;}
.h5{height:24.640000pt;}
.hf{height:33.918750pt;}
.h8{height:42.084375pt;}
.h17{height:42.880000pt;}
.h1d{height:42.912000pt;}
.h1b{height:43.072000pt;}
.he{height:47.109375pt;}
.h10{height:52.134375pt;}
.h1e{height:52.503750pt;}
.h3{height:55.136250pt;}
.hd{height:56.964375pt;}
.hc{height:60.766875pt;}
.hb{height:73.454062pt;}
.h9{height:73.490625pt;}
.h11{height:73.989375pt;}
.h6{height:74.477812pt;}
.ha{height:75.465000pt;}
.h7{height:85.785000pt;}
.h12{height:85.920000pt;}
.h1a{height:131.392000pt;}
.h19{height:131.520000pt;}
.h15{height:131.552000pt;}
.h14{height:395.746667pt;}
.h1c{height:395.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:32.480000pt;}
.wf{width:56.160000pt;}
.w9{width:56.480000pt;}
.w6{width:56.672000pt;}
.w10{width:92.512000pt;}
.wa{width:92.992000pt;}
.wd{width:100.192000pt;}
.wc{width:113.632000pt;}
.wb{width:114.400000pt;}
.we{width:114.720000pt;}
.w3{width:359.293333pt;}
.w2{width:377.986667pt;}
.w5{width:680.613333pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x7{left:15.200000pt;}
.x9{left:17.600000pt;}
.x1{left:28.320000pt;}
.x22{left:34.714667pt;}
.x23{left:41.920000pt;}
.x25{left:52.960000pt;}
.x24{left:64.000000pt;}
.x6{left:75.519988pt;}
.x1a{left:79.871988pt;}
.x1b{left:83.552000pt;}
.x4{left:87.866667pt;}
.xb{left:92.031988pt;}
.x27{left:94.431988pt;}
.x2{left:98.112000pt;}
.xa{left:113.311988pt;}
.x1c{left:116.352000pt;}
.x28{left:119.231988pt;}
.x11{left:153.946655pt;}
.x1d{left:173.146667pt;}
.x12{left:179.866655pt;}
.xc{left:224.506655pt;}
.xf{left:231.546655pt;}
.x13{left:250.306655pt;}
.x26{left:259.906655pt;}
.x10{left:262.946655pt;}
.x1e{left:266.466667pt;}
.x19{left:267.586655pt;}
.x17{left:271.106643pt;}
.x18{left:277.186655pt;}
.xe{left:292.066655pt;}
.x14{left:332.066655pt;}
.x15{left:336.386655pt;}
.x16{left:349.026655pt;}
.x1f{left:381.186667pt;}
.xd{left:396.866655pt;}
.x3{left:406.306667pt;}
.x20{left:495.133333pt;}
.x21{left:595.653333pt;}
.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; }
  