
    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_5524242e561125ac2226a58f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_c6c21982e5bbb458812a6040.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_287b9f0a6a567ead9fa52ca4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_937d3881bd2910dfa97f5166.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_174e72e52a58a972e4afe226.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a6b73210a5257da9bd43d966.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ebcf6c65cd2558a54232c2d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.670898;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;}
.v1{vertical-align:12.240418px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.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;}
}
.ws1{word-spacing:-79.203150px;}
.ws3{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.760900px;}
.ws4{word-spacing:-19.800788px;}
.ws5{word-spacing:-0.950436px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-23.373016px;}
._19{margin-left:-15.494384px;}
._1a{margin-left:-14.465053px;}
._4{margin-left:-12.931220px;}
._f{margin-left:-11.505939px;}
._7{margin-left:-10.452661px;}
._10{margin-left:-8.504083px;}
._2{margin-left:-7.144234px;}
._11{margin-left:-5.892703px;}
._3{margin-left:-4.871990px;}
._14{margin-left:-3.638203px;}
._6{margin-left:-2.319843px;}
._5{margin-left:-1.149108px;}
._0{width:1.064507px;}
._9{width:2.452106px;}
._a{width:4.010951px;}
._15{width:5.592351px;}
._13{width:7.465749px;}
._12{width:8.569146px;}
._c{width:10.454796px;}
._d{width:11.499440px;}
._e{width:12.567103px;}
._8{width:13.952382px;}
._b{width:15.587150px;}
._18{width:16.936416px;}
._16{width:17.995321px;}
._17{width:19.574711px;}
._1d{width:20.850748px;}
._20{width:24.247906px;}
._1c{width:25.646550px;}
._1b{width:893.134422px;}
._1{width:1695.553076px;}
._1e{width:1835.402840px;}
.fc2{color:rgb(192,25,19);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y18{bottom:41.040115px;}
.y61{bottom:100.980011px;}
.y7f{bottom:101.520127px;}
.y3f{bottom:102.420043px;}
.y2c{bottom:113.940033px;}
.y73{bottom:121.320099px;}
.yb2{bottom:125.820099px;}
.y52{bottom:126.180039px;}
.ya3{bottom:126.720085px;}
.y7e{bottom:129.960091px;}
.y3e{bottom:130.860077px;}
.ybc{bottom:133.020058px;}
.y16{bottom:139.140060px;}
.y2b{bottom:143.640060px;}
.y79{bottom:149.940033px;}
.yb1{bottom:154.260064px;}
.y51{bottom:154.620072px;}
.ya2{bottom:155.340088px;}
.y60{bottom:157.680039px;}
.y3d{bottom:159.480079px;}
.y15{bottom:167.760064px;}
.y2a{bottom:173.340088px;}
.y6d{bottom:178.380066px;}
.y76{bottom:178.560036px;}
.y89{bottom:178.920043px;}
.y50{bottom:183.240074px;}
.y7d{bottom:185.580093px;}
.y5f{bottom:185.760064px;}
.ybb{bottom:189.720085px;}
.y29{bottom:203.040047px;}
.y7a{bottom:207.000068px;}
.y90{bottom:210.060036px;}
.yb0{bottom:210.960091px;}
.y4f{bottom:211.680039px;}
.ya1{bottom:212.400055px;}
.y7c{bottom:213.300041px;}
.y5e{bottom:213.840088px;}
.y3c{bottom:216.540047px;}
.y6c{bottom:235.440033px;}
.y72{bottom:235.620072px;}
.y88{bottom:235.980079px;}
.yaf{bottom:239.220085px;}
.y4e{bottom:240.300041px;}
.ya0{bottom:240.840088px;}
.y5d{bottom:241.920043px;}
.y14{bottom:253.260064px;}
.y28{bottom:262.440033px;}
.y6b{bottom:264.060036px;}
.y87{bottom:264.420043px;}
.yae{bottom:267.480079px;}
.y8b{bottom:268.740074px;}
.yba{bottom:274.680039px;}
.y27{bottom:292.140060px;}
.y6a{bottom:292.500068px;}
.y71{bottom:292.680039px;}
.y86{bottom:293.040047px;}
.y5c{bottom:298.260064px;}
.y4d{bottom:321.120072px;}
.y8f{bottom:323.460091px;}
.yad{bottom:324.180039px;}
.y3b{bottom:325.800041px;}
.yb9{bottom:326.700096px;}
.y13{bottom:338.940033px;}
.y4c{bottom:349.560036px;}
.y75{bottom:349.740074px;}
.y85{bottom:350.100083px;}
.y26{bottom:351.720085px;}
.y5b{bottom:354.420043px;}
.yb8{bottom:355.140060px;}
.y69{bottom:378.180039px;}
.y84{bottom:378.540047px;}
.y7b{bottom:379.800041px;}
.y8e{bottom:380.160049px;}
.yac{bottom:380.880066px;}
.y68{bottom:406.620072px;}
.y78{bottom:406.800041px;}
.yab{bottom:409.320099px;}
.y25{bottom:411.120072px;}
.y9f{bottom:411.660049px;}
.yb7{bottom:411.840088px;}
.y4b{bottom:435.240074px;}
.y83{bottom:435.600083px;}
.y8d{bottom:436.860077px;}
.y3a{bottom:439.920043px;}
.y9e{bottom:440.100083px;}
.y24{bottom:440.820099px;}
.y12{bottom:453.060036px;}
.y74{bottom:463.860077px;}
.yaa{bottom:465.840088px;}
.y9d{bottom:468.360077px;}
.y23{bottom:470.520058px;}
.y11{bottom:481.680039px;}
.y67{bottom:492.300041px;}
.y5a{bottom:495.180039px;}
.y10{bottom:510.120072px;}
.y66{bottom:520.740074px;}
.y70{bottom:520.920043px;}
.y82{bottom:521.280052px;}
.ya9{bottom:522.540047px;}
.y59{bottom:523.260064px;}
.y9c{bottom:525.060036px;}
.y39{bottom:525.600083px;}
.yf{bottom:538.740074px;}
.y4a{bottom:549.360077px;}
.y81{bottom:549.720085px;}
.y38{bottom:554.040047px;}
.y22{bottom:558.540047px;}
.ye{bottom:567.180039px;}
.y65{bottom:577.800041px;}
.y77{bottom:577.980079px;}
.y80{bottom:578.340088px;}
.y8c{bottom:578.520058px;}
.ya8{bottom:579.240074px;}
.y9b{bottom:581.760064px;}
.y37{bottom:582.660049px;}
.yd{bottom:595.800041px;}
.y49{bottom:606.420043px;}
.ya7{bottom:607.500068px;}
.yb6{bottom:610.200096px;}
.yc{bottom:624.240074px;}
.y64{bottom:634.860077px;}
.y6f{bottom:635.040047px;}
.y21{bottom:635.400055px;}
.y58{bottom:635.760064px;}
.ya6{bottom:635.940033px;}
.y36{bottom:639.720085px;}
.yb{bottom:652.860077px;}
.y63{bottom:663.480079px;}
.y20{bottom:663.840088px;}
.ya5{bottom:664.200096px;}
.y9a{bottom:666.720085px;}
.y35{bottom:668.340088px;}
.ya{bottom:681.300041px;}
.y6e{bottom:692.100083px;}
.ya4{bottom:692.640060px;}
.y34{bottom:696.780052px;}
.y57{bottom:720.540081px;}
.y1f{bottom:720.900055px;}
.y99{bottom:723.420078px;}
.y62{bottom:748.980079px;}
.y56{bottom:749.160049px;}
.y1e{bottom:749.520058px;}
.y98{bottom:751.860077px;}
.y33{bottom:753.840054px;}
.y48{bottom:777.600083px;}
.y1d{bottom:777.960056px;}
.yb5{bottom:780.120072px;}
.y47{bottom:806.040081px;}
.y55{bottom:806.220051px;}
.y1c{bottom:806.580059px;}
.y97{bottom:808.560070px;}
.y46{bottom:834.660049px;}
.y9{bottom:835.020058px;}
.y96{bottom:836.820065px;}
.y32{bottom:839.520058px;}
.y8a{bottom:851.400055px;}
.y54{bottom:863.280052px;}
.y8{bottom:863.640060px;}
.y45{bottom:891.720051px;}
.y1b{bottom:892.080059px;}
.y95{bottom:893.520058px;}
.y31{bottom:896.580059px;}
.y53{bottom:920.340054px;}
.y7{bottom:920.700061px;}
.y30{bottom:925.020058px;}
.y44{bottom:948.780053px;}
.y1a{bottom:949.140060px;}
.yb4{bottom:950.220051px;}
.y43{bottom:977.400072px;}
.y6{bottom:977.760064px;}
.y94{bottom:978.480063px;}
.y42{bottom:1005.840070px;}
.y19{bottom:1006.200061px;}
.y93{bottom:1006.740074px;}
.y41{bottom:1034.460074px;}
.y5{bottom:1034.820065px;}
.y92{bottom:1035.180073px;}
.y2f{bottom:1062.900072px;}
.y4{bottom:1063.260064px;}
.y2e{bottom:1091.520058px;}
.y91{bottom:1091.880066px;}
.y17{bottom:1097.820065px;}
.y40{bottom:1119.960065px;}
.yb3{bottom:1120.140069px;}
.y3{bottom:1120.320065px;}
.y2d{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.h5{height:55.302981px;}
.h7{height:55.596662px;}
.h6{height:57.534328px;}
.h8{height:64.414315px;}
.h9{height:65.992187px;}
.h2{height:67.837080px;}
.ha{height:69.496123px;}
.hb{height:70.346938px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:89.819996px;}
.x1{left:140.939999px;}
.x3{left:160.020006px;}
.x11{left:174.240006px;}
.x13{left:202.139992px;}
.x2{left:216.360008px;}
.x10{left:224.639992px;}
.x5{left:227.159998px;}
.x12{left:252.719999px;}
.x6{left:273.780001px;}
.x4{left:275.939999px;}
.x2c{left:282.060001px;}
.x1c{left:290.160015px;}
.x7{left:300.240006px;}
.xb{left:307.800007px;}
.x19{left:309.959988px;}
.x14{left:314.459988px;}
.x1d{left:316.620002px;}
.x21{left:320.040012px;}
.x22{left:331.019989px;}
.xf{left:334.980011px;}
.x28{left:336.060001px;}
.x9{left:337.319996px;}
.x8{left:355.139992px;}
.xe{left:364.139992px;}
.x1a{left:369.720017px;}
.x23{left:371.339985px;}
.x25{left:397.259994px;}
.xa{left:419.579990px;}
.x16{left:426.600014px;}
.x2e{left:438.300007px;}
.x2a{left:445.860008px;}
.x29{left:450.540012px;}
.x15{left:495.540012px;}
.x1e{left:497.339985px;}
.x17{left:499.680005px;}
.x26{left:507.779983px;}
.xc{left:532.800007px;}
.x24{left:534.420010px;}
.x2f{left:540.540012px;}
.x1f{left:633.059967px;}
.x27{left:649.620002px;}
.x2d{left:653.580025px;}
.x20{left:663.480011px;}
.x1b{left:696.240006px;}
.x2b{left:704.340019px;}
.x18{left:723.779983px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ws1{word-spacing:-70.402800pt;}
.ws3{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.120800pt;}
.ws4{word-spacing:-17.600700pt;}
.ws5{word-spacing:-0.844832pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-20.776014pt;}
._19{margin-left:-13.772786pt;}
._1a{margin-left:-12.857825pt;}
._4{margin-left:-11.494418pt;}
._f{margin-left:-10.227502pt;}
._7{margin-left:-9.291255pt;}
._10{margin-left:-7.559185pt;}
._2{margin-left:-6.350430pt;}
._11{margin-left:-5.237958pt;}
._3{margin-left:-4.330658pt;}
._14{margin-left:-3.233958pt;}
._6{margin-left:-2.062083pt;}
._5{margin-left:-1.021430pt;}
._0{width:0.946228pt;}
._9{width:2.179650pt;}
._a{width:3.565290pt;}
._15{width:4.970978pt;}
._13{width:6.636221pt;}
._12{width:7.617018pt;}
._c{width:9.293152pt;}
._d{width:10.221725pt;}
._e{width:11.170758pt;}
._8{width:12.402117pt;}
._b{width:13.855245pt;}
._18{width:15.054592pt;}
._16{width:15.995841pt;}
._17{width:17.399743pt;}
._1d{width:18.533998pt;}
._20{width:21.553694pt;}
._1c{width:22.796934pt;}
._1b{width:793.897264pt;}
._1{width:1507.158290pt;}
._1e{width:1631.469191pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y18{bottom:36.480103pt;}
.y61{bottom:89.760010pt;}
.y7f{bottom:90.240113pt;}
.y3f{bottom:91.040039pt;}
.y2c{bottom:101.280030pt;}
.y73{bottom:107.840088pt;}
.yb2{bottom:111.840088pt;}
.y52{bottom:112.160035pt;}
.ya3{bottom:112.640076pt;}
.y7e{bottom:115.520081pt;}
.y3e{bottom:116.320069pt;}
.ybc{bottom:118.240052pt;}
.y16{bottom:123.680054pt;}
.y2b{bottom:127.680054pt;}
.y79{bottom:133.280030pt;}
.yb1{bottom:137.120057pt;}
.y51{bottom:137.440064pt;}
.ya2{bottom:138.080079pt;}
.y60{bottom:140.160035pt;}
.y3d{bottom:141.760071pt;}
.y15{bottom:149.120057pt;}
.y2a{bottom:154.080079pt;}
.y6d{bottom:158.560059pt;}
.y76{bottom:158.720032pt;}
.y89{bottom:159.040039pt;}
.y50{bottom:162.880066pt;}
.y7d{bottom:164.960083pt;}
.y5f{bottom:165.120057pt;}
.ybb{bottom:168.640076pt;}
.y29{bottom:180.480042pt;}
.y7a{bottom:184.000061pt;}
.y90{bottom:186.720032pt;}
.yb0{bottom:187.520081pt;}
.y4f{bottom:188.160035pt;}
.ya1{bottom:188.800049pt;}
.y7c{bottom:189.600037pt;}
.y5e{bottom:190.080079pt;}
.y3c{bottom:192.480042pt;}
.y6c{bottom:209.280030pt;}
.y72{bottom:209.440064pt;}
.y88{bottom:209.760071pt;}
.yaf{bottom:212.640076pt;}
.y4e{bottom:213.600037pt;}
.ya0{bottom:214.080079pt;}
.y5d{bottom:215.040039pt;}
.y14{bottom:225.120057pt;}
.y28{bottom:233.280030pt;}
.y6b{bottom:234.720032pt;}
.y87{bottom:235.040039pt;}
.yae{bottom:237.760071pt;}
.y8b{bottom:238.880066pt;}
.yba{bottom:244.160035pt;}
.y27{bottom:259.680054pt;}
.y6a{bottom:260.000061pt;}
.y71{bottom:260.160035pt;}
.y86{bottom:260.480042pt;}
.y5c{bottom:265.120057pt;}
.y4d{bottom:285.440064pt;}
.y8f{bottom:287.520081pt;}
.yad{bottom:288.160035pt;}
.y3b{bottom:289.600037pt;}
.yb9{bottom:290.400086pt;}
.y13{bottom:301.280030pt;}
.y4c{bottom:310.720032pt;}
.y75{bottom:310.880066pt;}
.y85{bottom:311.200074pt;}
.y26{bottom:312.640076pt;}
.y5b{bottom:315.040039pt;}
.yb8{bottom:315.680054pt;}
.y69{bottom:336.160035pt;}
.y84{bottom:336.480042pt;}
.y7b{bottom:337.600037pt;}
.y8e{bottom:337.920044pt;}
.yac{bottom:338.560059pt;}
.y68{bottom:361.440064pt;}
.y78{bottom:361.600037pt;}
.yab{bottom:363.840088pt;}
.y25{bottom:365.440064pt;}
.y9f{bottom:365.920044pt;}
.yb7{bottom:366.080079pt;}
.y4b{bottom:386.880066pt;}
.y83{bottom:387.200074pt;}
.y8d{bottom:388.320069pt;}
.y3a{bottom:391.040039pt;}
.y9e{bottom:391.200074pt;}
.y24{bottom:391.840088pt;}
.y12{bottom:402.720032pt;}
.y74{bottom:412.320069pt;}
.yaa{bottom:414.080079pt;}
.y9d{bottom:416.320069pt;}
.y23{bottom:418.240052pt;}
.y11{bottom:428.160035pt;}
.y67{bottom:437.600037pt;}
.y5a{bottom:440.160035pt;}
.y10{bottom:453.440064pt;}
.y66{bottom:462.880066pt;}
.y70{bottom:463.040039pt;}
.y82{bottom:463.360047pt;}
.ya9{bottom:464.480042pt;}
.y59{bottom:465.120057pt;}
.y9c{bottom:466.720032pt;}
.y39{bottom:467.200074pt;}
.yf{bottom:478.880066pt;}
.y4a{bottom:488.320069pt;}
.y81{bottom:488.640076pt;}
.y38{bottom:492.480042pt;}
.y22{bottom:496.480042pt;}
.ye{bottom:504.160035pt;}
.y65{bottom:513.600037pt;}
.y77{bottom:513.760071pt;}
.y80{bottom:514.080079pt;}
.y8c{bottom:514.240052pt;}
.ya8{bottom:514.880066pt;}
.y9b{bottom:517.120057pt;}
.y37{bottom:517.920044pt;}
.yd{bottom:529.600037pt;}
.y49{bottom:539.040039pt;}
.ya7{bottom:540.000061pt;}
.yb6{bottom:542.400086pt;}
.yc{bottom:554.880066pt;}
.y64{bottom:564.320069pt;}
.y6f{bottom:564.480042pt;}
.y21{bottom:564.800049pt;}
.y58{bottom:565.120057pt;}
.ya6{bottom:565.280030pt;}
.y36{bottom:568.640076pt;}
.yb{bottom:580.320069pt;}
.y63{bottom:589.760071pt;}
.y20{bottom:590.080079pt;}
.ya5{bottom:590.400086pt;}
.y9a{bottom:592.640076pt;}
.y35{bottom:594.080079pt;}
.ya{bottom:605.600037pt;}
.y6e{bottom:615.200074pt;}
.ya4{bottom:615.680054pt;}
.y34{bottom:619.360047pt;}
.y57{bottom:640.480072pt;}
.y1f{bottom:640.800049pt;}
.y99{bottom:643.040070pt;}
.y62{bottom:665.760071pt;}
.y56{bottom:665.920044pt;}
.y1e{bottom:666.240052pt;}
.y98{bottom:668.320069pt;}
.y33{bottom:670.080048pt;}
.y48{bottom:691.200074pt;}
.y1d{bottom:691.520050pt;}
.yb5{bottom:693.440064pt;}
.y47{bottom:716.480072pt;}
.y55{bottom:716.640046pt;}
.y1c{bottom:716.960053pt;}
.y97{bottom:718.720063pt;}
.y46{bottom:741.920044pt;}
.y9{bottom:742.240052pt;}
.y96{bottom:743.840058pt;}
.y32{bottom:746.240052pt;}
.y8a{bottom:756.800049pt;}
.y54{bottom:767.360047pt;}
.y8{bottom:767.680054pt;}
.y45{bottom:792.640046pt;}
.y1b{bottom:792.960053pt;}
.y95{bottom:794.240052pt;}
.y31{bottom:796.960053pt;}
.y53{bottom:818.080048pt;}
.y7{bottom:818.400055pt;}
.y30{bottom:822.240052pt;}
.y44{bottom:843.360047pt;}
.y1a{bottom:843.680054pt;}
.yb4{bottom:844.640046pt;}
.y43{bottom:868.800064pt;}
.y6{bottom:869.120057pt;}
.y94{bottom:869.760056pt;}
.y42{bottom:894.080063pt;}
.y19{bottom:894.400055pt;}
.y93{bottom:894.880066pt;}
.y41{bottom:919.520066pt;}
.y5{bottom:919.840058pt;}
.y92{bottom:920.160065pt;}
.y2f{bottom:944.800064pt;}
.y4{bottom:945.120057pt;}
.y2e{bottom:970.240052pt;}
.y91{bottom:970.560059pt;}
.y17{bottom:975.840058pt;}
.y40{bottom:995.520058pt;}
.yb3{bottom:995.680062pt;}
.y3{bottom:995.840058pt;}
.y2d{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.h5{height:49.158205pt;}
.h7{height:49.419255pt;}
.h6{height:51.141625pt;}
.h8{height:57.257169pt;}
.h9{height:58.659722pt;}
.h2{height:60.299627pt;}
.ha{height:61.774332pt;}
.hb{height:62.530612pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:79.839996pt;}
.x1{left:125.279999pt;}
.x3{left:142.240005pt;}
.x11{left:154.880005pt;}
.x13{left:179.679993pt;}
.x2{left:192.320007pt;}
.x10{left:199.679993pt;}
.x5{left:201.919998pt;}
.x12{left:224.639999pt;}
.x6{left:243.360001pt;}
.x4{left:245.279999pt;}
.x2c{left:250.720001pt;}
.x1c{left:257.920013pt;}
.x7{left:266.880005pt;}
.xb{left:273.600006pt;}
.x19{left:275.519989pt;}
.x14{left:279.519989pt;}
.x1d{left:281.440002pt;}
.x21{left:284.480011pt;}
.x22{left:294.239990pt;}
.xf{left:297.760010pt;}
.x28{left:298.720001pt;}
.x9{left:299.839996pt;}
.x8{left:315.679993pt;}
.xe{left:323.679993pt;}
.x1a{left:328.640015pt;}
.x23{left:330.079987pt;}
.x25{left:353.119995pt;}
.xa{left:372.959991pt;}
.x16{left:379.200012pt;}
.x2e{left:389.600006pt;}
.x2a{left:396.320007pt;}
.x29{left:400.480011pt;}
.x15{left:440.480011pt;}
.x1e{left:442.079987pt;}
.x17{left:444.160004pt;}
.x26{left:451.359985pt;}
.xc{left:473.600006pt;}
.x24{left:475.040009pt;}
.x2f{left:480.480011pt;}
.x1f{left:562.719971pt;}
.x27{left:577.440002pt;}
.x2d{left:580.960022pt;}
.x20{left:589.760010pt;}
.x1b{left:618.880005pt;}
.x2b{left:626.080017pt;}
.x18{left:643.359985pt;}
}




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