
    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_f02049008babac3d291a4382.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149414;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_2dfe8d1e714b8c038fb3e8d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_e25997af4bdeb65bd70f08a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6d3a9651112136911b0f62c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_9702f232d797639011576d2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_af21b5c91e0fcc5e323419a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_e0af5c43db661dd0e22abe64.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_b232081a26dcfd0eb11a4015.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_d720fe37546c5bb21717b587.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_b68a0c7fa3982cab1892fb78.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_230cafc13895d9a4682abf73.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.300000px;}
.ls16{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.597600px;}
.ls1f{letter-spacing:-0.305400px;}
.lsb{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.129600px;}
.ls18{letter-spacing:0.138240px;}
.lse{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.334080px;}
.ls1e{letter-spacing:0.391800px;}
.ls0{letter-spacing:0.401760px;}
.lsd{letter-spacing:0.457800px;}
.ls8{letter-spacing:0.554400px;}
.ls2{letter-spacing:0.558720px;}
.ls5{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.726000px;}
.ls7{letter-spacing:0.840000px;}
.ls1d{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.904320px;}
.lsf{letter-spacing:1.758000px;}
.ls9{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.280000px;}
.ls15{letter-spacing:3.600000px;}
.ls19{letter-spacing:3.720000px;}
.ls4{letter-spacing:10.800000px;}
.ls11{letter-spacing:12.240000px;}
.ls1c{letter-spacing:13.265280px;}
.ls13{letter-spacing:15.120000px;}
.ls1b{letter-spacing:18.000000px;}
.ls1a{letter-spacing:18.180000px;}
.ls6{letter-spacing:20.880000px;}
.ls20{letter-spacing:22.049280px;}
.ls3{letter-spacing:26.640000px;}
.lsa{letter-spacing:59.357280px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.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(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(64,64,64);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-66.240000px;}
.ws0{word-spacing:-21.804480px;}
.ws7{word-spacing:-19.331760px;}
.wsa{word-spacing:-18.875520px;}
.wsd{word-spacing:-18.437760px;}
.wse{word-spacing:-17.965560px;}
.ws3{word-spacing:-17.573760px;}
.ws5{word-spacing:-17.017800px;}
.ws6{word-spacing:-16.865400px;}
.ws4{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.wsb{word-spacing:-15.696240px;}
.wsc{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.319360px;}
.ws2{word-spacing:-12.366720px;}
.ws9{word-spacing:0.000000px;}
._13{margin-left:-3326.760000px;}
._15{margin-left:-4.402080px;}
._0{margin-left:-2.894400px;}
._1{margin-left:-1.447200px;}
._2{width:1.580160px;}
._11{width:2.784960px;}
._3{width:4.166400px;}
._e{width:5.620320px;}
._d{width:6.746400px;}
._9{width:8.376480px;}
._a{width:9.757440px;}
._8{width:10.843200px;}
._b{width:12.313920px;}
._12{width:13.316640px;}
._4{width:14.904000px;}
._c{width:18.007200px;}
._18{width:19.199040px;}
._f{width:20.203200px;}
._10{width:21.264480px;}
._16{width:22.439520px;}
._7{width:24.855840px;}
._6{width:26.164800px;}
._5{width:27.489600px;}
._17{width:35.570880px;}
._14{width:49.980960px;}
._23{width:59.228640px;}
._22{width:60.599520px;}
._1d{width:69.740640px;}
._1b{width:71.141760px;}
._1c{width:72.161280px;}
._19{width:96.929280px;}
._1a{width:98.958720px;}
._1f{width:111.593760px;}
._1e{width:113.260320px;}
._26{width:118.692000px;}
._24{width:158.955840px;}
._25{width:160.035840px;}
._21{width:252.033120px;}
._20{width:253.622880px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs4{font-size:54.720000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:83.520000px;}
.fs0{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y26{bottom:30.000000px;}
.y2{bottom:57.276000px;}
.y43{bottom:130.356000px;}
.y25{bottom:145.512000px;}
.y77{bottom:147.312000px;}
.y42{bottom:153.435000px;}
.y5e{bottom:157.755000px;}
.y24{bottom:168.555000px;}
.y76{bottom:169.995000px;}
.ya0{bottom:172.155000px;}
.y41{bottom:176.115000px;}
.y5d{bottom:180.435000px;}
.y23{bottom:192.315000px;}
.y75{bottom:193.035000px;}
.y9f{bottom:194.835000px;}
.y40{bottom:198.795000px;}
.y5c{bottom:203.475000px;}
.y22{bottom:215.355000px;}
.y74{bottom:215.715000px;}
.y9e{bottom:217.875000px;}
.y3f{bottom:221.475000px;}
.y5b{bottom:226.155000px;}
.y73{bottom:238.395000px;}
.y21{bottom:239.115000px;}
.y9d{bottom:240.555000px;}
.y3e{bottom:244.515000px;}
.y5a{bottom:248.835000px;}
.y72{bottom:261.075000px;}
.y20{bottom:261.795000px;}
.y9c{bottom:263.235000px;}
.y3d{bottom:267.225000px;}
.y59{bottom:280.905000px;}
.y71{bottom:284.145000px;}
.y1f{bottom:284.505000px;}
.y9b{bottom:285.945000px;}
.y3c{bottom:289.905000px;}
.y70{bottom:306.825000px;}
.y1e{bottom:307.545000px;}
.y9a{bottom:308.985000px;}
.y3b{bottom:312.585000px;}
.y58{bottom:314.385000px;}
.y6f{bottom:329.505000px;}
.y1d{bottom:330.225000px;}
.y99{bottom:331.665000px;}
.y3a{bottom:335.625000px;}
.y57{bottom:337.065000px;}
.y6e{bottom:352.185000px;}
.y1c{bottom:352.905000px;}
.y98{bottom:354.345000px;}
.y39{bottom:358.305000px;}
.y56{bottom:360.105000px;}
.y6d{bottom:375.225000px;}
.y1b{bottom:375.585000px;}
.y97{bottom:377.025000px;}
.y38{bottom:380.985000px;}
.y55{bottom:382.785000px;}
.y6c{bottom:397.905000px;}
.y96{bottom:400.110000px;}
.y37{bottom:403.710000px;}
.y54{bottom:405.510000px;}
.y1a{bottom:409.470000px;}
.y95{bottom:422.790000px;}
.y36{bottom:426.750000px;}
.y53{bottom:428.190000px;}
.y6b{bottom:431.430000px;}
.y94{bottom:445.470000px;}
.y52{bottom:447.630000px;}
.y35{bottom:449.430000px;}
.y19{bottom:457.710000px;}
.y93{bottom:468.150000px;}
.y6a{bottom:479.670000px;}
.y18{bottom:480.390000px;}
.y34{bottom:481.470000px;}
.y92{bottom:491.190000px;}
.y69{bottom:502.710000px;}
.y17{bottom:503.070000px;}
.y91{bottom:513.870000px;}
.y33{bottom:514.950000px;}
.y68{bottom:525.390000px;}
.y16{bottom:526.110000px;}
.y32{bottom:534.420000px;}
.y90{bottom:536.580000px;}
.y67{bottom:548.100000px;}
.y15{bottom:548.820000px;}
.y8f{bottom:559.260000px;}
.y66{bottom:570.780000px;}
.y14{bottom:571.500000px;}
.y8e{bottom:582.300000px;}
.y65{bottom:589.860000px;}
.yb8{bottom:591.300000px;}
.y13{bottom:594.180000px;}
.y51{bottom:599.580000px;}
.y8d{bottom:604.980000px;}
.yb7{bottom:613.980000px;}
.y12{bottom:617.220000px;}
.y50{bottom:622.260000px;}
.y8c{bottom:627.660000px;}
.yb6{bottom:637.020000px;}
.y11{bottom:639.900000px;}
.y4f{bottom:644.940000px;}
.y8b{bottom:650.340000px;}
.yb5{bottom:659.700000px;}
.y10{bottom:662.580000px;}
.y4e{bottom:668.010000px;}
.y8a{bottom:673.410000px;}
.yb4{bottom:682.410000px;}
.y4d{bottom:687.450000px;}
.y89{bottom:696.090000px;}
.yf{bottom:696.450000px;}
.yb3{bottom:705.090000px;}
.y88{bottom:718.770000px;}
.yb2{bottom:728.130000px;}
.y87{bottom:741.450000px;}
.ye{bottom:744.690000px;}
.yb1{bottom:750.810000px;}
.y86{bottom:764.490000px;}
.yb0{bottom:773.490000px;}
.yd{bottom:778.170000px;}
.y85{bottom:787.170000px;}
.yaf{bottom:796.170000px;}
.y64{bottom:800.175000px;}
.yae{bottom:819.255000px;}
.y84{bottom:820.695000px;}
.y63{bottom:822.855000px;}
.yc{bottom:826.455000px;}
.yad{bottom:841.935000px;}
.y62{bottom:845.535000px;}
.yb{bottom:849.135000px;}
.yac{bottom:864.615000px;}
.y61{bottom:868.215000px;}
.y83{bottom:868.935000px;}
.ya{bottom:872.175000px;}
.yab{bottom:887.295000px;}
.y31{bottom:889.095000px;}
.y60{bottom:891.255000px;}
.y82{bottom:891.975000px;}
.y9{bottom:894.855000px;}
.y5f{bottom:910.335000px;}
.y30{bottom:911.775000px;}
.y81{bottom:914.655000px;}
.y8{bottom:917.535000px;}
.y4c{bottom:921.855000px;}
.yaa{bottom:933.045000px;}
.y2f{bottom:934.485000px;}
.y80{bottom:937.365000px;}
.y7{bottom:940.245000px;}
.y4b{bottom:944.565000px;}
.ya9{bottom:955.725000px;}
.y2e{bottom:957.525000px;}
.y7f{bottom:960.045000px;}
.y4a{bottom:967.245000px;}
.y6{bottom:974.085000px;}
.ya8{bottom:978.405000px;}
.y2d{bottom:980.205000px;}
.y7e{bottom:983.085000px;}
.y49{bottom:999.285000px;}
.ya7{bottom:1001.445000px;}
.y2c{bottom:1002.885000px;}
.y7d{bottom:1005.765000px;}
.ya6{bottom:1024.125000px;}
.y2b{bottom:1025.565000px;}
.y7c{bottom:1028.445000px;}
.y5{bottom:1032.405000px;}
.y48{bottom:1032.765000px;}
.ya5{bottom:1046.805000px;}
.y2a{bottom:1048.605000px;}
.y7b{bottom:1051.125000px;}
.y47{bottom:1055.805000px;}
.y4{bottom:1064.445000px;}
.ya4{bottom:1069.530000px;}
.y7a{bottom:1074.210000px;}
.y46{bottom:1078.530000px;}
.y29{bottom:1080.690000px;}
.ya3{bottom:1092.570000px;}
.y79{bottom:1096.890000px;}
.y45{bottom:1101.210000px;}
.y28{bottom:1114.170000px;}
.ya2{bottom:1115.250000px;}
.y3{bottom:1124.610000px;}
.y78{bottom:1130.370000px;}
.y44{bottom:1133.250000px;}
.y27{bottom:1136.850000px;}
.ya1{bottom:1137.930000px;}
.y1{bottom:1187.250000px;}
.h6{height:52.163437px;}
.h9{height:54.596250px;}
.hb{height:59.383125px;}
.hd{height:62.578125px;}
.h8{height:64.978594px;}
.ha{height:65.010937px;}
.h3{height:65.884219px;}
.hc{height:68.084282px;}
.he{height:79.523438px;}
.h7{height:91.863281px;}
.h5{height:93.628125px;}
.h2{height:98.788359px;}
.h4{height:113.800781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:106.235987px;}
.x14{left:111.275987px;}
.x9{left:127.475987px;}
.x6{left:133.235987px;}
.x15{left:138.275987px;}
.x7{left:160.274987px;}
.x4{left:172.514987px;}
.x3{left:204.194987px;}
.xb{left:265.064987px;}
.xd{left:267.224987px;}
.x5{left:277.304987px;}
.xf{left:328.829987px;}
.x13{left:333.509987px;}
.x11{left:341.789987px;}
.x1{left:606.809987px;}
.x10{left:624.134987px;}
.xc{left:627.014987px;}
.xe{left:695.414987px;}
.xa{left:735.764987px;}
.x12{left:786.524987px;}
.x8{left:832.500000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.600000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.531200pt;}
.ls1f{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.115200pt;}
.ls18{letter-spacing:0.122880pt;}
.lse{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.296960pt;}
.ls1e{letter-spacing:0.348267pt;}
.ls0{letter-spacing:0.357120pt;}
.lsd{letter-spacing:0.406933pt;}
.ls8{letter-spacing:0.492800pt;}
.ls2{letter-spacing:0.496640pt;}
.ls5{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.645333pt;}
.ls7{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.803840pt;}
.lsf{letter-spacing:1.562667pt;}
.ls9{letter-spacing:1.920000pt;}
.ls14{letter-spacing:2.026667pt;}
.ls15{letter-spacing:3.200000pt;}
.ls19{letter-spacing:3.306667pt;}
.ls4{letter-spacing:9.600000pt;}
.ls11{letter-spacing:10.880000pt;}
.ls1c{letter-spacing:11.791360pt;}
.ls13{letter-spacing:13.440000pt;}
.ls1b{letter-spacing:16.000000pt;}
.ls1a{letter-spacing:16.160000pt;}
.ls6{letter-spacing:18.560000pt;}
.ls20{letter-spacing:19.599360pt;}
.ls3{letter-spacing:23.680000pt;}
.lsa{letter-spacing:52.762027pt;}
.ws8{word-spacing:-58.880000pt;}
.ws0{word-spacing:-19.381760pt;}
.ws7{word-spacing:-17.183787pt;}
.wsa{word-spacing:-16.778240pt;}
.wsd{word-spacing:-16.389120pt;}
.wse{word-spacing:-15.969387pt;}
.ws3{word-spacing:-15.621120pt;}
.ws5{word-spacing:-15.126933pt;}
.ws6{word-spacing:-14.991467pt;}
.ws4{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.wsb{word-spacing:-13.952213pt;}
.wsc{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.728320pt;}
.ws2{word-spacing:-10.992640pt;}
.ws9{word-spacing:0.000000pt;}
._13{margin-left:-2957.120000pt;}
._15{margin-left:-3.912960pt;}
._0{margin-left:-2.572800pt;}
._1{margin-left:-1.286400pt;}
._2{width:1.404587pt;}
._11{width:2.475520pt;}
._3{width:3.703467pt;}
._e{width:4.995840pt;}
._d{width:5.996800pt;}
._9{width:7.445760pt;}
._a{width:8.673280pt;}
._8{width:9.638400pt;}
._b{width:10.945707pt;}
._12{width:11.837013pt;}
._4{width:13.248000pt;}
._c{width:16.006400pt;}
._18{width:17.065813pt;}
._f{width:17.958400pt;}
._10{width:18.901760pt;}
._16{width:19.946240pt;}
._7{width:22.094080pt;}
._6{width:23.257600pt;}
._5{width:24.435200pt;}
._17{width:31.618560pt;}
._14{width:44.427520pt;}
._23{width:52.647680pt;}
._22{width:53.866240pt;}
._1d{width:61.991680pt;}
._1b{width:63.237120pt;}
._1c{width:64.143360pt;}
._19{width:86.159360pt;}
._1a{width:87.963307pt;}
._1f{width:99.194453pt;}
._1e{width:100.675840pt;}
._26{width:105.504000pt;}
._24{width:141.294080pt;}
._25{width:142.254080pt;}
._21{width:224.029440pt;}
._20{width:225.442560pt;}
.fs4{font-size:48.640000pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.240000pt;}
.fs0{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:26.666667pt;}
.y2{bottom:50.912000pt;}
.y43{bottom:115.872000pt;}
.y25{bottom:129.344000pt;}
.y77{bottom:130.944000pt;}
.y42{bottom:136.386667pt;}
.y5e{bottom:140.226667pt;}
.y24{bottom:149.826667pt;}
.y76{bottom:151.106667pt;}
.ya0{bottom:153.026667pt;}
.y41{bottom:156.546667pt;}
.y5d{bottom:160.386667pt;}
.y23{bottom:170.946667pt;}
.y75{bottom:171.586667pt;}
.y9f{bottom:173.186667pt;}
.y40{bottom:176.706667pt;}
.y5c{bottom:180.866667pt;}
.y22{bottom:191.426667pt;}
.y74{bottom:191.746667pt;}
.y9e{bottom:193.666667pt;}
.y3f{bottom:196.866667pt;}
.y5b{bottom:201.026667pt;}
.y73{bottom:211.906667pt;}
.y21{bottom:212.546667pt;}
.y9d{bottom:213.826667pt;}
.y3e{bottom:217.346667pt;}
.y5a{bottom:221.186667pt;}
.y72{bottom:232.066667pt;}
.y20{bottom:232.706667pt;}
.y9c{bottom:233.986667pt;}
.y3d{bottom:237.533333pt;}
.y59{bottom:249.693333pt;}
.y71{bottom:252.573333pt;}
.y1f{bottom:252.893333pt;}
.y9b{bottom:254.173333pt;}
.y3c{bottom:257.693333pt;}
.y70{bottom:272.733333pt;}
.y1e{bottom:273.373333pt;}
.y9a{bottom:274.653333pt;}
.y3b{bottom:277.853333pt;}
.y58{bottom:279.453333pt;}
.y6f{bottom:292.893333pt;}
.y1d{bottom:293.533333pt;}
.y99{bottom:294.813333pt;}
.y3a{bottom:298.333333pt;}
.y57{bottom:299.613333pt;}
.y6e{bottom:313.053333pt;}
.y1c{bottom:313.693333pt;}
.y98{bottom:314.973333pt;}
.y39{bottom:318.493333pt;}
.y56{bottom:320.093333pt;}
.y6d{bottom:333.533333pt;}
.y1b{bottom:333.853333pt;}
.y97{bottom:335.133333pt;}
.y38{bottom:338.653333pt;}
.y55{bottom:340.253333pt;}
.y6c{bottom:353.693333pt;}
.y96{bottom:355.653333pt;}
.y37{bottom:358.853333pt;}
.y54{bottom:360.453333pt;}
.y1a{bottom:363.973333pt;}
.y95{bottom:375.813333pt;}
.y36{bottom:379.333333pt;}
.y53{bottom:380.613333pt;}
.y6b{bottom:383.493333pt;}
.y94{bottom:395.973333pt;}
.y52{bottom:397.893333pt;}
.y35{bottom:399.493333pt;}
.y19{bottom:406.853333pt;}
.y93{bottom:416.133333pt;}
.y6a{bottom:426.373333pt;}
.y18{bottom:427.013333pt;}
.y34{bottom:427.973333pt;}
.y92{bottom:436.613333pt;}
.y69{bottom:446.853333pt;}
.y17{bottom:447.173333pt;}
.y91{bottom:456.773333pt;}
.y33{bottom:457.733333pt;}
.y68{bottom:467.013333pt;}
.y16{bottom:467.653333pt;}
.y32{bottom:475.040000pt;}
.y90{bottom:476.960000pt;}
.y67{bottom:487.200000pt;}
.y15{bottom:487.840000pt;}
.y8f{bottom:497.120000pt;}
.y66{bottom:507.360000pt;}
.y14{bottom:508.000000pt;}
.y8e{bottom:517.600000pt;}
.y65{bottom:524.320000pt;}
.yb8{bottom:525.600000pt;}
.y13{bottom:528.160000pt;}
.y51{bottom:532.960000pt;}
.y8d{bottom:537.760000pt;}
.yb7{bottom:545.760000pt;}
.y12{bottom:548.640000pt;}
.y50{bottom:553.120000pt;}
.y8c{bottom:557.920000pt;}
.yb6{bottom:566.240000pt;}
.y11{bottom:568.800000pt;}
.y4f{bottom:573.280000pt;}
.y8b{bottom:578.080000pt;}
.yb5{bottom:586.400000pt;}
.y10{bottom:588.960000pt;}
.y4e{bottom:593.786667pt;}
.y8a{bottom:598.586667pt;}
.yb4{bottom:606.586667pt;}
.y4d{bottom:611.066667pt;}
.y89{bottom:618.746667pt;}
.yf{bottom:619.066667pt;}
.yb3{bottom:626.746667pt;}
.y88{bottom:638.906667pt;}
.yb2{bottom:647.226667pt;}
.y87{bottom:659.066667pt;}
.ye{bottom:661.946667pt;}
.yb1{bottom:667.386667pt;}
.y86{bottom:679.546667pt;}
.yb0{bottom:687.546667pt;}
.yd{bottom:691.706667pt;}
.y85{bottom:699.706667pt;}
.yaf{bottom:707.706667pt;}
.y64{bottom:711.266667pt;}
.yae{bottom:728.226667pt;}
.y84{bottom:729.506667pt;}
.y63{bottom:731.426667pt;}
.yc{bottom:734.626667pt;}
.yad{bottom:748.386667pt;}
.y62{bottom:751.586667pt;}
.yb{bottom:754.786667pt;}
.yac{bottom:768.546667pt;}
.y61{bottom:771.746667pt;}
.y83{bottom:772.386667pt;}
.ya{bottom:775.266667pt;}
.yab{bottom:788.706667pt;}
.y31{bottom:790.306667pt;}
.y60{bottom:792.226667pt;}
.y82{bottom:792.866667pt;}
.y9{bottom:795.426667pt;}
.y5f{bottom:809.186667pt;}
.y30{bottom:810.466667pt;}
.y81{bottom:813.026667pt;}
.y8{bottom:815.586667pt;}
.y4c{bottom:819.426667pt;}
.yaa{bottom:829.373333pt;}
.y2f{bottom:830.653333pt;}
.y80{bottom:833.213333pt;}
.y7{bottom:835.773333pt;}
.y4b{bottom:839.613333pt;}
.ya9{bottom:849.533333pt;}
.y2e{bottom:851.133333pt;}
.y7f{bottom:853.373333pt;}
.y4a{bottom:859.773333pt;}
.y6{bottom:865.853333pt;}
.ya8{bottom:869.693333pt;}
.y2d{bottom:871.293333pt;}
.y7e{bottom:873.853333pt;}
.y49{bottom:888.253333pt;}
.ya7{bottom:890.173333pt;}
.y2c{bottom:891.453333pt;}
.y7d{bottom:894.013333pt;}
.ya6{bottom:910.333333pt;}
.y2b{bottom:911.613333pt;}
.y7c{bottom:914.173333pt;}
.y5{bottom:917.693333pt;}
.y48{bottom:918.013333pt;}
.ya5{bottom:930.493333pt;}
.y2a{bottom:932.093333pt;}
.y7b{bottom:934.333333pt;}
.y47{bottom:938.493333pt;}
.y4{bottom:946.173333pt;}
.ya4{bottom:950.693333pt;}
.y7a{bottom:954.853333pt;}
.y46{bottom:958.693333pt;}
.y29{bottom:960.613333pt;}
.ya3{bottom:971.173333pt;}
.y79{bottom:975.013333pt;}
.y45{bottom:978.853333pt;}
.y28{bottom:990.373333pt;}
.ya2{bottom:991.333333pt;}
.y3{bottom:999.653333pt;}
.y78{bottom:1004.773333pt;}
.y44{bottom:1007.333333pt;}
.y27{bottom:1010.533333pt;}
.ya1{bottom:1011.493333pt;}
.y1{bottom:1055.333333pt;}
.h6{height:46.367500pt;}
.h9{height:48.530000pt;}
.hb{height:52.785000pt;}
.hd{height:55.625000pt;}
.h8{height:57.758750pt;}
.ha{height:57.787500pt;}
.h3{height:58.563750pt;}
.hc{height:60.519362pt;}
.he{height:70.687500pt;}
.h7{height:81.656250pt;}
.h5{height:83.225000pt;}
.h2{height:87.811875pt;}
.h4{height:101.156250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:94.431988pt;}
.x14{left:98.911988pt;}
.x9{left:113.311988pt;}
.x6{left:118.431988pt;}
.x15{left:122.911988pt;}
.x7{left:142.466655pt;}
.x4{left:153.346655pt;}
.x3{left:181.506655pt;}
.xb{left:235.613322pt;}
.xd{left:237.533322pt;}
.x5{left:246.493322pt;}
.xf{left:292.293322pt;}
.x13{left:296.453322pt;}
.x11{left:303.813322pt;}
.x1{left:539.386655pt;}
.x10{left:554.786655pt;}
.xc{left:557.346655pt;}
.xe{left:618.146655pt;}
.xa{left:654.013322pt;}
.x12{left:699.133322pt;}
.x8{left:740.000000pt;}
}




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