
    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_f1a0760a541fd716dd37c0fa.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_339ba2668924a857aa50ba5f.woff2')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_9244cb5dbdfbd1d7dee226b2.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_a4fb3ba7052e35341614f4a6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_152c6535fa9d6a064c0b545e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d05339f42d58799005f8a1a9.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.444600px;}
.ls10{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls14{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.199200px;}
.ls15{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:14.493600px;}
.ls3{letter-spacing:17.906400px;}
.ls13{letter-spacing:47.726640px;}
.ls11{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;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.131600px;}
.ws9{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._10{margin-left:-3.667320px;}
._3{margin-left:-2.633721px;}
._0{margin-left:-1.212000px;}
._2{width:1.014945px;}
._9{width:2.031727px;}
._8{width:3.126000px;}
._6{width:4.449000px;}
._7{width:5.650799px;}
._4{width:7.510320px;}
._5{width:8.570520px;}
._c{width:9.999840px;}
._e{width:12.024000px;}
._f{width:14.318040px;}
._a{width:15.571200px;}
._b{width:16.712398px;}
._d{width:18.593769px;}
._17{width:21.612960px;}
._16{width:23.506920px;}
._1c{width:24.873960px;}
._1a{width:25.875360px;}
._1b{width:26.993760px;}
._18{width:28.099800px;}
._19{width:29.147040px;}
._1{width:43.256988px;}
._12{width:50.741280px;}
._13{width:84.145680px;}
._14{width:95.530680px;}
._15{width:176.512320px;}
._11{width:195.690600px;}
.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;}
.y73{bottom:7.830000px;}
.y7a{bottom:7.920000px;}
.y77{bottom:25.380000px;}
.y75{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7f{bottom:122.520000px;}
.yd0{bottom:132.870000px;}
.y58{bottom:133.500000px;}
.y7e{bottom:140.160000px;}
.ya5{bottom:141.690000px;}
.y29{bottom:141.960000px;}
.ycf{bottom:150.510000px;}
.y7d{bottom:157.710000px;}
.ya4{bottom:159.240000px;}
.y28{bottom:159.510000px;}
.y57{bottom:169.050000px;}
.yce{bottom:177.060000px;}
.y27{bottom:177.150000px;}
.y7c{bottom:184.620000px;}
.ya3{bottom:185.880000px;}
.ycd{bottom:194.610000px;}
.y26{bottom:194.700000px;}
.ya2{bottom:203.430000px;}
.y56{bottom:204.600000px;}
.y25{bottom:212.340000px;}
.ycc{bottom:221.250000px;}
.y55{bottom:222.240000px;}
.y24{bottom:229.890000px;}
.y7b{bottom:230.250000px;}
.ya1{bottom:230.340000px;}
.ycb{bottom:238.800000px;}
.y54{bottom:239.790000px;}
.y23{bottom:247.440000px;}
.y22{bottom:265.080000px;}
.yca{bottom:265.440000px;}
.y53{bottom:266.430000px;}
.y79{bottom:275.160000px;}
.ya0{bottom:278.580000px;}
.yc9{bottom:282.990000px;}
.y21{bottom:291.990000px;}
.y52{bottom:301.980000px;}
.y9f{bottom:305.490000px;}
.yc8{bottom:309.540000px;}
.y51{bottom:319.530000px;}
.y78{bottom:320.160000px;}
.yc7{bottom:327.180000px;}
.y50{bottom:337.170000px;}
.y20{bottom:340.230000px;}
.y9e{bottom:342.840000px;}
.yc6{bottom:353.730000px;}
.y4f{bottom:354.720000px;}
.y1f{bottom:357.870000px;}
.y76{bottom:365.070000px;}
.yc5{bottom:371.370000px;}
.y4e{bottom:381.360000px;}
.y9d{bottom:391.170000px;}
.y1e{bottom:393.420000px;}
.yc4{bottom:397.920000px;}
.y9c{bottom:408.720000px;}
.y74{bottom:409.980000px;}
.y1d{bottom:410.970000px;}
.yc3{bottom:415.470000px;}
.y4d{bottom:417.180000px;}
.y9b{bottom:426.360000px;}
.y1c{bottom:428.610000px;}
.yc2{bottom:442.110000px;}
.y1b{bottom:446.160000px;}
.y72{bottom:454.890000px;}
.yc1{bottom:459.660000px;}
.y9a{bottom:461.910000px;}
.y1a{bottom:463.800000px;}
.y4c{bottom:465.510000px;}
.y99{bottom:479.490000px;}
.y19{bottom:481.380000px;}
.y4b{bottom:483.090000px;}
.yc0{bottom:486.330000px;}
.y98{bottom:497.130000px;}
.y18{bottom:498.930000px;}
.y4a{bottom:500.730000px;}
.y71{bottom:503.610000px;}
.ybf{bottom:503.880000px;}
.y97{bottom:514.680000px;}
.y17{bottom:516.570000px;}
.y49{bottom:518.280000px;}
.ybe{bottom:530.430000px;}
.y16{bottom:534.120000px;}
.y70{bottom:539.160000px;}
.y48{bottom:544.830000px;}
.y96{bottom:550.230000px;}
.y15{bottom:551.670000px;}
.y6f{bottom:556.800000px;}
.ybd{bottom:557.070000px;}
.y95{bottom:567.870000px;}
.y14{bottom:569.310000px;}
.y6e{bottom:574.350000px;}
.ybc{bottom:574.620000px;}
.y47{bottom:580.470000px;}
.y94{bottom:585.420000px;}
.y13{bottom:586.860000px;}
.y46{bottom:598.020000px;}
.y6d{bottom:600.990000px;}
.ybb{bottom:601.260000px;}
.y93{bottom:603.060000px;}
.y12{bottom:604.500000px;}
.y45{bottom:615.660000px;}
.yba{bottom:618.810000px;}
.y92{bottom:620.610000px;}
.y11{bottom:622.050000px;}
.y44{bottom:633.210000px;}
.y6c{bottom:636.540000px;}
.y91{bottom:638.160000px;}
.y10{bottom:639.600000px;}
.yb9{bottom:645.360000px;}
.y6b{bottom:654.090000px;}
.yf{bottom:657.240000px;}
.y43{bottom:659.760000px;}
.yb8{bottom:663.000000px;}
.y90{bottom:665.070000px;}
.y6a{bottom:671.730000px;}
.ye{bottom:674.790000px;}
.y69{bottom:689.280000px;}
.yb7{bottom:689.550000px;}
.yd{bottom:692.430000px;}
.y42{bottom:695.400000px;}
.yb6{bottom:707.190000px;}
.yc{bottom:709.980000px;}
.y41{bottom:712.950000px;}
.y8f{bottom:713.400000px;}
.y68{bottom:715.920000px;}
.y40{bottom:730.590000px;}
.y8e{bottom:730.950000px;}
.yb5{bottom:733.740000px;}
.yb{bottom:736.890000px;}
.y3f{bottom:748.140000px;}
.y8d{bottom:748.590000px;}
.yb4{bottom:751.290000px;}
.y67{bottom:751.830000px;}
.y8c{bottom:766.140000px;}
.y3e{bottom:774.690000px;}
.yb3{bottom:777.930000px;}
.y8b{bottom:783.690000px;}
.ya{bottom:785.130000px;}
.yb2{bottom:795.480000px;}
.y66{bottom:800.070000px;}
.y8a{bottom:801.330000px;}
.y3d{bottom:810.600000px;}
.y65{bottom:817.620000px;}
.y89{bottom:818.880000px;}
.y9{bottom:820.950000px;}
.yb1{bottom:822.030000px;}
.y64{bottom:835.260000px;}
.y88{bottom:836.520000px;}
.yb0{bottom:839.670000px;}
.y63{bottom:852.810000px;}
.y87{bottom:854.070000px;}
.y8{bottom:856.950000px;}
.y3c{bottom:858.930000px;}
.yaf{bottom:866.220000px;}
.y86{bottom:871.620000px;}
.y3b{bottom:876.480000px;}
.y62{bottom:879.450000px;}
.yae{bottom:883.860000px;}
.y85{bottom:889.260000px;}
.y7{bottom:892.950000px;}
.y3a{bottom:894.030000px;}
.y84{bottom:906.810000px;}
.yad{bottom:910.410000px;}
.y6{bottom:910.950000px;}
.y39{bottom:911.670000px;}
.y61{bottom:915.000000px;}
.y83{bottom:924.450000px;}
.y38{bottom:929.220000px;}
.y60{bottom:932.550000px;}
.yac{bottom:936.960000px;}
.y82{bottom:942.000000px;}
.y37{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.y5f{bottom:950.190000px;}
.yab{bottom:954.600000px;}
.y81{bottom:959.550000px;}
.y36{bottom:964.410000px;}
.y5e{bottom:967.740000px;}
.yaa{bottom:981.150000px;}
.y35{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y80{bottom:986.460000px;}
.y5d{bottom:994.290000px;}
.ya9{bottom:998.790000px;}
.y34{bottom:999.600000px;}
.y3{bottom:1010.070000px;}
.y33{bottom:1017.180000px;}
.ya8{bottom:1025.370000px;}
.y5c{bottom:1030.230000px;}
.y32{bottom:1034.820000px;}
.ya7{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.ya6{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y5b{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.y5a{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y59{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.hb{height:26.580000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.hd{height:44.100000px;}
.hc{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.he{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:152.040000px;}
.w5{width:275.490000px;}
.w4{width:326.640000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x7{left:111.239987px;}
.x2{left:211.079987px;}
.x5{left:221.610000px;}
.x6{left:548.970000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.395200pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls14{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.177067pt;}
.ls15{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:12.883200pt;}
.ls3{letter-spacing:15.916800pt;}
.ls13{letter-spacing:42.423680pt;}
.ls11{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.672533pt;}
.ws9{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._10{margin-left:-3.259840pt;}
._3{margin-left:-2.341086pt;}
._0{margin-left:-1.077333pt;}
._2{width:0.902173pt;}
._9{width:1.805979pt;}
._8{width:2.778666pt;}
._6{width:3.954667pt;}
._7{width:5.022932pt;}
._4{width:6.675840pt;}
._5{width:7.618240pt;}
._c{width:8.888747pt;}
._e{width:10.688000pt;}
._f{width:12.727146pt;}
._a{width:13.841067pt;}
._b{width:14.855465pt;}
._d{width:16.527795pt;}
._17{width:19.211520pt;}
._16{width:20.895040pt;}
._1c{width:22.110187pt;}
._1a{width:23.000320pt;}
._1b{width:23.994453pt;}
._18{width:24.977600pt;}
._19{width:25.908480pt;}
._1{width:38.450656pt;}
._12{width:45.103360pt;}
._13{width:74.796160pt;}
._14{width:84.916160pt;}
._15{width:156.899840pt;}
._11{width:173.947200pt;}
.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;}
.y73{bottom:6.960000pt;}
.y7a{bottom:7.040000pt;}
.y77{bottom:22.560000pt;}
.y75{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7f{bottom:108.906667pt;}
.yd0{bottom:118.106667pt;}
.y58{bottom:118.666667pt;}
.y7e{bottom:124.586667pt;}
.ya5{bottom:125.946667pt;}
.y29{bottom:126.186667pt;}
.ycf{bottom:133.786667pt;}
.y7d{bottom:140.186667pt;}
.ya4{bottom:141.546667pt;}
.y28{bottom:141.786667pt;}
.y57{bottom:150.266667pt;}
.yce{bottom:157.386667pt;}
.y27{bottom:157.466667pt;}
.y7c{bottom:164.106667pt;}
.ya3{bottom:165.226667pt;}
.ycd{bottom:172.986667pt;}
.y26{bottom:173.066667pt;}
.ya2{bottom:180.826667pt;}
.y56{bottom:181.866667pt;}
.y25{bottom:188.746667pt;}
.ycc{bottom:196.666667pt;}
.y55{bottom:197.546667pt;}
.y24{bottom:204.346667pt;}
.y7b{bottom:204.666667pt;}
.ya1{bottom:204.746667pt;}
.ycb{bottom:212.266667pt;}
.y54{bottom:213.146667pt;}
.y23{bottom:219.946667pt;}
.y22{bottom:235.626667pt;}
.yca{bottom:235.946667pt;}
.y53{bottom:236.826667pt;}
.y79{bottom:244.586667pt;}
.ya0{bottom:247.626667pt;}
.yc9{bottom:251.546667pt;}
.y21{bottom:259.546667pt;}
.y52{bottom:268.426667pt;}
.y9f{bottom:271.546667pt;}
.yc8{bottom:275.146667pt;}
.y51{bottom:284.026667pt;}
.y78{bottom:284.586667pt;}
.yc7{bottom:290.826667pt;}
.y50{bottom:299.706667pt;}
.y20{bottom:302.426667pt;}
.y9e{bottom:304.746667pt;}
.yc6{bottom:314.426667pt;}
.y4f{bottom:315.306667pt;}
.y1f{bottom:318.106667pt;}
.y76{bottom:324.506667pt;}
.yc5{bottom:330.106667pt;}
.y4e{bottom:338.986667pt;}
.y9d{bottom:347.706667pt;}
.y1e{bottom:349.706667pt;}
.yc4{bottom:353.706667pt;}
.y9c{bottom:363.306667pt;}
.y74{bottom:364.426667pt;}
.y1d{bottom:365.306667pt;}
.yc3{bottom:369.306667pt;}
.y4d{bottom:370.826667pt;}
.y9b{bottom:378.986667pt;}
.y1c{bottom:380.986667pt;}
.yc2{bottom:392.986667pt;}
.y1b{bottom:396.586667pt;}
.y72{bottom:404.346667pt;}
.yc1{bottom:408.586667pt;}
.y9a{bottom:410.586667pt;}
.y1a{bottom:412.266667pt;}
.y4c{bottom:413.786667pt;}
.y99{bottom:426.213333pt;}
.y19{bottom:427.893333pt;}
.y4b{bottom:429.413333pt;}
.yc0{bottom:432.293333pt;}
.y98{bottom:441.893333pt;}
.y18{bottom:443.493333pt;}
.y4a{bottom:445.093333pt;}
.y71{bottom:447.653333pt;}
.ybf{bottom:447.893333pt;}
.y97{bottom:457.493333pt;}
.y17{bottom:459.173333pt;}
.y49{bottom:460.693333pt;}
.ybe{bottom:471.493333pt;}
.y16{bottom:474.773333pt;}
.y70{bottom:479.253333pt;}
.y48{bottom:484.293333pt;}
.y96{bottom:489.093333pt;}
.y15{bottom:490.373333pt;}
.y6f{bottom:494.933333pt;}
.ybd{bottom:495.173333pt;}
.y95{bottom:504.773333pt;}
.y14{bottom:506.053333pt;}
.y6e{bottom:510.533333pt;}
.ybc{bottom:510.773333pt;}
.y47{bottom:515.973333pt;}
.y94{bottom:520.373333pt;}
.y13{bottom:521.653333pt;}
.y46{bottom:531.573333pt;}
.y6d{bottom:534.213333pt;}
.ybb{bottom:534.453333pt;}
.y93{bottom:536.053333pt;}
.y12{bottom:537.333333pt;}
.y45{bottom:547.253333pt;}
.yba{bottom:550.053333pt;}
.y92{bottom:551.653333pt;}
.y11{bottom:552.933333pt;}
.y44{bottom:562.853333pt;}
.y6c{bottom:565.813333pt;}
.y91{bottom:567.253333pt;}
.y10{bottom:568.533333pt;}
.yb9{bottom:573.653333pt;}
.y6b{bottom:581.413333pt;}
.yf{bottom:584.213333pt;}
.y43{bottom:586.453333pt;}
.yb8{bottom:589.333333pt;}
.y90{bottom:591.173333pt;}
.y6a{bottom:597.093333pt;}
.ye{bottom:599.813333pt;}
.y69{bottom:612.693333pt;}
.yb7{bottom:612.933333pt;}
.yd{bottom:615.493333pt;}
.y42{bottom:618.133333pt;}
.yb6{bottom:628.613333pt;}
.yc{bottom:631.093333pt;}
.y41{bottom:633.733333pt;}
.y8f{bottom:634.133333pt;}
.y68{bottom:636.373333pt;}
.y40{bottom:649.413333pt;}
.y8e{bottom:649.733333pt;}
.yb5{bottom:652.213333pt;}
.yb{bottom:655.013333pt;}
.y3f{bottom:665.013333pt;}
.y8d{bottom:665.413333pt;}
.yb4{bottom:667.813333pt;}
.y67{bottom:668.293333pt;}
.y8c{bottom:681.013333pt;}
.y3e{bottom:688.613333pt;}
.yb3{bottom:691.493333pt;}
.y8b{bottom:696.613333pt;}
.ya{bottom:697.893333pt;}
.yb2{bottom:707.093333pt;}
.y66{bottom:711.173333pt;}
.y8a{bottom:712.293333pt;}
.y3d{bottom:720.533333pt;}
.y65{bottom:726.773333pt;}
.y89{bottom:727.893333pt;}
.y9{bottom:729.733333pt;}
.yb1{bottom:730.693333pt;}
.y64{bottom:742.453333pt;}
.y88{bottom:743.573333pt;}
.yb0{bottom:746.373333pt;}
.y63{bottom:758.053333pt;}
.y87{bottom:759.173333pt;}
.y8{bottom:761.733333pt;}
.y3c{bottom:763.493333pt;}
.yaf{bottom:769.973333pt;}
.y86{bottom:774.773333pt;}
.y3b{bottom:779.093333pt;}
.y62{bottom:781.733333pt;}
.yae{bottom:785.653333pt;}
.y85{bottom:790.453333pt;}
.y7{bottom:793.733333pt;}
.y3a{bottom:794.693333pt;}
.y84{bottom:806.053333pt;}
.yad{bottom:809.253333pt;}
.y6{bottom:809.733333pt;}
.y39{bottom:810.373333pt;}
.y61{bottom:813.333333pt;}
.y83{bottom:821.733333pt;}
.y38{bottom:825.973333pt;}
.y60{bottom:828.933333pt;}
.yac{bottom:832.853333pt;}
.y82{bottom:837.333333pt;}
.y37{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.y5f{bottom:844.613333pt;}
.yab{bottom:848.533333pt;}
.y81{bottom:852.933333pt;}
.y36{bottom:857.253333pt;}
.y5e{bottom:860.213333pt;}
.yaa{bottom:872.133333pt;}
.y35{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y80{bottom:876.853333pt;}
.y5d{bottom:883.813333pt;}
.ya9{bottom:887.813333pt;}
.y34{bottom:888.533333pt;}
.y3{bottom:897.840000pt;}
.y33{bottom:904.160000pt;}
.ya8{bottom:911.440000pt;}
.y5c{bottom:915.760000pt;}
.y32{bottom:919.840000pt;}
.ya7{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.ya6{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y5b{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.y5a{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y59{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.hb{height:23.626667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.hd{height:39.200000pt;}
.hc{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.he{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:135.146667pt;}
.w5{width:244.880000pt;}
.w4{width:290.346667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x7{left:98.879988pt;}
.x2{left:187.626655pt;}
.x5{left:196.986667pt;}
.x6{left:487.973333pt;}
.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; }
  