
    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_753560aae36199009628f67e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_8a4e0b520d2764e508c4fcd0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eb5b5125059efdcdb89faa41.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_dac07d26b21ba305c3f0ae5e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.857910;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_16d1a504771db135c67548ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_6631459572ebcf4d9e85717c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_7faf220fb28aae4b32132244.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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);}
.v1{vertical-align:-62.639645px;}
.v3{vertical-align:-23.759861px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760130px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004435px;}
.ls1{letter-spacing:0.055380px;}
.ls0{letter-spacing:0.320283px;}
.ls5{letter-spacing:0.321279px;}
.ls7{letter-spacing:38.530768px;}
.ls6{letter-spacing:38.530772px;}
.ls4{letter-spacing:47.669348px;}
.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;}
}
.ws2{word-spacing:-32.325120px;}
.ws1{word-spacing:-15.026637px;}
.ws0{word-spacing:-14.971257px;}
.ws5{word-spacing:-14.970850px;}
.ws6{word-spacing:-9.438126px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:0.132000px;}
._a{margin-left:-3.670698px;}
._9{margin-left:-2.658765px;}
._1{margin-left:-1.040904px;}
._0{width:1.001773px;}
._c{width:2.077398px;}
._7{width:3.307049px;}
._6{width:4.963714px;}
._d{width:5.997124px;}
._f{width:7.014073px;}
._12{width:8.626897px;}
._11{width:9.927348px;}
._10{width:10.981539px;}
._8{width:12.647698px;}
._b{width:13.670468px;}
._5{width:16.704843px;}
._e{width:18.487368px;}
._15{width:19.562076px;}
._14{width:24.878015px;}
._2{width:379.127279px;}
._3{width:710.214579px;}
._4{width:852.448734px;}
._13{width:1360.227602px;}
._16{width:1487.418502px;}
.fc2{color:rgb(22,65,148);}
.fc1{color:rgb(22,65,148);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.761620px;}
.fs5{font-size:59.762250px;}
.fs0{font-size:59.764500px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:66.242700px;}
.fs3{font-size:66.244498px;}
.fs1{font-size:66.244500px;}
.fs7{font-size:84.243145px;}
.fs2{font-size:84.244500px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.499908px;}
.y8{bottom:4.499909px;}
.yb{bottom:4.499910px;}
.y16{bottom:4.499915px;}
.y19{bottom:4.499916px;}
.y1c{bottom:4.499917px;}
.y20{bottom:4.499918px;}
.y24{bottom:4.499921px;}
.yd{bottom:4.500061px;}
.y11{bottom:4.500064px;}
.y14{bottom:4.500065px;}
.y2b{bottom:57.600083px;}
.y2{bottom:77.760000px;}
.y2a{bottom:93.420043px;}
.y82{bottom:168.480079px;}
.y95{bottom:181.800041px;}
.y61{bottom:182.520058px;}
.yae{bottom:182.880066px;}
.y81{bottom:191.700096px;}
.y94{bottom:205.020058px;}
.y60{bottom:205.740074px;}
.yad{bottom:206.100083px;}
.y48{bottom:207.540047px;}
.y80{bottom:210.240074px;}
.y93{bottom:228.240074px;}
.y5f{bottom:228.960091px;}
.yac{bottom:229.140060px;}
.y70{bottom:241.020058px;}
.y92{bottom:251.280052px;}
.y5e{bottom:252.000068px;}
.yab{bottom:261.360077px;}
.y6f{bottom:264.240074px;}
.y91{bottom:274.500068px;}
.y5d{bottom:275.220085px;}
.y6e{bottom:287.460091px;}
.y90{bottom:297.720085px;}
.y5c{bottom:298.440033px;}
.yaa{bottom:299.520058px;}
.y6d{bottom:310.500068px;}
.y8f{bottom:320.760064px;}
.y5b{bottom:321.660049px;}
.ya9{bottom:322.740074px;}
.y6c{bottom:333.720085px;}
.y8e{bottom:343.980079px;}
.y5a{bottom:344.700096px;}
.ya8{bottom:345.780052px;}
.y6b{bottom:356.940033px;}
.y8d{bottom:367.200096px;}
.y59{bottom:367.920043px;}
.ya7{bottom:369.000068px;}
.y6a{bottom:379.980079px;}
.y8c{bottom:390.240074px;}
.y58{bottom:391.140060px;}
.y69{bottom:403.200096px;}
.ya6{bottom:407.160049px;}
.y8b{bottom:413.460091px;}
.y57{bottom:414.180039px;}
.y47{bottom:426.420043px;}
.ya5{bottom:430.380066px;}
.y8a{bottom:436.680039px;}
.y56{bottom:446.400055px;}
.y46{bottom:449.640060px;}
.ya4{bottom:453.600083px;}
.y89{bottom:459.720085px;}
.y55{bottom:469.620072px;}
.y68{bottom:472.680039px;}
.y45{bottom:472.860077px;}
.ya3{bottom:476.640060px;}
.y88{bottom:482.940033px;}
.y54{bottom:492.660049px;}
.y25{bottom:495.540066px;}
.y44{bottom:495.900055px;}
.ya2{bottom:499.860077px;}
.y87{bottom:506.160049px;}
.y53{bottom:515.880066px;}
.y23{bottom:516.420066px;}
.y43{bottom:519.120072px;}
.ya1{bottom:523.080093px;}
.y86{bottom:529.200096px;}
.y52{bottom:534.600083px;}
.y67{bottom:542.160049px;}
.y42{bottom:542.340088px;}
.ya0{bottom:546.120072px;}
.y22{bottom:546.660000px;}
.y85{bottom:552.420043px;}
.y41{bottom:565.380066px;}
.y9f{bottom:569.340088px;}
.y7f{bottom:575.640060px;}
.y40{bottom:588.600083px;}
.y84{bottom:598.680039px;}
.y7e{bottom:598.860077px;}
.y21{bottom:603.540066px;}
.y9e{bottom:607.500068px;}
.y66{bottom:611.640060px;}
.y3f{bottom:620.820099px;}
.y7d{bottom:621.900055px;}
.y1f{bottom:624.420066px;}
.y9d{bottom:630.720085px;}
.y65{bottom:634.860077px;}
.y3e{bottom:643.860077px;}
.y7c{bottom:645.120072px;}
.y1e{bottom:645.300066px;}
.y9c{bottom:653.760064px;}
.y64{bottom:658.080093px;}
.y1b{bottom:666.180066px;}
.y3d{bottom:667.080093px;}
.y7b{bottom:668.340088px;}
.y1d{bottom:670.680000px;}
.y9b{bottom:676.980079px;}
.y63{bottom:681.120072px;}
.y1a{bottom:687.240066px;}
.y3c{bottom:690.300076px;}
.y7a{bottom:691.380066px;}
.y62{bottom:699.840054px;}
.y18{bottom:708.120066px;}
.y9a{bottom:709.200061px;}
.y3b{bottom:713.340054px;}
.y79{bottom:714.600083px;}
.y99{bottom:732.240074px;}
.y17{bottom:733.500000px;}
.y3a{bottom:736.560070px;}
.y78{bottom:737.820065px;}
.y15{bottom:749.160066px;}
.y98{bottom:755.460056px;}
.y39{bottom:759.780052px;}
.y77{bottom:760.860077px;}
.y13{bottom:770.040066px;}
.y97{bottom:778.680073px;}
.y38{bottom:783.000068px;}
.y76{bottom:784.080059px;}
.y12{bottom:790.920066px;}
.y83{bottom:793.080059px;}
.y96{bottom:797.220051px;}
.y37{bottom:806.040081px;}
.y10{bottom:811.800066px;}
.y75{bottom:816.300076px;}
.y36{bottom:829.260064px;}
.y74{bottom:839.340054px;}
.yf{bottom:842.040150px;}
.y35{bottom:861.480079px;}
.y73{bottom:862.560070px;}
.y72{bottom:885.780052px;}
.y34{bottom:893.520058px;}
.ye{bottom:898.920066px;}
.y71{bottom:904.500068px;}
.y51{bottom:908.820065px;}
.yc{bottom:919.800066px;}
.y33{bottom:925.740074px;}
.y50{bottom:932.040081px;}
.ya{bottom:940.680066px;}
.y32{bottom:948.960056px;}
.y4f{bottom:955.260064px;}
.y9{bottom:961.560066px;}
.y31{bottom:972.000068px;}
.y4e{bottom:978.300058px;}
.y7{bottom:982.440066px;}
.y30{bottom:995.220068px;}
.y4d{bottom:1001.520058px;}
.y6{bottom:1007.820000px;}
.y2f{bottom:1018.440067px;}
.y4{bottom:1023.480066px;}
.y4c{bottom:1024.740074px;}
.y2e{bottom:1041.480063px;}
.y4b{bottom:1047.780069px;}
.y3{bottom:1053.720000px;}
.y2d{bottom:1064.700061px;}
.y4a{bottom:1071.000068px;}
.y2c{bottom:1089.720068px;}
.y49{bottom:1094.220068px;}
.y29{bottom:1113.840070px;}
.y1{bottom:1132.200000px;}
.y28{bottom:1132.200061px;}
.y27{bottom:1150.380066px;}
.y26{bottom:1164.780069px;}
.h9{height:19.980000px;}
.h5{height:20.160000px;}
.he{height:50.522997px;}
.hf{height:57.930017px;}
.hb{height:59.441261px;}
.h2{height:59.443499px;}
.ha{height:65.884219px;}
.hc{height:65.886904px;}
.h7{height:65.888693px;}
.h8{height:65.888695px;}
.h6{height:67.829450px;}
.h3{height:67.829451px;}
.hd{height:86.258729px;}
.h4{height:86.260115px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w13{width:3.600000px;}
.w12{width:3.780000px;}
.w29{width:4.140000px;}
.w5{width:4.860000px;}
.w9{width:5.040000px;}
.w1a{width:5.580000px;}
.w2a{width:8.100000px;}
.w3{width:8.280000px;}
.w11{width:8.460000px;}
.w2e{width:17.640000px;}
.w18{width:21.960000px;}
.w1b{width:22.140000px;}
.w19{width:30.960000px;}
.w10{width:31.500000px;}
.w2f{width:32.580000px;}
.w23{width:35.100000px;}
.w21{width:35.460000px;}
.w25{width:36.900000px;}
.w22{width:38.160000px;}
.w8{width:40.860000px;}
.wa{width:45.540000px;}
.w27{width:45.900000px;}
.w14{width:56.700000px;}
.w28{width:59.760000px;}
.wf{width:60.840000px;}
.w16{width:64.620000px;}
.w24{width:64.980000px;}
.w33{width:67.320000px;}
.w2b{width:73.440000px;}
.wc{width:75.240000px;}
.wd{width:76.500000px;}
.w6{width:76.860000px;}
.w32{width:78.120000px;}
.w17{width:78.300000px;}
.w1e{width:79.020000px;}
.w30{width:79.740000px;}
.w1d{width:86.400000px;}
.w20{width:94.140000px;}
.w2{width:106.200000px;}
.w31{width:107.280000px;}
.w7{width:112.320000px;}
.w15{width:126.720000px;}
.w2d{width:127.440000px;}
.w26{width:131.760000px;}
.w2c{width:134.100000px;}
.wb{width:143.460000px;}
.w34{width:149.220000px;}
.w1f{width:196.920000px;}
.we{width:249.300000px;}
.w4{width:352.800000px;}
.w1c{width:381.060000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.200000px;}
.x4{left:122.760000px;}
.x3f{left:133.200002px;}
.x3b{left:140.400000px;}
.x35{left:155.340000px;}
.x2c{left:159.660000px;}
.x1b{left:179.460000px;}
.x11{left:183.600000px;}
.x2d{left:187.740000px;}
.xf{left:199.260000px;}
.x1e{left:201.060000px;}
.x1f{left:204.840000px;}
.x24{left:209.160000px;}
.x21{left:210.420000px;}
.x25{left:212.940000px;}
.x27{left:216.900000px;}
.x37{left:218.340000px;}
.x20{left:226.800000px;}
.x5{left:228.960000px;}
.x36{left:230.040000px;}
.x22{left:232.560000px;}
.x9{left:235.080000px;}
.x33{left:250.200000px;}
.x32{left:256.860000px;}
.xd{left:266.220000px;}
.x26{left:291.960000px;}
.x3c{left:298.080000px;}
.x6{left:324.000000px;}
.x34{left:341.820000px;}
.x12{left:355.500000px;}
.x28{left:359.640000px;}
.xa{left:364.860000px;}
.xb{left:369.900000px;}
.x2e{left:383.940000px;}
.x2f{left:388.080000px;}
.x38{left:389.160000px;}
.x30{left:391.860000px;}
.x13{left:395.460000px;}
.x29{left:397.800000px;}
.xe{left:399.240000px;}
.x14{left:403.740000px;}
.x15{left:407.520000px;}
.xc{left:415.440000px;}
.x41{left:416.699993px;}
.x16{left:419.400000px;}
.x2a{left:437.940000px;}
.x17{left:450.900000px;}
.x1c{left:455.760000px;}
.x18{left:459.180000px;}
.x31{left:473.400000px;}
.x19{left:490.680000px;}
.x1a{left:498.960000px;}
.x2b{left:502.920000px;}
.x1d{left:520.380000px;}
.x39{left:556.740000px;}
.x10{left:573.300000px;}
.x3a{left:624.060000px;}
.x1{left:662.919000px;}
.x7{left:676.800000px;}
.x8{left:681.660000px;}
.x3d{left:685.799973px;}
.x2{left:701.460375px;}
.x23{left:705.240000px;}
.x40{left:778.860008px;}
.x3e{left:786.600014px;}
@media print{
.v1{vertical-align:-55.679684pt;}
.v3{vertical-align:-21.119876pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120116pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003943pt;}
.ls1{letter-spacing:0.049227pt;}
.ls0{letter-spacing:0.284696pt;}
.ls5{letter-spacing:0.285582pt;}
.ls7{letter-spacing:34.249571pt;}
.ls6{letter-spacing:34.249575pt;}
.ls4{letter-spacing:42.372754pt;}
.ws2{word-spacing:-28.733440pt;}
.ws1{word-spacing:-13.357011pt;}
.ws0{word-spacing:-13.307784pt;}
.ws5{word-spacing:-13.307422pt;}
.ws6{word-spacing:-8.389445pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:0.117333pt;}
._a{margin-left:-3.262842pt;}
._9{margin-left:-2.363346pt;}
._1{margin-left:-0.925248pt;}
._0{width:0.890464pt;}
._c{width:1.846576pt;}
._7{width:2.939599pt;}
._6{width:4.412190pt;}
._d{width:5.330777pt;}
._f{width:6.234732pt;}
._12{width:7.668353pt;}
._11{width:8.824310pt;}
._10{width:9.761368pt;}
._8{width:11.242398pt;}
._b{width:12.151527pt;}
._5{width:14.848749pt;}
._e{width:16.433216pt;}
._15{width:17.388512pt;}
._14{width:22.113791pt;}
._2{width:337.002025pt;}
._3{width:631.301848pt;}
._4{width:757.732208pt;}
._13{width:1209.091202pt;}
._16{width:1322.149780pt;}
.fs8{font-size:37.121440pt;}
.fs5{font-size:53.122000pt;}
.fs0{font-size:53.124000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:58.882400pt;}
.fs3{font-size:58.883999pt;}
.fs1{font-size:58.884000pt;}
.fs7{font-size:74.882796pt;}
.fs2{font-size:74.884000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.999918pt;}
.y8{bottom:3.999919pt;}
.yb{bottom:3.999920pt;}
.y16{bottom:3.999925pt;}
.y19{bottom:3.999925pt;}
.y1c{bottom:3.999926pt;}
.y20{bottom:3.999927pt;}
.y24{bottom:3.999930pt;}
.yd{bottom:4.000054pt;}
.y11{bottom:4.000056pt;}
.y14{bottom:4.000057pt;}
.y2b{bottom:51.200074pt;}
.y2{bottom:69.120000pt;}
.y2a{bottom:83.040039pt;}
.y82{bottom:149.760071pt;}
.y95{bottom:161.600037pt;}
.y61{bottom:162.240052pt;}
.yae{bottom:162.560059pt;}
.y81{bottom:170.400086pt;}
.y94{bottom:182.240052pt;}
.y60{bottom:182.880066pt;}
.yad{bottom:183.200074pt;}
.y48{bottom:184.480042pt;}
.y80{bottom:186.880066pt;}
.y93{bottom:202.880066pt;}
.y5f{bottom:203.520081pt;}
.yac{bottom:203.680054pt;}
.y70{bottom:214.240052pt;}
.y92{bottom:223.360047pt;}
.y5e{bottom:224.000061pt;}
.yab{bottom:232.320069pt;}
.y6f{bottom:234.880066pt;}
.y91{bottom:244.000061pt;}
.y5d{bottom:244.640076pt;}
.y6e{bottom:255.520081pt;}
.y90{bottom:264.640076pt;}
.y5c{bottom:265.280030pt;}
.yaa{bottom:266.240052pt;}
.y6d{bottom:276.000061pt;}
.y8f{bottom:285.120057pt;}
.y5b{bottom:285.920044pt;}
.ya9{bottom:286.880066pt;}
.y6c{bottom:296.640076pt;}
.y8e{bottom:305.760071pt;}
.y5a{bottom:306.400086pt;}
.ya8{bottom:307.360047pt;}
.y6b{bottom:317.280030pt;}
.y8d{bottom:326.400086pt;}
.y59{bottom:327.040039pt;}
.ya7{bottom:328.000061pt;}
.y6a{bottom:337.760071pt;}
.y8c{bottom:346.880066pt;}
.y58{bottom:347.680054pt;}
.y69{bottom:358.400086pt;}
.ya6{bottom:361.920044pt;}
.y8b{bottom:367.520081pt;}
.y57{bottom:368.160035pt;}
.y47{bottom:379.040039pt;}
.ya5{bottom:382.560059pt;}
.y8a{bottom:388.160035pt;}
.y56{bottom:396.800049pt;}
.y46{bottom:399.680054pt;}
.ya4{bottom:403.200074pt;}
.y89{bottom:408.640076pt;}
.y55{bottom:417.440064pt;}
.y68{bottom:420.160035pt;}
.y45{bottom:420.320069pt;}
.ya3{bottom:423.680054pt;}
.y88{bottom:429.280030pt;}
.y54{bottom:437.920044pt;}
.y25{bottom:440.480059pt;}
.y44{bottom:440.800049pt;}
.ya2{bottom:444.320069pt;}
.y87{bottom:449.920044pt;}
.y53{bottom:458.560059pt;}
.y23{bottom:459.040059pt;}
.y43{bottom:461.440064pt;}
.ya1{bottom:464.960083pt;}
.y86{bottom:470.400086pt;}
.y52{bottom:475.200074pt;}
.y67{bottom:481.920044pt;}
.y42{bottom:482.080079pt;}
.ya0{bottom:485.440064pt;}
.y22{bottom:485.920000pt;}
.y85{bottom:491.040039pt;}
.y41{bottom:502.560059pt;}
.y9f{bottom:506.080079pt;}
.y7f{bottom:511.680054pt;}
.y40{bottom:523.200074pt;}
.y84{bottom:532.160035pt;}
.y7e{bottom:532.320069pt;}
.y21{bottom:536.480059pt;}
.y9e{bottom:540.000061pt;}
.y66{bottom:543.680054pt;}
.y3f{bottom:551.840088pt;}
.y7d{bottom:552.800049pt;}
.y1f{bottom:555.040059pt;}
.y9d{bottom:560.640076pt;}
.y65{bottom:564.320069pt;}
.y3e{bottom:572.320069pt;}
.y7c{bottom:573.440064pt;}
.y1e{bottom:573.600059pt;}
.y9c{bottom:581.120057pt;}
.y64{bottom:584.960083pt;}
.y1b{bottom:592.160059pt;}
.y3d{bottom:592.960083pt;}
.y7b{bottom:594.080079pt;}
.y1d{bottom:596.160000pt;}
.y9b{bottom:601.760071pt;}
.y63{bottom:605.440064pt;}
.y1a{bottom:610.880059pt;}
.y3c{bottom:613.600068pt;}
.y7a{bottom:614.560059pt;}
.y62{bottom:622.080048pt;}
.y18{bottom:629.440059pt;}
.y9a{bottom:630.400055pt;}
.y3b{bottom:634.080048pt;}
.y79{bottom:635.200074pt;}
.y99{bottom:650.880066pt;}
.y17{bottom:652.000000pt;}
.y3a{bottom:654.720063pt;}
.y78{bottom:655.840058pt;}
.y15{bottom:665.920059pt;}
.y98{bottom:671.520050pt;}
.y39{bottom:675.360047pt;}
.y77{bottom:676.320069pt;}
.y13{bottom:684.480059pt;}
.y97{bottom:692.160065pt;}
.y38{bottom:696.000061pt;}
.y76{bottom:696.960053pt;}
.y12{bottom:703.040059pt;}
.y83{bottom:704.960053pt;}
.y96{bottom:708.640046pt;}
.y37{bottom:716.480072pt;}
.y10{bottom:721.600059pt;}
.y75{bottom:725.600068pt;}
.y36{bottom:737.120057pt;}
.y74{bottom:746.080048pt;}
.yf{bottom:748.480133pt;}
.y35{bottom:765.760071pt;}
.y73{bottom:766.720063pt;}
.y72{bottom:787.360047pt;}
.y34{bottom:794.240052pt;}
.ye{bottom:799.040059pt;}
.y71{bottom:804.000061pt;}
.y51{bottom:807.840058pt;}
.yc{bottom:817.600059pt;}
.y33{bottom:822.880066pt;}
.y50{bottom:828.480072pt;}
.ya{bottom:836.160059pt;}
.y32{bottom:843.520050pt;}
.y4f{bottom:849.120057pt;}
.y9{bottom:854.720059pt;}
.y31{bottom:864.000061pt;}
.y4e{bottom:869.600052pt;}
.y7{bottom:873.280059pt;}
.y30{bottom:884.640061pt;}
.y4d{bottom:890.240052pt;}
.y6{bottom:895.840000pt;}
.y2f{bottom:905.280060pt;}
.y4{bottom:909.760059pt;}
.y4c{bottom:910.880066pt;}
.y2e{bottom:925.760056pt;}
.y4b{bottom:931.360062pt;}
.y3{bottom:936.640000pt;}
.y2d{bottom:946.400055pt;}
.y4a{bottom:952.000061pt;}
.y2c{bottom:968.640061pt;}
.y49{bottom:972.640061pt;}
.y29{bottom:990.080063pt;}
.y1{bottom:1006.400000pt;}
.y28{bottom:1006.400055pt;}
.y27{bottom:1022.560059pt;}
.y26{bottom:1035.360062pt;}
.h9{height:17.760000pt;}
.h5{height:17.920000pt;}
.he{height:44.909330pt;}
.hf{height:51.493349pt;}
.hb{height:52.836677pt;}
.h2{height:52.838666pt;}
.ha{height:58.563750pt;}
.hc{height:58.566137pt;}
.h7{height:58.567727pt;}
.h8{height:58.567729pt;}
.h6{height:60.292844pt;}
.h3{height:60.292846pt;}
.hd{height:76.674425pt;}
.h4{height:76.675658pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w13{width:3.200000pt;}
.w12{width:3.360000pt;}
.w29{width:3.680000pt;}
.w5{width:4.320000pt;}
.w9{width:4.480000pt;}
.w1a{width:4.960000pt;}
.w2a{width:7.200000pt;}
.w3{width:7.360000pt;}
.w11{width:7.520000pt;}
.w2e{width:15.680000pt;}
.w18{width:19.520000pt;}
.w1b{width:19.680000pt;}
.w19{width:27.520000pt;}
.w10{width:28.000000pt;}
.w2f{width:28.960000pt;}
.w23{width:31.200000pt;}
.w21{width:31.520000pt;}
.w25{width:32.800000pt;}
.w22{width:33.920000pt;}
.w8{width:36.320000pt;}
.wa{width:40.480000pt;}
.w27{width:40.800000pt;}
.w14{width:50.400000pt;}
.w28{width:53.120000pt;}
.wf{width:54.080000pt;}
.w16{width:57.440000pt;}
.w24{width:57.760000pt;}
.w33{width:59.840000pt;}
.w2b{width:65.280000pt;}
.wc{width:66.880000pt;}
.wd{width:68.000000pt;}
.w6{width:68.320000pt;}
.w32{width:69.440000pt;}
.w17{width:69.600000pt;}
.w1e{width:70.240000pt;}
.w30{width:70.880000pt;}
.w1d{width:76.800000pt;}
.w20{width:83.680000pt;}
.w2{width:94.400000pt;}
.w31{width:95.360000pt;}
.w7{width:99.840000pt;}
.w15{width:112.640000pt;}
.w2d{width:113.280000pt;}
.w26{width:117.120000pt;}
.w2c{width:119.200000pt;}
.wb{width:127.520000pt;}
.w34{width:132.640000pt;}
.w1f{width:175.040000pt;}
.we{width:221.600000pt;}
.w4{width:313.600000pt;}
.w1c{width:338.720000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.400000pt;}
.x4{left:109.120000pt;}
.x3f{left:118.400002pt;}
.x3b{left:124.800000pt;}
.x35{left:138.080000pt;}
.x2c{left:141.920000pt;}
.x1b{left:159.520000pt;}
.x11{left:163.200000pt;}
.x2d{left:166.880000pt;}
.xf{left:177.120000pt;}
.x1e{left:178.720000pt;}
.x1f{left:182.080000pt;}
.x24{left:185.920000pt;}
.x21{left:187.040000pt;}
.x25{left:189.280000pt;}
.x27{left:192.800000pt;}
.x37{left:194.080000pt;}
.x20{left:201.600000pt;}
.x5{left:203.520000pt;}
.x36{left:204.480000pt;}
.x22{left:206.720000pt;}
.x9{left:208.960000pt;}
.x33{left:222.400000pt;}
.x32{left:228.320000pt;}
.xd{left:236.640000pt;}
.x26{left:259.520000pt;}
.x3c{left:264.960000pt;}
.x6{left:288.000000pt;}
.x34{left:303.840000pt;}
.x12{left:316.000000pt;}
.x28{left:319.680000pt;}
.xa{left:324.320000pt;}
.xb{left:328.800000pt;}
.x2e{left:341.280000pt;}
.x2f{left:344.960000pt;}
.x38{left:345.920000pt;}
.x30{left:348.320000pt;}
.x13{left:351.520000pt;}
.x29{left:353.600000pt;}
.xe{left:354.880000pt;}
.x14{left:358.880000pt;}
.x15{left:362.240000pt;}
.xc{left:369.280000pt;}
.x41{left:370.399994pt;}
.x16{left:372.800000pt;}
.x2a{left:389.280000pt;}
.x17{left:400.800000pt;}
.x1c{left:405.120000pt;}
.x18{left:408.160000pt;}
.x31{left:420.800000pt;}
.x19{left:436.160000pt;}
.x1a{left:443.520000pt;}
.x2b{left:447.040000pt;}
.x1d{left:462.560000pt;}
.x39{left:494.880000pt;}
.x10{left:509.600000pt;}
.x3a{left:554.720000pt;}
.x1{left:589.261333pt;}
.x7{left:601.600000pt;}
.x8{left:605.920000pt;}
.x3d{left:609.599976pt;}
.x2{left:623.520333pt;}
.x23{left:626.880000pt;}
.x40{left:692.320007pt;}
.x3e{left:699.200012pt;}
}




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