
    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_e481633a813a066a7c3cfafb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.230000;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_424fbe9da98ddc243df675cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.230000;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_628679c4b114a6cf55302d9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.163000;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_b1581330a468cf96b63da97c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163000;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d70b345e994da61f44558bc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.230000;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_b74196c3ce020b916d44a07a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.230000;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_0eab517861b835bbef1c19d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_f14a9bf7317812340647e5c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.230000;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_48d429aa3abfbf885f8635fa.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dc3e1a99a6da6e699942918c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690918;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:ffd;src:url('chunks/assets/font_e04a00768276f20b7b077d32.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.184000;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:ffe;src:url('chunks/assets/font_12daa25196e8a549cee6f827.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.851074;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:-71.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.600000px;}
.lsf{letter-spacing:-0.334200px;}
.ls15{letter-spacing:-0.328200px;}
.ls8{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.100800px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.367200px;}
.ls14{letter-spacing:23.040000px;}
.lsd{letter-spacing:32.170320px;}
.ls6{letter-spacing:38.160000px;}
.ls7{letter-spacing:38.280000px;}
.ls17{letter-spacing:40.896000px;}
.ls16{letter-spacing:41.076144px;}
.ls5{letter-spacing:41.472000px;}
.ls18{letter-spacing:41.760000px;}
.ls2{letter-spacing:44.686080px;}
.ls4{letter-spacing:59.565600px;}
.ls3{letter-spacing:59.616000px;}
.ls13{letter-spacing:84.909600px;}
.ls12{letter-spacing:84.960000px;}
.lsc{letter-spacing:104.697216px;}
.lsb{letter-spacing:104.765760px;}
.lse{letter-spacing:104.945760px;}
.ls11{letter-spacing:111.549600px;}
.ls10{letter-spacing:111.600000px;}
.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;}
}
.ws5{word-spacing:-41.369328px;}
.ws4{word-spacing:-41.328000px;}
.ws3{word-spacing:-37.856448px;}
.ws9{word-spacing:-37.815120px;}
.wsb{word-spacing:-34.550208px;}
.ws6{word-spacing:-34.508880px;}
.ws8{word-spacing:-30.169440px;}
.ws2{word-spacing:-27.483120px;}
.ws0{word-spacing:-25.021440px;}
.ws7{word-spacing:-15.570000px;}
.wsa{word-spacing:-14.400000px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-2.406432px;}
._2{margin-left:-1.075680px;}
._0{width:1.602720px;}
._4{width:3.294000px;}
._5{width:4.764960px;}
._8{width:29.579520px;}
._7{width:34.080960px;}
._3{width:38.597280px;}
._6{width:2060.025120px;}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(160,43,147);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(69,66,64);}
.fc4{color:rgb(14,40,65);}
.fc0{color:rgb(92,78,61);}
.fs10{font-size:54.000000px;}
.fs1b{font-size:72.000000px;}
.fs4{font-size:87.840000px;}
.fs9{font-size:95.760000px;}
.fs1f{font-size:95.904000px;}
.fs18{font-size:105.120000px;}
.fs19{font-size:105.264000px;}
.fs14{font-size:108.000000px;}
.fs1e{font-size:113.760000px;}
.fs7{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fs17{font-size:128.880000px;}
.fs3{font-size:131.760000px;}
.fse{font-size:131.904000px;}
.fsa{font-size:138.240000px;}
.fsb{font-size:138.384000px;}
.fsd{font-size:144.000000px;}
.fsf{font-size:144.144000px;}
.fs6{font-size:167.904000px;}
.fs13{font-size:192.240000px;}
.fs12{font-size:192.384000px;}
.fs1d{font-size:195.120000px;}
.fs16{font-size:210.240000px;}
.fs2{font-size:213.120000px;}
.fs1{font-size:213.264000px;}
.fsc{font-size:228.384000px;}
.fs1a{font-size:239.760000px;}
.fs11{font-size:239.904000px;}
.fs1c{font-size:243.504000px;}
.fs15{font-size:261.504000px;}
.fs0{font-size:267.120000px;}
.fs5{font-size:267.264000px;}
.y0{bottom:0.000000px;}
.y60{bottom:3.816000px;}
.y2b{bottom:44.460000px;}
.y50{bottom:50.112000px;}
.y23{bottom:59.724000px;}
.y6c{bottom:66.168000px;}
.y7{bottom:75.564000px;}
.y83{bottom:82.908000px;}
.yf{bottom:92.376000px;}
.y4f{bottom:93.672000px;}
.y6{bottom:115.164000px;}
.y82{bottom:126.108000px;}
.y69{bottom:134.388000px;}
.y74{bottom:135.144000px;}
.y32{bottom:141.876000px;}
.y22{bottom:144.324000px;}
.y18{bottom:146.304000px;}
.y3f{bottom:173.550000px;}
.y73{bottom:174.780000px;}
.y68{bottom:177.585000px;}
.y21{bottom:184.140000px;}
.y77{bottom:187.710000px;}
.y4e{bottom:196.635000px;}
.y29{bottom:200.520000px;}
.y17{bottom:203.190000px;}
.y4b{bottom:212.730000px;}
.y72{bottom:213.690000px;}
.y3e{bottom:215.490000px;}
.y31{bottom:219.855000px;}
.y67{bottom:220.785000px;}
.y20{bottom:223.560000px;}
.y76{bottom:226.590000px;}
.y5{bottom:226.800000px;}
.y4d{bottom:240.225000px;}
.y36{bottom:253.185000px;}
.y4a{bottom:256.290000px;}
.y16{bottom:260.250000px;}
.y66{bottom:264.030000px;}
.y1f{bottom:264.060000px;}
.y5f{bottom:282.810000px;}
.y75{bottom:285.045000px;}
.y58{bottom:288.210000px;}
.y71{bottom:288.690000px;}
.y4c{bottom:299.235000px;}
.y30{bottom:300.930000px;}
.y49{bottom:306.540000px;}
.y35{bottom:316.830000px;}
.y15{bottom:317.340000px;}
.y85{bottom:325.290000px;}
.y5e{bottom:326.010000px;}
.ye{bottom:330.375000px;}
.y57{bottom:331.410000px;}
.y65{bottom:350.430000px;}
.y4{bottom:359.460000px;}
.y3b{bottom:362.955000px;}
.y3d{bottom:363.885000px;}
.yd{bottom:366.405000px;}
.y2a{bottom:366.735000px;}
.y5d{bottom:369.255000px;}
.y80{bottom:371.670000px;}
.y56{bottom:374.655000px;}
.y2f{bottom:383.730000px;}
.y64{bottom:393.630000px;}
.y34{bottom:394.635000px;}
.y1e{bottom:395.850000px;}
.yc{bottom:402.405000px;}
.y3a{bottom:404.895000px;}
.y3c{bottom:405.825000px;}
.y5c{bottom:412.455000px;}
.y7f{bottom:414.690000px;}
.y55{bottom:417.855000px;}
.y7a{bottom:417.960000px;}
.y28{bottom:419.070000px;}
.y7c{bottom:422.790000px;}
.y3{bottom:426.990000px;}
.y48{bottom:427.935000px;}
.y14{bottom:431.280000px;}
.yb{bottom:438.405000px;}
.y7b{bottom:451.590000px;}
.y5b{bottom:455.655000px;}
.y7e{bottom:458.070000px;}
.y54{bottom:461.055000px;}
.y41{bottom:469.515000px;}
.y47{bottom:471.495000px;}
.ya{bottom:474.405000px;}
.y43{bottom:475.125000px;}
.y79{bottom:475.560000px;}
.y1d{bottom:480.090000px;}
.y13{bottom:488.370000px;}
.y33{bottom:490.935000px;}
.y39{bottom:493.050000px;}
.y84{bottom:493.275000px;}
.y5a{bottom:498.855000px;}
.y63{bottom:500.790000px;}
.y7d{bottom:501.120000px;}
.y2e{bottom:503.670000px;}
.y53{bottom:504.255000px;}
.y78{bottom:504.360000px;}
.y40{bottom:510.015000px;}
.y42{bottom:515.625000px;}
.y1c{bottom:519.735000px;}
.y27{bottom:524.880000px;}
.y46{bottom:530.490000px;}
.y12{bottom:545.250000px;}
.y1b{bottom:560.235000px;}
.y26{bottom:568.440000px;}
.y70{bottom:571.860000px;}
.y59{bottom:585.105000px;}
.y62{bottom:587.235000px;}
.y52{bottom:590.505000px;}
.y2{bottom:592.740000px;}
.y11{bottom:602.310000px;}
.y25{bottom:624.240000px;}
.y61{bottom:630.435000px;}
.y2d{bottom:633.885000px;}
.y6f{bottom:641.130000px;}
.y38{bottom:642.060000px;}
.y1a{bottom:646.050000px;}
.y45{bottom:647.100000px;}
.y9{bottom:660.780000px;}
.y1{bottom:676.830000px;}
.y10{bottom:713.010000px;}
.y81{bottom:719.385000px;}
.y2c{bottom:724.860000px;}
.y19{bottom:725.610000px;}
.y6a{bottom:726.120000px;}
.y44{bottom:727.710000px;}
.y8{bottom:732.090000px;}
.y24{bottom:732.705000px;}
.y6d{bottom:732.780000px;}
.y6e{bottom:733.425000px;}
.y37{bottom:733.680000px;}
.y51{bottom:738.615000px;}
.y6b{bottom:742.170000px;}
.h11{height:52.380000px;}
.h1b{height:62.424000px;}
.h1f{height:91.163520px;}
.h9{height:92.887200px;}
.h1e{height:93.026880px;}
.h18{height:101.966400px;}
.h19{height:102.106080px;}
.h7{height:116.632800px;}
.h8{height:116.772480px;}
.h4{height:122.668560px;}
.h17{height:125.013600px;}
.he{height:127.807200px;}
.hf{height:127.946880px;}
.ha{height:134.092800px;}
.hb{height:134.232480px;}
.hd{height:139.680000px;}
.h10{height:139.819680px;}
.h6{height:162.866880px;}
.h14{height:186.472800px;}
.h13{height:186.612480px;}
.h1d{height:189.266400px;}
.h16{height:203.932800px;}
.h3{height:206.726400px;}
.h2{height:206.866080px;}
.hc{height:221.532480px;}
.h1a{height:232.567200px;}
.h12{height:232.706880px;}
.h1c{height:236.198880px;}
.h15{height:253.658880px;}
.h1{height:259.106400px;}
.h5{height:259.246080px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x28{left:16.163979px;}
.xa{left:18.647979px;}
.x5{left:21.743979px;}
.x15{left:26.999979px;}
.x8{left:28.187979px;}
.x21{left:30.203979px;}
.x7{left:32.543979px;}
.x17{left:34.811979px;}
.xb{left:36.035979px;}
.x4{left:38.555979px;}
.x1b{left:40.715979px;}
.x1{left:43.343979px;}
.x2f{left:45.323979px;}
.xc{left:46.835979px;}
.x34{left:52.019979px;}
.x31{left:53.171979px;}
.x9{left:57.023979px;}
.x2{left:61.379979px;}
.x2c{left:62.963979px;}
.x1e{left:64.547979px;}
.x16{left:67.463979px;}
.x32{left:69.335979px;}
.x22{left:73.763979px;}
.x14{left:79.019979px;}
.x37{left:86.399979px;}
.x18{left:88.811979px;}
.x2d{left:96.587979px;}
.x2e{left:103.715979px;}
.x30{left:106.631979px;}
.x39{left:213.764979px;}
.xd{left:293.219979px;}
.x36{left:445.244979px;}
.x38{left:484.169979px;}
.x1c{left:508.139979px;}
.x1f{left:523.799979px;}
.x25{left:566.999979px;}
.x35{left:719.534979px;}
.x2b{left:724.604979px;}
.x3{left:730.904979px;}
.x33{left:732.779979px;}
.x29{left:736.589979px;}
.x2a{left:746.849979px;}
.x11{left:791.999979px;}
.x6{left:794.054979px;}
.x1a{left:815.249979px;}
.x19{left:826.049979px;}
.x12{left:829.229979px;}
.x23{left:845.489979px;}
.x24{left:846.689979px;}
.xf{left:852.479979px;}
.x13{left:870.944979px;}
.xe{left:884.699979px;}
.x10{left:902.159979px;}
.x27{left:934.919979px;}
.x1d{left:945.509979px;}
.x20{left:961.739979px;}
.x26{left:993.059979px;}
@media print{
.v2{vertical-align:-63.253333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:35.200000pt;}
.lsf{letter-spacing:-0.297067pt;}
.ls15{letter-spacing:-0.291733pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.089600pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.326400pt;}
.ls14{letter-spacing:20.480000pt;}
.lsd{letter-spacing:28.595840pt;}
.ls6{letter-spacing:33.920000pt;}
.ls7{letter-spacing:34.026667pt;}
.ls17{letter-spacing:36.352000pt;}
.ls16{letter-spacing:36.512128pt;}
.ls5{letter-spacing:36.864000pt;}
.ls18{letter-spacing:37.120000pt;}
.ls2{letter-spacing:39.720960pt;}
.ls4{letter-spacing:52.947200pt;}
.ls3{letter-spacing:52.992000pt;}
.ls13{letter-spacing:75.475200pt;}
.ls12{letter-spacing:75.520000pt;}
.lsc{letter-spacing:93.064192pt;}
.lsb{letter-spacing:93.125120pt;}
.lse{letter-spacing:93.285120pt;}
.ls11{letter-spacing:99.155200pt;}
.ls10{letter-spacing:99.200000pt;}
.ws5{word-spacing:-36.772736pt;}
.ws4{word-spacing:-36.736000pt;}
.ws3{word-spacing:-33.650176pt;}
.ws9{word-spacing:-33.613440pt;}
.wsb{word-spacing:-30.711296pt;}
.ws6{word-spacing:-30.674560pt;}
.ws8{word-spacing:-26.817280pt;}
.ws2{word-spacing:-24.429440pt;}
.ws0{word-spacing:-22.241280pt;}
.ws7{word-spacing:-13.840000pt;}
.wsa{word-spacing:-12.800000pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-2.139051pt;}
._2{margin-left:-0.956160pt;}
._0{width:1.424640pt;}
._4{width:2.928000pt;}
._5{width:4.235520pt;}
._8{width:26.292907pt;}
._7{width:30.294187pt;}
._3{width:34.308693pt;}
._6{width:1831.133440pt;}
.fs10{font-size:48.000000pt;}
.fs1b{font-size:64.000000pt;}
.fs4{font-size:78.080000pt;}
.fs9{font-size:85.120000pt;}
.fs1f{font-size:85.248000pt;}
.fs18{font-size:93.440000pt;}
.fs19{font-size:93.568000pt;}
.fs14{font-size:96.000000pt;}
.fs1e{font-size:101.120000pt;}
.fs7{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fs17{font-size:114.560000pt;}
.fs3{font-size:117.120000pt;}
.fse{font-size:117.248000pt;}
.fsa{font-size:122.880000pt;}
.fsb{font-size:123.008000pt;}
.fsd{font-size:128.000000pt;}
.fsf{font-size:128.128000pt;}
.fs6{font-size:149.248000pt;}
.fs13{font-size:170.880000pt;}
.fs12{font-size:171.008000pt;}
.fs1d{font-size:173.440000pt;}
.fs16{font-size:186.880000pt;}
.fs2{font-size:189.440000pt;}
.fs1{font-size:189.568000pt;}
.fsc{font-size:203.008000pt;}
.fs1a{font-size:213.120000pt;}
.fs11{font-size:213.248000pt;}
.fs1c{font-size:216.448000pt;}
.fs15{font-size:232.448000pt;}
.fs0{font-size:237.440000pt;}
.fs5{font-size:237.568000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:3.392000pt;}
.y2b{bottom:39.520000pt;}
.y50{bottom:44.544000pt;}
.y23{bottom:53.088000pt;}
.y6c{bottom:58.816000pt;}
.y7{bottom:67.168000pt;}
.y83{bottom:73.696000pt;}
.yf{bottom:82.112000pt;}
.y4f{bottom:83.264000pt;}
.y6{bottom:102.368000pt;}
.y82{bottom:112.096000pt;}
.y69{bottom:119.456000pt;}
.y74{bottom:120.128000pt;}
.y32{bottom:126.112000pt;}
.y22{bottom:128.288000pt;}
.y18{bottom:130.048000pt;}
.y3f{bottom:154.266667pt;}
.y73{bottom:155.360000pt;}
.y68{bottom:157.853333pt;}
.y21{bottom:163.680000pt;}
.y77{bottom:166.853333pt;}
.y4e{bottom:174.786667pt;}
.y29{bottom:178.240000pt;}
.y17{bottom:180.613333pt;}
.y4b{bottom:189.093333pt;}
.y72{bottom:189.946667pt;}
.y3e{bottom:191.546667pt;}
.y31{bottom:195.426667pt;}
.y67{bottom:196.253333pt;}
.y20{bottom:198.720000pt;}
.y76{bottom:201.413333pt;}
.y5{bottom:201.600000pt;}
.y4d{bottom:213.533333pt;}
.y36{bottom:225.053333pt;}
.y4a{bottom:227.813333pt;}
.y16{bottom:231.333333pt;}
.y66{bottom:234.693333pt;}
.y1f{bottom:234.720000pt;}
.y5f{bottom:251.386667pt;}
.y75{bottom:253.373333pt;}
.y58{bottom:256.186667pt;}
.y71{bottom:256.613333pt;}
.y4c{bottom:265.986667pt;}
.y30{bottom:267.493333pt;}
.y49{bottom:272.480000pt;}
.y35{bottom:281.626667pt;}
.y15{bottom:282.080000pt;}
.y85{bottom:289.146667pt;}
.y5e{bottom:289.786667pt;}
.ye{bottom:293.666667pt;}
.y57{bottom:294.586667pt;}
.y65{bottom:311.493333pt;}
.y4{bottom:319.520000pt;}
.y3b{bottom:322.626667pt;}
.y3d{bottom:323.453333pt;}
.yd{bottom:325.693333pt;}
.y2a{bottom:325.986667pt;}
.y5d{bottom:328.226667pt;}
.y80{bottom:330.373333pt;}
.y56{bottom:333.026667pt;}
.y2f{bottom:341.093333pt;}
.y64{bottom:349.893333pt;}
.y34{bottom:350.786667pt;}
.y1e{bottom:351.866667pt;}
.yc{bottom:357.693333pt;}
.y3a{bottom:359.906667pt;}
.y3c{bottom:360.733333pt;}
.y5c{bottom:366.626667pt;}
.y7f{bottom:368.613333pt;}
.y55{bottom:371.426667pt;}
.y7a{bottom:371.520000pt;}
.y28{bottom:372.506667pt;}
.y7c{bottom:375.813333pt;}
.y3{bottom:379.546667pt;}
.y48{bottom:380.386667pt;}
.y14{bottom:383.360000pt;}
.yb{bottom:389.693333pt;}
.y7b{bottom:401.413333pt;}
.y5b{bottom:405.026667pt;}
.y7e{bottom:407.173333pt;}
.y54{bottom:409.826667pt;}
.y41{bottom:417.346667pt;}
.y47{bottom:419.106667pt;}
.ya{bottom:421.693333pt;}
.y43{bottom:422.333333pt;}
.y79{bottom:422.720000pt;}
.y1d{bottom:426.746667pt;}
.y13{bottom:434.106667pt;}
.y33{bottom:436.386667pt;}
.y39{bottom:438.266667pt;}
.y84{bottom:438.466667pt;}
.y5a{bottom:443.426667pt;}
.y63{bottom:445.146667pt;}
.y7d{bottom:445.440000pt;}
.y2e{bottom:447.706667pt;}
.y53{bottom:448.226667pt;}
.y78{bottom:448.320000pt;}
.y40{bottom:453.346667pt;}
.y42{bottom:458.333333pt;}
.y1c{bottom:461.986667pt;}
.y27{bottom:466.560000pt;}
.y46{bottom:471.546667pt;}
.y12{bottom:484.666667pt;}
.y1b{bottom:497.986667pt;}
.y26{bottom:505.280000pt;}
.y70{bottom:508.320000pt;}
.y59{bottom:520.093333pt;}
.y62{bottom:521.986667pt;}
.y52{bottom:524.893333pt;}
.y2{bottom:526.880000pt;}
.y11{bottom:535.386667pt;}
.y25{bottom:554.880000pt;}
.y61{bottom:560.386667pt;}
.y2d{bottom:563.453333pt;}
.y6f{bottom:569.893333pt;}
.y38{bottom:570.720000pt;}
.y1a{bottom:574.266667pt;}
.y45{bottom:575.200000pt;}
.y9{bottom:587.360000pt;}
.y1{bottom:601.626667pt;}
.y10{bottom:633.786667pt;}
.y81{bottom:639.453333pt;}
.y2c{bottom:644.320000pt;}
.y19{bottom:644.986667pt;}
.y6a{bottom:645.440000pt;}
.y44{bottom:646.853333pt;}
.y8{bottom:650.746667pt;}
.y24{bottom:651.293333pt;}
.y6d{bottom:651.360000pt;}
.y6e{bottom:651.933333pt;}
.y37{bottom:652.160000pt;}
.y51{bottom:656.546667pt;}
.y6b{bottom:659.706667pt;}
.h11{height:46.560000pt;}
.h1b{height:55.488000pt;}
.h1f{height:81.034240pt;}
.h9{height:82.566400pt;}
.h1e{height:82.690560pt;}
.h18{height:90.636800pt;}
.h19{height:90.760960pt;}
.h7{height:103.673600pt;}
.h8{height:103.797760pt;}
.h4{height:109.038720pt;}
.h17{height:111.123200pt;}
.he{height:113.606400pt;}
.hf{height:113.730560pt;}
.ha{height:119.193600pt;}
.hb{height:119.317760pt;}
.hd{height:124.160000pt;}
.h10{height:124.284160pt;}
.h6{height:144.770560pt;}
.h14{height:165.753600pt;}
.h13{height:165.877760pt;}
.h1d{height:168.236800pt;}
.h16{height:181.273600pt;}
.h3{height:183.756800pt;}
.h2{height:183.880960pt;}
.hc{height:196.917760pt;}
.h1a{height:206.726400pt;}
.h12{height:206.850560pt;}
.h1c{height:209.954560pt;}
.h15{height:225.474560pt;}
.h1{height:230.316800pt;}
.h5{height:230.440960pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x28{left:14.367981pt;}
.xa{left:16.575981pt;}
.x5{left:19.327981pt;}
.x15{left:23.999981pt;}
.x8{left:25.055981pt;}
.x21{left:26.847981pt;}
.x7{left:28.927981pt;}
.x17{left:30.943981pt;}
.xb{left:32.031981pt;}
.x4{left:34.271981pt;}
.x1b{left:36.191981pt;}
.x1{left:38.527981pt;}
.x2f{left:40.287981pt;}
.xc{left:41.631981pt;}
.x34{left:46.239981pt;}
.x31{left:47.263981pt;}
.x9{left:50.687981pt;}
.x2{left:54.559981pt;}
.x2c{left:55.967981pt;}
.x1e{left:57.375981pt;}
.x16{left:59.967981pt;}
.x32{left:61.631981pt;}
.x22{left:65.567981pt;}
.x14{left:70.239981pt;}
.x37{left:76.799981pt;}
.x18{left:78.943981pt;}
.x2d{left:85.855981pt;}
.x2e{left:92.191981pt;}
.x30{left:94.783981pt;}
.x39{left:190.013314pt;}
.xd{left:260.639981pt;}
.x36{left:395.773314pt;}
.x38{left:430.373314pt;}
.x1c{left:451.679981pt;}
.x1f{left:465.599981pt;}
.x25{left:503.999981pt;}
.x35{left:639.586648pt;}
.x2b{left:644.093314pt;}
.x3{left:649.693314pt;}
.x33{left:651.359981pt;}
.x29{left:654.746648pt;}
.x2a{left:663.866648pt;}
.x11{left:703.999981pt;}
.x6{left:705.826648pt;}
.x1a{left:724.666648pt;}
.x19{left:734.266648pt;}
.x12{left:737.093314pt;}
.x23{left:751.546648pt;}
.x24{left:752.613314pt;}
.xf{left:757.759981pt;}
.x13{left:774.173314pt;}
.xe{left:786.399981pt;}
.x10{left:801.919981pt;}
.x27{left:831.039981pt;}
.x1d{left:840.453314pt;}
.x20{left:854.879981pt;}
.x26{left:882.719981pt;}
}




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