
    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_033deda548e78793e6b8de3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951660;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_2a03516378729452f32093f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6a67cb9a1ffa1424b289f90d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.689941;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_ac88885e60d8a30a4121bbcf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4b53ce9c5de86d2d7ef8a964.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b6d20f276a602fd6dd4827f9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c38e3d0cfb578786fb25abfb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.078125;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_8e648a7396ad7ce03c3b23e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.935059;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_c303d6513b87e2ae75bab9ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.049805;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.906000px;}
.ls17{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.274200px;}
.ls11{letter-spacing:-0.256800px;}
.ls15{letter-spacing:-0.188400px;}
.ls8{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.080640px;}
.lsb{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.198000px;}
.lse{letter-spacing:0.257040px;}
.ls12{letter-spacing:0.342600px;}
.ls5{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.377400px;}
.ls3{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.080000px;}
.ls18{letter-spacing:3.060000px;}
.lsc{letter-spacing:123.480000px;}
.ls0{letter-spacing:207.900000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(31,56,100),0 0.015em rgb(31,56,100),0.015em 0 rgb(31,56,100),0 -0.015em  rgb(31,56,100);}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(31,56,100);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.560000px;}
.ws12{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.505760px;}
.ws4{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.157400px;}
.wsb{word-spacing:-13.140000px;}
.wsa{word-spacing:-13.122600px;}
.ws9{word-spacing:-12.780000px;}
.wse{word-spacing:-12.591600px;}
.ws6{word-spacing:-12.528000px;}
.ws8{word-spacing:-12.523200px;}
.ws10{word-spacing:-12.505800px;}
.wsd{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.402000px;}
.ws0{word-spacing:-12.204000px;}
.ws7{word-spacing:-12.186000px;}
.wsc{word-spacing:-11.874000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-4.714080px;}
._10{margin-left:-3.577920px;}
._b{margin-left:-2.304960px;}
._0{margin-left:-1.179360px;}
._3{width:1.065360px;}
._8{width:2.986800px;}
._9{width:4.886880px;}
._c{width:6.321600px;}
._4{width:7.830000px;}
._5{width:9.246000px;}
._11{width:10.833840px;}
._e{width:12.320640px;}
._d{width:14.029920px;}
._f{width:15.558480px;}
._a{width:17.910480px;}
._7{width:19.290960px;}
._19{width:21.051360px;}
._6{width:69.120000px;}
._17{width:78.116400px;}
._14{width:110.057040px;}
._16{width:123.017040px;}
._15{width:136.697040px;}
._13{width:139.577040px;}
._12{width:259.477680px;}
._1{width:578.892000px;}
._2{width:1158.540000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(62,62,62);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs7{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs8{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:3.060000px;}
.y55{bottom:3.240000px;}
.y74{bottom:3.285000px;}
.y59{bottom:3.420000px;}
.y56{bottom:3.600000px;}
.y52{bottom:4.320000px;}
.y5c{bottom:4.500000px;}
.yc{bottom:8.640000px;}
.ya{bottom:56.700000px;}
.y40{bottom:71.316000px;}
.y9{bottom:95.256000px;}
.y3f{bottom:104.976000px;}
.y8{bottom:111.636000px;}
.y3e{bottom:124.236000px;}
.y7{bottom:128.196000px;}
.y3d{bottom:140.616000px;}
.y6{bottom:144.576000px;}
.y7f{bottom:157.890000px;}
.y5{bottom:161.130000px;}
.y7e{bottom:170.670000px;}
.ya6{bottom:172.650000px;}
.yaf{bottom:173.550000px;}
.yd8{bottom:174.630000px;}
.y7d{bottom:186.510000px;}
.ya5{bottom:191.730000px;}
.yae{bottom:192.630000px;}
.yf0{bottom:193.530000px;}
.yd7{bottom:193.710000px;}
.y3a{bottom:196.410000px;}
.y7c{bottom:203.250000px;}
.yef{bottom:209.010000px;}
.ya4{bottom:210.630000px;}
.y39{bottom:215.490000px;}
.y7b{bottom:219.990000px;}
.yad{bottom:223.050000px;}
.yd6{bottom:224.670000px;}
.ya3{bottom:229.710000px;}
.y38{bottom:234.390000px;}
.yac{bottom:235.110000px;}
.y7a{bottom:235.830000px;}
.yee{bottom:236.730000px;}
.yd5{bottom:243.570000px;}
.ya2{bottom:248.610000px;}
.yed{bottom:252.030000px;}
.y79{bottom:252.570000px;}
.y37{bottom:253.290000px;}
.ya1{bottom:267.690000px;}
.y78{bottom:269.310000px;}
.y36{bottom:272.370000px;}
.yd4{bottom:274.530000px;}
.yec{bottom:279.750000px;}
.y77{bottom:285.150000px;}
.ya0{bottom:286.590000px;}
.y35{bottom:291.270000px;}
.yd3{bottom:293.610000px;}
.yeb{bottom:295.050000px;}
.y76{bottom:301.890000px;}
.y34{bottom:310.350000px;}
.yd2{bottom:312.510000px;}
.y9f{bottom:317.550000px;}
.y75{bottom:318.450000px;}
.yea{bottom:322.770000px;}
.y33{bottom:329.250000px;}
.yd1{bottom:331.410000px;}
.y73{bottom:334.470000px;}
.y9e{bottom:336.495000px;}
.ye9{bottom:338.115000px;}
.y32{bottom:348.195000px;}
.y72{bottom:351.255000px;}
.ye8{bottom:353.595000px;}
.y9d{bottom:355.575000px;}
.yd0{bottom:362.595000px;}
.y71{bottom:367.815000px;}
.y9c{bottom:374.475000px;}
.y31{bottom:378.975000px;}
.ycf{bottom:381.495000px;}
.y70{bottom:383.835000px;}
.y9b{bottom:393.555000px;}
.yce{bottom:400.395000px;}
.y6f{bottom:400.575000px;}
.y30{bottom:410.295000px;}
.ye7{bottom:411.915000px;}
.y6e{bottom:417.135000px;}
.ycd{bottom:419.475000px;}
.y9a{bottom:424.515000px;}
.y2f{bottom:429.195000px;}
.y6d{bottom:433.155000px;}
.ycc{bottom:438.375000px;}
.ye6{bottom:439.455000px;}
.y99{bottom:443.415000px;}
.y2e{bottom:448.095000px;}
.y6c{bottom:449.895000px;}
.ye5{bottom:454.935000px;}
.ycb{bottom:457.455000px;}
.y98{bottom:462.495000px;}
.y6b{bottom:466.455000px;}
.y2d{bottom:467.175000px;}
.ye4{bottom:470.415000px;}
.y97{bottom:481.395000px;}
.y6a{bottom:482.475000px;}
.ye3{bottom:485.895000px;}
.y2c{bottom:486.075000px;}
.yca{bottom:488.415000px;}
.y69{bottom:499.215000px;}
.y2b{bottom:505.155000px;}
.yc9{bottom:507.315000px;}
.y96{bottom:512.355000px;}
.ye2{bottom:513.615000px;}
.y68{bottom:515.775000px;}
.y2a{bottom:524.055000px;}
.yc8{bottom:526.215000px;}
.ye1{bottom:528.915000px;}
.y95{bottom:531.255000px;}
.y67{bottom:531.795000px;}
.y29{bottom:542.955000px;}
.yc7{bottom:545.295000px;}
.y66{bottom:548.535000px;}
.y94{bottom:550.335000px;}
.ye0{bottom:556.635000px;}
.y28{bottom:562.035000px;}
.y65{bottom:565.275000px;}
.y93{bottom:569.235000px;}
.yc6{bottom:576.255000px;}
.y27{bottom:580.935000px;}
.y64{bottom:581.115000px;}
.ydf{bottom:584.175000px;}
.yc5{bottom:595.155000px;}
.y63{bottom:597.855000px;}
.y26{bottom:600.015000px;}
.y92{bottom:600.195000px;}
.yde{bottom:611.745000px;}
.yc4{bottom:614.265000px;}
.y62{bottom:614.625000px;}
.y25{bottom:618.945000px;}
.y91{bottom:619.305000px;}
.y61{bottom:630.465000px;}
.yc3{bottom:633.165000px;}
.y90{bottom:638.205000px;}
.ydd{bottom:639.825000px;}
.y60{bottom:646.485000px;}
.y24{bottom:649.545000px;}
.yc2{bottom:652.245000px;}
.y8f{bottom:657.285000px;}
.y5f{bottom:663.045000px;}
.yc1{bottom:671.145000px;}
.y8e{bottom:676.185000px;}
.y5e{bottom:679.785000px;}
.y23{bottom:680.325000px;}
.ydc{bottom:690.045000px;}
.y107{bottom:694.905000px;}
.y8d{bottom:695.085000px;}
.y5d{bottom:695.805000px;}
.yc0{bottom:702.105000px;}
.yab{bottom:707.145000px;}
.y22{bottom:707.865000px;}
.ydb{bottom:709.125000px;}
.y106{bottom:710.205000px;}
.y5b{bottom:712.365000px;}
.ybf{bottom:721.185000px;}
.y8c{bottom:726.045000px;}
.y5a{bottom:729.105000px;}
.y21{bottom:735.405000px;}
.y105{bottom:737.925000px;}
.ybe{bottom:740.085000px;}
.y58{bottom:745.125000px;}
.y20{bottom:750.705000px;}
.y104{bottom:753.405000px;}
.ybd{bottom:758.985000px;}
.y57{bottom:761.865000px;}
.y8b{bottom:764.025000px;}
.y1f{bottom:766.185000px;}
.y103{bottom:768.885000px;}
.ybc{bottom:778.065000px;}
.y54{bottom:778.425000px;}
.y1e{bottom:781.845000px;}
.y8a{bottom:783.105000px;}
.y51{bottom:795.165000px;}
.y102{bottom:796.605000px;}
.y1d{bottom:797.325000px;}
.y89{bottom:802.005000px;}
.yda{bottom:808.665000px;}
.ybb{bottom:809.025000px;}
.y101{bottom:811.905000px;}
.y1c{bottom:812.805000px;}
.y50{bottom:815.145000px;}
.y88{bottom:820.905000px;}
.y100{bottom:827.385000px;}
.yba{bottom:827.925000px;}
.y1b{bottom:828.285000px;}
.y4f{bottom:830.625000px;}
.yaa{bottom:832.965000px;}
.y87{bottom:839.985000px;}
.y1a{bottom:843.945000px;}
.yb9{bottom:847.005000px;}
.ya9{bottom:852.045000px;}
.yff{bottom:855.105000px;}
.y4e{bottom:858.885000px;}
.y19{bottom:859.425000px;}
.yfe{bottom:870.405000px;}
.ya8{bottom:870.990000px;}
.y18{bottom:874.950000px;}
.y4d{bottom:878.010000px;}
.ya7{bottom:889.890000px;}
.y17{bottom:890.430000px;}
.y4c{bottom:896.910000px;}
.yfd{bottom:898.170000px;}
.y16{bottom:906.090000px;}
.y86{bottom:908.970000px;}
.yfc{bottom:913.650000px;}
.y4b{bottom:915.990000px;}
.y15{bottom:921.570000px;}
.y85{bottom:927.870000px;}
.yfb{bottom:929.130000px;}
.yb8{bottom:934.890000px;}
.y14{bottom:937.050000px;}
.y4a{bottom:946.590000px;}
.y84{bottom:946.950000px;}
.yb7{bottom:953.790000px;}
.yfa{bottom:956.850000px;}
.y13{bottom:964.410000px;}
.y83{bottom:965.850000px;}
.yf9{bottom:972.150000px;}
.yb6{bottom:972.870000px;}
.y49{bottom:977.910000px;}
.y12{bottom:980.070000px;}
.y82{bottom:984.750000px;}
.yb5{bottom:991.770000px;}
.y11{bottom:995.550000px;}
.y48{bottom:996.810000px;}
.yf8{bottom:999.870000px;}
.yf7{bottom:1015.170000px;}
.y10{bottom:1015.710000px;}
.yb4{bottom:1022.730000px;}
.y47{bottom:1027.770000px;}
.y81{bottom:1034.790000px;}
.yf{bottom:1039.470000px;}
.yb3{bottom:1041.810000px;}
.yf6{bottom:1042.890000px;}
.y46{bottom:1046.850000px;}
.y80{bottom:1053.690000px;}
.yf5{bottom:1058.190000px;}
.yb2{bottom:1060.710000px;}
.y45{bottom:1065.750000px;}
.yd9{bottom:1072.770000px;}
.ye{bottom:1072.950000px;}
.yb1{bottom:1079.610000px;}
.y44{bottom:1084.650000px;}
.yf4{bottom:1085.910000px;}
.yd{bottom:1096.890000px;}
.yf3{bottom:1101.210000px;}
.y43{bottom:1103.730000px;}
.yb0{bottom:1110.390000px;}
.y4{bottom:1119.750000px;}
.y42{bottom:1122.630000px;}
.yf2{bottom:1128.930000px;}
.y3{bottom:1135.230000px;}
.y41{bottom:1141.740000px;}
.yf1{bottom:1144.440000px;}
.y2{bottom:1151.640000px;}
.yb{bottom:1174.860000px;}
.y3c{bottom:1182.060000px;}
.y1{bottom:1186.740000px;}
.y3b{bottom:1197.540000px;}
.h13{height:15.840000px;}
.h14{height:15.876000px;}
.h10{height:16.020000px;}
.h15{height:16.056000px;}
.h8{height:22.860000px;}
.hb{height:35.332031px;}
.h12{height:50.171484px;}
.h11{height:51.519375px;}
.h5{height:52.998047px;}
.h6{height:53.709961px;}
.hc{height:54.421875px;}
.h16{height:55.243125px;}
.h4{height:58.651172px;}
.h9{height:61.189805px;}
.h7{height:63.019687px;}
.he{height:65.010937px;}
.hf{height:65.884219px;}
.hd{height:66.757500px;}
.h3{height:72.562500px;}
.ha{height:84.898125px;}
.h2{height:85.271484px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:65.556000px;}
.w6{width:66.240000px;}
.w5{width:73.656000px;}
.w8{width:91.620000px;}
.w4{width:156.600000px;}
.w3{width:176.250000px;}
.w9{width:226.290000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.980000px;}
.xf{left:5.220000px;}
.x11{left:8.280000px;}
.x10{left:9.900000px;}
.x12{left:11.520000px;}
.x8{left:12.960000px;}
.xc{left:14.940000px;}
.x13{left:16.380000px;}
.xe{left:19.260000px;}
.x14{left:20.340000px;}
.x15{left:21.420000px;}
.x4{left:33.345000px;}
.x1{left:106.235987px;}
.x2{left:207.389987px;}
.x7{left:263.730000px;}
.x6{left:337.934987px;}
.xa{left:403.635000px;}
.x5{left:439.634987px;}
.xb{left:469.185000px;}
.xd{left:560.805000px;}
.x3{left:642.345000px;}
.x16{left:672.629987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.805333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.243733pt;}
.ls11{letter-spacing:-0.228267pt;}
.ls15{letter-spacing:-0.167467pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.071680pt;}
.lsb{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.228480pt;}
.ls12{letter-spacing:0.304533pt;}
.ls5{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.335467pt;}
.ls3{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls18{letter-spacing:2.720000pt;}
.lsc{letter-spacing:109.760000pt;}
.ls0{letter-spacing:184.800000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.720000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.005120pt;}
.ws4{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.695467pt;}
.wsb{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.664533pt;}
.ws9{word-spacing:-11.360000pt;}
.wse{word-spacing:-11.192533pt;}
.ws6{word-spacing:-11.136000pt;}
.ws8{word-spacing:-11.131733pt;}
.ws10{word-spacing:-11.116267pt;}
.wsd{word-spacing:-11.040000pt;}
.ws1{word-spacing:-11.024000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws7{word-spacing:-10.832000pt;}
.wsc{word-spacing:-10.554667pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-4.190293pt;}
._10{margin-left:-3.180373pt;}
._b{margin-left:-2.048853pt;}
._0{margin-left:-1.048320pt;}
._3{width:0.946987pt;}
._8{width:2.654933pt;}
._9{width:4.343893pt;}
._c{width:5.619200pt;}
._4{width:6.960000pt;}
._5{width:8.218667pt;}
._11{width:9.630080pt;}
._e{width:10.951680pt;}
._d{width:12.471040pt;}
._f{width:13.829760pt;}
._a{width:15.920427pt;}
._7{width:17.147520pt;}
._19{width:18.712320pt;}
._6{width:61.440000pt;}
._17{width:69.436800pt;}
._14{width:97.828480pt;}
._16{width:109.348480pt;}
._15{width:121.508480pt;}
._13{width:124.068480pt;}
._12{width:230.646827pt;}
._1{width:514.570667pt;}
._2{width:1029.813333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs8{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:2.720000pt;}
.y55{bottom:2.880000pt;}
.y74{bottom:2.920000pt;}
.y59{bottom:3.040000pt;}
.y56{bottom:3.200000pt;}
.y52{bottom:3.840000pt;}
.y5c{bottom:4.000000pt;}
.yc{bottom:7.680000pt;}
.ya{bottom:50.400000pt;}
.y40{bottom:63.392000pt;}
.y9{bottom:84.672000pt;}
.y3f{bottom:93.312000pt;}
.y8{bottom:99.232000pt;}
.y3e{bottom:110.432000pt;}
.y7{bottom:113.952000pt;}
.y3d{bottom:124.992000pt;}
.y6{bottom:128.512000pt;}
.y7f{bottom:140.346667pt;}
.y5{bottom:143.226667pt;}
.y7e{bottom:151.706667pt;}
.ya6{bottom:153.466667pt;}
.yaf{bottom:154.266667pt;}
.yd8{bottom:155.226667pt;}
.y7d{bottom:165.786667pt;}
.ya5{bottom:170.426667pt;}
.yae{bottom:171.226667pt;}
.yf0{bottom:172.026667pt;}
.yd7{bottom:172.186667pt;}
.y3a{bottom:174.586667pt;}
.y7c{bottom:180.666667pt;}
.yef{bottom:185.786667pt;}
.ya4{bottom:187.226667pt;}
.y39{bottom:191.546667pt;}
.y7b{bottom:195.546667pt;}
.yad{bottom:198.266667pt;}
.yd6{bottom:199.706667pt;}
.ya3{bottom:204.186667pt;}
.y38{bottom:208.346667pt;}
.yac{bottom:208.986667pt;}
.y7a{bottom:209.626667pt;}
.yee{bottom:210.426667pt;}
.yd5{bottom:216.506667pt;}
.ya2{bottom:220.986667pt;}
.yed{bottom:224.026667pt;}
.y79{bottom:224.506667pt;}
.y37{bottom:225.146667pt;}
.ya1{bottom:237.946667pt;}
.y78{bottom:239.386667pt;}
.y36{bottom:242.106667pt;}
.yd4{bottom:244.026667pt;}
.yec{bottom:248.666667pt;}
.y77{bottom:253.466667pt;}
.ya0{bottom:254.746667pt;}
.y35{bottom:258.906667pt;}
.yd3{bottom:260.986667pt;}
.yeb{bottom:262.266667pt;}
.y76{bottom:268.346667pt;}
.y34{bottom:275.866667pt;}
.yd2{bottom:277.786667pt;}
.y9f{bottom:282.266667pt;}
.y75{bottom:283.066667pt;}
.yea{bottom:286.906667pt;}
.y33{bottom:292.666667pt;}
.yd1{bottom:294.586667pt;}
.y73{bottom:297.306667pt;}
.y9e{bottom:299.106667pt;}
.ye9{bottom:300.546667pt;}
.y32{bottom:309.506667pt;}
.y72{bottom:312.226667pt;}
.ye8{bottom:314.306667pt;}
.y9d{bottom:316.066667pt;}
.yd0{bottom:322.306667pt;}
.y71{bottom:326.946667pt;}
.y9c{bottom:332.866667pt;}
.y31{bottom:336.866667pt;}
.ycf{bottom:339.106667pt;}
.y70{bottom:341.186667pt;}
.y9b{bottom:349.826667pt;}
.yce{bottom:355.906667pt;}
.y6f{bottom:356.066667pt;}
.y30{bottom:364.706667pt;}
.ye7{bottom:366.146667pt;}
.y6e{bottom:370.786667pt;}
.ycd{bottom:372.866667pt;}
.y9a{bottom:377.346667pt;}
.y2f{bottom:381.506667pt;}
.y6d{bottom:385.026667pt;}
.ycc{bottom:389.666667pt;}
.ye6{bottom:390.626667pt;}
.y99{bottom:394.146667pt;}
.y2e{bottom:398.306667pt;}
.y6c{bottom:399.906667pt;}
.ye5{bottom:404.386667pt;}
.ycb{bottom:406.626667pt;}
.y98{bottom:411.106667pt;}
.y6b{bottom:414.626667pt;}
.y2d{bottom:415.266667pt;}
.ye4{bottom:418.146667pt;}
.y97{bottom:427.906667pt;}
.y6a{bottom:428.866667pt;}
.ye3{bottom:431.906667pt;}
.y2c{bottom:432.066667pt;}
.yca{bottom:434.146667pt;}
.y69{bottom:443.746667pt;}
.y2b{bottom:449.026667pt;}
.yc9{bottom:450.946667pt;}
.y96{bottom:455.426667pt;}
.ye2{bottom:456.546667pt;}
.y68{bottom:458.466667pt;}
.y2a{bottom:465.826667pt;}
.yc8{bottom:467.746667pt;}
.ye1{bottom:470.146667pt;}
.y95{bottom:472.226667pt;}
.y67{bottom:472.706667pt;}
.y29{bottom:482.626667pt;}
.yc7{bottom:484.706667pt;}
.y66{bottom:487.586667pt;}
.y94{bottom:489.186667pt;}
.ye0{bottom:494.786667pt;}
.y28{bottom:499.586667pt;}
.y65{bottom:502.466667pt;}
.y93{bottom:505.986667pt;}
.yc6{bottom:512.226667pt;}
.y27{bottom:516.386667pt;}
.y64{bottom:516.546667pt;}
.ydf{bottom:519.266667pt;}
.yc5{bottom:529.026667pt;}
.y63{bottom:531.426667pt;}
.y26{bottom:533.346667pt;}
.y92{bottom:533.506667pt;}
.yde{bottom:543.773333pt;}
.yc4{bottom:546.013333pt;}
.y62{bottom:546.333333pt;}
.y25{bottom:550.173333pt;}
.y91{bottom:550.493333pt;}
.y61{bottom:560.413333pt;}
.yc3{bottom:562.813333pt;}
.y90{bottom:567.293333pt;}
.ydd{bottom:568.733333pt;}
.y60{bottom:574.653333pt;}
.y24{bottom:577.373333pt;}
.yc2{bottom:579.773333pt;}
.y8f{bottom:584.253333pt;}
.y5f{bottom:589.373333pt;}
.yc1{bottom:596.573333pt;}
.y8e{bottom:601.053333pt;}
.y5e{bottom:604.253333pt;}
.y23{bottom:604.733333pt;}
.ydc{bottom:613.373333pt;}
.y107{bottom:617.693333pt;}
.y8d{bottom:617.853333pt;}
.y5d{bottom:618.493333pt;}
.yc0{bottom:624.093333pt;}
.yab{bottom:628.573333pt;}
.y22{bottom:629.213333pt;}
.ydb{bottom:630.333333pt;}
.y106{bottom:631.293333pt;}
.y5b{bottom:633.213333pt;}
.ybf{bottom:641.053333pt;}
.y8c{bottom:645.373333pt;}
.y5a{bottom:648.093333pt;}
.y21{bottom:653.693333pt;}
.y105{bottom:655.933333pt;}
.ybe{bottom:657.853333pt;}
.y58{bottom:662.333333pt;}
.y20{bottom:667.293333pt;}
.y104{bottom:669.693333pt;}
.ybd{bottom:674.653333pt;}
.y57{bottom:677.213333pt;}
.y8b{bottom:679.133333pt;}
.y1f{bottom:681.053333pt;}
.y103{bottom:683.453333pt;}
.ybc{bottom:691.613333pt;}
.y54{bottom:691.933333pt;}
.y1e{bottom:694.973333pt;}
.y8a{bottom:696.093333pt;}
.y51{bottom:706.813333pt;}
.y102{bottom:708.093333pt;}
.y1d{bottom:708.733333pt;}
.y89{bottom:712.893333pt;}
.yda{bottom:718.813333pt;}
.ybb{bottom:719.133333pt;}
.y101{bottom:721.693333pt;}
.y1c{bottom:722.493333pt;}
.y50{bottom:724.573333pt;}
.y88{bottom:729.693333pt;}
.y100{bottom:735.453333pt;}
.yba{bottom:735.933333pt;}
.y1b{bottom:736.253333pt;}
.y4f{bottom:738.333333pt;}
.yaa{bottom:740.413333pt;}
.y87{bottom:746.653333pt;}
.y1a{bottom:750.173333pt;}
.yb9{bottom:752.893333pt;}
.ya9{bottom:757.373333pt;}
.yff{bottom:760.093333pt;}
.y4e{bottom:763.453333pt;}
.y19{bottom:763.933333pt;}
.yfe{bottom:773.693333pt;}
.ya8{bottom:774.213333pt;}
.y18{bottom:777.733333pt;}
.y4d{bottom:780.453333pt;}
.ya7{bottom:791.013333pt;}
.y17{bottom:791.493333pt;}
.y4c{bottom:797.253333pt;}
.yfd{bottom:798.373333pt;}
.y16{bottom:805.413333pt;}
.y86{bottom:807.973333pt;}
.yfc{bottom:812.133333pt;}
.y4b{bottom:814.213333pt;}
.y15{bottom:819.173333pt;}
.y85{bottom:824.773333pt;}
.yfb{bottom:825.893333pt;}
.yb8{bottom:831.013333pt;}
.y14{bottom:832.933333pt;}
.y4a{bottom:841.413333pt;}
.y84{bottom:841.733333pt;}
.yb7{bottom:847.813333pt;}
.yfa{bottom:850.533333pt;}
.y13{bottom:857.253333pt;}
.y83{bottom:858.533333pt;}
.yf9{bottom:864.133333pt;}
.yb6{bottom:864.773333pt;}
.y49{bottom:869.253333pt;}
.y12{bottom:871.173333pt;}
.y82{bottom:875.333333pt;}
.yb5{bottom:881.573333pt;}
.y11{bottom:884.933333pt;}
.y48{bottom:886.053333pt;}
.yf8{bottom:888.773333pt;}
.yf7{bottom:902.373333pt;}
.y10{bottom:902.853333pt;}
.yb4{bottom:909.093333pt;}
.y47{bottom:913.573333pt;}
.y81{bottom:919.813333pt;}
.yf{bottom:923.973333pt;}
.yb3{bottom:926.053333pt;}
.yf6{bottom:927.013333pt;}
.y46{bottom:930.533333pt;}
.y80{bottom:936.613333pt;}
.yf5{bottom:940.613333pt;}
.yb2{bottom:942.853333pt;}
.y45{bottom:947.333333pt;}
.yd9{bottom:953.573333pt;}
.ye{bottom:953.733333pt;}
.yb1{bottom:959.653333pt;}
.y44{bottom:964.133333pt;}
.yf4{bottom:965.253333pt;}
.yd{bottom:975.013333pt;}
.yf3{bottom:978.853333pt;}
.y43{bottom:981.093333pt;}
.yb0{bottom:987.013333pt;}
.y4{bottom:995.333333pt;}
.y42{bottom:997.893333pt;}
.yf2{bottom:1003.493333pt;}
.y3{bottom:1009.093333pt;}
.y41{bottom:1014.880000pt;}
.yf1{bottom:1017.280000pt;}
.y2{bottom:1023.680000pt;}
.yb{bottom:1044.320000pt;}
.y3c{bottom:1050.720000pt;}
.y1{bottom:1054.880000pt;}
.y3b{bottom:1064.480000pt;}
.h13{height:14.080000pt;}
.h14{height:14.112000pt;}
.h10{height:14.240000pt;}
.h15{height:14.272000pt;}
.h8{height:20.320000pt;}
.hb{height:31.406250pt;}
.h12{height:44.596875pt;}
.h11{height:45.795000pt;}
.h5{height:47.109375pt;}
.h6{height:47.742188pt;}
.hc{height:48.375000pt;}
.h16{height:49.105000pt;}
.h4{height:52.134375pt;}
.h9{height:54.390938pt;}
.h7{height:56.017500pt;}
.he{height:57.787500pt;}
.hf{height:58.563750pt;}
.hd{height:59.340000pt;}
.h3{height:64.500000pt;}
.ha{height:75.465000pt;}
.h2{height:75.796875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:58.272000pt;}
.w6{width:58.880000pt;}
.w5{width:65.472000pt;}
.w8{width:81.440000pt;}
.w4{width:139.200000pt;}
.w3{width:156.666667pt;}
.w9{width:201.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:1.760000pt;}
.xf{left:4.640000pt;}
.x11{left:7.360000pt;}
.x10{left:8.800000pt;}
.x12{left:10.240000pt;}
.x8{left:11.520000pt;}
.xc{left:13.280000pt;}
.x13{left:14.560000pt;}
.xe{left:17.120000pt;}
.x14{left:18.080000pt;}
.x15{left:19.040000pt;}
.x4{left:29.640000pt;}
.x1{left:94.431988pt;}
.x2{left:184.346655pt;}
.x7{left:234.426667pt;}
.x6{left:300.386655pt;}
.xa{left:358.786667pt;}
.x5{left:390.786655pt;}
.xb{left:417.053333pt;}
.xd{left:498.493333pt;}
.x3{left:570.973333pt;}
.x16{left:597.893322pt;}
}




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