
    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_a2e05144ab30323169ad3633.woff')format("woff");}.ff1{font-family:ff1;line-height:1.032000;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_641ef6a08491aca2ded07d99.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_a3c23fde7a8ef4a112b0f6b6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_d98f04b126b60ba3c201a8aa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.745117;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_d4b08423be31597c243eda9b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.980500;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);}
.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:-6.048000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:40.500000px;}
.ls8{letter-spacing:-0.338400px;}
.ls10{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.079800px;}
.ls11{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.106800px;}
.ls1a{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.306600px;}
.lse{letter-spacing:0.306720px;}
.ls18{letter-spacing:28.776000px;}
.ls19{letter-spacing:28.800000px;}
.ls1{letter-spacing:57.549600px;}
.ls2{letter-spacing:57.600000px;}
.ls14{letter-spacing:57.729600px;}
.lsc{letter-spacing:57.780000px;}
.ls4{letter-spacing:61.833600px;}
.ls7{letter-spacing:61.884000px;}
.ls15{letter-spacing:62.013600px;}
.ls5{letter-spacing:62.064000px;}
.lsb{letter-spacing:65.865600px;}
.ls9{letter-spacing:65.916000px;}
.lsa{letter-spacing:66.096000px;}
.ls12{letter-spacing:68.133600px;}
.ls6{letter-spacing:68.184000px;}
.ls16{letter-spacing:82.800000px;}
.ls13{letter-spacing:1063.133280px;}
.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;}
}
.ws7{word-spacing:-66.653280px;}
.ws1{word-spacing:-66.573480px;}
.ws10{word-spacing:-48.438720px;}
.ws11{word-spacing:-40.072032px;}
.ws12{word-spacing:-40.032000px;}
.wse{word-spacing:-36.669312px;}
.ws6{word-spacing:-33.426720px;}
.wsd{word-spacing:-31.625280px;}
.ws9{word-spacing:-30.024000px;}
.ws5{word-spacing:-20.016000px;}
.wsf{word-spacing:-18.414720px;}
.ws3{word-spacing:-16.653312px;}
.ws2{word-spacing:-16.613280px;}
.wsb{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.506480px;}
.ws4{word-spacing:-16.314912px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:980.626920px;}
.ws8{word-spacing:997.306800px;}
.ws13{word-spacing:3277.176000px;}
._3{margin-left:-4586.477232px;}
._e{margin-left:-27.092880px;}
._7{margin-left:-14.230080px;}
._8{margin-left:-13.186800px;}
._d{margin-left:-11.321856px;}
._4{margin-left:-8.064000px;}
._5{margin-left:-6.493824px;}
._c{margin-left:-4.709088px;}
._a{margin-left:-3.370752px;}
._0{margin-left:-2.051712px;}
._1{margin-left:-1.025856px;}
._2{width:1.637568px;}
._b{width:3.526560px;}
._9{width:18.065952px;}
._6{width:61.833600px;}
.fc6{color:rgb(70,110,135);}
.fc4{color:rgb(188,209,226);}
.fc5{color:rgb(220,231,240);}
.fc3{color:transparent;}
.fc2{color:rgb(29,141,176);}
.fc1{color:rgb(47,77,93);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:59.760000px;}
.fsc{font-size:59.904000px;}
.fs15{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs13{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fsf{font-size:108.000000px;}
.fs10{font-size:108.144000px;}
.fsb{font-size:113.760000px;}
.fs14{font-size:113.904000px;}
.fs11{font-size:120.240000px;}
.fs12{font-size:120.384000px;}
.fsa{font-size:131.760000px;}
.fs9{font-size:131.904000px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fs16{font-size:174.240000px;}
.fs17{font-size:174.384000px;}
.fse{font-size:216.000000px;}
.fs8{font-size:239.760000px;}
.fsd{font-size:252.000000px;}
.fs0{font-size:256.320000px;}
.fs1{font-size:256.464000px;}
.fs19{font-size:288.000000px;}
.fs18{font-size:319.680000px;}
.y0{bottom:0.000000px;}
.y98{bottom:13.284000px;}
.y1c{bottom:14.688000px;}
.y61{bottom:27.972000px;}
.y44{bottom:28.332000px;}
.y2e{bottom:31.392000px;}
.y7{bottom:32.544000px;}
.y1b{bottom:32.688000px;}
.y4f{bottom:39.960000px;}
.y6{bottom:123.804000px;}
.y60{bottom:139.608000px;}
.y5{bottom:141.084000px;}
.y4e{bottom:141.804000px;}
.y38{bottom:151.125000px;}
.y56{bottom:153.285000px;}
.y4{bottom:158.400000px;}
.y15{bottom:160.710000px;}
.y6d{bottom:162.825000px;}
.y95{bottom:164.130000px;}
.y5f{bottom:170.025000px;}
.y1a{bottom:179.070000px;}
.yc{bottom:186.270000px;}
.y37{bottom:187.485000px;}
.y7f{bottom:203.220000px;}
.y14{bottom:203.730000px;}
.y88{bottom:204.630000px;}
.y55{bottom:211.470000px;}
.y5e{bottom:213.090000px;}
.y41{bottom:218.130000px;}
.y36{bottom:223.845000px;}
.y28{bottom:224.610000px;}
.y2d{bottom:225.690000px;}
.y8f{bottom:226.410000px;}
.y4d{bottom:226.590000px;}
.y3{bottom:236.805000px;}
.y6c{bottom:242.970000px;}
.y87{bottom:249.630000px;}
.y21{bottom:255.750000px;}
.y5d{bottom:256.290000px;}
.y94{bottom:257.580000px;}
.y54{bottom:262.230000px;}
.y6b{bottom:271.770000px;}
.y8e{bottom:277.170000px;}
.y19{bottom:280.440000px;}
.yb{bottom:293.940000px;}
.y4c{bottom:303.840000px;}
.y13{bottom:305.100000px;}
.y6a{bottom:308.130000px;}
.y35{bottom:311.370000px;}
.y7e{bottom:316.905000px;}
.y53{bottom:320.370000px;}
.y78{bottom:323.205000px;}
.y8d{bottom:327.930000px;}
.y97{bottom:331.275000px;}
.y40{bottom:334.410000px;}
.y7d{bottom:335.625000px;}
.y4b{bottom:338.760000px;}
.y27{bottom:341.070000px;}
.y77{bottom:341.745000px;}
.y2c{bottom:344.085000px;}
.y20{bottom:349.950000px;}
.y5c{bottom:350.070000px;}
.y93{bottom:351.000000px;}
.y69{bottom:351.870000px;}
.y7c{bottom:354.165000px;}
.y22{bottom:359.355000px;}
.y76{bottom:360.465000px;}
.y79{bottom:363.525000px;}
.y8a{bottom:365.865000px;}
.y1f{bottom:368.670000px;}
.y52{bottom:371.160000px;}
.y7b{bottom:375.945000px;}
.y8c{bottom:378.540000px;}
.y7a{bottom:379.005000px;}
.y18{bottom:381.600000px;}
.y75{bottom:382.245000px;}
.y68{bottom:388.230000px;}
.y34{bottom:391.470000px;}
.y5b{bottom:393.300000px;}
.y70{bottom:397.725000px;}
.y2{bottom:398.730000px;}
.y43{bottom:399.240000px;}
.y74{bottom:400.785000px;}
.ya{bottom:401.760000px;}
.y12{bottom:406.440000px;}
.y89{bottom:410.865000px;}
.y6f{bottom:419.505000px;}
.y51{bottom:421.740000px;}
.y4a{bottom:423.390000px;}
.y33{bottom:427.830000px;}
.y8b{bottom:429.300000px;}
.y67{bottom:432.000000px;}
.y81{bottom:432.180000px;}
.y3f{bottom:434.880000px;}
.y5a{bottom:436.320000px;}
.y96{bottom:443.130000px;}
.y92{bottom:444.270000px;}
.y73{bottom:450.930000px;}
.y24{bottom:453.570000px;}
.y26{bottom:457.560000px;}
.y49{bottom:458.310000px;}
.y2b{bottom:460.440000px;}
.y1e{bottom:462.960000px;}
.y72{bottom:468.030000px;}
.y66{bottom:468.360000px;}
.y6e{bottom:471.390000px;}
.y23{bottom:472.290000px;}
.y50{bottom:472.500000px;}
.y1{bottom:475.590000px;}
.y3e{bottom:478.440000px;}
.y59{bottom:479.520000px;}
.y17{bottom:482.970000px;}
.y80{bottom:483.120000px;}
.y3c{bottom:488.055000px;}
.y71{bottom:491.790000px;}
.y48{bottom:493.230000px;}
.y11{bottom:494.310000px;}
.y65{bottom:504.540000px;}
.y86{bottom:504.615000px;}
.y32{bottom:507.960000px;}
.y9{bottom:509.610000px;}
.y42{bottom:515.700000px;}
.y3b{bottom:520.485000px;}
.y3d{bottom:523.260000px;}
.y83{bottom:527.115000px;}
.y10{bottom:533.550000px;}
.y91{bottom:537.690000px;}
.y31{bottom:544.320000px;}
.y64{bottom:548.460000px;}
.y85{bottom:549.615000px;}
.y1d{bottom:552.780000px;}
.y3a{bottom:552.885000px;}
.y82{bottom:572.115000px;}
.y25{bottom:573.870000px;}
.yf{bottom:576.750000px;}
.y47{bottom:577.830000px;}
.y2a{bottom:578.085000px;}
.y30{bottom:580.500000px;}
.y58{bottom:580.890000px;}
.y57{bottom:582.690000px;}
.y16{bottom:584.310000px;}
.y63{bottom:584.670000px;}
.y39{bottom:585.285000px;}
.y84{bottom:594.645000px;}
.y46{bottom:612.795000px;}
.y2f{bottom:616.860000px;}
.y8{bottom:617.295000px;}
.ye{bottom:619.995000px;}
.y62{bottom:621.030000px;}
.y90{bottom:631.155000px;}
.yd{bottom:697.710000px;}
.y29{bottom:699.510000px;}
.y45{bottom:707.835000px;}
.h6{height:43.681992px;}
.hd{height:43.787250px;}
.h16{height:48.418594px;}
.hf{height:52.628906px;}
.h5{height:60.660000px;}
.h4{height:60.781320px;}
.h11{height:78.943359px;}
.h12{height:79.048617px;}
.h3{height:80.677800px;}
.hc{height:83.153672px;}
.h15{height:83.258930px;}
.h13{height:87.890273px;}
.h14{height:87.995531px;}
.hb{height:96.310898px;}
.ha{height:96.416156px;}
.h8{height:105.257812px;}
.h7{height:105.363070px;}
.h17{height:127.361953px;}
.h18{height:127.467211px;}
.h19{height:157.253906px;}
.h10{height:157.886719px;}
.h9{height:175.254258px;}
.he{height:184.201172px;}
.h1{height:215.949600px;}
.h2{height:216.070920px;}
.h1b{height:239.616000px;}
.h1a{height:269.330400px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1b{left:82.835979px;}
.x1a{left:84.599979px;}
.x1c{left:88.055979px;}
.x6{left:101.555979px;}
.x9{left:128.555979px;}
.x19{left:141.515979px;}
.x27{left:149.075979px;}
.x24{left:152.564979px;}
.x7{left:155.549979px;}
.xa{left:169.229979px;}
.x26{left:174.524979px;}
.x25{left:182.519979px;}
.x43{left:184.889979px;}
.x20{left:203.579979px;}
.x8{left:209.594979px;}
.x1e{left:213.869979px;}
.x22{left:221.684979px;}
.x35{left:277.349979px;}
.x40{left:281.084979px;}
.x37{left:302.939979px;}
.x3a{left:313.739979px;}
.xe{left:320.609979px;}
.xd{left:323.489979px;}
.xc{left:325.829979px;}
.xb{left:327.704979px;}
.x36{left:336.779979px;}
.x2a{left:345.749979px;}
.x2b{left:359.249979px;}
.x29{left:365.249979px;}
.x3b{left:400.889979px;}
.x21{left:401.969979px;}
.x28{left:403.229979px;}
.x2{left:432.284979px;}
.x1f{left:502.844979px;}
.x41{left:518.189979px;}
.x34{left:530.714979px;}
.xf{left:533.309979px;}
.x2d{left:542.414979px;}
.x10{left:551.954979px;}
.x42{left:554.219979px;}
.x2e{left:555.914979px;}
.x2c{left:580.829979px;}
.x1{left:601.124979px;}
.x3f{left:617.249979px;}
.x3e{left:628.229979px;}
.x38{left:717.509979px;}
.x14{left:734.504979px;}
.x13{left:736.844979px;}
.x30{left:739.109979px;}
.x12{left:741.344979px;}
.x15{left:744.944979px;}
.x3d{left:747.749979px;}
.x11{left:752.759979px;}
.x3c{left:754.949979px;}
.x2f{left:782.354979px;}
.x1d{left:819.209979px;}
.x39{left:828.749979px;}
.x17{left:924.449979px;}
.x18{left:928.049979px;}
.x32{left:935.789979px;}
.x16{left:945.929979px;}
.x33{left:949.289979px;}
.x31{left:974.009979px;}
.x5{left:995.114979px;}
.x23{left:1000.364979px;}
.x4{left:1058.864979px;}
.x3{left:1064.189979px;}
@media print{
.v2{vertical-align:-5.376000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:36.000000pt;}
.ls8{letter-spacing:-0.300800pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.070933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.094933pt;}
.ls1a{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.272533pt;}
.lse{letter-spacing:0.272640pt;}
.ls18{letter-spacing:25.578667pt;}
.ls19{letter-spacing:25.600000pt;}
.ls1{letter-spacing:51.155200pt;}
.ls2{letter-spacing:51.200000pt;}
.ls14{letter-spacing:51.315200pt;}
.lsc{letter-spacing:51.360000pt;}
.ls4{letter-spacing:54.963200pt;}
.ls7{letter-spacing:55.008000pt;}
.ls15{letter-spacing:55.123200pt;}
.ls5{letter-spacing:55.168000pt;}
.lsb{letter-spacing:58.547200pt;}
.ls9{letter-spacing:58.592000pt;}
.lsa{letter-spacing:58.752000pt;}
.ls12{letter-spacing:60.563200pt;}
.ls6{letter-spacing:60.608000pt;}
.ls16{letter-spacing:73.600000pt;}
.ls13{letter-spacing:945.007360pt;}
.ws7{word-spacing:-59.247360pt;}
.ws1{word-spacing:-59.176427pt;}
.ws10{word-spacing:-43.056640pt;}
.ws11{word-spacing:-35.619584pt;}
.ws12{word-spacing:-35.584000pt;}
.wse{word-spacing:-32.594944pt;}
.ws6{word-spacing:-29.712640pt;}
.wsd{word-spacing:-28.111360pt;}
.ws9{word-spacing:-26.688000pt;}
.ws5{word-spacing:-17.792000pt;}
.wsf{word-spacing:-16.368640pt;}
.ws3{word-spacing:-14.802944pt;}
.ws2{word-spacing:-14.767360pt;}
.wsb{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.672427pt;}
.ws4{word-spacing:-14.502144pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:871.668373pt;}
.ws8{word-spacing:886.494933pt;}
.ws13{word-spacing:2913.045333pt;}
._3{margin-left:-4076.868651pt;}
._e{margin-left:-24.082560pt;}
._7{margin-left:-12.648960pt;}
._8{margin-left:-11.721600pt;}
._d{margin-left:-10.063872pt;}
._4{margin-left:-7.168000pt;}
._5{margin-left:-5.772288pt;}
._c{margin-left:-4.185856pt;}
._a{margin-left:-2.996224pt;}
._0{margin-left:-1.823744pt;}
._1{margin-left:-0.911872pt;}
._2{width:1.455616pt;}
._b{width:3.134720pt;}
._9{width:16.058624pt;}
._6{width:54.963200pt;}
.fs5{font-size:53.120000pt;}
.fsc{font-size:53.248000pt;}
.fs15{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs13{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fsf{font-size:96.000000pt;}
.fs10{font-size:96.128000pt;}
.fsb{font-size:101.120000pt;}
.fs14{font-size:101.248000pt;}
.fs11{font-size:106.880000pt;}
.fs12{font-size:107.008000pt;}
.fsa{font-size:117.120000pt;}
.fs9{font-size:117.248000pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fs16{font-size:154.880000pt;}
.fs17{font-size:155.008000pt;}
.fse{font-size:192.000000pt;}
.fs8{font-size:213.120000pt;}
.fsd{font-size:224.000000pt;}
.fs0{font-size:227.840000pt;}
.fs1{font-size:227.968000pt;}
.fs19{font-size:256.000000pt;}
.fs18{font-size:284.160000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:11.808000pt;}
.y1c{bottom:13.056000pt;}
.y61{bottom:24.864000pt;}
.y44{bottom:25.184000pt;}
.y2e{bottom:27.904000pt;}
.y7{bottom:28.928000pt;}
.y1b{bottom:29.056000pt;}
.y4f{bottom:35.520000pt;}
.y6{bottom:110.048000pt;}
.y60{bottom:124.096000pt;}
.y5{bottom:125.408000pt;}
.y4e{bottom:126.048000pt;}
.y38{bottom:134.333333pt;}
.y56{bottom:136.253333pt;}
.y4{bottom:140.800000pt;}
.y15{bottom:142.853333pt;}
.y6d{bottom:144.733333pt;}
.y95{bottom:145.893333pt;}
.y5f{bottom:151.133333pt;}
.y1a{bottom:159.173333pt;}
.yc{bottom:165.573333pt;}
.y37{bottom:166.653333pt;}
.y7f{bottom:180.640000pt;}
.y14{bottom:181.093333pt;}
.y88{bottom:181.893333pt;}
.y55{bottom:187.973333pt;}
.y5e{bottom:189.413333pt;}
.y41{bottom:193.893333pt;}
.y36{bottom:198.973333pt;}
.y28{bottom:199.653333pt;}
.y2d{bottom:200.613333pt;}
.y8f{bottom:201.253333pt;}
.y4d{bottom:201.413333pt;}
.y3{bottom:210.493333pt;}
.y6c{bottom:215.973333pt;}
.y87{bottom:221.893333pt;}
.y21{bottom:227.333333pt;}
.y5d{bottom:227.813333pt;}
.y94{bottom:228.960000pt;}
.y54{bottom:233.093333pt;}
.y6b{bottom:241.573333pt;}
.y8e{bottom:246.373333pt;}
.y19{bottom:249.280000pt;}
.yb{bottom:261.280000pt;}
.y4c{bottom:270.080000pt;}
.y13{bottom:271.200000pt;}
.y6a{bottom:273.893333pt;}
.y35{bottom:276.773333pt;}
.y7e{bottom:281.693333pt;}
.y53{bottom:284.773333pt;}
.y78{bottom:287.293333pt;}
.y8d{bottom:291.493333pt;}
.y97{bottom:294.466667pt;}
.y40{bottom:297.253333pt;}
.y7d{bottom:298.333333pt;}
.y4b{bottom:301.120000pt;}
.y27{bottom:303.173333pt;}
.y77{bottom:303.773333pt;}
.y2c{bottom:305.853333pt;}
.y20{bottom:311.066667pt;}
.y5c{bottom:311.173333pt;}
.y93{bottom:312.000000pt;}
.y69{bottom:312.773333pt;}
.y7c{bottom:314.813333pt;}
.y22{bottom:319.426667pt;}
.y76{bottom:320.413333pt;}
.y79{bottom:323.133333pt;}
.y8a{bottom:325.213333pt;}
.y1f{bottom:327.706667pt;}
.y52{bottom:329.920000pt;}
.y7b{bottom:334.173333pt;}
.y8c{bottom:336.480000pt;}
.y7a{bottom:336.893333pt;}
.y18{bottom:339.200000pt;}
.y75{bottom:339.773333pt;}
.y68{bottom:345.093333pt;}
.y34{bottom:347.973333pt;}
.y5b{bottom:349.600000pt;}
.y70{bottom:353.533333pt;}
.y2{bottom:354.426667pt;}
.y43{bottom:354.880000pt;}
.y74{bottom:356.253333pt;}
.ya{bottom:357.120000pt;}
.y12{bottom:361.280000pt;}
.y89{bottom:365.213333pt;}
.y6f{bottom:372.893333pt;}
.y51{bottom:374.880000pt;}
.y4a{bottom:376.346667pt;}
.y33{bottom:380.293333pt;}
.y8b{bottom:381.600000pt;}
.y67{bottom:384.000000pt;}
.y81{bottom:384.160000pt;}
.y3f{bottom:386.560000pt;}
.y5a{bottom:387.840000pt;}
.y96{bottom:393.893333pt;}
.y92{bottom:394.906667pt;}
.y73{bottom:400.826667pt;}
.y24{bottom:403.173333pt;}
.y26{bottom:406.720000pt;}
.y49{bottom:407.386667pt;}
.y2b{bottom:409.280000pt;}
.y1e{bottom:411.520000pt;}
.y72{bottom:416.026667pt;}
.y66{bottom:416.320000pt;}
.y6e{bottom:419.013333pt;}
.y23{bottom:419.813333pt;}
.y50{bottom:420.000000pt;}
.y1{bottom:422.746667pt;}
.y3e{bottom:425.280000pt;}
.y59{bottom:426.240000pt;}
.y17{bottom:429.306667pt;}
.y80{bottom:429.440000pt;}
.y3c{bottom:433.826667pt;}
.y71{bottom:437.146667pt;}
.y48{bottom:438.426667pt;}
.y11{bottom:439.386667pt;}
.y65{bottom:448.480000pt;}
.y86{bottom:448.546667pt;}
.y32{bottom:451.520000pt;}
.y9{bottom:452.986667pt;}
.y42{bottom:458.400000pt;}
.y3b{bottom:462.653333pt;}
.y3d{bottom:465.120000pt;}
.y83{bottom:468.546667pt;}
.y10{bottom:474.266667pt;}
.y91{bottom:477.946667pt;}
.y31{bottom:483.840000pt;}
.y64{bottom:487.520000pt;}
.y85{bottom:488.546667pt;}
.y1d{bottom:491.360000pt;}
.y3a{bottom:491.453333pt;}
.y82{bottom:508.546667pt;}
.y25{bottom:510.106667pt;}
.yf{bottom:512.666667pt;}
.y47{bottom:513.626667pt;}
.y2a{bottom:513.853333pt;}
.y30{bottom:516.000000pt;}
.y58{bottom:516.346667pt;}
.y57{bottom:517.946667pt;}
.y16{bottom:519.386667pt;}
.y63{bottom:519.706667pt;}
.y39{bottom:520.253333pt;}
.y84{bottom:528.573333pt;}
.y46{bottom:544.706667pt;}
.y2f{bottom:548.320000pt;}
.y8{bottom:548.706667pt;}
.ye{bottom:551.106667pt;}
.y62{bottom:552.026667pt;}
.y90{bottom:561.026667pt;}
.yd{bottom:620.186667pt;}
.y29{bottom:621.786667pt;}
.y45{bottom:629.186667pt;}
.h6{height:38.828437pt;}
.hd{height:38.922000pt;}
.h16{height:43.038750pt;}
.hf{height:46.781250pt;}
.h5{height:53.920000pt;}
.h4{height:54.027840pt;}
.h11{height:70.171875pt;}
.h12{height:70.265437pt;}
.h3{height:71.713600pt;}
.hc{height:73.914375pt;}
.h15{height:74.007937pt;}
.h13{height:78.124687pt;}
.h14{height:78.218250pt;}
.hb{height:85.609687pt;}
.ha{height:85.703250pt;}
.h8{height:93.562500pt;}
.h7{height:93.656062pt;}
.h17{height:113.210625pt;}
.h18{height:113.304188pt;}
.h19{height:139.781250pt;}
.h10{height:140.343750pt;}
.h9{height:155.781562pt;}
.he{height:163.734375pt;}
.h1{height:191.955200pt;}
.h2{height:192.063040pt;}
.h1b{height:212.992000pt;}
.h1a{height:239.404800pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:73.631981pt;}
.x1a{left:75.199981pt;}
.x1c{left:78.271981pt;}
.x6{left:90.271981pt;}
.x9{left:114.271981pt;}
.x19{left:125.791981pt;}
.x27{left:132.511981pt;}
.x24{left:135.613314pt;}
.x7{left:138.266648pt;}
.xa{left:150.426648pt;}
.x26{left:155.133314pt;}
.x25{left:162.239981pt;}
.x43{left:164.346648pt;}
.x20{left:180.959981pt;}
.x8{left:186.306648pt;}
.x1e{left:190.106648pt;}
.x22{left:197.053314pt;}
.x35{left:246.533314pt;}
.x40{left:249.853314pt;}
.x37{left:269.279981pt;}
.x3a{left:278.879981pt;}
.xe{left:284.986648pt;}
.xd{left:287.546648pt;}
.xc{left:289.626648pt;}
.xb{left:291.293314pt;}
.x36{left:299.359981pt;}
.x2a{left:307.333314pt;}
.x2b{left:319.333314pt;}
.x29{left:324.666648pt;}
.x3b{left:356.346648pt;}
.x21{left:357.306648pt;}
.x28{left:358.426648pt;}
.x2{left:384.253314pt;}
.x1f{left:446.973314pt;}
.x41{left:460.613314pt;}
.x34{left:471.746648pt;}
.xf{left:474.053314pt;}
.x2d{left:482.146648pt;}
.x10{left:490.626648pt;}
.x42{left:492.639981pt;}
.x2e{left:494.146648pt;}
.x2c{left:516.293314pt;}
.x1{left:534.333314pt;}
.x3f{left:548.666648pt;}
.x3e{left:558.426648pt;}
.x38{left:637.786648pt;}
.x14{left:652.893314pt;}
.x13{left:654.973314pt;}
.x30{left:656.986648pt;}
.x12{left:658.973314pt;}
.x15{left:662.173314pt;}
.x3d{left:664.666648pt;}
.x11{left:669.119981pt;}
.x3c{left:671.066648pt;}
.x2f{left:695.426648pt;}
.x1d{left:728.186648pt;}
.x39{left:736.666648pt;}
.x17{left:821.733314pt;}
.x18{left:824.933314pt;}
.x32{left:831.813314pt;}
.x16{left:840.826648pt;}
.x33{left:843.813314pt;}
.x31{left:865.786648pt;}
.x5{left:884.546648pt;}
.x23{left:889.213314pt;}
.x4{left:941.213314pt;}
.x3{left:945.946648pt;}
}




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