
    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_55ce9eca90ba99ef186c2497.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_a39796df7a41afca23e67a96.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f3ad8dc5952f3540dffdfc9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_b70df45dcdaa2f64083331f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b0bb5c81152fef751bb1c069.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.913086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_04577a29c48657d70510c658.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.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;}
}
.ws9{word-spacing:-160.127936px;}
.wsa{word-spacing:-110.087956px;}
.ws8{word-spacing:-107.999957px;}
.ws4{word-spacing:-97.631961px;}
.ws3{word-spacing:-81.359967px;}
.wsd{word-spacing:-59.718216px;}
.ws1{word-spacing:-54.185738px;}
.wsb{word-spacing:-53.442699px;}
.ws5{word-spacing:-43.446223px;}
.wsc{word-spacing:-40.031984px;}
.ws7{word-spacing:-32.543987px;}
.ws6{word-spacing:-21.641751px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:0.876384px;}
._10{margin-left:-3151.439882px;}
._14{margin-left:-1901.573200px;}
._12{margin-left:-1418.894164px;}
._c{margin-left:-1111.362087px;}
._17{margin-left:-1100.792360px;}
._16{margin-left:-911.363395px;}
._b{margin-left:-434.550157px;}
._15{margin-left:-29.411898px;}
._e{margin-left:-18.726370px;}
._5{margin-left:-14.184489px;}
._f{margin-left:-11.685930px;}
._d{margin-left:-10.392179px;}
._6{margin-left:-8.491885px;}
._1{margin-left:-7.256086px;}
._7{margin-left:-5.967973px;}
._9{margin-left:-4.386895px;}
._2{margin-left:-3.211861px;}
._0{margin-left:-1.923748px;}
._4{width:1.233949px;}
._a{width:2.318829px;}
._3{width:3.428920px;}
._11{width:40.858028px;}
._8{width:213.481598px;}
._13{width:444.465091px;}
.fc2{color:rgb(255,222,5);}
.fc1{color:transparent;}
.fc5{color:rgb(242,242,242);}
.fc4{color:rgb(166,166,166);}
.fc3{color:rgb(191,191,191);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:95.759962px;}
.fsd{font-size:131.759947px;}
.fs7{font-size:143.999942px;}
.fs5{font-size:156.239938px;}
.fs2{font-size:167.759933px;}
.fs4{font-size:192.239923px;}
.fs9{font-size:215.999914px;}
.fs1{font-size:239.759904px;}
.fsc{font-size:264.239894px;}
.fs0{font-size:287.999885px;}
.fs3{font-size:359.999856px;}
.fsb{font-size:395.999842px;}
.fs6{font-size:431.999827px;}
.fsa{font-size:575.999770px;}
.y4a{bottom:-61.379797px;}
.ye{bottom:-55.799799px;}
.y50{bottom:-52.739800px;}
.y53{bottom:-35.459807px;}
.y15{bottom:-33.479808px;}
.y27{bottom:-32.219809px;}
.y69{bottom:-28.979810px;}
.y2f{bottom:-28.079810px;}
.y21{bottom:-27.539810px;}
.y73{bottom:-19.079814px;}
.y67{bottom:-10.259817px;}
.y5e{bottom:-7.919818px;}
.y0{bottom:0.000000px;}
.y5a{bottom:0.720178px;}
.y5{bottom:5.760176px;}
.y2a{bottom:7.200176px;}
.y6c{bottom:7.920183px;}
.y71{bottom:7.920190px;}
.y62{bottom:9.540175px;}
.y5c{bottom:9.720178px;}
.y33{bottom:9.720190px;}
.y31{bottom:12.960176px;}
.y17{bottom:12.960192px;}
.y75{bottom:14.040186px;}
.y63{bottom:15.300175px;}
.y56{bottom:15.300193px;}
.y7{bottom:16.020176px;}
.y10{bottom:16.020201px;}
.y60{bottom:19.080182px;}
.y23{bottom:24.120190px;}
.y29{bottom:28.980191px;}
.y4c{bottom:30.240203px;}
.y52{bottom:30.600200px;}
.y4f{bottom:125.340307px;}
.y1f{bottom:153.600296px;}
.yb{bottom:173.760287px;}
.y37{bottom:179.160285px;}
.y48{bottom:180.240285px;}
.y4e{bottom:182.940284px;}
.y6e{bottom:184.380283px;}
.y42{bottom:189.240281px;}
.y7b{bottom:194.100279px;}
.y25{bottom:202.740276px;}
.y36{bottom:214.260271px;}
.ya{bottom:224.160267px;}
.y41{bottom:227.400266px;}
.y1e{bottom:236.400262px;}
.y12{bottom:246.480258px;}
.y7a{bottom:251.520256px;}
.y35{bottom:257.460254px;}
.y9{bottom:274.560247px;}
.y47{bottom:275.640247px;}
.y6d{bottom:276.360246px;}
.y6f{bottom:282.660244px;}
.y4d{bottom:284.640243px;}
.y78{bottom:287.700242px;}
.y24{bottom:310.740233px;}
.y57{bottom:311.280232px;}
.y7c{bottom:317.400230px;}
.y11{bottom:318.480230px;}
.y1d{bottom:319.200229px;}
.y8{bottom:324.960227px;}
.y40{bottom:328.560226px;}
.y61{bottom:330.360225px;}
.y18{bottom:344.040219px;}
.y77{bottom:345.120219px;}
.y4b{bottom:354.660000px;}
.y59{bottom:357.900214px;}
.y72{bottom:360.600213px;}
.y51{bottom:362.940000px;}
.y3f{bottom:366.900210px;}
.y64{bottom:369.420209px;}
.yf{bottom:374.460000px;}
.y34{bottom:383.100204px;}
.y46{bottom:384.360203px;}
.y28{bottom:385.260000px;}
.y22{bottom:394.620000px;}
.y55{bottom:395.520000px;}
.y16{bottom:399.840000px;}
.y1c{bottom:402.000196px;}
.y5d{bottom:403.800195px;}
.y79{bottom:406.680194px;}
.y38{bottom:408.120194px;}
.y32{bottom:408.480000px;}
.y70{bottom:409.560000px;}
.y74{bottom:413.160000px;}
.y5f{bottom:419.280000px;}
.y6b{bottom:428.100000px;}
.y6{bottom:436.020000px;}
.y5b{bottom:437.280000px;}
.y30{bottom:440.520000px;}
.y4{bottom:446.280000px;}
.y68{bottom:454.560175px;}
.y2e{bottom:461.400172px;}
.y76{bottom:464.100171px;}
.y3d{bottom:467.880170px;}
.y45{bottom:477.780166px;}
.y1b{bottom:484.620163px;}
.y14{bottom:486.780162px;}
.y3c{bottom:506.220155px;}
.y49{bottom:514.320151px;}
.y20{bottom:526.740146px;}
.y3{bottom:527.280146px;}
.yd{bottom:534.480143px;}
.y26{bottom:543.660140px;}
.y54{bottom:550.320137px;}
.y2d{bottom:566.340130px;}
.y1a{bottom:567.420130px;}
.y44{bottom:592.620120px;}
.y2c{bottom:601.980116px;}
.y3b{bottom:607.200114px;}
.yc{bottom:609.720113px;}
.y2{bottom:610.440113px;}
.y39{bottom:611.340112px;}
.y66{bottom:613.860111px;}
.y2b{bottom:645.180099px;}
.y3a{bottom:645.540099px;}
.y43{bottom:675.420087px;}
.y1{bottom:685.680083px;}
.y65{bottom:687.660082px;}
.y19{bottom:693.960079px;}
.y13{bottom:694.140079px;}
.y3e{bottom:706.380074px;}
.y6a{bottom:731.580064px;}
.y58{bottom:731.760064px;}
.h6{height:1.260000px;}
.h33{height:3.240000px;}
.h18{height:5.760000px;}
.h17{height:6.120000px;}
.h2d{height:9.000000px;}
.h4{height:10.260000px;}
.ha{height:12.240000px;}
.h34{height:18.180000px;}
.h32{height:21.960000px;}
.h30{height:27.000000px;}
.h26{height:29.700000px;}
.h38{height:33.120000px;}
.h2b{height:34.920000px;}
.h35{height:36.720000px;}
.h19{height:37.800000px;}
.h36{height:40.680000px;}
.hc{height:46.440000px;}
.h29{height:50.760000px;}
.hf{height:51.660000px;}
.h13{height:52.920000px;}
.he{height:58.140000px;}
.h12{height:61.020000px;}
.h3{height:62.820000px;}
.h11{height:70.560000px;}
.h7{height:71.820000px;}
.h20{height:72.900000px;}
.h2e{height:73.620000px;}
.h31{height:74.700000px;}
.h23{height:77.580000px;}
.h16{height:78.973914px;}
.h25{height:83.340000px;}
.h39{height:90.198948px;}
.h22{height:91.620000px;}
.h2c{height:98.578086px;}
.h1a{height:104.835896px;}
.h15{height:118.757765px;}
.hb{height:131.601744px;}
.h5{height:138.352796px;}
.h1e{height:150.187440px;}
.h14{height:158.541616px;}
.hd{height:162.953372px;}
.h9{height:164.132512px;}
.h2{height:197.731679px;}
.h1c{height:200.500232px;}
.h2a{height:217.920499px;}
.h1b{height:225.281160px;}
.h1{height:237.515530px;}
.h1d{height:250.062087px;}
.h1f{height:257.695209px;}
.h37{height:275.593952px;}
.h8{height:296.894412px;}
.h27{height:300.374880px;}
.h10{height:356.273295px;}
.h2f{height:375.468600px;}
.h21{height:412.312335px;}
.h28{height:413.015460px;}
.h24{height:600.749760px;}
.h0{height:892.500000px;}
.w16{width:19.980000px;}
.w6{width:23.940000px;}
.w4{width:31.859640px;}
.w3{width:53.460000px;}
.we{width:54.900000px;}
.w15{width:103.860000px;}
.w10{width:118.619640px;}
.w2{width:185.580000px;}
.wa{width:240.660000px;}
.w9{width:310.859640px;}
.w1{width:312.840000px;}
.w19{width:377.100000px;}
.wf{width:379.800000px;}
.w7{width:467.640000px;}
.w5{width:472.680000px;}
.w17{width:523.800000px;}
.w8{width:573.120000px;}
.w18{width:664.380000px;}
.wc{width:680.400000px;}
.w13{width:810.180000px;}
.w11{width:878.040000px;}
.wd{width:917.099640px;}
.wb{width:938.339640px;}
.w12{width:958.859640px;}
.w14{width:1034.279640px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x36{left:104.926458px;}
.x22{left:106.905857px;}
.x3a{left:112.845855px;}
.x2e{left:115.005854px;}
.x15{left:117.166453px;}
.x2b{left:119.505852px;}
.xd{left:125.085850px;}
.x32{left:131.566447px;}
.x3b{left:133.005960px;}
.x2a{left:144.885842px;}
.x1c{left:147.225960px;}
.xb{left:152.805960px;}
.x3d{left:155.865960px;}
.x20{left:163.786434px;}
.xf{left:166.846433px;}
.x37{left:171.706431px;}
.x34{left:172.785960px;}
.x3e{left:174.226430px;}
.x2f{left:178.545960px;}
.x24{left:180.165828px;}
.x28{left:192.046423px;}
.x50{left:198.526421px;}
.x13{left:203.926418px;}
.x25{left:211.845815px;}
.x29{left:218.686413px;}
.x14{left:220.126412px;}
.x3f{left:226.245600px;}
.x23{left:244.965802px;}
.x2c{left:249.106400px;}
.x3c{left:251.625600px;}
.xc{left:254.145600px;}
.x12{left:261.526395px;}
.x41{left:268.726393px;}
.x4c{left:271.066392px;}
.x1{left:274.666390px;}
.x9{left:275.926390px;}
.x11{left:277.726389px;}
.x21{left:297.166381px;}
.x4e{left:299.145600px;}
.x4b{left:308.326377px;}
.x2{left:314.266374px;}
.x33{left:319.305600px;}
.x31{left:331.006368px;}
.x44{left:339.826364px;}
.x10{left:349.546360px;}
.x4{left:354.225600px;}
.x49{left:363.946354px;}
.x3{left:366.286353px;}
.x4a{left:373.485600px;}
.x45{left:384.645600px;}
.x38{left:417.765600px;}
.x46{left:425.506330px;}
.x54{left:442.785600px;}
.x55{left:452.686319px;}
.x27{left:462.406315px;}
.x4d{left:467.086313px;}
.x56{left:468.706313px;}
.x39{left:472.665600px;}
.x35{left:488.326305px;}
.x40{left:497.326301px;}
.x2d{left:504.166298px;}
.x7{left:523.786290px;}
.x1a{left:552.046279px;}
.x57{left:559.606276px;}
.x48{left:562.306275px;}
.x1b{left:563.925600px;}
.x18{left:579.046268px;}
.x8{left:592.186263px;}
.x51{left:611.086256px;}
.xe{left:615.585600px;}
.x4f{left:635.026246px;}
.x30{left:668.326233px;}
.x5{left:681.105600px;}
.xa{left:685.786226px;}
.x16{left:693.166223px;}
.x17{left:698.205600px;}
.x1e{left:738.346205px;}
.x1d{left:741.406203px;}
.x52{left:752.386199px;}
.x42{left:754.366198px;}
.x26{left:758.146197px;}
.x53{left:764.266194px;}
.x47{left:778.846188px;}
.x1f{left:806.206178px;}
.x19{left:820.786172px;}
.x43{left:845.985600px;}
.x6{left:880.545600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-142.335943pt;}
.wsa{word-spacing:-97.855961pt;}
.ws8{word-spacing:-95.999962pt;}
.ws4{word-spacing:-86.783965pt;}
.ws3{word-spacing:-72.319971pt;}
.wsd{word-spacing:-53.082859pt;}
.ws1{word-spacing:-48.165101pt;}
.wsb{word-spacing:-47.504621pt;}
.ws5{word-spacing:-38.618865pt;}
.wsc{word-spacing:-35.583986pt;}
.ws7{word-spacing:-28.927988pt;}
.ws6{word-spacing:-19.237112pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:0.779008pt;}
._10{margin-left:-2801.279895pt;}
._14{margin-left:-1690.287289pt;}
._12{margin-left:-1261.239257pt;}
._c{margin-left:-987.877411pt;}
._17{margin-left:-978.482098pt;}
._16{margin-left:-810.100796pt;}
._b{margin-left:-386.266807pt;}
._15{margin-left:-26.143910pt;}
._e{margin-left:-16.645662pt;}
._5{margin-left:-12.608435pt;}
._f{margin-left:-10.387493pt;}
._d{margin-left:-9.237493pt;}
._6{margin-left:-7.548342pt;}
._1{margin-left:-6.449854pt;}
._7{margin-left:-5.304865pt;}
._9{margin-left:-3.899462pt;}
._2{margin-left:-2.854988pt;}
._0{margin-left:-1.709998pt;}
._4{width:1.096843pt;}
._a{width:2.061181pt;}
._3{width:3.047929pt;}
._11{width:36.318247pt;}
._8{width:189.761420pt;}
._13{width:395.080081pt;}
.fs8{font-size:85.119966pt;}
.fsd{font-size:117.119953pt;}
.fs7{font-size:127.999949pt;}
.fs5{font-size:138.879944pt;}
.fs2{font-size:149.119940pt;}
.fs4{font-size:170.879932pt;}
.fs9{font-size:191.999923pt;}
.fs1{font-size:213.119915pt;}
.fsc{font-size:234.879906pt;}
.fs0{font-size:255.999898pt;}
.fs3{font-size:319.999872pt;}
.fsb{font-size:351.999859pt;}
.fs6{font-size:383.999846pt;}
.fsa{font-size:511.999795pt;}
.y4a{bottom:-54.559820pt;}
.ye{bottom:-49.599822pt;}
.y50{bottom:-46.879823pt;}
.y53{bottom:-31.519829pt;}
.y15{bottom:-29.759829pt;}
.y27{bottom:-28.639830pt;}
.y69{bottom:-25.759831pt;}
.y2f{bottom:-24.959831pt;}
.y21{bottom:-24.479832pt;}
.y73{bottom:-16.959835pt;}
.y67{bottom:-9.119838pt;}
.y5e{bottom:-7.039839pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:0.640158pt;}
.y5{bottom:5.120157pt;}
.y2a{bottom:6.400156pt;}
.y6c{bottom:7.040162pt;}
.y71{bottom:7.040169pt;}
.y62{bottom:8.480155pt;}
.y5c{bottom:8.640158pt;}
.y33{bottom:8.640169pt;}
.y31{bottom:11.520156pt;}
.y17{bottom:11.520171pt;}
.y75{bottom:12.480165pt;}
.y63{bottom:13.600155pt;}
.y56{bottom:13.600171pt;}
.y7{bottom:14.240157pt;}
.y10{bottom:14.240178pt;}
.y60{bottom:16.960161pt;}
.y23{bottom:21.440168pt;}
.y29{bottom:25.760170pt;}
.y4c{bottom:26.880180pt;}
.y52{bottom:27.200177pt;}
.y4f{bottom:111.413606pt;}
.y1f{bottom:136.533596pt;}
.yb{bottom:154.453589pt;}
.y37{bottom:159.253587pt;}
.y48{bottom:160.213587pt;}
.y4e{bottom:162.613586pt;}
.y6e{bottom:163.893585pt;}
.y42{bottom:168.213583pt;}
.y7b{bottom:172.533582pt;}
.y25{bottom:180.213579pt;}
.y36{bottom:190.453574pt;}
.ya{bottom:199.253571pt;}
.y41{bottom:202.133570pt;}
.y1e{bottom:210.133567pt;}
.y12{bottom:219.093563pt;}
.y7a{bottom:223.573561pt;}
.y35{bottom:228.853559pt;}
.y9{bottom:244.053553pt;}
.y47{bottom:245.013553pt;}
.y6d{bottom:245.653552pt;}
.y6f{bottom:251.253550pt;}
.y4d{bottom:253.013549pt;}
.y78{bottom:255.733548pt;}
.y24{bottom:276.213540pt;}
.y57{bottom:276.693540pt;}
.y7c{bottom:282.133538pt;}
.y11{bottom:283.093537pt;}
.y1d{bottom:283.733537pt;}
.y8{bottom:288.853535pt;}
.y40{bottom:292.053534pt;}
.y61{bottom:293.653533pt;}
.y18{bottom:305.813528pt;}
.y77{bottom:306.773528pt;}
.y4b{bottom:315.253333pt;}
.y59{bottom:318.133523pt;}
.y72{bottom:320.533522pt;}
.y51{bottom:322.613333pt;}
.y3f{bottom:326.133520pt;}
.y64{bottom:328.373519pt;}
.yf{bottom:332.853333pt;}
.y34{bottom:340.533514pt;}
.y46{bottom:341.653514pt;}
.y28{bottom:342.453333pt;}
.y22{bottom:350.773333pt;}
.y55{bottom:351.573333pt;}
.y16{bottom:355.413333pt;}
.y1c{bottom:357.333508pt;}
.y5d{bottom:358.933507pt;}
.y79{bottom:361.493506pt;}
.y38{bottom:362.773506pt;}
.y32{bottom:363.093333pt;}
.y70{bottom:364.053333pt;}
.y74{bottom:367.253333pt;}
.y5f{bottom:372.693333pt;}
.y6b{bottom:380.533333pt;}
.y6{bottom:387.573333pt;}
.y5b{bottom:388.693333pt;}
.y30{bottom:391.573333pt;}
.y4{bottom:396.693333pt;}
.y68{bottom:404.053489pt;}
.y2e{bottom:410.133487pt;}
.y76{bottom:412.533486pt;}
.y3d{bottom:415.893484pt;}
.y45{bottom:424.693481pt;}
.y1b{bottom:430.773478pt;}
.y14{bottom:432.693478pt;}
.y3c{bottom:449.973471pt;}
.y49{bottom:457.173468pt;}
.y20{bottom:468.213463pt;}
.y3{bottom:468.693463pt;}
.yd{bottom:475.093461pt;}
.y26{bottom:483.253457pt;}
.y54{bottom:489.173455pt;}
.y2d{bottom:503.413449pt;}
.y1a{bottom:504.373449pt;}
.y44{bottom:526.773440pt;}
.y2c{bottom:535.093437pt;}
.y3b{bottom:539.733435pt;}
.yc{bottom:541.973434pt;}
.y2{bottom:542.613434pt;}
.y39{bottom:543.413433pt;}
.y66{bottom:545.653432pt;}
.y2b{bottom:573.493421pt;}
.y3a{bottom:573.813421pt;}
.y43{bottom:600.373411pt;}
.y1{bottom:609.493407pt;}
.y65{bottom:611.253406pt;}
.y19{bottom:616.853404pt;}
.y13{bottom:617.013404pt;}
.y3e{bottom:627.893400pt;}
.y6a{bottom:650.293391pt;}
.y58{bottom:650.453390pt;}
.h6{height:1.120000pt;}
.h33{height:2.880000pt;}
.h18{height:5.120000pt;}
.h17{height:5.440000pt;}
.h2d{height:8.000000pt;}
.h4{height:9.120000pt;}
.ha{height:10.880000pt;}
.h34{height:16.160000pt;}
.h32{height:19.520000pt;}
.h30{height:24.000000pt;}
.h26{height:26.400000pt;}
.h38{height:29.440000pt;}
.h2b{height:31.040000pt;}
.h35{height:32.640000pt;}
.h19{height:33.600000pt;}
.h36{height:36.160000pt;}
.hc{height:41.280000pt;}
.h29{height:45.120000pt;}
.hf{height:45.920000pt;}
.h13{height:47.040000pt;}
.he{height:51.680000pt;}
.h12{height:54.240000pt;}
.h3{height:55.840000pt;}
.h11{height:62.720000pt;}
.h7{height:63.840000pt;}
.h20{height:64.800000pt;}
.h2e{height:65.440000pt;}
.h31{height:66.400000pt;}
.h23{height:68.960000pt;}
.h16{height:70.199034pt;}
.h25{height:74.080000pt;}
.h39{height:80.176843pt;}
.h22{height:81.440000pt;}
.h2c{height:87.624965pt;}
.h1a{height:93.187463pt;}
.h15{height:105.562458pt;}
.hb{height:116.979328pt;}
.h5{height:122.980263pt;}
.h1e{height:133.499947pt;}
.h14{height:140.925881pt;}
.hd{height:144.847442pt;}
.h9{height:145.895567pt;}
.h2{height:175.761492pt;}
.h1c{height:178.222429pt;}
.h2a{height:193.707110pt;}
.h1b{height:200.249920pt;}
.h1{height:211.124916pt;}
.h1d{height:222.277411pt;}
.h1f{height:229.062408pt;}
.h37{height:244.972402pt;}
.h8{height:263.906144pt;}
.h27{height:266.999893pt;}
.h10{height:316.687373pt;}
.h2f{height:333.749866pt;}
.h21{height:366.499853pt;}
.h28{height:367.124853pt;}
.h24{height:533.999786pt;}
.h0{height:793.333333pt;}
.w16{width:17.760000pt;}
.w6{width:21.280000pt;}
.w4{width:28.319680pt;}
.w3{width:47.520000pt;}
.we{width:48.800000pt;}
.w15{width:92.320000pt;}
.w10{width:105.439680pt;}
.w2{width:164.960000pt;}
.wa{width:213.920000pt;}
.w9{width:276.319680pt;}
.w1{width:278.080000pt;}
.w19{width:335.200000pt;}
.wf{width:337.600000pt;}
.w7{width:415.680000pt;}
.w5{width:420.160000pt;}
.w17{width:465.600000pt;}
.w8{width:509.440000pt;}
.w18{width:590.560000pt;}
.wc{width:604.800000pt;}
.w13{width:720.160000pt;}
.w11{width:780.480000pt;}
.wd{width:815.199680pt;}
.wb{width:834.079680pt;}
.w12{width:852.319680pt;}
.w14{width:919.359680pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x36{left:93.267963pt;}
.x22{left:95.027429pt;}
.x3a{left:100.307427pt;}
.x2e{left:102.227426pt;}
.x15{left:104.147958pt;}
.x2b{left:106.227424pt;}
.xd{left:111.187422pt;}
.x32{left:116.947953pt;}
.x3b{left:118.227520pt;}
.x2a{left:128.787415pt;}
.x1c{left:130.867520pt;}
.xb{left:135.827520pt;}
.x3d{left:138.547520pt;}
.x20{left:145.587942pt;}
.xf{left:148.307941pt;}
.x37{left:152.627939pt;}
.x34{left:153.587520pt;}
.x3e{left:154.867938pt;}
.x2f{left:158.707520pt;}
.x24{left:160.147403pt;}
.x28{left:170.707932pt;}
.x50{left:176.467929pt;}
.x13{left:181.267927pt;}
.x25{left:188.307391pt;}
.x29{left:194.387922pt;}
.x14{left:195.667922pt;}
.x3f{left:201.107200pt;}
.x23{left:217.747380pt;}
.x2c{left:221.427911pt;}
.x3c{left:223.667200pt;}
.xc{left:225.907200pt;}
.x12{left:232.467907pt;}
.x41{left:238.867904pt;}
.x4c{left:240.947904pt;}
.x1{left:244.147902pt;}
.x9{left:245.267902pt;}
.x11{left:246.867901pt;}
.x21{left:264.147894pt;}
.x4e{left:265.907200pt;}
.x4b{left:274.067890pt;}
.x2{left:279.347888pt;}
.x33{left:283.827200pt;}
.x31{left:294.227882pt;}
.x44{left:302.067879pt;}
.x10{left:310.707876pt;}
.x4{left:314.867200pt;}
.x49{left:323.507871pt;}
.x3{left:325.587870pt;}
.x4a{left:331.987200pt;}
.x45{left:341.907200pt;}
.x38{left:371.347200pt;}
.x46{left:378.227849pt;}
.x54{left:393.587200pt;}
.x55{left:402.387839pt;}
.x27{left:411.027836pt;}
.x4d{left:415.187834pt;}
.x56{left:416.627833pt;}
.x39{left:420.147200pt;}
.x35{left:434.067826pt;}
.x40{left:442.067823pt;}
.x2d{left:448.147821pt;}
.x7{left:465.587814pt;}
.x1a{left:490.707804pt;}
.x57{left:497.427801pt;}
.x48{left:499.827800pt;}
.x1b{left:501.267200pt;}
.x18{left:514.707794pt;}
.x8{left:526.387789pt;}
.x51{left:543.187783pt;}
.xe{left:547.187200pt;}
.x4f{left:564.467774pt;}
.x30{left:594.067762pt;}
.x5{left:605.427200pt;}
.xa{left:609.587756pt;}
.x16{left:616.147754pt;}
.x17{left:620.627200pt;}
.x1e{left:656.307737pt;}
.x1d{left:659.027736pt;}
.x52{left:668.787732pt;}
.x42{left:670.547732pt;}
.x26{left:673.907730pt;}
.x53{left:679.347728pt;}
.x47{left:692.307723pt;}
.x1f{left:716.627713pt;}
.x19{left:729.587708pt;}
.x43{left:751.987200pt;}
.x6{left:782.707200pt;}
}




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