
    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_2a2a907653f9524519eb95c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_e739795362932fff978a4926.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_3dfc19ffca5304bc3f47f9c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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;}
.m4{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);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,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);}
.m2{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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.182640px;}
.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:-16.271993px;}
.ws4{word-spacing:-13.505755px;}
.ws1{word-spacing:-10.902236px;}
.ws3{word-spacing:-8.786876px;}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-9.912399px;}
._13{margin-left:-3.957017px;}
._9{margin-left:-2.495847px;}
._7{margin-left:-1.104912px;}
._0{width:1.077207px;}
._e{width:2.198762px;}
._d{width:3.507128px;}
._1{width:4.649369px;}
._2{width:5.870271px;}
._f{width:7.274669px;}
._c{width:8.286660px;}
._15{width:9.453315px;}
._10{width:10.619252px;}
._11{width:11.661456px;}
._14{width:13.640582px;}
._12{width:15.162499px;}
._8{width:17.348555px;}
._4{width:18.741088px;}
._3{width:19.918998px;}
._1d{width:21.005626px;}
._1c{width:22.184361px;}
._18{width:23.260895px;}
._b{width:24.386813px;}
._a{width:25.653095px;}
._1b{width:26.910136px;}
._19{width:28.384802px;}
._17{width:29.417258px;}
._16{width:30.597885px;}
._22{width:31.670723px;}
._1f{width:35.587440px;}
._1e{width:36.798435px;}
._20{width:39.963623px;}
._21{width:41.004113px;}
._6{width:43.050609px;}
._5{width:44.129054px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs2{font-size:48.239981px;}
.fs4{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y93{bottom:4.858945px;}
.y96{bottom:4.858972px;}
.y99{bottom:4.858998px;}
.y9c{bottom:4.859025px;}
.y9e{bottom:4.859034px;}
.ya0{bottom:4.859044px;}
.ya4{bottom:4.859085px;}
.ya6{bottom:4.859094px;}
.ya9{bottom:4.859104px;}
.yab{bottom:4.859113px;}
.yae{bottom:4.859139px;}
.yb1{bottom:4.859166px;}
.yb4{bottom:4.859192px;}
.yb6{bottom:4.859207px;}
.yb8{bottom:4.859216px;}
.ybc{bottom:4.859240px;}
.ybe{bottom:4.859249px;}
.yc2{bottom:4.859290px;}
.yc4{bottom:4.859304px;}
.yc6{bottom:4.859314px;}
.yc8{bottom:4.859323px;}
.ycb{bottom:4.859693px;}
.ycd{bottom:4.860002px;}
.yd0{bottom:4.860012px;}
.y2{bottom:57.900277px;}
.y1{bottom:78.060269px;}
.y91{bottom:110.459956px;}
.y68{bottom:110.460256px;}
.ycf{bottom:115.320240px;}
.y6e{bottom:115.680254px;}
.y58{bottom:120.179952px;}
.yce{bottom:120.180252px;}
.y74{bottom:128.819948px;}
.y67{bottom:128.820248px;}
.y7c{bottom:129.360248px;}
.y7a{bottom:134.040246px;}
.ycc{bottom:139.080240px;}
.y57{bottom:143.939942px;}
.y73{bottom:147.179941px;}
.y66{bottom:147.180241px;}
.y65{bottom:152.399939px;}
.y2c{bottom:155.639938px;}
.yca{bottom:162.840240px;}
.y64{bottom:165.359934px;}
.y78{bottom:166.079934px;}
.y56{bottom:167.519933px;}
.yc9{bottom:167.699933px;}
.y6d{bottom:170.579932px;}
.y2b{bottom:179.399928px;}
.y63{bottom:183.719927px;}
.y6c{bottom:184.259926px;}
.yc7{bottom:186.420600px;}
.y72{bottom:188.939924px;}
.y55{bottom:191.279923px;}
.y62{bottom:202.079919px;}
.y71{bottom:202.619919px;}
.y2a{bottom:202.979919px;}
.y61{bottom:207.299917px;}
.yc5{bottom:210.180600px;}
.y54{bottom:215.039914px;}
.y60{bottom:220.439912px;}
.y29{bottom:226.739909px;}
.yc3{bottom:233.940600px;}
.y5f{bottom:238.619905px;}
.y53{bottom:238.799904px;}
.y28{bottom:250.499900px;}
.y5e{bottom:256.979897px;}
.y90{bottom:261.659895px;}
.y5d{bottom:262.199895px;}
.y52{bottom:262.379895px;}
.yc1{bottom:269.580600px;}
.y27{bottom:274.079890px;}
.y5c{bottom:275.879890px;}
.y51{bottom:286.139886px;}
.y79{bottom:292.079883px;}
.y8f{bottom:297.299881px;}
.y26{bottom:297.839881px;}
.y50{bottom:309.899876px;}
.yc0{bottom:313.499875px;}
.y6b{bottom:315.839874px;}
.y25{bottom:321.599871px;}
.y8e{bottom:332.939867px;}
.y4f{bottom:333.659867px;}
.y24{bottom:345.359862px;}
.ybf{bottom:352.739859px;}
.y8d{bottom:356.699857px;}
.y4e{bottom:357.239857px;}
.y23{bottom:368.939852px;}
.ybd{bottom:371.460600px;}
.y4d{bottom:380.999848px;}
.y8c{bottom:392.519843px;}
.y22{bottom:392.699843px;}
.ybb{bottom:395.220600px;}
.yba{bottom:400.079840px;}
.y4c{bottom:404.759838px;}
.y6a{bottom:410.699836px;}
.y8b{bottom:416.099834px;}
.y21{bottom:416.459833px;}
.y4b{bottom:428.519829px;}
.yb9{bottom:435.719826px;}
.y8a{bottom:439.859824px;}
.y20{bottom:440.219824px;}
.y4a{bottom:452.099819px;}
.yb7{bottom:454.620600px;}
.y89{bottom:463.619815px;}
.y1f{bottom:463.799814px;}
.y49{bottom:475.859810px;}
.yb5{bottom:478.380600px;}
.y70{bottom:481.799807px;}
.y88{bottom:487.199805px;}
.y1e{bottom:487.559805px;}
.y48{bottom:499.619800px;}
.y5b{bottom:505.559798px;}
.y87{bottom:510.959796px;}
.y1d{bottom:511.319795px;}
.yb3{bottom:514.020600px;}
.y47{bottom:523.199791px;}
.y1c{bottom:535.079786px;}
.y86{bottom:546.779781px;}
.y46{bottom:546.959781px;}
.y5a{bottom:552.899779px;}
.y1b{bottom:558.659777px;}
.yb2{bottom:561.359775px;}
.y85{bottom:570.359772px;}
.y45{bottom:570.719772px;}
.yb0{bottom:580.260600px;}
.y1a{bottom:582.419767px;}
.y84{bottom:594.119762px;}
.y44{bottom:594.479762px;}
.y19{bottom:606.179758px;}
.y83{bottom:617.879753px;}
.y43{bottom:618.059753px;}
.yaf{bottom:627.599749px;}
.y18{bottom:629.759748px;}
.y82{bottom:641.639743px;}
.y42{bottom:641.819743px;}
.yad{bottom:646.500600px;}
.y17{bottom:653.519739px;}
.y81{bottom:665.219734px;}
.y41{bottom:665.579734px;}
.y16{bottom:677.279729px;}
.y80{bottom:688.979724px;}
.y40{bottom:689.339724px;}
.yac{bottom:693.659723px;}
.y15{bottom:701.039720px;}
.yaa{bottom:712.560600px;}
.y7f{bottom:712.739715px;}
.y3f{bottom:712.919715px;}
.y59{bottom:718.859712px;}
.y14{bottom:724.619710px;}
.ya8{bottom:736.320600px;}
.y7e{bottom:736.499705px;}
.y3e{bottom:736.679705px;}
.ya7{bottom:741.179704px;}
.y13{bottom:748.379701px;}
.ya5{bottom:760.080600px;}
.y3d{bottom:760.439696px;}
.y12{bottom:772.139691px;}
.ya3{bottom:783.660600px;}
.y3c{bottom:784.199686px;}
.y76{bottom:790.139684px;}
.y11{bottom:795.899682px;}
.y3b{bottom:807.779677px;}
.y7b{bottom:813.719675px;}
.y10{bottom:819.479672px;}
.ya2{bottom:827.759669px;}
.y3a{bottom:831.539667px;}
.yf{bottom:843.239663px;}
.y39{bottom:855.299658px;}
.ya1{bottom:866.819653px;}
.ye{bottom:866.999653px;}
.y38{bottom:879.059648px;}
.y9f{bottom:885.540600px;}
.yd{bottom:890.759644px;}
.y37{bottom:902.639639px;}
.y77{bottom:908.579637px;}
.y9d{bottom:909.300600px;}
.yc{bottom:914.339634px;}
.y36{bottom:926.399629px;}
.y9b{bottom:933.060600px;}
.yb{bottom:938.099625px;}
.y34{bottom:950.159620px;}
.y35{bottom:956.099618px;}
.ya{bottom:961.859615px;}
.y32{bottom:973.739611px;}
.y33{bottom:979.679608px;}
.y9a{bottom:980.399608px;}
.y9{bottom:985.619606px;}
.y31{bottom:997.499601px;}
.y98{bottom:999.300600px;}
.y6f{bottom:1003.439599px;}
.y8{bottom:1009.199596px;}
.y30{bottom:1021.259591px;}
.y7{bottom:1032.959587px;}
.y2f{bottom:1045.019582px;}
.y97{bottom:1046.459581px;}
.yd2{bottom:1049.879580px;}
.y69{bottom:1050.959580px;}
.y6{bottom:1056.719577px;}
.y95{bottom:1065.360600px;}
.y2e{bottom:1068.599573px;}
.y5{bottom:1080.299568px;}
.yd1{bottom:1088.939564px;}
.y2d{bottom:1092.359563px;}
.y94{bottom:1112.699555px;}
.y4{bottom:1116.119554px;}
.y75{bottom:1122.059551px;}
.y92{bottom:1131.600600px;}
.y3{bottom:1139.879544px;}
.y7d{bottom:1145.819542px;}
.h8{height:21.780000px;}
.h9{height:21.960000px;}
.h6{height:32.064597px;}
.h4{height:39.783851px;}
.h7{height:49.284472px;}
.h5{height:49.289043px;}
.h2{height:50.062480px;}
.h1{height:54.628572px;}
.h3{height:59.378882px;}
.h0{height:1263.000000px;}
.w16{width:1.620000px;}
.w2{width:1.800000px;}
.w12{width:2.160000px;}
.wb{width:5.400000px;}
.w10{width:10.620000px;}
.w14{width:10.800000px;}
.w7{width:18.540000px;}
.w1{width:19.620000px;}
.w4{width:20.340000px;}
.w19{width:64.080000px;}
.w13{width:99.720000px;}
.wa{width:121.140000px;}
.w17{width:211.860000px;}
.wc{width:212.940000px;}
.w9{width:262.800000px;}
.w18{width:286.560000px;}
.w5{width:298.620000px;}
.w6{width:303.660000px;}
.we{width:315.180000px;}
.w11{width:404.460000px;}
.w1a{width:558.000000px;}
.wf{width:567.720000px;}
.wd{width:602.280000px;}
.w3{width:603.000000px;}
.w8{width:604.080000px;}
.w15{width:622.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:127.620716px;}
.x13{left:132.479947px;}
.x3{left:133.559947px;}
.x1c{left:135.899946px;}
.x22{left:137.339945px;}
.x1d{left:140.759944px;}
.x38{left:142.200000px;}
.xb{left:145.979942px;}
.x30{left:152.280000px;}
.x2d{left:153.360000px;}
.xc{left:154.619938px;}
.x31{left:160.200000px;}
.x2e{left:161.280000px;}
.x18{left:175.499930px;}
.x19{left:181.619927px;}
.x3c{left:206.280000px;}
.x25{left:212.219915px;}
.x26{left:224.459910px;}
.x39{left:241.920000px;}
.xd{left:266.399893px;}
.x4{left:267.478834px;}
.xe{left:272.519891px;}
.x37{left:359.820000px;}
.x14{left:417.599833px;}
.x15{left:423.719831px;}
.x32{left:424.800000px;}
.x1e{left:427.319829px;}
.x6{left:431.818201px;}
.x1f{left:433.439827px;}
.x2b{left:438.119825px;}
.x1{left:442.259823px;}
.x35{left:449.100000px;}
.x2f{left:460.620000px;}
.x23{left:478.259809px;}
.x29{left:486.179806px;}
.x24{left:490.499804px;}
.x2a{left:498.419801px;}
.x11{left:509.039796px;}
.x5{left:512.458113px;}
.x12{left:515.159794px;}
.x27{left:522.539791px;}
.x28{left:534.779786px;}
.x33{left:545.940000px;}
.x34{left:551.340000px;}
.x3b{left:552.420000px;}
.x20{left:562.499775px;}
.xf{left:567.539773px;}
.x10{left:573.659771px;}
.x21{left:574.739770px;}
.x7{left:584.637923px;}
.x9{left:641.699743px;}
.xa{left:651.959739px;}
.x16{left:658.079737px;}
.x2c{left:659.339736px;}
.x17{left:664.199734px;}
.x1a{left:672.119731px;}
.x1b{left:678.239729px;}
.x36{left:729.720000px;}
.x3a{left:762.660000px;}
.x8{left:765.357663px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.162347pt;}
.ws2{word-spacing:-14.463994pt;}
.ws4{word-spacing:-12.005115pt;}
.ws1{word-spacing:-9.690876pt;}
.ws3{word-spacing:-7.810557pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-8.811022pt;}
._13{margin-left:-3.517348pt;}
._9{margin-left:-2.218531pt;}
._7{margin-left:-0.982144pt;}
._0{width:0.957518pt;}
._e{width:1.954455pt;}
._d{width:3.117447pt;}
._1{width:4.132772pt;}
._2{width:5.218018pt;}
._f{width:6.466372pt;}
._c{width:7.365920pt;}
._15{width:8.402947pt;}
._10{width:9.439335pt;}
._11{width:10.365738pt;}
._14{width:12.124962pt;}
._12{width:13.477777pt;}
._8{width:15.420938pt;}
._4{width:16.658745pt;}
._3{width:17.705776pt;}
._1d{width:18.671667pt;}
._1c{width:19.719432pt;}
._18{width:20.676351pt;}
._b{width:21.677167pt;}
._a{width:22.802751pt;}
._1b{width:23.920121pt;}
._19{width:25.230935pt;}
._17{width:26.148674pt;}
._16{width:27.198120pt;}
._22{width:28.151753pt;}
._1f{width:31.633280pt;}
._1e{width:32.709720pt;}
._20{width:35.523220pt;}
._21{width:36.448101pt;}
._6{width:38.267208pt;}
._5{width:39.225825pt;}
.fs3{font-size:34.559986pt;}
.fs2{font-size:42.879983pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:4.319063pt;}
.y96{bottom:4.319086pt;}
.y99{bottom:4.319110pt;}
.y9c{bottom:4.319133pt;}
.y9e{bottom:4.319142pt;}
.ya0{bottom:4.319150pt;}
.ya4{bottom:4.319186pt;}
.ya6{bottom:4.319195pt;}
.ya9{bottom:4.319203pt;}
.yab{bottom:4.319212pt;}
.yae{bottom:4.319235pt;}
.yb1{bottom:4.319259pt;}
.yb4{bottom:4.319282pt;}
.yb6{bottom:4.319295pt;}
.yb8{bottom:4.319303pt;}
.ybc{bottom:4.319324pt;}
.ybe{bottom:4.319333pt;}
.yc2{bottom:4.319369pt;}
.yc4{bottom:4.319382pt;}
.yc6{bottom:4.319390pt;}
.yc8{bottom:4.319399pt;}
.ycb{bottom:4.319727pt;}
.ycd{bottom:4.320002pt;}
.yd0{bottom:4.320011pt;}
.y2{bottom:51.466913pt;}
.y1{bottom:69.386906pt;}
.y91{bottom:98.186627pt;}
.y68{bottom:98.186894pt;}
.ycf{bottom:102.506880pt;}
.y6e{bottom:102.826892pt;}
.y58{bottom:106.826624pt;}
.yce{bottom:106.826891pt;}
.y74{bottom:114.506621pt;}
.y67{bottom:114.506888pt;}
.y7c{bottom:114.986887pt;}
.y7a{bottom:119.146886pt;}
.ycc{bottom:123.626880pt;}
.y57{bottom:127.946615pt;}
.y73{bottom:130.826614pt;}
.y66{bottom:130.826881pt;}
.y65{bottom:135.466612pt;}
.y2c{bottom:138.346611pt;}
.yca{bottom:144.746880pt;}
.y64{bottom:146.986608pt;}
.y78{bottom:147.626608pt;}
.y56{bottom:148.906607pt;}
.yc9{bottom:149.066607pt;}
.y6d{bottom:151.626606pt;}
.y2b{bottom:159.466603pt;}
.y63{bottom:163.306601pt;}
.y6c{bottom:163.786601pt;}
.yc7{bottom:165.707200pt;}
.y72{bottom:167.946599pt;}
.y55{bottom:170.026599pt;}
.y62{bottom:179.626595pt;}
.y71{bottom:180.106595pt;}
.y2a{bottom:180.426594pt;}
.y61{bottom:184.266593pt;}
.yc5{bottom:186.827200pt;}
.y54{bottom:191.146590pt;}
.y60{bottom:195.946588pt;}
.y29{bottom:201.546586pt;}
.yc3{bottom:207.947200pt;}
.y5f{bottom:212.106582pt;}
.y53{bottom:212.266582pt;}
.y28{bottom:222.666578pt;}
.y5e{bottom:228.426575pt;}
.y90{bottom:232.586574pt;}
.y5d{bottom:233.066573pt;}
.y52{bottom:233.226573pt;}
.yc1{bottom:239.627200pt;}
.y27{bottom:243.626569pt;}
.y5c{bottom:245.226569pt;}
.y51{bottom:254.346565pt;}
.y79{bottom:259.626563pt;}
.y8f{bottom:264.266561pt;}
.y26{bottom:264.746561pt;}
.y50{bottom:275.466556pt;}
.yc0{bottom:278.666555pt;}
.y6b{bottom:280.746554pt;}
.y25{bottom:285.866552pt;}
.y8e{bottom:295.946548pt;}
.y4f{bottom:296.586548pt;}
.y24{bottom:306.986544pt;}
.ybf{bottom:313.546541pt;}
.y8d{bottom:317.066540pt;}
.y4e{bottom:317.546540pt;}
.y23{bottom:327.946535pt;}
.ybd{bottom:330.187200pt;}
.y4d{bottom:338.666531pt;}
.y8c{bottom:348.906527pt;}
.y22{bottom:349.066527pt;}
.ybb{bottom:351.307200pt;}
.yba{bottom:355.626524pt;}
.y4c{bottom:359.786523pt;}
.y6a{bottom:365.066521pt;}
.y8b{bottom:369.866519pt;}
.y21{bottom:370.186519pt;}
.y4b{bottom:380.906514pt;}
.yb9{bottom:387.306512pt;}
.y8a{bottom:390.986510pt;}
.y20{bottom:391.306510pt;}
.y4a{bottom:401.866506pt;}
.yb7{bottom:404.107200pt;}
.y89{bottom:412.106502pt;}
.y1f{bottom:412.266502pt;}
.y49{bottom:422.986497pt;}
.yb5{bottom:425.227200pt;}
.y70{bottom:428.266495pt;}
.y88{bottom:433.066493pt;}
.y1e{bottom:433.386493pt;}
.y48{bottom:444.106489pt;}
.y5b{bottom:449.386487pt;}
.y87{bottom:454.186485pt;}
.y1d{bottom:454.506485pt;}
.yb3{bottom:456.907200pt;}
.y47{bottom:465.066481pt;}
.y1c{bottom:475.626476pt;}
.y86{bottom:486.026472pt;}
.y46{bottom:486.186472pt;}
.y5a{bottom:491.466470pt;}
.y1b{bottom:496.586468pt;}
.yb2{bottom:498.986467pt;}
.y85{bottom:506.986464pt;}
.y45{bottom:507.306464pt;}
.yb0{bottom:515.787200pt;}
.y1a{bottom:517.706460pt;}
.y84{bottom:528.106455pt;}
.y44{bottom:528.426455pt;}
.y19{bottom:538.826451pt;}
.y83{bottom:549.226447pt;}
.y43{bottom:549.386447pt;}
.yaf{bottom:557.866444pt;}
.y18{bottom:559.786443pt;}
.y82{bottom:570.346439pt;}
.y42{bottom:570.506438pt;}
.yad{bottom:574.667200pt;}
.y17{bottom:580.906434pt;}
.y81{bottom:591.306430pt;}
.y41{bottom:591.626430pt;}
.y16{bottom:602.026426pt;}
.y80{bottom:612.426422pt;}
.y40{bottom:612.746422pt;}
.yac{bottom:616.586420pt;}
.y15{bottom:623.146417pt;}
.yaa{bottom:633.387200pt;}
.y7f{bottom:633.546413pt;}
.y3f{bottom:633.706413pt;}
.y59{bottom:638.986411pt;}
.y14{bottom:644.106409pt;}
.ya8{bottom:654.507200pt;}
.y7e{bottom:654.666405pt;}
.y3e{bottom:654.826405pt;}
.ya7{bottom:658.826403pt;}
.y13{bottom:665.226401pt;}
.ya5{bottom:675.627200pt;}
.y3d{bottom:675.946396pt;}
.y12{bottom:686.346392pt;}
.ya3{bottom:696.587200pt;}
.y3c{bottom:697.066388pt;}
.y76{bottom:702.346386pt;}
.y11{bottom:707.466384pt;}
.y3b{bottom:718.026379pt;}
.y7b{bottom:723.306377pt;}
.y10{bottom:728.426375pt;}
.ya2{bottom:735.786372pt;}
.y3a{bottom:739.146371pt;}
.yf{bottom:749.546367pt;}
.y39{bottom:760.266363pt;}
.ya1{bottom:770.506358pt;}
.ye{bottom:770.666358pt;}
.y38{bottom:781.386354pt;}
.y9f{bottom:787.147200pt;}
.yd{bottom:791.786350pt;}
.y37{bottom:802.346346pt;}
.y77{bottom:807.626344pt;}
.y9d{bottom:808.267200pt;}
.yc{bottom:812.746342pt;}
.y36{bottom:823.466337pt;}
.y9b{bottom:829.387200pt;}
.yb{bottom:833.866333pt;}
.y34{bottom:844.586329pt;}
.y35{bottom:849.866327pt;}
.ya{bottom:854.986325pt;}
.y32{bottom:865.546320pt;}
.y33{bottom:870.826318pt;}
.y9a{bottom:871.466318pt;}
.y9{bottom:876.106316pt;}
.y31{bottom:886.666312pt;}
.y98{bottom:888.267200pt;}
.y6f{bottom:891.946310pt;}
.y8{bottom:897.066308pt;}
.y30{bottom:907.786304pt;}
.y7{bottom:918.186299pt;}
.y2f{bottom:928.906295pt;}
.y97{bottom:930.186295pt;}
.yd2{bottom:933.226293pt;}
.y69{bottom:934.186293pt;}
.y6{bottom:939.306291pt;}
.y95{bottom:946.987200pt;}
.y2e{bottom:949.866287pt;}
.y5{bottom:960.266283pt;}
.yd1{bottom:967.946279pt;}
.y2d{bottom:970.986278pt;}
.y94{bottom:989.066271pt;}
.y4{bottom:992.106270pt;}
.y75{bottom:997.386268pt;}
.y92{bottom:1005.867200pt;}
.y3{bottom:1013.226261pt;}
.y7d{bottom:1018.506259pt;}
.h8{height:19.360000pt;}
.h9{height:19.520000pt;}
.h6{height:28.501864pt;}
.h4{height:35.363423pt;}
.h7{height:43.808420pt;}
.h5{height:43.812482pt;}
.h2{height:44.499982pt;}
.h1{height:48.558731pt;}
.h3{height:52.781229pt;}
.h0{height:1122.666667pt;}
.w16{width:1.440000pt;}
.w2{width:1.600000pt;}
.w12{width:1.920000pt;}
.wb{width:4.800000pt;}
.w10{width:9.440000pt;}
.w14{width:9.600000pt;}
.w7{width:16.480000pt;}
.w1{width:17.440000pt;}
.w4{width:18.080000pt;}
.w19{width:56.960000pt;}
.w13{width:88.640000pt;}
.wa{width:107.680000pt;}
.w17{width:188.320000pt;}
.wc{width:189.280000pt;}
.w9{width:233.600000pt;}
.w18{width:254.720000pt;}
.w5{width:265.440000pt;}
.w6{width:269.920000pt;}
.we{width:280.160000pt;}
.w11{width:359.520000pt;}
.w1a{width:496.000000pt;}
.wf{width:504.640000pt;}
.wd{width:535.360000pt;}
.w3{width:536.000000pt;}
.w8{width:536.960000pt;}
.w15{width:552.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:113.440636pt;}
.x13{left:117.759953pt;}
.x3{left:118.719953pt;}
.x1c{left:120.799952pt;}
.x22{left:122.079951pt;}
.x1d{left:125.119950pt;}
.x38{left:126.400000pt;}
.xb{left:129.759948pt;}
.x30{left:135.360000pt;}
.x2d{left:136.320000pt;}
.xc{left:137.439945pt;}
.x31{left:142.400000pt;}
.x2e{left:143.360000pt;}
.x18{left:155.999938pt;}
.x19{left:161.439935pt;}
.x3c{left:183.360000pt;}
.x25{left:188.639925pt;}
.x26{left:199.519920pt;}
.x39{left:215.040000pt;}
.xd{left:236.799905pt;}
.x4{left:237.758964pt;}
.xe{left:242.239903pt;}
.x37{left:319.840000pt;}
.x14{left:371.199852pt;}
.x15{left:376.639849pt;}
.x32{left:377.600000pt;}
.x1e{left:379.839848pt;}
.x6{left:383.838401pt;}
.x1f{left:385.279846pt;}
.x2b{left:389.439844pt;}
.x1{left:393.119843pt;}
.x35{left:399.200000pt;}
.x2f{left:409.440000pt;}
.x23{left:425.119830pt;}
.x29{left:432.159827pt;}
.x24{left:435.999826pt;}
.x2a{left:443.039823pt;}
.x11{left:452.479819pt;}
.x5{left:455.518323pt;}
.x12{left:457.919817pt;}
.x27{left:464.479814pt;}
.x28{left:475.359810pt;}
.x33{left:485.280000pt;}
.x34{left:490.080000pt;}
.x3b{left:491.040000pt;}
.x20{left:499.999800pt;}
.xf{left:504.479798pt;}
.x10{left:509.919796pt;}
.x21{left:510.879796pt;}
.x7{left:519.678154pt;}
.x9{left:570.399772pt;}
.xa{left:579.519768pt;}
.x16{left:584.959766pt;}
.x2c{left:586.079766pt;}
.x17{left:590.399764pt;}
.x1a{left:597.439761pt;}
.x1b{left:602.879759pt;}
.x36{left:648.640000pt;}
.x3a{left:677.920000pt;}
.x8{left:680.317923pt;}
}




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