
    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_ee017ef57829f9501653849c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_72b3b0da4a20b5a816ae9513.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_59ee9fc0ffb683f4ba58777e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f8b1661677bbe117ca059b99.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_408e053ba64d14a0094de867.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6c0504cacb5997c8aaa10343.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_d0dc76f2339eb50be70bfd48.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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);}
.v6{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.400000px;}
.v3{vertical-align:21.600000px;}
.v4{vertical-align:48.240000px;}
.v1{vertical-align:54.720000px;}
.v2{vertical-align:81.360000px;}
.ls5{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.056880px;}
.ls6{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.lse{letter-spacing:0.864000px;}
.lsc{letter-spacing:1.152000px;}
.lsf{letter-spacing:1.728000px;}
.lsd{letter-spacing:2.016000px;}
.ls7{letter-spacing:2.736000px;}
.lsa{letter-spacing:2.801520px;}
.ls9{letter-spacing:3.888000px;}
.ls3{letter-spacing:7.200000px;}
.ls14{letter-spacing:7.920000px;}
.ls10{letter-spacing:17.921520px;}
.ls8{letter-spacing:18.821520px;}
.lsb{letter-spacing:19.361520px;}
.ls0{letter-spacing:24.480000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.056000px;}
.wsb{word-spacing:-15.840000px;}
.wse{word-spacing:-11.303280px;}
.ws6{word-spacing:-0.144000px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.216000px;}
.ws7{word-spacing:0.432000px;}
.ws4{word-spacing:0.576000px;}
.ws9{word-spacing:4.536000px;}
.ws3{word-spacing:5.472000px;}
.wsc{word-spacing:8.627040px;}
.wsd{word-spacing:9.347040px;}
.ws8{word-spacing:12.227040px;}
._19{margin-left:-5.088000px;}
._11{margin-left:-3.960000px;}
._a{margin-left:-2.088000px;}
._1{margin-left:-1.008000px;}
._0{width:1.056000px;}
._8{width:2.544000px;}
._6{width:4.536000px;}
._7{width:5.832000px;}
._d{width:7.632000px;}
._4{width:8.712000px;}
._12{width:9.720000px;}
._f{width:10.728000px;}
._10{width:11.736000px;}
._15{width:13.032000px;}
._14{width:14.040000px;}
._5{width:15.120000px;}
._16{width:16.416000px;}
._1f{width:18.360000px;}
._e{width:19.944000px;}
._13{width:21.408000px;}
._1a{width:23.400000px;}
._b{width:24.480000px;}
._c{width:25.560000px;}
._18{width:26.736000px;}
._17{width:27.960000px;}
._3{width:29.232000px;}
._2{width:30.312000px;}
._9{width:31.392000px;}
._1b{width:35.208000px;}
._1d{width:36.720000px;}
._1c{width:38.664000px;}
._20{width:39.828000px;}
._29{width:41.172000px;}
._23{width:50.112000px;}
._25{width:51.168000px;}
._24{width:52.368000px;}
._21{width:53.640000px;}
._22{width:54.792000px;}
._2b{width:56.376000px;}
._28{width:57.456000px;}
._2a{width:130.104000px;}
._1e{width:165.816000px;}
._26{width:215.136000px;}
._27{width:216.288000px;}
._2c{width:310.968000px;}
._2d{width:312.264000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:51.120000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:3.960000px;}
.y6c{bottom:7.020000px;}
.y9a{bottom:7.065000px;}
.y75{bottom:7.200000px;}
.y87{bottom:7.245000px;}
.y6d{bottom:30.780000px;}
.ya6{bottom:30.960000px;}
.y30{bottom:53.820000px;}
.ya9{bottom:54.720000px;}
.ya5{bottom:54.750000px;}
.y2{bottom:57.780000px;}
.ya8{bottom:78.480000px;}
.y1{bottom:78.516000px;}
.yd5{bottom:116.676000px;}
.y2c{bottom:118.836000px;}
.y8e{bottom:127.476000px;}
.y51{bottom:130.176000px;}
.y6a{bottom:131.076000px;}
.yd4{bottom:140.436000px;}
.y2b{bottom:149.796000px;}
.y8d{bottom:152.130000px;}
.y50{bottom:161.130000px;}
.yae{bottom:161.310000px;}
.y69{bottom:162.210000px;}
.yd3{bottom:164.370000px;}
.y2a{bottom:173.730000px;}
.y8c{bottom:176.610000px;}
.yd2{bottom:188.130000px;}
.y4f{bottom:192.270000px;}
.y68{bottom:193.170000px;}
.y29{bottom:197.490000px;}
.y8b{bottom:201.090000px;}
.yd1{bottom:211.890000px;}
.y28{bottom:221.250000px;}
.y4e{bottom:223.230000px;}
.yad{bottom:223.410000px;}
.y67{bottom:224.310000px;}
.y8a{bottom:225.750000px;}
.yd0{bottom:235.650000px;}
.y27{bottom:245.010000px;}
.y4d{bottom:254.370000px;}
.y66{bottom:255.270000px;}
.ycf{bottom:259.590000px;}
.y89{bottom:264.630000px;}
.y26{bottom:268.950000px;}
.yce{bottom:283.350000px;}
.y4c{bottom:285.330000px;}
.yac{bottom:285.510000px;}
.y65{bottom:286.590000px;}
.yf6{bottom:290.550000px;}
.y25{bottom:292.710000px;}
.ycd{bottom:307.110000px;}
.yf5{bottom:314.310000px;}
.y64{bottom:314.670000px;}
.y88{bottom:316.290000px;}
.y24{bottom:316.470000px;}
.y63{bottom:318.270000px;}
.ycc{bottom:330.870000px;}
.y86{bottom:333.750000px;}
.yf4{bottom:338.295000px;}
.y23{bottom:340.275000px;}
.y62{bottom:346.395000px;}
.y4b{bottom:347.475000px;}
.yab{bottom:347.655000px;}
.y61{bottom:349.995000px;}
.ycb{bottom:354.855000px;}
.y85{bottom:358.455000px;}
.yf3{bottom:362.055000px;}
.y22{bottom:364.035000px;}
.yaa{bottom:365.115000px;}
.y4a{bottom:378.615000px;}
.y60{bottom:381.315000px;}
.y84{bottom:382.935000px;}
.yf2{bottom:385.815000px;}
.y21{bottom:387.975000px;}
.yca{bottom:402.375000px;}
.y83{bottom:407.595000px;}
.y49{bottom:409.575000px;}
.y20{bottom:411.735000px;}
.y5f{bottom:412.455000px;}
.yc9{bottom:426.135000px;}
.y82{bottom:432.075000px;}
.yf1{bottom:433.515000px;}
.y1f{bottom:435.495000px;}
.y48{bottom:440.715000px;}
.y5e{bottom:443.415000px;}
.yc8{bottom:450.075000px;}
.y81{bottom:456.555000px;}
.yf0{bottom:457.275000px;}
.y1e{bottom:459.255000px;}
.ya7{bottom:461.055000px;}
.y47{bottom:471.675000px;}
.yc7{bottom:473.835000px;}
.y5d{bottom:474.555000px;}
.yef{bottom:481.035000px;}
.y80{bottom:481.215000px;}
.y1d{bottom:483.195000px;}
.yc6{bottom:497.595000px;}
.y46{bottom:502.815000px;}
.yee{bottom:504.795000px;}
.y5c{bottom:505.515000px;}
.y7f{bottom:505.695000px;}
.y1c{bottom:506.955000px;}
.yc5{bottom:521.355000px;}
.yed{bottom:528.735000px;}
.y7e{bottom:530.355000px;}
.y1b{bottom:530.715000px;}
.y45{bottom:533.775000px;}
.y5b{bottom:536.655000px;}
.yc4{bottom:545.295000px;}
.yec{bottom:552.495000px;}
.y1a{bottom:554.475000px;}
.y7d{bottom:554.835000px;}
.ya4{bottom:556.995000px;}
.y44{bottom:564.915000px;}
.y5a{bottom:567.615000px;}
.yc3{bottom:569.055000px;}
.yeb{bottom:576.255000px;}
.y19{bottom:578.415000px;}
.y7c{bottom:579.315000px;}
.yc2{bottom:592.815000px;}
.y43{bottom:595.875000px;}
.y59{bottom:598.755000px;}
.yea{bottom:600.015000px;}
.y18{bottom:602.175000px;}
.y7b{bottom:604.005000px;}
.yc1{bottom:616.605000px;}
.ye9{bottom:623.985000px;}
.y17{bottom:625.965000px;}
.y42{bottom:627.045000px;}
.y7a{bottom:628.485000px;}
.y58{bottom:629.745000px;}
.yc0{bottom:640.545000px;}
.ya3{bottom:643.605000px;}
.ye8{bottom:647.745000px;}
.y16{bottom:649.725000px;}
.y79{bottom:653.145000px;}
.y41{bottom:658.005000px;}
.y57{bottom:660.885000px;}
.ybf{bottom:664.305000px;}
.ye7{bottom:671.505000px;}
.ya2{bottom:674.565000px;}
.y78{bottom:677.625000px;}
.y15{bottom:680.865000px;}
.ybe{bottom:688.065000px;}
.y40{bottom:689.145000px;}
.y56{bottom:692.205000px;}
.ye6{bottom:695.265000px;}
.y77{bottom:702.105000px;}
.ya1{bottom:705.525000px;}
.y14{bottom:711.825000px;}
.ye5{bottom:719.025000px;}
.y3f{bottom:720.105000px;}
.ya0{bottom:723.165000px;}
.y55{bottom:723.705000px;}
.y76{bottom:726.765000px;}
.ybd{bottom:735.585000px;}
.y13{bottom:742.965000px;}
.y9f{bottom:747.645000px;}
.y3e{bottom:751.245000px;}
.y54{bottom:755.385000px;}
.ybc{bottom:759.525000px;}
.ye4{bottom:766.725000px;}
.y9e{bottom:772.125000px;}
.y12{bottom:773.925000px;}
.y74{bottom:775.905000px;}
.y3d{bottom:782.205000px;}
.ybb{bottom:783.285000px;}
.y53{bottom:787.065000px;}
.ye3{bottom:790.485000px;}
.y9d{bottom:796.785000px;}
.y52{bottom:799.125000px;}
.y11{bottom:805.065000px;}
.yba{bottom:807.045000px;}
.y3c{bottom:813.345000px;}
.ye2{bottom:814.245000px;}
.y73{bottom:814.785000px;}
.y9c{bottom:821.265000px;}
.yb9{bottom:830.805000px;}
.y10{bottom:836.025000px;}
.ye1{bottom:838.185000px;}
.y3b{bottom:844.305000px;}
.y72{bottom:845.745000px;}
.y9b{bottom:845.925000px;}
.yb8{bottom:854.745000px;}
.ye0{bottom:861.945000px;}
.yf{bottom:867.165000px;}
.y99{bottom:870.405000px;}
.y3a{bottom:875.490000px;}
.y71{bottom:876.930000px;}
.yb7{bottom:878.550000px;}
.ydf{bottom:885.750000px;}
.y70{bottom:894.390000px;}
.y98{bottom:894.930000px;}
.ye{bottom:898.170000px;}
.yb6{bottom:902.310000px;}
.y39{bottom:906.450000px;}
.yde{bottom:909.510000px;}
.y6f{bottom:918.870000px;}
.y97{bottom:919.590000px;}
.yb5{bottom:926.070000px;}
.yd{bottom:929.310000px;}
.ydd{bottom:933.450000px;}
.y38{bottom:937.590000px;}
.y6e{bottom:943.530000px;}
.y96{bottom:944.070000px;}
.yb4{bottom:950.010000px;}
.ydc{bottom:957.210000px;}
.yc{bottom:960.270000px;}
.y6b{bottom:968.010000px;}
.y37{bottom:968.550000px;}
.y95{bottom:968.730000px;}
.yb3{bottom:973.770000px;}
.ydb{bottom:980.970000px;}
.yb{bottom:991.410000px;}
.y94{bottom:993.210000px;}
.yb2{bottom:997.530000px;}
.y36{bottom:999.690000px;}
.yda{bottom:1004.730000px;}
.y93{bottom:1017.870000px;}
.yb1{bottom:1021.290000px;}
.ya{bottom:1022.370000px;}
.yd9{bottom:1028.670000px;}
.y35{bottom:1030.650000px;}
.y92{bottom:1042.350000px;}
.yb0{bottom:1045.230000px;}
.yd8{bottom:1052.430000px;}
.y9{bottom:1053.510000px;}
.y34{bottom:1061.790000px;}
.y91{bottom:1066.830000px;}
.yaf{bottom:1068.990000px;}
.yd7{bottom:1076.190000px;}
.y8{bottom:1084.470000px;}
.y90{bottom:1091.490000px;}
.y33{bottom:1092.750000px;}
.yd6{bottom:1099.950000px;}
.y7{bottom:1108.230000px;}
.y8f{bottom:1115.970000px;}
.y32{bottom:1123.890000px;}
.y6{bottom:1132.170000px;}
.y2f{bottom:1144.620000px;}
.y5{bottom:1155.960000px;}
.y2e{bottom:1168.380000px;}
.y4{bottom:1179.720000px;}
.y2d{bottom:1192.140000px;}
.y3{bottom:1203.480000px;}
.h6{height:20.736000px;}
.hc{height:23.760000px;}
.hf{height:23.796000px;}
.hd{height:23.940000px;}
.he{height:23.976000px;}
.hb{height:47.520000px;}
.h2{height:50.273438px;}
.h3{height:50.800781px;}
.h4{height:54.773438px;}
.h5{height:58.429688px;}
.h9{height:60.679688px;}
.h10{height:71.496000px;}
.ha{height:75.079688px;}
.h11{height:95.220000px;}
.h8{height:108.919687px;}
.h7{height:124.442578px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:27.180000px;}
.w12{width:30.420000px;}
.wc{width:63.900000px;}
.wf{width:69.660000px;}
.w14{width:80.820000px;}
.w13{width:83.376000px;}
.w11{width:84.600000px;}
.w7{width:93.600000px;}
.w8{width:101.016000px;}
.w4{width:107.640000px;}
.w9{width:113.040000px;}
.w6{width:120.816000px;}
.w5{width:135.756000px;}
.w15{width:183.810000px;}
.w10{width:208.830000px;}
.wb{width:213.690000px;}
.we{width:232.410000px;}
.wd{width:372.135000px;}
.wa{width:396.435000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x2{left:108.035987px;}
.x11{left:157.709987px;}
.x28{left:162.029987px;}
.x12{left:165.629987px;}
.x13{left:168.149987px;}
.x9{left:170.849987px;}
.xe{left:179.129987px;}
.xf{left:183.989987px;}
.x1c{left:214.769987px;}
.x16{left:217.110000px;}
.x10{left:218.189987px;}
.x22{left:242.129987px;}
.x1f{left:243.929987px;}
.x14{left:254.369987px;}
.xb{left:286.454987px;}
.xc{left:308.234987px;}
.x23{left:318.315000px;}
.x3{left:332.354987px;}
.xd{left:346.034987px;}
.x17{left:353.775000px;}
.xa{left:359.174987px;}
.x1b{left:365.474987px;}
.x24{left:403.815000px;}
.x1{left:432.974987px;}
.x25{left:434.955000px;}
.x8{left:446.474987px;}
.x18{left:475.305000px;}
.x20{left:481.605000px;}
.x1d{left:505.905000px;}
.x26{left:519.045000px;}
.x7{left:545.504987px;}
.x19{left:569.625000px;}
.x6{left:576.464987px;}
.x5{left:592.484987px;}
.x27{left:600.585000px;}
.x4{left:618.944987px;}
.x1a{left:671.370000px;}
.x21{left:714.750000px;}
.x1e{left:720.510000px;}
@media print{
.v6{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.800000pt;}
.v3{vertical-align:19.200000pt;}
.v4{vertical-align:42.880000pt;}
.v1{vertical-align:48.640000pt;}
.v2{vertical-align:72.320000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.050560pt;}
.ls6{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.768000pt;}
.lsc{letter-spacing:1.024000pt;}
.lsf{letter-spacing:1.536000pt;}
.lsd{letter-spacing:1.792000pt;}
.ls7{letter-spacing:2.432000pt;}
.lsa{letter-spacing:2.490240pt;}
.ls9{letter-spacing:3.456000pt;}
.ls3{letter-spacing:6.400000pt;}
.ls14{letter-spacing:7.040000pt;}
.ls10{letter-spacing:15.930240pt;}
.ls8{letter-spacing:16.730240pt;}
.lsb{letter-spacing:17.210240pt;}
.ls0{letter-spacing:21.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.272000pt;}
.wsb{word-spacing:-14.080000pt;}
.wse{word-spacing:-10.047360pt;}
.ws6{word-spacing:-0.128000pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.192000pt;}
.ws7{word-spacing:0.384000pt;}
.ws4{word-spacing:0.512000pt;}
.ws9{word-spacing:4.032000pt;}
.ws3{word-spacing:4.864000pt;}
.wsc{word-spacing:7.668480pt;}
.wsd{word-spacing:8.308480pt;}
.ws8{word-spacing:10.868480pt;}
._19{margin-left:-4.522667pt;}
._11{margin-left:-3.520000pt;}
._a{margin-left:-1.856000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.938667pt;}
._8{width:2.261333pt;}
._6{width:4.032000pt;}
._7{width:5.184000pt;}
._d{width:6.784000pt;}
._4{width:7.744000pt;}
._12{width:8.640000pt;}
._f{width:9.536000pt;}
._10{width:10.432000pt;}
._15{width:11.584000pt;}
._14{width:12.480000pt;}
._5{width:13.440000pt;}
._16{width:14.592000pt;}
._1f{width:16.320000pt;}
._e{width:17.728000pt;}
._13{width:19.029333pt;}
._1a{width:20.800000pt;}
._b{width:21.760000pt;}
._c{width:22.720000pt;}
._18{width:23.765333pt;}
._17{width:24.853333pt;}
._3{width:25.984000pt;}
._2{width:26.944000pt;}
._9{width:27.904000pt;}
._1b{width:31.296000pt;}
._1d{width:32.640000pt;}
._1c{width:34.368000pt;}
._20{width:35.402667pt;}
._29{width:36.597333pt;}
._23{width:44.544000pt;}
._25{width:45.482667pt;}
._24{width:46.549333pt;}
._21{width:47.680000pt;}
._22{width:48.704000pt;}
._2b{width:50.112000pt;}
._28{width:51.072000pt;}
._2a{width:115.648000pt;}
._1e{width:147.392000pt;}
._26{width:191.232000pt;}
._27{width:192.256000pt;}
._2c{width:276.416000pt;}
._2d{width:277.568000pt;}
.fs1{font-size:45.440000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:3.520000pt;}
.y6c{bottom:6.240000pt;}
.y9a{bottom:6.280000pt;}
.y75{bottom:6.400000pt;}
.y87{bottom:6.440000pt;}
.y6d{bottom:27.360000pt;}
.ya6{bottom:27.520000pt;}
.y30{bottom:47.840000pt;}
.ya9{bottom:48.640000pt;}
.ya5{bottom:48.666667pt;}
.y2{bottom:51.360000pt;}
.ya8{bottom:69.760000pt;}
.y1{bottom:69.792000pt;}
.yd5{bottom:103.712000pt;}
.y2c{bottom:105.632000pt;}
.y8e{bottom:113.312000pt;}
.y51{bottom:115.712000pt;}
.y6a{bottom:116.512000pt;}
.yd4{bottom:124.832000pt;}
.y2b{bottom:133.152000pt;}
.y8d{bottom:135.226667pt;}
.y50{bottom:143.226667pt;}
.yae{bottom:143.386667pt;}
.y69{bottom:144.186667pt;}
.yd3{bottom:146.106667pt;}
.y2a{bottom:154.426667pt;}
.y8c{bottom:156.986667pt;}
.yd2{bottom:167.226667pt;}
.y4f{bottom:170.906667pt;}
.y68{bottom:171.706667pt;}
.y29{bottom:175.546667pt;}
.y8b{bottom:178.746667pt;}
.yd1{bottom:188.346667pt;}
.y28{bottom:196.666667pt;}
.y4e{bottom:198.426667pt;}
.yad{bottom:198.586667pt;}
.y67{bottom:199.386667pt;}
.y8a{bottom:200.666667pt;}
.yd0{bottom:209.466667pt;}
.y27{bottom:217.786667pt;}
.y4d{bottom:226.106667pt;}
.y66{bottom:226.906667pt;}
.ycf{bottom:230.746667pt;}
.y89{bottom:235.226667pt;}
.y26{bottom:239.066667pt;}
.yce{bottom:251.866667pt;}
.y4c{bottom:253.626667pt;}
.yac{bottom:253.786667pt;}
.y65{bottom:254.746667pt;}
.yf6{bottom:258.266667pt;}
.y25{bottom:260.186667pt;}
.ycd{bottom:272.986667pt;}
.yf5{bottom:279.386667pt;}
.y64{bottom:279.706667pt;}
.y88{bottom:281.146667pt;}
.y24{bottom:281.306667pt;}
.y63{bottom:282.906667pt;}
.ycc{bottom:294.106667pt;}
.y86{bottom:296.666667pt;}
.yf4{bottom:300.706667pt;}
.y23{bottom:302.466667pt;}
.y62{bottom:307.906667pt;}
.y4b{bottom:308.866667pt;}
.yab{bottom:309.026667pt;}
.y61{bottom:311.106667pt;}
.ycb{bottom:315.426667pt;}
.y85{bottom:318.626667pt;}
.yf3{bottom:321.826667pt;}
.y22{bottom:323.586667pt;}
.yaa{bottom:324.546667pt;}
.y4a{bottom:336.546667pt;}
.y60{bottom:338.946667pt;}
.y84{bottom:340.386667pt;}
.yf2{bottom:342.946667pt;}
.y21{bottom:344.866667pt;}
.yca{bottom:357.666667pt;}
.y83{bottom:362.306667pt;}
.y49{bottom:364.066667pt;}
.y20{bottom:365.986667pt;}
.y5f{bottom:366.626667pt;}
.yc9{bottom:378.786667pt;}
.y82{bottom:384.066667pt;}
.yf1{bottom:385.346667pt;}
.y1f{bottom:387.106667pt;}
.y48{bottom:391.746667pt;}
.y5e{bottom:394.146667pt;}
.yc8{bottom:400.066667pt;}
.y81{bottom:405.826667pt;}
.yf0{bottom:406.466667pt;}
.y1e{bottom:408.226667pt;}
.ya7{bottom:409.826667pt;}
.y47{bottom:419.266667pt;}
.yc7{bottom:421.186667pt;}
.y5d{bottom:421.826667pt;}
.yef{bottom:427.586667pt;}
.y80{bottom:427.746667pt;}
.y1d{bottom:429.506667pt;}
.yc6{bottom:442.306667pt;}
.y46{bottom:446.946667pt;}
.yee{bottom:448.706667pt;}
.y5c{bottom:449.346667pt;}
.y7f{bottom:449.506667pt;}
.y1c{bottom:450.626667pt;}
.yc5{bottom:463.426667pt;}
.yed{bottom:469.986667pt;}
.y7e{bottom:471.426667pt;}
.y1b{bottom:471.746667pt;}
.y45{bottom:474.466667pt;}
.y5b{bottom:477.026667pt;}
.yc4{bottom:484.706667pt;}
.yec{bottom:491.106667pt;}
.y1a{bottom:492.866667pt;}
.y7d{bottom:493.186667pt;}
.ya4{bottom:495.106667pt;}
.y44{bottom:502.146667pt;}
.y5a{bottom:504.546667pt;}
.yc3{bottom:505.826667pt;}
.yeb{bottom:512.226667pt;}
.y19{bottom:514.146667pt;}
.y7c{bottom:514.946667pt;}
.yc2{bottom:526.946667pt;}
.y43{bottom:529.666667pt;}
.y59{bottom:532.226667pt;}
.yea{bottom:533.346667pt;}
.y18{bottom:535.266667pt;}
.y7b{bottom:536.893333pt;}
.yc1{bottom:548.093333pt;}
.ye9{bottom:554.653333pt;}
.y17{bottom:556.413333pt;}
.y42{bottom:557.373333pt;}
.y7a{bottom:558.653333pt;}
.y58{bottom:559.773333pt;}
.yc0{bottom:569.373333pt;}
.ya3{bottom:572.093333pt;}
.ye8{bottom:575.773333pt;}
.y16{bottom:577.533333pt;}
.y79{bottom:580.573333pt;}
.y41{bottom:584.893333pt;}
.y57{bottom:587.453333pt;}
.ybf{bottom:590.493333pt;}
.ye7{bottom:596.893333pt;}
.ya2{bottom:599.613333pt;}
.y78{bottom:602.333333pt;}
.y15{bottom:605.213333pt;}
.ybe{bottom:611.613333pt;}
.y40{bottom:612.573333pt;}
.y56{bottom:615.293333pt;}
.ye6{bottom:618.013333pt;}
.y77{bottom:624.093333pt;}
.ya1{bottom:627.133333pt;}
.y14{bottom:632.733333pt;}
.ye5{bottom:639.133333pt;}
.y3f{bottom:640.093333pt;}
.ya0{bottom:642.813333pt;}
.y55{bottom:643.293333pt;}
.y76{bottom:646.013333pt;}
.ybd{bottom:653.853333pt;}
.y13{bottom:660.413333pt;}
.y9f{bottom:664.573333pt;}
.y3e{bottom:667.773333pt;}
.y54{bottom:671.453333pt;}
.ybc{bottom:675.133333pt;}
.ye4{bottom:681.533333pt;}
.y9e{bottom:686.333333pt;}
.y12{bottom:687.933333pt;}
.y74{bottom:689.693333pt;}
.y3d{bottom:695.293333pt;}
.ybb{bottom:696.253333pt;}
.y53{bottom:699.613333pt;}
.ye3{bottom:702.653333pt;}
.y9d{bottom:708.253333pt;}
.y52{bottom:710.333333pt;}
.y11{bottom:715.613333pt;}
.yba{bottom:717.373333pt;}
.y3c{bottom:722.973333pt;}
.ye2{bottom:723.773333pt;}
.y73{bottom:724.253333pt;}
.y9c{bottom:730.013333pt;}
.yb9{bottom:738.493333pt;}
.y10{bottom:743.133333pt;}
.ye1{bottom:745.053333pt;}
.y3b{bottom:750.493333pt;}
.y72{bottom:751.773333pt;}
.y9b{bottom:751.933333pt;}
.yb8{bottom:759.773333pt;}
.ye0{bottom:766.173333pt;}
.yf{bottom:770.813333pt;}
.y99{bottom:773.693333pt;}
.y3a{bottom:778.213333pt;}
.y71{bottom:779.493333pt;}
.yb7{bottom:780.933333pt;}
.ydf{bottom:787.333333pt;}
.y70{bottom:795.013333pt;}
.y98{bottom:795.493333pt;}
.ye{bottom:798.373333pt;}
.yb6{bottom:802.053333pt;}
.y39{bottom:805.733333pt;}
.yde{bottom:808.453333pt;}
.y6f{bottom:816.773333pt;}
.y97{bottom:817.413333pt;}
.yb5{bottom:823.173333pt;}
.yd{bottom:826.053333pt;}
.ydd{bottom:829.733333pt;}
.y38{bottom:833.413333pt;}
.y6e{bottom:838.693333pt;}
.y96{bottom:839.173333pt;}
.yb4{bottom:844.453333pt;}
.ydc{bottom:850.853333pt;}
.yc{bottom:853.573333pt;}
.y6b{bottom:860.453333pt;}
.y37{bottom:860.933333pt;}
.y95{bottom:861.093333pt;}
.yb3{bottom:865.573333pt;}
.ydb{bottom:871.973333pt;}
.yb{bottom:881.253333pt;}
.y94{bottom:882.853333pt;}
.yb2{bottom:886.693333pt;}
.y36{bottom:888.613333pt;}
.yda{bottom:893.093333pt;}
.y93{bottom:904.773333pt;}
.yb1{bottom:907.813333pt;}
.ya{bottom:908.773333pt;}
.yd9{bottom:914.373333pt;}
.y35{bottom:916.133333pt;}
.y92{bottom:926.533333pt;}
.yb0{bottom:929.093333pt;}
.yd8{bottom:935.493333pt;}
.y9{bottom:936.453333pt;}
.y34{bottom:943.813333pt;}
.y91{bottom:948.293333pt;}
.yaf{bottom:950.213333pt;}
.yd7{bottom:956.613333pt;}
.y8{bottom:963.973333pt;}
.y90{bottom:970.213333pt;}
.y33{bottom:971.333333pt;}
.yd6{bottom:977.733333pt;}
.y7{bottom:985.093333pt;}
.y8f{bottom:991.973333pt;}
.y32{bottom:999.013333pt;}
.y6{bottom:1006.373333pt;}
.y2f{bottom:1017.440000pt;}
.y5{bottom:1027.520000pt;}
.y2e{bottom:1038.560000pt;}
.y4{bottom:1048.640000pt;}
.y2d{bottom:1059.680000pt;}
.y3{bottom:1069.760000pt;}
.h6{height:18.432000pt;}
.hc{height:21.120000pt;}
.hf{height:21.152000pt;}
.hd{height:21.280000pt;}
.he{height:21.312000pt;}
.hb{height:42.240000pt;}
.h2{height:44.687500pt;}
.h3{height:45.156250pt;}
.h4{height:48.687500pt;}
.h5{height:51.937500pt;}
.h9{height:53.937500pt;}
.h10{height:63.552000pt;}
.ha{height:66.737500pt;}
.h11{height:84.640000pt;}
.h8{height:96.817500pt;}
.h7{height:110.615625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:24.160000pt;}
.w12{width:27.040000pt;}
.wc{width:56.800000pt;}
.wf{width:61.920000pt;}
.w14{width:71.840000pt;}
.w13{width:74.112000pt;}
.w11{width:75.200000pt;}
.w7{width:83.200000pt;}
.w8{width:89.792000pt;}
.w4{width:95.680000pt;}
.w9{width:100.480000pt;}
.w6{width:107.392000pt;}
.w5{width:120.672000pt;}
.w15{width:163.386667pt;}
.w10{width:185.626667pt;}
.wb{width:189.946667pt;}
.we{width:206.586667pt;}
.wd{width:330.786667pt;}
.wa{width:352.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x2{left:96.031988pt;}
.x11{left:140.186655pt;}
.x28{left:144.026655pt;}
.x12{left:147.226655pt;}
.x13{left:149.466655pt;}
.x9{left:151.866655pt;}
.xe{left:159.226655pt;}
.xf{left:163.546655pt;}
.x1c{left:190.906655pt;}
.x16{left:192.986667pt;}
.x10{left:193.946655pt;}
.x22{left:215.226655pt;}
.x1f{left:216.826655pt;}
.x14{left:226.106655pt;}
.xb{left:254.626655pt;}
.xc{left:273.986655pt;}
.x23{left:282.946667pt;}
.x3{left:295.426655pt;}
.xd{left:307.586655pt;}
.x17{left:314.466667pt;}
.xa{left:319.266655pt;}
.x1b{left:324.866655pt;}
.x24{left:358.946667pt;}
.x1{left:384.866655pt;}
.x25{left:386.626667pt;}
.x8{left:396.866655pt;}
.x18{left:422.493333pt;}
.x20{left:428.093333pt;}
.x1d{left:449.693333pt;}
.x26{left:461.373333pt;}
.x7{left:484.893322pt;}
.x19{left:506.333333pt;}
.x6{left:512.413322pt;}
.x5{left:526.653322pt;}
.x27{left:533.853333pt;}
.x4{left:550.173322pt;}
.x1a{left:596.773333pt;}
.x21{left:635.333333pt;}
.x1e{left:640.453333pt;}
}




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