
    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_d541fd76e8b2cff38ec6b610.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2662e542a29cbc91af77f49c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_881a6892c8c199a2a082b35b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c1f2f4646948edb720e3ad0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.201172;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_70734df0647dc60bf3c4e99f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.lsd{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.306600px;}
.ls14{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.511800px;}
.ls6{letter-spacing:0.540000px;}
.ls13{letter-spacing:11.466720px;}
.ls11{letter-spacing:41.850720px;}
.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;}
}
.ws3{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.580000px;}
.wse{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-2534.658480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-1011.611520px;}
._6{margin-left:-576.348480px;}
._8{margin-left:-8.942400px;}
._9{margin-left:-4.360560px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._c{width:2.271120px;}
._a{width:4.213440px;}
._b{width:5.554080px;}
._10{width:7.290720px;}
._11{width:8.657280px;}
._d{width:10.011600px;}
._12{width:11.201040px;}
._e{width:12.967920px;}
._15{width:16.085520px;}
._14{width:17.210880px;}
._13{width:18.286560px;}
._19{width:19.372320px;}
._2e{width:20.958720px;}
._2d{width:22.410000px;}
._2c{width:25.816320px;}
._30{width:26.842320px;}
._33{width:28.343520px;}
._2f{width:29.581200px;}
._1e{width:36.523440px;}
._32{width:43.146720px;}
._31{width:44.162640px;}
._1c{width:51.403680px;}
._2a{width:54.750240px;}
._21{width:56.114640px;}
._1f{width:58.266000px;}
._29{width:61.204320px;}
._1d{width:77.160240px;}
._1b{width:94.480560px;}
._24{width:106.432560px;}
._17{width:114.201360px;}
._16{width:115.287120px;}
._22{width:126.701280px;}
._23{width:127.826640px;}
._25{width:129.679200px;}
._18{width:141.402240px;}
._20{width:158.135040px;}
._27{width:178.752240px;}
._1a{width:186.570720px;}
._f{width:201.204000px;}
._2b{width:202.705920px;}
._28{width:254.707200px;}
._26{width:255.902400px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:5.760000px;}
.yae{bottom:5.790000px;}
.yb0{bottom:5.940000px;}
.ya8{bottom:25.560000px;}
.yad{bottom:25.590000px;}
.yac{bottom:25.740000px;}
.ya4{bottom:25.785000px;}
.ya7{bottom:45.360000px;}
.yaa{bottom:45.540000px;}
.y7{bottom:59.400000px;}
.yb4{bottom:65.160000px;}
.yb2{bottom:65.370000px;}
.y8c{bottom:87.840000px;}
.ye2{bottom:94.140000px;}
.yf3{bottom:95.040000px;}
.y6a{bottom:105.840000px;}
.yaf{bottom:107.460000px;}
.y8b{bottom:107.640000px;}
.y33{bottom:113.400000px;}
.ye1{bottom:114.120000px;}
.yf2{bottom:114.840000px;}
.y69{bottom:125.640000px;}
.y8a{bottom:127.440000px;}
.y32{bottom:133.200000px;}
.ye0{bottom:133.920000px;}
.yf1{bottom:134.640000px;}
.y68{bottom:145.440000px;}
.y89{bottom:147.240000px;}
.y31{bottom:153.030000px;}
.ydf{bottom:153.750000px;}
.yf0{bottom:154.470000px;}
.y67{bottom:165.270000px;}
.y88{bottom:167.250000px;}
.y30{bottom:172.830000px;}
.yde{bottom:173.550000px;}
.yef{bottom:174.270000px;}
.y66{bottom:185.250000px;}
.yab{bottom:186.870000px;}
.y87{bottom:187.050000px;}
.y2f{bottom:192.630000px;}
.ydd{bottom:193.350000px;}
.yee{bottom:194.250000px;}
.y65{bottom:205.050000px;}
.y86{bottom:206.850000px;}
.y2e{bottom:212.610000px;}
.ydc{bottom:213.330000px;}
.yed{bottom:214.050000px;}
.y64{bottom:224.850000px;}
.y85{bottom:226.650000px;}
.y2d{bottom:232.410000px;}
.ydb{bottom:233.130000px;}
.yec{bottom:233.850000px;}
.y63{bottom:244.650000px;}
.y84{bottom:246.450000px;}
.y2c{bottom:252.210000px;}
.yda{bottom:252.930000px;}
.yeb{bottom:253.650000px;}
.y62{bottom:264.450000px;}
.ya9{bottom:266.250000px;}
.y83{bottom:266.430000px;}
.y2b{bottom:272.010000px;}
.yd9{bottom:272.730000px;}
.yea{bottom:273.450000px;}
.y61{bottom:284.430000px;}
.y2a{bottom:291.810000px;}
.yd8{bottom:292.530000px;}
.ye9{bottom:293.430000px;}
.y82{bottom:295.230000px;}
.y60{bottom:304.230000px;}
.y29{bottom:311.790000px;}
.yd7{bottom:312.510000px;}
.ye8{bottom:313.230000px;}
.y81{bottom:315.030000px;}
.y5f{bottom:324.030000px;}
.ya6{bottom:325.830000px;}
.y28{bottom:331.590000px;}
.yd6{bottom:332.310000px;}
.ye7{bottom:333.030000px;}
.y80{bottom:334.830000px;}
.y5e{bottom:343.830000px;}
.y27{bottom:351.390000px;}
.yd5{bottom:352.110000px;}
.ye6{bottom:352.830000px;}
.y7f{bottom:354.630000px;}
.y5d{bottom:363.630000px;}
.y26{bottom:371.190000px;}
.yd4{bottom:371.910000px;}
.ye5{bottom:372.630000px;}
.y7e{bottom:374.610000px;}
.y5c{bottom:383.610000px;}
.ya3{bottom:385.950000px;}
.y25{bottom:390.990000px;}
.yd3{bottom:391.710000px;}
.ye4{bottom:392.610000px;}
.y7d{bottom:394.410000px;}
.y5b{bottom:403.455000px;}
.y24{bottom:411.015000px;}
.yd2{bottom:411.735000px;}
.ye3{bottom:412.455000px;}
.y7c{bottom:414.255000px;}
.y5a{bottom:423.255000px;}
.y23{bottom:430.815000px;}
.yd1{bottom:431.535000px;}
.ya2{bottom:432.255000px;}
.y7b{bottom:434.055000px;}
.y59{bottom:443.055000px;}
.y22{bottom:450.615000px;}
.yd0{bottom:451.335000px;}
.ya1{bottom:452.055000px;}
.y7a{bottom:453.855000px;}
.y58{bottom:462.855000px;}
.y21{bottom:470.415000px;}
.ycf{bottom:471.135000px;}
.ya0{bottom:471.855000px;}
.y79{bottom:473.835000px;}
.y57{bottom:482.835000px;}
.y20{bottom:490.215000px;}
.yce{bottom:490.935000px;}
.y9f{bottom:491.835000px;}
.y78{bottom:493.635000px;}
.y56{bottom:502.635000px;}
.y1f{bottom:510.195000px;}
.ycd{bottom:510.915000px;}
.y9e{bottom:511.635000px;}
.y77{bottom:513.435000px;}
.y55{bottom:522.435000px;}
.y1e{bottom:529.995000px;}
.ycc{bottom:530.715000px;}
.y9d{bottom:531.435000px;}
.y76{bottom:533.235000px;}
.y54{bottom:542.235000px;}
.ycb{bottom:550.515000px;}
.y9c{bottom:551.235000px;}
.y1d{bottom:551.955000px;}
.y75{bottom:553.035000px;}
.y53{bottom:562.035000px;}
.yca{bottom:570.315000px;}
.y9b{bottom:571.035000px;}
.y1c{bottom:571.935000px;}
.y74{bottom:573.015000px;}
.y52{bottom:582.015000px;}
.yc9{bottom:590.115000px;}
.y9a{bottom:591.015000px;}
.y1b{bottom:600.735000px;}
.y51{bottom:601.815000px;}
.yc8{bottom:610.095000px;}
.y99{bottom:610.815000px;}
.y1a{bottom:620.535000px;}
.y50{bottom:621.615000px;}
.yc7{bottom:629.895000px;}
.y98{bottom:630.615000px;}
.y19{bottom:640.335000px;}
.y4f{bottom:641.415000px;}
.yc6{bottom:649.725000px;}
.y97{bottom:650.445000px;}
.y18{bottom:660.165000px;}
.y4e{bottom:661.245000px;}
.yc5{bottom:669.525000px;}
.y96{bottom:670.245000px;}
.y17{bottom:680.145000px;}
.y4d{bottom:681.225000px;}
.yc4{bottom:689.325000px;}
.y95{bottom:690.225000px;}
.y16{bottom:699.945000px;}
.y4c{bottom:701.025000px;}
.yc3{bottom:709.305000px;}
.y94{bottom:710.025000px;}
.y15{bottom:719.745000px;}
.y4b{bottom:720.825000px;}
.yc2{bottom:729.105000px;}
.y93{bottom:729.825000px;}
.y14{bottom:739.545000px;}
.y4a{bottom:740.625000px;}
.yc1{bottom:748.905000px;}
.y92{bottom:749.625000px;}
.y13{bottom:759.345000px;}
.y49{bottom:760.425000px;}
.yc0{bottom:768.705000px;}
.y91{bottom:769.425000px;}
.y12{bottom:779.325000px;}
.y48{bottom:780.405000px;}
.ybf{bottom:788.505000px;}
.y90{bottom:789.405000px;}
.y11{bottom:799.125000px;}
.y47{bottom:800.205000px;}
.ybe{bottom:808.485000px;}
.y8f{bottom:809.205000px;}
.y10{bottom:818.925000px;}
.y46{bottom:820.005000px;}
.ybd{bottom:828.285000px;}
.y8e{bottom:829.005000px;}
.yf{bottom:838.725000px;}
.y45{bottom:839.805000px;}
.ybc{bottom:848.085000px;}
.y8d{bottom:848.805000px;}
.y44{bottom:859.605000px;}
.ye{bottom:860.865000px;}
.ybb{bottom:867.885000px;}
.y73{bottom:868.605000px;}
.y43{bottom:879.585000px;}
.yd{bottom:885.885000px;}
.yba{bottom:887.685000px;}
.y72{bottom:888.585000px;}
.y42{bottom:899.430000px;}
.yc{bottom:905.730000px;}
.yb9{bottom:907.710000px;}
.y71{bottom:908.430000px;}
.y41{bottom:919.230000px;}
.yb{bottom:921.030000px;}
.yb8{bottom:927.510000px;}
.y70{bottom:928.230000px;}
.y40{bottom:939.030000px;}
.ya{bottom:942.270000px;}
.yb7{bottom:947.310000px;}
.y6f{bottom:948.030000px;}
.y3f{bottom:958.830000px;}
.y9{bottom:965.670000px;}
.yb6{bottom:967.110000px;}
.y6e{bottom:967.830000px;}
.y3e{bottom:978.810000px;}
.yb5{bottom:986.910000px;}
.y6d{bottom:987.810000px;}
.y8{bottom:997.350000px;}
.y3d{bottom:998.610000px;}
.yb3{bottom:1001.850000px;}
.y6c{bottom:1007.610000px;}
.y3c{bottom:1018.410000px;}
.y6{bottom:1025.610000px;}
.y6b{bottom:1027.410000px;}
.y3b{bottom:1047.210000px;}
.y5{bottom:1052.070000px;}
.y3a{bottom:1067.010000px;}
.yb1{bottom:1081.050000px;}
.y4{bottom:1082.850000px;}
.y39{bottom:1086.990000px;}
.y38{bottom:1106.790000px;}
.y3{bottom:1113.630000px;}
.y37{bottom:1126.590000px;}
.y2{bottom:1144.590000px;}
.y36{bottom:1146.420000px;}
.y35{bottom:1173.960000px;}
.y1{bottom:1178.460000px;}
.y34{bottom:1194.120000px;}
.h8{height:34.855313px;}
.hd{height:39.600000px;}
.hf{height:39.636000px;}
.he{height:39.780000px;}
.ha{height:39.816000px;}
.h6{height:42.164648px;}
.h3{height:46.736719px;}
.h7{height:53.224453px;}
.h5{height:53.573906px;}
.h4{height:59.383125px;}
.hb{height:59.400000px;}
.hc{height:59.580000px;}
.h2{height:67.565039px;}
.h9{height:67.824844px;}
.h11{height:79.200000px;}
.h10{height:79.416000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:115.596000px;}
.w4{width:201.450000px;}
.w5{width:218.550000px;}
.w6{width:249.555000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.179987px;}
.x6{left:69.479987px;}
.x7{left:96.515987px;}
.x3{left:169.590000px;}
.x4{left:371.055000px;}
.x5{left:589.605000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.lsd{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.272533pt;}
.ls14{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.454933pt;}
.ls6{letter-spacing:0.480000pt;}
.ls13{letter-spacing:10.192640pt;}
.ls11{letter-spacing:37.200640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws8{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-2253.029760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-899.210240pt;}
._6{margin-left:-512.309760pt;}
._8{margin-left:-7.948800pt;}
._9{margin-left:-3.876053pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._c{width:2.018773pt;}
._a{width:3.745280pt;}
._b{width:4.936960pt;}
._10{width:6.480640pt;}
._11{width:7.695360pt;}
._d{width:8.899200pt;}
._12{width:9.956480pt;}
._e{width:11.527040pt;}
._15{width:14.298240pt;}
._14{width:15.298560pt;}
._13{width:16.254720pt;}
._19{width:17.219840pt;}
._2e{width:18.629973pt;}
._2d{width:19.920000pt;}
._2c{width:22.947840pt;}
._30{width:23.859840pt;}
._33{width:25.194240pt;}
._2f{width:26.294400pt;}
._1e{width:32.465280pt;}
._32{width:38.352640pt;}
._31{width:39.255680pt;}
._1c{width:45.692160pt;}
._2a{width:48.666880pt;}
._21{width:49.879680pt;}
._1f{width:51.792000pt;}
._29{width:54.403840pt;}
._1d{width:68.586880pt;}
._1b{width:83.982720pt;}
._24{width:94.606720pt;}
._17{width:101.512320pt;}
._16{width:102.477440pt;}
._22{width:112.623360pt;}
._23{width:113.623680pt;}
._25{width:115.270400pt;}
._18{width:125.690880pt;}
._20{width:140.564480pt;}
._27{width:158.890880pt;}
._1a{width:165.840640pt;}
._f{width:178.848000pt;}
._2b{width:180.183040pt;}
._28{width:226.406400pt;}
._26{width:227.468800pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:5.120000pt;}
.yae{bottom:5.146667pt;}
.yb0{bottom:5.280000pt;}
.ya8{bottom:22.720000pt;}
.yad{bottom:22.746667pt;}
.yac{bottom:22.880000pt;}
.ya4{bottom:22.920000pt;}
.ya7{bottom:40.320000pt;}
.yaa{bottom:40.480000pt;}
.y7{bottom:52.800000pt;}
.yb4{bottom:57.920000pt;}
.yb2{bottom:58.106667pt;}
.y8c{bottom:78.080000pt;}
.ye2{bottom:83.680000pt;}
.yf3{bottom:84.480000pt;}
.y6a{bottom:94.080000pt;}
.yaf{bottom:95.520000pt;}
.y8b{bottom:95.680000pt;}
.y33{bottom:100.800000pt;}
.ye1{bottom:101.440000pt;}
.yf2{bottom:102.080000pt;}
.y69{bottom:111.680000pt;}
.y8a{bottom:113.280000pt;}
.y32{bottom:118.400000pt;}
.ye0{bottom:119.040000pt;}
.yf1{bottom:119.680000pt;}
.y68{bottom:129.280000pt;}
.y89{bottom:130.880000pt;}
.y31{bottom:136.026667pt;}
.ydf{bottom:136.666667pt;}
.yf0{bottom:137.306667pt;}
.y67{bottom:146.906667pt;}
.y88{bottom:148.666667pt;}
.y30{bottom:153.626667pt;}
.yde{bottom:154.266667pt;}
.yef{bottom:154.906667pt;}
.y66{bottom:164.666667pt;}
.yab{bottom:166.106667pt;}
.y87{bottom:166.266667pt;}
.y2f{bottom:171.226667pt;}
.ydd{bottom:171.866667pt;}
.yee{bottom:172.666667pt;}
.y65{bottom:182.266667pt;}
.y86{bottom:183.866667pt;}
.y2e{bottom:188.986667pt;}
.ydc{bottom:189.626667pt;}
.yed{bottom:190.266667pt;}
.y64{bottom:199.866667pt;}
.y85{bottom:201.466667pt;}
.y2d{bottom:206.586667pt;}
.ydb{bottom:207.226667pt;}
.yec{bottom:207.866667pt;}
.y63{bottom:217.466667pt;}
.y84{bottom:219.066667pt;}
.y2c{bottom:224.186667pt;}
.yda{bottom:224.826667pt;}
.yeb{bottom:225.466667pt;}
.y62{bottom:235.066667pt;}
.ya9{bottom:236.666667pt;}
.y83{bottom:236.826667pt;}
.y2b{bottom:241.786667pt;}
.yd9{bottom:242.426667pt;}
.yea{bottom:243.066667pt;}
.y61{bottom:252.826667pt;}
.y2a{bottom:259.386667pt;}
.yd8{bottom:260.026667pt;}
.ye9{bottom:260.826667pt;}
.y82{bottom:262.426667pt;}
.y60{bottom:270.426667pt;}
.y29{bottom:277.146667pt;}
.yd7{bottom:277.786667pt;}
.ye8{bottom:278.426667pt;}
.y81{bottom:280.026667pt;}
.y5f{bottom:288.026667pt;}
.ya6{bottom:289.626667pt;}
.y28{bottom:294.746667pt;}
.yd6{bottom:295.386667pt;}
.ye7{bottom:296.026667pt;}
.y80{bottom:297.626667pt;}
.y5e{bottom:305.626667pt;}
.y27{bottom:312.346667pt;}
.yd5{bottom:312.986667pt;}
.ye6{bottom:313.626667pt;}
.y7f{bottom:315.226667pt;}
.y5d{bottom:323.226667pt;}
.y26{bottom:329.946667pt;}
.yd4{bottom:330.586667pt;}
.ye5{bottom:331.226667pt;}
.y7e{bottom:332.986667pt;}
.y5c{bottom:340.986667pt;}
.ya3{bottom:343.066667pt;}
.y25{bottom:347.546667pt;}
.yd3{bottom:348.186667pt;}
.ye4{bottom:348.986667pt;}
.y7d{bottom:350.586667pt;}
.y5b{bottom:358.626667pt;}
.y24{bottom:365.346667pt;}
.yd2{bottom:365.986667pt;}
.ye3{bottom:366.626667pt;}
.y7c{bottom:368.226667pt;}
.y5a{bottom:376.226667pt;}
.y23{bottom:382.946667pt;}
.yd1{bottom:383.586667pt;}
.ya2{bottom:384.226667pt;}
.y7b{bottom:385.826667pt;}
.y59{bottom:393.826667pt;}
.y22{bottom:400.546667pt;}
.yd0{bottom:401.186667pt;}
.ya1{bottom:401.826667pt;}
.y7a{bottom:403.426667pt;}
.y58{bottom:411.426667pt;}
.y21{bottom:418.146667pt;}
.ycf{bottom:418.786667pt;}
.ya0{bottom:419.426667pt;}
.y79{bottom:421.186667pt;}
.y57{bottom:429.186667pt;}
.y20{bottom:435.746667pt;}
.yce{bottom:436.386667pt;}
.y9f{bottom:437.186667pt;}
.y78{bottom:438.786667pt;}
.y56{bottom:446.786667pt;}
.y1f{bottom:453.506667pt;}
.ycd{bottom:454.146667pt;}
.y9e{bottom:454.786667pt;}
.y77{bottom:456.386667pt;}
.y55{bottom:464.386667pt;}
.y1e{bottom:471.106667pt;}
.ycc{bottom:471.746667pt;}
.y9d{bottom:472.386667pt;}
.y76{bottom:473.986667pt;}
.y54{bottom:481.986667pt;}
.ycb{bottom:489.346667pt;}
.y9c{bottom:489.986667pt;}
.y1d{bottom:490.626667pt;}
.y75{bottom:491.586667pt;}
.y53{bottom:499.586667pt;}
.yca{bottom:506.946667pt;}
.y9b{bottom:507.586667pt;}
.y1c{bottom:508.386667pt;}
.y74{bottom:509.346667pt;}
.y52{bottom:517.346667pt;}
.yc9{bottom:524.546667pt;}
.y9a{bottom:525.346667pt;}
.y1b{bottom:533.986667pt;}
.y51{bottom:534.946667pt;}
.yc8{bottom:542.306667pt;}
.y99{bottom:542.946667pt;}
.y1a{bottom:551.586667pt;}
.y50{bottom:552.546667pt;}
.yc7{bottom:559.906667pt;}
.y98{bottom:560.546667pt;}
.y19{bottom:569.186667pt;}
.y4f{bottom:570.146667pt;}
.yc6{bottom:577.533333pt;}
.y97{bottom:578.173333pt;}
.y18{bottom:586.813333pt;}
.y4e{bottom:587.773333pt;}
.yc5{bottom:595.133333pt;}
.y96{bottom:595.773333pt;}
.y17{bottom:604.573333pt;}
.y4d{bottom:605.533333pt;}
.yc4{bottom:612.733333pt;}
.y95{bottom:613.533333pt;}
.y16{bottom:622.173333pt;}
.y4c{bottom:623.133333pt;}
.yc3{bottom:630.493333pt;}
.y94{bottom:631.133333pt;}
.y15{bottom:639.773333pt;}
.y4b{bottom:640.733333pt;}
.yc2{bottom:648.093333pt;}
.y93{bottom:648.733333pt;}
.y14{bottom:657.373333pt;}
.y4a{bottom:658.333333pt;}
.yc1{bottom:665.693333pt;}
.y92{bottom:666.333333pt;}
.y13{bottom:674.973333pt;}
.y49{bottom:675.933333pt;}
.yc0{bottom:683.293333pt;}
.y91{bottom:683.933333pt;}
.y12{bottom:692.733333pt;}
.y48{bottom:693.693333pt;}
.ybf{bottom:700.893333pt;}
.y90{bottom:701.693333pt;}
.y11{bottom:710.333333pt;}
.y47{bottom:711.293333pt;}
.ybe{bottom:718.653333pt;}
.y8f{bottom:719.293333pt;}
.y10{bottom:727.933333pt;}
.y46{bottom:728.893333pt;}
.ybd{bottom:736.253333pt;}
.y8e{bottom:736.893333pt;}
.yf{bottom:745.533333pt;}
.y45{bottom:746.493333pt;}
.ybc{bottom:753.853333pt;}
.y8d{bottom:754.493333pt;}
.y44{bottom:764.093333pt;}
.ye{bottom:765.213333pt;}
.ybb{bottom:771.453333pt;}
.y73{bottom:772.093333pt;}
.y43{bottom:781.853333pt;}
.yd{bottom:787.453333pt;}
.yba{bottom:789.053333pt;}
.y72{bottom:789.853333pt;}
.y42{bottom:799.493333pt;}
.yc{bottom:805.093333pt;}
.yb9{bottom:806.853333pt;}
.y71{bottom:807.493333pt;}
.y41{bottom:817.093333pt;}
.yb{bottom:818.693333pt;}
.yb8{bottom:824.453333pt;}
.y70{bottom:825.093333pt;}
.y40{bottom:834.693333pt;}
.ya{bottom:837.573333pt;}
.yb7{bottom:842.053333pt;}
.y6f{bottom:842.693333pt;}
.y3f{bottom:852.293333pt;}
.y9{bottom:858.373333pt;}
.yb6{bottom:859.653333pt;}
.y6e{bottom:860.293333pt;}
.y3e{bottom:870.053333pt;}
.yb5{bottom:877.253333pt;}
.y6d{bottom:878.053333pt;}
.y8{bottom:886.533333pt;}
.y3d{bottom:887.653333pt;}
.yb3{bottom:890.533333pt;}
.y6c{bottom:895.653333pt;}
.y3c{bottom:905.253333pt;}
.y6{bottom:911.653333pt;}
.y6b{bottom:913.253333pt;}
.y3b{bottom:930.853333pt;}
.y5{bottom:935.173333pt;}
.y3a{bottom:948.453333pt;}
.yb1{bottom:960.933333pt;}
.y4{bottom:962.533333pt;}
.y39{bottom:966.213333pt;}
.y38{bottom:983.813333pt;}
.y3{bottom:989.893333pt;}
.y37{bottom:1001.413333pt;}
.y2{bottom:1017.413333pt;}
.y36{bottom:1019.040000pt;}
.y35{bottom:1043.520000pt;}
.y1{bottom:1047.520000pt;}
.y34{bottom:1061.440000pt;}
.h8{height:30.982500pt;}
.hd{height:35.200000pt;}
.hf{height:35.232000pt;}
.he{height:35.360000pt;}
.ha{height:35.392000pt;}
.h6{height:37.479688pt;}
.h3{height:41.543750pt;}
.h7{height:47.310625pt;}
.h5{height:47.621250pt;}
.h4{height:52.785000pt;}
.hb{height:52.800000pt;}
.hc{height:52.960000pt;}
.h2{height:60.057813pt;}
.h9{height:60.288750pt;}
.h11{height:70.400000pt;}
.h10{height:70.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:102.752000pt;}
.w4{width:179.066667pt;}
.w5{width:194.266667pt;}
.w6{width:221.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.159988pt;}
.x6{left:61.759988pt;}
.x7{left:85.791988pt;}
.x3{left:150.746667pt;}
.x4{left:329.826667pt;}
.x5{left:524.093333pt;}
}




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