
    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_4972c9fa60a189bede54a73d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_174563fbb81fced6b9892215.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_9bfbfeb649556891533ca83e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c40f0088dc6a0122ade2c8c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.492000px;}
.ls2{letter-spacing:-0.009000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.024000px;}
.lsb{letter-spacing:0.180000px;}
.ls8{letter-spacing:1.032000px;}
.ls4{letter-spacing:1.500000px;}
.lsa{letter-spacing:28.500000px;}
.ls3{letter-spacing:33.984000px;}
.ls9{letter-spacing:55.500000px;}
.ls5{letter-spacing:64.320000px;}
.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws1{word-spacing:-20.268000px;}
.ws2{word-spacing:-20.241000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
._24{margin-left:-28.536000px;}
._1d{margin-left:-4.896000px;}
._6{margin-left:-3.744000px;}
._7{margin-left:-2.232000px;}
._0{margin-left:-1.224000px;}
._1{width:1.296000px;}
._2{width:2.550000px;}
._9{width:4.470000px;}
._a{width:5.484000px;}
._c{width:6.558000px;}
._e{width:7.560000px;}
._f{width:9.360000px;}
._11{width:10.584000px;}
._10{width:11.802000px;}
._8{width:13.608000px;}
._d{width:15.048000px;}
._17{width:16.416000px;}
._16{width:19.152000px;}
._b{width:20.592000px;}
._4{width:21.672000px;}
._3{width:22.680000px;}
._5{width:23.760000px;}
._12{width:25.632000px;}
._15{width:27.432000px;}
._23{width:28.872000px;}
._25{width:30.024000px;}
._1f{width:32.112000px;}
._1c{width:33.888000px;}
._1b{width:34.896000px;}
._14{width:36.936000px;}
._13{width:38.046000px;}
._1e{width:39.426000px;}
._18{width:49.032000px;}
._19{width:50.976000px;}
._1a{width:52.026000px;}
._26{width:54.144000px;}
._20{width:68.328000px;}
._21{width:69.480000px;}
._22{width:70.776000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:81.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:119.662500px;}
.y50{bottom:120.037500px;}
.y95{bottom:129.037500px;}
.y7d{bottom:140.287500px;}
.y4f{bottom:140.662500px;}
.yc9{bottom:143.287500px;}
.y6f{bottom:143.662500px;}
.ye6{bottom:144.037500px;}
.y94{bottom:149.662500px;}
.y27{bottom:156.045000px;}
.y7c{bottom:160.920000px;}
.y4e{bottom:161.295000px;}
.yb4{bottom:163.545000px;}
.yc8{bottom:163.920000px;}
.y6e{bottom:164.295000px;}
.yd6{bottom:164.670000px;}
.ye5{bottom:165.030000px;}
.y93{bottom:170.295000px;}
.y26{bottom:177.075000px;}
.y4d{bottom:181.950000px;}
.yb3{bottom:184.200000px;}
.yc7{bottom:184.575000px;}
.y6d{bottom:184.950000px;}
.yd5{bottom:185.325000px;}
.ye4{bottom:185.700000px;}
.y10a{bottom:191.325000px;}
.y25{bottom:197.700000px;}
.y7b{bottom:202.575000px;}
.y4c{bottom:202.950000px;}
.yb2{bottom:205.200000px;}
.y6c{bottom:205.575000px;}
.yd4{bottom:205.950000px;}
.ye3{bottom:206.325000px;}
.y92{bottom:211.575000px;}
.y109{bottom:211.950000px;}
.y24{bottom:218.325000px;}
.y7a{bottom:223.200000px;}
.y4b{bottom:223.575000px;}
.y6b{bottom:226.575000px;}
.yd3{bottom:226.950000px;}
.y108{bottom:232.575000px;}
.y23{bottom:238.950000px;}
.y79{bottom:243.825000px;}
.y4a{bottom:244.200000px;}
.yb1{bottom:246.825000px;}
.y6a{bottom:247.200000px;}
.yd2{bottom:247.575000px;}
.yec{bottom:247.950000px;}
.y91{bottom:250.200000px;}
.y107{bottom:253.200000px;}
.y22{bottom:259.575000px;}
.yb0{bottom:267.450000px;}
.yc6{bottom:267.825000px;}
.yd1{bottom:268.200000px;}
.ye2{bottom:268.575000px;}
.y90{bottom:270.825000px;}
.y106{bottom:273.825000px;}
.y21{bottom:280.575000px;}
.y78{bottom:285.450000px;}
.y49{bottom:285.825000px;}
.yaf{bottom:288.075000px;}
.yc5{bottom:288.450000px;}
.y69{bottom:288.825000px;}
.ye1{bottom:289.200000px;}
.y8f{bottom:291.825000px;}
.y105{bottom:294.825000px;}
.y20{bottom:301.200000px;}
.y48{bottom:306.495000px;}
.yae{bottom:308.745000px;}
.y68{bottom:309.495000px;}
.ye0{bottom:309.870000px;}
.y8e{bottom:312.495000px;}
.y104{bottom:315.495000px;}
.y47{bottom:327.480000px;}
.y67{bottom:330.120000px;}
.yd0{bottom:330.495000px;}
.y8d{bottom:333.120000px;}
.y103{bottom:336.120000px;}
.y1f{bottom:343.620000px;}
.y46{bottom:348.105000px;}
.yad{bottom:350.745000px;}
.y66{bottom:351.105000px;}
.ycf{bottom:351.480000px;}
.y8c{bottom:353.745000px;}
.y102{bottom:356.745000px;}
.y45{bottom:368.730000px;}
.y65{bottom:371.730000px;}
.yc4{bottom:372.105000px;}
.yeb{bottom:372.495000px;}
.y8b{bottom:374.370000px;}
.y101{bottom:377.370000px;}
.y1e{bottom:383.370000px;}
.y44{bottom:389.370000px;}
.yf0{bottom:392.355000px;}
.yc3{bottom:392.745000px;}
.yac{bottom:393.120000px;}
.y8a{bottom:395.355000px;}
.y100{bottom:398.355000px;}
.yea{bottom:399.870000px;}
.y43{bottom:409.995000px;}
.yef{bottom:412.995000px;}
.y64{bottom:413.370000px;}
.y89{bottom:415.995000px;}
.yff{bottom:418.995000px;}
.y1d{bottom:428.745000px;}
.ye9{bottom:430.620000px;}
.y42{bottom:430.995000px;}
.yab{bottom:432.900000px;}
.yee{bottom:433.650000px;}
.yc2{bottom:434.025000px;}
.ydf{bottom:434.775000px;}
.y88{bottom:436.650000px;}
.yfe{bottom:439.650000px;}
.y1c{bottom:449.775000px;}
.y77{bottom:451.650000px;}
.yc1{bottom:454.650000px;}
.y63{bottom:455.025000px;}
.yfd{bottom:460.275000px;}
.y41{bottom:472.650000px;}
.y62{bottom:475.650000px;}
.ye8{bottom:476.025000px;}
.yde{bottom:476.400000px;}
.y87{bottom:477.900000px;}
.yaa{bottom:478.275000px;}
.yfc{bottom:480.900000px;}
.yce{bottom:482.775000px;}
.y1b{bottom:491.400000px;}
.y76{bottom:493.275000px;}
.yc0{bottom:496.275000px;}
.y61{bottom:496.650000px;}
.ydd{bottom:497.025000px;}
.ya9{bottom:498.900000px;}
.yfb{bottom:501.900000px;}
.y1a{bottom:512.025000px;}
.ycd{bottom:513.525000px;}
.y40{bottom:515.025000px;}
.y86{bottom:516.525000px;}
.ybf{bottom:516.900000px;}
.y60{bottom:517.275000px;}
.ydc{bottom:517.650000px;}
.ya8{bottom:519.900000px;}
.yfa{bottom:522.525000px;}
.y19{bottom:532.650000px;}
.y75{bottom:535.650000px;}
.y85{bottom:537.150000px;}
.ybe{bottom:537.525000px;}
.y5f{bottom:537.900000px;}
.ye7{bottom:538.275000px;}
.ydb{bottom:538.650000px;}
.ya7{bottom:540.525000px;}
.yf9{bottom:543.150000px;}
.y18{bottom:553.275000px;}
.y3f{bottom:554.775000px;}
.y84{bottom:557.775000px;}
.yed{bottom:558.525000px;}
.ycc{bottom:558.900000px;}
.yda{bottom:559.275000px;}
.ya6{bottom:561.195000px;}
.yf8{bottom:563.820000px;}
.y17{bottom:574.320000px;}
.y74{bottom:575.445000px;}
.ybd{bottom:579.195000px;}
.y5e{bottom:579.570000px;}
.yd9{bottom:579.945000px;}
.yf7{bottom:584.445000px;}
.y16{bottom:594.945000px;}
.y83{bottom:599.820000px;}
.y3e{bottom:600.195000px;}
.yd8{bottom:600.570000px;}
.ya5{bottom:602.820000px;}
.yf6{bottom:605.070000px;}
.y15{bottom:615.570000px;}
.y3d{bottom:620.820000px;}
.yd7{bottom:621.195000px;}
.yf5{bottom:626.070000px;}
.y14{bottom:636.195000px;}
.y82{bottom:641.445000px;}
.y3c{bottom:641.820000px;}
.ya4{bottom:644.445000px;}
.y13{bottom:656.820000px;}
.y81{bottom:662.070000px;}
.y3b{bottom:662.445000px;}
.ycb{bottom:662.820000px;}
.ya3{bottom:665.070000px;}
.yf4{bottom:668.445000px;}
.y12{bottom:677.445000px;}
.y80{bottom:682.695000px;}
.y3a{bottom:683.070000px;}
.ybc{bottom:683.445000px;}
.y11{bottom:698.475000px;}
.yf3{bottom:699.975000px;}
.y39{bottom:703.725000px;}
.ybb{bottom:704.100000px;}
.ya2{bottom:707.100000px;}
.y10{bottom:719.100000px;}
.y5d{bottom:724.350000px;}
.yba{bottom:724.725000px;}
.ya1{bottom:727.725000px;}
.yf{bottom:739.725000px;}
.y38{bottom:745.350000px;}
.ya0{bottom:748.350000px;}
.ye{bottom:760.350000px;}
.y73{bottom:765.975000px;}
.y37{bottom:766.350000px;}
.yd{bottom:780.975000px;}
.y10c{bottom:786.225000px;}
.y72{bottom:786.600000px;}
.y36{bottom:786.975000px;}
.yf2{bottom:787.350000px;}
.y9f{bottom:789.975000px;}
.yc{bottom:801.975000px;}
.y71{bottom:807.225000px;}
.y35{bottom:807.600000px;}
.y5c{bottom:807.975000px;}
.y9e{bottom:810.600000px;}
.yb{bottom:822.630000px;}
.y70{bottom:827.880000px;}
.yb9{bottom:828.255000px;}
.y5b{bottom:828.645000px;}
.yb8{bottom:848.895000px;}
.y34{bottom:849.255000px;}
.y9d{bottom:852.630000px;}
.ya{bottom:865.005000px;}
.y5a{bottom:869.895000px;}
.y7f{bottom:890.505000px;}
.y33{bottom:890.880000px;}
.y9c{bottom:894.255000px;}
.y9{bottom:904.755000px;}
.yb7{bottom:911.130000px;}
.y59{bottom:911.505000px;}
.y32{bottom:911.880000px;}
.y9b{bottom:914.880000px;}
.yb6{bottom:931.755000px;}
.y58{bottom:932.130000px;}
.y31{bottom:932.505000px;}
.y9a{bottom:935.505000px;}
.y8{bottom:950.175000px;}
.yca{bottom:952.425000px;}
.y57{bottom:952.800000px;}
.y30{bottom:953.175000px;}
.y99{bottom:956.175000px;}
.y7{bottom:971.175000px;}
.y56{bottom:973.425000px;}
.y2f{bottom:973.800000px;}
.y98{bottom:977.175000px;}
.y6{bottom:991.800000px;}
.y2e{bottom:994.425000px;}
.y10b{bottom:994.800000px;}
.y97{bottom:997.800000px;}
.yb5{bottom:1015.050000px;}
.y55{bottom:1015.425000px;}
.y5{bottom:1033.425000px;}
.yf1{bottom:1035.675000px;}
.y54{bottom:1036.050000px;}
.y2d{bottom:1036.425000px;}
.y96{bottom:1039.050000px;}
.y4{bottom:1054.050000px;}
.y53{bottom:1056.675000px;}
.y2c{bottom:1057.050000px;}
.y3{bottom:1074.705000px;}
.y52{bottom:1077.330000px;}
.y2b{bottom:1077.705000px;}
.y2{bottom:1095.705000px;}
.y51{bottom:1097.955000px;}
.y2a{bottom:1098.330000px;}
.y29{bottom:1118.955000px;}
.y1{bottom:1138.080000px;}
.y28{bottom:1139.955000px;}
.h6{height:52.628906px;}
.h4{height:53.291016px;}
.h3{height:63.949219px;}
.h2{height:64.546875px;}
.h1{height:71.942871px;}
.h5{height:74.607422px;}
.h0{height:1263.000000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.537487px;}
.x3{left:154.574987px;}
.x4{left:181.574987px;}
.x5{left:208.574987px;}
.x6{left:235.619987px;}
.x2{left:765.719987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.437333pt;}
.ls2{letter-spacing:-0.008000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.021333pt;}
.lsb{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.917333pt;}
.ls4{letter-spacing:1.333333pt;}
.lsa{letter-spacing:25.333333pt;}
.ls3{letter-spacing:30.208000pt;}
.ls9{letter-spacing:49.333333pt;}
.ls5{letter-spacing:57.173333pt;}
.ws4{word-spacing:-53.333333pt;}
.ws1{word-spacing:-18.016000pt;}
.ws2{word-spacing:-17.992000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
._24{margin-left:-25.365333pt;}
._1d{margin-left:-4.352000pt;}
._6{margin-left:-3.328000pt;}
._7{margin-left:-1.984000pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.152000pt;}
._2{width:2.266667pt;}
._9{width:3.973333pt;}
._a{width:4.874667pt;}
._c{width:5.829333pt;}
._e{width:6.720000pt;}
._f{width:8.320000pt;}
._11{width:9.408000pt;}
._10{width:10.490667pt;}
._8{width:12.096000pt;}
._d{width:13.376000pt;}
._17{width:14.592000pt;}
._16{width:17.024000pt;}
._b{width:18.304000pt;}
._4{width:19.264000pt;}
._3{width:20.160000pt;}
._5{width:21.120000pt;}
._12{width:22.784000pt;}
._15{width:24.384000pt;}
._23{width:25.664000pt;}
._25{width:26.688000pt;}
._1f{width:28.544000pt;}
._1c{width:30.122667pt;}
._1b{width:31.018667pt;}
._14{width:32.832000pt;}
._13{width:33.818667pt;}
._1e{width:35.045333pt;}
._18{width:43.584000pt;}
._19{width:45.312000pt;}
._1a{width:46.245333pt;}
._26{width:48.128000pt;}
._20{width:60.736000pt;}
._21{width:61.760000pt;}
._22{width:62.912000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:72.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:106.366667pt;}
.y50{bottom:106.700000pt;}
.y95{bottom:114.700000pt;}
.y7d{bottom:124.700000pt;}
.y4f{bottom:125.033333pt;}
.yc9{bottom:127.366667pt;}
.y6f{bottom:127.700000pt;}
.ye6{bottom:128.033333pt;}
.y94{bottom:133.033333pt;}
.y27{bottom:138.706667pt;}
.y7c{bottom:143.040000pt;}
.y4e{bottom:143.373333pt;}
.yb4{bottom:145.373333pt;}
.yc8{bottom:145.706667pt;}
.y6e{bottom:146.040000pt;}
.yd6{bottom:146.373333pt;}
.ye5{bottom:146.693333pt;}
.y93{bottom:151.373333pt;}
.y26{bottom:157.400000pt;}
.y4d{bottom:161.733333pt;}
.yb3{bottom:163.733333pt;}
.yc7{bottom:164.066667pt;}
.y6d{bottom:164.400000pt;}
.yd5{bottom:164.733333pt;}
.ye4{bottom:165.066667pt;}
.y10a{bottom:170.066667pt;}
.y25{bottom:175.733333pt;}
.y7b{bottom:180.066667pt;}
.y4c{bottom:180.400000pt;}
.yb2{bottom:182.400000pt;}
.y6c{bottom:182.733333pt;}
.yd4{bottom:183.066667pt;}
.ye3{bottom:183.400000pt;}
.y92{bottom:188.066667pt;}
.y109{bottom:188.400000pt;}
.y24{bottom:194.066667pt;}
.y7a{bottom:198.400000pt;}
.y4b{bottom:198.733333pt;}
.y6b{bottom:201.400000pt;}
.yd3{bottom:201.733333pt;}
.y108{bottom:206.733333pt;}
.y23{bottom:212.400000pt;}
.y79{bottom:216.733333pt;}
.y4a{bottom:217.066667pt;}
.yb1{bottom:219.400000pt;}
.y6a{bottom:219.733333pt;}
.yd2{bottom:220.066667pt;}
.yec{bottom:220.400000pt;}
.y91{bottom:222.400000pt;}
.y107{bottom:225.066667pt;}
.y22{bottom:230.733333pt;}
.yb0{bottom:237.733333pt;}
.yc6{bottom:238.066667pt;}
.yd1{bottom:238.400000pt;}
.ye2{bottom:238.733333pt;}
.y90{bottom:240.733333pt;}
.y106{bottom:243.400000pt;}
.y21{bottom:249.400000pt;}
.y78{bottom:253.733333pt;}
.y49{bottom:254.066667pt;}
.yaf{bottom:256.066667pt;}
.yc5{bottom:256.400000pt;}
.y69{bottom:256.733333pt;}
.ye1{bottom:257.066667pt;}
.y8f{bottom:259.400000pt;}
.y105{bottom:262.066667pt;}
.y20{bottom:267.733333pt;}
.y48{bottom:272.440000pt;}
.yae{bottom:274.440000pt;}
.y68{bottom:275.106667pt;}
.ye0{bottom:275.440000pt;}
.y8e{bottom:277.773333pt;}
.y104{bottom:280.440000pt;}
.y47{bottom:291.093333pt;}
.y67{bottom:293.440000pt;}
.yd0{bottom:293.773333pt;}
.y8d{bottom:296.106667pt;}
.y103{bottom:298.773333pt;}
.y1f{bottom:305.440000pt;}
.y46{bottom:309.426667pt;}
.yad{bottom:311.773333pt;}
.y66{bottom:312.093333pt;}
.ycf{bottom:312.426667pt;}
.y8c{bottom:314.440000pt;}
.y102{bottom:317.106667pt;}
.y45{bottom:327.760000pt;}
.y65{bottom:330.426667pt;}
.yc4{bottom:330.760000pt;}
.yeb{bottom:331.106667pt;}
.y8b{bottom:332.773333pt;}
.y101{bottom:335.440000pt;}
.y1e{bottom:340.773333pt;}
.y44{bottom:346.106667pt;}
.yf0{bottom:348.760000pt;}
.yc3{bottom:349.106667pt;}
.yac{bottom:349.440000pt;}
.y8a{bottom:351.426667pt;}
.y100{bottom:354.093333pt;}
.yea{bottom:355.440000pt;}
.y43{bottom:364.440000pt;}
.yef{bottom:367.106667pt;}
.y64{bottom:367.440000pt;}
.y89{bottom:369.773333pt;}
.yff{bottom:372.440000pt;}
.y1d{bottom:381.106667pt;}
.ye9{bottom:382.773333pt;}
.y42{bottom:383.106667pt;}
.yab{bottom:384.800000pt;}
.yee{bottom:385.466667pt;}
.yc2{bottom:385.800000pt;}
.ydf{bottom:386.466667pt;}
.y88{bottom:388.133333pt;}
.yfe{bottom:390.800000pt;}
.y1c{bottom:399.800000pt;}
.y77{bottom:401.466667pt;}
.yc1{bottom:404.133333pt;}
.y63{bottom:404.466667pt;}
.yfd{bottom:409.133333pt;}
.y41{bottom:420.133333pt;}
.y62{bottom:422.800000pt;}
.ye8{bottom:423.133333pt;}
.yde{bottom:423.466667pt;}
.y87{bottom:424.800000pt;}
.yaa{bottom:425.133333pt;}
.yfc{bottom:427.466667pt;}
.yce{bottom:429.133333pt;}
.y1b{bottom:436.800000pt;}
.y76{bottom:438.466667pt;}
.yc0{bottom:441.133333pt;}
.y61{bottom:441.466667pt;}
.ydd{bottom:441.800000pt;}
.ya9{bottom:443.466667pt;}
.yfb{bottom:446.133333pt;}
.y1a{bottom:455.133333pt;}
.ycd{bottom:456.466667pt;}
.y40{bottom:457.800000pt;}
.y86{bottom:459.133333pt;}
.ybf{bottom:459.466667pt;}
.y60{bottom:459.800000pt;}
.ydc{bottom:460.133333pt;}
.ya8{bottom:462.133333pt;}
.yfa{bottom:464.466667pt;}
.y19{bottom:473.466667pt;}
.y75{bottom:476.133333pt;}
.y85{bottom:477.466667pt;}
.ybe{bottom:477.800000pt;}
.y5f{bottom:478.133333pt;}
.ye7{bottom:478.466667pt;}
.ydb{bottom:478.800000pt;}
.ya7{bottom:480.466667pt;}
.yf9{bottom:482.800000pt;}
.y18{bottom:491.800000pt;}
.y3f{bottom:493.133333pt;}
.y84{bottom:495.800000pt;}
.yed{bottom:496.466667pt;}
.ycc{bottom:496.800000pt;}
.yda{bottom:497.133333pt;}
.ya6{bottom:498.840000pt;}
.yf8{bottom:501.173333pt;}
.y17{bottom:510.506667pt;}
.y74{bottom:511.506667pt;}
.ybd{bottom:514.840000pt;}
.y5e{bottom:515.173333pt;}
.yd9{bottom:515.506667pt;}
.yf7{bottom:519.506667pt;}
.y16{bottom:528.840000pt;}
.y83{bottom:533.173333pt;}
.y3e{bottom:533.506667pt;}
.yd8{bottom:533.840000pt;}
.ya5{bottom:535.840000pt;}
.yf6{bottom:537.840000pt;}
.y15{bottom:547.173333pt;}
.y3d{bottom:551.840000pt;}
.yd7{bottom:552.173333pt;}
.yf5{bottom:556.506667pt;}
.y14{bottom:565.506667pt;}
.y82{bottom:570.173333pt;}
.y3c{bottom:570.506667pt;}
.ya4{bottom:572.840000pt;}
.y13{bottom:583.840000pt;}
.y81{bottom:588.506667pt;}
.y3b{bottom:588.840000pt;}
.ycb{bottom:589.173333pt;}
.ya3{bottom:591.173333pt;}
.yf4{bottom:594.173333pt;}
.y12{bottom:602.173333pt;}
.y80{bottom:606.840000pt;}
.y3a{bottom:607.173333pt;}
.ybc{bottom:607.506667pt;}
.y11{bottom:620.866667pt;}
.yf3{bottom:622.200000pt;}
.y39{bottom:625.533333pt;}
.ybb{bottom:625.866667pt;}
.ya2{bottom:628.533333pt;}
.y10{bottom:639.200000pt;}
.y5d{bottom:643.866667pt;}
.yba{bottom:644.200000pt;}
.ya1{bottom:646.866667pt;}
.yf{bottom:657.533333pt;}
.y38{bottom:662.533333pt;}
.ya0{bottom:665.200000pt;}
.ye{bottom:675.866667pt;}
.y73{bottom:680.866667pt;}
.y37{bottom:681.200000pt;}
.yd{bottom:694.200000pt;}
.y10c{bottom:698.866667pt;}
.y72{bottom:699.200000pt;}
.y36{bottom:699.533333pt;}
.yf2{bottom:699.866667pt;}
.y9f{bottom:702.200000pt;}
.yc{bottom:712.866667pt;}
.y71{bottom:717.533333pt;}
.y35{bottom:717.866667pt;}
.y5c{bottom:718.200000pt;}
.y9e{bottom:720.533333pt;}
.yb{bottom:731.226667pt;}
.y70{bottom:735.893333pt;}
.yb9{bottom:736.226667pt;}
.y5b{bottom:736.573333pt;}
.yb8{bottom:754.573333pt;}
.y34{bottom:754.893333pt;}
.y9d{bottom:757.893333pt;}
.ya{bottom:768.893333pt;}
.y5a{bottom:773.240000pt;}
.y7f{bottom:791.560000pt;}
.y33{bottom:791.893333pt;}
.y9c{bottom:794.893333pt;}
.y9{bottom:804.226667pt;}
.yb7{bottom:809.893333pt;}
.y59{bottom:810.226667pt;}
.y32{bottom:810.560000pt;}
.y9b{bottom:813.226667pt;}
.yb6{bottom:828.226667pt;}
.y58{bottom:828.560000pt;}
.y31{bottom:828.893333pt;}
.y9a{bottom:831.560000pt;}
.y8{bottom:844.600000pt;}
.yca{bottom:846.600000pt;}
.y57{bottom:846.933333pt;}
.y30{bottom:847.266667pt;}
.y99{bottom:849.933333pt;}
.y7{bottom:863.266667pt;}
.y56{bottom:865.266667pt;}
.y2f{bottom:865.600000pt;}
.y98{bottom:868.600000pt;}
.y6{bottom:881.600000pt;}
.y2e{bottom:883.933333pt;}
.y10b{bottom:884.266667pt;}
.y97{bottom:886.933333pt;}
.yb5{bottom:902.266667pt;}
.y55{bottom:902.600000pt;}
.y5{bottom:918.600000pt;}
.yf1{bottom:920.600000pt;}
.y54{bottom:920.933333pt;}
.y2d{bottom:921.266667pt;}
.y96{bottom:923.600000pt;}
.y4{bottom:936.933333pt;}
.y53{bottom:939.266667pt;}
.y2c{bottom:939.600000pt;}
.y3{bottom:955.293333pt;}
.y52{bottom:957.626667pt;}
.y2b{bottom:957.960000pt;}
.y2{bottom:973.960000pt;}
.y51{bottom:975.960000pt;}
.y2a{bottom:976.293333pt;}
.y29{bottom:994.626667pt;}
.y1{bottom:1011.626667pt;}
.y28{bottom:1013.293333pt;}
.h6{height:46.781250pt;}
.h4{height:47.369792pt;}
.h3{height:56.843750pt;}
.h2{height:57.375000pt;}
.h1{height:63.949219pt;}
.h5{height:66.317708pt;}
.h0{height:1122.666667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.366655pt;}
.x3{left:137.399988pt;}
.x4{left:161.399988pt;}
.x5{left:185.399988pt;}
.x6{left:209.439988pt;}
.x2{left:680.639988pt;}
}




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