
    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_a92b6c8fd4282211c1435645.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_5409c3a3e347270c3bf69075.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_f78cb7951731dfb10b646fd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_34ec39b76cec66e8e807f173.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_28d13231028996fef31049e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_7c63819d15ab52b7ed11bd1e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_77c743382811f6f51629892b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_75b809ea95421d7481253586.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_97bc5c44cda453560a6daa13.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1b4e06a3c9578a325cbf1e77.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064941;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.960000px;}
.ls16{letter-spacing:-0.618000px;}
.ls8{letter-spacing:-0.597600px;}
.ls9{letter-spacing:-0.322800px;}
.ls11{letter-spacing:-0.233400px;}
.ls18{letter-spacing:-0.227400px;}
.ls7{letter-spacing:-0.150000px;}
.ls6{letter-spacing:-0.094800px;}
.lsf{letter-spacing:-0.069000px;}
.ls13{letter-spacing:-0.043200px;}
.ls4{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.023040px;}
.lse{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.075000px;}
.ls2{letter-spacing:0.082800px;}
.ls17{letter-spacing:0.100800px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.187200px;}
.ls12{letter-spacing:0.308400px;}
.ls3{letter-spacing:0.360000px;}
.lsd{letter-spacing:27.665280px;}
.lsb{letter-spacing:28.385280px;}
.lsa{letter-spacing:31.961280px;}
.lsc{letter-spacing:35.561280px;}
.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;}
}
.wse{word-spacing:-15.840000px;}
.wsb{word-spacing:-14.881200px;}
.ws9{word-spacing:-14.647800px;}
.wsd{word-spacing:-14.621760px;}
.wsf{word-spacing:-14.595840px;}
.ws1{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.529600px;}
.ws8{word-spacing:-14.503800px;}
.ws10{word-spacing:-14.345400px;}
.wsa{word-spacing:-14.339400px;}
.ws0{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.972800px;}
.ws2{word-spacing:-10.695600px;}
.ws7{word-spacing:-9.092400px;}
.ws5{word-spacing:-7.920000px;}
.ws4{word-spacing:-7.884000px;}
.ws6{word-spacing:0.000000px;}
._20{margin-left:-4.219920px;}
._1a{margin-left:-3.113280px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._11{width:2.569680px;}
._13{width:4.086720px;}
._b{width:5.804160px;}
._a{width:7.111440px;}
._1f{width:8.193120px;}
._12{width:9.210480px;}
._c{width:11.115360px;}
._22{width:12.290400px;}
._21{width:13.466160px;}
._10{width:15.238800px;}
._d{width:17.270640px;}
._e{width:18.353760px;}
._1b{width:19.426320px;}
._24{width:20.487600px;}
._1c{width:21.528000px;}
._1d{width:22.919040px;}
._7{width:23.963760px;}
._6{width:25.158960px;}
._9{width:26.772480px;}
._8{width:27.788400px;}
._18{width:28.880640px;}
._19{width:29.926080px;}
._1e{width:31.762800px;}
._14{width:33.353520px;}
._15{width:34.481520px;}
._f{width:36.520800px;}
._25{width:44.049600px;}
._16{width:47.246880px;}
._23{width:48.521760px;}
._27{width:64.517760px;}
._28{width:65.774640px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._4{width:201.669840px;}
._5{width:202.852800px;}
._26{width:227.600640px;}
._17{width:1056.007200px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.y59{bottom:-56.010000px;}
.y58{bottom:-35.310000px;}
.y57{bottom:-16.560000px;}
.y56{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y55{bottom:4.500000px;}
.y54{bottom:14.940000px;}
.y53{bottom:36.540000px;}
.y52{bottom:53.280000px;}
.ya{bottom:56.520000px;}
.y9{bottom:70.596000px;}
.y8{bottom:84.456000px;}
.y51{bottom:96.300000px;}
.y7{bottom:98.316000px;}
.y50{bottom:110.160000px;}
.y6{bottom:111.996000px;}
.y8a{bottom:115.596000px;}
.y4f{bottom:123.840000px;}
.yb4{bottom:128.916000px;}
.y40{bottom:130.356000px;}
.y4e{bottom:137.700000px;}
.y89{bottom:137.916000px;}
.y99{bottom:151.050000px;}
.y4d{bottom:151.560000px;}
.y3f{bottom:152.490000px;}
.ycb{bottom:158.070000px;}
.y88{bottom:160.050000px;}
.y4c{bottom:165.240000px;}
.y98{bottom:173.370000px;}
.y3e{bottom:174.810000px;}
.y4b{bottom:179.100000px;}
.yca{bottom:180.390000px;}
.y87{bottom:182.370000px;}
.y4a{bottom:192.960000px;}
.y97{bottom:195.510000px;}
.y3d{bottom:197.130000px;}
.yc9{bottom:202.530000px;}
.y86{bottom:204.510000px;}
.y49{bottom:207.000000px;}
.y96{bottom:217.830000px;}
.y3c{bottom:219.270000px;}
.y48{bottom:220.860000px;}
.yc8{bottom:224.850000px;}
.y85{bottom:226.830000px;}
.y47{bottom:234.720000px;}
.y95{bottom:240.150000px;}
.y3b{bottom:241.590000px;}
.yc7{bottom:246.990000px;}
.y46{bottom:248.985000px;}
.y84{bottom:249.150000px;}
.y94{bottom:262.290000px;}
.y45{bottom:263.025000px;}
.y3a{bottom:263.730000px;}
.yc6{bottom:269.310000px;}
.y83{bottom:271.290000px;}
.y44{bottom:277.065000px;}
.yb3{bottom:284.610000px;}
.y39{bottom:286.050000px;}
.y93{bottom:289.110000px;}
.y43{bottom:291.105000px;}
.yc5{bottom:291.450000px;}
.y82{bottom:293.610000px;}
.y42{bottom:305.505000px;}
.yb2{bottom:306.750000px;}
.y38{bottom:308.370000px;}
.y92{bottom:311.250000px;}
.yc4{bottom:313.770000px;}
.y81{bottom:315.750000px;}
.y37{bottom:327.630000px;}
.yb1{bottom:329.070000px;}
.y91{bottom:333.570000px;}
.yc3{bottom:336.090000px;}
.y80{bottom:338.115000px;}
.y36{bottom:345.135000px;}
.yb0{bottom:351.255000px;}
.y90{bottom:355.755000px;}
.yc2{bottom:358.275000px;}
.y7f{bottom:360.255000px;}
.y35{bottom:362.775000px;}
.yaf{bottom:373.575000px;}
.y8f{bottom:378.075000px;}
.y34{bottom:380.415000px;}
.yc1{bottom:380.595000px;}
.y7e{bottom:382.575000px;}
.yae{bottom:395.895000px;}
.y33{bottom:397.875000px;}
.y8e{bottom:400.395000px;}
.yc0{bottom:402.735000px;}
.y7d{bottom:404.895000px;}
.y32{bottom:415.515000px;}
.yad{bottom:418.035000px;}
.y8d{bottom:422.535000px;}
.ybf{bottom:425.055000px;}
.y7c{bottom:427.035000px;}
.y31{bottom:433.155000px;}
.yac{bottom:440.355000px;}
.y8c{bottom:444.855000px;}
.ybe{bottom:447.375000px;}
.y7b{bottom:449.355000px;}
.y30{bottom:450.615000px;}
.yab{bottom:462.495000px;}
.y8b{bottom:466.995000px;}
.y2f{bottom:468.255000px;}
.ybd{bottom:469.515000px;}
.y7a{bottom:471.495000px;}
.yaa{bottom:484.815000px;}
.y2e{bottom:485.895000px;}
.ybc{bottom:491.835000px;}
.y79{bottom:493.815000px;}
.y2d{bottom:503.535000px;}
.ya9{bottom:507.135000px;}
.ybb{bottom:513.975000px;}
.y78{bottom:516.135000px;}
.y2c{bottom:520.995000px;}
.ya8{bottom:529.275000px;}
.yba{bottom:536.295000px;}
.y77{bottom:538.275000px;}
.y2b{bottom:538.635000px;}
.ya7{bottom:551.595000px;}
.y2a{bottom:556.275000px;}
.yb9{bottom:558.615000px;}
.y76{bottom:560.595000px;}
.ya6{bottom:573.735000px;}
.y29{bottom:576.075000px;}
.yb8{bottom:580.755000px;}
.y75{bottom:582.735000px;}
.y28{bottom:593.715000px;}
.ya5{bottom:596.055000px;}
.yb7{bottom:603.075000px;}
.y74{bottom:605.085000px;}
.y27{bottom:611.205000px;}
.ya4{bottom:618.405000px;}
.y41{bottom:622.005000px;}
.yb6{bottom:625.245000px;}
.y73{bottom:627.405000px;}
.y26{bottom:628.845000px;}
.ya3{bottom:640.545000px;}
.y25{bottom:646.485000px;}
.yb5{bottom:648.285000px;}
.y72{bottom:649.545000px;}
.ya2{bottom:662.865000px;}
.y24{bottom:663.945000px;}
.y71{bottom:671.865000px;}
.y23{bottom:681.585000px;}
.ya1{bottom:685.005000px;}
.y70{bottom:694.005000px;}
.y22{bottom:699.225000px;}
.ya0{bottom:707.325000px;}
.y6f{bottom:716.325000px;}
.y21{bottom:716.685000px;}
.y9f{bottom:733.965000px;}
.y20{bottom:734.325000px;}
.y6e{bottom:738.465000px;}
.y1f{bottom:751.965000px;}
.y9e{bottom:756.285000px;}
.y6d{bottom:760.785000px;}
.y1e{bottom:769.425000px;}
.y9d{bottom:778.605000px;}
.y6c{bottom:783.105000px;}
.y1d{bottom:787.065000px;}
.y9c{bottom:800.745000px;}
.y1c{bottom:804.705000px;}
.y6b{bottom:805.245000px;}
.y1b{bottom:822.345000px;}
.y9b{bottom:823.065000px;}
.y6a{bottom:827.565000px;}
.y1a{bottom:839.805000px;}
.y9a{bottom:845.205000px;}
.y69{bottom:849.705000px;}
.y19{bottom:857.445000px;}
.y68{bottom:872.070000px;}
.y18{bottom:875.130000px;}
.y17{bottom:892.590000px;}
.y67{bottom:894.390000px;}
.y16{bottom:910.230000px;}
.y66{bottom:916.530000px;}
.y15{bottom:927.870000px;}
.y65{bottom:938.850000px;}
.y14{bottom:945.690000px;}
.y64{bottom:960.990000px;}
.y13{bottom:964.410000px;}
.y12{bottom:980.790000px;}
.y63{bottom:983.310000px;}
.y11{bottom:999.150000px;}
.y62{bottom:1005.450000px;}
.y10{bottom:1014.270000px;}
.y61{bottom:1027.770000px;}
.yf{bottom:1033.530000px;}
.y60{bottom:1050.090000px;}
.ye{bottom:1052.070000px;}
.yd{bottom:1067.730000px;}
.y5f{bottom:1072.230000px;}
.yc{bottom:1090.590000px;}
.y5e{bottom:1094.550000px;}
.yb{bottom:1113.810000px;}
.y5d{bottom:1116.690000px;}
.y5{bottom:1131.990000px;}
.y5c{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y5b{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y5a{bottom:1197.540000px;}
.hf{height:30.480469px;}
.he{height:32.670352px;}
.h5{height:33.683203px;}
.hb{height:34.036523px;}
.h3{height:38.100586px;}
.hd{height:39.760312px;}
.hc{height:40.655391px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.ha{height:50.273438px;}
.h8{height:50.597578px;}
.h7{height:56.084062px;}
.h10{height:58.819922px;}
.h11{height:60.960938px;}
.h6{height:65.837812px;}
.h9{height:318.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:106.014000px;}
.x1{left:108.035987px;}
.xc{left:111.996000px;}
.x2{left:116.135987px;}
.x6{left:117.755987px;}
.x4{left:128.915987px;}
.xf{left:135.035987px;}
.x10{left:140.075987px;}
.xb{left:162.029987px;}
.x9{left:180.569987px;}
.x8{left:299.414987px;}
.x5{left:308.954987px;}
.xa{left:334.694987px;}
.x7{left:433.874987px;}
.x3{left:446.474987px;}
.xe{left:542.084987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.853333pt;}
.ls16{letter-spacing:-0.549333pt;}
.ls8{letter-spacing:-0.531200pt;}
.ls9{letter-spacing:-0.286933pt;}
.ls11{letter-spacing:-0.207467pt;}
.ls18{letter-spacing:-0.202133pt;}
.ls7{letter-spacing:-0.133333pt;}
.ls6{letter-spacing:-0.084267pt;}
.lsf{letter-spacing:-0.061333pt;}
.ls13{letter-spacing:-0.038400pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.020480pt;}
.lse{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.066667pt;}
.ls2{letter-spacing:0.073600pt;}
.ls17{letter-spacing:0.089600pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.166400pt;}
.ls12{letter-spacing:0.274133pt;}
.ls3{letter-spacing:0.320000pt;}
.lsd{letter-spacing:24.591360pt;}
.lsb{letter-spacing:25.231360pt;}
.lsa{letter-spacing:28.410027pt;}
.lsc{letter-spacing:31.610027pt;}
.wse{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.227733pt;}
.ws9{word-spacing:-13.020267pt;}
.wsd{word-spacing:-12.997120pt;}
.wsf{word-spacing:-12.974080pt;}
.ws1{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.915200pt;}
.ws8{word-spacing:-12.892267pt;}
.ws10{word-spacing:-12.751467pt;}
.wsa{word-spacing:-12.746133pt;}
.ws0{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.753600pt;}
.ws2{word-spacing:-9.507200pt;}
.ws7{word-spacing:-8.082133pt;}
.ws5{word-spacing:-7.040000pt;}
.ws4{word-spacing:-7.008000pt;}
.ws6{word-spacing:0.000000pt;}
._20{margin-left:-3.751040pt;}
._1a{margin-left:-2.767360pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._11{width:2.284160pt;}
._13{width:3.632640pt;}
._b{width:5.159253pt;}
._a{width:6.321280pt;}
._1f{width:7.282773pt;}
._12{width:8.187093pt;}
._c{width:9.880320pt;}
._22{width:10.924800pt;}
._21{width:11.969920pt;}
._10{width:13.545600pt;}
._d{width:15.351680pt;}
._e{width:16.314453pt;}
._1b{width:17.267840pt;}
._24{width:18.211200pt;}
._1c{width:19.136000pt;}
._1d{width:20.372480pt;}
._7{width:21.301120pt;}
._6{width:22.363520pt;}
._9{width:23.797760pt;}
._8{width:24.700800pt;}
._18{width:25.671680pt;}
._19{width:26.600960pt;}
._1e{width:28.233600pt;}
._14{width:29.647573pt;}
._15{width:30.650240pt;}
._f{width:32.462933pt;}
._25{width:39.155200pt;}
._16{width:41.997227pt;}
._23{width:43.130453pt;}
._27{width:57.349120pt;}
._28{width:58.466347pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._4{width:179.262080pt;}
._5{width:180.313600pt;}
._26{width:202.311680pt;}
._17{width:938.673067pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.y59{bottom:-49.786667pt;}
.y58{bottom:-31.386667pt;}
.y57{bottom:-14.720000pt;}
.y56{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:4.000000pt;}
.y54{bottom:13.280000pt;}
.y53{bottom:32.480000pt;}
.y52{bottom:47.360000pt;}
.ya{bottom:50.240000pt;}
.y9{bottom:62.752000pt;}
.y8{bottom:75.072000pt;}
.y51{bottom:85.600000pt;}
.y7{bottom:87.392000pt;}
.y50{bottom:97.920000pt;}
.y6{bottom:99.552000pt;}
.y8a{bottom:102.752000pt;}
.y4f{bottom:110.080000pt;}
.yb4{bottom:114.592000pt;}
.y40{bottom:115.872000pt;}
.y4e{bottom:122.400000pt;}
.y89{bottom:122.592000pt;}
.y99{bottom:134.266667pt;}
.y4d{bottom:134.720000pt;}
.y3f{bottom:135.546667pt;}
.ycb{bottom:140.506667pt;}
.y88{bottom:142.266667pt;}
.y4c{bottom:146.880000pt;}
.y98{bottom:154.106667pt;}
.y3e{bottom:155.386667pt;}
.y4b{bottom:159.200000pt;}
.yca{bottom:160.346667pt;}
.y87{bottom:162.106667pt;}
.y4a{bottom:171.520000pt;}
.y97{bottom:173.786667pt;}
.y3d{bottom:175.226667pt;}
.yc9{bottom:180.026667pt;}
.y86{bottom:181.786667pt;}
.y49{bottom:184.000000pt;}
.y96{bottom:193.626667pt;}
.y3c{bottom:194.906667pt;}
.y48{bottom:196.320000pt;}
.yc8{bottom:199.866667pt;}
.y85{bottom:201.626667pt;}
.y47{bottom:208.640000pt;}
.y95{bottom:213.466667pt;}
.y3b{bottom:214.746667pt;}
.yc7{bottom:219.546667pt;}
.y46{bottom:221.320000pt;}
.y84{bottom:221.466667pt;}
.y94{bottom:233.146667pt;}
.y45{bottom:233.800000pt;}
.y3a{bottom:234.426667pt;}
.yc6{bottom:239.386667pt;}
.y83{bottom:241.146667pt;}
.y44{bottom:246.280000pt;}
.yb3{bottom:252.986667pt;}
.y39{bottom:254.266667pt;}
.y93{bottom:256.986667pt;}
.y43{bottom:258.760000pt;}
.yc5{bottom:259.066667pt;}
.y82{bottom:260.986667pt;}
.y42{bottom:271.560000pt;}
.yb2{bottom:272.666667pt;}
.y38{bottom:274.106667pt;}
.y92{bottom:276.666667pt;}
.yc4{bottom:278.906667pt;}
.y81{bottom:280.666667pt;}
.y37{bottom:291.226667pt;}
.yb1{bottom:292.506667pt;}
.y91{bottom:296.506667pt;}
.yc3{bottom:298.746667pt;}
.y80{bottom:300.546667pt;}
.y36{bottom:306.786667pt;}
.yb0{bottom:312.226667pt;}
.y90{bottom:316.226667pt;}
.yc2{bottom:318.466667pt;}
.y7f{bottom:320.226667pt;}
.y35{bottom:322.466667pt;}
.yaf{bottom:332.066667pt;}
.y8f{bottom:336.066667pt;}
.y34{bottom:338.146667pt;}
.yc1{bottom:338.306667pt;}
.y7e{bottom:340.066667pt;}
.yae{bottom:351.906667pt;}
.y33{bottom:353.666667pt;}
.y8e{bottom:355.906667pt;}
.yc0{bottom:357.986667pt;}
.y7d{bottom:359.906667pt;}
.y32{bottom:369.346667pt;}
.yad{bottom:371.586667pt;}
.y8d{bottom:375.586667pt;}
.ybf{bottom:377.826667pt;}
.y7c{bottom:379.586667pt;}
.y31{bottom:385.026667pt;}
.yac{bottom:391.426667pt;}
.y8c{bottom:395.426667pt;}
.ybe{bottom:397.666667pt;}
.y7b{bottom:399.426667pt;}
.y30{bottom:400.546667pt;}
.yab{bottom:411.106667pt;}
.y8b{bottom:415.106667pt;}
.y2f{bottom:416.226667pt;}
.ybd{bottom:417.346667pt;}
.y7a{bottom:419.106667pt;}
.yaa{bottom:430.946667pt;}
.y2e{bottom:431.906667pt;}
.ybc{bottom:437.186667pt;}
.y79{bottom:438.946667pt;}
.y2d{bottom:447.586667pt;}
.ya9{bottom:450.786667pt;}
.ybb{bottom:456.866667pt;}
.y78{bottom:458.786667pt;}
.y2c{bottom:463.106667pt;}
.ya8{bottom:470.466667pt;}
.yba{bottom:476.706667pt;}
.y77{bottom:478.466667pt;}
.y2b{bottom:478.786667pt;}
.ya7{bottom:490.306667pt;}
.y2a{bottom:494.466667pt;}
.yb9{bottom:496.546667pt;}
.y76{bottom:498.306667pt;}
.ya6{bottom:509.986667pt;}
.y29{bottom:512.066667pt;}
.yb8{bottom:516.226667pt;}
.y75{bottom:517.986667pt;}
.y28{bottom:527.746667pt;}
.ya5{bottom:529.826667pt;}
.yb7{bottom:536.066667pt;}
.y74{bottom:537.853333pt;}
.y27{bottom:543.293333pt;}
.ya4{bottom:549.693333pt;}
.y41{bottom:552.893333pt;}
.yb6{bottom:555.773333pt;}
.y73{bottom:557.693333pt;}
.y26{bottom:558.973333pt;}
.ya3{bottom:569.373333pt;}
.y25{bottom:574.653333pt;}
.yb5{bottom:576.253333pt;}
.y72{bottom:577.373333pt;}
.ya2{bottom:589.213333pt;}
.y24{bottom:590.173333pt;}
.y71{bottom:597.213333pt;}
.y23{bottom:605.853333pt;}
.ya1{bottom:608.893333pt;}
.y70{bottom:616.893333pt;}
.y22{bottom:621.533333pt;}
.ya0{bottom:628.733333pt;}
.y6f{bottom:636.733333pt;}
.y21{bottom:637.053333pt;}
.y9f{bottom:652.413333pt;}
.y20{bottom:652.733333pt;}
.y6e{bottom:656.413333pt;}
.y1f{bottom:668.413333pt;}
.y9e{bottom:672.253333pt;}
.y6d{bottom:676.253333pt;}
.y1e{bottom:683.933333pt;}
.y9d{bottom:692.093333pt;}
.y6c{bottom:696.093333pt;}
.y1d{bottom:699.613333pt;}
.y9c{bottom:711.773333pt;}
.y1c{bottom:715.293333pt;}
.y6b{bottom:715.773333pt;}
.y1b{bottom:730.973333pt;}
.y9b{bottom:731.613333pt;}
.y6a{bottom:735.613333pt;}
.y1a{bottom:746.493333pt;}
.y9a{bottom:751.293333pt;}
.y69{bottom:755.293333pt;}
.y19{bottom:762.173333pt;}
.y68{bottom:775.173333pt;}
.y18{bottom:777.893333pt;}
.y17{bottom:793.413333pt;}
.y67{bottom:795.013333pt;}
.y16{bottom:809.093333pt;}
.y66{bottom:814.693333pt;}
.y15{bottom:824.773333pt;}
.y65{bottom:834.533333pt;}
.y14{bottom:840.613333pt;}
.y64{bottom:854.213333pt;}
.y13{bottom:857.253333pt;}
.y12{bottom:871.813333pt;}
.y63{bottom:874.053333pt;}
.y11{bottom:888.133333pt;}
.y62{bottom:893.733333pt;}
.y10{bottom:901.573333pt;}
.y61{bottom:913.573333pt;}
.yf{bottom:918.693333pt;}
.y60{bottom:933.413333pt;}
.ye{bottom:935.173333pt;}
.yd{bottom:949.093333pt;}
.y5f{bottom:953.093333pt;}
.yc{bottom:969.413333pt;}
.y5e{bottom:972.933333pt;}
.yb{bottom:990.053333pt;}
.y5d{bottom:992.613333pt;}
.y5{bottom:1006.213333pt;}
.y5c{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y5b{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y5a{bottom:1064.480000pt;}
.hf{height:27.093750pt;}
.he{height:29.040312pt;}
.h5{height:29.940625pt;}
.hb{height:30.254687pt;}
.h3{height:33.867188pt;}
.hd{height:35.342500pt;}
.hc{height:36.138125pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.ha{height:44.687500pt;}
.h8{height:44.975625pt;}
.h7{height:49.852500pt;}
.h10{height:52.284375pt;}
.h11{height:54.187500pt;}
.h6{height:58.522500pt;}
.h9{height:282.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:94.234667pt;}
.x1{left:96.031988pt;}
.xc{left:99.552000pt;}
.x2{left:103.231988pt;}
.x6{left:104.671988pt;}
.x4{left:114.591988pt;}
.xf{left:120.031988pt;}
.x10{left:124.511988pt;}
.xb{left:144.026655pt;}
.x9{left:160.506655pt;}
.x8{left:266.146655pt;}
.x5{left:274.626655pt;}
.xa{left:297.506655pt;}
.x7{left:385.666655pt;}
.x3{left:396.866655pt;}
.xe{left:481.853322pt;}
}




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