
    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_44ab2ef4ff2bc355e74aa6bc.woff')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_4c4d234dc77eee25781c13d4.woff')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_f2891134e9a9c9c085505899.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c457a96b8e2185246667386.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_71a9abbafced9b6acb6b8f6e.woff')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_6ffdb73a886468ea28a3d900.woff')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_15debe2f2dd03ba4f0a7f22a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a8504c699c44c37194a7e541.woff')format("woff");}.ff8{font-family:ff8;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;}
.ls9{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.063600px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.lsd{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.180600px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:63.566640px;}
.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;}
}
.ws5{word-spacing:-60.120000px;}
.ws7{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.072800px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._d{margin-left:-3.606361px;}
._4{margin-left:-2.138280px;}
._0{margin-left:-1.110000px;}
._2{width:1.058197px;}
._7{width:2.566808px;}
._3{width:4.208400px;}
._c{width:6.072000px;}
._5{width:7.214400px;}
._6{width:8.444400px;}
._a{width:10.100400px;}
._b{width:11.180396px;}
._12{width:12.203116px;}
._e{width:14.342880px;}
._f{width:15.991920px;}
._8{width:17.134200px;}
._9{width:18.156601px;}
._13{width:21.042000px;}
._14{width:22.705920px;}
._1{width:30.220008px;}
._10{width:189.885360px;}
._11{width:202.773600px;}
.fc2{color:rgb(33,37,41);}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5a{bottom:112.170000px;}
.y87{bottom:114.330000px;}
.y9d{bottom:126.300000px;}
.y59{bottom:129.720000px;}
.y86{bottom:131.880000px;}
.yc8{bottom:143.580000px;}
.y9c{bottom:143.850000px;}
.y58{bottom:147.270000px;}
.yb5{bottom:152.130000px;}
.y85{bottom:158.430000px;}
.y27{bottom:160.050000px;}
.yc7{bottom:162.030000px;}
.y57{bottom:164.910000px;}
.yb4{bottom:169.680000px;}
.y26{bottom:177.600000px;}
.y9b{bottom:179.400000px;}
.yc6{bottom:179.580000px;}
.y56{bottom:182.460000px;}
.yb3{bottom:187.320000px;}
.y84{bottom:194.070000px;}
.y25{bottom:195.240000px;}
.yc5{bottom:197.130000px;}
.yb2{bottom:204.870000px;}
.y83{bottom:211.620000px;}
.y24{bottom:212.790000px;}
.yc4{bottom:215.580000px;}
.y55{bottom:218.100000px;}
.yb1{bottom:222.510000px;}
.y82{bottom:229.260000px;}
.y23{bottom:230.340000px;}
.yc3{bottom:233.130000px;}
.y54{bottom:235.650000px;}
.y81{bottom:246.810000px;}
.y22{bottom:247.980000px;}
.yc2{bottom:251.580000px;}
.y53{bottom:253.200000px;}
.yb0{bottom:258.060000px;}
.y80{bottom:264.360000px;}
.yc1{bottom:269.130000px;}
.yaf{bottom:275.610000px;}
.y7f{bottom:282.000000px;}
.y21{bottom:283.530000px;}
.yc0{bottom:287.580000px;}
.y52{bottom:288.840000px;}
.yae{bottom:293.250000px;}
.y7e{bottom:299.550000px;}
.y20{bottom:301.170000px;}
.ybf{bottom:305.130000px;}
.y51{bottom:306.390000px;}
.yad{bottom:310.800000px;}
.y7d{bottom:317.190000px;}
.y1f{bottom:318.720000px;}
.ybe{bottom:322.680000px;}
.y50{bottom:323.940000px;}
.yac{bottom:328.440000px;}
.y7c{bottom:334.740000px;}
.y1e{bottom:336.270000px;}
.y4f{bottom:341.580000px;}
.y1d{bottom:353.910000px;}
.y4e{bottom:359.130000px;}
.y7b{bottom:361.290000px;}
.yab{bottom:363.990000px;}
.yea{bottom:365.970000px;}
.y1c{bottom:371.460000px;}
.yaa{bottom:381.540000px;}
.ye9{bottom:383.610000px;}
.ybd{bottom:386.040000px;}
.y1b{bottom:389.100000px;}
.y4d{bottom:394.770000px;}
.y7a{bottom:396.930000px;}
.ya9{bottom:399.180000px;}
.ye8{bottom:401.160000px;}
.y1a{bottom:406.650000px;}
.y4c{bottom:412.320000px;}
.y79{bottom:414.480000px;}
.ya8{bottom:416.730000px;}
.ye7{bottom:427.800000px;}
.y4b{bottom:429.870000px;}
.y78{bottom:432.120000px;}
.y19{bottom:433.560000px;}
.ya7{bottom:434.370000px;}
.y4a{bottom:447.510000px;}
.y77{bottom:449.670000px;}
.ybc{bottom:451.920000px;}
.ye6{bottom:454.350000px;}
.y76{bottom:467.220000px;}
.ybb{bottom:469.470000px;}
.ya6{bottom:469.950000px;}
.y49{bottom:474.450000px;}
.ye5{bottom:480.930000px;}
.y18{bottom:482.190000px;}
.y75{bottom:484.890000px;}
.yba{bottom:487.140000px;}
.ya5{bottom:487.500000px;}
.yb9{bottom:504.690000px;}
.ya4{bottom:505.140000px;}
.ye4{bottom:507.570000px;}
.y74{bottom:511.440000px;}
.y17{bottom:519.180000px;}
.yb8{bottom:522.330000px;}
.y48{bottom:522.690000px;}
.ye3{bottom:534.120000px;}
.y16{bottom:536.820000px;}
.yb7{bottom:539.880000px;}
.y47{bottom:540.330000px;}
.y73{bottom:547.080000px;}
.ye2{bottom:551.760000px;}
.y15{bottom:554.370000px;}
.y46{bottom:557.880000px;}
.y72{bottom:564.630000px;}
.ye1{bottom:569.310000px;}
.y14{bottom:571.920000px;}
.y45{bottom:575.430000px;}
.y71{bottom:582.180000px;}
.y9a{bottom:584.070000px;}
.y13{bottom:589.560000px;}
.y44{bottom:593.070000px;}
.ye0{bottom:595.860000px;}
.y70{bottom:599.820000px;}
.y12{bottom:607.110000px;}
.y43{bottom:610.620000px;}
.ya3{bottom:611.070000px;}
.ydf{bottom:613.500000px;}
.y6f{bottom:617.370000px;}
.y99{bottom:619.620000px;}
.y11{bottom:624.750000px;}
.yb6{bottom:628.260000px;}
.ya2{bottom:628.620000px;}
.y98{bottom:637.260000px;}
.yde{bottom:640.410000px;}
.y10{bottom:642.300000px;}
.y6e{bottom:643.920000px;}
.y42{bottom:646.260000px;}
.y97{bottom:654.810000px;}
.yf{bottom:659.850000px;}
.y41{bottom:663.810000px;}
.y96{bottom:672.360000px;}
.y6d{bottom:676.590000px;}
.ye{bottom:677.490000px;}
.y40{bottom:681.360000px;}
.ydd{bottom:688.650000px;}
.y95{bottom:690.000000px;}
.yd{bottom:695.040000px;}
.y3f{bottom:699.000000px;}
.y94{bottom:707.550000px;}
.y6c{bottom:712.140000px;}
.yc{bottom:712.680000px;}
.ydc{bottom:715.560000px;}
.y3e{bottom:716.550000px;}
.y6b{bottom:729.690000px;}
.yb{bottom:730.230000px;}
.y93{bottom:734.190000px;}
.ya1{bottom:734.550000px;}
.y6a{bottom:747.330000px;}
.y3d{bottom:752.190000px;}
.ydb{bottom:752.910000px;}
.ya{bottom:757.140000px;}
.y69{bottom:764.880000px;}
.y3c{bottom:769.740000px;}
.y3b{bottom:787.290000px;}
.y68{bottom:800.520000px;}
.yda{bottom:801.150000px;}
.y3a{bottom:804.930000px;}
.y9{bottom:805.380000px;}
.y67{bottom:818.070000px;}
.yd9{bottom:818.790000px;}
.y39{bottom:822.480000px;}
.y66{bottom:835.620000px;}
.yd8{bottom:836.340000px;}
.y38{bottom:840.030000px;}
.y8{bottom:841.200000px;}
.yd7{bottom:853.980000px;}
.y92{bottom:857.670000px;}
.ya0{bottom:858.030000px;}
.y65{bottom:871.260000px;}
.y91{bottom:875.220000px;}
.y37{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y64{bottom:888.810000px;}
.yd6{bottom:889.530000px;}
.y36{bottom:893.220000px;}
.y90{bottom:901.860000px;}
.y63{bottom:906.450000px;}
.yd5{bottom:907.080000px;}
.y35{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y62{bottom:924.000000px;}
.yd4{bottom:924.720000px;}
.y34{bottom:928.410000px;}
.y8f{bottom:937.410000px;}
.y61{bottom:941.550000px;}
.yd3{bottom:942.270000px;}
.y33{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y8e{bottom:954.960000px;}
.y60{bottom:959.190000px;}
.y32{bottom:963.600000px;}
.y9f{bottom:963.960000px;}
.y8d{bottom:972.600000px;}
.y5f{bottom:976.740000px;}
.yd2{bottom:977.820000px;}
.y9e{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y8c{bottom:990.150000px;}
.y5e{bottom:994.290000px;}
.yd1{bottom:995.370000px;}
.y31{bottom:999.150000px;}
.y8b{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.yd0{bottom:1013.850000px;}
.y30{bottom:1016.820000px;}
.y5d{bottom:1029.960000px;}
.ycf{bottom:1031.400000px;}
.y2f{bottom:1034.370000px;}
.y5c{bottom:1047.510000px;}
.yce{bottom:1049.850000px;}
.y2e{bottom:1051.920000px;}
.ycd{bottom:1067.400000px;}
.y2d{bottom:1069.560000px;}
.y8a{bottom:1069.920000px;}
.y5b{bottom:1074.420000px;}
.ycc{bottom:1085.850000px;}
.y2c{bottom:1087.110000px;}
.y89{bottom:1087.560000px;}
.ycb{bottom:1103.400000px;}
.y88{bottom:1105.110000px;}
.yca{bottom:1121.850000px;}
.y2b{bottom:1122.750000px;}
.yc9{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:52.311445px;}
.h7{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:58.913886px;}
.ha{height:59.973223px;}
.hc{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x6{left:95.039987px;}
.x8{left:111.239987px;}
.x7{left:122.039987px;}
.x2{left:191.459987px;}
.x5{left:367.589987px;}
.x4{left:614.309987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.lsd{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.160533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws5{word-spacing:-53.440000pt;}
.ws7{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.620267pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._d{margin-left:-3.205654pt;}
._4{margin-left:-1.900693pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.940620pt;}
._7{width:2.281607pt;}
._3{width:3.740800pt;}
._c{width:5.397333pt;}
._5{width:6.412800pt;}
._6{width:7.506133pt;}
._a{width:8.978134pt;}
._b{width:9.938130pt;}
._12{width:10.847214pt;}
._e{width:12.749227pt;}
._f{width:14.215040pt;}
._8{width:15.230400pt;}
._9{width:16.139201pt;}
._13{width:18.704000pt;}
._14{width:20.183040pt;}
._1{width:26.862229pt;}
._10{width:168.786987pt;}
._11{width:180.243200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5a{bottom:99.706667pt;}
.y87{bottom:101.626667pt;}
.y9d{bottom:112.266667pt;}
.y59{bottom:115.306667pt;}
.y86{bottom:117.226667pt;}
.yc8{bottom:127.626667pt;}
.y9c{bottom:127.866667pt;}
.y58{bottom:130.906667pt;}
.yb5{bottom:135.226667pt;}
.y85{bottom:140.826667pt;}
.y27{bottom:142.266667pt;}
.yc7{bottom:144.026667pt;}
.y57{bottom:146.586667pt;}
.yb4{bottom:150.826667pt;}
.y26{bottom:157.866667pt;}
.y9b{bottom:159.466667pt;}
.yc6{bottom:159.626667pt;}
.y56{bottom:162.186667pt;}
.yb3{bottom:166.506667pt;}
.y84{bottom:172.506667pt;}
.y25{bottom:173.546667pt;}
.yc5{bottom:175.226667pt;}
.yb2{bottom:182.106667pt;}
.y83{bottom:188.106667pt;}
.y24{bottom:189.146667pt;}
.yc4{bottom:191.626667pt;}
.y55{bottom:193.866667pt;}
.yb1{bottom:197.786667pt;}
.y82{bottom:203.786667pt;}
.y23{bottom:204.746667pt;}
.yc3{bottom:207.226667pt;}
.y54{bottom:209.466667pt;}
.y81{bottom:219.386667pt;}
.y22{bottom:220.426667pt;}
.yc2{bottom:223.626667pt;}
.y53{bottom:225.066667pt;}
.yb0{bottom:229.386667pt;}
.y80{bottom:234.986667pt;}
.yc1{bottom:239.226667pt;}
.yaf{bottom:244.986667pt;}
.y7f{bottom:250.666667pt;}
.y21{bottom:252.026667pt;}
.yc0{bottom:255.626667pt;}
.y52{bottom:256.746667pt;}
.yae{bottom:260.666667pt;}
.y7e{bottom:266.266667pt;}
.y20{bottom:267.706667pt;}
.ybf{bottom:271.226667pt;}
.y51{bottom:272.346667pt;}
.yad{bottom:276.266667pt;}
.y7d{bottom:281.946667pt;}
.y1f{bottom:283.306667pt;}
.ybe{bottom:286.826667pt;}
.y50{bottom:287.946667pt;}
.yac{bottom:291.946667pt;}
.y7c{bottom:297.546667pt;}
.y1e{bottom:298.906667pt;}
.y4f{bottom:303.626667pt;}
.y1d{bottom:314.586667pt;}
.y4e{bottom:319.226667pt;}
.y7b{bottom:321.146667pt;}
.yab{bottom:323.546667pt;}
.yea{bottom:325.306667pt;}
.y1c{bottom:330.186667pt;}
.yaa{bottom:339.146667pt;}
.ye9{bottom:340.986667pt;}
.ybd{bottom:343.146667pt;}
.y1b{bottom:345.866667pt;}
.y4d{bottom:350.906667pt;}
.y7a{bottom:352.826667pt;}
.ya9{bottom:354.826667pt;}
.ye8{bottom:356.586667pt;}
.y1a{bottom:361.466667pt;}
.y4c{bottom:366.506667pt;}
.y79{bottom:368.426667pt;}
.ya8{bottom:370.426667pt;}
.ye7{bottom:380.266667pt;}
.y4b{bottom:382.106667pt;}
.y78{bottom:384.106667pt;}
.y19{bottom:385.386667pt;}
.ya7{bottom:386.106667pt;}
.y4a{bottom:397.786667pt;}
.y77{bottom:399.706667pt;}
.ybc{bottom:401.706667pt;}
.ye6{bottom:403.866667pt;}
.y76{bottom:415.306667pt;}
.ybb{bottom:417.306667pt;}
.ya6{bottom:417.733333pt;}
.y49{bottom:421.733333pt;}
.ye5{bottom:427.493333pt;}
.y18{bottom:428.613333pt;}
.y75{bottom:431.013333pt;}
.yba{bottom:433.013333pt;}
.ya5{bottom:433.333333pt;}
.yb9{bottom:448.613333pt;}
.ya4{bottom:449.013333pt;}
.ye4{bottom:451.173333pt;}
.y74{bottom:454.613333pt;}
.y17{bottom:461.493333pt;}
.yb8{bottom:464.293333pt;}
.y48{bottom:464.613333pt;}
.ye3{bottom:474.773333pt;}
.y16{bottom:477.173333pt;}
.yb7{bottom:479.893333pt;}
.y47{bottom:480.293333pt;}
.y73{bottom:486.293333pt;}
.ye2{bottom:490.453333pt;}
.y15{bottom:492.773333pt;}
.y46{bottom:495.893333pt;}
.y72{bottom:501.893333pt;}
.ye1{bottom:506.053333pt;}
.y14{bottom:508.373333pt;}
.y45{bottom:511.493333pt;}
.y71{bottom:517.493333pt;}
.y9a{bottom:519.173333pt;}
.y13{bottom:524.053333pt;}
.y44{bottom:527.173333pt;}
.ye0{bottom:529.653333pt;}
.y70{bottom:533.173333pt;}
.y12{bottom:539.653333pt;}
.y43{bottom:542.773333pt;}
.ya3{bottom:543.173333pt;}
.ydf{bottom:545.333333pt;}
.y6f{bottom:548.773333pt;}
.y99{bottom:550.773333pt;}
.y11{bottom:555.333333pt;}
.yb6{bottom:558.453333pt;}
.ya2{bottom:558.773333pt;}
.y98{bottom:566.453333pt;}
.yde{bottom:569.253333pt;}
.y10{bottom:570.933333pt;}
.y6e{bottom:572.373333pt;}
.y42{bottom:574.453333pt;}
.y97{bottom:582.053333pt;}
.yf{bottom:586.533333pt;}
.y41{bottom:590.053333pt;}
.y96{bottom:597.653333pt;}
.y6d{bottom:601.413333pt;}
.ye{bottom:602.213333pt;}
.y40{bottom:605.653333pt;}
.ydd{bottom:612.133333pt;}
.y95{bottom:613.333333pt;}
.yd{bottom:617.813333pt;}
.y3f{bottom:621.333333pt;}
.y94{bottom:628.933333pt;}
.y6c{bottom:633.013333pt;}
.yc{bottom:633.493333pt;}
.ydc{bottom:636.053333pt;}
.y3e{bottom:636.933333pt;}
.y6b{bottom:648.613333pt;}
.yb{bottom:649.093333pt;}
.y93{bottom:652.613333pt;}
.ya1{bottom:652.933333pt;}
.y6a{bottom:664.293333pt;}
.y3d{bottom:668.613333pt;}
.ydb{bottom:669.253333pt;}
.ya{bottom:673.013333pt;}
.y69{bottom:679.893333pt;}
.y3c{bottom:684.213333pt;}
.y3b{bottom:699.813333pt;}
.y68{bottom:711.573333pt;}
.yda{bottom:712.133333pt;}
.y3a{bottom:715.493333pt;}
.y9{bottom:715.893333pt;}
.y67{bottom:727.173333pt;}
.yd9{bottom:727.813333pt;}
.y39{bottom:731.093333pt;}
.y66{bottom:742.773333pt;}
.yd8{bottom:743.413333pt;}
.y38{bottom:746.693333pt;}
.y8{bottom:747.733333pt;}
.yd7{bottom:759.093333pt;}
.y92{bottom:762.373333pt;}
.ya0{bottom:762.693333pt;}
.y65{bottom:774.453333pt;}
.y91{bottom:777.973333pt;}
.y37{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y64{bottom:790.053333pt;}
.yd6{bottom:790.693333pt;}
.y36{bottom:793.973333pt;}
.y90{bottom:801.653333pt;}
.y63{bottom:805.733333pt;}
.yd5{bottom:806.293333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y62{bottom:821.333333pt;}
.yd4{bottom:821.973333pt;}
.y34{bottom:825.253333pt;}
.y8f{bottom:833.253333pt;}
.y61{bottom:836.933333pt;}
.yd3{bottom:837.573333pt;}
.y33{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y8e{bottom:848.853333pt;}
.y60{bottom:852.613333pt;}
.y32{bottom:856.533333pt;}
.y9f{bottom:856.853333pt;}
.y8d{bottom:864.533333pt;}
.y5f{bottom:868.213333pt;}
.yd2{bottom:869.173333pt;}
.y9e{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y8c{bottom:880.133333pt;}
.y5e{bottom:883.813333pt;}
.yd1{bottom:884.773333pt;}
.y31{bottom:888.133333pt;}
.y8b{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.yd0{bottom:901.200000pt;}
.y30{bottom:903.840000pt;}
.y5d{bottom:915.520000pt;}
.ycf{bottom:916.800000pt;}
.y2f{bottom:919.440000pt;}
.y5c{bottom:931.120000pt;}
.yce{bottom:933.200000pt;}
.y2e{bottom:935.040000pt;}
.ycd{bottom:948.800000pt;}
.y2d{bottom:950.720000pt;}
.y8a{bottom:951.040000pt;}
.y5b{bottom:955.040000pt;}
.ycc{bottom:965.200000pt;}
.y2c{bottom:966.320000pt;}
.y89{bottom:966.720000pt;}
.ycb{bottom:980.800000pt;}
.y88{bottom:982.320000pt;}
.yca{bottom:997.200000pt;}
.y2b{bottom:998.000000pt;}
.yc9{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:46.499062pt;}
.h7{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:52.367899pt;}
.ha{height:53.309531pt;}
.hc{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x6{left:84.479988pt;}
.x8{left:98.879988pt;}
.x7{left:108.479988pt;}
.x2{left:170.186655pt;}
.x5{left:326.746655pt;}
.x4{left:546.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; }
  