
    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_abfff36ba0a35381cb9d5ce1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_acf9efda64ef64ea423552c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_b82d2fbfe28dd88c9bcbca3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_74bb368f151d4f6337b94e4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_c9af7af42eec45972df27865.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_44fdf41e2c2a492d7b5c17d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_d9f0e73d0f4f8e3e65d09ab6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.924000px;}
.ls10{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.413400px;}
.ls1a{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.253200px;}
.ls12{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.153600px;}
.ls3{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:1.620000px;}
.ls1e{letter-spacing:2.340000px;}
.ls17{letter-spacing:3.060000px;}
.ls18{letter-spacing:5.940000px;}
.ls14{letter-spacing:8.820000px;}
.ls1c{letter-spacing:16.506720px;}
.lsf{letter-spacing:18.900000px;}
.ls1b{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-23.940000px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws7{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.686800px;}
.ws15{word-spacing:-14.680200px;}
.ws13{word-spacing:-14.580000px;}
.ws11{word-spacing:-13.860000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsd{word-spacing:0.000000px;}
._3{margin-left:-461.868480px;}
._6{margin-left:-3.645360px;}
._c{margin-left:-2.315520px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._9{width:4.950240px;}
._10{width:6.257040px;}
._d{width:8.014560px;}
._11{width:9.089520px;}
._a{width:10.194240px;}
._7{width:11.476080px;}
._b{width:12.549600px;}
._f{width:13.864800px;}
._8{width:16.156080px;}
._17{width:17.829840px;}
._16{width:19.541520px;}
._15{width:21.453840px;}
._19{width:46.672560px;}
._18{width:47.808000px;}
._4{width:58.492080px;}
._5{width:59.724960px;}
._12{width:85.277520px;}
._14{width:106.888320px;}
._13{width:121.970160px;}
._e{width:219.237120px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs9{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.220000px;}
.y1e{bottom:5.760000px;}
.y4f{bottom:5.940000px;}
.y27{bottom:6.120000px;}
.y58{bottom:7.740000px;}
.y55{bottom:10.260000px;}
.y44{bottom:10.800000px;}
.y6{bottom:14.220000px;}
.y1d{bottom:25.560000px;}
.y5a{bottom:25.740000px;}
.y26{bottom:25.920000px;}
.y4d{bottom:45.360000px;}
.y1c{bottom:45.540000px;}
.y5{bottom:45.720000px;}
.y9{bottom:60.120000px;}
.y1b{bottom:65.370000px;}
.y25{bottom:65.550000px;}
.y43{bottom:72.540000px;}
.y4{bottom:77.400000px;}
.yab{bottom:83.880000px;}
.y1a{bottom:85.170000px;}
.y24{bottom:89.310000px;}
.y41{bottom:90.720000px;}
.yd2{bottom:91.080000px;}
.y7c{bottom:93.960000px;}
.yaa{bottom:103.680000px;}
.y19{bottom:104.970000px;}
.y3{bottom:109.110000px;}
.y40{bottom:110.520000px;}
.yd1{bottom:110.880000px;}
.y23{bottom:111.810000px;}
.y7b{bottom:113.940000px;}
.ya9{bottom:123.660000px;}
.y18{bottom:124.770000px;}
.y3f{bottom:130.320000px;}
.yd0{bottom:130.680000px;}
.y7a{bottom:133.740000px;}
.y22{bottom:134.130000px;}
.y2{bottom:142.230000px;}
.ya8{bottom:143.460000px;}
.y17{bottom:144.750000px;}
.y3e{bottom:150.120000px;}
.ycf{bottom:150.660000px;}
.y79{bottom:153.570000px;}
.y21{bottom:156.450000px;}
.ya7{bottom:163.290000px;}
.y16{bottom:164.550000px;}
.y3d{bottom:170.130000px;}
.yce{bottom:170.490000px;}
.y78{bottom:173.370000px;}
.y20{bottom:179.310000px;}
.ya6{bottom:183.090000px;}
.y15{bottom:184.350000px;}
.y3c{bottom:189.930000px;}
.ycd{bottom:190.290000px;}
.y77{bottom:193.170000px;}
.y1f{bottom:202.350000px;}
.ya5{bottom:202.890000px;}
.y14{bottom:204.150000px;}
.y3b{bottom:209.730000px;}
.ycc{bottom:210.090000px;}
.y76{bottom:213.150000px;}
.ya4{bottom:222.870000px;}
.y13{bottom:223.950000px;}
.y3a{bottom:229.530000px;}
.ycb{bottom:229.890000px;}
.y75{bottom:232.950000px;}
.ya3{bottom:242.670000px;}
.y12{bottom:243.930000px;}
.y39{bottom:249.330000px;}
.yca{bottom:249.870000px;}
.y74{bottom:252.750000px;}
.ya2{bottom:262.470000px;}
.y38{bottom:269.310000px;}
.yc9{bottom:269.670000px;}
.y73{bottom:281.550000px;}
.ya1{bottom:282.270000px;}
.y37{bottom:289.110000px;}
.yc8{bottom:289.470000px;}
.y72{bottom:301.350000px;}
.ya0{bottom:302.070000px;}
.y36{bottom:308.910000px;}
.yc7{bottom:309.270000px;}
.y71{bottom:321.330000px;}
.y35{bottom:328.710000px;}
.yc6{bottom:329.070000px;}
.y9f{bottom:331.050000px;}
.y70{bottom:341.130000px;}
.y34{bottom:348.510000px;}
.yc5{bottom:349.050000px;}
.y9e{bottom:350.850000px;}
.y6f{bottom:360.930000px;}
.y33{bottom:368.490000px;}
.yc4{bottom:368.850000px;}
.y9d{bottom:370.650000px;}
.y6e{bottom:380.730000px;}
.y32{bottom:388.290000px;}
.yc3{bottom:388.650000px;}
.y9c{bottom:390.450000px;}
.y6d{bottom:400.575000px;}
.y31{bottom:408.135000px;}
.yc2{bottom:408.495000px;}
.y9b{bottom:410.295000px;}
.y6c{bottom:420.555000px;}
.y30{bottom:427.935000px;}
.yc1{bottom:428.295000px;}
.y9a{bottom:430.275000px;}
.y6b{bottom:440.355000px;}
.y2f{bottom:447.735000px;}
.yc0{bottom:448.275000px;}
.y99{bottom:450.075000px;}
.y6a{bottom:460.155000px;}
.y2e{bottom:467.715000px;}
.ybf{bottom:468.075000px;}
.y98{bottom:478.875000px;}
.y69{bottom:479.955000px;}
.y2d{bottom:487.515000px;}
.ybe{bottom:487.875000px;}
.y97{bottom:498.675000px;}
.y68{bottom:499.755000px;}
.y2c{bottom:507.315000px;}
.ybd{bottom:507.675000px;}
.y96{bottom:518.475000px;}
.y67{bottom:519.735000px;}
.y2b{bottom:527.115000px;}
.ybc{bottom:527.475000px;}
.y95{bottom:538.455000px;}
.y66{bottom:539.535000px;}
.y2a{bottom:546.915000px;}
.ybb{bottom:547.455000px;}
.y94{bottom:558.255000px;}
.y65{bottom:559.335000px;}
.y29{bottom:566.895000px;}
.yba{bottom:567.255000px;}
.y93{bottom:578.055000px;}
.y64{bottom:579.135000px;}
.y28{bottom:586.695000px;}
.yb9{bottom:587.055000px;}
.y92{bottom:597.855000px;}
.y63{bottom:598.935000px;}
.y11{bottom:601.455000px;}
.yb8{bottom:606.855000px;}
.y91{bottom:617.655000px;}
.y62{bottom:618.915000px;}
.yb7{bottom:626.655000px;}
.y90{bottom:637.635000px;}
.y61{bottom:638.715000px;}
.yb6{bottom:646.635000px;}
.y8f{bottom:657.465000px;}
.y60{bottom:658.545000px;}
.yb5{bottom:666.465000px;}
.y8e{bottom:677.265000px;}
.y5f{bottom:678.345000px;}
.yb4{bottom:686.265000px;}
.y8d{bottom:697.065000px;}
.y5e{bottom:698.145000px;}
.yb3{bottom:706.065000px;}
.y8c{bottom:716.865000px;}
.y5d{bottom:718.125000px;}
.yb2{bottom:725.865000px;}
.y8b{bottom:736.845000px;}
.y5c{bottom:737.925000px;}
.yb1{bottom:745.845000px;}
.y8a{bottom:756.645000px;}
.y5b{bottom:757.725000px;}
.yb0{bottom:765.645000px;}
.y59{bottom:772.485000px;}
.y89{bottom:776.445000px;}
.yaf{bottom:785.445000px;}
.y88{bottom:796.245000px;}
.yae{bottom:805.245000px;}
.y57{bottom:812.265000px;}
.y87{bottom:816.045000px;}
.yad{bottom:825.045000px;}
.y56{bottom:834.045000px;}
.y86{bottom:836.025000px;}
.yac{bottom:845.025000px;}
.y54{bottom:853.845000px;}
.y85{bottom:864.825000px;}
.y10{bottom:868.965000px;}
.y53{bottom:878.145000px;}
.y84{bottom:884.625000px;}
.yf{bottom:893.985000px;}
.y52{bottom:897.990000px;}
.y83{bottom:904.470000px;}
.ye{bottom:913.830000px;}
.y51{bottom:917.790000px;}
.y82{bottom:924.270000px;}
.yd{bottom:928.950000px;}
.y50{bottom:937.590000px;}
.y81{bottom:944.250000px;}
.yc{bottom:950.190000px;}
.y4e{bottom:957.390000px;}
.y80{bottom:964.050000px;}
.yb{bottom:973.770000px;}
.y4c{bottom:977.370000px;}
.y7f{bottom:983.850000px;}
.y7e{bottom:1003.650000px;}
.ya{bottom:1005.450000px;}
.y7d{bottom:1023.450000px;}
.y8{bottom:1032.810000px;}
.y4b{bottom:1043.430000px;}
.y1{bottom:1046.130000px;}
.y4a{bottom:1063.230000px;}
.y49{bottom:1083.030000px;}
.y48{bottom:1102.830000px;}
.y47{bottom:1122.630000px;}
.y46{bottom:1142.610000px;}
.y45{bottom:1162.440000px;}
.y42{bottom:1192.320000px;}
.h5{height:2.010938px;}
.h16{height:19.800000px;}
.h17{height:19.836000px;}
.h15{height:19.980000px;}
.h19{height:21.780000px;}
.h18{height:24.300000px;}
.hb{height:27.147656px;}
.he{height:34.036523px;}
.h6{height:37.705078px;}
.hf{height:38.100586px;}
.h1a{height:39.780000px;}
.hc{height:41.726953px;}
.h9{height:42.164648px;}
.h1b{height:43.506914px;}
.h7{height:46.251562px;}
.h1c{height:48.027656px;}
.h11{height:48.127500px;}
.h4{height:48.774375px;}
.h10{height:49.255313px;}
.ha{height:53.224453px;}
.h3{height:57.256875px;}
.h14{height:59.400000px;}
.h8{height:67.565039px;}
.h13{height:111.043828px;}
.h2{height:162.750000px;}
.hd{height:257.970000px;}
.h12{height:268.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:42.696000px;}
.w7{width:56.879973px;}
.wf{width:104.796000px;}
.wd{width:112.896000px;}
.w9{width:116.100000px;}
.we{width:121.896000px;}
.wa{width:126.216000px;}
.wc{width:129.960000px;}
.w10{width:129.996000px;}
.wb{width:135.396000px;}
.w3{width:147.456000px;}
.w6{width:217.875000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:2.880000px;}
.x2{left:8.100000px;}
.x8{left:12.825000px;}
.xa{left:28.619973px;}
.x1{left:54.000000px;}
.x6{left:55.800000px;}
.x14{left:80.999987px;}
.xc{left:96.696000px;}
.x13{left:108.035987px;}
.x4{left:139.350000px;}
.xd{left:212.790000px;}
.x9{left:331.814987px;}
.xe{left:339.015000px;}
.x5{left:393.014987px;}
.xf{left:474.405000px;}
.x10{left:604.365000px;}
.x7{left:619.485000px;}
.x3{left:687.930000px;}
.x12{left:709.170000px;}
.x11{left:717.270000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.821333pt;}
.ls10{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.367467pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.225067pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.136533pt;}
.ls3{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:1.440000pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls17{letter-spacing:2.720000pt;}
.ls18{letter-spacing:5.280000pt;}
.ls14{letter-spacing:7.840000pt;}
.ls1c{letter-spacing:14.672640pt;}
.lsf{letter-spacing:16.800000pt;}
.ls1b{letter-spacing:40.912640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws7{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.ws12{word-spacing:-13.054933pt;}
.ws15{word-spacing:-13.049067pt;}
.ws13{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsd{word-spacing:0.000000pt;}
._3{margin-left:-410.549760pt;}
._6{margin-left:-3.240320pt;}
._c{margin-left:-2.058240pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._9{width:4.400213pt;}
._10{width:5.561813pt;}
._d{width:7.124053pt;}
._11{width:8.079573pt;}
._a{width:9.061547pt;}
._7{width:10.200960pt;}
._b{width:11.155200pt;}
._f{width:12.324267pt;}
._8{width:14.360960pt;}
._17{width:15.848747pt;}
._16{width:17.370240pt;}
._15{width:19.070080pt;}
._19{width:41.486720pt;}
._18{width:42.496000pt;}
._4{width:51.992960pt;}
._5{width:53.088853pt;}
._12{width:75.802240pt;}
._14{width:95.011840pt;}
._13{width:108.417920pt;}
._e{width:194.877440pt;}
.fs2{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs9{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.640000pt;}
.y1e{bottom:5.120000pt;}
.y4f{bottom:5.280000pt;}
.y27{bottom:5.440000pt;}
.y58{bottom:6.880000pt;}
.y55{bottom:9.120000pt;}
.y44{bottom:9.600000pt;}
.y6{bottom:12.640000pt;}
.y1d{bottom:22.720000pt;}
.y5a{bottom:22.880000pt;}
.y26{bottom:23.040000pt;}
.y4d{bottom:40.320000pt;}
.y1c{bottom:40.480000pt;}
.y5{bottom:40.640000pt;}
.y9{bottom:53.440000pt;}
.y1b{bottom:58.106667pt;}
.y25{bottom:58.266667pt;}
.y43{bottom:64.480000pt;}
.y4{bottom:68.800000pt;}
.yab{bottom:74.560000pt;}
.y1a{bottom:75.706667pt;}
.y24{bottom:79.386667pt;}
.y41{bottom:80.640000pt;}
.yd2{bottom:80.960000pt;}
.y7c{bottom:83.520000pt;}
.yaa{bottom:92.160000pt;}
.y19{bottom:93.306667pt;}
.y3{bottom:96.986667pt;}
.y40{bottom:98.240000pt;}
.yd1{bottom:98.560000pt;}
.y23{bottom:99.386667pt;}
.y7b{bottom:101.280000pt;}
.ya9{bottom:109.920000pt;}
.y18{bottom:110.906667pt;}
.y3f{bottom:115.840000pt;}
.yd0{bottom:116.160000pt;}
.y7a{bottom:118.880000pt;}
.y22{bottom:119.226667pt;}
.y2{bottom:126.426667pt;}
.ya8{bottom:127.520000pt;}
.y17{bottom:128.666667pt;}
.y3e{bottom:133.440000pt;}
.ycf{bottom:133.920000pt;}
.y79{bottom:136.506667pt;}
.y21{bottom:139.066667pt;}
.ya7{bottom:145.146667pt;}
.y16{bottom:146.266667pt;}
.y3d{bottom:151.226667pt;}
.yce{bottom:151.546667pt;}
.y78{bottom:154.106667pt;}
.y20{bottom:159.386667pt;}
.ya6{bottom:162.746667pt;}
.y15{bottom:163.866667pt;}
.y3c{bottom:168.826667pt;}
.ycd{bottom:169.146667pt;}
.y77{bottom:171.706667pt;}
.y1f{bottom:179.866667pt;}
.ya5{bottom:180.346667pt;}
.y14{bottom:181.466667pt;}
.y3b{bottom:186.426667pt;}
.ycc{bottom:186.746667pt;}
.y76{bottom:189.466667pt;}
.ya4{bottom:198.106667pt;}
.y13{bottom:199.066667pt;}
.y3a{bottom:204.026667pt;}
.ycb{bottom:204.346667pt;}
.y75{bottom:207.066667pt;}
.ya3{bottom:215.706667pt;}
.y12{bottom:216.826667pt;}
.y39{bottom:221.626667pt;}
.yca{bottom:222.106667pt;}
.y74{bottom:224.666667pt;}
.ya2{bottom:233.306667pt;}
.y38{bottom:239.386667pt;}
.yc9{bottom:239.706667pt;}
.y73{bottom:250.266667pt;}
.ya1{bottom:250.906667pt;}
.y37{bottom:256.986667pt;}
.yc8{bottom:257.306667pt;}
.y72{bottom:267.866667pt;}
.ya0{bottom:268.506667pt;}
.y36{bottom:274.586667pt;}
.yc7{bottom:274.906667pt;}
.y71{bottom:285.626667pt;}
.y35{bottom:292.186667pt;}
.yc6{bottom:292.506667pt;}
.y9f{bottom:294.266667pt;}
.y70{bottom:303.226667pt;}
.y34{bottom:309.786667pt;}
.yc5{bottom:310.266667pt;}
.y9e{bottom:311.866667pt;}
.y6f{bottom:320.826667pt;}
.y33{bottom:327.546667pt;}
.yc4{bottom:327.866667pt;}
.y9d{bottom:329.466667pt;}
.y6e{bottom:338.426667pt;}
.y32{bottom:345.146667pt;}
.yc3{bottom:345.466667pt;}
.y9c{bottom:347.066667pt;}
.y6d{bottom:356.066667pt;}
.y31{bottom:362.786667pt;}
.yc2{bottom:363.106667pt;}
.y9b{bottom:364.706667pt;}
.y6c{bottom:373.826667pt;}
.y30{bottom:380.386667pt;}
.yc1{bottom:380.706667pt;}
.y9a{bottom:382.466667pt;}
.y6b{bottom:391.426667pt;}
.y2f{bottom:397.986667pt;}
.yc0{bottom:398.466667pt;}
.y99{bottom:400.066667pt;}
.y6a{bottom:409.026667pt;}
.y2e{bottom:415.746667pt;}
.ybf{bottom:416.066667pt;}
.y98{bottom:425.666667pt;}
.y69{bottom:426.626667pt;}
.y2d{bottom:433.346667pt;}
.ybe{bottom:433.666667pt;}
.y97{bottom:443.266667pt;}
.y68{bottom:444.226667pt;}
.y2c{bottom:450.946667pt;}
.ybd{bottom:451.266667pt;}
.y96{bottom:460.866667pt;}
.y67{bottom:461.986667pt;}
.y2b{bottom:468.546667pt;}
.ybc{bottom:468.866667pt;}
.y95{bottom:478.626667pt;}
.y66{bottom:479.586667pt;}
.y2a{bottom:486.146667pt;}
.ybb{bottom:486.626667pt;}
.y94{bottom:496.226667pt;}
.y65{bottom:497.186667pt;}
.y29{bottom:503.906667pt;}
.yba{bottom:504.226667pt;}
.y93{bottom:513.826667pt;}
.y64{bottom:514.786667pt;}
.y28{bottom:521.506667pt;}
.yb9{bottom:521.826667pt;}
.y92{bottom:531.426667pt;}
.y63{bottom:532.386667pt;}
.y11{bottom:534.626667pt;}
.yb8{bottom:539.426667pt;}
.y91{bottom:549.026667pt;}
.y62{bottom:550.146667pt;}
.yb7{bottom:557.026667pt;}
.y90{bottom:566.786667pt;}
.y61{bottom:567.746667pt;}
.yb6{bottom:574.786667pt;}
.y8f{bottom:584.413333pt;}
.y60{bottom:585.373333pt;}
.yb5{bottom:592.413333pt;}
.y8e{bottom:602.013333pt;}
.y5f{bottom:602.973333pt;}
.yb4{bottom:610.013333pt;}
.y8d{bottom:619.613333pt;}
.y5e{bottom:620.573333pt;}
.yb3{bottom:627.613333pt;}
.y8c{bottom:637.213333pt;}
.y5d{bottom:638.333333pt;}
.yb2{bottom:645.213333pt;}
.y8b{bottom:654.973333pt;}
.y5c{bottom:655.933333pt;}
.yb1{bottom:662.973333pt;}
.y8a{bottom:672.573333pt;}
.y5b{bottom:673.533333pt;}
.yb0{bottom:680.573333pt;}
.y59{bottom:686.653333pt;}
.y89{bottom:690.173333pt;}
.yaf{bottom:698.173333pt;}
.y88{bottom:707.773333pt;}
.yae{bottom:715.773333pt;}
.y57{bottom:722.013333pt;}
.y87{bottom:725.373333pt;}
.yad{bottom:733.373333pt;}
.y56{bottom:741.373333pt;}
.y86{bottom:743.133333pt;}
.yac{bottom:751.133333pt;}
.y54{bottom:758.973333pt;}
.y85{bottom:768.733333pt;}
.y10{bottom:772.413333pt;}
.y53{bottom:780.573333pt;}
.y84{bottom:786.333333pt;}
.yf{bottom:794.653333pt;}
.y52{bottom:798.213333pt;}
.y83{bottom:803.973333pt;}
.ye{bottom:812.293333pt;}
.y51{bottom:815.813333pt;}
.y82{bottom:821.573333pt;}
.yd{bottom:825.733333pt;}
.y50{bottom:833.413333pt;}
.y81{bottom:839.333333pt;}
.yc{bottom:844.613333pt;}
.y4e{bottom:851.013333pt;}
.y80{bottom:856.933333pt;}
.yb{bottom:865.573333pt;}
.y4c{bottom:868.773333pt;}
.y7f{bottom:874.533333pt;}
.y7e{bottom:892.133333pt;}
.ya{bottom:893.733333pt;}
.y7d{bottom:909.733333pt;}
.y8{bottom:918.053333pt;}
.y4b{bottom:927.493333pt;}
.y1{bottom:929.893333pt;}
.y4a{bottom:945.093333pt;}
.y49{bottom:962.693333pt;}
.y48{bottom:980.293333pt;}
.y47{bottom:997.893333pt;}
.y46{bottom:1015.653333pt;}
.y45{bottom:1033.280000pt;}
.y42{bottom:1059.840000pt;}
.h5{height:1.787500pt;}
.h16{height:17.600000pt;}
.h17{height:17.632000pt;}
.h15{height:17.760000pt;}
.h19{height:19.360000pt;}
.h18{height:21.600000pt;}
.hb{height:24.131250pt;}
.he{height:30.254687pt;}
.h6{height:33.515625pt;}
.hf{height:33.867188pt;}
.h1a{height:35.360000pt;}
.hc{height:37.090625pt;}
.h9{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h7{height:41.112500pt;}
.h1c{height:42.691250pt;}
.h11{height:42.780000pt;}
.h4{height:43.355000pt;}
.h10{height:43.782500pt;}
.ha{height:47.310625pt;}
.h3{height:50.895000pt;}
.h14{height:52.800000pt;}
.h8{height:60.057813pt;}
.h13{height:98.705625pt;}
.h2{height:144.666667pt;}
.hd{height:229.306667pt;}
.h12{height:238.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:37.952000pt;}
.w7{width:50.559976pt;}
.wf{width:93.152000pt;}
.wd{width:100.352000pt;}
.w9{width:103.200000pt;}
.we{width:108.352000pt;}
.wa{width:112.192000pt;}
.wc{width:115.520000pt;}
.w10{width:115.552000pt;}
.wb{width:120.352000pt;}
.w3{width:131.072000pt;}
.w6{width:193.666667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:2.560000pt;}
.x2{left:7.200000pt;}
.x8{left:11.400000pt;}
.xa{left:25.439976pt;}
.x1{left:48.000000pt;}
.x6{left:49.600000pt;}
.x14{left:71.999988pt;}
.xc{left:85.952000pt;}
.x13{left:96.031988pt;}
.x4{left:123.866667pt;}
.xd{left:189.146667pt;}
.x9{left:294.946655pt;}
.xe{left:301.346667pt;}
.x5{left:349.346655pt;}
.xf{left:421.693333pt;}
.x10{left:537.213333pt;}
.x7{left:550.653333pt;}
.x3{left:611.493333pt;}
.x12{left:630.373333pt;}
.x11{left:637.573333pt;}
}




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