
    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_c2a57ee3f26130029dec35bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_0571cfcc647ad1961003d429.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.902000;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_c433318ac83d467c6172310c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909668;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_6a72a9980f47b2915901a950.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.378514px;}
.ls1{letter-spacing:2.404477px;}
.ls0{letter-spacing:2.548052px;}
.ls2{letter-spacing:3.123202px;}
.ls3{letter-spacing:8.834576px;}
.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;}
}
.ws4{word-spacing:-47.375981px;}
.ws0{word-spacing:-34.968514px;}
.ws3{word-spacing:-33.636947px;}
.ws1{word-spacing:-17.999993px;}
.ws5{word-spacing:-15.318508px;}
.ws2{word-spacing:-14.939994px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-2.262766px;}
._0{margin-left:-1.195723px;}
._1{width:1.776919px;}
._3{width:3.520644px;}
._7{width:4.538107px;}
._2{width:5.837883px;}
._8{width:7.885696px;}
._9{width:9.082117px;}
._4{width:10.612610px;}
._6{width:11.689542px;}
._e{width:12.926038px;}
._f{width:13.948144px;}
._10{width:15.522128px;}
._d{width:16.625877px;}
._c{width:19.114812px;}
._11{width:20.906674px;}
._b{width:22.862215px;}
._a{width:24.004366px;}
._12{width:25.125839px;}
.fc2{color:transparent;}
.fc1{color:rgb(19,20,19);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs4{font-size:48.239981px;}
.fs5{font-size:51.119980px;}
.fs3{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs0{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.600516px;}
.yd{bottom:3.600523px;}
.y5b{bottom:3.600795px;}
.y5e{bottom:3.600801px;}
.y61{bottom:3.600808px;}
.y64{bottom:3.600815px;}
.y67{bottom:3.600822px;}
.y5{bottom:4.320492px;}
.y7{bottom:4.320500px;}
.y10{bottom:4.320543px;}
.y12{bottom:4.320551px;}
.y14{bottom:4.320560px;}
.y17{bottom:4.320568px;}
.y1a{bottom:4.320576px;}
.y1d{bottom:4.320584px;}
.y20{bottom:4.320593px;}
.y77{bottom:4.320603px;}
.y24{bottom:4.320613px;}
.y27{bottom:4.320622px;}
.y2a{bottom:4.320630px;}
.y2d{bottom:4.320638px;}
.y2f{bottom:4.320647px;}
.y32{bottom:4.320655px;}
.y35{bottom:4.320663px;}
.y37{bottom:4.320671px;}
.y3a{bottom:4.320680px;}
.y3c{bottom:4.320688px;}
.y3f{bottom:4.320696px;}
.y42{bottom:4.320705px;}
.y44{bottom:4.320713px;}
.y46{bottom:4.320721px;}
.y48{bottom:4.320729px;}
.y4b{bottom:4.320738px;}
.y4d{bottom:4.320746px;}
.y50{bottom:4.320754px;}
.y53{bottom:4.320763px;}
.y56{bottom:4.320771px;}
.y3{bottom:4.680479px;}
.y69{bottom:157.441437px;}
.y68{bottom:177.421429px;}
.y66{bottom:191.100600px;}
.y65{bottom:194.701422px;}
.y63{bottom:208.380600px;}
.y62{bottom:211.981415px;}
.y60{bottom:225.660600px;}
.y5f{bottom:229.261408px;}
.y5d{bottom:242.940600px;}
.y5c{bottom:246.541401px;}
.y5a{bottom:260.040600px;}
.y59{bottom:263.641395px;}
.y58{bottom:281.641387px;}
.y57{bottom:302.341379px;}
.y55{bottom:318.720600px;}
.y54{bottom:323.041371px;}
.y52{bottom:339.420600px;}
.y51{bottom:343.741363px;}
.y4f{bottom:360.120600px;}
.y4e{bottom:364.441354px;}
.y4c{bottom:380.820600px;}
.y7b{bottom:385.141346px;}
.y4a{bottom:401.520600px;}
.y49{bottom:405.841338px;}
.y47{bottom:422.220600px;}
.y7a{bottom:426.541329px;}
.y45{bottom:442.920600px;}
.y43{bottom:463.620600px;}
.y7e{bottom:467.941313px;}
.y41{bottom:484.320600px;}
.y40{bottom:488.641305px;}
.y3e{bottom:505.020600px;}
.y3d{bottom:509.341296px;}
.y3b{bottom:525.720600px;}
.y79{bottom:530.041288px;}
.y39{bottom:546.420600px;}
.y38{bottom:550.741280px;}
.y36{bottom:567.120600px;}
.y7d{bottom:571.441271px;}
.y34{bottom:587.820600px;}
.y33{bottom:592.141263px;}
.y31{bottom:608.520600px;}
.y30{bottom:612.841255px;}
.y2e{bottom:629.220600px;}
.y78{bottom:633.541247px;}
.y2c{bottom:649.920600px;}
.y2b{bottom:654.241238px;}
.y29{bottom:670.620600px;}
.y28{bottom:674.941230px;}
.y26{bottom:691.140600px;}
.y25{bottom:695.461222px;}
.y23{bottom:712.380600px;}
.y22{bottom:716.701213px;}
.y75{bottom:733.621207px;}
.y76{bottom:738.300600px;}
.y21{bottom:742.621203px;}
.y74{bottom:753.241199px;}
.y1f{bottom:763.860600px;}
.y1e{bottom:768.181193px;}
.y1c{bottom:784.560600px;}
.y1b{bottom:788.881184px;}
.y19{bottom:805.260600px;}
.y18{bottom:809.581176px;}
.y16{bottom:825.960600px;}
.y15{bottom:830.281168px;}
.y13{bottom:846.660600px;}
.y73{bottom:850.981160px;}
.y11{bottom:867.360600px;}
.y72{bottom:871.681151px;}
.yf{bottom:888.060600px;}
.ye{bottom:892.381143px;}
.y71{bottom:923.341131px;}
.yc{bottom:939.720600px;}
.y70{bottom:943.321123px;}
.yb{bottom:950.161120px;}
.y9{bottom:957.000600px;}
.y7c{bottom:960.601116px;}
.y8{bottom:967.441113px;}
.y6f{bottom:986.881105px;}
.y6{bottom:994.980600px;}
.y6d{bottom:999.301100px;}
.y6e{bottom:1007.581097px;}
.y4{bottom:1015.680600px;}
.y6b{bottom:1020.001092px;}
.y6c{bottom:1028.281089px;}
.y2{bottom:1048.260600px;}
.y6a{bottom:1052.941079px;}
.y1{bottom:1084.621066px;}
.h6{height:16.920000px;}
.h3{height:20.520000px;}
.h2{height:23.940000px;}
.h5{height:26.593909px;}
.ha{height:32.996147px;}
.hb{height:35.719087px;}
.h9{height:40.816064px;}
.h7{height:40.875824px;}
.hc{height:41.294143px;}
.h4{height:49.247980px;}
.h8{height:50.308574px;}
.h1{height:58.209817px;}
.h0{height:1263.000000px;}
.w30{width:0.900000px;}
.w14{width:3.780000px;}
.w51{width:3.960000px;}
.w15{width:7.740000px;}
.w5b{width:8.100000px;}
.w3f{width:8.280000px;}
.w55{width:9.360000px;}
.w2e{width:10.080000px;}
.w27{width:12.240000px;}
.w10{width:12.600000px;}
.w38{width:13.680000px;}
.w3{width:14.760000px;}
.w3d{width:16.740000px;}
.w2b{width:17.640000px;}
.w58{width:18.540000px;}
.w5e{width:18.900000px;}
.w25{width:21.240000px;}
.w18{width:22.320000px;}
.wb{width:24.120000px;}
.w59{width:27.360000px;}
.w2c{width:28.260000px;}
.w4e{width:28.620000px;}
.w62{width:29.880000px;}
.w1d{width:32.400000px;}
.w13{width:32.580000px;}
.we{width:33.840000px;}
.w54{width:34.380000px;}
.w37{width:34.560000px;}
.w1a{width:36.900000px;}
.w53{width:37.980000px;}
.w45{width:39.420000px;}
.w5a{width:39.780000px;}
.w4d{width:40.140000px;}
.w47{width:40.320000px;}
.w2{width:42.300000px;}
.w12{width:43.020000px;}
.w21{width:50.580000px;}
.wa{width:51.480000px;}
.w44{width:52.560000px;}
.w16{width:53.820000px;}
.w17{width:54.000000px;}
.wd{width:57.600000px;}
.w5f{width:58.680000px;}
.w24{width:59.220000px;}
.w1{width:59.400000px;}
.w5d{width:61.200000px;}
.w61{width:64.980000px;}
.w1e{width:69.660000px;}
.w4c{width:75.420000px;}
.w1b{width:79.380000px;}
.w23{width:79.560000px;}
.w5{width:79.920000px;}
.w3a{width:81.000000px;}
.w4a{width:88.020000px;}
.w6{width:89.460000px;}
.w64{width:91.440000px;}
.w60{width:91.980000px;}
.w57{width:93.060000px;}
.w9{width:93.420000px;}
.w32{width:95.400000px;}
.w2a{width:96.300000px;}
.w4b{width:98.640000px;}
.wc{width:100.800000px;}
.w65{width:102.600000px;}
.w35{width:104.760000px;}
.w4{width:104.940000px;}
.w33{width:106.920000px;}
.w8{width:108.900000px;}
.w36{width:112.320000px;}
.wf{width:122.580000px;}
.w63{width:123.480000px;}
.w5c{width:124.380000px;}
.w56{width:124.560000px;}
.w28{width:135.720000px;}
.w39{width:138.960000px;}
.w52{width:139.140000px;}
.w19{width:142.020000px;}
.w31{width:153.180000px;}
.w42{width:155.160000px;}
.w4f{width:158.220000px;}
.w3b{width:162.180000px;}
.w3c{width:162.360000px;}
.w11{width:162.900720px;}
.w50{width:164.520000px;}
.w41{width:167.580000px;}
.w29{width:169.560000px;}
.w7{width:195.120720px;}
.w40{width:203.760000px;}
.w34{width:210.060000px;}
.w26{width:218.340000px;}
.w2f{width:222.120000px;}
.w22{width:225.180000px;}
.w49{width:234.720000px;}
.w43{width:240.660000px;}
.w20{width:268.380000px;}
.w3e{width:268.920000px;}
.w48{width:274.500000px;}
.w46{width:283.320000px;}
.w2d{width:284.040000px;}
.w1c{width:306.900000px;}
.w1f{width:322.740000px;}
.w0{width:892.500000px;}
.x7e{left:-517.860801px;}
.x70{left:-431.640086px;}
.x6b{left:-427.680087px;}
.x89{left:-376.560108px;}
.x80{left:-365.760112px;}
.x75{left:-284.040145px;}
.x88{left:-274.500148px;}
.x7a{left:-210.060174px;}
.x82{left:-203.760177px;}
.x32{left:-195.120801px;}
.x72{left:-169.560190px;}
.x8d{left:-164.520192px;}
.x55{left:-162.900064px;}
.x84{left:-155.160196px;}
.x65{left:-142.020072px;}
.x8e{left:-139.140203px;}
.x4d{left:-122.580080px;}
.x7b{left:-112.320213px;}
.x37{left:-108.900086px;}
.x2b{left:-104.940087px;}
.x45{left:-100.800089px;}
.x79{left:-95.400220px;}
.x38{left:-93.420092px;}
.x2f{left:-89.460093px;}
.x8a{left:-88.020223px;}
.x7d{left:-81.000226px;}
.x2c{left:-79.920097px;}
.x1d{left:-59.400105px;}
.x48{left:-57.600106px;}
.x61{left:-53.820108px;}
.x85{left:-52.560237px;}
.x3b{left:-51.480109px;}
.x1f{left:-42.300112px;}
.x8c{left:-40.140242px;}
.x68{left:-36.900114px;}
.x4a{left:-33.840116px;}
.x58{left:-32.580116px;}
.x3e{left:-24.120119px;}
.x63{left:-22.320120px;}
.x6e{left:-21.240250px;}
.x73{left:-17.640251px;}
.x25{left:-14.760123px;}
.x7c{left:-13.680253px;}
.x52{left:-12.600124px;}
.x76{left:-10.080254px;}
.x5e{left:-7.740126px;}
.x59{left:-3.780128px;}
.x0{left:0.000000px;}
.xb{left:127.619280px;}
.x9{left:154.439938px;}
.x14{left:159.839280px;}
.x1a{left:180.720000px;}
.x12{left:200.160000px;}
.x5{left:212.939915px;}
.x6{left:217.800000px;}
.xf{left:221.940000px;}
.xc{left:229.320000px;}
.xa{left:233.280000px;}
.x7{left:237.959905px;}
.x8{left:242.820000px;}
.x1{left:254.699898px;}
.x2{left:263.340000px;}
.x10{left:265.140000px;}
.x18{left:268.920000px;}
.xd{left:271.260000px;}
.x3{left:280.440000px;}
.x1b{left:285.840000px;}
.x11{left:288.900000px;}
.x15{left:290.160000px;}
.xe{left:298.620000px;}
.x19{left:300.420000px;}
.x4{left:307.980000px;}
.x13{left:310.140000px;}
.x17{left:315.000000px;}
.x16{left:318.960000px;}
.x1c{left:322.740000px;}
.x42{left:327.059870px;}
.x41{left:331.019868px;}
.x57{left:339.479864px;}
.x43{left:347.579861px;}
.x3f{left:350.999860px;}
.x20{left:355.139858px;}
.x50{left:357.299857px;}
.x40{left:361.440000px;}
.x5f{left:363.059855px;}
.x60{left:370.980000px;}
.x33{left:381.959847px;}
.x26{left:392.399843px;}
.x66{left:398.159841px;}
.x3c{left:419.039832px;}
.x64{left:421.379831px;}
.x4e{left:427.499829px;}
.x4b{left:429.659828px;}
.x4c{left:435.420000px;}
.x21{left:438.839824px;}
.x5a{left:441.720000px;}
.x22{left:444.959822px;}
.x27{left:451.259819px;}
.x28{left:457.379817px;}
.x39{left:458.459817px;}
.x2a{left:459.899803px;}
.x53{left:461.699815px;}
.x3a{left:475.920000px;}
.x69{left:480.960000px;}
.x56{left:483.120000px;}
.x5b{left:490.320000px;}
.x6a{left:506.340000px;}
.x4f{left:533.160000px;}
.x35{left:541.079784px;}
.x46{left:544.859782px;}
.x30{left:547.919781px;}
.x49{left:550.080000px;}
.x62{left:557.460000px;}
.x5c{left:563.399775px;}
.x54{left:564.480000px;}
.x31{left:565.920000px;}
.x29{left:578.879768px;}
.x2d{left:591.119764px;}
.x5d{left:592.920000px;}
.x2e{left:594.900000px;}
.x23{left:601.919759px;}
.x67{left:605.340000px;}
.x24{left:608.039757px;}
.x34{left:624.240000px;}
.x3d{left:627.840000px;}
.x1e{left:629.639748px;}
.x51{left:631.800000px;}
.x36{left:633.240000px;}
.x44{left:635.400000px;}
.x47{left:644.580000px;}
.x78{left:653.579739px;}
.x6d{left:654.839738px;}
.x71{left:664.019734px;}
.x74{left:672.839731px;}
.x8b{left:675.359730px;}
.x6c{left:679.859728px;}
.x77{left:685.259726px;}
.x83{left:703.979718px;}
.x7f{left:706.679717px;}
.x87{left:710.459716px;}
.x81{left:720.899712px;}
.x86{left:737.459705px;}
.x6f{left:738.539705px;}
.x8f{left:748.079701px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.336457pt;}
.ls1{letter-spacing:2.137313pt;}
.ls0{letter-spacing:2.264935pt;}
.ls2{letter-spacing:2.776180pt;}
.ls3{letter-spacing:7.852957pt;}
.ws4{word-spacing:-42.111983pt;}
.ws0{word-spacing:-31.083124pt;}
.ws3{word-spacing:-29.899508pt;}
.ws1{word-spacing:-15.999994pt;}
.ws5{word-spacing:-13.616451pt;}
.ws2{word-spacing:-13.279995pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-2.011348pt;}
._0{margin-left:-1.062865pt;}
._1{width:1.579483pt;}
._3{width:3.129461pt;}
._7{width:4.033873pt;}
._2{width:5.189230pt;}
._8{width:7.009507pt;}
._9{width:8.072993pt;}
._4{width:9.433431pt;}
._6{width:10.390704pt;}
._e{width:11.489811pt;}
._f{width:12.398350pt;}
._10{width:13.797447pt;}
._d{width:14.778557pt;}
._c{width:16.990944pt;}
._11{width:18.583711pt;}
._b{width:20.321968pt;}
._a{width:21.337214pt;}
._12{width:22.334079pt;}
.fs2{font-size:34.559986pt;}
.fs4{font-size:42.879983pt;}
.fs5{font-size:45.439982pt;}
.fs3{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs0{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.200458pt;}
.yd{bottom:3.200465pt;}
.y5b{bottom:3.200706pt;}
.y5e{bottom:3.200712pt;}
.y61{bottom:3.200718pt;}
.y64{bottom:3.200725pt;}
.y67{bottom:3.200731pt;}
.y5{bottom:3.840437pt;}
.y7{bottom:3.840445pt;}
.y10{bottom:3.840483pt;}
.y12{bottom:3.840490pt;}
.y14{bottom:3.840497pt;}
.y17{bottom:3.840505pt;}
.y1a{bottom:3.840512pt;}
.y1d{bottom:3.840520pt;}
.y20{bottom:3.840527pt;}
.y77{bottom:3.840536pt;}
.y24{bottom:3.840545pt;}
.y27{bottom:3.840553pt;}
.y2a{bottom:3.840560pt;}
.y2d{bottom:3.840567pt;}
.y2f{bottom:3.840575pt;}
.y32{bottom:3.840582pt;}
.y35{bottom:3.840589pt;}
.y37{bottom:3.840597pt;}
.y3a{bottom:3.840604pt;}
.y3c{bottom:3.840612pt;}
.y3f{bottom:3.840619pt;}
.y42{bottom:3.840626pt;}
.y44{bottom:3.840634pt;}
.y46{bottom:3.840641pt;}
.y48{bottom:3.840648pt;}
.y4b{bottom:3.840656pt;}
.y4d{bottom:3.840663pt;}
.y50{bottom:3.840670pt;}
.y53{bottom:3.840678pt;}
.y56{bottom:3.840685pt;}
.y3{bottom:4.160426pt;}
.y69{bottom:139.947944pt;}
.y68{bottom:157.707937pt;}
.y66{bottom:169.867200pt;}
.y65{bottom:173.067931pt;}
.y63{bottom:185.227200pt;}
.y62{bottom:188.427925pt;}
.y60{bottom:200.587200pt;}
.y5f{bottom:203.787918pt;}
.y5d{bottom:215.947200pt;}
.y5c{bottom:219.147912pt;}
.y5a{bottom:231.147200pt;}
.y59{bottom:234.347906pt;}
.y58{bottom:250.347900pt;}
.y57{bottom:268.747893pt;}
.y55{bottom:283.307200pt;}
.y54{bottom:287.147885pt;}
.y52{bottom:301.707200pt;}
.y51{bottom:305.547878pt;}
.y4f{bottom:320.107200pt;}
.y4e{bottom:323.947870pt;}
.y4c{bottom:338.507200pt;}
.y7b{bottom:342.347863pt;}
.y4a{bottom:356.907200pt;}
.y49{bottom:360.747856pt;}
.y47{bottom:375.307200pt;}
.y7a{bottom:379.147848pt;}
.y45{bottom:393.707200pt;}
.y43{bottom:412.107200pt;}
.y7e{bottom:415.947834pt;}
.y41{bottom:430.507200pt;}
.y40{bottom:434.347826pt;}
.y3e{bottom:448.907200pt;}
.y3d{bottom:452.747819pt;}
.y3b{bottom:467.307200pt;}
.y79{bottom:471.147812pt;}
.y39{bottom:485.707200pt;}
.y38{bottom:489.547804pt;}
.y36{bottom:504.107200pt;}
.y7d{bottom:507.947797pt;}
.y34{bottom:522.507200pt;}
.y33{bottom:526.347789pt;}
.y31{bottom:540.907200pt;}
.y30{bottom:544.747782pt;}
.y2e{bottom:559.307200pt;}
.y78{bottom:563.147775pt;}
.y2c{bottom:577.707200pt;}
.y2b{bottom:581.547767pt;}
.y29{bottom:596.107200pt;}
.y28{bottom:599.947760pt;}
.y26{bottom:614.347200pt;}
.y25{bottom:618.187753pt;}
.y23{bottom:633.227200pt;}
.y22{bottom:637.067745pt;}
.y75{bottom:652.107739pt;}
.y76{bottom:656.267200pt;}
.y21{bottom:660.107736pt;}
.y74{bottom:669.547732pt;}
.y1f{bottom:678.987200pt;}
.y1e{bottom:682.827727pt;}
.y1c{bottom:697.387200pt;}
.y1b{bottom:701.227720pt;}
.y19{bottom:715.787200pt;}
.y18{bottom:719.627712pt;}
.y16{bottom:734.187200pt;}
.y15{bottom:738.027705pt;}
.y13{bottom:752.587200pt;}
.y73{bottom:756.427697pt;}
.y11{bottom:770.987200pt;}
.y72{bottom:774.827690pt;}
.yf{bottom:789.387200pt;}
.ye{bottom:793.227683pt;}
.y71{bottom:820.747672pt;}
.yc{bottom:835.307200pt;}
.y70{bottom:838.507665pt;}
.yb{bottom:844.587662pt;}
.y9{bottom:850.667200pt;}
.y7c{bottom:853.867658pt;}
.y8{bottom:859.947656pt;}
.y6f{bottom:877.227649pt;}
.y6{bottom:884.427200pt;}
.y6d{bottom:888.267645pt;}
.y6e{bottom:895.627642pt;}
.y4{bottom:902.827200pt;}
.y6b{bottom:906.667637pt;}
.y6c{bottom:914.027634pt;}
.y2{bottom:931.787200pt;}
.y6a{bottom:935.947626pt;}
.y1{bottom:964.107614pt;}
.h6{height:15.040000pt;}
.h3{height:18.240000pt;}
.h2{height:21.280000pt;}
.h5{height:23.639031pt;}
.ha{height:29.329908pt;}
.hb{height:31.750300pt;}
.h9{height:36.280945pt;}
.h7{height:36.334065pt;}
.hc{height:36.705905pt;}
.h4{height:43.775982pt;}
.h8{height:44.718732pt;}
.h1{height:51.742059pt;}
.h0{height:1122.666667pt;}
.w30{width:0.800000pt;}
.w14{width:3.360000pt;}
.w51{width:3.520000pt;}
.w15{width:6.880000pt;}
.w5b{width:7.200000pt;}
.w3f{width:7.360000pt;}
.w55{width:8.320000pt;}
.w2e{width:8.960000pt;}
.w27{width:10.880000pt;}
.w10{width:11.200000pt;}
.w38{width:12.160000pt;}
.w3{width:13.120000pt;}
.w3d{width:14.880000pt;}
.w2b{width:15.680000pt;}
.w58{width:16.480000pt;}
.w5e{width:16.800000pt;}
.w25{width:18.880000pt;}
.w18{width:19.840000pt;}
.wb{width:21.440000pt;}
.w59{width:24.320000pt;}
.w2c{width:25.120000pt;}
.w4e{width:25.440000pt;}
.w62{width:26.560000pt;}
.w1d{width:28.800000pt;}
.w13{width:28.960000pt;}
.we{width:30.080000pt;}
.w54{width:30.560000pt;}
.w37{width:30.720000pt;}
.w1a{width:32.800000pt;}
.w53{width:33.760000pt;}
.w45{width:35.040000pt;}
.w5a{width:35.360000pt;}
.w4d{width:35.680000pt;}
.w47{width:35.840000pt;}
.w2{width:37.600000pt;}
.w12{width:38.240000pt;}
.w21{width:44.960000pt;}
.wa{width:45.760000pt;}
.w44{width:46.720000pt;}
.w16{width:47.840000pt;}
.w17{width:48.000000pt;}
.wd{width:51.200000pt;}
.w5f{width:52.160000pt;}
.w24{width:52.640000pt;}
.w1{width:52.800000pt;}
.w5d{width:54.400000pt;}
.w61{width:57.760000pt;}
.w1e{width:61.920000pt;}
.w4c{width:67.040000pt;}
.w1b{width:70.560000pt;}
.w23{width:70.720000pt;}
.w5{width:71.040000pt;}
.w3a{width:72.000000pt;}
.w4a{width:78.240000pt;}
.w6{width:79.520000pt;}
.w64{width:81.280000pt;}
.w60{width:81.760000pt;}
.w57{width:82.720000pt;}
.w9{width:83.040000pt;}
.w32{width:84.800000pt;}
.w2a{width:85.600000pt;}
.w4b{width:87.680000pt;}
.wc{width:89.600000pt;}
.w65{width:91.200000pt;}
.w35{width:93.120000pt;}
.w4{width:93.280000pt;}
.w33{width:95.040000pt;}
.w8{width:96.800000pt;}
.w36{width:99.840000pt;}
.wf{width:108.960000pt;}
.w63{width:109.760000pt;}
.w5c{width:110.560000pt;}
.w56{width:110.720000pt;}
.w28{width:120.640000pt;}
.w39{width:123.520000pt;}
.w52{width:123.680000pt;}
.w19{width:126.240000pt;}
.w31{width:136.160000pt;}
.w42{width:137.920000pt;}
.w4f{width:140.640000pt;}
.w3b{width:144.160000pt;}
.w3c{width:144.320000pt;}
.w11{width:144.800640pt;}
.w50{width:146.240000pt;}
.w41{width:148.960000pt;}
.w29{width:150.720000pt;}
.w7{width:173.440640pt;}
.w40{width:181.120000pt;}
.w34{width:186.720000pt;}
.w26{width:194.080000pt;}
.w2f{width:197.440000pt;}
.w22{width:200.160000pt;}
.w49{width:208.640000pt;}
.w43{width:213.920000pt;}
.w20{width:238.560000pt;}
.w3e{width:239.040000pt;}
.w48{width:244.000000pt;}
.w46{width:251.840000pt;}
.w2d{width:252.480000pt;}
.w1c{width:272.800000pt;}
.w1f{width:286.880000pt;}
.w0{width:793.333333pt;}
.x7e{left:-460.320712pt;}
.x70{left:-383.680076pt;}
.x6b{left:-380.160077pt;}
.x89{left:-334.720096pt;}
.x80{left:-325.120099pt;}
.x75{left:-252.480129pt;}
.x88{left:-244.000132pt;}
.x7a{left:-186.720155pt;}
.x82{left:-181.120157pt;}
.x32{left:-173.440712pt;}
.x72{left:-150.720169pt;}
.x8d{left:-146.240171pt;}
.x55{left:-144.800057pt;}
.x84{left:-137.920174pt;}
.x65{left:-126.240064pt;}
.x8e{left:-123.680180pt;}
.x4d{left:-108.960071pt;}
.x7b{left:-99.840190pt;}
.x37{left:-96.800076pt;}
.x2b{left:-93.280077pt;}
.x45{left:-89.600079pt;}
.x79{left:-84.800196pt;}
.x38{left:-83.040082pt;}
.x2f{left:-79.520083pt;}
.x8a{left:-78.240198pt;}
.x7d{left:-72.000201pt;}
.x2c{left:-71.040086pt;}
.x1d{left:-52.800094pt;}
.x48{left:-51.200094pt;}
.x61{left:-47.840096pt;}
.x85{left:-46.720211pt;}
.x3b{left:-45.760096pt;}
.x1f{left:-37.600100pt;}
.x8c{left:-35.680215pt;}
.x68{left:-32.800102pt;}
.x4a{left:-30.080103pt;}
.x58{left:-28.960103pt;}
.x3e{left:-21.440106pt;}
.x63{left:-19.840107pt;}
.x6e{left:-18.880222pt;}
.x73{left:-15.680223pt;}
.x25{left:-13.120110pt;}
.x7c{left:-12.160225pt;}
.x52{left:-11.200110pt;}
.x76{left:-8.960226pt;}
.x5e{left:-6.880112pt;}
.x59{left:-3.360113pt;}
.x0{left:0.000000pt;}
.xb{left:113.439360pt;}
.x9{left:137.279945pt;}
.x14{left:142.079360pt;}
.x1a{left:160.640000pt;}
.x12{left:177.920000pt;}
.x5{left:189.279924pt;}
.x6{left:193.600000pt;}
.xf{left:197.280000pt;}
.xc{left:203.840000pt;}
.xa{left:207.360000pt;}
.x7{left:211.519915pt;}
.x8{left:215.840000pt;}
.x1{left:226.399909pt;}
.x2{left:234.080000pt;}
.x10{left:235.680000pt;}
.x18{left:239.040000pt;}
.xd{left:241.120000pt;}
.x3{left:249.280000pt;}
.x1b{left:254.080000pt;}
.x11{left:256.800000pt;}
.x15{left:257.920000pt;}
.xe{left:265.440000pt;}
.x19{left:267.040000pt;}
.x4{left:273.760000pt;}
.x13{left:275.680000pt;}
.x17{left:280.000000pt;}
.x16{left:283.520000pt;}
.x1c{left:286.880000pt;}
.x42{left:290.719885pt;}
.x41{left:294.239882pt;}
.x57{left:301.759879pt;}
.x43{left:308.959876pt;}
.x3f{left:311.999875pt;}
.x20{left:315.679874pt;}
.x50{left:317.599873pt;}
.x40{left:321.280000pt;}
.x5f{left:322.719871pt;}
.x60{left:329.760000pt;}
.x33{left:339.519864pt;}
.x26{left:348.799860pt;}
.x66{left:353.919858pt;}
.x3c{left:372.479851pt;}
.x64{left:374.559850pt;}
.x4e{left:379.999848pt;}
.x4b{left:381.919847pt;}
.x4c{left:387.040000pt;}
.x21{left:390.079844pt;}
.x5a{left:392.640000pt;}
.x22{left:395.519842pt;}
.x27{left:401.119840pt;}
.x28{left:406.559837pt;}
.x39{left:407.519837pt;}
.x2a{left:408.799825pt;}
.x53{left:410.399836pt;}
.x3a{left:423.040000pt;}
.x69{left:427.520000pt;}
.x56{left:429.440000pt;}
.x5b{left:435.840000pt;}
.x6a{left:450.080000pt;}
.x4f{left:473.920000pt;}
.x35{left:480.959808pt;}
.x46{left:484.319806pt;}
.x30{left:487.039805pt;}
.x49{left:488.960000pt;}
.x62{left:495.520000pt;}
.x5c{left:500.799800pt;}
.x54{left:501.760000pt;}
.x31{left:503.040000pt;}
.x29{left:514.559794pt;}
.x2d{left:525.439790pt;}
.x5d{left:527.040000pt;}
.x2e{left:528.800000pt;}
.x23{left:535.039786pt;}
.x67{left:538.080000pt;}
.x24{left:540.479784pt;}
.x34{left:554.880000pt;}
.x3d{left:558.080000pt;}
.x1e{left:559.679776pt;}
.x51{left:561.600000pt;}
.x36{left:562.880000pt;}
.x44{left:564.800000pt;}
.x47{left:572.960000pt;}
.x78{left:580.959768pt;}
.x6d{left:582.079767pt;}
.x71{left:590.239764pt;}
.x74{left:598.079761pt;}
.x8b{left:600.319760pt;}
.x6c{left:604.319758pt;}
.x77{left:609.119756pt;}
.x83{left:625.759750pt;}
.x7f{left:628.159749pt;}
.x87{left:631.519747pt;}
.x81{left:640.799744pt;}
.x86{left:655.519738pt;}
.x6f{left:656.479737pt;}
.x8f{left:664.959734pt;}
}




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