
    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_b45f2ac76888442f750b087f.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_f0cf5f6a6c39c646affada2b.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_8f9ee8b4adf073a6457282af.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_c9ed0539a04baceb4c6ed4f0.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_4fcd41c210c02f5fe55847da.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_eb1670f2598c6e61af0ae96d.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_904009b43c8de90d66532145.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_904009b43c8de90d66532145.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.660000px;}
.ls21{letter-spacing:-0.444600px;}
.lsc{letter-spacing:-0.186600px;}
.lsd{letter-spacing:-0.160800px;}
.ls1c{letter-spacing:-0.159600px;}
.ls8{letter-spacing:-0.158400px;}
.ls7{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls1f{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.014760px;}
.ls1e{letter-spacing:-0.009000px;}
.ls20{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.060480px;}
.ls11{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.074160px;}
.ls10{letter-spacing:0.074400px;}
.ls1{letter-spacing:0.093600px;}
.lsf{letter-spacing:0.166200px;}
.lsb{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181200px;}
.ls19{letter-spacing:0.275400px;}
.ls18{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.425520px;}
.ls1a{letter-spacing:7.653600px;}
.ls12{letter-spacing:10.173600px;}
.ls17{letter-spacing:47.726640px;}
.ls14{letter-spacing:63.566640px;}
.ls15{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;}
}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wse{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.218840px;}
.ws11{word-spacing:-13.217400px;}
.ws10{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.141800px;}
.wsf{word-spacing:-13.066800px;}
.wsa{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws14{word-spacing:-12.781800px;}
.ws0{word-spacing:-9.810000px;}
.wsc{word-spacing:-8.614200px;}
.ws1{word-spacing:-8.553600px;}
.ws5{word-spacing:-8.395200px;}
.wsd{word-spacing:-7.893600px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._a{margin-left:-3.315017px;}
._8{margin-left:-2.100000px;}
._0{margin-left:-1.026000px;}
._2{width:1.006812px;}
._7{width:2.196468px;}
._d{width:3.285463px;}
._6{width:4.352520px;}
._5{width:5.484960px;}
._4{width:6.687240px;}
._3{width:8.004960px;}
._9{width:9.790440px;}
._13{width:11.052601px;}
._12{width:14.415468px;}
._11{width:15.775320px;}
._1{width:17.218476px;}
._15{width:18.510612px;}
._b{width:24.168240px;}
._c{width:25.847400px;}
._16{width:27.979560px;}
._17{width:29.014200px;}
._f{width:31.852908px;}
._e{width:32.945760px;}
._18{width:43.827480px;}
._19{width:44.905440px;}
._14{width:52.364520px;}
._10{width:70.452720px;}
._1b{width:116.147640px;}
._1a{width:117.234000px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y34{bottom:7.830000px;}
.y32{bottom:7.920000px;}
.y3d{bottom:35.190000px;}
.y4f{bottom:62.460000px;}
.y41{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y37{bottom:89.820000px;}
.y1{bottom:101.640000px;}
.y72{bottom:118.650000px;}
.yc1{bottom:124.320000px;}
.y52{bottom:128.370000px;}
.y71{bottom:136.290000px;}
.y99{bottom:138.000000px;}
.yc0{bottom:141.870000px;}
.y24{bottom:144.660000px;}
.y51{bottom:155.730000px;}
.y23{bottom:162.300000px;}
.y70{bottom:163.200000px;}
.y98{bottom:164.640000px;}
.ybf{bottom:168.510000px;}
.y97{bottom:182.190000px;}
.y4e{bottom:183.090000px;}
.ybe{bottom:186.060000px;}
.y22{bottom:189.210000px;}
.y96{bottom:209.100000px;}
.y50{bottom:210.360000px;}
.y6f{bottom:211.440000px;}
.ybd{bottom:212.610000px;}
.yde{bottom:213.870000px;}
.y6e{bottom:229.080000px;}
.ybc{bottom:230.250000px;}
.ydd{bottom:231.510000px;}
.y21{bottom:237.450000px;}
.y4d{bottom:237.720000px;}
.y6d{bottom:246.630000px;}
.ydc{bottom:249.060000px;}
.y20{bottom:255.090000px;}
.ybb{bottom:256.800000px;}
.y95{bottom:257.430000px;}
.y6c{bottom:264.180000px;}
.y4c{bottom:265.080000px;}
.yba{bottom:274.440000px;}
.ydb{bottom:275.610000px;}
.y6b{bottom:281.820000px;}
.y1f{bottom:282.000000px;}
.y94{bottom:284.250000px;}
.y4b{bottom:292.440000px;}
.yda{bottom:293.250000px;}
.y6a{bottom:299.370000px;}
.yb9{bottom:300.990000px;}
.y69{bottom:316.920000px;}
.yb8{bottom:318.540000px;}
.y1e{bottom:318.990000px;}
.yd9{bottom:319.800000px;}
.y93{bottom:321.330000px;}
.y68{bottom:334.560000px;}
.y1d{bottom:336.540000px;}
.yd8{bottom:337.440000px;}
.y4a{bottom:341.130000px;}
.yb7{bottom:345.180000px;}
.y92{bottom:348.240000px;}
.y67{bottom:352.110000px;}
.y1c{bottom:354.180000px;}
.yd7{bottom:354.990000px;}
.y66{bottom:369.750000px;}
.y1b{bottom:371.730000px;}
.y49{bottom:376.680000px;}
.yd6{bottom:381.540000px;}
.y91{bottom:385.230000px;}
.y1a{bottom:389.280000px;}
.yb6{bottom:389.370000px;}
.y48{bottom:394.230000px;}
.y65{bottom:396.300000px;}
.y19{bottom:406.920000px;}
.yd5{bottom:408.180000px;}
.y47{bottom:411.870000px;}
.y90{bottom:412.140000px;}
.yb5{bottom:415.920000px;}
.y18{bottom:424.470000px;}
.yd4{bottom:425.730000px;}
.y46{bottom:429.420000px;}
.y64{bottom:431.130000px;}
.yb4{bottom:433.470000px;}
.y63{bottom:443.370000px;}
.y45{bottom:447.060000px;}
.y8f{bottom:449.490000px;}
.y17{bottom:451.380000px;}
.yb3{bottom:460.110000px;}
.y44{bottom:464.610000px;}
.yd3{bottom:469.950000px;}
.y62{bottom:470.670000px;}
.yb2{bottom:477.690000px;}
.yd2{bottom:487.500000px;}
.y8e{bottom:497.760000px;}
.y61{bottom:498.030000px;}
.y43{bottom:499.470000px;}
.y16{bottom:500.010000px;}
.yb1{bottom:504.330000px;}
.yd1{bottom:505.140000px;}
.y40{bottom:511.710000px;}
.y8d{bottom:516.210000px;}
.y60{bottom:525.390000px;}
.yb0{bottom:530.880000px;}
.yd0{bottom:531.690000px;}
.y8c{bottom:534.570000px;}
.y15{bottom:537.090000px;}
.y42{bottom:538.980000px;}
.ycf{bottom:549.330000px;}
.y5e{bottom:552.750000px;}
.y14{bottom:554.640000px;}
.yaf{bottom:557.430000px;}
.y8b{bottom:562.380000px;}
.y3f{bottom:566.340000px;}
.yce{bottom:566.880000px;}
.y13{bottom:572.190000px;}
.yae{bottom:575.070000px;}
.y5f{bottom:580.020000px;}
.y12{bottom:589.830000px;}
.ycd{bottom:593.430000px;}
.y3e{bottom:593.700000px;}
.yad{bottom:601.620000px;}
.y8a{bottom:610.620000px;}
.ycc{bottom:611.070000px;}
.yac{bottom:619.260000px;}
.y3c{bottom:621.060000px;}
.y11{bottom:625.380000px;}
.y89{bottom:628.260000px;}
.ycb{bottom:628.620000px;}
.y5d{bottom:628.710000px;}
.y10{bottom:643.020000px;}
.y88{bottom:645.810000px;}
.y3b{bottom:648.330000px;}
.yca{bottom:655.260000px;}
.yf{bottom:660.570000px;}
.yab{bottom:663.360000px;}
.y5c{bottom:664.350000px;}
.yc9{bottom:672.810000px;}
.y3a{bottom:675.690000px;}
.ye{bottom:678.120000px;}
.y87{bottom:681.360000px;}
.yaa{bottom:690.000000px;}
.yc8{bottom:690.360000px;}
.y5b{bottom:696.570000px;}
.y86{bottom:699.000000px;}
.y36{bottom:703.050000px;}
.yd{bottom:705.120000px;}
.ya9{bottom:707.550000px;}
.yc7{bottom:717.000000px;}
.y39{bottom:730.320000px;}
.ya8{bottom:734.190000px;}
.y85{bottom:734.550000px;}
.ya7{bottom:751.740000px;}
.yc{bottom:751.830000px;}
.y84{bottom:752.190000px;}
.y38{bottom:757.680000px;}
.ya6{bottom:769.290000px;}
.y83{bottom:769.740000px;}
.y35{bottom:785.040000px;}
.y82{bottom:787.290000px;}
.yb{bottom:787.380000px;}
.ya5{bottom:795.930000px;}
.yc6{bottom:796.290000px;}
.y33{bottom:812.400000px;}
.ya4{bottom:813.480000px;}
.yc5{bottom:813.930000px;}
.y81{bottom:822.930000px;}
.ya{bottom:823.200000px;}
.yc4{bottom:831.480000px;}
.y31{bottom:839.670000px;}
.ya3{bottom:840.030000px;}
.y80{bottom:840.480000px;}
.y7f{bottom:858.030000px;}
.y9{bottom:859.200000px;}
.ya2{bottom:866.670000px;}
.y7e{bottom:875.670000px;}
.y8{bottom:880.980000px;}
.ya1{bottom:884.220000px;}
.y30{bottom:888.450000px;}
.y7d{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y7c{bottom:910.860000px;}
.y6{bottom:916.980000px;}
.y2f{bottom:924.000000px;}
.ya0{bottom:928.410000px;}
.y7b{bottom:932.190000px;}
.yc3{bottom:937.410000px;}
.y2e{bottom:941.550000px;}
.y7a{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y5a{bottom:949.650000px;}
.y9f{bottom:954.960000px;}
.y79{bottom:963.600000px;}
.y59{bottom:967.290000px;}
.y9e{bottom:972.600000px;}
.y2d{bottom:977.190000px;}
.y78{bottom:981.150000px;}
.y58{bottom:984.840000px;}
.y4{bottom:987.630000px;}
.yc2{bottom:990.150000px;}
.y2c{bottom:994.740000px;}
.y9d{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.y77{bottom:1016.820000px;}
.y57{bottom:1017.810000px;}
.y2b{bottom:1029.960000px;}
.y76{bottom:1034.370000px;}
.y56{bottom:1045.170000px;}
.y2a{bottom:1047.510000px;}
.y75{bottom:1051.920000px;}
.y9c{bottom:1060.920000px;}
.y74{bottom:1069.560000px;}
.y55{bottom:1072.530000px;}
.y29{bottom:1074.420000px;}
.y9b{bottom:1078.560000px;}
.y73{bottom:1087.110000px;}
.y9a{bottom:1096.110000px;}
.y54{bottom:1099.890000px;}
.y28{bottom:1122.750000px;}
.y53{bottom:1127.160000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h11{height:26.580000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hf{height:40.539023px;}
.h7{height:50.902383px;}
.hd{height:53.910000px;}
.h5{height:55.779258px;}
.h13{height:61.793886px;}
.h12{height:62.585859px;}
.hb{height:67.714259px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h10{height:81.180000px;}
.he{height:81.270000px;}
.hc{height:108.540000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:57.090000px;}
.w6{width:71.280000px;}
.w5{width:80.100000px;}
.wd{width:81.180000px;}
.w3{width:125.820000px;}
.wb{width:139.080000px;}
.wa{width:158.670000px;}
.w8{width:176.580000px;}
.w4{width:213.870000px;}
.w7{width:493.230000px;}
.w9{width:544.080000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:3.870000px;}
.x1{left:68.040000px;}
.x14{left:95.039987px;}
.x15{left:111.239987px;}
.x9{left:122.219987px;}
.xa{left:174.630000px;}
.x4{left:200.010000px;}
.x2{left:202.799987px;}
.xf{left:262.199987px;}
.x10{left:297.390000px;}
.x6{left:326.550000px;}
.x13{left:338.249987px;}
.xb{left:351.930000px;}
.x11{left:456.780000px;}
.x12{left:514.680000px;}
.x7{left:541.140000px;}
.xc{left:566.610000px;}
.x8{left:621.960000px;}
.xd{left:647.430000px;}
.xe{left:727.889987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls21{letter-spacing:-0.395200pt;}
.lsc{letter-spacing:-0.165867pt;}
.lsd{letter-spacing:-0.142933pt;}
.ls1c{letter-spacing:-0.141867pt;}
.ls8{letter-spacing:-0.140800pt;}
.ls7{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls1f{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.013120pt;}
.ls1e{letter-spacing:-0.008000pt;}
.ls20{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.053760pt;}
.ls11{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.065920pt;}
.ls10{letter-spacing:0.066133pt;}
.ls1{letter-spacing:0.083200pt;}
.lsf{letter-spacing:0.147733pt;}
.lsb{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls19{letter-spacing:0.244800pt;}
.ls18{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.378240pt;}
.ls1a{letter-spacing:6.803200pt;}
.ls12{letter-spacing:9.043200pt;}
.ls17{letter-spacing:42.423680pt;}
.ls14{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.750080pt;}
.ws11{word-spacing:-11.748800pt;}
.ws10{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.681600pt;}
.wsf{word-spacing:-11.614933pt;}
.wsa{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws14{word-spacing:-11.361600pt;}
.ws0{word-spacing:-8.720000pt;}
.wsc{word-spacing:-7.657067pt;}
.ws1{word-spacing:-7.603200pt;}
.ws5{word-spacing:-7.462400pt;}
.wsd{word-spacing:-7.016533pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._a{margin-left:-2.946682pt;}
._8{margin-left:-1.866666pt;}
._0{margin-left:-0.912000pt;}
._2{width:0.894944pt;}
._7{width:1.952416pt;}
._d{width:2.920412pt;}
._6{width:3.868907pt;}
._5{width:4.875520pt;}
._4{width:5.944213pt;}
._3{width:7.115520pt;}
._9{width:8.702613pt;}
._13{width:9.824534pt;}
._12{width:12.813750pt;}
._11{width:14.022506pt;}
._1{width:15.305312pt;}
._15{width:16.453877pt;}
._b{width:21.482880pt;}
._c{width:22.975466pt;}
._16{width:24.870720pt;}
._17{width:25.790400pt;}
._f{width:28.313696pt;}
._e{width:29.285120pt;}
._18{width:38.957760pt;}
._19{width:39.915946pt;}
._14{width:46.546240pt;}
._10{width:62.624640pt;}
._1b{width:103.242346pt;}
._1a{width:104.208000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:6.960000pt;}
.y32{bottom:7.040000pt;}
.y3d{bottom:31.280000pt;}
.y4f{bottom:55.520000pt;}
.y41{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y37{bottom:79.840000pt;}
.y1{bottom:90.346667pt;}
.y72{bottom:105.466667pt;}
.yc1{bottom:110.506667pt;}
.y52{bottom:114.106667pt;}
.y71{bottom:121.146667pt;}
.y99{bottom:122.666667pt;}
.yc0{bottom:126.106667pt;}
.y24{bottom:128.586667pt;}
.y51{bottom:138.426667pt;}
.y23{bottom:144.266667pt;}
.y70{bottom:145.066667pt;}
.y98{bottom:146.346667pt;}
.ybf{bottom:149.786667pt;}
.y97{bottom:161.946667pt;}
.y4e{bottom:162.746667pt;}
.ybe{bottom:165.386667pt;}
.y22{bottom:168.186667pt;}
.y96{bottom:185.866667pt;}
.y50{bottom:186.986667pt;}
.y6f{bottom:187.946667pt;}
.ybd{bottom:188.986667pt;}
.yde{bottom:190.106667pt;}
.y6e{bottom:203.626667pt;}
.ybc{bottom:204.666667pt;}
.ydd{bottom:205.786667pt;}
.y21{bottom:211.066667pt;}
.y4d{bottom:211.306667pt;}
.y6d{bottom:219.226667pt;}
.ydc{bottom:221.386667pt;}
.y20{bottom:226.746667pt;}
.ybb{bottom:228.266667pt;}
.y95{bottom:228.826667pt;}
.y6c{bottom:234.826667pt;}
.y4c{bottom:235.626667pt;}
.yba{bottom:243.946667pt;}
.ydb{bottom:244.986667pt;}
.y6b{bottom:250.506667pt;}
.y1f{bottom:250.666667pt;}
.y94{bottom:252.666667pt;}
.y4b{bottom:259.946667pt;}
.yda{bottom:260.666667pt;}
.y6a{bottom:266.106667pt;}
.yb9{bottom:267.546667pt;}
.y69{bottom:281.706667pt;}
.yb8{bottom:283.146667pt;}
.y1e{bottom:283.546667pt;}
.yd9{bottom:284.266667pt;}
.y93{bottom:285.626667pt;}
.y68{bottom:297.386667pt;}
.y1d{bottom:299.146667pt;}
.yd8{bottom:299.946667pt;}
.y4a{bottom:303.226667pt;}
.yb7{bottom:306.826667pt;}
.y92{bottom:309.546667pt;}
.y67{bottom:312.986667pt;}
.y1c{bottom:314.826667pt;}
.yd7{bottom:315.546667pt;}
.y66{bottom:328.666667pt;}
.y1b{bottom:330.426667pt;}
.y49{bottom:334.826667pt;}
.yd6{bottom:339.146667pt;}
.y91{bottom:342.426667pt;}
.y1a{bottom:346.026667pt;}
.yb6{bottom:346.106667pt;}
.y48{bottom:350.426667pt;}
.y65{bottom:352.266667pt;}
.y19{bottom:361.706667pt;}
.yd5{bottom:362.826667pt;}
.y47{bottom:366.106667pt;}
.y90{bottom:366.346667pt;}
.yb5{bottom:369.706667pt;}
.y18{bottom:377.306667pt;}
.yd4{bottom:378.426667pt;}
.y46{bottom:381.706667pt;}
.y64{bottom:383.226667pt;}
.yb4{bottom:385.306667pt;}
.y63{bottom:394.106667pt;}
.y45{bottom:397.386667pt;}
.y8f{bottom:399.546667pt;}
.y17{bottom:401.226667pt;}
.yb3{bottom:408.986667pt;}
.y44{bottom:412.986667pt;}
.yd3{bottom:417.733333pt;}
.y62{bottom:418.373333pt;}
.yb2{bottom:424.613333pt;}
.yd2{bottom:433.333333pt;}
.y8e{bottom:442.453333pt;}
.y61{bottom:442.693333pt;}
.y43{bottom:443.973333pt;}
.y16{bottom:444.453333pt;}
.yb1{bottom:448.293333pt;}
.yd1{bottom:449.013333pt;}
.y40{bottom:454.853333pt;}
.y8d{bottom:458.853333pt;}
.y60{bottom:467.013333pt;}
.yb0{bottom:471.893333pt;}
.yd0{bottom:472.613333pt;}
.y8c{bottom:475.173333pt;}
.y15{bottom:477.413333pt;}
.y42{bottom:479.093333pt;}
.ycf{bottom:488.293333pt;}
.y5e{bottom:491.333333pt;}
.y14{bottom:493.013333pt;}
.yaf{bottom:495.493333pt;}
.y8b{bottom:499.893333pt;}
.y3f{bottom:503.413333pt;}
.yce{bottom:503.893333pt;}
.y13{bottom:508.613333pt;}
.yae{bottom:511.173333pt;}
.y5f{bottom:515.573333pt;}
.y12{bottom:524.293333pt;}
.ycd{bottom:527.493333pt;}
.y3e{bottom:527.733333pt;}
.yad{bottom:534.773333pt;}
.y8a{bottom:542.773333pt;}
.ycc{bottom:543.173333pt;}
.yac{bottom:550.453333pt;}
.y3c{bottom:552.053333pt;}
.y11{bottom:555.893333pt;}
.y89{bottom:558.453333pt;}
.ycb{bottom:558.773333pt;}
.y5d{bottom:558.853333pt;}
.y10{bottom:571.573333pt;}
.y88{bottom:574.053333pt;}
.y3b{bottom:576.293333pt;}
.yca{bottom:582.453333pt;}
.yf{bottom:587.173333pt;}
.yab{bottom:589.653333pt;}
.y5c{bottom:590.533333pt;}
.yc9{bottom:598.053333pt;}
.y3a{bottom:600.613333pt;}
.ye{bottom:602.773333pt;}
.y87{bottom:605.653333pt;}
.yaa{bottom:613.333333pt;}
.yc8{bottom:613.653333pt;}
.y5b{bottom:619.173333pt;}
.y86{bottom:621.333333pt;}
.y36{bottom:624.933333pt;}
.yd{bottom:626.773333pt;}
.ya9{bottom:628.933333pt;}
.yc7{bottom:637.333333pt;}
.y39{bottom:649.173333pt;}
.ya8{bottom:652.613333pt;}
.y85{bottom:652.933333pt;}
.ya7{bottom:668.213333pt;}
.yc{bottom:668.293333pt;}
.y84{bottom:668.613333pt;}
.y38{bottom:673.493333pt;}
.ya6{bottom:683.813333pt;}
.y83{bottom:684.213333pt;}
.y35{bottom:697.813333pt;}
.y82{bottom:699.813333pt;}
.yb{bottom:699.893333pt;}
.ya5{bottom:707.493333pt;}
.yc6{bottom:707.813333pt;}
.y33{bottom:722.133333pt;}
.ya4{bottom:723.093333pt;}
.yc5{bottom:723.493333pt;}
.y81{bottom:731.493333pt;}
.ya{bottom:731.733333pt;}
.yc4{bottom:739.093333pt;}
.y31{bottom:746.373333pt;}
.ya3{bottom:746.693333pt;}
.y80{bottom:747.093333pt;}
.y7f{bottom:762.693333pt;}
.y9{bottom:763.733333pt;}
.ya2{bottom:770.373333pt;}
.y7e{bottom:778.373333pt;}
.y8{bottom:783.093333pt;}
.ya1{bottom:785.973333pt;}
.y30{bottom:789.733333pt;}
.y7d{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y7c{bottom:809.653333pt;}
.y6{bottom:815.093333pt;}
.y2f{bottom:821.333333pt;}
.ya0{bottom:825.253333pt;}
.y7b{bottom:828.613333pt;}
.yc3{bottom:833.253333pt;}
.y2e{bottom:836.933333pt;}
.y7a{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y5a{bottom:844.133333pt;}
.y9f{bottom:848.853333pt;}
.y79{bottom:856.533333pt;}
.y59{bottom:859.813333pt;}
.y9e{bottom:864.533333pt;}
.y2d{bottom:868.613333pt;}
.y78{bottom:872.133333pt;}
.y58{bottom:875.413333pt;}
.y4{bottom:877.893333pt;}
.yc2{bottom:880.133333pt;}
.y2c{bottom:884.213333pt;}
.y9d{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.y77{bottom:903.840000pt;}
.y57{bottom:904.720000pt;}
.y2b{bottom:915.520000pt;}
.y76{bottom:919.440000pt;}
.y56{bottom:929.040000pt;}
.y2a{bottom:931.120000pt;}
.y75{bottom:935.040000pt;}
.y9c{bottom:943.040000pt;}
.y74{bottom:950.720000pt;}
.y55{bottom:953.360000pt;}
.y29{bottom:955.040000pt;}
.y9b{bottom:958.720000pt;}
.y73{bottom:966.320000pt;}
.y9a{bottom:974.320000pt;}
.y54{bottom:977.680000pt;}
.y28{bottom:998.000000pt;}
.y53{bottom:1001.920000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h11{height:23.626667pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hf{height:36.034687pt;}
.h7{height:45.246562pt;}
.hd{height:47.920000pt;}
.h5{height:49.581562pt;}
.h13{height:54.927899pt;}
.h12{height:55.631875pt;}
.hb{height:60.190452pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h10{height:72.160000pt;}
.he{height:72.240000pt;}
.hc{height:96.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:50.746667pt;}
.w6{width:63.360000pt;}
.w5{width:71.200000pt;}
.wd{width:72.160000pt;}
.w3{width:111.840000pt;}
.wb{width:123.626667pt;}
.wa{width:141.040000pt;}
.w8{width:156.960000pt;}
.w4{width:190.106667pt;}
.w7{width:438.426667pt;}
.w9{width:483.626667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:3.440000pt;}
.x1{left:60.480000pt;}
.x14{left:84.479988pt;}
.x15{left:98.879988pt;}
.x9{left:108.639988pt;}
.xa{left:155.226667pt;}
.x4{left:177.786667pt;}
.x2{left:180.266655pt;}
.xf{left:233.066655pt;}
.x10{left:264.346667pt;}
.x6{left:290.266667pt;}
.x13{left:300.666655pt;}
.xb{left:312.826667pt;}
.x11{left:406.026667pt;}
.x12{left:457.493333pt;}
.x7{left:481.013333pt;}
.xc{left:503.653333pt;}
.x8{left:552.853333pt;}
.xd{left:575.493333pt;}
.xe{left:647.013322pt;}
.x3{left:704.053322pt;}
}




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