
    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_dcb94955b4fcec5bcdfd683e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984027;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_da8d77aa82e62343d8cd3711.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722656;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_4ea61967181ef7bdff4179b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978000;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_83a3c07abef44ea1323d677e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_be8199a089c9147a82850889.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_9ba179b257cf83f20226cf6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978000;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_7f617d3271b4402afc81a9d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859000;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_2f7f0ad949e5b7b4a99965fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.066406;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-25.920045px;}
.v4{vertical-align:-22.328626px;}
.vd{vertical-align:-19.364380px;}
.vb{vertical-align:-16.490012px;}
.v5{vertical-align:-10.807185px;}
.v6{vertical-align:-9.412349px;}
.vf{vertical-align:-7.919130px;}
.ve{vertical-align:-6.480013px;}
.v11{vertical-align:-5.039978px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:2.160133px;}
.va{vertical-align:3.623625px;}
.v10{vertical-align:7.199892px;}
.v7{vertical-align:9.379832px;}
.v1{vertical-align:10.806996px;}
.v2{vertical-align:13.704574px;}
.v13{vertical-align:19.440032px;}
.v3{vertical-align:22.328626px;}
.v9{vertical-align:25.920045px;}
.v8{vertical-align:29.507040px;}
.ls19{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.124631px;}
.ls14{letter-spacing:0.133273px;}
.ls15{letter-spacing:0.139500px;}
.ls18{letter-spacing:0.142557px;}
.ls8{letter-spacing:0.342667px;}
.ls6{letter-spacing:0.349202px;}
.ls7{letter-spacing:0.360791px;}
.ls9{letter-spacing:0.364314px;}
.ls17{letter-spacing:2.435018px;}
.lsf{letter-spacing:2.648697px;}
.lsc{letter-spacing:2.649320px;}
.ls10{letter-spacing:2.653063px;}
.ls2{letter-spacing:7.794686px;}
.ls16{letter-spacing:8.778303px;}
.lsb{letter-spacing:11.485441px;}
.lsa{letter-spacing:11.492243px;}
.lse{letter-spacing:11.493457px;}
.ls11{letter-spacing:12.210570px;}
.ls4{letter-spacing:16.143827px;}
.ls0{letter-spacing:29.657950px;}
.ls13{letter-spacing:33.637915px;}
.ls1{letter-spacing:33.645776px;}
.ls3{letter-spacing:40.110661px;}
.lsd{letter-spacing:287.030545px;}
.ls12{letter-spacing:351.345976px;}
.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;}
}
.ws4{word-spacing:-29.023200px;}
.ws33{word-spacing:-19.815840px;}
.ws2{word-spacing:-13.811040px;}
.ws0{word-spacing:-13.610880px;}
.ws27{word-spacing:-12.409920px;}
.ws34{word-spacing:-11.609280px;}
.ws20{word-spacing:-10.008000px;}
.ws5{word-spacing:-9.820658px;}
.ws2a{word-spacing:-7.920000px;}
.ws6{word-spacing:-7.128000px;}
.ws3{word-spacing:-6.605280px;}
.ws30{word-spacing:-6.494400px;}
.ws2d{word-spacing:-5.702400px;}
.ws2e{word-spacing:-4.752000px;}
.ws26{word-spacing:-3.383956px;}
.ws13{word-spacing:-0.272010px;}
.ws15{word-spacing:-0.094754px;}
.ws1b{word-spacing:-0.089366px;}
.wsb{word-spacing:-0.089299px;}
.ws17{word-spacing:-0.081184px;}
.ws2c{word-spacing:-0.072000px;}
.ws35{word-spacing:0.000000px;}
.ws1{word-spacing:0.201600px;}
.ws2f{word-spacing:0.300892px;}
.ws1d{word-spacing:0.312414px;}
.ws1c{word-spacing:0.624954px;}
.ws12{word-spacing:0.629958px;}
.ws1e{word-spacing:1.294473px;}
.ws1f{word-spacing:2.187382px;}
.ws9{word-spacing:2.365886px;}
.ws32{word-spacing:2.450160px;}
.ws1a{word-spacing:2.812279px;}
.ws21{word-spacing:2.866967px;}
.ws24{word-spacing:3.120572px;}
.ws25{word-spacing:3.816132px;}
.ws11{word-spacing:5.665904px;}
.ws2b{word-spacing:6.018124px;}
.wse{word-spacing:6.418342px;}
.wsd{word-spacing:6.634350px;}
.wsa{word-spacing:6.641627px;}
.ws19{word-spacing:8.443740px;}
.wsc{word-spacing:8.802601px;}
.ws10{word-spacing:8.806021px;}
.ws7{word-spacing:9.179616px;}
.ws16{word-spacing:17.511443px;}
.wsf{word-spacing:20.072518px;}
.ws31{word-spacing:26.377965px;}
.ws23{word-spacing:41.975912px;}
.ws22{word-spacing:43.416132px;}
.ws14{word-spacing:47.039138px;}
.ws18{word-spacing:62.142728px;}
.ws8{word-spacing:99.242518px;}
.ws29{word-spacing:175.569172px;}
.ws28{word-spacing:525.815978px;}
._4{margin-left:-6.006960px;}
._2{margin-left:-3.705120px;}
._3{margin-left:-2.458080px;}
._0{margin-left:-1.205280px;}
._1{width:1.428480px;}
._5{width:2.462377px;}
._6{width:3.826563px;}
._8{width:5.674861px;}
._9{width:10.651781px;}
._a{width:37.799912px;}
._b{width:47.772006px;}
._7{width:215.745324px;}
.fc5{color:rgb(69,158,212);}
.fc7{color:rgb(0,133,152);}
.fc4{color:rgb(0,91,127);}
.fc9{color:transparent;}
.fc2{color:rgb(166,187,200);}
.fc8{color:rgb(191,191,191);}
.fc6{color:rgb(245,130,32);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,156,125);}
.fsf{font-size:21.600000px;}
.fs5{font-size:23.760000px;}
.fse{font-size:25.920000px;}
.fs8{font-size:26.640000px;}
.fs9{font-size:29.520000px;}
.fsd{font-size:32.400000px;}
.fs4{font-size:36.000000px;}
.fs10{font-size:41.760000px;}
.fs3{font-size:44.639354px;}
.fs2{font-size:44.640000px;}
.fs12{font-size:46.080000px;}
.fs0{font-size:48.960000px;}
.fsb{font-size:49.680000px;}
.fs6{font-size:50.400000px;}
.fs1{font-size:53.280275px;}
.fs7{font-size:65.520000px;}
.fs11{font-size:71.280000px;}
.fsa{font-size:74.160000px;}
.fsc{font-size:104.400000px;}
.y0{bottom:0.000000px;}
.y65{bottom:54.898567px;}
.y12{bottom:63.901046px;}
.y64{bottom:63.902222px;}
.y11{bottom:71.997108px;}
.y63{bottom:72.901191px;}
.y10{bottom:80.097399px;}
.y2b{bottom:111.439268px;}
.y2c{bottom:117.180039px;}
.yf{bottom:127.095435px;}
.y24{bottom:136.257155px;}
.ye{bottom:142.754794px;}
.yd{bottom:158.395764px;}
.y2a{bottom:159.660049px;}
.y28{bottom:162.017557px;}
.y23{bottom:162.357618px;}
.y29{bottom:166.140060px;}
.yc{bottom:174.077172px;}
.y22{bottom:188.465030px;}
.y27{bottom:188.653622px;}
.yb{bottom:195.477326px;}
.y26{bottom:208.634977px;}
.ya{bottom:208.976660px;}
.y21{bottom:215.813977px;}
.y25{bottom:224.474932px;}
.y9{bottom:243.540088px;}
.y20{bottom:247.138743px;}
.y8{bottom:256.140088px;}
.y1f{bottom:262.795566px;}
.y7{bottom:285.840088px;}
.y60{bottom:349.747656px;}
.y5f{bottom:371.167277px;}
.y44{bottom:388.440088px;}
.y41{bottom:391.862977px;}
.y55{bottom:392.400066px;}
.y43{bottom:399.240088px;}
.y42{bottom:416.339629px;}
.y40{bottom:416.882316px;}
.y54{bottom:451.080727px;}
.y4a{bottom:451.255102px;}
.y53{bottom:470.520066px;}
.y49{bottom:470.701389px;}
.y56{bottom:474.663243px;}
.y52{bottom:489.785030px;}
.y48{bottom:489.959405px;}
.y5e{bottom:492.664024px;}
.y51{bottom:509.224368px;}
.y47{bottom:509.398743px;}
.y5d{bottom:514.083644px;}
.y50{bottom:528.663639px;}
.y46{bottom:528.845030px;}
.y4c{bottom:539.820044px;}
.y4f{bottom:547.914639px;}
.y45{bottom:548.102977px;}
.y4e{bottom:555.840088px;}
.y4b{bottom:560.520044px;}
.y4d{bottom:566.280052px;}
.y67{bottom:568.258660px;}
.y66{bottom:577.800055px;}
.y6{bottom:598.510700px;}
.y3e{bottom:607.320044px;}
.y3f{bottom:612.000068px;}
.y3d{bottom:619.380066px;}
.y5c{bottom:619.738439px;}
.y5{bottom:629.814999px;}
.y5b{bottom:641.158060px;}
.y33{bottom:656.100055px;}
.y3c{bottom:660.061536px;}
.y32{bottom:668.700055px;}
.y3b{bottom:675.897579px;}
.y35{bottom:703.440088px;}
.y58{bottom:720.180066px;}
.y57{bottom:730.980066px;}
.y5a{bottom:732.966735px;}
.y38{bottom:752.935023px;}
.y59{bottom:754.386355px;}
.y34{bottom:754.740088px;}
.y36{bottom:765.720044px;}
.y3a{bottom:777.420044px;}
.y37{bottom:782.640088px;}
.y4{bottom:782.643659px;}
.y39{bottom:788.220044px;}
.y3{bottom:798.298629px;}
.y31{bottom:804.426896px;}
.y15{bottom:823.856810px;}
.y30{bottom:824.404792px;}
.y14{bottom:842.946014px;}
.y2f{bottom:844.566610px;}
.y13{bottom:854.463648px;}
.y2e{bottom:864.728428px;}
.y2{bottom:883.440191px;}
.y2d{bottom:884.883428px;}
.y1{bottom:914.762221px;}
.y62{bottom:947.696472px;}
.y61{bottom:960.120066px;}
.y1a{bottom:978.662939px;}
.y19{bottom:989.461873px;}
.y18{bottom:1014.840060px;}
.y17{bottom:1036.988713px;}
.y16{bottom:1068.302772px;}
.y1e{bottom:1095.840066px;}
.y1d{bottom:1127.160066px;}
.y1c{bottom:1158.480066px;}
.y1b{bottom:1189.800066px;}
.h11{height:18.105120px;}
.hd{height:20.299680px;}
.h25{height:21.844688px;}
.h2b{height:22.494240px;}
.h28{height:24.878672px;}
.h1a{height:27.305859px;}
.h5{height:27.432000px;}
.h6{height:28.626996px;}
.h20{height:29.622303px;}
.h23{height:30.339844px;}
.h24{height:30.340062px;}
.h27{height:31.163873px;}
.h26{height:31.821120px;}
.h9{height:33.925546px;}
.hb{height:33.944057px;}
.h1f{height:33.972531px;}
.hc{height:33.974060px;}
.h1d{height:33.983760px;}
.h4{height:33.984631px;}
.h1b{height:34.000830px;}
.h1c{height:34.001001px;}
.h1e{height:34.011203px;}
.ha{height:34.015680px;}
.h2c{height:34.560000px;}
.h22{height:34.729800px;}
.he{height:36.198814px;}
.h2{height:37.307520px;}
.h16{height:37.620862px;}
.h13{height:37.653379px;}
.h15{height:37.700867px;}
.h14{height:37.704588px;}
.h7{height:38.404800px;}
.h3{height:38.503324px;}
.h19{height:43.795871px;}
.h18{height:43.811583px;}
.h29{height:44.318703px;}
.h8{height:49.140000px;}
.h2a{height:54.315360px;}
.h10{height:60.148056px;}
.hf{height:60.184786px;}
.h21{height:63.522743px;}
.h17{height:73.326194px;}
.h12{height:79.552800px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:44.995500px;}
.x1{left:52.925762px;}
.x7{left:58.325401px;}
.x6{left:60.479458px;}
.x29{left:61.924500px;}
.x28{left:64.615317px;}
.x10{left:153.540412px;}
.x3{left:155.159994px;}
.x22{left:160.023239px;}
.x19{left:161.820003px;}
.x25{left:165.781803px;}
.x23{left:171.004675px;}
.x15{left:172.440006px;}
.x24{left:174.062521px;}
.xb{left:176.399561px;}
.x16{left:185.040006px;}
.x8{left:192.959489px;}
.x18{left:194.580008px;}
.x1d{left:196.020003px;}
.x1e{left:203.402154px;}
.xa{left:209.519433px;}
.x1a{left:211.500000px;}
.x9{left:216.897573px;}
.x17{left:263.699633px;}
.x1f{left:275.940006px;}
.x14{left:277.024675px;}
.x11{left:285.659998px;}
.x1b{left:290.517128px;}
.x1c{left:297.362506px;}
.x27{left:314.098214px;}
.xc{left:327.060001px;}
.xd{left:361.800007px;}
.x20{left:370.439999px;}
.x21{left:376.560001px;}
.x26{left:379.261436px;}
.xe{left:388.800007px;}
.xf{left:391.319996px;}
.x2{left:457.384311px;}
.x12{left:459.000000px;}
.x2d{left:464.215829px;}
.x4{left:470.345411px;}
.x2c{left:471.960234px;}
.x5{left:485.460000px;}
.x2e{left:565.557093px;}
.x2b{left:749.161376px;}
.x13{left:788.939978px;}
@media print{
.vc{vertical-align:-23.040040pt;}
.v4{vertical-align:-19.847668pt;}
.vd{vertical-align:-17.212782pt;}
.vb{vertical-align:-14.657788pt;}
.v5{vertical-align:-9.606387pt;}
.v6{vertical-align:-8.366532pt;}
.vf{vertical-align:-7.039227pt;}
.ve{vertical-align:-5.760012pt;}
.v11{vertical-align:-4.479980pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:1.920118pt;}
.va{vertical-align:3.221000pt;}
.v10{vertical-align:6.399904pt;}
.v7{vertical-align:8.337628pt;}
.v1{vertical-align:9.606219pt;}
.v2{vertical-align:12.181844pt;}
.v13{vertical-align:17.280028pt;}
.v3{vertical-align:19.847668pt;}
.v9{vertical-align:23.040040pt;}
.v8{vertical-align:26.228480pt;}
.ls19{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.110783pt;}
.ls14{letter-spacing:0.118465pt;}
.ls15{letter-spacing:0.124000pt;}
.ls18{letter-spacing:0.126718pt;}
.ls8{letter-spacing:0.304593pt;}
.ls6{letter-spacing:0.310401pt;}
.ls7{letter-spacing:0.320703pt;}
.ls9{letter-spacing:0.323835pt;}
.ls17{letter-spacing:2.164460pt;}
.lsf{letter-spacing:2.354397pt;}
.lsc{letter-spacing:2.354951pt;}
.ls10{letter-spacing:2.358278pt;}
.ls2{letter-spacing:6.928610pt;}
.ls16{letter-spacing:7.802936pt;}
.lsb{letter-spacing:10.209281pt;}
.lsa{letter-spacing:10.215327pt;}
.lse{letter-spacing:10.216407pt;}
.ls11{letter-spacing:10.853840pt;}
.ls4{letter-spacing:14.350068pt;}
.ls0{letter-spacing:26.362622pt;}
.ls13{letter-spacing:29.900369pt;}
.ls1{letter-spacing:29.907356pt;}
.ls3{letter-spacing:35.653921pt;}
.lsd{letter-spacing:255.138262pt;}
.ls12{letter-spacing:312.307534pt;}
.ws4{word-spacing:-25.798400pt;}
.ws33{word-spacing:-17.614080pt;}
.ws2{word-spacing:-12.276480pt;}
.ws0{word-spacing:-12.098560pt;}
.ws27{word-spacing:-11.031040pt;}
.ws34{word-spacing:-10.319360pt;}
.ws20{word-spacing:-8.896000pt;}
.ws5{word-spacing:-8.729474pt;}
.ws2a{word-spacing:-7.040000pt;}
.ws6{word-spacing:-6.336000pt;}
.ws3{word-spacing:-5.871360pt;}
.ws30{word-spacing:-5.772800pt;}
.ws2d{word-spacing:-5.068800pt;}
.ws2e{word-spacing:-4.224000pt;}
.ws26{word-spacing:-3.007961pt;}
.ws13{word-spacing:-0.241787pt;}
.ws15{word-spacing:-0.084226pt;}
.ws1b{word-spacing:-0.079437pt;}
.wsb{word-spacing:-0.079377pt;}
.ws17{word-spacing:-0.072164pt;}
.ws2c{word-spacing:-0.064000pt;}
.ws35{word-spacing:0.000000pt;}
.ws1{word-spacing:0.179200pt;}
.ws2f{word-spacing:0.267460pt;}
.ws1d{word-spacing:0.277702pt;}
.ws1c{word-spacing:0.555515pt;}
.ws12{word-spacing:0.559962pt;}
.ws1e{word-spacing:1.150642pt;}
.ws1f{word-spacing:1.944339pt;}
.ws9{word-spacing:2.103010pt;}
.ws32{word-spacing:2.177920pt;}
.ws1a{word-spacing:2.499804pt;}
.ws21{word-spacing:2.548415pt;}
.ws24{word-spacing:2.773842pt;}
.ws25{word-spacing:3.392117pt;}
.ws11{word-spacing:5.036359pt;}
.ws2b{word-spacing:5.349444pt;}
.wse{word-spacing:5.705193pt;}
.wsd{word-spacing:5.897200pt;}
.wsa{word-spacing:5.903668pt;}
.ws19{word-spacing:7.505546pt;}
.wsc{word-spacing:7.824534pt;}
.ws10{word-spacing:7.827575pt;}
.ws7{word-spacing:8.159658pt;}
.ws16{word-spacing:15.565727pt;}
.wsf{word-spacing:17.842239pt;}
.ws31{word-spacing:23.447080pt;}
.ws23{word-spacing:37.311922pt;}
.ws22{word-spacing:38.592117pt;}
.ws14{word-spacing:41.812567pt;}
.ws18{word-spacing:55.237981pt;}
.ws8{word-spacing:88.215572pt;}
.ws29{word-spacing:156.061486pt;}
.ws28{word-spacing:467.391980pt;}
._4{margin-left:-5.339520pt;}
._2{margin-left:-3.293440pt;}
._3{margin-left:-2.184960pt;}
._0{margin-left:-1.071360pt;}
._1{width:1.269760pt;}
._5{width:2.188780pt;}
._6{width:3.401389pt;}
._8{width:5.044321pt;}
._9{width:9.468250pt;}
._a{width:33.599922pt;}
._b{width:42.464005pt;}
._7{width:191.773621pt;}
.fsf{font-size:19.200000pt;}
.fs5{font-size:21.120000pt;}
.fse{font-size:23.040000pt;}
.fs8{font-size:23.680000pt;}
.fs9{font-size:26.240000pt;}
.fsd{font-size:28.800000pt;}
.fs4{font-size:32.000000pt;}
.fs10{font-size:37.120000pt;}
.fs3{font-size:39.679426pt;}
.fs2{font-size:39.680000pt;}
.fs12{font-size:40.960000pt;}
.fs0{font-size:43.520000pt;}
.fsb{font-size:44.160000pt;}
.fs6{font-size:44.800000pt;}
.fs1{font-size:47.360245pt;}
.fs7{font-size:58.240000pt;}
.fs11{font-size:63.360000pt;}
.fsa{font-size:65.920000pt;}
.fsc{font-size:92.800000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:48.798727pt;}
.y12{bottom:56.800930pt;}
.y64{bottom:56.801975pt;}
.y11{bottom:63.997430pt;}
.y63{bottom:64.801059pt;}
.y10{bottom:71.197688pt;}
.y2b{bottom:99.057127pt;}
.y2c{bottom:104.160035pt;}
.yf{bottom:112.973720pt;}
.y24{bottom:121.117471pt;}
.ye{bottom:126.893151pt;}
.yd{bottom:140.796234pt;}
.y2a{bottom:141.920044pt;}
.y28{bottom:144.015607pt;}
.y23{bottom:144.317883pt;}
.y29{bottom:147.680054pt;}
.yc{bottom:154.735264pt;}
.y22{bottom:167.524471pt;}
.y27{bottom:167.692108pt;}
.yb{bottom:173.757623pt;}
.y26{bottom:185.453313pt;}
.ya{bottom:185.757031pt;}
.y21{bottom:191.834647pt;}
.y25{bottom:199.533273pt;}
.y9{bottom:216.480078pt;}
.y20{bottom:219.678883pt;}
.y8{bottom:227.680078pt;}
.y1f{bottom:233.596059pt;}
.y7{bottom:254.080078pt;}
.y60{bottom:310.886806pt;}
.y5f{bottom:329.926468pt;}
.y44{bottom:345.280078pt;}
.y41{bottom:348.322647pt;}
.y55{bottom:348.800059pt;}
.y43{bottom:354.880078pt;}
.y42{bottom:370.079670pt;}
.y40{bottom:370.562059pt;}
.y54{bottom:400.960647pt;}
.y4a{bottom:401.115647pt;}
.y53{bottom:418.240059pt;}
.y49{bottom:418.401234pt;}
.y56{bottom:421.922883pt;}
.y52{bottom:435.364471pt;}
.y48{bottom:435.519471pt;}
.y5e{bottom:437.923577pt;}
.y51{bottom:452.643883pt;}
.y47{bottom:452.798883pt;}
.y5d{bottom:456.963239pt;}
.y50{bottom:469.923234pt;}
.y46{bottom:470.084471pt;}
.y4c{bottom:479.840039pt;}
.y4f{bottom:487.035234pt;}
.y45{bottom:487.202647pt;}
.y4e{bottom:494.080079pt;}
.y4b{bottom:498.240039pt;}
.y4d{bottom:503.360047pt;}
.y67{bottom:505.118809pt;}
.y66{bottom:513.600049pt;}
.y6{bottom:532.009511pt;}
.y3e{bottom:539.840039pt;}
.y3f{bottom:544.000061pt;}
.y3d{bottom:550.560059pt;}
.y5c{bottom:550.878613pt;}
.y5{bottom:559.835555pt;}
.y5b{bottom:569.918276pt;}
.y33{bottom:583.200049pt;}
.y3c{bottom:586.721365pt;}
.y32{bottom:594.400049pt;}
.y3b{bottom:600.797848pt;}
.y35{bottom:625.280078pt;}
.y58{bottom:640.160059pt;}
.y57{bottom:649.760059pt;}
.y5a{bottom:651.525986pt;}
.y38{bottom:669.275576pt;}
.y59{bottom:670.565649pt;}
.y34{bottom:670.880078pt;}
.y36{bottom:680.640039pt;}
.y3a{bottom:691.040039pt;}
.y37{bottom:695.680078pt;}
.y4{bottom:695.683252pt;}
.y39{bottom:700.640039pt;}
.y3{bottom:709.598781pt;}
.y31{bottom:715.046130pt;}
.y15{bottom:732.317164pt;}
.y30{bottom:732.804260pt;}
.y14{bottom:749.285346pt;}
.y2f{bottom:750.725876pt;}
.y13{bottom:759.523242pt;}
.y2e{bottom:768.647492pt;}
.y2{bottom:785.280169pt;}
.y2d{bottom:786.563047pt;}
.y1{bottom:813.121975pt;}
.y62{bottom:842.396864pt;}
.y61{bottom:853.440059pt;}
.y1a{bottom:869.922613pt;}
.y19{bottom:879.521665pt;}
.y18{bottom:902.080054pt;}
.y17{bottom:921.767745pt;}
.y16{bottom:949.602464pt;}
.y1e{bottom:974.080059pt;}
.y1d{bottom:1001.920059pt;}
.y1c{bottom:1029.760059pt;}
.y1b{bottom:1057.600059pt;}
.h11{height:16.093440pt;}
.hd{height:18.044160pt;}
.h25{height:19.417500pt;}
.h2b{height:19.994880pt;}
.h28{height:22.114375pt;}
.h1a{height:24.271875pt;}
.h5{height:24.384000pt;}
.h6{height:25.446219pt;}
.h20{height:26.330936pt;}
.h23{height:26.968750pt;}
.h24{height:26.968944pt;}
.h27{height:27.701220pt;}
.h26{height:28.285440pt;}
.h9{height:30.156041pt;}
.hb{height:30.172495pt;}
.h1f{height:30.197806pt;}
.hc{height:30.199164pt;}
.h1d{height:30.207787pt;}
.h4{height:30.208561pt;}
.h1b{height:30.222960pt;}
.h1c{height:30.223112pt;}
.h1e{height:30.232180pt;}
.ha{height:30.236160pt;}
.h2c{height:30.720000pt;}
.h22{height:30.870933pt;}
.he{height:32.176724pt;}
.h2{height:33.162240pt;}
.h16{height:33.440766pt;}
.h13{height:33.469670pt;}
.h15{height:33.511881pt;}
.h14{height:33.515189pt;}
.h7{height:34.137600pt;}
.h3{height:34.225177pt;}
.h19{height:38.929663pt;}
.h18{height:38.943629pt;}
.h29{height:39.394403pt;}
.h8{height:43.680000pt;}
.h2a{height:48.280320pt;}
.h10{height:53.464938pt;}
.hf{height:53.497588pt;}
.h21{height:56.464660pt;}
.h17{height:65.178839pt;}
.h12{height:70.713600pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:39.996000pt;}
.x1{left:47.045122pt;}
.x7{left:51.844801pt;}
.x6{left:53.759519pt;}
.x29{left:55.044000pt;}
.x28{left:57.435837pt;}
.x10{left:136.480366pt;}
.x3{left:137.919995pt;}
.x22{left:142.242879pt;}
.x19{left:143.840002pt;}
.x25{left:147.361603pt;}
.x23{left:152.004156pt;}
.x15{left:153.280005pt;}
.x24{left:154.722241pt;}
.xb{left:156.799610pt;}
.x16{left:164.480005pt;}
.x8{left:171.519545pt;}
.x18{left:172.960007pt;}
.x1d{left:174.240002pt;}
.x1e{left:180.801915pt;}
.xa{left:186.239496pt;}
.x1a{left:188.000000pt;}
.x9{left:192.797843pt;}
.x17{left:234.399673pt;}
.x1f{left:245.280005pt;}
.x14{left:246.244156pt;}
.x11{left:253.919998pt;}
.x1b{left:258.237447pt;}
.x1c{left:264.322228pt;}
.x27{left:279.198412pt;}
.xc{left:290.720001pt;}
.xd{left:321.600006pt;}
.x20{left:329.279999pt;}
.x21{left:334.720001pt;}
.x26{left:337.121276pt;}
.xe{left:345.600006pt;}
.xf{left:347.839996pt;}
.x2{left:406.563832pt;}
.x12{left:408.000000pt;}
.x2d{left:412.636292pt;}
.x4{left:418.084810pt;}
.x2c{left:419.520208pt;}
.x5{left:431.520000pt;}
.x2e{left:502.717416pt;}
.x2b{left:665.921223pt;}
.x13{left:701.279980pt;}
}




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