
    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_726424265620669b32244c9c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015137;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_37cdd4296713aeedc4f84ddc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.015137;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_e381be85bd578ce22035f947.woff')format("woff");}.ff3{font-family:ff3;line-height:1.063477;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_4b41943f2b4915723a81910d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.030273;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-86.688000px;}
.v8{vertical-align:-65.232000px;}
.v2{vertical-align:-43.200000px;}
.v3{vertical-align:-36.000000px;}
.v9{vertical-align:-24.480000px;}
.vf{vertical-align:-19.440000px;}
.v7{vertical-align:-15.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.208000px;}
.v10{vertical-align:19.440000px;}
.va{vertical-align:24.480000px;}
.ve{vertical-align:28.944000px;}
.v1{vertical-align:43.200000px;}
.v4{vertical-align:50.400000px;}
.vd{vertical-align:56.160000px;}
.vc{vertical-align:80.640000px;}
.vb{vertical-align:90.720000px;}
.lse{letter-spacing:-0.453000px;}
.ls17{letter-spacing:-0.379470px;}
.ls12{letter-spacing:-0.373200px;}
.lsd{letter-spacing:-0.323400px;}
.ls16{letter-spacing:-0.290927px;}
.lsf{letter-spacing:-0.247200px;}
.ls3{letter-spacing:-0.227400px;}
.ls10{letter-spacing:-0.135600px;}
.ls11{letter-spacing:-0.133800px;}
.ls18{letter-spacing:-0.033120px;}
.ls4{letter-spacing:-0.018720px;}
.ls13{letter-spacing:-0.008640px;}
.ls19{letter-spacing:-0.007800px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.133200px;}
.ls2{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.301200px;}
.ls15{letter-spacing:0.341400px;}
.ls14{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.439920px;}
.lsb{letter-spacing:4.202640px;}
.ls7{letter-spacing:5.217264px;}
.ls9{letter-spacing:5.300640px;}
.ls6{letter-spacing:18.177264px;}
.ls8{letter-spacing:18.260640px;}
.lsa{letter-spacing:18.440640px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(66,66,66),0 0.015em rgb(66,66,66),0.015em 0 rgb(66,66,66),0 -0.015em  rgb(66,66,66);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(66,66,66);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-87.991920px;}
.ws3{word-spacing:-55.864080px;}
.wsa{word-spacing:-47.999952px;}
.ws5{word-spacing:-47.952000px;}
.ws1{word-spacing:-40.039920px;}
.ws4{word-spacing:-37.175160px;}
.ws7{word-spacing:-35.964000px;}
.ws0{word-spacing:-31.888080px;}
.ws21{word-spacing:-29.569024px;}
.ws1c{word-spacing:-28.099872px;}
.ws1e{word-spacing:-28.066752px;}
.ws1d{word-spacing:-28.051920px;}
.wsb{word-spacing:-26.484480px;}
.ws10{word-spacing:-26.452800px;}
.ws12{word-spacing:-26.317200px;}
.ws11{word-spacing:-26.205600px;}
.ws9{word-spacing:-22.057920px;}
.ws18{word-spacing:-21.386592px;}
.ws19{word-spacing:-21.338640px;}
.ws1a{word-spacing:-21.067200px;}
.ws17{word-spacing:-21.058560px;}
.wsf{word-spacing:-0.838656px;}
.ws1f{word-spacing:-0.782640px;}
.ws14{word-spacing:-0.524160px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:0.727823px;}
.ws15{word-spacing:1.280880px;}
.wse{word-spacing:2.049048px;}
.wsd{word-spacing:6.708672px;}
.wsc{word-spacing:10.198296px;}
.ws16{word-spacing:49.695840px;}
.ws13{word-spacing:249.490440px;}
.ws1b{word-spacing:1732.178160px;}
.ws8{word-spacing:2314.556640px;}
._2{margin-left:-3.594240px;}
._0{margin-left:-2.113920px;}
._3{margin-left:-1.007424px;}
._1{width:1.558080px;}
._4{width:2.784960px;}
._f{width:4.076640px;}
._a{width:12.762720px;}
._b{width:14.105952px;}
._15{width:26.213280px;}
._14{width:29.231040px;}
._13{width:30.568272px;}
._c{width:32.778960px;}
._e{width:33.885840px;}
._d{width:103.140720px;}
._9{width:146.354688px;}
._5{width:1074.953040px;}
._11{width:1578.023424px;}
._8{width:2302.684560px;}
._12{width:4257.711120px;}
._10{width:4304.222688px;}
._7{width:5122.287120px;}
._6{width:5125.024560px;}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(211,0,0);}
.fc3{color:rgb(48,158,41);}
.fc1{color:rgb(70,120,134);}
.fc7{color:rgb(66,66,66);}
.fc2{color:rgb(116,116,116);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:54.000000px;}
.fsd{font-size:59.760000px;}
.fs18{font-size:64.080000px;}
.fs17{font-size:64.224000px;}
.fs13{font-size:66.240000px;}
.fs12{font-size:66.384000px;}
.fs19{font-size:69.840000px;}
.fs5{font-size:79.920000px;}
.fsf{font-size:84.240000px;}
.fs1e{font-size:84.384000px;}
.fs16{font-size:87.840000px;}
.fs15{font-size:87.984000px;}
.fs1d{font-size:88.795869px;}
.fs1f{font-size:88.947657px;}
.fs3{font-size:95.760000px;}
.fsa{font-size:108.000000px;}
.fs1a{font-size:108.144000px;}
.fs9{font-size:112.320000px;}
.fs6{font-size:120.240000px;}
.fs14{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fs1b{font-size:149.760000px;}
.fs1c{font-size:149.904000px;}
.fsb{font-size:156.240000px;}
.fs7{font-size:167.760000px;}
.fs8{font-size:167.904000px;}
.fs11{font-size:192.240000px;}
.fs10{font-size:216.000000px;}
.fsc{font-size:228.384000px;}
.fs0{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y27{bottom:12.960000px;}
.y10{bottom:15.012000px;}
.y5e{bottom:19.116000px;}
.y41{bottom:23.832000px;}
.y34{bottom:31.320000px;}
.y6c{bottom:33.804000px;}
.y23{bottom:36.684000px;}
.y3f{bottom:55.584000px;}
.y20{bottom:57.708000px;}
.y6b{bottom:59.004000px;}
.y5d{bottom:69.552000px;}
.y4d{bottom:69.660000px;}
.y2e{bottom:80.496000px;}
.y22{bottom:83.484000px;}
.y48{bottom:83.988000px;}
.y3e{bottom:84.384000px;}
.y1f{bottom:100.944000px;}
.y3d{bottom:113.184000px;}
.y5c{bottom:119.952000px;}
.y33{bottom:123.552000px;}
.y6a{bottom:127.440000px;}
.y21{bottom:130.284000px;}
.y47{bottom:135.324000px;}
.y3c{bottom:141.984000px;}
.y1e{bottom:144.144000px;}
.y5b{bottom:145.152000px;}
.y69{bottom:152.640000px;}
.y25{bottom:153.330000px;}
.y26{bottom:157.575000px;}
.y18{bottom:158.475000px;}
.y46{bottom:167.730000px;}
.y8{bottom:171.690000px;}
.yf{bottom:181.050000px;}
.y1d{bottom:187.350000px;}
.y5a{bottom:195.555000px;}
.y3b{bottom:198.720000px;}
.y4c{bottom:204.690000px;}
.y17{bottom:208.905000px;}
.y32{bottom:210.315000px;}
.y7{bottom:213.090000px;}
.y59{bottom:220.755000px;}
.y68{bottom:221.040000px;}
.ye{bottom:231.450000px;}
.y67{bottom:246.240000px;}
.y58{bottom:271.185000px;}
.y6{bottom:271.980000px;}
.y3a{bottom:273.240000px;}
.y2b{bottom:276.990000px;}
.y30{bottom:287.790000px;}
.y39{bottom:293.400000px;}
.y31{bottom:295.485000px;}
.y2f{bottom:308.880000px;}
.y16{bottom:309.705000px;}
.y66{bottom:314.670000px;}
.y5{bottom:315.180000px;}
.y57{bottom:321.585000px;}
.yd{bottom:332.280000px;}
.y4b{bottom:339.690000px;}
.y2a{bottom:341.790000px;}
.y45{bottom:342.930000px;}
.y56{bottom:346.785000px;}
.y65{bottom:348.870000px;}
.y15{bottom:360.150000px;}
.y44{bottom:375.330000px;}
.yc{bottom:382.680000px;}
.y38{bottom:391.170000px;}
.y4{bottom:395.460000px;}
.y55{bottom:397.185000px;}
.y14{bottom:410.550000px;}
.y64{bottom:417.270000px;}
.y54{bottom:422.430000px;}
.yb{bottom:433.110000px;}
.y63{bottom:451.470000px;}
.y29{bottom:471.420000px;}
.y53{bottom:472.830000px;}
.y3{bottom:474.660000px;}
.y4a{bottom:474.735000px;}
.ya{bottom:483.510000px;}
.y1c{bottom:487.770000px;}
.y52{bottom:498.030000px;}
.y37{bottom:499.170000px;}
.y2d{bottom:509.250000px;}
.y13{bottom:511.350000px;}
.y62{bottom:519.915000px;}
.y1b{bottom:530.970000px;}
.y36{bottom:534.495000px;}
.y28{bottom:536.220000px;}
.y51{bottom:548.430000px;}
.y43{bottom:550.545000px;}
.y2c{bottom:552.630000px;}
.y2{bottom:553.890000px;}
.y61{bottom:554.115000px;}
.y12{bottom:561.780000px;}
.y50{bottom:573.630000px;}
.y1a{bottom:574.200000px;}
.y42{bottom:582.945000px;}
.y40{bottom:583.890000px;}
.y35{bottom:607.215000px;}
.y49{bottom:609.765000px;}
.y11{bottom:612.180000px;}
.y19{bottom:617.400000px;}
.y60{bottom:622.515000px;}
.y4f{bottom:624.060000px;}
.y1{bottom:633.090000px;}
.y5f{bottom:647.715000px;}
.y4e{bottom:649.260000px;}
.y9{bottom:718.095000px;}
.y24{bottom:719.970000px;}
.hf{height:41.317383px;}
.he{height:45.724570px;}
.h15{height:50.682656px;}
.h14{height:50.792836px;}
.h5{height:61.149727px;}
.h12{height:64.455117px;}
.h20{height:64.565297px;}
.h1f{height:67.940980px;}
.h21{height:68.057118px;}
.h1a{height:80.703984px;}
.ha{height:82.634766px;}
.h1c{height:82.744945px;}
.h10{height:90.842766px;}
.h1b{height:91.283203px;}
.h6{height:92.000039px;}
.h19{height:101.335078px;}
.h16{height:101.456438px;}
.hb{height:110.179688px;}
.h4{height:110.289867px;}
.h1d{height:114.586875px;}
.h1e{height:114.697055px;}
.h3{height:116.469492px;}
.hc{height:119.544961px;}
.h7{height:128.359336px;}
.h8{height:128.469516px;}
.h9{height:136.340156px;}
.h13{height:147.089883px;}
.h11{height:165.269531px;}
.hd{height:174.744984px;}
.h18{height:181.975078px;}
.h17{height:192.055078px;}
.h1{height:202.179727px;}
.h2{height:202.289906px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x43{left:6.623979px;}
.x24{left:10.799979px;}
.x42{left:14.039979px;}
.x3f{left:24.407979px;}
.x40{left:27.647979px;}
.xc{left:43.595979px;}
.x9{left:47.375979px;}
.x41{left:49.319979px;}
.xa{left:52.955979px;}
.x48{left:68.975979px;}
.x7{left:72.431979px;}
.x1{left:81.503979px;}
.x45{left:87.767979px;}
.x22{left:91.943979px;}
.x1d{left:93.311979px;}
.xd{left:96.695979px;}
.x59{left:100.295979px;}
.x2a{left:108.683979px;}
.x47{left:115.487979px;}
.x8{left:118.799979px;}
.x4{left:121.283979px;}
.x2{left:122.363979px;}
.x1b{left:127.151979px;}
.x25{left:128.231979px;}
.xe{left:130.535979px;}
.xb{left:131.615979px;}
.x46{left:138.707979px;}
.x5f{left:140.075979px;}
.x54{left:142.055979px;}
.x27{left:146.051979px;}
.x20{left:149.903979px;}
.x55{left:154.829979px;}
.x1c{left:168.374979px;}
.x56{left:175.889979px;}
.x5{left:178.094979px;}
.x6{left:181.514979px;}
.x1e{left:196.634979px;}
.x29{left:201.059979px;}
.x3d{left:206.969979px;}
.x31{left:211.424979px;}
.x26{left:214.454979px;}
.x51{left:248.294979px;}
.x3{left:249.299979px;}
.x44{left:254.624979px;}
.x5d{left:256.394979px;}
.x21{left:265.469979px;}
.x1f{left:283.649979px;}
.x34{left:308.549979px;}
.x3e{left:374.789979px;}
.x28{left:384.224979px;}
.x4c{left:385.274979px;}
.x52{left:461.234979px;}
.x2c{left:486.539979px;}
.x5a{left:542.444979px;}
.x2b{left:552.239979px;}
.x4e{left:581.684979px;}
.x32{left:594.104979px;}
.x4f{left:625.784979px;}
.x5e{left:632.984979px;}
.x1a{left:717.044979px;}
.x18{left:746.564979px;}
.x23{left:753.944979px;}
.x5b{left:760.424979px;}
.x5c{left:770.864979px;}
.x19{left:838.184979px;}
.x2e{left:848.909979px;}
.x10{left:861.194979px;}
.x4d{left:870.269979px;}
.x11{left:871.484979px;}
.x14{left:886.784979px;}
.x2d{left:903.449979px;}
.x13{left:913.604979px;}
.x12{left:922.784979px;}
.x49{left:925.889979px;}
.x39{left:927.179979px;}
.x15{left:962.924979px;}
.x3c{left:964.829979px;}
.x16{left:968.864979px;}
.x3b{left:982.289979px;}
.x17{left:984.524979px;}
.x35{left:1015.229979px;}
.x36{left:1018.829979px;}
.x38{left:1035.029979px;}
.x53{left:1041.809979px;}
.x3a{left:1085.249979px;}
.x37{left:1089.029979px;}
.x4a{left:1133.459979px;}
.x4b{left:1146.059979px;}
.x57{left:1175.219979px;}
.x30{left:1176.869979px;}
.x50{left:1210.859979px;}
.x2f{left:1254.629979px;}
.x58{left:1355.069979px;}
.x33{left:1401.914979px;}
.xf{left:1415.549979px;}
@media print{
.v5{vertical-align:-77.056000pt;}
.v8{vertical-align:-57.984000pt;}
.v2{vertical-align:-38.400000pt;}
.v3{vertical-align:-32.000000pt;}
.v9{vertical-align:-21.760000pt;}
.vf{vertical-align:-17.280000pt;}
.v7{vertical-align:-13.866667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.296000pt;}
.v10{vertical-align:17.280000pt;}
.va{vertical-align:21.760000pt;}
.ve{vertical-align:25.728000pt;}
.v1{vertical-align:38.400000pt;}
.v4{vertical-align:44.800000pt;}
.vd{vertical-align:49.920000pt;}
.vc{vertical-align:71.680000pt;}
.vb{vertical-align:80.640000pt;}
.lse{letter-spacing:-0.402667pt;}
.ls17{letter-spacing:-0.337306pt;}
.ls12{letter-spacing:-0.331733pt;}
.lsd{letter-spacing:-0.287467pt;}
.ls16{letter-spacing:-0.258601pt;}
.lsf{letter-spacing:-0.219733pt;}
.ls3{letter-spacing:-0.202133pt;}
.ls10{letter-spacing:-0.120533pt;}
.ls11{letter-spacing:-0.118933pt;}
.ls18{letter-spacing:-0.029440pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls13{letter-spacing:-0.007680pt;}
.ls19{letter-spacing:-0.006933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.118400pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.267733pt;}
.ls15{letter-spacing:0.303467pt;}
.ls14{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.391040pt;}
.lsb{letter-spacing:3.735680pt;}
.ls7{letter-spacing:4.637568pt;}
.ls9{letter-spacing:4.711680pt;}
.ls6{letter-spacing:16.157568pt;}
.ls8{letter-spacing:16.231680pt;}
.lsa{letter-spacing:16.391680pt;}
.ws6{word-spacing:-78.215040pt;}
.ws3{word-spacing:-49.656960pt;}
.wsa{word-spacing:-42.666624pt;}
.ws5{word-spacing:-42.624000pt;}
.ws1{word-spacing:-35.591040pt;}
.ws4{word-spacing:-33.044587pt;}
.ws7{word-spacing:-31.968000pt;}
.ws0{word-spacing:-28.344960pt;}
.ws21{word-spacing:-26.283577pt;}
.ws1c{word-spacing:-24.977664pt;}
.ws1e{word-spacing:-24.948224pt;}
.ws1d{word-spacing:-24.935040pt;}
.wsb{word-spacing:-23.541760pt;}
.ws10{word-spacing:-23.513600pt;}
.ws12{word-spacing:-23.393067pt;}
.ws11{word-spacing:-23.293867pt;}
.ws9{word-spacing:-19.607040pt;}
.ws18{word-spacing:-19.010304pt;}
.ws19{word-spacing:-18.967680pt;}
.ws1a{word-spacing:-18.726400pt;}
.ws17{word-spacing:-18.718720pt;}
.wsf{word-spacing:-0.745472pt;}
.ws1f{word-spacing:-0.695680pt;}
.ws14{word-spacing:-0.465920pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:0.646953pt;}
.ws15{word-spacing:1.138560pt;}
.wse{word-spacing:1.821376pt;}
.wsd{word-spacing:5.963264pt;}
.wsc{word-spacing:9.065152pt;}
.ws16{word-spacing:44.174080pt;}
.ws13{word-spacing:221.769280pt;}
.ws1b{word-spacing:1539.713920pt;}
.ws8{word-spacing:2057.383680pt;}
._2{margin-left:-3.194880pt;}
._0{margin-left:-1.879040pt;}
._3{margin-left:-0.895488pt;}
._1{width:1.384960pt;}
._4{width:2.475520pt;}
._f{width:3.623680pt;}
._a{width:11.344640pt;}
._b{width:12.538624pt;}
._15{width:23.300693pt;}
._14{width:25.983147pt;}
._13{width:27.171797pt;}
._c{width:29.136853pt;}
._e{width:30.120747pt;}
._d{width:91.680640pt;}
._9{width:130.093056pt;}
._5{width:955.513813pt;}
._11{width:1402.687488pt;}
._8{width:2046.830720pt;}
._12{width:3784.632107pt;}
._10{width:3825.975723pt;}
._7{width:4553.144107pt;}
._6{width:4555.577387pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:53.120000pt;}
.fs18{font-size:56.960000pt;}
.fs17{font-size:57.088000pt;}
.fs13{font-size:58.880000pt;}
.fs12{font-size:59.008000pt;}
.fs19{font-size:62.080000pt;}
.fs5{font-size:71.040000pt;}
.fsf{font-size:74.880000pt;}
.fs1e{font-size:75.008000pt;}
.fs16{font-size:78.080000pt;}
.fs15{font-size:78.208000pt;}
.fs1d{font-size:78.929661pt;}
.fs1f{font-size:79.064584pt;}
.fs3{font-size:85.120000pt;}
.fsa{font-size:96.000000pt;}
.fs1a{font-size:96.128000pt;}
.fs9{font-size:99.840000pt;}
.fs6{font-size:106.880000pt;}
.fs14{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fs1b{font-size:133.120000pt;}
.fs1c{font-size:133.248000pt;}
.fsb{font-size:138.880000pt;}
.fs7{font-size:149.120000pt;}
.fs8{font-size:149.248000pt;}
.fs11{font-size:170.880000pt;}
.fs10{font-size:192.000000pt;}
.fsc{font-size:203.008000pt;}
.fs0{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:11.520000pt;}
.y10{bottom:13.344000pt;}
.y5e{bottom:16.992000pt;}
.y41{bottom:21.184000pt;}
.y34{bottom:27.840000pt;}
.y6c{bottom:30.048000pt;}
.y23{bottom:32.608000pt;}
.y3f{bottom:49.408000pt;}
.y20{bottom:51.296000pt;}
.y6b{bottom:52.448000pt;}
.y5d{bottom:61.824000pt;}
.y4d{bottom:61.920000pt;}
.y2e{bottom:71.552000pt;}
.y22{bottom:74.208000pt;}
.y48{bottom:74.656000pt;}
.y3e{bottom:75.008000pt;}
.y1f{bottom:89.728000pt;}
.y3d{bottom:100.608000pt;}
.y5c{bottom:106.624000pt;}
.y33{bottom:109.824000pt;}
.y6a{bottom:113.280000pt;}
.y21{bottom:115.808000pt;}
.y47{bottom:120.288000pt;}
.y3c{bottom:126.208000pt;}
.y1e{bottom:128.128000pt;}
.y5b{bottom:129.024000pt;}
.y69{bottom:135.680000pt;}
.y25{bottom:136.293333pt;}
.y26{bottom:140.066667pt;}
.y18{bottom:140.866667pt;}
.y46{bottom:149.093333pt;}
.y8{bottom:152.613333pt;}
.yf{bottom:160.933333pt;}
.y1d{bottom:166.533333pt;}
.y5a{bottom:173.826667pt;}
.y3b{bottom:176.640000pt;}
.y4c{bottom:181.946667pt;}
.y17{bottom:185.693333pt;}
.y32{bottom:186.946667pt;}
.y7{bottom:189.413333pt;}
.y59{bottom:196.226667pt;}
.y68{bottom:196.480000pt;}
.ye{bottom:205.733333pt;}
.y67{bottom:218.880000pt;}
.y58{bottom:241.053333pt;}
.y6{bottom:241.760000pt;}
.y3a{bottom:242.880000pt;}
.y2b{bottom:246.213333pt;}
.y30{bottom:255.813333pt;}
.y39{bottom:260.800000pt;}
.y31{bottom:262.653333pt;}
.y2f{bottom:274.560000pt;}
.y16{bottom:275.293333pt;}
.y66{bottom:279.706667pt;}
.y5{bottom:280.160000pt;}
.y57{bottom:285.853333pt;}
.yd{bottom:295.360000pt;}
.y4b{bottom:301.946667pt;}
.y2a{bottom:303.813333pt;}
.y45{bottom:304.826667pt;}
.y56{bottom:308.253333pt;}
.y65{bottom:310.106667pt;}
.y15{bottom:320.133333pt;}
.y44{bottom:333.626667pt;}
.yc{bottom:340.160000pt;}
.y38{bottom:347.706667pt;}
.y4{bottom:351.520000pt;}
.y55{bottom:353.053333pt;}
.y14{bottom:364.933333pt;}
.y64{bottom:370.906667pt;}
.y54{bottom:375.493333pt;}
.yb{bottom:384.986667pt;}
.y63{bottom:401.306667pt;}
.y29{bottom:419.040000pt;}
.y53{bottom:420.293333pt;}
.y3{bottom:421.920000pt;}
.y4a{bottom:421.986667pt;}
.ya{bottom:429.786667pt;}
.y1c{bottom:433.573333pt;}
.y52{bottom:442.693333pt;}
.y37{bottom:443.706667pt;}
.y2d{bottom:452.666667pt;}
.y13{bottom:454.533333pt;}
.y62{bottom:462.146667pt;}
.y1b{bottom:471.973333pt;}
.y36{bottom:475.106667pt;}
.y28{bottom:476.640000pt;}
.y51{bottom:487.493333pt;}
.y43{bottom:489.373333pt;}
.y2c{bottom:491.226667pt;}
.y2{bottom:492.346667pt;}
.y61{bottom:492.546667pt;}
.y12{bottom:499.360000pt;}
.y50{bottom:509.893333pt;}
.y1a{bottom:510.400000pt;}
.y42{bottom:518.173333pt;}
.y40{bottom:519.013333pt;}
.y35{bottom:539.746667pt;}
.y49{bottom:542.013333pt;}
.y11{bottom:544.160000pt;}
.y19{bottom:548.800000pt;}
.y60{bottom:553.346667pt;}
.y4f{bottom:554.720000pt;}
.y1{bottom:562.746667pt;}
.y5f{bottom:575.746667pt;}
.y4e{bottom:577.120000pt;}
.y9{bottom:638.306667pt;}
.y24{bottom:639.973333pt;}
.hf{height:36.726563pt;}
.he{height:40.644063pt;}
.h15{height:45.051250pt;}
.h14{height:45.149187pt;}
.h5{height:54.355312pt;}
.h12{height:57.293437pt;}
.h20{height:57.391375pt;}
.h1f{height:60.391982pt;}
.h21{height:60.495216pt;}
.h1a{height:71.736875pt;}
.ha{height:73.453125pt;}
.h1c{height:73.551063pt;}
.h10{height:80.749125pt;}
.h1b{height:81.140625pt;}
.h6{height:81.777812pt;}
.h19{height:90.075625pt;}
.h16{height:90.183500pt;}
.hb{height:97.937500pt;}
.h4{height:98.035438pt;}
.h1d{height:101.855000pt;}
.h1e{height:101.952937pt;}
.h3{height:103.528438pt;}
.hc{height:106.262187pt;}
.h7{height:114.097187pt;}
.h8{height:114.195125pt;}
.h9{height:121.191250pt;}
.h13{height:130.746563pt;}
.h11{height:146.906250pt;}
.hd{height:155.328875pt;}
.h18{height:161.755625pt;}
.h17{height:170.715625pt;}
.h1{height:179.715313pt;}
.h2{height:179.813250pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x43{left:5.887981pt;}
.x24{left:9.599981pt;}
.x42{left:12.479981pt;}
.x3f{left:21.695981pt;}
.x40{left:24.575981pt;}
.xc{left:38.751981pt;}
.x9{left:42.111981pt;}
.x41{left:43.839981pt;}
.xa{left:47.071981pt;}
.x48{left:61.311981pt;}
.x7{left:64.383981pt;}
.x1{left:72.447981pt;}
.x45{left:78.015981pt;}
.x22{left:81.727981pt;}
.x1d{left:82.943981pt;}
.xd{left:85.951981pt;}
.x59{left:89.151981pt;}
.x2a{left:96.607981pt;}
.x47{left:102.655981pt;}
.x8{left:105.599981pt;}
.x4{left:107.807981pt;}
.x2{left:108.767981pt;}
.x1b{left:113.023981pt;}
.x25{left:113.983981pt;}
.xe{left:116.031981pt;}
.xb{left:116.991981pt;}
.x46{left:123.295981pt;}
.x5f{left:124.511981pt;}
.x54{left:126.271981pt;}
.x27{left:129.823981pt;}
.x20{left:133.247981pt;}
.x55{left:137.626648pt;}
.x1c{left:149.666648pt;}
.x56{left:156.346648pt;}
.x5{left:158.306648pt;}
.x6{left:161.346648pt;}
.x1e{left:174.786648pt;}
.x29{left:178.719981pt;}
.x3d{left:183.973314pt;}
.x31{left:187.933314pt;}
.x26{left:190.626648pt;}
.x51{left:220.706648pt;}
.x3{left:221.599981pt;}
.x44{left:226.333314pt;}
.x5d{left:227.906648pt;}
.x21{left:235.973314pt;}
.x1f{left:252.133314pt;}
.x34{left:274.266648pt;}
.x3e{left:333.146648pt;}
.x28{left:341.533314pt;}
.x4c{left:342.466648pt;}
.x52{left:409.986648pt;}
.x2c{left:432.479981pt;}
.x5a{left:482.173314pt;}
.x2b{left:490.879981pt;}
.x4e{left:517.053314pt;}
.x32{left:528.093314pt;}
.x4f{left:556.253314pt;}
.x5e{left:562.653314pt;}
.x1a{left:637.373314pt;}
.x18{left:663.613314pt;}
.x23{left:670.173314pt;}
.x5b{left:675.933314pt;}
.x5c{left:685.213314pt;}
.x19{left:745.053314pt;}
.x2e{left:754.586648pt;}
.x10{left:765.506648pt;}
.x4d{left:773.573314pt;}
.x11{left:774.653314pt;}
.x14{left:788.253314pt;}
.x2d{left:803.066648pt;}
.x13{left:812.093314pt;}
.x12{left:820.253314pt;}
.x49{left:823.013314pt;}
.x39{left:824.159981pt;}
.x15{left:855.933314pt;}
.x3c{left:857.626648pt;}
.x16{left:861.213314pt;}
.x3b{left:873.146648pt;}
.x17{left:875.133314pt;}
.x35{left:902.426648pt;}
.x36{left:905.626648pt;}
.x38{left:920.026648pt;}
.x53{left:926.053314pt;}
.x3a{left:964.666648pt;}
.x37{left:968.026648pt;}
.x4a{left:1007.519981pt;}
.x4b{left:1018.719981pt;}
.x57{left:1044.639981pt;}
.x30{left:1046.106648pt;}
.x50{left:1076.319981pt;}
.x2f{left:1115.226648pt;}
.x58{left:1204.506648pt;}
.x33{left:1246.146648pt;}
.xf{left:1258.266648pt;}
}




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