
    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_6176d83653a4a9b3767a6e82.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9e2538ee1e48c7bfe18a6b67.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7ee1ce5923d053e8b19608f5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5ab61809b20ee4918bdf793b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ff75ada985516f8486b10e96.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:21.304640px;}
.ls3{letter-spacing:23.975224px;}
.ls2{letter-spacing:34.055219px;}
.ls1{letter-spacing:34.055251px;}
.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:-21.060786px;}
.ws0{word-spacing:-18.000676px;}
.ws1{word-spacing:0.000000px;}
._1c{margin-left:-18.508134px;}
._12{margin-left:-5.619191px;}
._13{margin-left:-4.603217px;}
._f{margin-left:-3.601921px;}
._6{margin-left:-2.283646px;}
._0{margin-left:-1.110627px;}
._1{width:1.014312px;}
._e{width:2.161206px;}
._5{width:3.672700px;}
._a{width:4.761373px;}
._11{width:5.933647px;}
._17{width:6.963793px;}
._16{width:8.103158px;}
._1f{width:9.130532px;}
._15{width:10.225634px;}
._14{width:11.306675px;}
._1a{width:12.839091px;}
._b{width:13.864177px;}
._4{width:15.181601px;}
._3{width:16.428711px;}
._1b{width:19.004327px;}
._10{width:20.291543px;}
._7{width:21.843258px;}
._8{width:23.040303px;}
._9{width:24.533905px;}
._19{width:30.741217px;}
._18{width:32.298557px;}
._c{width:33.459094px;}
._2{width:34.837098px;}
._d{width:35.866212px;}
._1d{width:542.426784px;}
._1e{width:580.014330px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.761620px;}
.fs5{font-size:54.002250px;}
.fs2{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs3{font-size:84.243145px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.520002px;}
.y5{bottom:4.319962px;}
.y4{bottom:59.580093px;}
.y3{bottom:63.900055px;}
.y7{bottom:69.660049px;}
.y63{bottom:95.580093px;}
.yc3{bottom:97.380066px;}
.y98{bottom:97.920043px;}
.y77{bottom:103.680039px;}
.y2c{bottom:104.940033px;}
.ye0{bottom:106.560104px;}
.y4e{bottom:109.080093px;}
.yab{bottom:117.180039px;}
.y62{bottom:126.540047px;}
.yc2{bottom:128.520058px;}
.y97{bottom:129.060036px;}
.y76{bottom:134.640060px;}
.y2b{bottom:136.080093px;}
.ydf{bottom:137.700096px;}
.y4d{bottom:140.040047px;}
.yaa{bottom:148.140060px;}
.yc1{bottom:159.480079px;}
.y2a{bottom:167.040047px;}
.y4c{bottom:171.180039px;}
.y61{bottom:172.080093px;}
.y96{bottom:174.420043px;}
.y75{bottom:180.180039px;}
.yde{bottom:183.060036px;}
.ya9{bottom:193.680039px;}
.y4b{bottom:202.140060px;}
.y29{bottom:208.440033px;}
.y74{bottom:211.140060px;}
.yc0{bottom:211.500068px;}
.ydd{bottom:214.200096px;}
.y60{bottom:217.440033px;}
.y95{bottom:219.960091px;}
.y4a{bottom:233.280052px;}
.ya8{bottom:239.040047px;}
.y73{bottom:242.280052px;}
.ybf{bottom:242.640060px;}
.ydc{bottom:245.160049px;}
.y5f{bottom:248.580093px;}
.y28{bottom:249.840088px;}
.y94{bottom:262.440033px;}
.y49{bottom:264.240074px;}
.y27{bottom:270.180039px;}
.ybe{bottom:273.600083px;}
.y5e{bottom:279.540047px;}
.ya7{bottom:284.580093px;}
.y93{bottom:285.840088px;}
.y72{bottom:287.640060px;}
.ydb{bottom:290.700096px;}
.yf0{bottom:291.600083px;}
.y48{bottom:295.200096px;}
.y26{bottom:299.880066px;}
.ybd{bottom:304.740074px;}
.y92{bottom:309.060036px;}
.y5d{bottom:310.680039px;}
.yda{bottom:321.660049px;}
.y47{bottom:326.340088px;}
.ya6{bottom:329.940033px;}
.y25{bottom:330.840088px;}
.y91{bottom:332.280052px;}
.yef{bottom:333.000068px;}
.y71{bottom:333.180039px;}
.ybc{bottom:335.700096px;}
.y5c{bottom:341.640060px;}
.yd9{bottom:352.800041px;}
.y46{bottom:357.300041px;}
.y24{bottom:361.980079px;}
.y70{bottom:364.140060px;}
.y90{bottom:366.660049px;}
.ybb{bottom:366.840088px;}
.yee{bottom:374.400055px;}
.ya5{bottom:375.480079px;}
.y5b{bottom:387.180039px;}
.y45{bottom:388.440033px;}
.y8f{bottom:390.060036px;}
.y23{bottom:392.940033px;}
.y6f{bottom:395.280052px;}
.yd8{bottom:398.160049px;}
.y8e{bottom:413.280052px;}
.yed{bottom:415.800041px;}
.y44{bottom:419.400055px;}
.ya4{bottom:420.840088px;}
.yba{bottom:421.200096px;}
.y22{bottom:424.080093px;}
.y6e{bottom:426.240074px;}
.yd7{bottom:429.300041px;}
.y5a{bottom:432.540047px;}
.y8d{bottom:447.660049px;}
.y43{bottom:450.540047px;}
.y21{bottom:455.040047px;}
.yec{bottom:457.200096px;}
.y6d{bottom:457.380066px;}
.yd6{bottom:460.260064px;}
.y59{bottom:463.680039px;}
.ya3{bottom:466.380066px;}
.yb9{bottom:469.440033px;}
.y8c{bottom:470.880066px;}
.y42{bottom:481.500068px;}
.y20{bottom:486.180039px;}
.y8b{bottom:494.280052px;}
.y58{bottom:494.640060px;}
.yeb{bottom:498.600083px;}
.yb8{bottom:500.580093px;}
.y6c{bottom:502.740074px;}
.yd5{bottom:505.800041px;}
.ya2{bottom:511.740074px;}
.y41{bottom:512.640060px;}
.y1f{bottom:517.140060px;}
.y8a{bottom:517.500068px;}
.y57{bottom:525.780052px;}
.yb7{bottom:531.540047px;}
.yd4{bottom:536.760064px;}
.yea{bottom:540.000068px;}
.y40{bottom:543.600083px;}
.y1e{bottom:548.280052px;}
.y89{bottom:551.880066px;}
.y56{bottom:556.740074px;}
.ya1{bottom:557.280052px;}
.yb6{bottom:562.680039px;}
.yd3{bottom:567.900055px;}
.y3f{bottom:574.740074px;}
.y88{bottom:575.280052px;}
.y1d{bottom:579.240074px;}
.ye9{bottom:581.580093px;}
.y55{bottom:587.880066px;}
.yd2{bottom:597.600083px;}
.y87{bottom:598.320099px;}
.ya0{bottom:602.640060px;}
.y3e{bottom:605.700096px;}
.yb5{bottom:608.040047px;}
.y1c{bottom:610.380066px;}
.y54{bottom:618.840088px;}
.ye8{bottom:626.940033px;}
.yd1{bottom:627.300041px;}
.y86{bottom:632.880066px;}
.y3d{bottom:636.840088px;}
.yb4{bottom:639.180039px;}
.y1b{bottom:641.340088px;}
.y9f{bottom:648.180039px;}
.y53{bottom:649.980079px;}
.y85{bottom:656.100083px;}
.ye7{bottom:658.080093px;}
.yd0{bottom:658.440033px;}
.y3c{bottom:667.800041px;}
.yb3{bottom:670.140060px;}
.y1a{bottom:672.480079px;}
.y84{bottom:679.500068px;}
.y52{bottom:680.940033px;}
.ye6{bottom:689.040081px;}
.ycf{bottom:689.400055px;}
.y9e{bottom:693.540081px;}
.y3b{bottom:698.940067px;}
.yb2{bottom:701.280052px;}
.y83{bottom:702.720051px;}
.y19{bottom:703.440067px;}
.yce{bottom:709.920078px;}
.y51{bottom:712.080059px;}
.y3a{bottom:719.640060px;}
.y18{bottom:724.140060px;}
.ycd{bottom:729.180073px;}
.yb1{bottom:732.240074px;}
.y6b{bottom:734.580059px;}
.y82{bottom:737.100083px;}
.y9d{bottom:739.080059px;}
.y39{bottom:740.340054px;}
.y17{bottom:744.840054px;}
.y81{bottom:760.320065px;}
.y50{bottom:761.040081px;}
.y16{bottom:765.540081px;}
.yb0{bottom:777.780052px;}
.y6a{bottom:779.940067px;}
.ycc{bottom:781.200061px;}
.y38{bottom:781.740074px;}
.y80{bottom:783.720051px;}
.y9c{bottom:784.440067px;}
.y15{bottom:786.240074px;}
.y4f{bottom:792.180073px;}
.y14{bottom:806.940067px;}
.yaf{bottom:808.740074px;}
.ye5{bottom:811.080059px;}
.ycb{bottom:812.160049px;}
.y37{bottom:823.140060px;}
.y69{bottom:825.480079px;}
.y13{bottom:827.640060px;}
.y9b{bottom:829.980079px;}
.y7f{bottom:830.160049px;}
.yae{bottom:839.880066px;}
.ye4{bottom:842.040081px;}
.yca{bottom:843.300076px;}
.y12{bottom:848.340054px;}
.y36{bottom:854.280052px;}
.y68{bottom:856.440067px;}
.y7e{bottom:865.980079px;}
.y11{bottom:869.580059px;}
.yad{bottom:870.840054px;}
.ye3{bottom:873.180073px;}
.yc9{bottom:874.260064px;}
.y9a{bottom:875.340054px;}
.y35{bottom:885.240074px;}
.y67{bottom:887.580059px;}
.y10{bottom:893.700061px;}
.yac{bottom:901.980079px;}
.y7d{bottom:904.140060px;}
.yc8{bottom:905.400055px;}
.y34{bottom:916.380066px;}
.yf{bottom:918.000068px;}
.y66{bottom:918.540081px;}
.y99{bottom:920.880066px;}
.y7c{bottom:935.280052px;}
.yc7{bottom:936.360077px;}
.ye{bottom:942.120072px;}
.y33{bottom:947.340054px;}
.y65{bottom:949.680073px;}
.yd{bottom:966.240074px;}
.y32{bottom:978.480063px;}
.y7b{bottom:980.640060px;}
.yc6{bottom:988.380066px;}
.yc{bottom:990.360060px;}
.y64{bottom:995.040064px;}
.y31{bottom:1009.440067px;}
.y7a{bottom:1011.780069px;}
.yc5{bottom:1019.520058px;}
.ye2{bottom:1026.180073px;}
.yb{bottom:1033.740074px;}
.y30{bottom:1040.580059px;}
.y79{bottom:1042.740074px;}
.yc4{bottom:1050.480063px;}
.ye1{bottom:1057.140060px;}
.y2f{bottom:1071.540064px;}
.ya{bottom:1077.120072px;}
.y78{bottom:1088.280069px;}
.y2e{bottom:1102.680073px;}
.y9{bottom:1119.060070px;}
.y2d{bottom:1133.640069px;}
.y8{bottom:1136.340063px;}
.y1{bottom:1191.600065px;}
.y6{bottom:1204.740066px;}
.h2{height:12.060002px;}
.h5{height:20.519990px;}
.h3{height:37.438640px;}
.hb{height:47.963912px;}
.hc{height:48.412173px;}
.h6{height:53.575923px;}
.h9{height:58.835679px;}
.hd{height:59.385546px;}
.ha{height:63.951621px;}
.h4{height:64.549300px;}
.h8{height:74.823380px;}
.h7{height:75.522664px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:1.259994px;}
.w3{width:6.659981px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:111.060001px;}
.x1f{left:121.680005px;}
.x12{left:126.540003px;}
.xe{left:127.799998px;}
.x17{left:130.140000px;}
.x14{left:131.579999px;}
.xf{left:138.060001px;}
.x8{left:140.760003px;}
.x11{left:143.099997px;}
.x16{left:145.439999px;}
.x1e{left:147.960005px;}
.x13{left:153.539996px;}
.xc{left:163.259994px;}
.x10{left:165.060001px;}
.x1c{left:166.860008px;}
.x1d{left:169.919992px;}
.xd{left:171.360008px;}
.xa{left:176.759994px;}
.xb{left:178.379998px;}
.x7{left:180.900003px;}
.x1b{left:184.860008px;}
.x6{left:213.120002px;}
.x5{left:275.400003px;}
.x18{left:303.480011px;}
.x1a{left:390.600014px;}
.x15{left:448.199993px;}
.x9{left:466.920010px;}
.x19{left:643.320030px;}
.x2{left:788.580025px;}
.x3{left:796.860008px;}
.x1{left:808.379998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:18.937458pt;}
.ls3{letter-spacing:21.311310pt;}
.ls2{letter-spacing:30.271306pt;}
.ls1{letter-spacing:30.271334pt;}
.ws2{word-spacing:-18.720699pt;}
.ws0{word-spacing:-16.000601pt;}
.ws1{word-spacing:0.000000pt;}
._1c{margin-left:-16.451675pt;}
._12{margin-left:-4.994836pt;}
._13{margin-left:-4.091749pt;}
._f{margin-left:-3.201707pt;}
._6{margin-left:-2.029908pt;}
._0{margin-left:-0.987224pt;}
._1{width:0.901611pt;}
._e{width:1.921072pt;}
._5{width:3.264623pt;}
._a{width:4.232332pt;}
._11{width:5.274352pt;}
._17{width:6.190038pt;}
._16{width:7.202807pt;}
._1f{width:8.116029pt;}
._15{width:9.089452pt;}
._14{width:10.050377pt;}
._1a{width:11.412525pt;}
._b{width:12.323713pt;}
._4{width:13.494757pt;}
._3{width:14.603298pt;}
._1b{width:16.892735pt;}
._10{width:18.036927pt;}
._7{width:19.416229pt;}
._8{width:20.480269pt;}
._9{width:21.807915pt;}
._19{width:27.325526pt;}
._18{width:28.709828pt;}
._c{width:29.741417pt;}
._2{width:30.966309pt;}
._d{width:31.881078pt;}
._1d{width:482.157141pt;}
._1e{width:515.568294pt;}
.fs0{font-size:37.121440pt;}
.fs5{font-size:48.002000pt;}
.fs2{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs3{font-size:74.882796pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.240002pt;}
.y5{bottom:3.839966pt;}
.y4{bottom:52.960083pt;}
.y3{bottom:56.800049pt;}
.y7{bottom:61.920044pt;}
.y63{bottom:84.960083pt;}
.yc3{bottom:86.560059pt;}
.y98{bottom:87.040039pt;}
.y77{bottom:92.160035pt;}
.y2c{bottom:93.280030pt;}
.ye0{bottom:94.720093pt;}
.y4e{bottom:96.960083pt;}
.yab{bottom:104.160035pt;}
.y62{bottom:112.480042pt;}
.yc2{bottom:114.240052pt;}
.y97{bottom:114.720032pt;}
.y76{bottom:119.680054pt;}
.y2b{bottom:120.960083pt;}
.ydf{bottom:122.400086pt;}
.y4d{bottom:124.480042pt;}
.yaa{bottom:131.680054pt;}
.yc1{bottom:141.760071pt;}
.y2a{bottom:148.480042pt;}
.y4c{bottom:152.160035pt;}
.y61{bottom:152.960083pt;}
.y96{bottom:155.040039pt;}
.y75{bottom:160.160035pt;}
.yde{bottom:162.720032pt;}
.ya9{bottom:172.160035pt;}
.y4b{bottom:179.680054pt;}
.y29{bottom:185.280030pt;}
.y74{bottom:187.680054pt;}
.yc0{bottom:188.000061pt;}
.ydd{bottom:190.400086pt;}
.y60{bottom:193.280030pt;}
.y95{bottom:195.520081pt;}
.y4a{bottom:207.360047pt;}
.ya8{bottom:212.480042pt;}
.y73{bottom:215.360047pt;}
.ybf{bottom:215.680054pt;}
.ydc{bottom:217.920044pt;}
.y5f{bottom:220.960083pt;}
.y28{bottom:222.080079pt;}
.y94{bottom:233.280030pt;}
.y49{bottom:234.880066pt;}
.y27{bottom:240.160035pt;}
.ybe{bottom:243.200074pt;}
.y5e{bottom:248.480042pt;}
.ya7{bottom:252.960083pt;}
.y93{bottom:254.080079pt;}
.y72{bottom:255.680054pt;}
.ydb{bottom:258.400086pt;}
.yf0{bottom:259.200074pt;}
.y48{bottom:262.400086pt;}
.y26{bottom:266.560059pt;}
.ybd{bottom:270.880066pt;}
.y92{bottom:274.720032pt;}
.y5d{bottom:276.160035pt;}
.yda{bottom:285.920044pt;}
.y47{bottom:290.080079pt;}
.ya6{bottom:293.280030pt;}
.y25{bottom:294.080079pt;}
.y91{bottom:295.360047pt;}
.yef{bottom:296.000061pt;}
.y71{bottom:296.160035pt;}
.ybc{bottom:298.400086pt;}
.y5c{bottom:303.680054pt;}
.yd9{bottom:313.600037pt;}
.y46{bottom:317.600037pt;}
.y24{bottom:321.760071pt;}
.y70{bottom:323.680054pt;}
.y90{bottom:325.920044pt;}
.ybb{bottom:326.080079pt;}
.yee{bottom:332.800049pt;}
.ya5{bottom:333.760071pt;}
.y5b{bottom:344.160035pt;}
.y45{bottom:345.280030pt;}
.y8f{bottom:346.720032pt;}
.y23{bottom:349.280030pt;}
.y6f{bottom:351.360047pt;}
.yd8{bottom:353.920044pt;}
.y8e{bottom:367.360047pt;}
.yed{bottom:369.600037pt;}
.y44{bottom:372.800049pt;}
.ya4{bottom:374.080079pt;}
.yba{bottom:374.400086pt;}
.y22{bottom:376.960083pt;}
.y6e{bottom:378.880066pt;}
.yd7{bottom:381.600037pt;}
.y5a{bottom:384.480042pt;}
.y8d{bottom:397.920044pt;}
.y43{bottom:400.480042pt;}
.y21{bottom:404.480042pt;}
.yec{bottom:406.400086pt;}
.y6d{bottom:406.560059pt;}
.yd6{bottom:409.120057pt;}
.y59{bottom:412.160035pt;}
.ya3{bottom:414.560059pt;}
.yb9{bottom:417.280030pt;}
.y8c{bottom:418.560059pt;}
.y42{bottom:428.000061pt;}
.y20{bottom:432.160035pt;}
.y8b{bottom:439.360047pt;}
.y58{bottom:439.680054pt;}
.yeb{bottom:443.200074pt;}
.yb8{bottom:444.960083pt;}
.y6c{bottom:446.880066pt;}
.yd5{bottom:449.600037pt;}
.ya2{bottom:454.880066pt;}
.y41{bottom:455.680054pt;}
.y1f{bottom:459.680054pt;}
.y8a{bottom:460.000061pt;}
.y57{bottom:467.360047pt;}
.yb7{bottom:472.480042pt;}
.yd4{bottom:477.120057pt;}
.yea{bottom:480.000061pt;}
.y40{bottom:483.200074pt;}
.y1e{bottom:487.360047pt;}
.y89{bottom:490.560059pt;}
.y56{bottom:494.880066pt;}
.ya1{bottom:495.360047pt;}
.yb6{bottom:500.160035pt;}
.yd3{bottom:504.800049pt;}
.y3f{bottom:510.880066pt;}
.y88{bottom:511.360047pt;}
.y1d{bottom:514.880066pt;}
.ye9{bottom:516.960083pt;}
.y55{bottom:522.560059pt;}
.yd2{bottom:531.200074pt;}
.y87{bottom:531.840088pt;}
.ya0{bottom:535.680054pt;}
.y3e{bottom:538.400086pt;}
.yb5{bottom:540.480042pt;}
.y1c{bottom:542.560059pt;}
.y54{bottom:550.080079pt;}
.ye8{bottom:557.280030pt;}
.yd1{bottom:557.600037pt;}
.y86{bottom:562.560059pt;}
.y3d{bottom:566.080079pt;}
.yb4{bottom:568.160035pt;}
.y1b{bottom:570.080079pt;}
.y9f{bottom:576.160035pt;}
.y53{bottom:577.760071pt;}
.y85{bottom:583.200074pt;}
.ye7{bottom:584.960083pt;}
.yd0{bottom:585.280030pt;}
.y3c{bottom:593.600037pt;}
.yb3{bottom:595.680054pt;}
.y1a{bottom:597.760071pt;}
.y84{bottom:604.000061pt;}
.y52{bottom:605.280030pt;}
.ye6{bottom:612.480072pt;}
.ycf{bottom:612.800049pt;}
.y9e{bottom:616.480072pt;}
.y3b{bottom:621.280060pt;}
.yb2{bottom:623.360047pt;}
.y83{bottom:624.640046pt;}
.y19{bottom:625.280060pt;}
.yce{bottom:631.040070pt;}
.y51{bottom:632.960053pt;}
.y3a{bottom:639.680054pt;}
.y18{bottom:643.680054pt;}
.ycd{bottom:648.160065pt;}
.yb1{bottom:650.880066pt;}
.y6b{bottom:652.960053pt;}
.y82{bottom:655.200074pt;}
.y9d{bottom:656.960053pt;}
.y39{bottom:658.080048pt;}
.y17{bottom:662.080048pt;}
.y81{bottom:675.840058pt;}
.y50{bottom:676.480072pt;}
.y16{bottom:680.480072pt;}
.yb0{bottom:691.360047pt;}
.y6a{bottom:693.280060pt;}
.ycc{bottom:694.400055pt;}
.y38{bottom:694.880066pt;}
.y80{bottom:696.640046pt;}
.y9c{bottom:697.280060pt;}
.y15{bottom:698.880066pt;}
.y4f{bottom:704.160065pt;}
.y14{bottom:717.280060pt;}
.yaf{bottom:718.880066pt;}
.ye5{bottom:720.960053pt;}
.ycb{bottom:721.920044pt;}
.y37{bottom:731.680054pt;}
.y69{bottom:733.760071pt;}
.y13{bottom:735.680054pt;}
.y9b{bottom:737.760071pt;}
.y7f{bottom:737.920044pt;}
.yae{bottom:746.560059pt;}
.ye4{bottom:748.480072pt;}
.yca{bottom:749.600068pt;}
.y12{bottom:754.080048pt;}
.y36{bottom:759.360047pt;}
.y68{bottom:761.280060pt;}
.y7e{bottom:769.760071pt;}
.y11{bottom:772.960053pt;}
.yad{bottom:774.080048pt;}
.ye3{bottom:776.160065pt;}
.yc9{bottom:777.120057pt;}
.y9a{bottom:778.080048pt;}
.y35{bottom:786.880066pt;}
.y67{bottom:788.960053pt;}
.y10{bottom:794.400055pt;}
.yac{bottom:801.760071pt;}
.y7d{bottom:803.680054pt;}
.yc8{bottom:804.800049pt;}
.y34{bottom:814.560059pt;}
.yf{bottom:816.000061pt;}
.y66{bottom:816.480072pt;}
.y99{bottom:818.560059pt;}
.y7c{bottom:831.360047pt;}
.yc7{bottom:832.320069pt;}
.ye{bottom:837.440064pt;}
.y33{bottom:842.080048pt;}
.y65{bottom:844.160065pt;}
.yd{bottom:858.880066pt;}
.y32{bottom:869.760056pt;}
.y7b{bottom:871.680054pt;}
.yc6{bottom:878.560059pt;}
.yc{bottom:880.320054pt;}
.y64{bottom:884.480057pt;}
.y31{bottom:897.280060pt;}
.y7a{bottom:899.360062pt;}
.yc5{bottom:906.240052pt;}
.ye2{bottom:912.160065pt;}
.yb{bottom:918.880066pt;}
.y30{bottom:924.960053pt;}
.y79{bottom:926.880066pt;}
.yc4{bottom:933.760056pt;}
.ye1{bottom:939.680054pt;}
.y2f{bottom:952.480057pt;}
.ya{bottom:957.440064pt;}
.y78{bottom:967.360062pt;}
.y2e{bottom:980.160065pt;}
.y9{bottom:994.720063pt;}
.y2d{bottom:1007.680062pt;}
.y8{bottom:1010.080056pt;}
.y1{bottom:1059.200058pt;}
.y6{bottom:1070.880059pt;}
.h2{height:10.720002pt;}
.h5{height:18.239991pt;}
.h3{height:33.278791pt;}
.hb{height:42.634589pt;}
.hc{height:43.033043pt;}
.h6{height:47.623043pt;}
.h9{height:52.298382pt;}
.hd{height:52.787152pt;}
.ha{height:56.845885pt;}
.h4{height:57.377155pt;}
.h8{height:66.509671pt;}
.h7{height:67.131257pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:1.119995pt;}
.w3{width:5.919983pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:98.720001pt;}
.x1f{left:108.160004pt;}
.x12{left:112.480003pt;}
.xe{left:113.599998pt;}
.x17{left:115.680000pt;}
.x14{left:116.959999pt;}
.xf{left:122.720001pt;}
.x8{left:125.120003pt;}
.x11{left:127.199997pt;}
.x16{left:129.279999pt;}
.x1e{left:131.520004pt;}
.x13{left:136.479996pt;}
.xc{left:145.119995pt;}
.x10{left:146.720001pt;}
.x1c{left:148.320007pt;}
.x1d{left:151.039993pt;}
.xd{left:152.320007pt;}
.xa{left:157.119995pt;}
.xb{left:158.559998pt;}
.x7{left:160.800003pt;}
.x1b{left:164.320007pt;}
.x6{left:189.440002pt;}
.x5{left:244.800003pt;}
.x18{left:269.760010pt;}
.x1a{left:347.200012pt;}
.x15{left:398.399994pt;}
.x9{left:415.040009pt;}
.x19{left:571.840027pt;}
.x2{left:700.960022pt;}
.x3{left:708.320007pt;}
.x1{left:718.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; }
  