
    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_a6b22c332ddee611a6855807.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_4be59545d1cb81da0679962c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_6274ecce74e966f03e0b223e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.918945;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_fd1a246896851a32005c3c43.woff')format("woff");}.ff4{font-family:ff4;line-height:0.996000;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;}
.m3{transform:matrix(-0.249998,-0.000982,0.000982,-0.249998,0,0);-ms-transform:matrix(-0.249998,-0.000982,0.000982,-0.249998,0,0);-webkit-transform:matrix(-0.249998,-0.000982,0.000982,-0.249998,0,0);}
.m9{transform:matrix(-0.232591,0.091660,-0.091660,-0.232591,0,0);-ms-transform:matrix(-0.232591,0.091660,-0.091660,-0.232591,0,0);-webkit-transform:matrix(-0.232591,0.091660,-0.091660,-0.232591,0,0);}
.m8{transform:matrix(-0.225917,-0.107058,0.107058,-0.225917,0,0);-ms-transform:matrix(-0.225917,-0.107058,0.107058,-0.225917,0,0);-webkit-transform:matrix(-0.225917,-0.107058,0.107058,-0.225917,0,0);}
.m6{transform:matrix(-0.180434,0.173042,0.173042,0.180434,0,0);-ms-transform:matrix(-0.180434,0.173042,0.173042,0.180434,0,0);-webkit-transform:matrix(-0.180434,0.173042,0.173042,0.180434,0,0);}
.m5{transform:matrix(-0.000982,-0.249998,-0.249998,0.000982,0,0);-ms-transform:matrix(-0.000982,-0.249998,-0.249998,0.000982,0,0);-webkit-transform:matrix(-0.000982,-0.249998,-0.249998,0.000982,0,0);}
.ma{transform:matrix(0.000485,0.250000,-0.250000,0.000485,0,0);-ms-transform:matrix(0.000485,0.250000,-0.250000,0.000485,0,0);-webkit-transform:matrix(0.000485,0.250000,-0.250000,0.000485,0,0);}
.m4{transform:matrix(0.000982,0.249998,0.249998,-0.000982,0,0);-ms-transform:matrix(0.000982,0.249998,0.249998,-0.000982,0,0);-webkit-transform:matrix(0.000982,0.249998,0.249998,-0.000982,0,0);}
.m1{transform:matrix(0.067338,0.240761,0.240761,-0.067338,0,0);-ms-transform:matrix(0.067338,0.240761,0.240761,-0.067338,0,0);-webkit-transform:matrix(0.067338,0.240761,0.240761,-0.067338,0,0);}
.m7{transform:matrix(0.180434,0.173042,-0.173042,0.180434,0,0);-ms-transform:matrix(0.180434,0.173042,-0.173042,0.180434,0,0);-webkit-transform:matrix(0.180434,0.173042,-0.173042,0.180434,0,0);}
.m2{transform:matrix(0.249998,-0.000982,-0.000982,-0.249998,0,0);-ms-transform:matrix(0.249998,-0.000982,-0.000982,-0.249998,0,0);-webkit-transform:matrix(0.249998,-0.000982,-0.000982,-0.249998,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);}
.mb{transform:matrix(0.263675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263675,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:113.026800px;}
.v2{vertical-align:164.947200px;}
.v1{vertical-align:167.654400px;}
.ls4{letter-spacing:-1.795262px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:3.072000px;}
.ls3{letter-spacing:3.528000px;}
.ls0{letter-spacing:4.220035px;}
.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:-50.640422px;}
.ws0{word-spacing:-46.420387px;}
.ws2{word-spacing:-26.822400px;}
.ws12{word-spacing:-3.528000px;}
.ws22{word-spacing:-3.480000px;}
.ws1f{word-spacing:-2.088000px;}
.ws1c{word-spacing:-2.001000px;}
.ws1b{word-spacing:-1.827000px;}
.ws21{word-spacing:-1.392000px;}
.ws3{word-spacing:0.000000px;}
.ws24{word-spacing:1.131000px;}
.ws23{word-spacing:1.218000px;}
.ws5{word-spacing:1.466029px;}
.ws10{word-spacing:2.294654px;}
.ws20{word-spacing:2.958000px;}
.ws14{word-spacing:2.995799px;}
.ws16{word-spacing:3.567000px;}
.ws17{word-spacing:3.828000px;}
.ws18{word-spacing:4.002000px;}
.ws9{word-spacing:4.143126px;}
.ws13{word-spacing:4.908011px;}
.ws15{word-spacing:5.742000px;}
.ws1e{word-spacing:6.612000px;}
.ws7{word-spacing:7.011444px;}
.ws1d{word-spacing:7.569000px;}
.ws11{word-spacing:9.688541px;}
.ws19{word-spacing:9.918000px;}
.wsc{word-spacing:10.140000px;}
.wsd{word-spacing:10.680000px;}
.ws6{word-spacing:12.875561px;}
.ws8{word-spacing:13.258003px;}
.ws1a{word-spacing:13.311000px;}
.wsb{word-spacing:14.724032px;}
.wsf{word-spacing:16.636244px;}
.wsa{word-spacing:16.827466px;}
.ws25{word-spacing:20.358000px;}
.wse{word-spacing:26.160000px;}
.ws4{word-spacing:27.217151px;}
._2{margin-left:-10.339200px;}
._3{margin-left:-9.115200px;}
._f{margin-left:-8.060400px;}
._1{margin-left:-5.947200px;}
._10{margin-left:-4.193100px;}
._0{margin-left:-3.110400px;}
._5{margin-left:-1.663624px;}
._4{width:1.446907px;}
._7{width:2.492250px;}
._c{width:4.136752px;}
._9{width:5.264957px;}
._12{width:6.288643px;}
._8{width:7.706214px;}
._13{width:10.092072px;}
._e{width:11.447776px;}
._d{width:15.794871px;}
._b{width:17.420251px;}
._11{width:18.661500px;}
._6{width:20.423443px;}
._a{width:32.441992px;}
._14{width:2185.916100px;}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc3{color:rgb(101,98,99);}
.fc0{color:rgb(5,6,6);}
.fs15{font-size:43.401000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.740400px;}
.fs8{font-size:87.000000px;}
.fs13{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.fs9{font-size:152.400000px;}
.fs4{font-size:192.000000px;}
.fs5{font-size:252.000000px;}
.fs12{font-size:261.600000px;}
.fsa{font-size:263.640000px;}
.fs2{font-size:263.752200px;}
.fse{font-size:263.760000px;}
.fs6{font-size:299.210400px;}
.fs14{font-size:325.079400px;}
.fsb{font-size:359.999184px;}
.fs11{font-size:411.934375px;}
.fs10{font-size:411.936729px;}
.fsf{font-size:411.937706px;}
.fsc{font-size:411.958981px;}
.fsd{font-size:411.961804px;}
.fs7{font-size:747.388800px;}
.y0{bottom:0.000000px;}
.y8b{bottom:138.546450px;}
.y8c{bottom:142.486800px;}
.y8a{bottom:172.664700px;}
.y89{bottom:208.385700px;}
.y1{bottom:250.239300px;}
.y2d{bottom:384.220500px;}
.y38{bottom:385.982250px;}
.y2c{bottom:410.320500px;}
.y37{bottom:412.082250px;}
.y4c{bottom:425.853450px;}
.y2b{bottom:436.420500px;}
.y36{bottom:438.182250px;}
.y2a{bottom:462.520500px;}
.y35{bottom:464.282250px;}
.y4b{bottom:471.573450px;}
.y29{bottom:488.620500px;}
.y34{bottom:490.382250px;}
.y28{bottom:514.720500px;}
.y33{bottom:516.482250px;}
.y27{bottom:540.820500px;}
.y32{bottom:542.582250px;}
.y4a{bottom:563.013450px;}
.y26{bottom:566.920500px;}
.y31{bottom:568.682250px;}
.y25{bottom:593.020500px;}
.y30{bottom:594.782250px;}
.y49{bottom:608.733450px;}
.y24{bottom:619.120500px;}
.y2f{bottom:620.882250px;}
.y23{bottom:645.220500px;}
.y2e{bottom:646.982250px;}
.y42{bottom:705.493650px;}
.y40{bottom:705.837900px;}
.y65{bottom:736.673250px;}
.y41{bottom:751.214400px;}
.y3f{bottom:751.558650px;}
.y5d{bottom:1157.709900px;}
.y62{bottom:1176.231450px;}
.y63{bottom:1178.508750px;}
.y61{bottom:1255.359300px;}
.y60{bottom:1301.079300px;}
.y5b{bottom:1312.859400px;}
.y5f{bottom:1346.799300px;}
.y88{bottom:1400.052000px;}
.y87{bottom:1445.772000px;}
.y59{bottom:1457.690700px;}
.y6b{bottom:1475.985150px;}
.y86{bottom:1491.492000px;}
.y85{bottom:1537.212000px;}
.y6a{bottom:1547.990550px;}
.y84{bottom:1582.932000px;}
.y69{bottom:1619.990400px;}
.y83{bottom:1628.652000px;}
.y68{bottom:1665.710400px;}
.y67{bottom:1711.430400px;}
.y82{bottom:1746.647700px;}
.y66{bottom:1757.150400px;}
.y81{bottom:1792.367700px;}
.y4e{bottom:1873.601850px;}
.y80{bottom:1883.807700px;}
.y4d{bottom:1919.321850px;}
.y7f{bottom:1929.527700px;}
.y7a{bottom:1932.575700px;}
.y52{bottom:1955.295600px;}
.y7e{bottom:1975.247700px;}
.y79{bottom:1978.295700px;}
.y64{bottom:1984.556250px;}
.y7d{bottom:2020.967700px;}
.y78{bottom:2024.015700px;}
.y5c{bottom:2126.547150px;}
.y5a{bottom:2126.670900px;}
.y51{bottom:2127.536250px;}
.y50{bottom:2206.628250px;}
.y58{bottom:2235.751800px;}
.y4f{bottom:2285.720250px;}
.y77{bottom:2309.499000px;}
.y76{bottom:2355.219000px;}
.y70{bottom:2414.616900px;}
.y57{bottom:2453.179350px;}
.y6f{bottom:2460.336900px;}
.y73{bottom:2468.680800px;}
.y75{bottom:2499.846600px;}
.y7c{bottom:2500.303800px;}
.y5e{bottom:2505.862800px;}
.y6e{bottom:2506.056900px;}
.y72{bottom:2514.400800px;}
.y74{bottom:2545.566600px;}
.y7b{bottom:2546.023800px;}
.y6d{bottom:2551.776900px;}
.y71{bottom:2560.120800px;}
.y54{bottom:2569.005600px;}
.y55{bottom:2569.922550px;}
.y53{bottom:2577.440250px;}
.y6c{bottom:2597.496900px;}
.y56{bottom:2631.016800px;}
.y3e{bottom:2753.252250px;}
.y3d{bottom:2779.352250px;}
.y3c{bottom:2805.452250px;}
.y3b{bottom:2831.552250px;}
.y3a{bottom:2857.652250px;}
.y39{bottom:2883.752250px;}
.y44{bottom:2947.212900px;}
.y43{bottom:2992.933650px;}
.y48{bottom:3180.346800px;}
.y16{bottom:3181.189500px;}
.y1f{bottom:3183.002241px;}
.y13{bottom:3183.045150px;}
.ya{bottom:3183.103590px;}
.y1e{bottom:3202.124361px;}
.y12{bottom:3202.167270px;}
.y9{bottom:3202.225710px;}
.y1d{bottom:3221.246481px;}
.y11{bottom:3221.289390px;}
.y8{bottom:3221.347830px;}
.y47{bottom:3225.342900px;}
.y1c{bottom:3240.368601px;}
.y10{bottom:3240.411510px;}
.y7{bottom:3240.469950px;}
.y15{bottom:3244.189500px;}
.y1b{bottom:3259.490721px;}
.yf{bottom:3259.533630px;}
.y6{bottom:3259.592070px;}
.y46{bottom:3270.339000px;}
.y1a{bottom:3278.612841px;}
.ye{bottom:3278.655750px;}
.y5{bottom:3278.714190px;}
.yb{bottom:3294.564000px;}
.y17{bottom:3294.583050px;}
.y14{bottom:3295.189500px;}
.y19{bottom:3297.575610px;}
.y4{bottom:3297.836310px;}
.yd{bottom:3300.477600px;}
.y45{bottom:3315.335100px;}
.y18{bottom:3316.697730px;}
.y3{bottom:3316.958430px;}
.yc{bottom:3318.477600px;}
.y2{bottom:3336.080550px;}
.y22{bottom:3443.141550px;}
.y21{bottom:3443.299380px;}
.y20{bottom:3533.062500px;}
.h17{height:32.811156px;}
.h5{height:43.154297px;}
.h3{height:45.844536px;}
.ha{height:62.573730px;}
.h15{height:77.677734px;}
.h2{height:103.570312px;}
.hb{height:123.006445px;}
.h6{height:154.968750px;}
.h7{height:203.396484px;}
.h14{height:211.144922px;}
.hc{height:212.791465px;}
.h4{height:212.882025px;}
.h10{height:212.888320px;}
.h8{height:241.501363px;}
.hd{height:290.565747px;}
.h13{height:332.484142px;}
.h12{height:332.486041px;}
.h11{height:332.486830px;}
.he{height:332.504001px;}
.hf{height:332.506280px;}
.h16{height:358.786826px;}
.h9{height:603.239105px;}
.h0{height:3745.980000px;}
.h1{height:3746.250000px;}
.w1{width:2695.500000px;}
.w0{width:2695.755000px;}
.x0{left:0.000000px;}
.xb{left:180.357450px;}
.x9{left:190.441653px;}
.x7{left:191.668200px;}
.x3a{left:194.181600px;}
.x3c{left:202.944600px;}
.x3b{left:213.155400px;}
.x39{left:240.396900px;}
.xc{left:273.418950px;}
.x10{left:279.202200px;}
.x1f{left:329.255100px;}
.x38{left:350.542200px;}
.x21{left:380.335350px;}
.x36{left:384.947250px;}
.x20{left:394.571910px;}
.x35{left:398.015550px;}
.x37{left:432.750000px;}
.xf{left:433.889700px;}
.x1e{left:436.563750px;}
.x1d{left:454.356450px;}
.x25{left:483.374700px;}
.x8{left:484.762950px;}
.x55{left:542.470500px;}
.x2d{left:585.666450px;}
.x24{left:607.024200px;}
.x54{left:629.425535px;}
.x33{left:651.750750px;}
.x1{left:676.293450px;}
.x53{left:686.977350px;}
.x3f{left:701.178300px;}
.x3d{left:710.360400px;}
.x3e{left:764.233800px;}
.x6{left:808.319850px;}
.x14{left:834.752250px;}
.x13{left:970.304400px;}
.x3{left:1012.048800px;}
.x5{left:1014.084300px;}
.x32{left:1133.740200px;}
.x23{left:1136.612850px;}
.x19{left:1179.382350px;}
.x1c{left:1187.769600px;}
.x2e{left:1221.984300px;}
.x1b{left:1228.765200px;}
.x1a{left:1272.046800px;}
.x34{left:1306.601550px;}
.xe{left:1381.168200px;}
.x4{left:1404.013200px;}
.xd{left:1603.953450px;}
.x11{left:1625.374500px;}
.x12{left:1643.726100px;}
.x26{left:1703.471550px;}
.x48{left:1798.382100px;}
.x47{left:1814.155500px;}
.x15{left:1820.323050px;}
.x49{left:1825.966500px;}
.x17{left:1828.362150px;}
.x16{left:1843.373550px;}
.x18{left:1869.548250px;}
.x31{left:1912.099350px;}
.x56{left:1924.420200px;}
.x30{left:1942.207500px;}
.x22{left:1988.399400px;}
.x27{left:1992.964650px;}
.x2f{left:2010.025500px;}
.xa{left:2013.327038px;}
.x46{left:2057.462100px;}
.x44{left:2072.016300px;}
.x2{left:2083.368150px;}
.x45{left:2099.562600px;}
.x2a{left:2199.967500px;}
.x2b{left:2241.534300px;}
.x42{left:2256.267900px;}
.x4d{left:2262.973500px;}
.x4c{left:2272.460400px;}
.x4f{left:2281.528200px;}
.x4b{left:2287.090800px;}
.x40{left:2293.834500px;}
.x41{left:2295.587100px;}
.x43{left:2299.968600px;}
.x52{left:2321.190300px;}
.x4e{left:2323.857300px;}
.x50{left:2332.658400px;}
.x4a{left:2338.563900px;}
.x29{left:2340.432150px;}
.x51{left:2347.593600px;}
.x2c{left:2371.134900px;}
.x28{left:2422.424550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:100.468267pt;}
.v2{vertical-align:146.619733pt;}
.v1{vertical-align:149.026133pt;}
.ls4{letter-spacing:-1.595789pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.730667pt;}
.ls3{letter-spacing:3.136000pt;}
.ls0{letter-spacing:3.751142pt;}
.ws1{word-spacing:-45.013709pt;}
.ws0{word-spacing:-41.262566pt;}
.ws2{word-spacing:-23.842133pt;}
.ws12{word-spacing:-3.136000pt;}
.ws22{word-spacing:-3.093333pt;}
.ws1f{word-spacing:-1.856000pt;}
.ws1c{word-spacing:-1.778667pt;}
.ws1b{word-spacing:-1.624000pt;}
.ws21{word-spacing:-1.237333pt;}
.ws3{word-spacing:0.000000pt;}
.ws24{word-spacing:1.005333pt;}
.ws23{word-spacing:1.082667pt;}
.ws5{word-spacing:1.303137pt;}
.ws10{word-spacing:2.039693pt;}
.ws20{word-spacing:2.629333pt;}
.ws14{word-spacing:2.662932pt;}
.ws16{word-spacing:3.170667pt;}
.ws17{word-spacing:3.402667pt;}
.ws18{word-spacing:3.557333pt;}
.ws9{word-spacing:3.682779pt;}
.ws13{word-spacing:4.362676pt;}
.ws15{word-spacing:5.104000pt;}
.ws1e{word-spacing:5.877333pt;}
.ws7{word-spacing:6.232395pt;}
.ws1d{word-spacing:6.728000pt;}
.ws11{word-spacing:8.612036pt;}
.ws19{word-spacing:8.816000pt;}
.wsc{word-spacing:9.013333pt;}
.wsd{word-spacing:9.493333pt;}
.ws6{word-spacing:11.444943pt;}
.ws8{word-spacing:11.784892pt;}
.ws1a{word-spacing:11.832000pt;}
.wsb{word-spacing:13.088029pt;}
.wsf{word-spacing:14.787773pt;}
.wsa{word-spacing:14.957747pt;}
.ws25{word-spacing:18.096000pt;}
.wse{word-spacing:23.253333pt;}
.ws4{word-spacing:24.193023pt;}
._2{margin-left:-9.190400pt;}
._3{margin-left:-8.102400pt;}
._f{margin-left:-7.164800pt;}
._1{margin-left:-5.286400pt;}
._10{margin-left:-3.727200pt;}
._0{margin-left:-2.764800pt;}
._5{margin-left:-1.478777pt;}
._4{width:1.286140pt;}
._7{width:2.215333pt;}
._c{width:3.677113pt;}
._9{width:4.679962pt;}
._12{width:5.589905pt;}
._8{width:6.849968pt;}
._13{width:8.970731pt;}
._e{width:10.175801pt;}
._d{width:14.039885pt;}
._b{width:15.484668pt;}
._11{width:16.588000pt;}
._6{width:18.154171pt;}
._a{width:28.837326pt;}
._14{width:1943.036533pt;}
.fs15{font-size:38.578667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.658133pt;}
.fs8{font-size:77.333333pt;}
.fs13{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.fs9{font-size:135.466667pt;}
.fs4{font-size:170.666667pt;}
.fs5{font-size:224.000000pt;}
.fs12{font-size:232.533333pt;}
.fsa{font-size:234.346667pt;}
.fs2{font-size:234.446400pt;}
.fse{font-size:234.453333pt;}
.fs6{font-size:265.964800pt;}
.fs14{font-size:288.959467pt;}
.fsb{font-size:319.999274pt;}
.fs11{font-size:366.163889pt;}
.fs10{font-size:366.165981pt;}
.fsf{font-size:366.166850pt;}
.fsc{font-size:366.185761pt;}
.fsd{font-size:366.188270pt;}
.fs7{font-size:664.345600pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:123.152400pt;}
.y8c{bottom:126.654933pt;}
.y8a{bottom:153.479733pt;}
.y89{bottom:185.231733pt;}
.y1{bottom:222.434933pt;}
.y2d{bottom:341.529333pt;}
.y38{bottom:343.095333pt;}
.y2c{bottom:364.729333pt;}
.y37{bottom:366.295333pt;}
.y4c{bottom:378.536400pt;}
.y2b{bottom:387.929333pt;}
.y36{bottom:389.495333pt;}
.y2a{bottom:411.129333pt;}
.y35{bottom:412.695333pt;}
.y4b{bottom:419.176400pt;}
.y29{bottom:434.329333pt;}
.y34{bottom:435.895333pt;}
.y28{bottom:457.529333pt;}
.y33{bottom:459.095333pt;}
.y27{bottom:480.729333pt;}
.y32{bottom:482.295333pt;}
.y4a{bottom:500.456400pt;}
.y26{bottom:503.929333pt;}
.y31{bottom:505.495333pt;}
.y25{bottom:527.129333pt;}
.y30{bottom:528.695333pt;}
.y49{bottom:541.096400pt;}
.y24{bottom:550.329333pt;}
.y2f{bottom:551.895333pt;}
.y23{bottom:573.529333pt;}
.y2e{bottom:575.095333pt;}
.y42{bottom:627.105467pt;}
.y40{bottom:627.411467pt;}
.y65{bottom:654.820667pt;}
.y41{bottom:667.746133pt;}
.y3f{bottom:668.052133pt;}
.y5d{bottom:1029.075467pt;}
.y62{bottom:1045.539067pt;}
.y63{bottom:1047.563333pt;}
.y61{bottom:1115.874933pt;}
.y60{bottom:1156.514933pt;}
.y5b{bottom:1166.986133pt;}
.y5f{bottom:1197.154933pt;}
.y88{bottom:1244.490667pt;}
.y87{bottom:1285.130667pt;}
.y59{bottom:1295.725067pt;}
.y6b{bottom:1311.986800pt;}
.y86{bottom:1325.770667pt;}
.y85{bottom:1366.410667pt;}
.y6a{bottom:1375.991600pt;}
.y84{bottom:1407.050667pt;}
.y69{bottom:1439.991467pt;}
.y83{bottom:1447.690667pt;}
.y68{bottom:1480.631467pt;}
.y67{bottom:1521.271467pt;}
.y82{bottom:1552.575733pt;}
.y66{bottom:1561.911467pt;}
.y81{bottom:1593.215733pt;}
.y4e{bottom:1665.423867pt;}
.y80{bottom:1674.495733pt;}
.y4d{bottom:1706.063867pt;}
.y7f{bottom:1715.135733pt;}
.y7a{bottom:1717.845067pt;}
.y52{bottom:1738.040533pt;}
.y7e{bottom:1755.775733pt;}
.y79{bottom:1758.485067pt;}
.y64{bottom:1764.050000pt;}
.y7d{bottom:1796.415733pt;}
.y78{bottom:1799.125067pt;}
.y5c{bottom:1890.264133pt;}
.y5a{bottom:1890.374133pt;}
.y51{bottom:1891.143333pt;}
.y50{bottom:1961.447333pt;}
.y58{bottom:1987.334933pt;}
.y4f{bottom:2031.751333pt;}
.y77{bottom:2052.888000pt;}
.y76{bottom:2093.528000pt;}
.y70{bottom:2146.326133pt;}
.y57{bottom:2180.603867pt;}
.y6f{bottom:2186.966133pt;}
.y73{bottom:2194.382933pt;}
.y75{bottom:2222.085867pt;}
.y7c{bottom:2222.492267pt;}
.y5e{bottom:2227.433600pt;}
.y6e{bottom:2227.606133pt;}
.y72{bottom:2235.022933pt;}
.y74{bottom:2262.725867pt;}
.y7b{bottom:2263.132267pt;}
.y6d{bottom:2268.246133pt;}
.y71{bottom:2275.662933pt;}
.y54{bottom:2283.560533pt;}
.y55{bottom:2284.375600pt;}
.y53{bottom:2291.058000pt;}
.y6c{bottom:2308.886133pt;}
.y56{bottom:2338.681600pt;}
.y3e{bottom:2447.335333pt;}
.y3d{bottom:2470.535333pt;}
.y3c{bottom:2493.735333pt;}
.y3b{bottom:2516.935333pt;}
.y3a{bottom:2540.135333pt;}
.y39{bottom:2563.335333pt;}
.y44{bottom:2619.744800pt;}
.y43{bottom:2660.385467pt;}
.y48{bottom:2826.974933pt;}
.y16{bottom:2827.724000pt;}
.y1f{bottom:2829.335325pt;}
.y13{bottom:2829.373467pt;}
.ya{bottom:2829.425413pt;}
.y1e{bottom:2846.332765pt;}
.y12{bottom:2846.370907pt;}
.y9{bottom:2846.422853pt;}
.y1d{bottom:2863.330205pt;}
.y11{bottom:2863.368347pt;}
.y8{bottom:2863.420293pt;}
.y47{bottom:2866.971467pt;}
.y1c{bottom:2880.327645pt;}
.y10{bottom:2880.365787pt;}
.y7{bottom:2880.417733pt;}
.y15{bottom:2883.724000pt;}
.y1b{bottom:2897.325085pt;}
.yf{bottom:2897.363227pt;}
.y6{bottom:2897.415173pt;}
.y46{bottom:2906.968000pt;}
.y1a{bottom:2914.322525pt;}
.ye{bottom:2914.360667pt;}
.y5{bottom:2914.412613pt;}
.yb{bottom:2928.501333pt;}
.y17{bottom:2928.518267pt;}
.y14{bottom:2929.057333pt;}
.y19{bottom:2931.178320pt;}
.y4{bottom:2931.410053pt;}
.yd{bottom:2933.757867pt;}
.y45{bottom:2946.964533pt;}
.y18{bottom:2948.175760pt;}
.y3{bottom:2948.407493pt;}
.yc{bottom:2949.757867pt;}
.y2{bottom:2965.404933pt;}
.y22{bottom:3060.570267pt;}
.y21{bottom:3060.710560pt;}
.y20{bottom:3140.500000pt;}
.h17{height:29.165472pt;}
.h5{height:38.359375pt;}
.h3{height:40.750698pt;}
.ha{height:55.621094pt;}
.h15{height:69.046875pt;}
.h2{height:92.062500pt;}
.hb{height:109.339062pt;}
.h6{height:137.750000pt;}
.h7{height:180.796875pt;}
.h14{height:187.684375pt;}
.hc{height:189.147969pt;}
.h4{height:189.228466pt;}
.h10{height:189.234062pt;}
.h8{height:214.667878pt;}
.hd{height:258.280664pt;}
.h13{height:295.541459pt;}
.h12{height:295.543148pt;}
.h11{height:295.543849pt;}
.he{height:295.559112pt;}
.hf{height:295.561138pt;}
.h16{height:318.921623pt;}
.h9{height:536.212537pt;}
.h0{height:3329.760000pt;}
.h1{height:3330.000000pt;}
.w1{width:2396.000000pt;}
.w0{width:2396.226667pt;}
.x0{left:0.000000pt;}
.xb{left:160.317733pt;}
.x9{left:169.281469pt;}
.x7{left:170.371733pt;}
.x3a{left:172.605867pt;}
.x3c{left:180.395200pt;}
.x3b{left:189.471467pt;}
.x39{left:213.686133pt;}
.xc{left:243.039067pt;}
.x10{left:248.179733pt;}
.x1f{left:292.671200pt;}
.x38{left:311.593067pt;}
.x21{left:338.075867pt;}
.x36{left:342.175333pt;}
.x20{left:350.730587pt;}
.x35{left:353.791600pt;}
.x37{left:384.666667pt;}
.xf{left:385.679733pt;}
.x1e{left:388.056667pt;}
.x1d{left:403.872400pt;}
.x25{left:429.666400pt;}
.x8{left:430.900400pt;}
.x55{left:482.196000pt;}
.x2d{left:520.592400pt;}
.x24{left:539.577067pt;}
.x54{left:559.489365pt;}
.x33{left:579.334000pt;}
.x1{left:601.149733pt;}
.x53{left:610.646533pt;}
.x3f{left:623.269600pt;}
.x3d{left:631.431467pt;}
.x3e{left:679.318933pt;}
.x6{left:718.506533pt;}
.x14{left:742.002000pt;}
.x13{left:862.492800pt;}
.x3{left:899.598933pt;}
.x5{left:901.408267pt;}
.x32{left:1007.769067pt;}
.x23{left:1010.322533pt;}
.x19{left:1048.339867pt;}
.x1c{left:1055.795200pt;}
.x2e{left:1086.208267pt;}
.x1b{left:1092.235733pt;}
.x1a{left:1130.708267pt;}
.x34{left:1161.423600pt;}
.xe{left:1227.705067pt;}
.x4{left:1248.011733pt;}
.xd{left:1425.736400pt;}
.x11{left:1444.777333pt;}
.x12{left:1461.089867pt;}
.x26{left:1514.196933pt;}
.x48{left:1598.561867pt;}
.x47{left:1612.582667pt;}
.x15{left:1618.064933pt;}
.x49{left:1623.081333pt;}
.x17{left:1625.210800pt;}
.x16{left:1638.554267pt;}
.x18{left:1661.820667pt;}
.x31{left:1699.643867pt;}
.x56{left:1710.595733pt;}
.x30{left:1726.406667pt;}
.x22{left:1767.466133pt;}
.x27{left:1771.524133pt;}
.x2f{left:1786.689333pt;}
.xa{left:1789.624034pt;}
.x46{left:1828.855200pt;}
.x44{left:1841.792267pt;}
.x2{left:1851.882800pt;}
.x45{left:1866.277867pt;}
.x2a{left:1955.526667pt;}
.x2b{left:1992.474933pt;}
.x42{left:2005.571467pt;}
.x4d{left:2011.532000pt;}
.x4c{left:2019.964800pt;}
.x4f{left:2028.025067pt;}
.x4b{left:2032.969600pt;}
.x40{left:2038.964000pt;}
.x41{left:2040.521867pt;}
.x43{left:2044.416533pt;}
.x52{left:2063.280267pt;}
.x4e{left:2065.650933pt;}
.x50{left:2073.474133pt;}
.x4a{left:2078.723467pt;}
.x29{left:2080.384133pt;}
.x51{left:2086.749867pt;}
.x2c{left:2107.675467pt;}
.x28{left:2153.266267pt;}
}




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