
    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_9c9c5ff68a3a13bf8665a915.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_068bcb15e9566b2511f45420.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_37053758eb7deeeb16d68411.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_a6ba924e0cd8170b1ab5618d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_920a1911975a6b40532b83e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_1799a73ea15a370df1effbf1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cc7b142f561e261f5429886e.woff2')format("woff");}.ff7{font-family:ff7;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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.117600px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.015000px;}
.ls16{letter-spacing:-0.014760px;}
.ls14{letter-spacing:-0.011160px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls9{letter-spacing:0.053400px;}
.lse{letter-spacing:0.060480px;}
.ls12{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.074400px;}
.ls1{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.093600px;}
.ls4{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.lsf{letter-spacing:0.173520px;}
.ls17{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:47.726640px;}
.ls15{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;}
}
.ws7{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.wse{word-spacing:-13.300800px;}
.ws4{word-spacing:-13.279800px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.215240px;}
.ws5{word-spacing:-13.211400px;}
.ws2{word-spacing:-13.108800px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsd{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._9{margin-left:-4.280879px;}
._8{margin-left:-3.246600px;}
._6{margin-left:-2.204400px;}
._0{margin-left:-1.110000px;}
._1{width:1.006896px;}
._a{width:2.194562px;}
._b{width:3.487200px;}
._5{width:4.736400px;}
._4{width:6.312600px;}
._e{width:7.963800px;}
._7{width:9.378600px;}
._2{width:10.761600px;}
._3{width:11.959077px;}
._f{width:14.488920px;}
._10{width:15.931800px;}
._12{width:17.763240px;}
._c{width:18.937800px;}
._d{width:20.455704px;}
._11{width:21.837528px;}
._13{width:23.807520px;}
._14{width:36.763200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y62{bottom:7.830000px;}
.y65{bottom:7.920000px;}
.y86{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y8f{bottom:95.130000px;}
.y1{bottom:101.640000px;}
.ycf{bottom:113.790000px;}
.y89{bottom:117.180000px;}
.y9b{bottom:117.210000px;}
.y95{bottom:117.270000px;}
.y5a{bottom:119.910000px;}
.y7e{bottom:124.050000px;}
.ya8{bottom:124.500000px;}
.yfc{bottom:133.320000px;}
.y2a{bottom:133.860000px;}
.y59{bottom:137.460000px;}
.yce{bottom:140.430000px;}
.ya7{bottom:142.050000px;}
.yfb{bottom:150.870000px;}
.y29{bottom:151.410000px;}
.y58{bottom:155.100000px;}
.ycd{bottom:157.980000px;}
.ya6{bottom:159.690000px;}
.y28{bottom:168.960000px;}
.ya5{bottom:177.240000px;}
.yfa{bottom:177.510000px;}
.y7d{bottom:178.680000px;}
.y57{bottom:181.650000px;}
.ycc{bottom:184.890000px;}
.y27{bottom:186.600000px;}
.ya4{bottom:194.790000px;}
.yf9{bottom:195.060000px;}
.y26{bottom:204.150000px;}
.y7c{bottom:206.040000px;}
.y56{bottom:217.200000px;}
.yf8{bottom:221.610000px;}
.ya3{bottom:221.700000px;}
.y25{bottom:221.790000px;}
.ycb{bottom:233.220000px;}
.y7b{bottom:233.400000px;}
.y55{bottom:234.840000px;}
.yf7{bottom:239.250000px;}
.y24{bottom:239.340000px;}
.y54{bottom:252.390000px;}
.y23{bottom:256.890000px;}
.yca{bottom:260.130000px;}
.yf6{bottom:265.800000px;}
.y53{bottom:269.940000px;}
.ya2{bottom:270.030000px;}
.y22{bottom:274.530000px;}
.y7a{bottom:282.090000px;}
.y52{bottom:287.580000px;}
.y21{bottom:292.080000px;}
.yf5{bottom:292.440000px;}
.yc9{bottom:297.120000px;}
.y51{bottom:305.130000px;}
.ya1{bottom:305.220000px;}
.y20{bottom:309.630000px;}
.yc8{bottom:314.670000px;}
.y79{bottom:317.640000px;}
.yf4{bottom:318.990000px;}
.y50{bottom:322.770000px;}
.y1f{bottom:327.270000px;}
.y78{bottom:335.280000px;}
.yf3{bottom:336.540000px;}
.ya0{bottom:340.320000px;}
.yc7{bottom:341.580000px;}
.y4f{bottom:349.320000px;}
.y77{bottom:352.830000px;}
.y1e{bottom:354.180000px;}
.yf2{bottom:363.180000px;}
.y76{bottom:370.380000px;}
.y9a{bottom:373.350000px;}
.yc6{bottom:378.660000px;}
.yf1{bottom:380.730000px;}
.y4e{bottom:384.870000px;}
.yc5{bottom:396.210000px;}
.y9f{bottom:400.620000px;}
.y4d{bottom:402.510000px;}
.y1d{bottom:402.780000px;}
.y75{bottom:403.410000px;}
.yf0{bottom:407.370000px;}
.y4c{bottom:420.060000px;}
.yc4{bottom:423.120000px;}
.yef{bottom:424.920000px;}
.y9e{bottom:427.980000px;}
.y74{bottom:430.770000px;}
.y4b{bottom:437.700000px;}
.y1c{bottom:439.770000px;}
.yee{bottom:451.470000px;}
.y4a{bottom:455.250000px;}
.y9d{bottom:455.340000px;}
.y1b{bottom:457.410000px;}
.y73{bottom:458.040000px;}
.yc3{bottom:460.110000px;}
.yed{bottom:469.110000px;}
.y1a{bottom:474.990000px;}
.y49{bottom:481.830000px;}
.y9c{bottom:482.730000px;}
.y72{bottom:485.430000px;}
.yc2{bottom:487.050000px;}
.y19{bottom:492.540000px;}
.yec{bottom:495.690000px;}
.y94{bottom:510.000000px;}
.y18{bottom:510.180000px;}
.y71{bottom:512.790000px;}
.yeb{bottom:513.330000px;}
.y48{bottom:517.470000px;}
.yc1{bottom:524.400000px;}
.y17{bottom:527.730000px;}
.yea{bottom:530.880000px;}
.y99{bottom:537.360000px;}
.y70{bottom:540.060000px;}
.y47{bottom:544.020000px;}
.y16{bottom:545.370000px;}
.ye9{bottom:557.430000px;}
.y15{bottom:562.920000px;}
.y98{bottom:564.720000px;}
.y6f{bottom:567.420000px;}
.yc0{bottom:572.730000px;}
.ye8{bottom:575.070000px;}
.y46{bottom:579.660000px;}
.y14{bottom:580.470000px;}
.ybf{bottom:590.280000px;}
.y97{bottom:591.990000px;}
.ye7{bottom:592.620000px;}
.y45{bottom:597.210000px;}
.y13{bottom:598.110000px;}
.ybe{bottom:607.830000px;}
.y44{bottom:614.760000px;}
.y12{bottom:615.660000px;}
.y6e{bottom:616.110000px;}
.ye6{bottom:619.260000px;}
.y96{bottom:619.350000px;}
.ybd{bottom:625.470000px;}
.y43{bottom:632.400000px;}
.y11{bottom:633.210000px;}
.ye5{bottom:636.810000px;}
.y8e{bottom:646.710000px;}
.y42{bottom:649.950000px;}
.y10{bottom:650.850000px;}
.y6d{bottom:651.750000px;}
.ybc{bottom:652.380000px;}
.ye4{bottom:663.360000px;}
.y41{bottom:667.590000px;}
.yf{bottom:668.400000px;}
.y6c{bottom:669.300000px;}
.y93{bottom:674.070000px;}
.ye3{bottom:681.000000px;}
.y40{bottom:685.140000px;}
.ye{bottom:686.040000px;}
.y6b{bottom:686.850000px;}
.ybb{bottom:700.620000px;}
.y92{bottom:701.340000px;}
.y3f{bottom:702.690000px;}
.yd{bottom:703.590000px;}
.y6a{bottom:704.490000px;}
.ye2{bottom:707.550000px;}
.yba{bottom:718.260000px;}
.yc{bottom:721.140000px;}
.y91{bottom:728.700000px;}
.y3e{bottom:729.330000px;}
.ye1{bottom:734.190000px;}
.yb9{bottom:735.810000px;}
.y69{bottom:737.430000px;}
.yb{bottom:738.780000px;}
.ye0{bottom:751.740000px;}
.yb8{bottom:753.360000px;}
.y90{bottom:756.060000px;}
.y68{bottom:764.790000px;}
.y3d{bottom:764.880000px;}
.ya{bottom:765.690000px;}
.y109{bottom:769.290000px;}
.yb7{bottom:771.000000px;}
.ydf{bottom:778.290000px;}
.y3c{bottom:782.520000px;}
.y88{bottom:783.420000px;}
.y108{bottom:786.930000px;}
.yb6{bottom:788.550000px;}
.y67{bottom:792.150000px;}
.yde{bottom:795.930000px;}
.yb5{bottom:806.190000px;}
.y3b{bottom:809.070000px;}
.y8d{bottom:810.690000px;}
.y9{bottom:812.490000px;}
.y107{bottom:813.480000px;}
.y66{bottom:819.420000px;}
.ydd{bottom:822.480000px;}
.yb4{bottom:823.740000px;}
.y106{bottom:831.030000px;}
.y8c{bottom:838.050000px;}
.ydc{bottom:840.030000px;}
.yb3{bottom:841.290000px;}
.y3a{bottom:844.620000px;}
.y64{bottom:846.780000px;}
.y8{bottom:848.040000px;}
.y105{bottom:857.670000px;}
.yb2{bottom:858.930000px;}
.y39{bottom:862.260000px;}
.y8b{bottom:865.410000px;}
.ydb{bottom:866.670000px;}
.y63{bottom:874.140000px;}
.y104{bottom:875.220000px;}
.yb1{bottom:876.480000px;}
.y7{bottom:883.860000px;}
.yda{bottom:884.220000px;}
.y38{bottom:888.810000px;}
.y8a{bottom:892.680000px;}
.yb0{bottom:894.030000px;}
.y61{bottom:901.500000px;}
.y103{bottom:901.860000px;}
.yd9{bottom:910.860000px;}
.yaf{bottom:911.670000px;}
.y102{bottom:919.410000px;}
.y6{bottom:919.860000px;}
.y85{bottom:920.040000px;}
.y37{bottom:924.450000px;}
.yd8{bottom:928.410000px;}
.yae{bottom:929.220000px;}
.y5{bottom:937.860000px;}
.y36{bottom:942.000000px;}
.y101{bottom:945.960000px;}
.yad{bottom:946.860000px;}
.y87{bottom:947.400000px;}
.y60{bottom:950.190000px;}
.yd7{bottom:954.960000px;}
.y35{bottom:959.550000px;}
.y100{bottom:963.600000px;}
.yac{bottom:964.410000px;}
.yd6{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y5f{bottom:977.100000px;}
.yab{bottom:981.960000px;}
.y34{bottom:986.460000px;}
.yff{bottom:990.150000px;}
.y84{bottom:996.090000px;}
.yd5{bottom:999.150000px;}
.yaa{bottom:999.600000px;}
.yfe{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.yd4{bottom:1016.820000px;}
.ya9{bottom:1017.180000px;}
.y5e{bottom:1025.370000px;}
.y83{bottom:1031.670000px;}
.yd3{bottom:1034.370000px;}
.y33{bottom:1034.820000px;}
.y5d{bottom:1042.920000px;}
.y82{bottom:1049.310000px;}
.yfd{bottom:1051.920000px;}
.y32{bottom:1052.370000px;}
.y5c{bottom:1060.560000px;}
.yd2{bottom:1060.920000px;}
.y81{bottom:1066.860000px;}
.y31{bottom:1069.920000px;}
.yd1{bottom:1078.560000px;}
.y5b{bottom:1087.110000px;}
.y30{bottom:1087.560000px;}
.yd0{bottom:1096.110000px;}
.y80{bottom:1099.890000px;}
.y2f{bottom:1105.110000px;}
.y2e{bottom:1122.750000px;}
.y7f{bottom:1127.160000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.hb{height:26.550000px;}
.h12{height:26.580000px;}
.hc{height:26.640000px;}
.hd{height:26.670000px;}
.h2{height:26.995781px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.he{height:53.910000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h13{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.hf{height:135.900000px;}
.h11{height:135.930000px;}
.h10{height:135.990000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w12{width:27.810000px;}
.w11{width:50.040000px;}
.w7{width:50.580000px;}
.w10{width:55.890000px;}
.wf{width:56.460000px;}
.we{width:63.540000px;}
.wb{width:64.890000px;}
.wc{width:120.810000px;}
.wa{width:132.840000px;}
.wd{width:135.360000px;}
.w4{width:159.870000px;}
.w6{width:161.370000px;}
.w9{width:170.370000px;}
.w5{width:211.170000px;}
.w3{width:585.240000px;}
.w8{width:594.150000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.x1{left:68.040000px;}
.x16{left:111.239987px;}
.xa{left:149.580000px;}
.x4{left:153.990000px;}
.x2{left:192.719987px;}
.xf{left:218.550000px;}
.x5{left:243.660000px;}
.xb{left:247.710000px;}
.xc{left:310.170000px;}
.x7{left:314.580000px;}
.x10{left:352.200000px;}
.x11{left:417.900000px;}
.x13{left:482.250000px;}
.xd{left:522.060000px;}
.x8{left:526.560000px;}
.x12{left:539.430000px;}
.x14{left:596.130000px;}
.x15{left:646.980000px;}
.x9{left:688.650000px;}
.xe{left:693.150000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.104533pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.013333pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls14{letter-spacing:-0.009920pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls9{letter-spacing:0.047467pt;}
.lse{letter-spacing:0.053760pt;}
.ls12{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.066133pt;}
.ls1{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.083200pt;}
.ls4{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.lsf{letter-spacing:0.154240pt;}
.ls17{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.822933pt;}
.ws4{word-spacing:-11.804267pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.746880pt;}
.ws5{word-spacing:-11.743467pt;}
.ws2{word-spacing:-11.652267pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsd{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._9{margin-left:-3.805226pt;}
._8{margin-left:-2.885867pt;}
._6{margin-left:-1.959467pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.895018pt;}
._a{width:1.950722pt;}
._b{width:3.099734pt;}
._5{width:4.210134pt;}
._4{width:5.611200pt;}
._e{width:7.078934pt;}
._7{width:8.336533pt;}
._2{width:9.565867pt;}
._3{width:10.630291pt;}
._f{width:12.879040pt;}
._10{width:14.161600pt;}
._12{width:15.789547pt;}
._c{width:16.833600pt;}
._d{width:18.182848pt;}
._11{width:19.411136pt;}
._13{width:21.162240pt;}
._14{width:32.678400pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:6.960000pt;}
.y65{bottom:7.040000pt;}
.y86{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y8f{bottom:84.560000pt;}
.y1{bottom:90.346667pt;}
.ycf{bottom:101.146667pt;}
.y89{bottom:104.160000pt;}
.y9b{bottom:104.186667pt;}
.y95{bottom:104.240000pt;}
.y5a{bottom:106.586667pt;}
.y7e{bottom:110.266667pt;}
.ya8{bottom:110.666667pt;}
.yfc{bottom:118.506667pt;}
.y2a{bottom:118.986667pt;}
.y59{bottom:122.186667pt;}
.yce{bottom:124.826667pt;}
.ya7{bottom:126.266667pt;}
.yfb{bottom:134.106667pt;}
.y29{bottom:134.586667pt;}
.y58{bottom:137.866667pt;}
.ycd{bottom:140.426667pt;}
.ya6{bottom:141.946667pt;}
.y28{bottom:150.186667pt;}
.ya5{bottom:157.546667pt;}
.yfa{bottom:157.786667pt;}
.y7d{bottom:158.826667pt;}
.y57{bottom:161.466667pt;}
.ycc{bottom:164.346667pt;}
.y27{bottom:165.866667pt;}
.ya4{bottom:173.146667pt;}
.yf9{bottom:173.386667pt;}
.y26{bottom:181.466667pt;}
.y7c{bottom:183.146667pt;}
.y56{bottom:193.066667pt;}
.yf8{bottom:196.986667pt;}
.ya3{bottom:197.066667pt;}
.y25{bottom:197.146667pt;}
.ycb{bottom:207.306667pt;}
.y7b{bottom:207.466667pt;}
.y55{bottom:208.746667pt;}
.yf7{bottom:212.666667pt;}
.y24{bottom:212.746667pt;}
.y54{bottom:224.346667pt;}
.y23{bottom:228.346667pt;}
.yca{bottom:231.226667pt;}
.yf6{bottom:236.266667pt;}
.y53{bottom:239.946667pt;}
.ya2{bottom:240.026667pt;}
.y22{bottom:244.026667pt;}
.y7a{bottom:250.746667pt;}
.y52{bottom:255.626667pt;}
.y21{bottom:259.626667pt;}
.yf5{bottom:259.946667pt;}
.yc9{bottom:264.106667pt;}
.y51{bottom:271.226667pt;}
.ya1{bottom:271.306667pt;}
.y20{bottom:275.226667pt;}
.yc8{bottom:279.706667pt;}
.y79{bottom:282.346667pt;}
.yf4{bottom:283.546667pt;}
.y50{bottom:286.906667pt;}
.y1f{bottom:290.906667pt;}
.y78{bottom:298.026667pt;}
.yf3{bottom:299.146667pt;}
.ya0{bottom:302.506667pt;}
.yc7{bottom:303.626667pt;}
.y4f{bottom:310.506667pt;}
.y77{bottom:313.626667pt;}
.y1e{bottom:314.826667pt;}
.yf2{bottom:322.826667pt;}
.y76{bottom:329.226667pt;}
.y9a{bottom:331.866667pt;}
.yc6{bottom:336.586667pt;}
.yf1{bottom:338.426667pt;}
.y4e{bottom:342.106667pt;}
.yc5{bottom:352.186667pt;}
.y9f{bottom:356.106667pt;}
.y4d{bottom:357.786667pt;}
.y1d{bottom:358.026667pt;}
.y75{bottom:358.586667pt;}
.yf0{bottom:362.106667pt;}
.y4c{bottom:373.386667pt;}
.yc4{bottom:376.106667pt;}
.yef{bottom:377.706667pt;}
.y9e{bottom:380.426667pt;}
.y74{bottom:382.906667pt;}
.y4b{bottom:389.066667pt;}
.y1c{bottom:390.906667pt;}
.yee{bottom:401.306667pt;}
.y4a{bottom:404.666667pt;}
.y9d{bottom:404.746667pt;}
.y1b{bottom:406.586667pt;}
.y73{bottom:407.146667pt;}
.yc3{bottom:408.986667pt;}
.yed{bottom:416.986667pt;}
.y1a{bottom:422.213333pt;}
.y49{bottom:428.293333pt;}
.y9c{bottom:429.093333pt;}
.y72{bottom:431.493333pt;}
.yc2{bottom:432.933333pt;}
.y19{bottom:437.813333pt;}
.yec{bottom:440.613333pt;}
.y94{bottom:453.333333pt;}
.y18{bottom:453.493333pt;}
.y71{bottom:455.813333pt;}
.yeb{bottom:456.293333pt;}
.y48{bottom:459.973333pt;}
.yc1{bottom:466.133333pt;}
.y17{bottom:469.093333pt;}
.yea{bottom:471.893333pt;}
.y99{bottom:477.653333pt;}
.y70{bottom:480.053333pt;}
.y47{bottom:483.573333pt;}
.y16{bottom:484.773333pt;}
.ye9{bottom:495.493333pt;}
.y15{bottom:500.373333pt;}
.y98{bottom:501.973333pt;}
.y6f{bottom:504.373333pt;}
.yc0{bottom:509.093333pt;}
.ye8{bottom:511.173333pt;}
.y46{bottom:515.253333pt;}
.y14{bottom:515.973333pt;}
.ybf{bottom:524.693333pt;}
.y97{bottom:526.213333pt;}
.ye7{bottom:526.773333pt;}
.y45{bottom:530.853333pt;}
.y13{bottom:531.653333pt;}
.ybe{bottom:540.293333pt;}
.y44{bottom:546.453333pt;}
.y12{bottom:547.253333pt;}
.y6e{bottom:547.653333pt;}
.ye6{bottom:550.453333pt;}
.y96{bottom:550.533333pt;}
.ybd{bottom:555.973333pt;}
.y43{bottom:562.133333pt;}
.y11{bottom:562.853333pt;}
.ye5{bottom:566.053333pt;}
.y8e{bottom:574.853333pt;}
.y42{bottom:577.733333pt;}
.y10{bottom:578.533333pt;}
.y6d{bottom:579.333333pt;}
.ybc{bottom:579.893333pt;}
.ye4{bottom:589.653333pt;}
.y41{bottom:593.413333pt;}
.yf{bottom:594.133333pt;}
.y6c{bottom:594.933333pt;}
.y93{bottom:599.173333pt;}
.ye3{bottom:605.333333pt;}
.y40{bottom:609.013333pt;}
.ye{bottom:609.813333pt;}
.y6b{bottom:610.533333pt;}
.ybb{bottom:622.773333pt;}
.y92{bottom:623.413333pt;}
.y3f{bottom:624.613333pt;}
.yd{bottom:625.413333pt;}
.y6a{bottom:626.213333pt;}
.ye2{bottom:628.933333pt;}
.yba{bottom:638.453333pt;}
.yc{bottom:641.013333pt;}
.y91{bottom:647.733333pt;}
.y3e{bottom:648.293333pt;}
.ye1{bottom:652.613333pt;}
.yb9{bottom:654.053333pt;}
.y69{bottom:655.493333pt;}
.yb{bottom:656.693333pt;}
.ye0{bottom:668.213333pt;}
.yb8{bottom:669.653333pt;}
.y90{bottom:672.053333pt;}
.y68{bottom:679.813333pt;}
.y3d{bottom:679.893333pt;}
.ya{bottom:680.613333pt;}
.y109{bottom:683.813333pt;}
.yb7{bottom:685.333333pt;}
.ydf{bottom:691.813333pt;}
.y3c{bottom:695.573333pt;}
.y88{bottom:696.373333pt;}
.y108{bottom:699.493333pt;}
.yb6{bottom:700.933333pt;}
.y67{bottom:704.133333pt;}
.yde{bottom:707.493333pt;}
.yb5{bottom:716.613333pt;}
.y3b{bottom:719.173333pt;}
.y8d{bottom:720.613333pt;}
.y9{bottom:722.213333pt;}
.y107{bottom:723.093333pt;}
.y66{bottom:728.373333pt;}
.ydd{bottom:731.093333pt;}
.yb4{bottom:732.213333pt;}
.y106{bottom:738.693333pt;}
.y8c{bottom:744.933333pt;}
.ydc{bottom:746.693333pt;}
.yb3{bottom:747.813333pt;}
.y3a{bottom:750.773333pt;}
.y64{bottom:752.693333pt;}
.y8{bottom:753.813333pt;}
.y105{bottom:762.373333pt;}
.yb2{bottom:763.493333pt;}
.y39{bottom:766.453333pt;}
.y8b{bottom:769.253333pt;}
.ydb{bottom:770.373333pt;}
.y63{bottom:777.013333pt;}
.y104{bottom:777.973333pt;}
.yb1{bottom:779.093333pt;}
.y7{bottom:785.653333pt;}
.yda{bottom:785.973333pt;}
.y38{bottom:790.053333pt;}
.y8a{bottom:793.493333pt;}
.yb0{bottom:794.693333pt;}
.y61{bottom:801.333333pt;}
.y103{bottom:801.653333pt;}
.yd9{bottom:809.653333pt;}
.yaf{bottom:810.373333pt;}
.y102{bottom:817.253333pt;}
.y6{bottom:817.653333pt;}
.y85{bottom:817.813333pt;}
.y37{bottom:821.733333pt;}
.yd8{bottom:825.253333pt;}
.yae{bottom:825.973333pt;}
.y5{bottom:833.653333pt;}
.y36{bottom:837.333333pt;}
.y101{bottom:840.853333pt;}
.yad{bottom:841.653333pt;}
.y87{bottom:842.133333pt;}
.y60{bottom:844.613333pt;}
.yd7{bottom:848.853333pt;}
.y35{bottom:852.933333pt;}
.y100{bottom:856.533333pt;}
.yac{bottom:857.253333pt;}
.yd6{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y5f{bottom:868.533333pt;}
.yab{bottom:872.853333pt;}
.y34{bottom:876.853333pt;}
.yff{bottom:880.133333pt;}
.y84{bottom:885.413333pt;}
.yd5{bottom:888.133333pt;}
.yaa{bottom:888.533333pt;}
.yfe{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.yd4{bottom:903.840000pt;}
.ya9{bottom:904.160000pt;}
.y5e{bottom:911.440000pt;}
.y83{bottom:917.040000pt;}
.yd3{bottom:919.440000pt;}
.y33{bottom:919.840000pt;}
.y5d{bottom:927.040000pt;}
.y82{bottom:932.720000pt;}
.yfd{bottom:935.040000pt;}
.y32{bottom:935.440000pt;}
.y5c{bottom:942.720000pt;}
.yd2{bottom:943.040000pt;}
.y81{bottom:948.320000pt;}
.y31{bottom:951.040000pt;}
.yd1{bottom:958.720000pt;}
.y5b{bottom:966.320000pt;}
.y30{bottom:966.720000pt;}
.yd0{bottom:974.320000pt;}
.y80{bottom:977.680000pt;}
.y2f{bottom:982.320000pt;}
.y2e{bottom:998.000000pt;}
.y7f{bottom:1001.920000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.h12{height:23.626667pt;}
.hc{height:23.680000pt;}
.hd{height:23.706667pt;}
.h2{height:23.996250pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.he{height:47.920000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h13{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.hf{height:120.800000pt;}
.h11{height:120.826667pt;}
.h10{height:120.880000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w12{width:24.720000pt;}
.w11{width:44.480000pt;}
.w7{width:44.960000pt;}
.w10{width:49.680000pt;}
.wf{width:50.186667pt;}
.we{width:56.480000pt;}
.wb{width:57.680000pt;}
.wc{width:107.386667pt;}
.wa{width:118.080000pt;}
.wd{width:120.320000pt;}
.w4{width:142.106667pt;}
.w6{width:143.440000pt;}
.w9{width:151.440000pt;}
.w5{width:187.706667pt;}
.w3{width:520.213333pt;}
.w8{width:528.133333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.x1{left:60.480000pt;}
.x16{left:98.879988pt;}
.xa{left:132.960000pt;}
.x4{left:136.880000pt;}
.x2{left:171.306655pt;}
.xf{left:194.266667pt;}
.x5{left:216.586667pt;}
.xb{left:220.186667pt;}
.xc{left:275.706667pt;}
.x7{left:279.626667pt;}
.x10{left:313.066667pt;}
.x11{left:371.466667pt;}
.x13{left:428.666667pt;}
.xd{left:464.053333pt;}
.x8{left:468.053333pt;}
.x12{left:479.493333pt;}
.x14{left:529.893333pt;}
.x15{left:575.093333pt;}
.x9{left:612.133333pt;}
.xe{left:616.133333pt;}
.x3{left:711.413322pt;}
}




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