
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7293fb9f2ed60f1a605f3fee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7f0595969623a59f529e290b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cd4ab11d5084cbbe33800c41.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e56f8fdf3d70b2857010ff7c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_900ac68249fa130d489db47e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8dddef9523dd4848a0a19cbe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.444600px;}
.ls14{letter-spacing:-0.216600px;}
.lsb{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls10{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.117600px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.067200px;}
.ls1c{letter-spacing:-0.063600px;}
.lsf{letter-spacing:-0.031800px;}
.ls13{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls1a{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls19{letter-spacing:0.199200px;}
.ls11{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:9.813600px;}
.ls1b{letter-spacing:47.726640px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342800px;}
.wsb{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.218840px;}
.wse{word-spacing:-13.162800px;}
.ws5{word-spacing:-13.072800px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._4{margin-left:-3.665640px;}
._5{margin-left:-2.627282px;}
._0{margin-left:-1.158000px;}
._1{width:1.114680px;}
._2{width:2.448840px;}
._3{width:3.604920px;}
._6{width:4.881000px;}
._14{width:6.019320px;}
._10{width:7.034040px;}
._e{width:8.928599px;}
._7{width:10.100400px;}
._8{width:11.668198px;}
._9{width:14.729400px;}
._c{width:15.751200px;}
._d{width:17.257921px;}
._11{width:19.839600px;}
._12{width:27.468360px;}
._13{width:29.053680px;}
._15{width:30.781440px;}
._a{width:34.148400px;}
._b{width:35.743560px;}
._f{width:98.777160px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y30{bottom:7.830000px;}
.y50{bottom:7.860000px;}
.y2e{bottom:7.920000px;}
.y69{bottom:7.950000px;}
.y44{bottom:25.470000px;}
.y75{bottom:35.280000px;}
.y58{bottom:62.550000px;}
.y4d{bottom:62.580000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y96{bottom:89.820000px;}
.y7a{bottom:89.850000px;}
.y5c{bottom:89.910000px;}
.y1{bottom:101.640000px;}
.y52{bottom:117.180000px;}
.y90{bottom:117.210000px;}
.y61{bottom:117.270000px;}
.y24{bottom:126.930000px;}
.y9e{bottom:128.100000px;}
.y74{bottom:134.760000px;}
.yc1{bottom:142.140000px;}
.y9a{bottom:143.040000px;}
.y23{bottom:144.480000px;}
.y89{bottom:144.540000px;}
.yc0{bottom:159.690000px;}
.y22{bottom:162.120000px;}
.y4a{bottom:170.400000px;}
.ybf{bottom:186.240000px;}
.y21{bottom:188.940000px;}
.y6f{bottom:189.480000px;}
.y9d{bottom:197.760000px;}
.ybe{bottom:203.880000px;}
.y49{bottom:206.040000px;}
.y73{bottom:216.840000px;}
.y9c{bottom:225.030000px;}
.ybd{bottom:230.790000px;}
.y20{bottom:237.270000px;}
.y48{bottom:241.590000px;}
.y72{bottom:244.110000px;}
.y9b{bottom:252.390000px;}
.y1f{bottom:254.820000px;}
.y47{bottom:256.530000px;}
.y71{bottom:271.470000px;}
.y1e{bottom:272.460000px;}
.ybc{bottom:279.030000px;}
.y95{bottom:279.750000px;}
.ye8{bottom:283.800000px;}
.y46{bottom:283.890000px;}
.y1d{bottom:290.010000px;}
.y70{bottom:298.830000px;}
.ye7{bottom:301.440000px;}
.ybb{bottom:305.940000px;}
.y99{bottom:307.020000px;}
.y1c{bottom:307.560000px;}
.y45{bottom:311.250000px;}
.ye6{bottom:318.990000px;}
.y1b{bottom:325.200000px;}
.y6a{bottom:326.190000px;}
.y98{bottom:334.380000px;}
.y43{bottom:338.520000px;}
.y1a{bottom:342.750000px;}
.yba{bottom:342.930000px;}
.ye5{bottom:345.540000px;}
.y6e{bottom:353.460000px;}
.y19{bottom:360.390000px;}
.y97{bottom:361.740000px;}
.ye4{bottom:363.180000px;}
.yb9{bottom:369.840000px;}
.y6d{bottom:380.820000px;}
.y18{bottom:387.300000px;}
.y8f{bottom:389.100000px;}
.ye3{bottom:389.730000px;}
.y42{bottom:404.850000px;}
.yb8{bottom:406.920000px;}
.ye2{bottom:407.370000px;}
.y6c{bottom:408.180000px;}
.y94{bottom:416.370000px;}
.yb7{bottom:433.830000px;}
.ye1{bottom:433.920000px;}
.y6b{bottom:435.450000px;}
.y17{bottom:435.900000px;}
.y41{bottom:440.400000px;}
.y93{bottom:443.730000px;}
.ye0{bottom:451.470000px;}
.y40{bottom:455.430000px;}
.y66{bottom:462.810000px;}
.ydf{bottom:469.110000px;}
.y92{bottom:471.120000px;}
.yb6{bottom:471.210000px;}
.y16{bottom:472.920000px;}
.y3f{bottom:482.730000px;}
.y68{bottom:490.200000px;}
.y15{bottom:490.470000px;}
.yde{bottom:495.690000px;}
.y91{bottom:498.480000px;}
.y14{bottom:508.110000px;}
.y3e{bottom:510.090000px;}
.ydd{bottom:513.330000px;}
.y67{bottom:517.560000px;}
.yb5{bottom:519.450000px;}
.y88{bottom:525.750000px;}
.yb4{bottom:537.000000px;}
.y3d{bottom:537.450000px;}
.ydc{bottom:539.880000px;}
.y13{bottom:543.660000px;}
.y60{bottom:544.830000px;}
.y8e{bottom:553.110000px;}
.yb3{bottom:554.640000px;}
.ydb{bottom:557.430000px;}
.y12{bottom:561.210000px;}
.y3c{bottom:564.810000px;}
.y65{bottom:572.190000px;}
.yda{bottom:575.070000px;}
.y11{bottom:578.850000px;}
.y8d{bottom:580.470000px;}
.yb2{bottom:589.830000px;}
.y10{bottom:596.400000px;}
.y64{bottom:599.550000px;}
.yd9{bottom:601.620000px;}
.yb1{bottom:607.380000px;}
.y8c{bottom:607.740000px;}
.y3b{bottom:613.500000px;}
.y63{bottom:626.910000px;}
.yd8{bottom:628.260000px;}
.yf{bottom:632.040000px;}
.yb0{bottom:634.290000px;}
.y8b{bottom:635.100000px;}
.yd7{bottom:645.810000px;}
.y3a{bottom:649.050000px;}
.ye{bottom:649.590000px;}
.y62{bottom:654.180000px;}
.y8a{bottom:662.460000px;}
.yd6{bottom:663.360000px;}
.y39{bottom:663.990000px;}
.y5b{bottom:681.540000px;}
.yaf{bottom:682.530000px;}
.yd{bottom:685.140000px;}
.y83{bottom:689.820000px;}
.yd5{bottom:690.000000px;}
.y38{bottom:691.350000px;}
.yae{bottom:700.170000px;}
.yd4{bottom:707.550000px;}
.y5f{bottom:708.900000px;}
.y87{bottom:717.090000px;}
.yad{bottom:717.720000px;}
.y37{bottom:718.710000px;}
.yc{bottom:720.780000px;}
.yd3{bottom:734.190000px;}
.yac{bottom:735.270000px;}
.y5e{bottom:736.170000px;}
.yb{bottom:738.330000px;}
.y86{bottom:744.450000px;}
.y36{bottom:746.070000px;}
.yd2{bottom:751.740000px;}
.yab{bottom:752.910000px;}
.y5d{bottom:763.530000px;}
.ya{bottom:765.330000px;}
.yaa{bottom:770.460000px;}
.y85{bottom:771.810000px;}
.y35{bottom:773.340000px;}
.yd1{bottom:778.290000px;}
.ya9{bottom:788.100000px;}
.y57{bottom:790.890000px;}
.yd0{bottom:795.930000px;}
.y84{bottom:799.170000px;}
.y34{bottom:800.700000px;}
.ya8{bottom:805.650000px;}
.y9{bottom:812.040000px;}
.y5a{bottom:818.250000px;}
.ycf{bottom:822.480000px;}
.ya7{bottom:823.200000px;}
.y7e{bottom:826.440000px;}
.yce{bottom:840.030000px;}
.ya6{bottom:840.840000px;}
.y59{bottom:845.520000px;}
.y8{bottom:847.860000px;}
.y33{bottom:849.390000px;}
.y82{bottom:853.800000px;}
.ya5{bottom:858.390000px;}
.ycd{bottom:866.670000px;}
.y51{bottom:872.880000px;}
.ya4{bottom:876.030000px;}
.y81{bottom:881.160000px;}
.y7{bottom:883.860000px;}
.y32{bottom:885.030000px;}
.ycc{bottom:893.220000px;}
.ya3{bottom:893.580000px;}
.y56{bottom:900.240000px;}
.y80{bottom:908.430000px;}
.y31{bottom:908.970000px;}
.ycb{bottom:910.860000px;}
.ya2{bottom:920.490000px;}
.y6{bottom:923.640000px;}
.y55{bottom:927.600000px;}
.y7f{bottom:935.790000px;}
.y2f{bottom:936.330000px;}
.yca{bottom:937.410000px;}
.y5{bottom:941.640000px;}
.y54{bottom:954.870000px;}
.yc9{bottom:954.960000px;}
.y79{bottom:963.150000px;}
.y2d{bottom:963.600000px;}
.ya1{bottom:968.730000px;}
.yc8{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y53{bottom:982.230000px;}
.ya0{bottom:986.370000px;}
.yc7{bottom:990.150000px;}
.y7d{bottom:990.510000px;}
.y9f{bottom:1003.920000px;}
.y4c{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.y2c{bottom:1012.320000px;}
.yc6{bottom:1016.820000px;}
.y7c{bottom:1017.810000px;}
.yc5{bottom:1034.370000px;}
.y4f{bottom:1036.890000px;}
.y2b{bottom:1039.230000px;}
.y7b{bottom:1045.170000px;}
.yc4{bottom:1060.920000px;}
.y4e{bottom:1064.250000px;}
.y78{bottom:1072.530000px;}
.yc3{bottom:1078.560000px;}
.y2a{bottom:1087.560000px;}
.y4b{bottom:1091.610000px;}
.yc2{bottom:1096.110000px;}
.y77{bottom:1099.890000px;}
.y29{bottom:1105.110000px;}
.y28{bottom:1122.750000px;}
.y76{bottom:1127.160000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hb{height:26.580000px;}
.h9{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hc{height:44.190000px;}
.h7{height:50.902383px;}
.h13{height:54.000000px;}
.h5{height:55.779258px;}
.h19{height:61.793886px;}
.h8{height:62.585859px;}
.h18{height:68.582109px;}
.h4{height:71.019492px;}
.hf{height:81.270000px;}
.hd{height:81.300000px;}
.h17{height:108.540000px;}
.h14{height:108.570000px;}
.h10{height:108.630000px;}
.he{height:135.900000px;}
.h16{height:135.930000px;}
.h11{height:135.990000px;}
.h15{height:163.260000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:36.540000px;}
.w4{width:48.420000px;}
.w9{width:48.510000px;}
.w3{width:62.820000px;}
.w6{width:77.850000px;}
.w5{width:85.260000px;}
.wa{width:85.320000px;}
.w7{width:102.690000px;}
.w11{width:103.500000px;}
.w10{width:118.260000px;}
.w13{width:140.400000px;}
.wd{width:226.350000px;}
.wc{width:240.780000px;}
.w8{width:265.350000px;}
.wb{width:287.040000px;}
.wf{width:393.810000px;}
.w12{width:617.100000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.870000px;}
.x1{left:68.040000px;}
.x17{left:111.239987px;}
.x10{left:119.430000px;}
.x11{left:156.780000px;}
.x2{left:191.459987px;}
.xb{left:246.360000px;}
.x14{left:308.820000px;}
.x8{left:312.960000px;}
.x4{left:347.610000px;}
.xe{left:356.610000px;}
.x9{left:391.530000px;}
.x6{left:411.150000px;}
.x15{left:449.940000px;}
.x7{left:460.380000px;}
.xa{left:495.030000px;}
.x16{left:499.170000px;}
.xc{left:512.430000px;}
.x12{left:551.310000px;}
.xd{left:561.660000px;}
.xf{left:598.110000px;}
.x13{left:670.380000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.395200pt;}
.ls14{letter-spacing:-0.192533pt;}
.lsb{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls10{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.104533pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.059733pt;}
.ls1c{letter-spacing:-0.056533pt;}
.lsf{letter-spacing:-0.028267pt;}
.ls13{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls1a{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls19{letter-spacing:0.177067pt;}
.ls11{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:8.723200pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.860267pt;}
.wsb{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.750080pt;}
.wse{word-spacing:-11.700267pt;}
.ws5{word-spacing:-11.620267pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._4{margin-left:-3.258346pt;}
._5{margin-left:-2.335362pt;}
._0{margin-left:-1.029333pt;}
._1{width:0.990827pt;}
._2{width:2.176747pt;}
._3{width:3.204373pt;}
._6{width:4.338666pt;}
._14{width:5.350507pt;}
._10{width:6.252480pt;}
._e{width:7.936532pt;}
._7{width:8.978134pt;}
._8{width:10.371731pt;}
._9{width:13.092800pt;}
._c{width:14.001066pt;}
._d{width:15.340374pt;}
._11{width:17.635200pt;}
._12{width:24.416320pt;}
._13{width:25.825493pt;}
._15{width:27.361280pt;}
._a{width:30.354134pt;}
._b{width:31.772053pt;}
._f{width:87.801920pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:6.960000pt;}
.y50{bottom:6.986667pt;}
.y2e{bottom:7.040000pt;}
.y69{bottom:7.066667pt;}
.y44{bottom:22.640000pt;}
.y75{bottom:31.360000pt;}
.y58{bottom:55.600000pt;}
.y4d{bottom:55.626667pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y96{bottom:79.840000pt;}
.y7a{bottom:79.866667pt;}
.y5c{bottom:79.920000pt;}
.y1{bottom:90.346667pt;}
.y52{bottom:104.160000pt;}
.y90{bottom:104.186667pt;}
.y61{bottom:104.240000pt;}
.y24{bottom:112.826667pt;}
.y9e{bottom:113.866667pt;}
.y74{bottom:119.786667pt;}
.yc1{bottom:126.346667pt;}
.y9a{bottom:127.146667pt;}
.y23{bottom:128.426667pt;}
.y89{bottom:128.480000pt;}
.yc0{bottom:141.946667pt;}
.y22{bottom:144.106667pt;}
.y4a{bottom:151.466667pt;}
.ybf{bottom:165.546667pt;}
.y21{bottom:167.946667pt;}
.y6f{bottom:168.426667pt;}
.y9d{bottom:175.786667pt;}
.ybe{bottom:181.226667pt;}
.y49{bottom:183.146667pt;}
.y73{bottom:192.746667pt;}
.y9c{bottom:200.026667pt;}
.ybd{bottom:205.146667pt;}
.y20{bottom:210.906667pt;}
.y48{bottom:214.746667pt;}
.y72{bottom:216.986667pt;}
.y9b{bottom:224.346667pt;}
.y1f{bottom:226.506667pt;}
.y47{bottom:228.026667pt;}
.y71{bottom:241.306667pt;}
.y1e{bottom:242.186667pt;}
.ybc{bottom:248.026667pt;}
.y95{bottom:248.666667pt;}
.ye8{bottom:252.266667pt;}
.y46{bottom:252.346667pt;}
.y1d{bottom:257.786667pt;}
.y70{bottom:265.626667pt;}
.ye7{bottom:267.946667pt;}
.ybb{bottom:271.946667pt;}
.y99{bottom:272.906667pt;}
.y1c{bottom:273.386667pt;}
.y45{bottom:276.666667pt;}
.ye6{bottom:283.546667pt;}
.y1b{bottom:289.066667pt;}
.y6a{bottom:289.946667pt;}
.y98{bottom:297.226667pt;}
.y43{bottom:300.906667pt;}
.y1a{bottom:304.666667pt;}
.yba{bottom:304.826667pt;}
.ye5{bottom:307.146667pt;}
.y6e{bottom:314.186667pt;}
.y19{bottom:320.346667pt;}
.y97{bottom:321.546667pt;}
.ye4{bottom:322.826667pt;}
.yb9{bottom:328.746667pt;}
.y6d{bottom:338.506667pt;}
.y18{bottom:344.266667pt;}
.y8f{bottom:345.866667pt;}
.ye3{bottom:346.426667pt;}
.y42{bottom:359.866667pt;}
.yb8{bottom:361.706667pt;}
.ye2{bottom:362.106667pt;}
.y6c{bottom:362.826667pt;}
.y94{bottom:370.106667pt;}
.yb7{bottom:385.626667pt;}
.ye1{bottom:385.706667pt;}
.y6b{bottom:387.066667pt;}
.y17{bottom:387.466667pt;}
.y41{bottom:391.466667pt;}
.y93{bottom:394.426667pt;}
.ye0{bottom:401.306667pt;}
.y40{bottom:404.826667pt;}
.y66{bottom:411.386667pt;}
.ydf{bottom:416.986667pt;}
.y92{bottom:418.773333pt;}
.yb6{bottom:418.853333pt;}
.y16{bottom:420.373333pt;}
.y3f{bottom:429.093333pt;}
.y68{bottom:435.733333pt;}
.y15{bottom:435.973333pt;}
.yde{bottom:440.613333pt;}
.y91{bottom:443.093333pt;}
.y14{bottom:451.653333pt;}
.y3e{bottom:453.413333pt;}
.ydd{bottom:456.293333pt;}
.y67{bottom:460.053333pt;}
.yb5{bottom:461.733333pt;}
.y88{bottom:467.333333pt;}
.yb4{bottom:477.333333pt;}
.y3d{bottom:477.733333pt;}
.ydc{bottom:479.893333pt;}
.y13{bottom:483.253333pt;}
.y60{bottom:484.293333pt;}
.y8e{bottom:491.653333pt;}
.yb3{bottom:493.013333pt;}
.ydb{bottom:495.493333pt;}
.y12{bottom:498.853333pt;}
.y3c{bottom:502.053333pt;}
.y65{bottom:508.613333pt;}
.yda{bottom:511.173333pt;}
.y11{bottom:514.533333pt;}
.y8d{bottom:515.973333pt;}
.yb2{bottom:524.293333pt;}
.y10{bottom:530.133333pt;}
.y64{bottom:532.933333pt;}
.yd9{bottom:534.773333pt;}
.yb1{bottom:539.893333pt;}
.y8c{bottom:540.213333pt;}
.y3b{bottom:545.333333pt;}
.y63{bottom:557.253333pt;}
.yd8{bottom:558.453333pt;}
.yf{bottom:561.813333pt;}
.yb0{bottom:563.813333pt;}
.y8b{bottom:564.533333pt;}
.yd7{bottom:574.053333pt;}
.y3a{bottom:576.933333pt;}
.ye{bottom:577.413333pt;}
.y62{bottom:581.493333pt;}
.y8a{bottom:588.853333pt;}
.yd6{bottom:589.653333pt;}
.y39{bottom:590.213333pt;}
.y5b{bottom:605.813333pt;}
.yaf{bottom:606.693333pt;}
.yd{bottom:609.013333pt;}
.y83{bottom:613.173333pt;}
.yd5{bottom:613.333333pt;}
.y38{bottom:614.533333pt;}
.yae{bottom:622.373333pt;}
.yd4{bottom:628.933333pt;}
.y5f{bottom:630.133333pt;}
.y87{bottom:637.413333pt;}
.yad{bottom:637.973333pt;}
.y37{bottom:638.853333pt;}
.yc{bottom:640.693333pt;}
.yd3{bottom:652.613333pt;}
.yac{bottom:653.573333pt;}
.y5e{bottom:654.373333pt;}
.yb{bottom:656.293333pt;}
.y86{bottom:661.733333pt;}
.y36{bottom:663.173333pt;}
.yd2{bottom:668.213333pt;}
.yab{bottom:669.253333pt;}
.y5d{bottom:678.693333pt;}
.ya{bottom:680.293333pt;}
.yaa{bottom:684.853333pt;}
.y85{bottom:686.053333pt;}
.y35{bottom:687.413333pt;}
.yd1{bottom:691.813333pt;}
.ya9{bottom:700.533333pt;}
.y57{bottom:703.013333pt;}
.yd0{bottom:707.493333pt;}
.y84{bottom:710.373333pt;}
.y34{bottom:711.733333pt;}
.ya8{bottom:716.133333pt;}
.y9{bottom:721.813333pt;}
.y5a{bottom:727.333333pt;}
.ycf{bottom:731.093333pt;}
.ya7{bottom:731.733333pt;}
.y7e{bottom:734.613333pt;}
.yce{bottom:746.693333pt;}
.ya6{bottom:747.413333pt;}
.y59{bottom:751.573333pt;}
.y8{bottom:753.653333pt;}
.y33{bottom:755.013333pt;}
.y82{bottom:758.933333pt;}
.ya5{bottom:763.013333pt;}
.ycd{bottom:770.373333pt;}
.y51{bottom:775.893333pt;}
.ya4{bottom:778.693333pt;}
.y81{bottom:783.253333pt;}
.y7{bottom:785.653333pt;}
.y32{bottom:786.693333pt;}
.ycc{bottom:793.973333pt;}
.ya3{bottom:794.293333pt;}
.y56{bottom:800.213333pt;}
.y80{bottom:807.493333pt;}
.y31{bottom:807.973333pt;}
.ycb{bottom:809.653333pt;}
.ya2{bottom:818.213333pt;}
.y6{bottom:821.013333pt;}
.y55{bottom:824.533333pt;}
.y7f{bottom:831.813333pt;}
.y2f{bottom:832.293333pt;}
.yca{bottom:833.253333pt;}
.y5{bottom:837.013333pt;}
.y54{bottom:848.773333pt;}
.yc9{bottom:848.853333pt;}
.y79{bottom:856.133333pt;}
.y2d{bottom:856.533333pt;}
.ya1{bottom:861.093333pt;}
.yc8{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y53{bottom:873.093333pt;}
.ya0{bottom:876.773333pt;}
.yc7{bottom:880.133333pt;}
.y7d{bottom:880.453333pt;}
.y9f{bottom:892.373333pt;}
.y4c{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.y2c{bottom:899.840000pt;}
.yc6{bottom:903.840000pt;}
.y7c{bottom:904.720000pt;}
.yc5{bottom:919.440000pt;}
.y4f{bottom:921.680000pt;}
.y2b{bottom:923.760000pt;}
.y7b{bottom:929.040000pt;}
.yc4{bottom:943.040000pt;}
.y4e{bottom:946.000000pt;}
.y78{bottom:953.360000pt;}
.yc3{bottom:958.720000pt;}
.y2a{bottom:966.720000pt;}
.y4b{bottom:970.320000pt;}
.yc2{bottom:974.320000pt;}
.y77{bottom:977.680000pt;}
.y29{bottom:982.320000pt;}
.y28{bottom:998.000000pt;}
.y76{bottom:1001.920000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hb{height:23.626667pt;}
.h9{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hc{height:39.280000pt;}
.h7{height:45.246562pt;}
.h13{height:48.000000pt;}
.h5{height:49.581562pt;}
.h19{height:54.927899pt;}
.h8{height:55.631875pt;}
.h18{height:60.961875pt;}
.h4{height:63.128437pt;}
.hf{height:72.240000pt;}
.hd{height:72.266667pt;}
.h17{height:96.480000pt;}
.h14{height:96.506667pt;}
.h10{height:96.560000pt;}
.he{height:120.800000pt;}
.h16{height:120.826667pt;}
.h11{height:120.880000pt;}
.h15{height:145.120000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:32.480000pt;}
.w4{width:43.040000pt;}
.w9{width:43.120000pt;}
.w3{width:55.840000pt;}
.w6{width:69.200000pt;}
.w5{width:75.786667pt;}
.wa{width:75.840000pt;}
.w7{width:91.280000pt;}
.w11{width:92.000000pt;}
.w10{width:105.120000pt;}
.w13{width:124.800000pt;}
.wd{width:201.200000pt;}
.wc{width:214.026667pt;}
.w8{width:235.866667pt;}
.wb{width:255.146667pt;}
.wf{width:350.053333pt;}
.w12{width:548.533333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.440000pt;}
.x1{left:60.480000pt;}
.x17{left:98.879988pt;}
.x10{left:106.160000pt;}
.x11{left:139.360000pt;}
.x2{left:170.186655pt;}
.xb{left:218.986667pt;}
.x14{left:274.506667pt;}
.x8{left:278.186667pt;}
.x4{left:308.986667pt;}
.xe{left:316.986667pt;}
.x9{left:348.026667pt;}
.x6{left:365.466667pt;}
.x15{left:399.946667pt;}
.x7{left:409.226667pt;}
.xa{left:440.026667pt;}
.x16{left:443.706667pt;}
.xc{left:455.493333pt;}
.x12{left:490.053333pt;}
.xd{left:499.253333pt;}
.xf{left:531.653333pt;}
.x13{left:595.893333pt;}
.x3{left:718.773322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  