
    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_0e12c647e6efc94339dc6651.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.124000;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739746;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_45d9c5a942092f7da99b5ae5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_2b5f0b020acf80df329c590e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.066000;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_70989bf465bdd6b46d4da734.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.875000;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_e0db7c56c5a324be3e3d21f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.875000;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_4d0333002e38e407e4278ed7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.246000;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_54f0ed554e57cb3029908342.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_5a3e069adf51910534fca14f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_616903dbf38188fea7ccee2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.924805;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:ffb;src:url('chunks/assets/font_ae574ec071a1005b7f85e6b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.875000;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.361200px;}
.ls9{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.278400px;}
.lsb{letter-spacing:-0.048240px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.248400px;}
.ls8{letter-spacing:0.339600px;}
.lsc{letter-spacing:0.349800px;}
.ls1{letter-spacing:46.671120px;}
.ls2{letter-spacing:186.084000px;}
.ls3{letter-spacing:186.264000px;}
.ls0{letter-spacing:194.400000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,70,133),0 0.015em rgb(0,70,133),0.015em 0 rgb(0,70,133),0 -0.015em  rgb(0,70,133);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,70,133);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-98.640000px;}
.ws7{word-spacing:-72.396000px;}
.ws0{word-spacing:-64.800000px;}
.ws1{word-spacing:-43.200000px;}
.ws9{word-spacing:-32.544000px;}
.ws4{word-spacing:-26.848800px;}
.ws8{word-spacing:-24.408000px;}
.ws5{word-spacing:-21.641760px;}
.wsd{word-spacing:-1.108080px;}
.wsc{word-spacing:-0.817560px;}
.wsb{word-spacing:-0.443952px;}
.wsa{word-spacing:-0.432000px;}
.wse{word-spacing:0.000000px;}
.ws2{word-spacing:0.792000px;}
.ws3{word-spacing:1.080000px;}
._4{margin-left:-2.700000px;}
._1{margin-left:-1.296000px;}
._0{width:1.188000px;}
._2{width:2.784000px;}
._8{width:22.689360px;}
._6{width:25.754400px;}
._7{width:31.392000px;}
._3{width:49.258080px;}
._5{width:1274.836800px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,70,133);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(1,80,114);}
.fs8{font-size:95.760000px;}
.fs9{font-size:98.640000px;}
.fsa{font-size:108.000000px;}
.fs7{font-size:118.800000px;}
.fsd{font-size:120.240000px;}
.fsb{font-size:144.000000px;}
.fsc{font-size:144.144000px;}
.fsf{font-size:192.240000px;}
.fse{font-size:192.384000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:216.144000px;}
.fs3{font-size:239.760000px;}
.fs10{font-size:264.384000px;}
.fs6{font-size:288.000000px;}
.fs0{font-size:324.000000px;}
.fs5{font-size:396.000000px;}
.fs4{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:59.364000px;}
.y9{bottom:131.364000px;}
.y54{bottom:139.140000px;}
.y51{bottom:139.170000px;}
.y5b{bottom:139.215000px;}
.y6e{bottom:268.740000px;}
.y6c{bottom:311.940000px;}
.y1b{bottom:444.270000px;}
.y19{bottom:516.270000px;}
.y75{bottom:527.940000px;}
.y73{bottom:571.140000px;}
.y18{bottom:588.270000px;}
.y71{bottom:614.340000px;}
.y70{bottom:657.540000px;}
.y17{bottom:660.270000px;}
.y16{bottom:732.270000px;}
.y15{bottom:804.270000px;}
.y14{bottom:876.270000px;}
.y13{bottom:948.270000px;}
.y12{bottom:1020.270000px;}
.y11{bottom:1092.270000px;}
.y10{bottom:1164.135000px;}
.y1a{bottom:1164.270000px;}
.y82{bottom:1743.120000px;}
.y7e{bottom:1872.540000px;}
.y7d{bottom:1930.140000px;}
.y80{bottom:1930.170000px;}
.y7f{bottom:1987.770000px;}
.y6a{bottom:2109.930000px;}
.y69{bottom:2167.560000px;}
.y6f{bottom:2416.500000px;}
.y81{bottom:2479.065000px;}
.y7a{bottom:2524.500000px;}
.y8{bottom:2686.890000px;}
.y78{bottom:2697.300000px;}
.y7c{bottom:2739.600000px;}
.y76{bottom:2751.300000px;}
.y7{bottom:2751.690000px;}
.y6b{bottom:2762.100000px;}
.y7b{bottom:2793.240000px;}
.y6{bottom:2816.490000px;}
.y79{bottom:2836.440000px;}
.y5{bottom:2881.335000px;}
.y77{bottom:2890.440000px;}
.y4{bottom:2946.135000px;}
.y74{bottom:2987.640000px;}
.y3{bottom:3010.935000px;}
.y72{bottom:3030.840000px;}
.y6d{bottom:3074.040000px;}
.y2{bottom:3075.735000px;}
.y65{bottom:3081.780000px;}
.y63{bottom:3135.780000px;}
.y67{bottom:3160.080000px;}
.y61{bottom:3189.780000px;}
.y22{bottom:3203.895000px;}
.y4c{bottom:3217.035000px;}
.y66{bottom:3220.950000px;}
.y4a{bottom:3227.325000px;}
.y21{bottom:3239.535000px;}
.y5f{bottom:3243.780000px;}
.y64{bottom:3274.995000px;}
.y4e{bottom:3278.160000px;}
.y48{bottom:3293.430000px;}
.y5d{bottom:3297.780000px;}
.y2d{bottom:3300.015000px;}
.y43{bottom:3306.885000px;}
.y62{bottom:3328.995000px;}
.y45{bottom:3347.610000px;}
.y49{bottom:3350.850000px;}
.y5a{bottom:3351.780000px;}
.y28{bottom:3382.200000px;}
.y60{bottom:3382.995000px;}
.y44{bottom:3383.250000px;}
.y41{bottom:3414.315000px;}
.y5e{bottom:3436.995000px;}
.y40{bottom:3446.715000px;}
.y2f{bottom:3452.250000px;}
.y47{bottom:3457.770000px;}
.y30{bottom:3475.875000px;}
.y5c{bottom:3490.995000px;}
.y59{bottom:3499.200000px;}
.y2e{bottom:3508.230000px;}
.y3b{bottom:3534.840000px;}
.y34{bottom:3551.760000px;}
.y46{bottom:3552.660000px;}
.y58{bottom:3553.200000px;}
.y4f{bottom:3559.680000px;}
.y3a{bottom:3570.480000px;}
.y27{bottom:3573.900000px;}
.y33{bottom:3581.460000px;}
.y68{bottom:3582.000000px;}
.y2a{bottom:3586.320000px;}
.y57{bottom:3607.200000px;}
.y32{bottom:3622.320000px;}
.y39{bottom:3627.000000px;}
.y2c{bottom:3655.620000px;}
.y38{bottom:3656.700000px;}
.y3d{bottom:3658.500000px;}
.y56{bottom:3661.200000px;}
.y23{bottom:3669.120000px;}
.y29{bottom:3701.130000px;}
.y4d{bottom:3710.055000px;}
.y55{bottom:3715.200000px;}
.y37{bottom:3731.145000px;}
.y4b{bottom:3746.235000px;}
.y53{bottom:3769.200000px;}
.y1e{bottom:3772.800000px;}
.y3c{bottom:3791.190000px;}
.y3f{bottom:3806.025000px;}
.y1d{bottom:3808.440000px;}
.y35{bottom:3813.300000px;}
.y52{bottom:3823.200000px;}
.y3e{bottom:3841.665000px;}
.y31{bottom:3871.830000px;}
.y50{bottom:3877.200000px;}
.y36{bottom:3890.235000px;}
.y2b{bottom:3902.730000px;}
.y20{bottom:3913.710000px;}
.y26{bottom:3943.980000px;}
.y1f{bottom:3949.350000px;}
.y25{bottom:3972.780000px;}
.y42{bottom:3973.650000px;}
.y1c{bottom:3981.420000px;}
.y24{bottom:4001.580000px;}
.y1{bottom:4087.185000px;}
.yf{bottom:4088.010000px;}
.ye{bottom:4247.820000px;}
.yd{bottom:4338.900000px;}
.yc{bottom:4457.700000px;}
.yb{bottom:4584.960000px;}
.he{height:70.367695px;}
.hd{height:95.245664px;}
.h13{height:105.089760px;}
.hf{height:107.419922px;}
.hc{height:118.161914px;}
.h11{height:143.226562px;}
.h12{height:143.369789px;}
.h3{height:188.784000px;}
.h4{height:188.909856px;}
.h15{height:191.207461px;}
.h14{height:191.350688px;}
.h5{height:205.953840px;}
.h6{height:206.912880px;}
.h19{height:228.163392px;}
.hb{height:238.472227px;}
.ha{height:245.496445px;}
.h9{height:264.672000px;}
.h2{height:278.316000px;}
.h18{height:279.612000px;}
.h10{height:302.580000px;}
.h8{height:338.580000px;}
.h7{height:410.605200px;}
.h16{height:604.980000px;}
.h17{height:1209.780000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w5{width:309.240000px;}
.w4{width:690.840000px;}
.w3{width:691.020000px;}
.w6{width:1072.620000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x3f{left:11.055000px;}
.x56{left:137.951947px;}
.x1{left:155.084947px;}
.x8{left:173.444947px;}
.x38{left:215.609947px;}
.x2{left:222.584947px;}
.x19{left:229.709947px;}
.x9{left:240.944947px;}
.x1a{left:268.889947px;}
.x2e{left:322.994947px;}
.x2f{left:338.474947px;}
.x17{left:353.849947px;}
.x16{left:380.309947px;}
.x1f{left:381.494947px;}
.x4{left:431.129947px;}
.x22{left:453.959947px;}
.x1c{left:455.399947px;}
.x18{left:471.929947px;}
.x3b{left:484.199947px;}
.x37{left:513.329947px;}
.x21{left:555.224947px;}
.x39{left:600.119947px;}
.x2a{left:623.594947px;}
.x2b{left:635.834947px;}
.x28{left:702.749947px;}
.x27{left:754.709947px;}
.xe{left:763.889947px;}
.x6{left:770.969947px;}
.x29{left:773.129947px;}
.x2c{left:859.934947px;}
.x1d{left:876.674947px;}
.x3a{left:878.219947px;}
.x5{left:901.289947px;}
.x32{left:980.819947px;}
.x2d{left:1007.249947px;}
.x23{left:1048.469947px;}
.x26{left:1055.984947px;}
.x47{left:1097.309947px;}
.x46{left:1121.069947px;}
.x3{left:1130.474947px;}
.x35{left:1135.184947px;}
.x11{left:1148.684947px;}
.xa{left:1161.029947px;}
.x3c{left:1183.139947px;}
.xf{left:1186.919947px;}
.x1e{left:1197.974947px;}
.x12{left:1207.004947px;}
.x1b{left:1220.114947px;}
.xb{left:1228.574947px;}
.x13{left:1289.189947px;}
.x33{left:1291.604947px;}
.x34{left:1304.204947px;}
.x14{left:1312.949947px;}
.x36{left:1317.389947px;}
.x24{left:1329.149947px;}
.x20{left:1351.589947px;}
.x25{left:1359.719947px;}
.x10{left:1395.539947px;}
.x15{left:1475.564947px;}
.x3d{left:1514.189947px;}
.x30{left:1541.879947px;}
.x53{left:1553.504947px;}
.x52{left:1577.264947px;}
.x31{left:1594.079947px;}
.x7{left:1985.579947px;}
.x3e{left:2006.640000px;}
.x55{left:2127.959947px;}
.x54{left:2151.719947px;}
.x48{left:2157.914947px;}
.x4e{left:2177.894947px;}
.x41{left:2203.274947px;}
.x42{left:2267.534947px;}
.x43{left:2309.654947px;}
.xc{left:2313.254947px;}
.x49{left:2315.700000px;}
.x45{left:2340.104947px;}
.xd{left:2380.754947px;}
.x4f{left:2447.429947px;}
.x4b{left:2459.309947px;}
.x50{left:2478.209947px;}
.x4c{left:2509.889947px;}
.x4a{left:2532.569947px;}
.x44{left:2559.854947px;}
.x51{left:2561.009947px;}
.x4d{left:2635.349947px;}
.x40{left:2697.480000px;}
.x57{left:2927.519947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.321067pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.247467pt;}
.lsb{letter-spacing:-0.042880pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.220800pt;}
.ls8{letter-spacing:0.301867pt;}
.lsc{letter-spacing:0.310933pt;}
.ls1{letter-spacing:41.485440pt;}
.ls2{letter-spacing:165.408000pt;}
.ls3{letter-spacing:165.568000pt;}
.ls0{letter-spacing:172.800000pt;}
.ws6{word-spacing:-87.680000pt;}
.ws7{word-spacing:-64.352000pt;}
.ws0{word-spacing:-57.600000pt;}
.ws1{word-spacing:-38.400000pt;}
.ws9{word-spacing:-28.928000pt;}
.ws4{word-spacing:-23.865600pt;}
.ws8{word-spacing:-21.696000pt;}
.ws5{word-spacing:-19.237120pt;}
.wsd{word-spacing:-0.984960pt;}
.wsc{word-spacing:-0.726720pt;}
.wsb{word-spacing:-0.394624pt;}
.wsa{word-spacing:-0.384000pt;}
.wse{word-spacing:0.000000pt;}
.ws2{word-spacing:0.704000pt;}
.ws3{word-spacing:0.960000pt;}
._4{margin-left:-2.400000pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.056000pt;}
._2{width:2.474667pt;}
._8{width:20.168320pt;}
._6{width:22.892800pt;}
._7{width:27.904000pt;}
._3{width:43.784960pt;}
._5{width:1133.188267pt;}
.fs8{font-size:85.120000pt;}
.fs9{font-size:87.680000pt;}
.fsa{font-size:96.000000pt;}
.fs7{font-size:105.600000pt;}
.fsd{font-size:106.880000pt;}
.fsb{font-size:128.000000pt;}
.fsc{font-size:128.128000pt;}
.fsf{font-size:170.880000pt;}
.fse{font-size:171.008000pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:192.128000pt;}
.fs3{font-size:213.120000pt;}
.fs10{font-size:235.008000pt;}
.fs6{font-size:256.000000pt;}
.fs0{font-size:288.000000pt;}
.fs5{font-size:352.000000pt;}
.fs4{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:52.768000pt;}
.y9{bottom:116.768000pt;}
.y54{bottom:123.680000pt;}
.y51{bottom:123.706667pt;}
.y5b{bottom:123.746667pt;}
.y6e{bottom:238.880000pt;}
.y6c{bottom:277.280000pt;}
.y1b{bottom:394.906667pt;}
.y19{bottom:458.906667pt;}
.y75{bottom:469.280000pt;}
.y73{bottom:507.680000pt;}
.y18{bottom:522.906667pt;}
.y71{bottom:546.080000pt;}
.y70{bottom:584.480000pt;}
.y17{bottom:586.906667pt;}
.y16{bottom:650.906667pt;}
.y15{bottom:714.906667pt;}
.y14{bottom:778.906667pt;}
.y13{bottom:842.906667pt;}
.y12{bottom:906.906667pt;}
.y11{bottom:970.906667pt;}
.y10{bottom:1034.786667pt;}
.y1a{bottom:1034.906667pt;}
.y82{bottom:1549.440000pt;}
.y7e{bottom:1664.480000pt;}
.y7d{bottom:1715.680000pt;}
.y80{bottom:1715.706667pt;}
.y7f{bottom:1766.906667pt;}
.y6a{bottom:1875.493333pt;}
.y69{bottom:1926.720000pt;}
.y6f{bottom:2148.000000pt;}
.y81{bottom:2203.613333pt;}
.y7a{bottom:2244.000000pt;}
.y8{bottom:2388.346667pt;}
.y78{bottom:2397.600000pt;}
.y7c{bottom:2435.200000pt;}
.y76{bottom:2445.600000pt;}
.y7{bottom:2445.946667pt;}
.y6b{bottom:2455.200000pt;}
.y7b{bottom:2482.880000pt;}
.y6{bottom:2503.546667pt;}
.y79{bottom:2521.280000pt;}
.y5{bottom:2561.186667pt;}
.y77{bottom:2569.280000pt;}
.y4{bottom:2618.786667pt;}
.y74{bottom:2655.680000pt;}
.y3{bottom:2676.386667pt;}
.y72{bottom:2694.080000pt;}
.y6d{bottom:2732.480000pt;}
.y2{bottom:2733.986667pt;}
.y65{bottom:2739.360000pt;}
.y63{bottom:2787.360000pt;}
.y67{bottom:2808.960000pt;}
.y61{bottom:2835.360000pt;}
.y22{bottom:2847.906667pt;}
.y4c{bottom:2859.586667pt;}
.y66{bottom:2863.066667pt;}
.y4a{bottom:2868.733333pt;}
.y21{bottom:2879.586667pt;}
.y5f{bottom:2883.360000pt;}
.y64{bottom:2911.106667pt;}
.y4e{bottom:2913.920000pt;}
.y48{bottom:2927.493333pt;}
.y5d{bottom:2931.360000pt;}
.y2d{bottom:2933.346667pt;}
.y43{bottom:2939.453333pt;}
.y62{bottom:2959.106667pt;}
.y45{bottom:2975.653333pt;}
.y49{bottom:2978.533333pt;}
.y5a{bottom:2979.360000pt;}
.y28{bottom:3006.400000pt;}
.y60{bottom:3007.106667pt;}
.y44{bottom:3007.333333pt;}
.y41{bottom:3034.946667pt;}
.y5e{bottom:3055.106667pt;}
.y40{bottom:3063.746667pt;}
.y2f{bottom:3068.666667pt;}
.y47{bottom:3073.573333pt;}
.y30{bottom:3089.666667pt;}
.y5c{bottom:3103.106667pt;}
.y59{bottom:3110.400000pt;}
.y2e{bottom:3118.426667pt;}
.y3b{bottom:3142.080000pt;}
.y34{bottom:3157.120000pt;}
.y46{bottom:3157.920000pt;}
.y58{bottom:3158.400000pt;}
.y4f{bottom:3164.160000pt;}
.y3a{bottom:3173.760000pt;}
.y27{bottom:3176.800000pt;}
.y33{bottom:3183.520000pt;}
.y68{bottom:3184.000000pt;}
.y2a{bottom:3187.840000pt;}
.y57{bottom:3206.400000pt;}
.y32{bottom:3219.840000pt;}
.y39{bottom:3224.000000pt;}
.y2c{bottom:3249.440000pt;}
.y38{bottom:3250.400000pt;}
.y3d{bottom:3252.000000pt;}
.y56{bottom:3254.400000pt;}
.y23{bottom:3261.440000pt;}
.y29{bottom:3289.893333pt;}
.y4d{bottom:3297.826667pt;}
.y55{bottom:3302.400000pt;}
.y37{bottom:3316.573333pt;}
.y4b{bottom:3329.986667pt;}
.y53{bottom:3350.400000pt;}
.y1e{bottom:3353.600000pt;}
.y3c{bottom:3369.946667pt;}
.y3f{bottom:3383.133333pt;}
.y1d{bottom:3385.280000pt;}
.y35{bottom:3389.600000pt;}
.y52{bottom:3398.400000pt;}
.y3e{bottom:3414.813333pt;}
.y31{bottom:3441.626667pt;}
.y50{bottom:3446.400000pt;}
.y36{bottom:3457.986667pt;}
.y2b{bottom:3469.093333pt;}
.y20{bottom:3478.853333pt;}
.y26{bottom:3505.760000pt;}
.y1f{bottom:3510.533333pt;}
.y25{bottom:3531.360000pt;}
.y42{bottom:3532.133333pt;}
.y1c{bottom:3539.040000pt;}
.y24{bottom:3556.960000pt;}
.y1{bottom:3633.053333pt;}
.yf{bottom:3633.786667pt;}
.ye{bottom:3775.840000pt;}
.yd{bottom:3856.800000pt;}
.yc{bottom:3962.400000pt;}
.yb{bottom:4075.520000pt;}
.he{height:62.549062pt;}
.hd{height:84.662813pt;}
.h13{height:93.413120pt;}
.hf{height:95.484375pt;}
.hc{height:105.032813pt;}
.h11{height:127.312500pt;}
.h12{height:127.439813pt;}
.h3{height:167.808000pt;}
.h4{height:167.919872pt;}
.h15{height:169.962187pt;}
.h14{height:170.089500pt;}
.h5{height:183.070080pt;}
.h6{height:183.922560pt;}
.h19{height:202.811904pt;}
.hb{height:211.975312pt;}
.ha{height:218.219062pt;}
.h9{height:235.264000pt;}
.h2{height:247.392000pt;}
.h18{height:248.544000pt;}
.h10{height:268.960000pt;}
.h8{height:300.960000pt;}
.h7{height:364.982400pt;}
.h16{height:537.760000pt;}
.h17{height:1075.360000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w5{width:274.880000pt;}
.w4{width:614.080000pt;}
.w3{width:614.240000pt;}
.w6{width:953.440000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x3f{left:9.826667pt;}
.x56{left:122.623953pt;}
.x1{left:137.853286pt;}
.x8{left:154.173286pt;}
.x38{left:191.653286pt;}
.x2{left:197.853286pt;}
.x19{left:204.186619pt;}
.x9{left:214.173286pt;}
.x1a{left:239.013286pt;}
.x2e{left:287.106619pt;}
.x2f{left:300.866619pt;}
.x17{left:314.533286pt;}
.x16{left:338.053286pt;}
.x1f{left:339.106619pt;}
.x4{left:383.226619pt;}
.x22{left:403.519953pt;}
.x1c{left:404.799953pt;}
.x18{left:419.493286pt;}
.x3b{left:430.399953pt;}
.x37{left:456.293286pt;}
.x21{left:493.533286pt;}
.x39{left:533.439953pt;}
.x2a{left:554.306619pt;}
.x2b{left:565.186619pt;}
.x28{left:624.666619pt;}
.x27{left:670.853286pt;}
.xe{left:679.013286pt;}
.x6{left:685.306619pt;}
.x29{left:687.226619pt;}
.x2c{left:764.386619pt;}
.x1d{left:779.266619pt;}
.x3a{left:780.639953pt;}
.x5{left:801.146619pt;}
.x32{left:871.839953pt;}
.x2d{left:895.333286pt;}
.x23{left:931.973286pt;}
.x26{left:938.653286pt;}
.x47{left:975.386619pt;}
.x46{left:996.506619pt;}
.x3{left:1004.866619pt;}
.x35{left:1009.053286pt;}
.x11{left:1021.053286pt;}
.xa{left:1032.026619pt;}
.x3c{left:1051.679953pt;}
.xf{left:1055.039953pt;}
.x1e{left:1064.866619pt;}
.x12{left:1072.893286pt;}
.x1b{left:1084.546619pt;}
.xb{left:1092.066619pt;}
.x13{left:1145.946619pt;}
.x33{left:1148.093286pt;}
.x34{left:1159.293286pt;}
.x14{left:1167.066619pt;}
.x36{left:1171.013286pt;}
.x24{left:1181.466619pt;}
.x20{left:1201.413286pt;}
.x25{left:1208.639953pt;}
.x10{left:1240.479953pt;}
.x15{left:1311.613286pt;}
.x3d{left:1345.946619pt;}
.x30{left:1370.559953pt;}
.x53{left:1380.893286pt;}
.x52{left:1402.013286pt;}
.x31{left:1416.959953pt;}
.x7{left:1764.959953pt;}
.x3e{left:1783.680000pt;}
.x55{left:1891.519953pt;}
.x54{left:1912.639953pt;}
.x48{left:1918.146619pt;}
.x4e{left:1935.906619pt;}
.x41{left:1958.466619pt;}
.x42{left:2015.586619pt;}
.x43{left:2053.026619pt;}
.xc{left:2056.226619pt;}
.x49{left:2058.400000pt;}
.x45{left:2080.093286pt;}
.xd{left:2116.226619pt;}
.x4f{left:2175.493286pt;}
.x4b{left:2186.053286pt;}
.x50{left:2202.853286pt;}
.x4c{left:2231.013286pt;}
.x4a{left:2251.173286pt;}
.x44{left:2275.426619pt;}
.x51{left:2276.453286pt;}
.x4d{left:2342.533286pt;}
.x40{left:2397.760000pt;}
.x57{left:2602.239953pt;}
}




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