
    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_ca3d50e4d333f1be39a5771e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5fcfa7499a8fe6bad1d1065c.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_1da1f8a06cbf840c2ad26a38.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_1c610d05fa2261a2b2b36524.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.774000px;}
.ls9{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.037440px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.lsb{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.513600px;}
.ls2{letter-spacing:8.100000px;}
.ls13{letter-spacing:11.466720px;}
.ls12{letter-spacing:41.850720px;}
.ls4{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;}
}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2127.144960px;}
._2{margin-left:-1454.832000px;}
._6{margin-left:-4.379280px;}
._c{margin-left:-3.022080px;}
._0{margin-left:-1.263600px;}
._3{width:1.348800px;}
._a{width:2.428080px;}
._5{width:3.883680px;}
._7{width:5.046960px;}
._d{width:6.360240px;}
._f{width:7.453200px;}
._9{width:8.605440px;}
._8{width:9.979920px;}
._b{width:11.772720px;}
._e{width:13.266720px;}
._11{width:15.981600px;}
._12{width:17.031600px;}
._13{width:18.574080px;}
._16{width:20.176080px;}
._17{width:22.199280px;}
._10{width:24.467520px;}
._4{width:27.998880px;}
._15{width:29.162880px;}
._14{width:30.298320px;}
._18{width:53.271840px;}
._1b{width:66.145200px;}
._1a{width:68.075760px;}
._19{width:95.462400px;}
.fc4{color:rgb(238,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.240000px;}
.y10{bottom:4.500000px;}
.y2c{bottom:20.520000px;}
.y49{bottom:24.120000px;}
.y48{bottom:42.660000px;}
.y2b{bottom:49.320000px;}
.y47{bottom:61.200000px;}
.y6{bottom:65.916000px;}
.y2a{bottom:69.120000px;}
.y46{bottom:79.920000px;}
.y29{bottom:89.100000px;}
.y45{bottom:98.460000px;}
.yf8{bottom:100.296000px;}
.y28{bottom:108.900000px;}
.yf9{bottom:109.296000px;}
.ybc{bottom:111.096000px;}
.yd2{bottom:112.896000px;}
.y52{bottom:113.616000px;}
.y44{bottom:117.180000px;}
.y93{bottom:120.096000px;}
.y27{bottom:128.700000px;}
.y88{bottom:129.096000px;}
.ybb{bottom:130.896000px;}
.yd1{bottom:132.696000px;}
.y51{bottom:133.416000px;}
.y43{bottom:135.720000px;}
.y92{bottom:139.896000px;}
.y26{bottom:148.500000px;}
.y87{bottom:148.896000px;}
.yba{bottom:150.690000px;}
.yd0{bottom:152.670000px;}
.y50{bottom:153.390000px;}
.y42{bottom:154.260000px;}
.y91{bottom:159.690000px;}
.y25{bottom:168.300000px;}
.y86{bottom:168.690000px;}
.yb9{bottom:170.670000px;}
.ycf{bottom:172.470000px;}
.y41{bottom:172.980000px;}
.y4f{bottom:173.190000px;}
.y90{bottom:179.670000px;}
.y24{bottom:188.280000px;}
.y85{bottom:188.670000px;}
.yb8{bottom:190.470000px;}
.y40{bottom:191.520000px;}
.yce{bottom:192.270000px;}
.y4e{bottom:192.990000px;}
.y8f{bottom:199.470000px;}
.y23{bottom:208.080000px;}
.y84{bottom:208.470000px;}
.y3f{bottom:210.240000px;}
.yb7{bottom:210.270000px;}
.yf2{bottom:212.070000px;}
.y4d{bottom:212.790000px;}
.y8e{bottom:219.270000px;}
.ycd{bottom:221.070000px;}
.y22{bottom:227.880000px;}
.y83{bottom:228.270000px;}
.y3e{bottom:228.780000px;}
.yb6{bottom:230.070000px;}
.yf1{bottom:231.870000px;}
.y4c{bottom:232.590000px;}
.y8d{bottom:239.070000px;}
.ycc{bottom:240.870000px;}
.y3d{bottom:247.500000px;}
.y21{bottom:247.680000px;}
.y82{bottom:248.070000px;}
.yb5{bottom:249.870000px;}
.y4b{bottom:252.570000px;}
.y8c{bottom:258.870000px;}
.ycb{bottom:260.850000px;}
.y3c{bottom:266.040000px;}
.y20{bottom:267.510000px;}
.y81{bottom:267.870000px;}
.yb4{bottom:269.850000px;}
.y4a{bottom:272.370000px;}
.y8b{bottom:278.895000px;}
.yca{bottom:280.695000px;}
.y3b{bottom:284.610000px;}
.y1f{bottom:287.490000px;}
.y80{bottom:287.895000px;}
.y11{bottom:288.615000px;}
.yb3{bottom:289.695000px;}
.y8a{bottom:298.695000px;}
.yc9{bottom:300.495000px;}
.y3a{bottom:303.330000px;}
.y1e{bottom:307.290000px;}
.y7f{bottom:307.695000px;}
.yb2{bottom:309.495000px;}
.y89{bottom:318.495000px;}
.yc8{bottom:320.295000px;}
.y39{bottom:321.870000px;}
.y1d{bottom:327.090000px;}
.y7e{bottom:327.495000px;}
.yb1{bottom:329.295000px;}
.yf7{bottom:338.295000px;}
.yc7{bottom:340.095000px;}
.y38{bottom:340.590000px;}
.y1c{bottom:346.890000px;}
.y7d{bottom:347.295000px;}
.yb0{bottom:349.095000px;}
.yf6{bottom:358.095000px;}
.y37{bottom:359.130000px;}
.yc6{bottom:359.895000px;}
.y1b{bottom:366.690000px;}
.y7c{bottom:367.095000px;}
.yaf{bottom:368.895000px;}
.y36{bottom:377.670000px;}
.yf5{bottom:377.895000px;}
.yf0{bottom:379.875000px;}
.y1a{bottom:386.670000px;}
.y7b{bottom:386.895000px;}
.yae{bottom:388.875000px;}
.y35{bottom:396.390000px;}
.yf4{bottom:397.875000px;}
.yef{bottom:399.675000px;}
.y19{bottom:406.470000px;}
.y7a{bottom:406.875000px;}
.yad{bottom:408.675000px;}
.y34{bottom:414.930000px;}
.yf3{bottom:417.675000px;}
.yee{bottom:419.475000px;}
.y18{bottom:426.270000px;}
.y79{bottom:426.675000px;}
.yc5{bottom:428.475000px;}
.y33{bottom:433.650000px;}
.yac{bottom:437.475000px;}
.yed{bottom:439.275000px;}
.y17{bottom:446.070000px;}
.y78{bottom:446.475000px;}
.yc4{bottom:448.275000px;}
.y32{bottom:452.190000px;}
.yab{bottom:457.275000px;}
.yec{bottom:459.075000px;}
.y16{bottom:465.870000px;}
.y77{bottom:466.275000px;}
.yc3{bottom:468.075000px;}
.y31{bottom:470.730000px;}
.yaa{bottom:477.075000px;}
.yeb{bottom:479.055000px;}
.y15{bottom:485.850000px;}
.y76{bottom:486.075000px;}
.yc2{bottom:488.055000px;}
.y30{bottom:489.450000px;}
.ya9{bottom:497.055000px;}
.yea{bottom:498.855000px;}
.y14{bottom:505.650000px;}
.y75{bottom:506.055000px;}
.yc1{bottom:507.855000px;}
.y2f{bottom:507.990000px;}
.ya8{bottom:516.855000px;}
.ye9{bottom:518.655000px;}
.y13{bottom:525.450000px;}
.y74{bottom:525.855000px;}
.y2e{bottom:526.710000px;}
.yc0{bottom:527.655000px;}
.ya7{bottom:536.655000px;}
.ye8{bottom:538.455000px;}
.y12{bottom:545.250000px;}
.y73{bottom:545.655000px;}
.ya6{bottom:556.485000px;}
.ye7{bottom:558.285000px;}
.y72{bottom:565.485000px;}
.ya5{bottom:576.285000px;}
.ye6{bottom:578.265000px;}
.y71{bottom:585.285000px;}
.ya4{bottom:596.265000px;}
.ye5{bottom:598.065000px;}
.y70{bottom:605.265000px;}
.ya3{bottom:616.065000px;}
.ye4{bottom:617.865000px;}
.y6f{bottom:625.065000px;}
.ya2{bottom:635.865000px;}
.ye3{bottom:637.665000px;}
.y6e{bottom:644.865000px;}
.ya1{bottom:655.665000px;}
.ye2{bottom:657.465000px;}
.y6d{bottom:664.665000px;}
.ya0{bottom:675.465000px;}
.y6c{bottom:684.465000px;}
.ye1{bottom:686.445000px;}
.y9f{bottom:695.445000px;}
.y6b{bottom:704.445000px;}
.ye0{bottom:706.245000px;}
.y9e{bottom:715.245000px;}
.y6a{bottom:724.245000px;}
.ydf{bottom:726.045000px;}
.y9d{bottom:735.045000px;}
.y69{bottom:744.045000px;}
.yde{bottom:745.845000px;}
.y9c{bottom:754.845000px;}
.y68{bottom:763.845000px;}
.ydd{bottom:765.645000px;}
.y9b{bottom:774.645000px;}
.y67{bottom:783.645000px;}
.ydc{bottom:785.625000px;}
.y9a{bottom:794.625000px;}
.y66{bottom:803.625000px;}
.ydb{bottom:805.425000px;}
.y99{bottom:814.425000px;}
.y65{bottom:823.425000px;}
.yda{bottom:825.225000px;}
.y98{bottom:834.225000px;}
.y64{bottom:843.270000px;}
.yd9{bottom:845.070000px;}
.yf{bottom:850.290000px;}
.y97{bottom:854.070000px;}
.y63{bottom:863.070000px;}
.yd8{bottom:864.870000px;}
.y96{bottom:873.870000px;}
.ye{bottom:876.930000px;}
.y62{bottom:882.870000px;}
.y95{bottom:893.850000px;}
.yd{bottom:901.950000px;}
.y61{bottom:902.850000px;}
.y94{bottom:913.650000px;}
.yc{bottom:921.750000px;}
.y60{bottom:922.650000px;}
.ybf{bottom:933.450000px;}
.yb{bottom:941.550000px;}
.y5f{bottom:942.450000px;}
.ybe{bottom:953.250000px;}
.ya{bottom:956.850000px;}
.y5e{bottom:962.250000px;}
.ybd{bottom:973.050000px;}
.y9{bottom:978.090000px;}
.y5d{bottom:982.050000px;}
.yd7{bottom:993.030000px;}
.y8{bottom:1001.490000px;}
.y5c{bottom:1002.030000px;}
.yd6{bottom:1012.830000px;}
.y5b{bottom:1021.830000px;}
.yd5{bottom:1032.630000px;}
.y7{bottom:1033.170000px;}
.y5a{bottom:1041.630000px;}
.yd4{bottom:1052.430000px;}
.y59{bottom:1061.430000px;}
.y5{bottom:1070.790000px;}
.yd3{bottom:1072.230000px;}
.y58{bottom:1081.230000px;}
.y4{bottom:1100.490000px;}
.y57{bottom:1101.210000px;}
.y56{bottom:1121.010000px;}
.y3{bottom:1130.220000px;}
.y55{bottom:1140.840000px;}
.y2{bottom:1159.920000px;}
.y54{bottom:1172.520000px;}
.y1{bottom:1190.160000px;}
.y53{bottom:1194.300000px;}
.hb{height:18.540000px;}
.h9{height:27.147656px;}
.ha{height:41.726953px;}
.h7{height:42.164648px;}
.hd{height:43.506914px;}
.h5{height:46.736719px;}
.h4{height:50.273438px;}
.h8{height:53.224453px;}
.h3{height:58.819922px;}
.h2{height:59.436914px;}
.h6{height:67.565039px;}
.hc{height:559.335000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:193.530000px;}
.w3{width:587.985000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.179987px;}
.x4{left:80.999987px;}
.x5{left:108.035987px;}
.x3{left:641.985000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.033280pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.456533pt;}
.ls2{letter-spacing:7.200000pt;}
.ls13{letter-spacing:10.192640pt;}
.ls12{letter-spacing:37.200640pt;}
.ls4{letter-spacing:40.912640pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1890.795520pt;}
._2{margin-left:-1293.184000pt;}
._6{margin-left:-3.892693pt;}
._c{margin-left:-2.686293pt;}
._0{margin-left:-1.123200pt;}
._3{width:1.198933pt;}
._a{width:2.158293pt;}
._5{width:3.452160pt;}
._7{width:4.486187pt;}
._d{width:5.653547pt;}
._f{width:6.625067pt;}
._9{width:7.649280pt;}
._8{width:8.871040pt;}
._b{width:10.464640pt;}
._e{width:11.792640pt;}
._11{width:14.205867pt;}
._12{width:15.139200pt;}
._13{width:16.510293pt;}
._16{width:17.934293pt;}
._17{width:19.732693pt;}
._10{width:21.748907pt;}
._4{width:24.887893pt;}
._15{width:25.922560pt;}
._14{width:26.931840pt;}
._18{width:47.352747pt;}
._1b{width:58.795733pt;}
._1a{width:60.511787pt;}
._19{width:84.855467pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:2.880000pt;}
.y10{bottom:4.000000pt;}
.y2c{bottom:18.240000pt;}
.y49{bottom:21.440000pt;}
.y48{bottom:37.920000pt;}
.y2b{bottom:43.840000pt;}
.y47{bottom:54.400000pt;}
.y6{bottom:58.592000pt;}
.y2a{bottom:61.440000pt;}
.y46{bottom:71.040000pt;}
.y29{bottom:79.200000pt;}
.y45{bottom:87.520000pt;}
.yf8{bottom:89.152000pt;}
.y28{bottom:96.800000pt;}
.yf9{bottom:97.152000pt;}
.ybc{bottom:98.752000pt;}
.yd2{bottom:100.352000pt;}
.y52{bottom:100.992000pt;}
.y44{bottom:104.160000pt;}
.y93{bottom:106.752000pt;}
.y27{bottom:114.400000pt;}
.y88{bottom:114.752000pt;}
.ybb{bottom:116.352000pt;}
.yd1{bottom:117.952000pt;}
.y51{bottom:118.592000pt;}
.y43{bottom:120.640000pt;}
.y92{bottom:124.352000pt;}
.y26{bottom:132.000000pt;}
.y87{bottom:132.352000pt;}
.yba{bottom:133.946667pt;}
.yd0{bottom:135.706667pt;}
.y50{bottom:136.346667pt;}
.y42{bottom:137.120000pt;}
.y91{bottom:141.946667pt;}
.y25{bottom:149.600000pt;}
.y86{bottom:149.946667pt;}
.yb9{bottom:151.706667pt;}
.ycf{bottom:153.306667pt;}
.y41{bottom:153.760000pt;}
.y4f{bottom:153.946667pt;}
.y90{bottom:159.706667pt;}
.y24{bottom:167.360000pt;}
.y85{bottom:167.706667pt;}
.yb8{bottom:169.306667pt;}
.y40{bottom:170.240000pt;}
.yce{bottom:170.906667pt;}
.y4e{bottom:171.546667pt;}
.y8f{bottom:177.306667pt;}
.y23{bottom:184.960000pt;}
.y84{bottom:185.306667pt;}
.y3f{bottom:186.880000pt;}
.yb7{bottom:186.906667pt;}
.yf2{bottom:188.506667pt;}
.y4d{bottom:189.146667pt;}
.y8e{bottom:194.906667pt;}
.ycd{bottom:196.506667pt;}
.y22{bottom:202.560000pt;}
.y83{bottom:202.906667pt;}
.y3e{bottom:203.360000pt;}
.yb6{bottom:204.506667pt;}
.yf1{bottom:206.106667pt;}
.y4c{bottom:206.746667pt;}
.y8d{bottom:212.506667pt;}
.ycc{bottom:214.106667pt;}
.y3d{bottom:220.000000pt;}
.y21{bottom:220.160000pt;}
.y82{bottom:220.506667pt;}
.yb5{bottom:222.106667pt;}
.y4b{bottom:224.506667pt;}
.y8c{bottom:230.106667pt;}
.ycb{bottom:231.866667pt;}
.y3c{bottom:236.480000pt;}
.y20{bottom:237.786667pt;}
.y81{bottom:238.106667pt;}
.yb4{bottom:239.866667pt;}
.y4a{bottom:242.106667pt;}
.y8b{bottom:247.906667pt;}
.yca{bottom:249.506667pt;}
.y3b{bottom:252.986667pt;}
.y1f{bottom:255.546667pt;}
.y80{bottom:255.906667pt;}
.y11{bottom:256.546667pt;}
.yb3{bottom:257.506667pt;}
.y8a{bottom:265.506667pt;}
.yc9{bottom:267.106667pt;}
.y3a{bottom:269.626667pt;}
.y1e{bottom:273.146667pt;}
.y7f{bottom:273.506667pt;}
.yb2{bottom:275.106667pt;}
.y89{bottom:283.106667pt;}
.yc8{bottom:284.706667pt;}
.y39{bottom:286.106667pt;}
.y1d{bottom:290.746667pt;}
.y7e{bottom:291.106667pt;}
.yb1{bottom:292.706667pt;}
.yf7{bottom:300.706667pt;}
.yc7{bottom:302.306667pt;}
.y38{bottom:302.746667pt;}
.y1c{bottom:308.346667pt;}
.y7d{bottom:308.706667pt;}
.yb0{bottom:310.306667pt;}
.yf6{bottom:318.306667pt;}
.y37{bottom:319.226667pt;}
.yc6{bottom:319.906667pt;}
.y1b{bottom:325.946667pt;}
.y7c{bottom:326.306667pt;}
.yaf{bottom:327.906667pt;}
.y36{bottom:335.706667pt;}
.yf5{bottom:335.906667pt;}
.yf0{bottom:337.666667pt;}
.y1a{bottom:343.706667pt;}
.y7b{bottom:343.906667pt;}
.yae{bottom:345.666667pt;}
.y35{bottom:352.346667pt;}
.yf4{bottom:353.666667pt;}
.yef{bottom:355.266667pt;}
.y19{bottom:361.306667pt;}
.y7a{bottom:361.666667pt;}
.yad{bottom:363.266667pt;}
.y34{bottom:368.826667pt;}
.yf3{bottom:371.266667pt;}
.yee{bottom:372.866667pt;}
.y18{bottom:378.906667pt;}
.y79{bottom:379.266667pt;}
.yc5{bottom:380.866667pt;}
.y33{bottom:385.466667pt;}
.yac{bottom:388.866667pt;}
.yed{bottom:390.466667pt;}
.y17{bottom:396.506667pt;}
.y78{bottom:396.866667pt;}
.yc4{bottom:398.466667pt;}
.y32{bottom:401.946667pt;}
.yab{bottom:406.466667pt;}
.yec{bottom:408.066667pt;}
.y16{bottom:414.106667pt;}
.y77{bottom:414.466667pt;}
.yc3{bottom:416.066667pt;}
.y31{bottom:418.426667pt;}
.yaa{bottom:424.066667pt;}
.yeb{bottom:425.826667pt;}
.y15{bottom:431.866667pt;}
.y76{bottom:432.066667pt;}
.yc2{bottom:433.826667pt;}
.y30{bottom:435.066667pt;}
.ya9{bottom:441.826667pt;}
.yea{bottom:443.426667pt;}
.y14{bottom:449.466667pt;}
.y75{bottom:449.826667pt;}
.yc1{bottom:451.426667pt;}
.y2f{bottom:451.546667pt;}
.ya8{bottom:459.426667pt;}
.ye9{bottom:461.026667pt;}
.y13{bottom:467.066667pt;}
.y74{bottom:467.426667pt;}
.y2e{bottom:468.186667pt;}
.yc0{bottom:469.026667pt;}
.ya7{bottom:477.026667pt;}
.ye8{bottom:478.626667pt;}
.y12{bottom:484.666667pt;}
.y73{bottom:485.026667pt;}
.ya6{bottom:494.653333pt;}
.ye7{bottom:496.253333pt;}
.y72{bottom:502.653333pt;}
.ya5{bottom:512.253333pt;}
.ye6{bottom:514.013333pt;}
.y71{bottom:520.253333pt;}
.ya4{bottom:530.013333pt;}
.ye5{bottom:531.613333pt;}
.y70{bottom:538.013333pt;}
.ya3{bottom:547.613333pt;}
.ye4{bottom:549.213333pt;}
.y6f{bottom:555.613333pt;}
.ya2{bottom:565.213333pt;}
.ye3{bottom:566.813333pt;}
.y6e{bottom:573.213333pt;}
.ya1{bottom:582.813333pt;}
.ye2{bottom:584.413333pt;}
.y6d{bottom:590.813333pt;}
.ya0{bottom:600.413333pt;}
.y6c{bottom:608.413333pt;}
.ye1{bottom:610.173333pt;}
.y9f{bottom:618.173333pt;}
.y6b{bottom:626.173333pt;}
.ye0{bottom:627.773333pt;}
.y9e{bottom:635.773333pt;}
.y6a{bottom:643.773333pt;}
.ydf{bottom:645.373333pt;}
.y9d{bottom:653.373333pt;}
.y69{bottom:661.373333pt;}
.yde{bottom:662.973333pt;}
.y9c{bottom:670.973333pt;}
.y68{bottom:678.973333pt;}
.ydd{bottom:680.573333pt;}
.y9b{bottom:688.573333pt;}
.y67{bottom:696.573333pt;}
.ydc{bottom:698.333333pt;}
.y9a{bottom:706.333333pt;}
.y66{bottom:714.333333pt;}
.ydb{bottom:715.933333pt;}
.y99{bottom:723.933333pt;}
.y65{bottom:731.933333pt;}
.yda{bottom:733.533333pt;}
.y98{bottom:741.533333pt;}
.y64{bottom:749.573333pt;}
.yd9{bottom:751.173333pt;}
.yf{bottom:755.813333pt;}
.y97{bottom:759.173333pt;}
.y63{bottom:767.173333pt;}
.yd8{bottom:768.773333pt;}
.y96{bottom:776.773333pt;}
.ye{bottom:779.493333pt;}
.y62{bottom:784.773333pt;}
.y95{bottom:794.533333pt;}
.yd{bottom:801.733333pt;}
.y61{bottom:802.533333pt;}
.y94{bottom:812.133333pt;}
.yc{bottom:819.333333pt;}
.y60{bottom:820.133333pt;}
.ybf{bottom:829.733333pt;}
.yb{bottom:836.933333pt;}
.y5f{bottom:837.733333pt;}
.ybe{bottom:847.333333pt;}
.ya{bottom:850.533333pt;}
.y5e{bottom:855.333333pt;}
.ybd{bottom:864.933333pt;}
.y9{bottom:869.413333pt;}
.y5d{bottom:872.933333pt;}
.yd7{bottom:882.693333pt;}
.y8{bottom:890.213333pt;}
.y5c{bottom:890.693333pt;}
.yd6{bottom:900.293333pt;}
.y5b{bottom:908.293333pt;}
.yd5{bottom:917.893333pt;}
.y7{bottom:918.373333pt;}
.y5a{bottom:925.893333pt;}
.yd4{bottom:935.493333pt;}
.y59{bottom:943.493333pt;}
.y5{bottom:951.813333pt;}
.yd3{bottom:953.093333pt;}
.y58{bottom:961.093333pt;}
.y4{bottom:978.213333pt;}
.y57{bottom:978.853333pt;}
.y56{bottom:996.453333pt;}
.y3{bottom:1004.640000pt;}
.y55{bottom:1014.080000pt;}
.y2{bottom:1031.040000pt;}
.y54{bottom:1042.240000pt;}
.y1{bottom:1057.920000pt;}
.y53{bottom:1061.600000pt;}
.hb{height:16.480000pt;}
.h9{height:24.131250pt;}
.ha{height:37.090625pt;}
.h7{height:37.479688pt;}
.hd{height:38.672812pt;}
.h5{height:41.543750pt;}
.h4{height:44.687500pt;}
.h8{height:47.310625pt;}
.h3{height:52.284375pt;}
.h2{height:52.832812pt;}
.h6{height:60.057813pt;}
.hc{height:497.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:172.026667pt;}
.w3{width:522.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.159988pt;}
.x4{left:71.999988pt;}
.x5{left:96.031988pt;}
.x3{left:570.653333pt;}
}




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