
    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_1cf9f94290f660e99a65dd1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_9fd01a408c37afe82f668f74.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_c0b05586c6f39b1e751d1bdd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_3820442f15d39322bcdfd6aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_fe0344a8e4e6bc2bed261da2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_40793c3bbbfb01d5a120a42c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854980;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_7f397d7cf266cde6669f7080.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_cd728cf20ed696420bb17d80.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v3{vertical-align:-41.033831px;}
.v2{vertical-align:-17.979016px;}
.v7{vertical-align:-5.767808px;}
.v6{vertical-align:-4.317487px;}
.v8{vertical-align:-1.417168px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.180406px;}
.v4{vertical-align:29.531368px;}
.v5{vertical-align:42.484151px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.719342px;}
.ls2{letter-spacing:2.159238px;}
.ls1{letter-spacing:14.399382px;}
.ls5{letter-spacing:32.615251px;}
.ls4{letter-spacing:501.860821px;}
.ls6{letter-spacing:845.999288px;}
.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;}
}
.ws8{word-spacing:-18.000676px;}
.wsb{word-spacing:-12.203968px;}
.ws0{word-spacing:-10.902647px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:81.441402px;}
.wsf{word-spacing:209.618572px;}
.ws10{word-spacing:322.523435px;}
.ws2{word-spacing:342.744260px;}
.ws3{word-spacing:380.177087px;}
.ws4{word-spacing:385.895328px;}
.wse{word-spacing:398.950970px;}
.ws6{word-spacing:399.058970px;}
.wsa{word-spacing:416.255169px;}
.ws5{word-spacing:425.512686px;}
.ws7{word-spacing:431.458886px;}
.ws9{word-spacing:435.130877px;}
.ws11{word-spacing:466.990795px;}
.wsc{word-spacing:475.092882px;}
.wsd{word-spacing:489.130737px;}
._18{margin-left:-4.072780px;}
._6{margin-left:-2.857564px;}
._1{margin-left:-1.007997px;}
._0{width:1.079997px;}
._13{width:2.490000px;}
._8{width:4.285005px;}
._7{width:5.292480px;}
._c{width:6.571653px;}
._1a{width:7.770186px;}
._19{width:9.151621px;}
._b{width:10.160819px;}
._16{width:11.819975px;}
._17{width:12.840722px;}
._14{width:13.863615px;}
._10{width:15.751957px;}
._f{width:16.987013px;}
._15{width:19.372485px;}
._27{width:20.425142px;}
._26{width:21.554122px;}
._22{width:22.775918px;}
._5{width:24.002214px;}
._1b{width:25.814982px;}
._1e{width:26.904460px;}
._d{width:28.774081px;}
._e{width:30.392735px;}
._9{width:31.681753px;}
._a{width:32.704134px;}
._1d{width:33.975476px;}
._11{width:37.441406px;}
._2c{width:39.438059px;}
._1c{width:40.850847px;}
._3{width:42.027586px;}
._4{width:43.187445px;}
._24{width:46.274676px;}
._25{width:47.798351px;}
._1f{width:49.264757px;}
._20{width:51.362679px;}
._12{width:67.532349px;}
._28{width:69.459549px;}
._23{width:73.564263px;}
._2{width:194.407302px;}
._29{width:425.140903px;}
._21{width:480.058761px;}
._2b{width:493.234727px;}
._2a{width:494.584723px;}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.241800px;}
.fs4{font-size:53.999861px;}
.fs3{font-size:59.762250px;}
.fs5{font-size:66.242700px;}
.fs2{font-size:71.999814px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y9{bottom:0.900055px;}
.y5{bottom:3.240005px;}
.y8{bottom:24.120072px;}
.y7{bottom:39.240005px;}
.y6{bottom:53.820099px;}
.y3{bottom:57.780121px;}
.y4{bottom:65.340088px;}
.y2{bottom:78.480011px;}
.y63{bottom:107.820099px;}
.y3d{bottom:112.860077px;}
.y80{bottom:122.580093px;}
.y62{bottom:124.560036px;}
.y3c{bottom:133.560036px;}
.y77{bottom:142.022067px;}
.y7f{bottom:143.280052px;}
.y3b{bottom:154.260064px;}
.y78{bottom:156.964776px;}
.y76{bottom:157.319068px;}
.y7e{bottom:163.980079px;}
.y75{bottom:172.624357px;}
.y3a{bottom:174.960091px;}
.y7d{bottom:184.680039px;}
.y74{bottom:192.959982px;}
.y39{bottom:195.660049px;}
.y7c{bottom:205.380066px;}
.y73{bottom:208.261168px;}
.y38{bottom:216.360077px;}
.y6f{bottom:225.721177px;}
.y7b{bottom:226.080093px;}
.y72{bottom:233.462415px;}
.y37{bottom:237.060036px;}
.y6d{bottom:241.022363px;}
.y7a{bottom:246.420043px;}
.y71{bottom:248.759416px;}
.y6c{bottom:256.323468px;}
.y36{bottom:257.400055px;}
.y79{bottom:263.159703px;}
.y70{bottom:264.060601px;}
.y6e{bottom:271.620549px;}
.y35{bottom:278.460091px;}
.y89{bottom:281.883111px;}
.y34{bottom:299.160049px;}
.y33{bottom:319.860077px;}
.y87{bottom:322.200069px;}
.y32{bottom:340.560036px;}
.y86{bottom:343.800540px;}
.y64{bottom:356.040636px;}
.y31{bottom:361.260064px;}
.y85{bottom:362.344025px;}
.y65{bottom:372.058693px;}
.y30{bottom:381.960091px;}
.y66{bottom:388.084958px;}
.y6b{bottom:389.699912px;}
.y69{bottom:391.685734px;}
.y2f{bottom:402.660049px;}
.y67{bottom:403.925830px;}
.y6a{bottom:419.222831px;}
.y68{bottom:419.943807px;}
.y2e{bottom:423.360077px;}
.y84{bottom:432.900774px;}
.y61{bottom:437.220085px;}
.y2d{bottom:443.700096px;}
.y83{bottom:454.505349px;}
.y60{bottom:457.920043px;}
.y2c{bottom:464.760064px;}
.y5f{bottom:478.620072px;}
.y2b{bottom:485.460091px;}
.y5e{bottom:499.320099px;}
.y2a{bottom:506.160049px;}
.y82{bottom:516.604069px;}
.y5d{bottom:520.020058px;}
.y29{bottom:526.860077px;}
.y81{bottom:536.762508px;}
.y5c{bottom:540.720085px;}
.y28{bottom:547.560036px;}
.y5b{bottom:561.420043px;}
.y27{bottom:568.260064px;}
.y88{bottom:569.880731px;}
.y5a{bottom:582.120072px;}
.y26{bottom:588.960091px;}
.y59{bottom:602.820099px;}
.y25{bottom:609.660049px;}
.y8c{bottom:623.160049px;}
.y58{bottom:623.520058px;}
.y24{bottom:630.360077px;}
.y57{bottom:644.220085px;}
.y23{bottom:651.060036px;}
.y56{bottom:664.920043px;}
.y22{bottom:671.760064px;}
.y55{bottom:685.620072px;}
.y21{bottom:692.460056px;}
.y54{bottom:706.320065px;}
.y20{bottom:713.160049px;}
.y53{bottom:727.020058px;}
.y1f{bottom:733.860077px;}
.y52{bottom:747.720051px;}
.y1e{bottom:754.560070px;}
.y51{bottom:768.420078px;}
.y1d{bottom:775.260064px;}
.y50{bottom:789.120072px;}
.y1c{bottom:795.960056px;}
.y4f{bottom:809.820065px;}
.y1b{bottom:816.660049px;}
.y4e{bottom:830.520058px;}
.y1a{bottom:837.360077px;}
.y4d{bottom:851.220051px;}
.y19{bottom:858.060070px;}
.y4c{bottom:871.920078px;}
.y18{bottom:878.760064px;}
.y4b{bottom:892.620072px;}
.y17{bottom:899.100083px;}
.y4a{bottom:913.320065px;}
.y16{bottom:919.440067px;}
.y49{bottom:934.020058px;}
.y15{bottom:936.720051px;}
.y14{bottom:954.000068px;}
.y48{bottom:954.720051px;}
.y13{bottom:971.640060px;}
.y47{bottom:975.420061px;}
.y12{bottom:992.700061px;}
.y46{bottom:996.120072px;}
.y11{bottom:1013.040064px;}
.y8b{bottom:1016.460074px;}
.y45{bottom:1016.820065px;}
.y10{bottom:1033.740074px;}
.y8a{bottom:1037.160067px;}
.y44{bottom:1037.520058px;}
.yf{bottom:1054.800058px;}
.y43{bottom:1058.220068px;}
.ye{bottom:1075.140060px;}
.y42{bottom:1078.920061px;}
.yd{bottom:1095.840070px;}
.y41{bottom:1099.620072px;}
.yc{bottom:1116.540064px;}
.y40{bottom:1120.320065px;}
.yb{bottom:1137.420069px;}
.y3f{bottom:1141.020066px;}
.ya{bottom:1160.461384px;}
.y3e{bottom:1161.720068px;}
.y1{bottom:1193.580068px;}
.h5{height:11.700027px;}
.h3{height:14.579955px;}
.h6{height:33.825793px;}
.hc{height:35.991118px;}
.hb{height:41.903609px;}
.h4{height:47.982689px;}
.hf{height:50.484245px;}
.h2{height:50.486271px;}
.h9{height:52.173835px;}
.h14{height:52.419938px;}
.ha{height:52.630883px;}
.h10{height:53.709822px;}
.h12{height:55.291849px;}
.hd{height:61.171524px;}
.h7{height:62.261558px;}
.h8{height:62.264057px;}
.he{height:65.522486px;}
.h15{height:65.886904px;}
.h13{height:73.722466px;}
.h11{height:97.776000px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:5.399987px;}
.w3{width:7.019989px;}
.w2{width:53.100015px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x2c{left:111.780001px;}
.x20{left:138.060001px;}
.xa{left:139.860000px;}
.x29{left:161.096511px;}
.x8{left:163.080640px;}
.xf{left:181.080008px;}
.x11{left:183.778818px;}
.x1e{left:196.197750px;}
.x10{left:199.981425px;}
.x24{left:203.936493px;}
.x22{left:205.560001px;}
.x23{left:223.197675px;}
.x1d{left:232.742559px;}
.x2a{left:242.639034px;}
.x27{left:265.319145px;}
.x28{left:275.938493px;}
.x12{left:312.476745px;}
.xb{left:324.360008px;}
.x15{left:335.159062px;}
.xc{left:337.319996px;}
.x16{left:343.260345px;}
.x14{left:367.557637px;}
.x1f{left:383.760243px;}
.x2b{left:393.120579px;}
.x2{left:432.899987px;}
.x9{left:446.399987px;}
.x18{left:463.315633px;}
.x25{left:473.215655px;}
.x17{left:491.581994px;}
.x19{left:520.017293px;}
.xd{left:535.319996px;}
.x13{left:548.642089px;}
.x1b{left:595.435479px;}
.x26{left:609.121671px;}
.x1a{left:623.879026px;}
.x1c{left:652.137139px;}
.xe{left:723.059967px;}
.x6{left:746.279983px;}
.x5{left:751.139992px;}
.x3{left:759.779983px;}
.x21{left:763.558847px;}
.x7{left:786.240006px;}
.x4{left:812.879998px;}
@media print{
.v3{vertical-align:-36.474516pt;}
.v2{vertical-align:-15.981347pt;}
.v7{vertical-align:-5.126940pt;}
.v6{vertical-align:-3.837766pt;}
.v8{vertical-align:-1.259705pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.382584pt;}
.v4{vertical-align:26.250104pt;}
.v5{vertical-align:37.763690pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.639415pt;}
.ls2{letter-spacing:1.919323pt;}
.ls1{letter-spacing:12.799451pt;}
.ls5{letter-spacing:28.991334pt;}
.ls4{letter-spacing:446.098508pt;}
.ls6{letter-spacing:751.999367pt;}
.ws8{word-spacing:-16.000601pt;}
.wsb{word-spacing:-10.847972pt;}
.ws0{word-spacing:-9.691242pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:72.392358pt;}
.wsf{word-spacing:186.327620pt;}
.ws10{word-spacing:286.687498pt;}
.ws2{word-spacing:304.661564pt;}
.ws3{word-spacing:337.935189pt;}
.ws4{word-spacing:343.018069pt;}
.wse{word-spacing:354.623085pt;}
.ws6{word-spacing:354.719084pt;}
.wsa{word-spacing:370.004595pt;}
.ws5{word-spacing:378.233499pt;}
.ws7{word-spacing:383.519010pt;}
.ws9{word-spacing:386.783002pt;}
.ws11{word-spacing:415.102928pt;}
.wsc{word-spacing:422.304784pt;}
.wsd{word-spacing:434.782878pt;}
._18{margin-left:-3.620249pt;}
._6{margin-left:-2.540057pt;}
._1{margin-left:-0.895998pt;}
._0{width:0.959998pt;}
._13{width:2.213333pt;}
._8{width:3.808893pt;}
._7{width:4.704427pt;}
._c{width:5.841469pt;}
._1a{width:6.906832pt;}
._19{width:8.134775pt;}
._b{width:9.031839pt;}
._16{width:10.506645pt;}
._17{width:11.413975pt;}
._14{width:12.323213pt;}
._10{width:14.001740pt;}
._f{width:15.099567pt;}
._15{width:17.219987pt;}
._27{width:18.155682pt;}
._26{width:19.159220pt;}
._22{width:20.245260pt;}
._5{width:21.335301pt;}
._1b{width:22.946650pt;}
._1e{width:23.915075pt;}
._d{width:25.576961pt;}
._e{width:27.015765pt;}
._9{width:28.161558pt;}
._a{width:29.070342pt;}
._1d{width:30.200423pt;}
._11{width:33.281250pt;}
._2c{width:35.056053pt;}
._1c{width:36.311864pt;}
._3{width:37.357854pt;}
._4{width:38.388840pt;}
._24{width:41.133045pt;}
._25{width:42.487423pt;}
._1f{width:43.790895pt;}
._20{width:45.655715pt;}
._12{width:60.028755pt;}
._28{width:61.741822pt;}
._23{width:65.390456pt;}
._2{width:172.806491pt;}
._29{width:377.903024pt;}
._21{width:426.718898pt;}
._2b{width:438.430868pt;}
._2a{width:439.630865pt;}
.fs1{font-size:42.881600pt;}
.fs4{font-size:47.999876pt;}
.fs3{font-size:53.122000pt;}
.fs5{font-size:58.882400pt;}
.fs2{font-size:63.999835pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:0.800049pt;}
.y5{bottom:2.880004pt;}
.y8{bottom:21.440064pt;}
.y7{bottom:34.880005pt;}
.y6{bottom:47.840088pt;}
.y3{bottom:51.360108pt;}
.y4{bottom:58.080079pt;}
.y2{bottom:69.760010pt;}
.y63{bottom:95.840088pt;}
.y3d{bottom:100.320069pt;}
.y80{bottom:108.960083pt;}
.y62{bottom:110.720032pt;}
.y3c{bottom:118.720032pt;}
.y77{bottom:126.241837pt;}
.y7f{bottom:127.360047pt;}
.y3b{bottom:137.120057pt;}
.y78{bottom:139.524245pt;}
.y76{bottom:139.839171pt;}
.y7e{bottom:145.760071pt;}
.y75{bottom:153.443873pt;}
.y3a{bottom:155.520081pt;}
.y7d{bottom:164.160035pt;}
.y74{bottom:171.519984pt;}
.y39{bottom:173.920044pt;}
.y7c{bottom:182.560059pt;}
.y73{bottom:185.121038pt;}
.y38{bottom:192.320069pt;}
.y6f{bottom:200.641046pt;}
.y7b{bottom:200.960083pt;}
.y72{bottom:207.522147pt;}
.y37{bottom:210.720032pt;}
.y6d{bottom:214.242100pt;}
.y7a{bottom:219.040039pt;}
.y71{bottom:221.119481pt;}
.y6c{bottom:227.843082pt;}
.y36{bottom:228.800049pt;}
.y79{bottom:233.919736pt;}
.y70{bottom:234.720535pt;}
.y6e{bottom:241.440488pt;}
.y35{bottom:247.520081pt;}
.y89{bottom:250.562765pt;}
.y34{bottom:265.920044pt;}
.y33{bottom:284.320069pt;}
.y87{bottom:286.400061pt;}
.y32{bottom:302.720032pt;}
.y86{bottom:305.600480pt;}
.y64{bottom:316.480565pt;}
.y31{bottom:321.120057pt;}
.y85{bottom:322.083578pt;}
.y65{bottom:330.718838pt;}
.y30{bottom:339.520081pt;}
.y66{bottom:344.964407pt;}
.y6b{bottom:346.399922pt;}
.y69{bottom:348.165097pt;}
.y2f{bottom:357.920044pt;}
.y67{bottom:359.045182pt;}
.y6a{bottom:372.642516pt;}
.y68{bottom:373.283384pt;}
.y2e{bottom:376.320069pt;}
.y84{bottom:384.800688pt;}
.y61{bottom:388.640076pt;}
.y2d{bottom:394.400086pt;}
.y83{bottom:404.004755pt;}
.y60{bottom:407.040039pt;}
.y2c{bottom:413.120057pt;}
.y5f{bottom:425.440064pt;}
.y2b{bottom:431.520081pt;}
.y5e{bottom:443.840088pt;}
.y2a{bottom:449.920044pt;}
.y82{bottom:459.203617pt;}
.y5d{bottom:462.240052pt;}
.y29{bottom:468.320069pt;}
.y81{bottom:477.122229pt;}
.y5c{bottom:480.640076pt;}
.y28{bottom:486.720032pt;}
.y5b{bottom:499.040039pt;}
.y27{bottom:505.120057pt;}
.y88{bottom:506.560650pt;}
.y5a{bottom:517.440064pt;}
.y26{bottom:523.520081pt;}
.y59{bottom:535.840088pt;}
.y25{bottom:541.920044pt;}
.y8c{bottom:553.920044pt;}
.y58{bottom:554.240052pt;}
.y24{bottom:560.320069pt;}
.y57{bottom:572.640076pt;}
.y23{bottom:578.720032pt;}
.y56{bottom:591.040039pt;}
.y22{bottom:597.120057pt;}
.y55{bottom:609.440064pt;}
.y21{bottom:615.520050pt;}
.y54{bottom:627.840058pt;}
.y20{bottom:633.920044pt;}
.y53{bottom:646.240052pt;}
.y1f{bottom:652.320069pt;}
.y52{bottom:664.640046pt;}
.y1e{bottom:670.720063pt;}
.y51{bottom:683.040070pt;}
.y1d{bottom:689.120057pt;}
.y50{bottom:701.440064pt;}
.y1c{bottom:707.520050pt;}
.y4f{bottom:719.840058pt;}
.y1b{bottom:725.920044pt;}
.y4e{bottom:738.240052pt;}
.y1a{bottom:744.320069pt;}
.y4d{bottom:756.640046pt;}
.y19{bottom:762.720063pt;}
.y4c{bottom:775.040070pt;}
.y18{bottom:781.120057pt;}
.y4b{bottom:793.440064pt;}
.y17{bottom:799.200074pt;}
.y4a{bottom:811.840058pt;}
.y16{bottom:817.280060pt;}
.y49{bottom:830.240052pt;}
.y15{bottom:832.640046pt;}
.y14{bottom:848.000061pt;}
.y48{bottom:848.640046pt;}
.y13{bottom:863.680054pt;}
.y47{bottom:867.040055pt;}
.y12{bottom:882.400055pt;}
.y46{bottom:885.440064pt;}
.y11{bottom:900.480057pt;}
.y8b{bottom:903.520066pt;}
.y45{bottom:903.840058pt;}
.y10{bottom:918.880066pt;}
.y8a{bottom:921.920060pt;}
.y44{bottom:922.240052pt;}
.yf{bottom:937.600052pt;}
.y43{bottom:940.640061pt;}
.ye{bottom:955.680054pt;}
.y42{bottom:959.040055pt;}
.yd{bottom:974.080063pt;}
.y41{bottom:977.440064pt;}
.yc{bottom:992.480057pt;}
.y40{bottom:995.840058pt;}
.yb{bottom:1011.040062pt;}
.y3f{bottom:1014.240059pt;}
.ya{bottom:1031.521230pt;}
.y3e{bottom:1032.640061pt;}
.y1{bottom:1060.960061pt;}
.h5{height:10.400024pt;}
.h3{height:12.959960pt;}
.h6{height:30.067372pt;}
.hc{height:31.992105pt;}
.hb{height:37.247652pt;}
.h4{height:42.651279pt;}
.hf{height:44.874884pt;}
.h2{height:44.876686pt;}
.h9{height:46.376742pt;}
.h14{height:46.595500pt;}
.ha{height:46.783007pt;}
.h10{height:47.742064pt;}
.h12{height:49.148311pt;}
.hd{height:54.374688pt;}
.h7{height:55.343607pt;}
.h8{height:55.345829pt;}
.he{height:58.242209pt;}
.h15{height:58.566137pt;}
.h13{height:65.531081pt;}
.h11{height:86.912000pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.799988pt;}
.w3{width:6.239990pt;}
.w2{width:47.200013pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x2c{left:99.360001pt;}
.x20{left:122.720001pt;}
.xa{left:124.320000pt;}
.x29{left:143.196899pt;}
.x8{left:144.960569pt;}
.xf{left:160.960007pt;}
.x11{left:163.358950pt;}
.x1e{left:174.398000pt;}
.x10{left:177.761267pt;}
.x24{left:181.276883pt;}
.x22{left:182.720001pt;}
.x23{left:198.397933pt;}
.x1d{left:206.882275pt;}
.x2a{left:215.679141pt;}
.x27{left:235.839240pt;}
.x28{left:245.278660pt;}
.x12{left:277.757106pt;}
.xb{left:288.320007pt;}
.x15{left:297.919166pt;}
.xc{left:299.839996pt;}
.x16{left:305.120307pt;}
.x14{left:326.717899pt;}
.x1f{left:341.120216pt;}
.x2b{left:349.440515pt;}
.x2{left:384.799988pt;}
.x9{left:396.799988pt;}
.x18{left:411.836118pt;}
.x25{left:420.636137pt;}
.x17{left:436.961772pt;}
.x19{left:462.237593pt;}
.xd{left:475.839996pt;}
.x13{left:487.681857pt;}
.x1b{left:529.275982pt;}
.x26{left:541.441485pt;}
.x1a{left:554.559134pt;}
.x1c{left:579.677457pt;}
.xe{left:642.719971pt;}
.x6{left:663.359985pt;}
.x5{left:667.679993pt;}
.x3{left:675.359985pt;}
.x21{left:678.718975pt;}
.x7{left:698.880005pt;}
.x4{left:722.559998pt;}
}




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