
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_72187cea1ff9385d149ab42a.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_a555292b15a4d2198493cf34.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_900b83f6d79f7d259bfc7aeb.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_8d91ff44d2664b9a2ce1eb7f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_9b7130c8845290ed8cfd43b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4d6639831a08cc5314ed011d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls2{letter-spacing:-0.774000px;}
.ls12{letter-spacing:-0.541200px;}
.ls3{letter-spacing:-0.334200px;}
.ls7{letter-spacing:-0.259200px;}
.ls5{letter-spacing:-0.166800px;}
.lsd{letter-spacing:-0.034560px;}
.ls4{letter-spacing:-0.028800px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.010080px;}
.ls0{letter-spacing:0.097920px;}
.ls6{letter-spacing:0.178800px;}
.lse{letter-spacing:0.184200px;}
.lsf{letter-spacing:0.195600px;}
.ls13{letter-spacing:0.276600px;}
.ls11{letter-spacing:0.351600px;}
.ls8{letter-spacing:0.397440px;}
.ls10{letter-spacing:7.585920px;}
.lsb{letter-spacing:26.380800px;}
.lsa{letter-spacing:35.226720px;}
.lsc{letter-spacing:42.865920px;}
.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;}
}
.ws9{word-spacing:-14.290800px;}
.wsb{word-spacing:-14.215800px;}
.ws8{word-spacing:-14.134800px;}
.ws7{word-spacing:-14.123400px;}
.ws3{word-spacing:-14.118000px;}
.ws2{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.904640px;}
.ws1{word-spacing:-13.605000px;}
.wsa{word-spacing:-13.398000px;}
.ws0{word-spacing:-13.165200px;}
.ws4{word-spacing:-9.187200px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-11.094240px;}
._0{margin-left:-1.267200px;}
._2{width:1.233600px;}
._6{width:2.441280px;}
._7{width:3.647520px;}
._8{width:5.159520px;}
._d{width:6.327360px;}
._a{width:7.385760px;}
._9{width:8.743680px;}
._b{width:10.771200px;}
._13{width:12.735360px;}
._12{width:15.143040px;}
._e{width:16.156800px;}
._f{width:18.126720px;}
._c{width:19.198080px;}
._4{width:20.268720px;}
._3{width:21.438720px;}
._11{width:22.492800px;}
._10{width:23.506560px;}
._1{width:25.060800px;}
._16{width:26.122080px;}
._17{width:27.290160px;}
._14{width:38.839680px;}
._15{width:39.916800px;}
._18{width:181.087680px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.420000px;}
.y5a{bottom:3.450000px;}
.y77{bottom:4.140000px;}
.y68{bottom:21.780000px;}
.y5{bottom:21.960000px;}
.y7a{bottom:22.500000px;}
.y76{bottom:22.680000px;}
.y4{bottom:40.350000px;}
.y9{bottom:55.440000px;}
.y8{bottom:58.320000px;}
.y3{bottom:58.890000px;}
.yaf{bottom:86.760000px;}
.y3e{bottom:87.840000px;}
.ye1{bottom:88.020000px;}
.y73{bottom:95.400000px;}
.yae{bottom:105.300000px;}
.y3d{bottom:106.200000px;}
.ye0{bottom:106.560000px;}
.y72{bottom:114.660000px;}
.y3c{bottom:124.740000px;}
.ydf{bottom:125.100000px;}
.y71{bottom:133.740000px;}
.yad{bottom:134.100000px;}
.y3b{bottom:143.280000px;}
.yde{bottom:143.460000px;}
.yac{bottom:152.640000px;}
.y70{bottom:153.000000px;}
.y3a{bottom:161.640000px;}
.ydd{bottom:162.000000px;}
.y6f{bottom:172.260000px;}
.y65{bottom:172.665000px;}
.y39{bottom:180.180000px;}
.ydc{bottom:180.360000px;}
.yab{bottom:181.620000px;}
.y6e{bottom:194.940000px;}
.y38{bottom:198.540000px;}
.ydb{bottom:198.900000px;}
.yaa{bottom:200.160000px;}
.y6d{bottom:213.330000px;}
.y37{bottom:217.110000px;}
.yda{bottom:217.290000px;}
.ya9{bottom:218.550000px;}
.y6c{bottom:229.170000px;}
.y36{bottom:235.470000px;}
.yd9{bottom:235.830000px;}
.ya8{bottom:237.090000px;}
.y35{bottom:254.010000px;}
.yd8{bottom:254.370000px;}
.ya7{bottom:255.630000px;}
.y6b{bottom:266.790000px;}
.y34{bottom:272.550000px;}
.yd7{bottom:272.730000px;}
.ya6{bottom:273.990000px;}
.y33{bottom:290.910000px;}
.yd6{bottom:291.270000px;}
.ya5{bottom:292.530000px;}
.y64{bottom:304.590000px;}
.y32{bottom:309.450000px;}
.yd5{bottom:309.630000px;}
.ya4{bottom:310.890000px;}
.y31{bottom:327.810000px;}
.yd4{bottom:328.170000px;}
.ya3{bottom:329.430000px;}
.y6a{bottom:342.210000px;}
.y30{bottom:346.350000px;}
.yd3{bottom:346.710000px;}
.ya2{bottom:347.790000px;}
.y2f{bottom:364.890000px;}
.yd2{bottom:365.070000px;}
.ya1{bottom:366.330000px;}
.y69{bottom:379.830000px;}
.y2e{bottom:383.250000px;}
.yd1{bottom:383.610000px;}
.ya0{bottom:384.870000px;}
.y2d{bottom:401.790000px;}
.yd0{bottom:401.970000px;}
.y9f{bottom:403.230000px;}
.y67{bottom:417.630000px;}
.y2c{bottom:420.150000px;}
.ycf{bottom:420.510000px;}
.y9e{bottom:421.770000px;}
.y2b{bottom:438.690000px;}
.yce{bottom:438.870000px;}
.y9d{bottom:440.130000px;}
.y66{bottom:455.295000px;}
.y2a{bottom:457.095000px;}
.ycd{bottom:457.455000px;}
.y9c{bottom:458.715000px;}
.y29{bottom:475.635000px;}
.ycc{bottom:475.995000px;}
.y9b{bottom:477.255000px;}
.y63{bottom:492.915000px;}
.y28{bottom:494.175000px;}
.ycb{bottom:494.355000px;}
.y9a{bottom:495.615000px;}
.yca{bottom:512.895000px;}
.y99{bottom:514.155000px;}
.y27{bottom:516.495000px;}
.yc9{bottom:531.255000px;}
.y98{bottom:532.515000px;}
.y62{bottom:534.135000px;}
.y26{bottom:534.855000px;}
.yc8{bottom:549.795000px;}
.y97{bottom:551.055000px;}
.y61{bottom:552.495000px;}
.y25{bottom:553.215000px;}
.yc7{bottom:568.335000px;}
.y96{bottom:569.415000px;}
.y60{bottom:571.035000px;}
.y24{bottom:571.755000px;}
.yc6{bottom:586.695000px;}
.y95{bottom:587.955000px;}
.y5f{bottom:589.395000px;}
.y23{bottom:590.115000px;}
.yc5{bottom:605.235000px;}
.y94{bottom:606.495000px;}
.y5e{bottom:607.935000px;}
.y22{bottom:608.655000px;}
.yc4{bottom:623.595000px;}
.y93{bottom:624.855000px;}
.y5d{bottom:626.475000px;}
.y21{bottom:627.195000px;}
.y5c{bottom:642.135000px;}
.y92{bottom:643.395000px;}
.y20{bottom:645.555000px;}
.yc3{bottom:660.495000px;}
.y5b{bottom:661.395000px;}
.y91{bottom:661.755000px;}
.y1f{bottom:664.095000px;}
.y90{bottom:680.295000px;}
.y59{bottom:680.655000px;}
.y1e{bottom:682.485000px;}
.yc2{bottom:689.505000px;}
.y8f{bottom:698.865000px;}
.y58{bottom:699.945000px;}
.y1d{bottom:701.025000px;}
.y8e{bottom:717.225000px;}
.yc1{bottom:718.485000px;}
.y57{bottom:719.025000px;}
.y1c{bottom:719.385000px;}
.y8d{bottom:735.765000px;}
.y1b{bottom:737.925000px;}
.y56{bottom:741.705000px;}
.yc0{bottom:747.465000px;}
.y8c{bottom:754.125000px;}
.y1a{bottom:756.465000px;}
.y55{bottom:760.245000px;}
.y8b{bottom:772.665000px;}
.y19{bottom:774.825000px;}
.ybf{bottom:776.445000px;}
.y54{bottom:778.605000px;}
.y8a{bottom:791.025000px;}
.y18{bottom:793.365000px;}
.ybe{bottom:794.985000px;}
.y53{bottom:797.145000px;}
.y89{bottom:809.565000px;}
.y17{bottom:811.725000px;}
.y52{bottom:815.505000px;}
.ybd{bottom:823.785000px;}
.y88{bottom:828.105000px;}
.y16{bottom:830.265000px;}
.y51{bottom:834.045000px;}
.y87{bottom:846.465000px;}
.y15{bottom:850.965000px;}
.y50{bottom:852.585000px;}
.ybc{bottom:852.765000px;}
.y86{bottom:865.005000px;}
.y14{bottom:869.505000px;}
.y4f{bottom:870.945000px;}
.ybb{bottom:871.305000px;}
.y85{bottom:883.365000px;}
.y13{bottom:887.865000px;}
.y4e{bottom:889.485000px;}
.yba{bottom:900.285000px;}
.y84{bottom:901.905000px;}
.y12{bottom:906.405000px;}
.y4d{bottom:907.845000px;}
.yb9{bottom:918.870000px;}
.y83{bottom:920.490000px;}
.y11{bottom:924.810000px;}
.y4c{bottom:926.430000px;}
.y82{bottom:938.850000px;}
.y4b{bottom:944.790000px;}
.y10{bottom:947.130000px;}
.yb8{bottom:947.670000px;}
.y81{bottom:957.390000px;}
.yf{bottom:961.890000px;}
.y4a{bottom:963.330000px;}
.yb7{bottom:966.210000px;}
.y80{bottom:975.750000px;}
.ye{bottom:980.250000px;}
.y49{bottom:981.870000px;}
.y7f{bottom:994.290000px;}
.yb6{bottom:995.190000px;}
.yd{bottom:998.790000px;}
.y48{bottom:1000.230000px;}
.y7e{bottom:1012.650000px;}
.yc{bottom:1018.770000px;}
.yb5{bottom:1024.170000px;}
.y7c{bottom:1028.490000px;}
.y47{bottom:1037.130000px;}
.yb4{bottom:1042.710000px;}
.yb{bottom:1045.230000px;}
.y7d{bottom:1047.750000px;}
.y46{bottom:1055.670000px;}
.y79{bottom:1067.010000px;}
.yb3{bottom:1071.510000px;}
.y45{bottom:1074.210000px;}
.ya{bottom:1081.950000px;}
.y7b{bottom:1086.090000px;}
.y44{bottom:1092.570000px;}
.yb2{bottom:1100.490000px;}
.y75{bottom:1105.350000px;}
.y7{bottom:1110.930000px;}
.y43{bottom:1111.110000px;}
.y2{bottom:1118.130000px;}
.yb1{bottom:1119.030000px;}
.y78{bottom:1124.610000px;}
.y42{bottom:1129.470000px;}
.y74{bottom:1143.870000px;}
.yb0{bottom:1147.830000px;}
.y41{bottom:1148.010000px;}
.y40{bottom:1166.400000px;}
.y1{bottom:1191.960000px;}
.y3f{bottom:1193.400000px;}
.h8{height:18.360000px;}
.hc{height:18.396000px;}
.hb{height:18.540000px;}
.h6{height:30.077578px;}
.hd{height:36.900000px;}
.hf{height:36.936000px;}
.h11{height:37.620000px;}
.h10{height:37.800000px;}
.ha{height:40.010625px;}
.h4{height:53.645625px;}
.h2{height:53.709961px;}
.h5{height:55.130625px;}
.h7{height:65.884219px;}
.h3{height:73.836000px;}
.h9{height:76.201172px;}
.he{height:187.590000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:17.496000px;}
.wc{width:109.656000px;}
.wa{width:116.136000px;}
.w9{width:131.580000px;}
.wd{width:146.376000px;}
.w11{width:151.560000px;}
.w14{width:171.750000px;}
.w13{width:195.375000px;}
.w12{width:197.670000px;}
.w6{width:201.270000px;}
.wb{width:211.890000px;}
.wf{width:223.050000px;}
.w8{width:232.275000px;}
.we{width:233.130000px;}
.w10{width:260.895000px;}
.w7{width:283.350000px;}
.w3{width:364.605000px;}
.w4{width:366.735000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x27{left:13.140000px;}
.x22{left:16.920000px;}
.x28{left:19.440000px;}
.x25{left:22.140000px;}
.x6{left:23.220000px;}
.x20{left:25.200000px;}
.x39{left:30.285000px;}
.x34{left:41.610000px;}
.x1e{left:46.260000px;}
.x15{left:48.780000px;}
.x23{left:50.400000px;}
.x26{left:54.000000px;}
.x24{left:58.500000px;}
.x17{left:59.985000px;}
.x32{left:66.645000px;}
.x2c{left:74.160000px;}
.x37{left:78.690000px;}
.x2{left:81.000000px;}
.x36{left:82.485000px;}
.x38{left:84.285000px;}
.x12{left:87.516000px;}
.x8{left:90.575987px;}
.xc{left:95.255987px;}
.x19{left:97.065000px;}
.x4{left:102.420000px;}
.x2f{left:107.100000px;}
.x2d{left:111.285000px;}
.x2e{left:115.785000px;}
.x5{left:119.880000px;}
.x18{left:132.840000px;}
.x1a{left:137.340000px;}
.x11{left:140.795987px;}
.x30{left:180.569987px;}
.x1b{left:185.789987px;}
.x9{left:207.389987px;}
.x1c{left:219.630000px;}
.xe{left:234.209987px;}
.x31{left:239.610000px;}
.x29{left:255.629987px;}
.x14{left:289.515000px;}
.x2a{left:321.195000px;}
.x1d{left:336.675000px;}
.xb{left:343.514987px;}
.xf{left:381.494987px;}
.xd{left:421.994987px;}
.x33{left:438.015000px;}
.x3{left:445.605000px;}
.xa{left:446.684987px;}
.x2b{left:544.965000px;}
.x1f{left:549.285000px;}
.x16{left:573.585000px;}
.x35{left:634.110000px;}
.x21{left:659.670000px;}
.x10{left:785.309987px;}
.x7{left:794.850000px;}
.x1{left:812.339987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls2{letter-spacing:-0.688000pt;}
.ls12{letter-spacing:-0.481067pt;}
.ls3{letter-spacing:-0.297067pt;}
.ls7{letter-spacing:-0.230400pt;}
.ls5{letter-spacing:-0.148267pt;}
.lsd{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:-0.025600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.008960pt;}
.ls0{letter-spacing:0.087040pt;}
.ls6{letter-spacing:0.158933pt;}
.lse{letter-spacing:0.163733pt;}
.lsf{letter-spacing:0.173867pt;}
.ls13{letter-spacing:0.245867pt;}
.ls11{letter-spacing:0.312533pt;}
.ls8{letter-spacing:0.353280pt;}
.ls10{letter-spacing:6.743040pt;}
.lsb{letter-spacing:23.449600pt;}
.lsa{letter-spacing:31.312640pt;}
.lsc{letter-spacing:38.103040pt;}
.ws9{word-spacing:-12.702933pt;}
.wsb{word-spacing:-12.636267pt;}
.ws8{word-spacing:-12.564267pt;}
.ws7{word-spacing:-12.554133pt;}
.ws3{word-spacing:-12.549333pt;}
.ws2{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.359680pt;}
.ws1{word-spacing:-12.093333pt;}
.wsa{word-spacing:-11.909333pt;}
.ws0{word-spacing:-11.702400pt;}
.ws4{word-spacing:-8.166400pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-9.861547pt;}
._0{margin-left:-1.126400pt;}
._2{width:1.096533pt;}
._6{width:2.170027pt;}
._7{width:3.242240pt;}
._8{width:4.586240pt;}
._d{width:5.624320pt;}
._a{width:6.565120pt;}
._9{width:7.772160pt;}
._b{width:9.574400pt;}
._13{width:11.320320pt;}
._12{width:13.460480pt;}
._e{width:14.361600pt;}
._f{width:16.112640pt;}
._c{width:17.064960pt;}
._4{width:18.016640pt;}
._3{width:19.056640pt;}
._11{width:19.993600pt;}
._10{width:20.894720pt;}
._1{width:22.276267pt;}
._16{width:23.219627pt;}
._17{width:24.257920pt;}
._14{width:34.524160pt;}
._15{width:35.481600pt;}
._18{width:160.966827pt;}
.fs2{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.040000pt;}
.y5a{bottom:3.066667pt;}
.y77{bottom:3.680000pt;}
.y68{bottom:19.360000pt;}
.y5{bottom:19.520000pt;}
.y7a{bottom:20.000000pt;}
.y76{bottom:20.160000pt;}
.y4{bottom:35.866667pt;}
.y9{bottom:49.280000pt;}
.y8{bottom:51.840000pt;}
.y3{bottom:52.346667pt;}
.yaf{bottom:77.120000pt;}
.y3e{bottom:78.080000pt;}
.ye1{bottom:78.240000pt;}
.y73{bottom:84.800000pt;}
.yae{bottom:93.600000pt;}
.y3d{bottom:94.400000pt;}
.ye0{bottom:94.720000pt;}
.y72{bottom:101.920000pt;}
.y3c{bottom:110.880000pt;}
.ydf{bottom:111.200000pt;}
.y71{bottom:118.880000pt;}
.yad{bottom:119.200000pt;}
.y3b{bottom:127.360000pt;}
.yde{bottom:127.520000pt;}
.yac{bottom:135.680000pt;}
.y70{bottom:136.000000pt;}
.y3a{bottom:143.680000pt;}
.ydd{bottom:144.000000pt;}
.y6f{bottom:153.120000pt;}
.y65{bottom:153.480000pt;}
.y39{bottom:160.160000pt;}
.ydc{bottom:160.320000pt;}
.yab{bottom:161.440000pt;}
.y6e{bottom:173.280000pt;}
.y38{bottom:176.480000pt;}
.ydb{bottom:176.800000pt;}
.yaa{bottom:177.920000pt;}
.y6d{bottom:189.626667pt;}
.y37{bottom:192.986667pt;}
.yda{bottom:193.146667pt;}
.ya9{bottom:194.266667pt;}
.y6c{bottom:203.706667pt;}
.y36{bottom:209.306667pt;}
.yd9{bottom:209.626667pt;}
.ya8{bottom:210.746667pt;}
.y35{bottom:225.786667pt;}
.yd8{bottom:226.106667pt;}
.ya7{bottom:227.226667pt;}
.y6b{bottom:237.146667pt;}
.y34{bottom:242.266667pt;}
.yd7{bottom:242.426667pt;}
.ya6{bottom:243.546667pt;}
.y33{bottom:258.586667pt;}
.yd6{bottom:258.906667pt;}
.ya5{bottom:260.026667pt;}
.y64{bottom:270.746667pt;}
.y32{bottom:275.066667pt;}
.yd5{bottom:275.226667pt;}
.ya4{bottom:276.346667pt;}
.y31{bottom:291.386667pt;}
.yd4{bottom:291.706667pt;}
.ya3{bottom:292.826667pt;}
.y6a{bottom:304.186667pt;}
.y30{bottom:307.866667pt;}
.yd3{bottom:308.186667pt;}
.ya2{bottom:309.146667pt;}
.y2f{bottom:324.346667pt;}
.yd2{bottom:324.506667pt;}
.ya1{bottom:325.626667pt;}
.y69{bottom:337.626667pt;}
.y2e{bottom:340.666667pt;}
.yd1{bottom:340.986667pt;}
.ya0{bottom:342.106667pt;}
.y2d{bottom:357.146667pt;}
.yd0{bottom:357.306667pt;}
.y9f{bottom:358.426667pt;}
.y67{bottom:371.226667pt;}
.y2c{bottom:373.466667pt;}
.ycf{bottom:373.786667pt;}
.y9e{bottom:374.906667pt;}
.y2b{bottom:389.946667pt;}
.yce{bottom:390.106667pt;}
.y9d{bottom:391.226667pt;}
.y66{bottom:404.706667pt;}
.y2a{bottom:406.306667pt;}
.ycd{bottom:406.626667pt;}
.y9c{bottom:407.746667pt;}
.y29{bottom:422.786667pt;}
.ycc{bottom:423.106667pt;}
.y9b{bottom:424.226667pt;}
.y63{bottom:438.146667pt;}
.y28{bottom:439.266667pt;}
.ycb{bottom:439.426667pt;}
.y9a{bottom:440.546667pt;}
.yca{bottom:455.906667pt;}
.y99{bottom:457.026667pt;}
.y27{bottom:459.106667pt;}
.yc9{bottom:472.226667pt;}
.y98{bottom:473.346667pt;}
.y62{bottom:474.786667pt;}
.y26{bottom:475.426667pt;}
.yc8{bottom:488.706667pt;}
.y97{bottom:489.826667pt;}
.y61{bottom:491.106667pt;}
.y25{bottom:491.746667pt;}
.yc7{bottom:505.186667pt;}
.y96{bottom:506.146667pt;}
.y60{bottom:507.586667pt;}
.y24{bottom:508.226667pt;}
.yc6{bottom:521.506667pt;}
.y95{bottom:522.626667pt;}
.y5f{bottom:523.906667pt;}
.y23{bottom:524.546667pt;}
.yc5{bottom:537.986667pt;}
.y94{bottom:539.106667pt;}
.y5e{bottom:540.386667pt;}
.y22{bottom:541.026667pt;}
.yc4{bottom:554.306667pt;}
.y93{bottom:555.426667pt;}
.y5d{bottom:556.866667pt;}
.y21{bottom:557.506667pt;}
.y5c{bottom:570.786667pt;}
.y92{bottom:571.906667pt;}
.y20{bottom:573.826667pt;}
.yc3{bottom:587.106667pt;}
.y5b{bottom:587.906667pt;}
.y91{bottom:588.226667pt;}
.y1f{bottom:590.306667pt;}
.y90{bottom:604.706667pt;}
.y59{bottom:605.026667pt;}
.y1e{bottom:606.653333pt;}
.yc2{bottom:612.893333pt;}
.y8f{bottom:621.213333pt;}
.y58{bottom:622.173333pt;}
.y1d{bottom:623.133333pt;}
.y8e{bottom:637.533333pt;}
.yc1{bottom:638.653333pt;}
.y57{bottom:639.133333pt;}
.y1c{bottom:639.453333pt;}
.y8d{bottom:654.013333pt;}
.y1b{bottom:655.933333pt;}
.y56{bottom:659.293333pt;}
.yc0{bottom:664.413333pt;}
.y8c{bottom:670.333333pt;}
.y1a{bottom:672.413333pt;}
.y55{bottom:675.773333pt;}
.y8b{bottom:686.813333pt;}
.y19{bottom:688.733333pt;}
.ybf{bottom:690.173333pt;}
.y54{bottom:692.093333pt;}
.y8a{bottom:703.133333pt;}
.y18{bottom:705.213333pt;}
.ybe{bottom:706.653333pt;}
.y53{bottom:708.573333pt;}
.y89{bottom:719.613333pt;}
.y17{bottom:721.533333pt;}
.y52{bottom:724.893333pt;}
.ybd{bottom:732.253333pt;}
.y88{bottom:736.093333pt;}
.y16{bottom:738.013333pt;}
.y51{bottom:741.373333pt;}
.y87{bottom:752.413333pt;}
.y15{bottom:756.413333pt;}
.y50{bottom:757.853333pt;}
.ybc{bottom:758.013333pt;}
.y86{bottom:768.893333pt;}
.y14{bottom:772.893333pt;}
.y4f{bottom:774.173333pt;}
.ybb{bottom:774.493333pt;}
.y85{bottom:785.213333pt;}
.y13{bottom:789.213333pt;}
.y4e{bottom:790.653333pt;}
.yba{bottom:800.253333pt;}
.y84{bottom:801.693333pt;}
.y12{bottom:805.693333pt;}
.y4d{bottom:806.973333pt;}
.yb9{bottom:816.773333pt;}
.y83{bottom:818.213333pt;}
.y11{bottom:822.053333pt;}
.y4c{bottom:823.493333pt;}
.y82{bottom:834.533333pt;}
.y4b{bottom:839.813333pt;}
.y10{bottom:841.893333pt;}
.yb8{bottom:842.373333pt;}
.y81{bottom:851.013333pt;}
.yf{bottom:855.013333pt;}
.y4a{bottom:856.293333pt;}
.yb7{bottom:858.853333pt;}
.y80{bottom:867.333333pt;}
.ye{bottom:871.333333pt;}
.y49{bottom:872.773333pt;}
.y7f{bottom:883.813333pt;}
.yb6{bottom:884.613333pt;}
.yd{bottom:887.813333pt;}
.y48{bottom:889.093333pt;}
.y7e{bottom:900.133333pt;}
.yc{bottom:905.573333pt;}
.yb5{bottom:910.373333pt;}
.y7c{bottom:914.213333pt;}
.y47{bottom:921.893333pt;}
.yb4{bottom:926.853333pt;}
.yb{bottom:929.093333pt;}
.y7d{bottom:931.333333pt;}
.y46{bottom:938.373333pt;}
.y79{bottom:948.453333pt;}
.yb3{bottom:952.453333pt;}
.y45{bottom:954.853333pt;}
.ya{bottom:961.733333pt;}
.y7b{bottom:965.413333pt;}
.y44{bottom:971.173333pt;}
.yb2{bottom:978.213333pt;}
.y75{bottom:982.533333pt;}
.y7{bottom:987.493333pt;}
.y43{bottom:987.653333pt;}
.y2{bottom:993.893333pt;}
.yb1{bottom:994.693333pt;}
.y78{bottom:999.653333pt;}
.y42{bottom:1003.973333pt;}
.y74{bottom:1016.773333pt;}
.yb0{bottom:1020.293333pt;}
.y41{bottom:1020.453333pt;}
.y40{bottom:1036.800000pt;}
.y1{bottom:1059.520000pt;}
.y3f{bottom:1060.800000pt;}
.h8{height:16.320000pt;}
.hc{height:16.352000pt;}
.hb{height:16.480000pt;}
.h6{height:26.735625pt;}
.hd{height:32.800000pt;}
.hf{height:32.832000pt;}
.h11{height:33.440000pt;}
.h10{height:33.600000pt;}
.ha{height:35.565000pt;}
.h4{height:47.685000pt;}
.h2{height:47.742188pt;}
.h5{height:49.005000pt;}
.h7{height:58.563750pt;}
.h3{height:65.632000pt;}
.h9{height:67.734375pt;}
.he{height:166.746667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:15.552000pt;}
.wc{width:97.472000pt;}
.wa{width:103.232000pt;}
.w9{width:116.960000pt;}
.wd{width:130.112000pt;}
.w11{width:134.720000pt;}
.w14{width:152.666667pt;}
.w13{width:173.666667pt;}
.w12{width:175.706667pt;}
.w6{width:178.906667pt;}
.wb{width:188.346667pt;}
.wf{width:198.266667pt;}
.w8{width:206.466667pt;}
.we{width:207.226667pt;}
.w10{width:231.906667pt;}
.w7{width:251.866667pt;}
.w3{width:324.093333pt;}
.w4{width:325.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x27{left:11.680000pt;}
.x22{left:15.040000pt;}
.x28{left:17.280000pt;}
.x25{left:19.680000pt;}
.x6{left:20.640000pt;}
.x20{left:22.400000pt;}
.x39{left:26.920000pt;}
.x34{left:36.986667pt;}
.x1e{left:41.120000pt;}
.x15{left:43.360000pt;}
.x23{left:44.800000pt;}
.x26{left:48.000000pt;}
.x24{left:52.000000pt;}
.x17{left:53.320000pt;}
.x32{left:59.240000pt;}
.x2c{left:65.920000pt;}
.x37{left:69.946667pt;}
.x2{left:72.000000pt;}
.x36{left:73.320000pt;}
.x38{left:74.920000pt;}
.x12{left:77.792000pt;}
.x8{left:80.511988pt;}
.xc{left:84.671988pt;}
.x19{left:86.280000pt;}
.x4{left:91.040000pt;}
.x2f{left:95.200000pt;}
.x2d{left:98.920000pt;}
.x2e{left:102.920000pt;}
.x5{left:106.560000pt;}
.x18{left:118.080000pt;}
.x1a{left:122.080000pt;}
.x11{left:125.151988pt;}
.x30{left:160.506655pt;}
.x1b{left:165.146655pt;}
.x9{left:184.346655pt;}
.x1c{left:195.226667pt;}
.xe{left:208.186655pt;}
.x31{left:212.986667pt;}
.x29{left:227.226655pt;}
.x14{left:257.346667pt;}
.x2a{left:285.506667pt;}
.x1d{left:299.266667pt;}
.xb{left:305.346655pt;}
.xf{left:339.106655pt;}
.xd{left:375.106655pt;}
.x33{left:389.346667pt;}
.x3{left:396.093333pt;}
.xa{left:397.053322pt;}
.x2b{left:484.413333pt;}
.x1f{left:488.253333pt;}
.x16{left:509.853333pt;}
.x35{left:563.653333pt;}
.x21{left:586.373333pt;}
.x10{left:698.053322pt;}
.x7{left:706.533333pt;}
.x1{left:722.079988pt;}
}




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