
    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_90558a0514bcd50b0fba4a6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e2ebbf9158cf19a74765e6cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e9d3d1c688b533c3c8bc7dd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_459f0fe9567eafda76715c47.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2b963aaf6295d0017012d560.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c022d5e8d5417436eebd4412.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_bebf0b398edd90818f3e3089.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.768000px;}
.ls8{letter-spacing:-0.375600px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.200000px;}
.ls1{letter-spacing:2.748000px;}
.ls5{letter-spacing:59.145120px;}
.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;}
}
.ws4{word-spacing:-66.960000px;}
.ws0{word-spacing:-37.928064px;}
.ws3{word-spacing:-14.731200px;}
.ws5{word-spacing:-14.355600px;}
.ws2{word-spacing:-13.963200px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-10.905744px;}
._c{margin-left:-9.592032px;}
._a{margin-left:-8.332224px;}
._2{margin-left:-6.537888px;}
._9{margin-left:-4.651968px;}
._5{margin-left:-2.960784px;}
._4{margin-left:-1.245312px;}
._0{width:1.245312px;}
._1{width:2.957616px;}
._3{width:4.202928px;}
._6{width:6.026256px;}
._7{width:7.636320px;}
._8{width:849.820800px;}
.fc3{color:rgb(54,95,145);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(23,54,93);}
.fs2{font-size:66.960000px;}
.fs1{font-size:71.280000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:120.960000px;}
.fs0{font-size:155.664000px;}
.y0{bottom:0.000000px;}
.y84{bottom:111.816000px;}
.yab{bottom:116.676000px;}
.yd0{bottom:121.536000px;}
.y83{bottom:134.496000px;}
.yaa{bottom:138.816000px;}
.ycf{bottom:143.676000px;}
.y82{bottom:157.755000px;}
.ya9{bottom:160.995000px;}
.yce{bottom:165.855000px;}
.yfa{bottom:171.795000px;}
.y81{bottom:181.515000px;}
.ya8{bottom:184.215000px;}
.ycd{bottom:188.535000px;}
.yf9{bottom:194.475000px;}
.y80{bottom:203.115000px;}
.y45{bottom:205.815000px;}
.ya7{bottom:206.355000px;}
.ycc{bottom:210.675000px;}
.y61{bottom:218.235000px;}
.ye7{bottom:219.315000px;}
.y44{bottom:227.985000px;}
.ya6{bottom:229.065000px;}
.yf8{bottom:231.765000px;}
.ycb{bottom:232.845000px;}
.y60{bottom:240.405000px;}
.y7f{bottom:241.485000px;}
.y43{bottom:250.125000px;}
.ya5{bottom:251.205000px;}
.yf7{bottom:253.905000px;}
.yca{bottom:254.985000px;}
.ye6{bottom:256.605000px;}
.y5f{bottom:262.545000px;}
.y42{bottom:272.265000px;}
.ya4{bottom:274.425000px;}
.yc9{bottom:277.125000px;}
.y7e{bottom:278.745000px;}
.y5e{bottom:284.685000px;}
.yf6{bottom:291.165000px;}
.y41{bottom:294.945000px;}
.ya3{bottom:296.565000px;}
.yc8{bottom:299.850000px;}
.ye5{bottom:300.930000px;}
.y7d{bottom:301.470000px;}
.y5d{bottom:306.870000px;}
.yf5{bottom:313.350000px;}
.y40{bottom:317.130000px;}
.ya2{bottom:318.750000px;}
.y7c{bottom:323.610000px;}
.y5c{bottom:329.550000px;}
.yf4{bottom:335.490000px;}
.yc7{bottom:337.110000px;}
.y3f{bottom:339.270000px;}
.ya1{bottom:340.890000px;}
.y7b{bottom:345.750000px;}
.y5b{bottom:351.690000px;}
.yc6{bottom:359.250000px;}
.y3e{bottom:361.410000px;}
.ya0{bottom:364.110000px;}
.y7a{bottom:367.890000px;}
.yf3{bottom:372.750000px;}
.y5a{bottom:373.830000px;}
.yc5{bottom:381.420000px;}
.y9f{bottom:386.280000px;}
.ye4{bottom:390.060000px;}
.y79{bottom:391.140000px;}
.yf2{bottom:394.920000px;}
.y3d{bottom:398.700000px;}
.yc4{bottom:406.260000px;}
.y9e{bottom:408.960000px;}
.y59{bottom:411.120000px;}
.ye3{bottom:412.200000px;}
.y78{bottom:413.280000px;}
.y15{bottom:416.520000px;}
.yf1{bottom:417.600000px;}
.y3c{bottom:420.840000px;}
.y9d{bottom:431.100000px;}
.y58{bottom:433.260000px;}
.y77{bottom:435.420000px;}
.ye2{bottom:437.580000px;}
.y3b{bottom:442.980000px;}
.y9c{bottom:453.240000px;}
.y14{bottom:453.780000px;}
.yf0{bottom:454.890000px;}
.y57{bottom:455.430000px;}
.y76{bottom:458.670000px;}
.y3a{bottom:465.690000px;}
.yc3{bottom:468.930000px;}
.y13{bottom:475.950000px;}
.y9b{bottom:476.490000px;}
.yef{bottom:477.030000px;}
.y56{bottom:478.110000px;}
.y75{bottom:481.350000px;}
.y39{bottom:487.830000px;}
.yc2{bottom:491.610000px;}
.y12{bottom:498.090000px;}
.y9a{bottom:498.630000px;}
.y55{bottom:500.250000px;}
.y74{bottom:502.950000px;}
.y38{bottom:509.970000px;}
.yc1{bottom:513.750000px;}
.yee{bottom:514.290000px;}
.y11{bottom:520.230000px;}
.y99{bottom:520.770000px;}
.y54{bottom:522.390000px;}
.y73{bottom:526.710000px;}
.y37{bottom:532.155000px;}
.yc0{bottom:535.935000px;}
.yed{bottom:536.475000px;}
.y10{bottom:542.955000px;}
.ye1{bottom:544.575000px;}
.y72{bottom:548.895000px;}
.y36{bottom:554.295000px;}
.ybf{bottom:558.075000px;}
.y53{bottom:559.695000px;}
.yf{bottom:565.095000px;}
.y98{bottom:566.175000px;}
.ye0{bottom:566.715000px;}
.y71{bottom:571.035000px;}
.yec{bottom:573.735000px;}
.ybe{bottom:580.215000px;}
.y52{bottom:581.835000px;}
.ye{bottom:587.235000px;}
.y97{bottom:588.315000px;}
.ydf{bottom:589.395000px;}
.y35{bottom:591.555000px;}
.y70{bottom:593.175000px;}
.ybd{bottom:602.895000px;}
.y51{bottom:603.975000px;}
.yd{bottom:609.405000px;}
.y96{bottom:611.025000px;}
.yde{bottom:611.565000px;}
.y34{bottom:614.265000px;}
.y6f{bottom:616.425000px;}
.ybc{bottom:625.065000px;}
.y50{bottom:626.685000px;}
.yc{bottom:631.545000px;}
.y95{bottom:633.165000px;}
.ydd{bottom:633.705000px;}
.y33{bottom:636.405000px;}
.y6e{bottom:638.565000px;}
.ybb{bottom:647.205000px;}
.y4f{bottom:648.825000px;}
.yb{bottom:654.225000px;}
.y94{bottom:655.305000px;}
.y32{bottom:658.545000px;}
.y6d{bottom:660.705000px;}
.yba{bottom:669.345000px;}
.y4e{bottom:670.965000px;}
.ya{bottom:676.365000px;}
.y31{bottom:680.685000px;}
.y6c{bottom:683.385000px;}
.yb9{bottom:691.530000px;}
.yeb{bottom:692.610000px;}
.ydc{bottom:693.150000px;}
.y93{bottom:693.690000px;}
.y9{bottom:698.550000px;}
.y22{bottom:700.170000px;}
.y30{bottom:702.870000px;}
.y6b{bottom:705.570000px;}
.y4d{bottom:708.270000px;}
.yb8{bottom:714.210000px;}
.yea{bottom:714.750000px;}
.ydb{bottom:715.290000px;}
.y92{bottom:715.830000px;}
.y2f{bottom:725.550000px;}
.y6a{bottom:728.790000px;}
.y4c{bottom:730.410000px;}
.y8{bottom:732.030000px;}
.y21{bottom:737.430000px;}
.y91{bottom:737.970000px;}
.yb7{bottom:739.050000px;}
.y2e{bottom:747.690000px;}
.y69{bottom:750.930000px;}
.ye9{bottom:752.010000px;}
.y4b{bottom:752.550000px;}
.y90{bottom:760.110000px;}
.y7{bottom:765.000000px;}
.y20{bottom:767.160000px;}
.y2d{bottom:772.020000px;}
.y68{bottom:773.100000px;}
.y4a{bottom:774.720000px;}
.yda{bottom:782.280000px;}
.y8f{bottom:782.820000px;}
.y67{bottom:795.240000px;}
.y1f{bottom:796.860000px;}
.y49{bottom:797.400000px;}
.yb6{bottom:801.720000px;}
.yd9{bottom:804.420000px;}
.y8e{bottom:804.960000px;}
.y2c{bottom:811.980000px;}
.y66{bottom:817.380000px;}
.y48{bottom:819.540000px;}
.yb5{bottom:823.860000px;}
.y1e{bottom:826.560000px;}
.y8d{bottom:827.100000px;}
.ye8{bottom:834.120000px;}
.y2b{bottom:834.660000px;}
.y6{bottom:836.280000px;}
.y65{bottom:840.600000px;}
.yfe{bottom:841.140000px;}
.y47{bottom:841.710000px;}
.yb4{bottom:846.030000px;}
.yd8{bottom:848.730000px;}
.y8c{bottom:849.270000px;}
.y1d{bottom:856.290000px;}
.y2a{bottom:856.830000px;}
.y64{bottom:863.310000px;}
.y46{bottom:863.850000px;}
.y8b{bottom:871.410000px;}
.y5{bottom:873.570000px;}
.y29{bottom:878.970000px;}
.yb3{bottom:883.290000px;}
.y63{bottom:885.450000px;}
.y1c{bottom:885.990000px;}
.y8a{bottom:893.550000px;}
.y28{bottom:901.110000px;}
.yb2{bottom:905.970000px;}
.y62{bottom:907.590000px;}
.yd7{bottom:908.670000px;}
.y4{bottom:911.910000px;}
.y1b{bottom:915.690000px;}
.y89{bottom:918.930000px;}
.yfd{bottom:922.755000px;}
.y27{bottom:923.295000px;}
.yb1{bottom:927.615000px;}
.yd6{bottom:930.855000px;}
.y3{bottom:937.335000px;}
.y1a{bottom:945.435000px;}
.y26{bottom:945.975000px;}
.yb0{bottom:951.375000px;}
.yd5{bottom:952.995000px;}
.yfc{bottom:960.015000px;}
.y25{bottom:968.115000px;}
.yaf{bottom:973.515000px;}
.y19{bottom:975.135000px;}
.y88{bottom:981.615000px;}
.yfb{bottom:982.695000px;}
.y24{bottom:990.255000px;}
.y2{bottom:995.115000px;}
.yae{bottom:995.655000px;}
.yd4{bottom:997.305000px;}
.y87{bottom:1003.785000px;}
.y18{bottom:1004.865000px;}
.y23{bottom:1012.425000px;}
.yad{bottom:1018.905000px;}
.yd3{bottom:1019.985000px;}
.y86{bottom:1025.925000px;}
.y17{bottom:1034.565000px;}
.yac{bottom:1041.045000px;}
.yd2{bottom:1042.125000px;}
.y1{bottom:1042.665000px;}
.y16{bottom:1059.945000px;}
.y85{bottom:1063.185000px;}
.yd1{bottom:1064.265000px;}
.h2{height:54.434531px;}
.h5{height:56.693672px;}
.h3{height:58.263047px;}
.h7{height:62.021953px;}
.h8{height:79.620469px;}
.h6{height:86.255508px;}
.h4{height:120.310313px;}
.h1{height:154.827914px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.071986px;}
.x5{left:151.844986px;}
.x6{left:162.104986px;}
.x7{left:189.104986px;}
.x3{left:353.909986px;}
.x2{left:402.554986px;}
.x4{left:783.464986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls8{letter-spacing:-0.333867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.066667pt;}
.ls1{letter-spacing:2.442667pt;}
.ls5{letter-spacing:52.573440pt;}
.ws4{word-spacing:-59.520000pt;}
.ws0{word-spacing:-33.713835pt;}
.ws3{word-spacing:-13.094400pt;}
.ws5{word-spacing:-12.760533pt;}
.ws2{word-spacing:-12.411733pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-9.693995pt;}
._c{margin-left:-8.526251pt;}
._a{margin-left:-7.406421pt;}
._2{margin-left:-5.811456pt;}
._9{margin-left:-4.135083pt;}
._5{margin-left:-2.631808pt;}
._4{margin-left:-1.106944pt;}
._0{width:1.106944pt;}
._1{width:2.628992pt;}
._3{width:3.735936pt;}
._6{width:5.356672pt;}
._7{width:6.787840pt;}
._8{width:755.396267pt;}
.fs2{font-size:59.520000pt;}
.fs1{font-size:63.360000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:107.520000pt;}
.fs0{font-size:138.368000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:99.392000pt;}
.yab{bottom:103.712000pt;}
.yd0{bottom:108.032000pt;}
.y83{bottom:119.552000pt;}
.yaa{bottom:123.392000pt;}
.ycf{bottom:127.712000pt;}
.y82{bottom:140.226667pt;}
.ya9{bottom:143.106667pt;}
.yce{bottom:147.426667pt;}
.yfa{bottom:152.706667pt;}
.y81{bottom:161.346667pt;}
.ya8{bottom:163.746667pt;}
.ycd{bottom:167.586667pt;}
.yf9{bottom:172.866667pt;}
.y80{bottom:180.546667pt;}
.y45{bottom:182.946667pt;}
.ya7{bottom:183.426667pt;}
.ycc{bottom:187.266667pt;}
.y61{bottom:193.986667pt;}
.ye7{bottom:194.946667pt;}
.y44{bottom:202.653333pt;}
.ya6{bottom:203.613333pt;}
.yf8{bottom:206.013333pt;}
.ycb{bottom:206.973333pt;}
.y60{bottom:213.693333pt;}
.y7f{bottom:214.653333pt;}
.y43{bottom:222.333333pt;}
.ya5{bottom:223.293333pt;}
.yf7{bottom:225.693333pt;}
.yca{bottom:226.653333pt;}
.ye6{bottom:228.093333pt;}
.y5f{bottom:233.373333pt;}
.y42{bottom:242.013333pt;}
.ya4{bottom:243.933333pt;}
.yc9{bottom:246.333333pt;}
.y7e{bottom:247.773333pt;}
.y5e{bottom:253.053333pt;}
.yf6{bottom:258.813333pt;}
.y41{bottom:262.173333pt;}
.ya3{bottom:263.613333pt;}
.yc8{bottom:266.533333pt;}
.ye5{bottom:267.493333pt;}
.y7d{bottom:267.973333pt;}
.y5d{bottom:272.773333pt;}
.yf5{bottom:278.533333pt;}
.y40{bottom:281.893333pt;}
.ya2{bottom:283.333333pt;}
.y7c{bottom:287.653333pt;}
.y5c{bottom:292.933333pt;}
.yf4{bottom:298.213333pt;}
.yc7{bottom:299.653333pt;}
.y3f{bottom:301.573333pt;}
.ya1{bottom:303.013333pt;}
.y7b{bottom:307.333333pt;}
.y5b{bottom:312.613333pt;}
.yc6{bottom:319.333333pt;}
.y3e{bottom:321.253333pt;}
.ya0{bottom:323.653333pt;}
.y7a{bottom:327.013333pt;}
.yf3{bottom:331.333333pt;}
.y5a{bottom:332.293333pt;}
.yc5{bottom:339.040000pt;}
.y9f{bottom:343.360000pt;}
.ye4{bottom:346.720000pt;}
.y79{bottom:347.680000pt;}
.yf2{bottom:351.040000pt;}
.y3d{bottom:354.400000pt;}
.yc4{bottom:361.120000pt;}
.y9e{bottom:363.520000pt;}
.y59{bottom:365.440000pt;}
.ye3{bottom:366.400000pt;}
.y78{bottom:367.360000pt;}
.y15{bottom:370.240000pt;}
.yf1{bottom:371.200000pt;}
.y3c{bottom:374.080000pt;}
.y9d{bottom:383.200000pt;}
.y58{bottom:385.120000pt;}
.y77{bottom:387.040000pt;}
.ye2{bottom:388.960000pt;}
.y3b{bottom:393.760000pt;}
.y9c{bottom:402.880000pt;}
.y14{bottom:403.360000pt;}
.yf0{bottom:404.346667pt;}
.y57{bottom:404.826667pt;}
.y76{bottom:407.706667pt;}
.y3a{bottom:413.946667pt;}
.yc3{bottom:416.826667pt;}
.y13{bottom:423.066667pt;}
.y9b{bottom:423.546667pt;}
.yef{bottom:424.026667pt;}
.y56{bottom:424.986667pt;}
.y75{bottom:427.866667pt;}
.y39{bottom:433.626667pt;}
.yc2{bottom:436.986667pt;}
.y12{bottom:442.746667pt;}
.y9a{bottom:443.226667pt;}
.y55{bottom:444.666667pt;}
.y74{bottom:447.066667pt;}
.y38{bottom:453.306667pt;}
.yc1{bottom:456.666667pt;}
.yee{bottom:457.146667pt;}
.y11{bottom:462.426667pt;}
.y99{bottom:462.906667pt;}
.y54{bottom:464.346667pt;}
.y73{bottom:468.186667pt;}
.y37{bottom:473.026667pt;}
.yc0{bottom:476.386667pt;}
.yed{bottom:476.866667pt;}
.y10{bottom:482.626667pt;}
.ye1{bottom:484.066667pt;}
.y72{bottom:487.906667pt;}
.y36{bottom:492.706667pt;}
.ybf{bottom:496.066667pt;}
.y53{bottom:497.506667pt;}
.yf{bottom:502.306667pt;}
.y98{bottom:503.266667pt;}
.ye0{bottom:503.746667pt;}
.y71{bottom:507.586667pt;}
.yec{bottom:509.986667pt;}
.ybe{bottom:515.746667pt;}
.y52{bottom:517.186667pt;}
.ye{bottom:521.986667pt;}
.y97{bottom:522.946667pt;}
.ydf{bottom:523.906667pt;}
.y35{bottom:525.826667pt;}
.y70{bottom:527.266667pt;}
.ybd{bottom:535.906667pt;}
.y51{bottom:536.866667pt;}
.yd{bottom:541.693333pt;}
.y96{bottom:543.133333pt;}
.yde{bottom:543.613333pt;}
.y34{bottom:546.013333pt;}
.y6f{bottom:547.933333pt;}
.ybc{bottom:555.613333pt;}
.y50{bottom:557.053333pt;}
.yc{bottom:561.373333pt;}
.y95{bottom:562.813333pt;}
.ydd{bottom:563.293333pt;}
.y33{bottom:565.693333pt;}
.y6e{bottom:567.613333pt;}
.ybb{bottom:575.293333pt;}
.y4f{bottom:576.733333pt;}
.yb{bottom:581.533333pt;}
.y94{bottom:582.493333pt;}
.y32{bottom:585.373333pt;}
.y6d{bottom:587.293333pt;}
.yba{bottom:594.973333pt;}
.y4e{bottom:596.413333pt;}
.ya{bottom:601.213333pt;}
.y31{bottom:605.053333pt;}
.y6c{bottom:607.453333pt;}
.yb9{bottom:614.693333pt;}
.yeb{bottom:615.653333pt;}
.ydc{bottom:616.133333pt;}
.y93{bottom:616.613333pt;}
.y9{bottom:620.933333pt;}
.y22{bottom:622.373333pt;}
.y30{bottom:624.773333pt;}
.y6b{bottom:627.173333pt;}
.y4d{bottom:629.573333pt;}
.yb8{bottom:634.853333pt;}
.yea{bottom:635.333333pt;}
.ydb{bottom:635.813333pt;}
.y92{bottom:636.293333pt;}
.y2f{bottom:644.933333pt;}
.y6a{bottom:647.813333pt;}
.y4c{bottom:649.253333pt;}
.y8{bottom:650.693333pt;}
.y21{bottom:655.493333pt;}
.y91{bottom:655.973333pt;}
.yb7{bottom:656.933333pt;}
.y2e{bottom:664.613333pt;}
.y69{bottom:667.493333pt;}
.ye9{bottom:668.453333pt;}
.y4b{bottom:668.933333pt;}
.y90{bottom:675.653333pt;}
.y7{bottom:680.000000pt;}
.y20{bottom:681.920000pt;}
.y2d{bottom:686.240000pt;}
.y68{bottom:687.200000pt;}
.y4a{bottom:688.640000pt;}
.yda{bottom:695.360000pt;}
.y8f{bottom:695.840000pt;}
.y67{bottom:706.880000pt;}
.y1f{bottom:708.320000pt;}
.y49{bottom:708.800000pt;}
.yb6{bottom:712.640000pt;}
.yd9{bottom:715.040000pt;}
.y8e{bottom:715.520000pt;}
.y2c{bottom:721.760000pt;}
.y66{bottom:726.560000pt;}
.y48{bottom:728.480000pt;}
.yb5{bottom:732.320000pt;}
.y1e{bottom:734.720000pt;}
.y8d{bottom:735.200000pt;}
.ye8{bottom:741.440000pt;}
.y2b{bottom:741.920000pt;}
.y6{bottom:743.360000pt;}
.y65{bottom:747.200000pt;}
.yfe{bottom:747.680000pt;}
.y47{bottom:748.186667pt;}
.yb4{bottom:752.026667pt;}
.yd8{bottom:754.426667pt;}
.y8c{bottom:754.906667pt;}
.y1d{bottom:761.146667pt;}
.y2a{bottom:761.626667pt;}
.y64{bottom:767.386667pt;}
.y46{bottom:767.866667pt;}
.y8b{bottom:774.586667pt;}
.y5{bottom:776.506667pt;}
.y29{bottom:781.306667pt;}
.yb3{bottom:785.146667pt;}
.y63{bottom:787.066667pt;}
.y1c{bottom:787.546667pt;}
.y8a{bottom:794.266667pt;}
.y28{bottom:800.986667pt;}
.yb2{bottom:805.306667pt;}
.y62{bottom:806.746667pt;}
.yd7{bottom:807.706667pt;}
.y4{bottom:810.586667pt;}
.y1b{bottom:813.946667pt;}
.y89{bottom:816.826667pt;}
.yfd{bottom:820.226667pt;}
.y27{bottom:820.706667pt;}
.yb1{bottom:824.546667pt;}
.yd6{bottom:827.426667pt;}
.y3{bottom:833.186667pt;}
.y1a{bottom:840.386667pt;}
.y26{bottom:840.866667pt;}
.yb0{bottom:845.666667pt;}
.yd5{bottom:847.106667pt;}
.yfc{bottom:853.346667pt;}
.y25{bottom:860.546667pt;}
.yaf{bottom:865.346667pt;}
.y19{bottom:866.786667pt;}
.y88{bottom:872.546667pt;}
.yfb{bottom:873.506667pt;}
.y24{bottom:880.226667pt;}
.y2{bottom:884.546667pt;}
.yae{bottom:885.026667pt;}
.yd4{bottom:886.493333pt;}
.y87{bottom:892.253333pt;}
.y18{bottom:893.213333pt;}
.y23{bottom:899.933333pt;}
.yad{bottom:905.693333pt;}
.yd3{bottom:906.653333pt;}
.y86{bottom:911.933333pt;}
.y17{bottom:919.613333pt;}
.yac{bottom:925.373333pt;}
.yd2{bottom:926.333333pt;}
.y1{bottom:926.813333pt;}
.y16{bottom:942.173333pt;}
.y85{bottom:945.053333pt;}
.yd1{bottom:946.013333pt;}
.h2{height:48.386250pt;}
.h5{height:50.394375pt;}
.h3{height:51.789375pt;}
.h7{height:55.130625pt;}
.h8{height:70.773750pt;}
.h6{height:76.671562pt;}
.h4{height:106.942500pt;}
.h1{height:137.624812pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.063988pt;}
.x5{left:134.973321pt;}
.x6{left:144.093321pt;}
.x7{left:168.093321pt;}
.x3{left:314.586655pt;}
.x2{left:357.826655pt;}
.x4{left:696.413321pt;}
}




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