
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_21d8bc16142e143dc2e6fd8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_0165516b29e372b58723e4d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_effeed4fc271477c44e96703.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_550c9646860a781e390c1bc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_02a9bb15bacba8ecab21df61.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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:ff7;src:url('chunks/assets/font_8a9d8311ceaa48bb2818f3f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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:ff8;src:url('chunks/assets/font_00a9a88d81fc2bbbc87c655d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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:ff9;src:url('chunks/assets/font_f4009b4c8d0f5609a33f781c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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:ffa;src:url('chunks/assets/font_91fac2e738c67c71000d6b4c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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:ffb;src:url('chunks/assets/font_6e09a8a00501f41a9d29e8e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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:ffc;src:url('chunks/assets/font_639bc5f59ad3ea2e04d0bce9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;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:ffd;src:url('chunks/assets/font_f4009b4c8d0f5609a33f781c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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:ffe;src:url('chunks/assets/font_60c173c9e38ecb55ede5f819.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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);}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.070800px;}
.ls17{letter-spacing:-0.063600px;}
.lsf{letter-spacing:-0.031800px;}
.ls1b{letter-spacing:-0.018360px;}
.ls11{letter-spacing:-0.015000px;}
.ls1e{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.043560px;}
.ls13{letter-spacing:0.045360px;}
.lsa{letter-spacing:0.045600px;}
.ls14{letter-spacing:0.048960px;}
.ls19{letter-spacing:0.064800px;}
.lsb{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls7{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.160800px;}
.lse{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:3.506400px;}
.ls1d{letter-spacing:47.726640px;}
.ls1a{letter-spacing:63.566640px;}
.ls1c{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.387200px;}
.wsf{word-spacing:-13.275360px;}
.ws6{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.211400px;}
.ws14{word-spacing:-13.208040px;}
.ws12{word-spacing:-13.162800px;}
.ws13{word-spacing:-13.155600px;}
.ws11{word-spacing:-13.141800px;}
.wsc{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-11.880000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws4{word-spacing:-9.331800px;}
.ws5{word-spacing:-8.553600px;}
.wsd{word-spacing:0.000000px;}
.ws3{word-spacing:3.829428px;}
.ws9{word-spacing:4.304880px;}
._2{margin-left:-39.701028px;}
._a{margin-left:-3.245763px;}
._5{margin-left:-2.164200px;}
._0{margin-left:-1.014000px;}
._1{width:1.236360px;}
._3{width:2.825400px;}
._9{width:4.569000px;}
._4{width:6.252600px;}
._c{width:7.695360px;}
._d{width:9.078120px;}
._7{width:10.280400px;}
._8{width:11.337361px;}
._6{width:14.549401px;}
._b{width:15.691200px;}
._e{width:23.266440px;}
._17{width:24.709320px;}
._10{width:27.114120px;}
._13{width:30.042720px;}
._11{width:31.743360px;}
._16{width:32.945760px;}
._f{width:40.460760px;}
._14{width:116.031600px;}
._15{width:208.436040px;}
._12{width:1104.030000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs8{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y77{bottom:3.330000px;}
.y75{bottom:4.500000px;}
.y46{bottom:7.830000px;}
.y43{bottom:7.920000px;}
.y73{bottom:25.380000px;}
.y6d{bottom:25.470000px;}
.y71{bottom:43.020000px;}
.y70{bottom:60.570000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y6f{bottom:78.210000px;}
.y1{bottom:119.910000px;}
.y76{bottom:129.360000px;}
.y3d{bottom:133.680000px;}
.y60{bottom:138.540000px;}
.y9c{bottom:144.750000px;}
.y3c{bottom:154.110000px;}
.y74{bottom:156.630000px;}
.y9b{bottom:162.390000px;}
.y5f{bottom:165.090000px;}
.y3b{bottom:171.660000px;}
.y9a{bottom:189.300000px;}
.y3a{bottom:198.300000px;}
.y5e{bottom:200.640000px;}
.y25{bottom:201.810000px;}
.y24{bottom:219.450000px;}
.y99{bottom:226.650000px;}
.y5d{bottom:227.280000px;}
.y39{bottom:233.850000px;}
.y7d{bottom:248.610000px;}
.y38{bottom:251.490000px;}
.y23{bottom:255.000000px;}
.y5c{bottom:262.830000px;}
.y7c{bottom:266.250000px;}
.y37{bottom:269.040000px;}
.y22{bottom:272.550000px;}
.y98{bottom:274.890000px;}
.y7b{bottom:283.800000px;}
.y5b{bottom:289.470000px;}
.y21{bottom:290.190000px;}
.y97{bottom:292.440000px;}
.y36{bottom:295.590000px;}
.y20{bottom:307.740000px;}
.y96{bottom:310.080000px;}
.y7a{bottom:310.440000px;}
.y5a{bottom:325.020000px;}
.y1f{bottom:325.380000px;}
.y35{bottom:331.230000px;}
.y95{bottom:336.990000px;}
.y59{bottom:342.570000px;}
.y1e{bottom:342.930000px;}
.y79{bottom:345.990000px;}
.y34{bottom:348.780000px;}
.y58{bottom:360.210000px;}
.y1d{bottom:360.480000px;}
.y57{bottom:377.760000px;}
.y1c{bottom:378.120000px;}
.y78{bottom:378.210000px;}
.y33{bottom:384.420000px;}
.y94{bottom:385.230000px;}
.y1b{bottom:395.670000px;}
.y32{bottom:401.970000px;}
.y93{bottom:402.780000px;}
.y1a{bottom:413.310000px;}
.y56{bottom:413.400000px;}
.y31{bottom:419.520000px;}
.y92{bottom:421.230000px;}
.y19{bottom:430.860000px;}
.y55{bottom:430.950000px;}
.y30{bottom:437.160000px;}
.y91{bottom:438.780000px;}
.y18{bottom:448.410000px;}
.y54{bottom:448.500000px;}
.y90{bottom:457.230000px;}
.y2f{bottom:463.710000px;}
.y17{bottom:466.050000px;}
.y53{bottom:466.140000px;}
.y8f{bottom:474.810000px;}
.y16{bottom:483.630000px;}
.y52{bottom:483.720000px;}
.y8e{bottom:493.260000px;}
.y2e{bottom:499.290000px;}
.y15{bottom:501.270000px;}
.y8d{bottom:510.810000px;}
.y14{bottom:518.820000px;}
.y51{bottom:518.910000px;}
.y8c{bottom:529.260000px;}
.y2d{bottom:531.510000px;}
.y13{bottom:536.370000px;}
.y50{bottom:545.460000px;}
.y8b{bottom:547.620000px;}
.y12{bottom:554.010000px;}
.y8a{bottom:566.070000px;}
.y4f{bottom:580.380000px;}
.y11{bottom:580.920000px;}
.y89{bottom:584.430000px;}
.y4e{bottom:592.530000px;}
.y88{bottom:602.880000px;}
.y4d{bottom:619.890000px;}
.y87{bottom:620.430000px;}
.y10{bottom:629.520000px;}
.y72{bottom:630.060000px;}
.y86{bottom:638.880000px;}
.y4c{bottom:647.160000px;}
.y85{bottom:656.430000px;}
.yf{bottom:666.510000px;}
.yb0{bottom:674.340000px;}
.y4b{bottom:674.520000px;}
.y84{bottom:674.880000px;}
.ye{bottom:684.060000px;}
.y83{bottom:692.430000px;}
.yaf{bottom:700.980000px;}
.yd{bottom:701.700000px;}
.y4a{bottom:701.880000px;}
.y82{bottom:710.880000px;}
.yc{bottom:719.250000px;}
.yae{bottom:727.530000px;}
.y6e{bottom:727.710000px;}
.y81{bottom:728.790000px;}
.y49{bottom:729.240000px;}
.yb{bottom:736.890000px;}
.yad{bottom:745.170000px;}
.y48{bottom:756.510000px;}
.y80{bottom:757.140000px;}
.ya{bottom:763.800000px;}
.yac{bottom:771.720000px;}
.y47{bottom:783.870000px;}
.yab{bottom:789.270000px;}
.y7f{bottom:805.470000px;}
.y45{bottom:811.230000px;}
.y9{bottom:812.040000px;}
.yaa{bottom:815.910000px;}
.y7e{bottom:823.020000px;}
.y6c{bottom:825.360000px;}
.y44{bottom:838.500000px;}
.ya9{bottom:842.460000px;}
.y8{bottom:847.860000px;}
.ya8{bottom:860.100000px;}
.y42{bottom:865.860000px;}
.y6b{bottom:870.270000px;}
.y7{bottom:883.860000px;}
.ya7{bottom:886.650000px;}
.ya6{bottom:904.200000px;}
.y41{bottom:914.550000px;}
.y6a{bottom:918.960000px;}
.ya5{bottom:921.840000px;}
.y6{bottom:923.640000px;}
.y5{bottom:941.640000px;}
.ya4{bottom:948.390000px;}
.y40{bottom:950.190000px;}
.y69{bottom:954.600000px;}
.y68{bottom:972.150000px;}
.y4{bottom:973.950000px;}
.ya3{bottom:975.030000px;}
.y3f{bottom:976.740000px;}
.ya2{bottom:992.580000px;}
.y67{bottom:1007.790000px;}
.ya1{bottom:1010.160000px;}
.y3{bottom:1012.230000px;}
.y3e{bottom:1012.320000px;}
.y66{bottom:1025.370000px;}
.y2c{bottom:1029.960000px;}
.ya0{bottom:1036.800000px;}
.y65{bottom:1042.920000px;}
.y2b{bottom:1047.510000px;}
.y64{bottom:1060.560000px;}
.y9f{bottom:1063.710000px;}
.y2a{bottom:1065.150000px;}
.y29{bottom:1091.700000px;}
.y63{bottom:1096.110000px;}
.y9e{bottom:1111.950000px;}
.y62{bottom:1113.750000px;}
.y28{bottom:1127.610000px;}
.y9d{bottom:1138.860000px;}
.y61{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.he{height:26.550000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.h11{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:59.973223px;}
.hb{height:60.960938px;}
.hd{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h14{height:86.215422px;}
.h15{height:87.320391px;}
.h12{height:96.930000px;}
.h8{height:101.499961px;}
.h13{height:425.460000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:35.190000px;}
.w9{width:37.710000px;}
.w6{width:43.560000px;}
.w4{width:46.530000px;}
.w8{width:46.620000px;}
.w5{width:46.650000px;}
.wd{width:242.940000px;}
.w3{width:271.080000px;}
.wc{width:296.730000px;}
.wb{width:341.850000px;}
.wa{width:374.520000px;}
.we{width:540.390000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x16{left:75.329987px;}
.x18{left:95.039987px;}
.xf{left:107.280000px;}
.x1a{left:111.239987px;}
.x19{left:122.039987px;}
.x13{left:138.780000px;}
.x6{left:176.340000px;}
.x2{left:191.459987px;}
.x12{left:235.200000px;}
.x5{left:265.439987px;}
.x15{left:315.299987px;}
.x17{left:351.929987px;}
.xe{left:356.339987px;}
.x8{left:448.230000px;}
.x11{left:473.880000px;}
.x10{left:482.610000px;}
.x9{left:495.480000px;}
.xa{left:542.850000px;}
.xb{left:587.130000px;}
.xc{left:623.040000px;}
.x4{left:646.889987px;}
.xd{left:670.380000px;}
.x14{left:708.809987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.062933pt;}
.ls17{letter-spacing:-0.056533pt;}
.lsf{letter-spacing:-0.028267pt;}
.ls1b{letter-spacing:-0.016320pt;}
.ls11{letter-spacing:-0.013333pt;}
.ls1e{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.038720pt;}
.ls13{letter-spacing:0.040320pt;}
.lsa{letter-spacing:0.040533pt;}
.ls14{letter-spacing:0.043520pt;}
.ls19{letter-spacing:0.057600pt;}
.lsb{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls7{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.142933pt;}
.lse{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:3.116800pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls1a{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:71.863680pt;}
.wsa{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.899733pt;}
.wsf{word-spacing:-11.800320pt;}
.ws6{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.743467pt;}
.ws14{word-spacing:-11.740480pt;}
.ws12{word-spacing:-11.700267pt;}
.ws13{word-spacing:-11.693867pt;}
.ws11{word-spacing:-11.681600pt;}
.wsc{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws4{word-spacing:-8.294933pt;}
.ws5{word-spacing:-7.603200pt;}
.wsd{word-spacing:0.000000pt;}
.ws3{word-spacing:3.403936pt;}
.ws9{word-spacing:3.826560pt;}
._2{margin-left:-35.289803pt;}
._a{margin-left:-2.885122pt;}
._5{margin-left:-1.923733pt;}
._0{margin-left:-0.901333pt;}
._1{width:1.098987pt;}
._3{width:2.511466pt;}
._9{width:4.061333pt;}
._4{width:5.557867pt;}
._c{width:6.840320pt;}
._d{width:8.069440pt;}
._7{width:9.138133pt;}
._8{width:10.077654pt;}
._6{width:12.932801pt;}
._b{width:13.947733pt;}
._e{width:20.681280pt;}
._17{width:21.963840pt;}
._10{width:24.101440pt;}
._13{width:26.704640pt;}
._11{width:28.216320pt;}
._16{width:29.285120pt;}
._f{width:35.965120pt;}
._14{width:103.139200pt;}
._15{width:185.276480pt;}
._12{width:981.360000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs8{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.960000pt;}
.y75{bottom:4.000000pt;}
.y46{bottom:6.960000pt;}
.y43{bottom:7.040000pt;}
.y73{bottom:22.560000pt;}
.y6d{bottom:22.640000pt;}
.y71{bottom:38.240000pt;}
.y70{bottom:53.840000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y6f{bottom:69.520000pt;}
.y1{bottom:106.586667pt;}
.y76{bottom:114.986667pt;}
.y3d{bottom:118.826667pt;}
.y60{bottom:123.146667pt;}
.y9c{bottom:128.666667pt;}
.y3c{bottom:136.986667pt;}
.y74{bottom:139.226667pt;}
.y9b{bottom:144.346667pt;}
.y5f{bottom:146.746667pt;}
.y3b{bottom:152.586667pt;}
.y9a{bottom:168.266667pt;}
.y3a{bottom:176.266667pt;}
.y5e{bottom:178.346667pt;}
.y25{bottom:179.386667pt;}
.y24{bottom:195.066667pt;}
.y99{bottom:201.466667pt;}
.y5d{bottom:202.026667pt;}
.y39{bottom:207.866667pt;}
.y7d{bottom:220.986667pt;}
.y38{bottom:223.546667pt;}
.y23{bottom:226.666667pt;}
.y5c{bottom:233.626667pt;}
.y7c{bottom:236.666667pt;}
.y37{bottom:239.146667pt;}
.y22{bottom:242.266667pt;}
.y98{bottom:244.346667pt;}
.y7b{bottom:252.266667pt;}
.y5b{bottom:257.306667pt;}
.y21{bottom:257.946667pt;}
.y97{bottom:259.946667pt;}
.y36{bottom:262.746667pt;}
.y20{bottom:273.546667pt;}
.y96{bottom:275.626667pt;}
.y7a{bottom:275.946667pt;}
.y5a{bottom:288.906667pt;}
.y1f{bottom:289.226667pt;}
.y35{bottom:294.426667pt;}
.y95{bottom:299.546667pt;}
.y59{bottom:304.506667pt;}
.y1e{bottom:304.826667pt;}
.y79{bottom:307.546667pt;}
.y34{bottom:310.026667pt;}
.y58{bottom:320.186667pt;}
.y1d{bottom:320.426667pt;}
.y57{bottom:335.786667pt;}
.y1c{bottom:336.106667pt;}
.y78{bottom:336.186667pt;}
.y33{bottom:341.706667pt;}
.y94{bottom:342.426667pt;}
.y1b{bottom:351.706667pt;}
.y32{bottom:357.306667pt;}
.y93{bottom:358.026667pt;}
.y1a{bottom:367.386667pt;}
.y56{bottom:367.466667pt;}
.y31{bottom:372.906667pt;}
.y92{bottom:374.426667pt;}
.y19{bottom:382.986667pt;}
.y55{bottom:383.066667pt;}
.y30{bottom:388.586667pt;}
.y91{bottom:390.026667pt;}
.y18{bottom:398.586667pt;}
.y54{bottom:398.666667pt;}
.y90{bottom:406.426667pt;}
.y2f{bottom:412.186667pt;}
.y17{bottom:414.266667pt;}
.y53{bottom:414.346667pt;}
.y8f{bottom:422.053333pt;}
.y16{bottom:429.893333pt;}
.y52{bottom:429.973333pt;}
.y8e{bottom:438.453333pt;}
.y2e{bottom:443.813333pt;}
.y15{bottom:445.573333pt;}
.y8d{bottom:454.053333pt;}
.y14{bottom:461.173333pt;}
.y51{bottom:461.253333pt;}
.y8c{bottom:470.453333pt;}
.y2d{bottom:472.453333pt;}
.y13{bottom:476.773333pt;}
.y50{bottom:484.853333pt;}
.y8b{bottom:486.773333pt;}
.y12{bottom:492.453333pt;}
.y8a{bottom:503.173333pt;}
.y4f{bottom:515.893333pt;}
.y11{bottom:516.373333pt;}
.y89{bottom:519.493333pt;}
.y4e{bottom:526.693333pt;}
.y88{bottom:535.893333pt;}
.y4d{bottom:551.013333pt;}
.y87{bottom:551.493333pt;}
.y10{bottom:559.573333pt;}
.y72{bottom:560.053333pt;}
.y86{bottom:567.893333pt;}
.y4c{bottom:575.253333pt;}
.y85{bottom:583.493333pt;}
.yf{bottom:592.453333pt;}
.yb0{bottom:599.413333pt;}
.y4b{bottom:599.573333pt;}
.y84{bottom:599.893333pt;}
.ye{bottom:608.053333pt;}
.y83{bottom:615.493333pt;}
.yaf{bottom:623.093333pt;}
.yd{bottom:623.733333pt;}
.y4a{bottom:623.893333pt;}
.y82{bottom:631.893333pt;}
.yc{bottom:639.333333pt;}
.yae{bottom:646.693333pt;}
.y6e{bottom:646.853333pt;}
.y81{bottom:647.813333pt;}
.y49{bottom:648.213333pt;}
.yb{bottom:655.013333pt;}
.yad{bottom:662.373333pt;}
.y48{bottom:672.453333pt;}
.y80{bottom:673.013333pt;}
.ya{bottom:678.933333pt;}
.yac{bottom:685.973333pt;}
.y47{bottom:696.773333pt;}
.yab{bottom:701.573333pt;}
.y7f{bottom:715.973333pt;}
.y45{bottom:721.093333pt;}
.y9{bottom:721.813333pt;}
.yaa{bottom:725.253333pt;}
.y7e{bottom:731.573333pt;}
.y6c{bottom:733.653333pt;}
.y44{bottom:745.333333pt;}
.ya9{bottom:748.853333pt;}
.y8{bottom:753.653333pt;}
.ya8{bottom:764.533333pt;}
.y42{bottom:769.653333pt;}
.y6b{bottom:773.573333pt;}
.y7{bottom:785.653333pt;}
.ya7{bottom:788.133333pt;}
.ya6{bottom:803.733333pt;}
.y41{bottom:812.933333pt;}
.y6a{bottom:816.853333pt;}
.ya5{bottom:819.413333pt;}
.y6{bottom:821.013333pt;}
.y5{bottom:837.013333pt;}
.ya4{bottom:843.013333pt;}
.y40{bottom:844.613333pt;}
.y69{bottom:848.533333pt;}
.y68{bottom:864.133333pt;}
.y4{bottom:865.733333pt;}
.ya3{bottom:866.693333pt;}
.y3f{bottom:868.213333pt;}
.ya2{bottom:882.293333pt;}
.y67{bottom:895.813333pt;}
.ya1{bottom:897.920000pt;}
.y3{bottom:899.760000pt;}
.y3e{bottom:899.840000pt;}
.y66{bottom:911.440000pt;}
.y2c{bottom:915.520000pt;}
.ya0{bottom:921.600000pt;}
.y65{bottom:927.040000pt;}
.y2b{bottom:931.120000pt;}
.y64{bottom:942.720000pt;}
.y9f{bottom:945.520000pt;}
.y2a{bottom:946.800000pt;}
.y29{bottom:970.400000pt;}
.y63{bottom:974.320000pt;}
.y9e{bottom:988.400000pt;}
.y62{bottom:990.000000pt;}
.y28{bottom:1002.320000pt;}
.y9d{bottom:1012.320000pt;}
.y61{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.h11{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:53.309531pt;}
.hb{height:54.187500pt;}
.hd{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h14{height:76.635931pt;}
.h15{height:77.618125pt;}
.h12{height:86.160000pt;}
.h8{height:90.222187pt;}
.h13{height:378.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:31.280000pt;}
.w9{width:33.520000pt;}
.w6{width:38.720000pt;}
.w4{width:41.360000pt;}
.w8{width:41.440000pt;}
.w5{width:41.466667pt;}
.wd{width:215.946667pt;}
.w3{width:240.960000pt;}
.wc{width:263.760000pt;}
.wb{width:303.866667pt;}
.wa{width:332.906667pt;}
.we{width:480.346667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x16{left:66.959988pt;}
.x18{left:84.479988pt;}
.xf{left:95.360000pt;}
.x1a{left:98.879988pt;}
.x19{left:108.479988pt;}
.x13{left:123.360000pt;}
.x6{left:156.746667pt;}
.x2{left:170.186655pt;}
.x12{left:209.066667pt;}
.x5{left:235.946655pt;}
.x15{left:280.266655pt;}
.x17{left:312.826655pt;}
.xe{left:316.746655pt;}
.x8{left:398.426667pt;}
.x11{left:421.226667pt;}
.x10{left:428.986667pt;}
.x9{left:440.426667pt;}
.xa{left:482.533333pt;}
.xb{left:521.893333pt;}
.xc{left:553.813333pt;}
.x4{left:575.013322pt;}
.xd{left:595.893333pt;}
.x14{left:630.053322pt;}
.x3{left:718.773322pt;}
}




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