
    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_4b544ebbd2d0e8e8dceace1f.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_9ee3812d08ef8575a7ce1429.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_757539b1740d43940fee140e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c8a3b2f0e444cd882b18f276.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2a4bb66892256eeb69535585.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_9896963329b54f7731532d4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916016;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_9f280c31d3d8837619cf7171.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.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);}
.m2{transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251129,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.208200px;}
.lsa{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls13{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.189600px;}
.ls6{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.540000px;}
.lsc{letter-spacing:7.866720px;}
.ls15{letter-spacing:11.466720px;}
.ls3{letter-spacing:31.626720px;}
.ls16{letter-spacing:41.706720px;}
.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;}
}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.wsa{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.wsb{word-spacing:-13.737270px;}
.wsc{word-spacing:-13.713253px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._17{margin-left:-15.312480px;}
._18{margin-left:-11.546640px;}
._8{margin-left:-8.942400px;}
._1a{margin-left:-6.359520px;}
._9{margin-left:-4.360560px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._c{width:3.037920px;}
._d{width:4.294320px;}
._e{width:5.305680px;}
._f{width:6.512400px;}
._a{width:7.852320px;}
._b{width:8.968080px;}
._15{width:10.099440px;}
._14{width:11.597040px;}
._13{width:13.087440px;}
._12{width:16.868400px;}
._11{width:17.884800px;}
._16{width:18.895440px;}
._1d{width:19.907520px;}
._1b{width:20.916000px;}
._1c{width:24.599280px;}
._1e{width:25.802160px;}
._19{width:92.990160px;}
._10{width:142.733280px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:54.853014px;}
.fs7{font-size:54.949078px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:5.760000px;}
.y93{bottom:5.940000px;}
.yd2{bottom:10.800000px;}
.y7c{bottom:15.205158px;}
.y8b{bottom:25.560000px;}
.yd1{bottom:30.630000px;}
.y7b{bottom:31.392082px;}
.yce{bottom:34.950000px;}
.y8a{bottom:45.360000px;}
.yd0{bottom:50.430000px;}
.y6{bottom:60.300000px;}
.ycf{bottom:70.410000px;}
.ycc{bottom:94.140000px;}
.yad{bottom:100.440000px;}
.y32{bottom:102.780000px;}
.y88{bottom:105.660000px;}
.ycb{bottom:113.940000px;}
.y67{bottom:115.740000px;}
.yac{bottom:120.240000px;}
.y31{bottom:122.580000px;}
.y80{bottom:124.403948px;}
.y7e{bottom:124.403955px;}
.y7a{bottom:124.403963px;}
.y87{bottom:125.460000px;}
.ycd{bottom:125.640000px;}
.yca{bottom:133.740000px;}
.y66{bottom:135.540000px;}
.yab{bottom:140.040000px;}
.y7f{bottom:140.590871px;}
.y7d{bottom:140.590880px;}
.y79{bottom:140.590887px;}
.y30{bottom:142.560000px;}
.y86{bottom:145.260000px;}
.yc9{bottom:153.570000px;}
.y65{bottom:155.370000px;}
.yaa{bottom:159.870000px;}
.y2f{bottom:162.390000px;}
.y85{bottom:165.090000px;}
.yc8{bottom:173.370000px;}
.y64{bottom:175.350000px;}
.ya9{bottom:179.850000px;}
.y2e{bottom:182.190000px;}
.y84{bottom:184.890000px;}
.yc7{bottom:193.350000px;}
.y63{bottom:195.150000px;}
.ya8{bottom:199.650000px;}
.y2d{bottom:201.990000px;}
.y83{bottom:204.870000px;}
.yc6{bottom:213.150000px;}
.y62{bottom:214.950000px;}
.ya7{bottom:219.450000px;}
.y2c{bottom:221.790000px;}
.y82{bottom:224.670000px;}
.yc5{bottom:232.950000px;}
.y78{bottom:233.629666px;}
.y61{bottom:234.750000px;}
.ya6{bottom:239.250000px;}
.y81{bottom:241.230000px;}
.y76{bottom:241.289980px;}
.y2b{bottom:241.770000px;}
.y77{bottom:249.797377px;}
.yc4{bottom:252.750000px;}
.y75{bottom:254.550000px;}
.ya5{bottom:259.050000px;}
.y2a{bottom:261.570000px;}
.y60{bottom:263.550000px;}
.yc3{bottom:272.550000px;}
.y74{bottom:274.530000px;}
.ya4{bottom:279.030000px;}
.y29{bottom:281.370000px;}
.y5f{bottom:283.530000px;}
.yc2{bottom:292.530000px;}
.y73{bottom:294.330000px;}
.ya3{bottom:298.830000px;}
.y28{bottom:301.170000px;}
.y5e{bottom:303.330000px;}
.yc1{bottom:312.330000px;}
.y72{bottom:314.130000px;}
.ya2{bottom:318.630000px;}
.y27{bottom:320.970000px;}
.y5d{bottom:323.130000px;}
.yc0{bottom:332.130000px;}
.y71{bottom:333.930000px;}
.ya1{bottom:338.430000px;}
.y26{bottom:340.950000px;}
.y5c{bottom:342.930000px;}
.ybf{bottom:351.930000px;}
.ya0{bottom:358.230000px;}
.y25{bottom:360.750000px;}
.y5b{bottom:362.730000px;}
.ybe{bottom:371.730000px;}
.y9f{bottom:378.210000px;}
.y24{bottom:380.550000px;}
.y5a{bottom:382.710000px;}
.ybd{bottom:391.710000px;}
.y9e{bottom:398.010000px;}
.y23{bottom:400.350000px;}
.y59{bottom:402.555000px;}
.ybc{bottom:411.555000px;}
.y9d{bottom:417.855000px;}
.y22{bottom:420.195000px;}
.y58{bottom:422.355000px;}
.ybb{bottom:431.355000px;}
.y9c{bottom:437.655000px;}
.y21{bottom:440.175000px;}
.y57{bottom:442.155000px;}
.yba{bottom:451.155000px;}
.y9b{bottom:457.455000px;}
.y20{bottom:459.975000px;}
.y56{bottom:461.955000px;}
.yb9{bottom:470.955000px;}
.y9a{bottom:477.435000px;}
.y1f{bottom:479.775000px;}
.y55{bottom:481.935000px;}
.yb8{bottom:490.935000px;}
.y99{bottom:497.235000px;}
.y1e{bottom:499.575000px;}
.y54{bottom:501.735000px;}
.yb7{bottom:510.735000px;}
.y98{bottom:517.035000px;}
.y1d{bottom:519.375000px;}
.y53{bottom:521.535000px;}
.yb6{bottom:530.535000px;}
.y97{bottom:536.835000px;}
.y1c{bottom:539.355000px;}
.y52{bottom:541.335000px;}
.yb5{bottom:550.335000px;}
.y96{bottom:556.635000px;}
.y1b{bottom:559.155000px;}
.y51{bottom:561.135000px;}
.yb4{bottom:570.135000px;}
.y95{bottom:576.615000px;}
.y1a{bottom:578.955000px;}
.y50{bottom:581.115000px;}
.yb3{bottom:590.115000px;}
.y94{bottom:592.095000px;}
.y19{bottom:598.755000px;}
.y4f{bottom:600.915000px;}
.yb2{bottom:609.915000px;}
.y92{bottom:613.335000px;}
.y18{bottom:618.555000px;}
.y4e{bottom:620.715000px;}
.yb1{bottom:629.715000px;}
.y91{bottom:634.755000px;}
.y4d{bottom:640.515000px;}
.yb0{bottom:649.545000px;}
.y90{bottom:656.205000px;}
.y4c{bottom:660.345000px;}
.y17{bottom:660.525000px;}
.yaf{bottom:669.345000px;}
.y8f{bottom:677.445000px;}
.y4b{bottom:680.325000px;}
.yae{bottom:689.325000px;}
.y16{bottom:689.505000px;}
.y8e{bottom:698.865000px;}
.y70{bottom:700.125000px;}
.y4a{bottom:709.125000px;}
.y15{bottom:709.305000px;}
.y6f{bottom:719.925000px;}
.y8d{bottom:720.105000px;}
.y49{bottom:728.925000px;}
.y14{bottom:729.105000px;}
.y6e{bottom:739.725000px;}
.y89{bottom:741.525000px;}
.y48{bottom:748.725000px;}
.y13{bottom:748.905000px;}
.y6d{bottom:759.525000px;}
.y47{bottom:768.525000px;}
.y12{bottom:768.705000px;}
.y6c{bottom:779.505000px;}
.y46{bottom:788.505000px;}
.y11{bottom:788.685000px;}
.y6b{bottom:799.305000px;}
.y45{bottom:808.305000px;}
.y10{bottom:808.485000px;}
.y6a{bottom:819.105000px;}
.y44{bottom:828.105000px;}
.yf{bottom:828.285000px;}
.y69{bottom:838.905000px;}
.y43{bottom:847.905000px;}
.ye{bottom:848.085000px;}
.y68{bottom:858.705000px;}
.y42{bottom:867.705000px;}
.yd{bottom:870.225000px;}
.y41{bottom:887.685000px;}
.yc{bottom:895.245000px;}
.y40{bottom:907.530000px;}
.yb{bottom:915.090000px;}
.y3f{bottom:927.330000px;}
.ya{bottom:930.210000px;}
.y3e{bottom:947.130000px;}
.y9{bottom:951.630000px;}
.y3d{bottom:966.930000px;}
.y8{bottom:975.030000px;}
.y3c{bottom:986.910000px;}
.y7{bottom:1006.710000px;}
.y3b{bottom:1026.510000px;}
.y3a{bottom:1046.310000px;}
.y5{bottom:1051.170000px;}
.y39{bottom:1066.110000px;}
.y4{bottom:1081.950000px;}
.y38{bottom:1086.090000px;}
.y37{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.y36{bottom:1125.690000px;}
.y2{bottom:1143.690000px;}
.y35{bottom:1145.490000px;}
.y34{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y33{bottom:1193.220000px;}
.h16{height:2.010938px;}
.h11{height:19.800000px;}
.h12{height:19.836000px;}
.h13{height:19.980000px;}
.h7{height:27.147656px;}
.he{height:38.300688px;}
.hd{height:38.367765px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.h9{height:43.506914px;}
.hc{height:45.210882px;}
.hf{height:45.290061px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h14{height:49.255313px;}
.h6{height:53.224453px;}
.h10{height:59.400000px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h15{height:84.456000px;}
.hb{height:274.505250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:74.340000px;}
.w5{width:85.176000px;}
.w7{width:95.796000px;}
.w8{width:106.200000px;}
.w9{width:124.020000px;}
.w4{width:129.996000px;}
.wa{width:210.810000px;}
.wb{width:581.010000px;}
.w3{width:631.815435px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.416000px;}
.x4{left:29.697468px;}
.x6{left:35.342645px;}
.x7{left:36.452383px;}
.x1{left:54.179987px;}
.x5{left:70.830029px;}
.x2{left:75.599987px;}
.x10{left:81.720000px;}
.xf{left:86.435987px;}
.x18{left:108.035987px;}
.x3{left:130.589990px;}
.x19{left:191.370000px;}
.x12{left:211.710000px;}
.x8{left:256.831228px;}
.x1a{left:264.810000px;}
.x13{left:296.895000px;}
.x9{left:307.753580px;}
.xd{left:358.454987px;}
.x14{left:371.235000px;}
.xe{left:446.504987px;}
.x15{left:467.025000px;}
.xa{left:513.855449px;}
.xb{left:539.794294px;}
.x16{left:573.225000px;}
.x17{left:658.410000px;}
.xc{left:762.449987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.185067pt;}
.lsa{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls13{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.168533pt;}
.ls6{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.480000pt;}
.lsc{letter-spacing:6.992640pt;}
.ls15{letter-spacing:10.192640pt;}
.ls3{letter-spacing:28.112640pt;}
.ls16{letter-spacing:37.072640pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.wsa{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.wsb{word-spacing:-12.210906pt;}
.wsc{word-spacing:-12.189559pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._17{margin-left:-13.611093pt;}
._18{margin-left:-10.263680pt;}
._8{margin-left:-7.948800pt;}
._1a{margin-left:-5.652907pt;}
._9{margin-left:-3.876053pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._c{width:2.700373pt;}
._d{width:3.817173pt;}
._e{width:4.716160pt;}
._f{width:5.788800pt;}
._a{width:6.979840pt;}
._b{width:7.971627pt;}
._15{width:8.977280pt;}
._14{width:10.308480pt;}
._13{width:11.633280pt;}
._12{width:14.994133pt;}
._11{width:15.897600pt;}
._16{width:16.795947pt;}
._1d{width:17.695573pt;}
._1b{width:18.592000pt;}
._1c{width:21.866027pt;}
._1e{width:22.935253pt;}
._19{width:82.657920pt;}
._10{width:126.874027pt;}
.fs8{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:48.758234pt;}
.fs7{font-size:48.843625pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:5.120000pt;}
.y93{bottom:5.280000pt;}
.yd2{bottom:9.600000pt;}
.y7c{bottom:13.515696pt;}
.y8b{bottom:22.720000pt;}
.yd1{bottom:27.226667pt;}
.y7b{bottom:27.904073pt;}
.yce{bottom:31.066667pt;}
.y8a{bottom:40.320000pt;}
.yd0{bottom:44.826667pt;}
.y6{bottom:53.600000pt;}
.ycf{bottom:62.586667pt;}
.ycc{bottom:83.680000pt;}
.yad{bottom:89.280000pt;}
.y32{bottom:91.360000pt;}
.y88{bottom:93.920000pt;}
.ycb{bottom:101.280000pt;}
.y67{bottom:102.880000pt;}
.yac{bottom:106.880000pt;}
.y31{bottom:108.960000pt;}
.y80{bottom:110.581287pt;}
.y7e{bottom:110.581294pt;}
.y7a{bottom:110.581300pt;}
.y87{bottom:111.520000pt;}
.ycd{bottom:111.680000pt;}
.yca{bottom:118.880000pt;}
.y66{bottom:120.480000pt;}
.yab{bottom:124.480000pt;}
.y7f{bottom:124.969663pt;}
.y7d{bottom:124.969671pt;}
.y79{bottom:124.969677pt;}
.y30{bottom:126.720000pt;}
.y86{bottom:129.120000pt;}
.yc9{bottom:136.506667pt;}
.y65{bottom:138.106667pt;}
.yaa{bottom:142.106667pt;}
.y2f{bottom:144.346667pt;}
.y85{bottom:146.746667pt;}
.yc8{bottom:154.106667pt;}
.y64{bottom:155.866667pt;}
.ya9{bottom:159.866667pt;}
.y2e{bottom:161.946667pt;}
.y84{bottom:164.346667pt;}
.yc7{bottom:171.866667pt;}
.y63{bottom:173.466667pt;}
.ya8{bottom:177.466667pt;}
.y2d{bottom:179.546667pt;}
.y83{bottom:182.106667pt;}
.yc6{bottom:189.466667pt;}
.y62{bottom:191.066667pt;}
.ya7{bottom:195.066667pt;}
.y2c{bottom:197.146667pt;}
.y82{bottom:199.706667pt;}
.yc5{bottom:207.066667pt;}
.y78{bottom:207.670814pt;}
.y61{bottom:208.666667pt;}
.ya6{bottom:212.666667pt;}
.y81{bottom:214.426667pt;}
.y76{bottom:214.479982pt;}
.y2b{bottom:214.906667pt;}
.y77{bottom:222.042113pt;}
.yc4{bottom:224.666667pt;}
.y75{bottom:226.266667pt;}
.ya5{bottom:230.266667pt;}
.y2a{bottom:232.506667pt;}
.y60{bottom:234.266667pt;}
.yc3{bottom:242.266667pt;}
.y74{bottom:244.026667pt;}
.ya4{bottom:248.026667pt;}
.y29{bottom:250.106667pt;}
.y5f{bottom:252.026667pt;}
.yc2{bottom:260.026667pt;}
.y73{bottom:261.626667pt;}
.ya3{bottom:265.626667pt;}
.y28{bottom:267.706667pt;}
.y5e{bottom:269.626667pt;}
.yc1{bottom:277.626667pt;}
.y72{bottom:279.226667pt;}
.ya2{bottom:283.226667pt;}
.y27{bottom:285.306667pt;}
.y5d{bottom:287.226667pt;}
.yc0{bottom:295.226667pt;}
.y71{bottom:296.826667pt;}
.ya1{bottom:300.826667pt;}
.y26{bottom:303.066667pt;}
.y5c{bottom:304.826667pt;}
.ybf{bottom:312.826667pt;}
.ya0{bottom:318.426667pt;}
.y25{bottom:320.666667pt;}
.y5b{bottom:322.426667pt;}
.ybe{bottom:330.426667pt;}
.y9f{bottom:336.186667pt;}
.y24{bottom:338.266667pt;}
.y5a{bottom:340.186667pt;}
.ybd{bottom:348.186667pt;}
.y9e{bottom:353.786667pt;}
.y23{bottom:355.866667pt;}
.y59{bottom:357.826667pt;}
.ybc{bottom:365.826667pt;}
.y9d{bottom:371.426667pt;}
.y22{bottom:373.506667pt;}
.y58{bottom:375.426667pt;}
.ybb{bottom:383.426667pt;}
.y9c{bottom:389.026667pt;}
.y21{bottom:391.266667pt;}
.y57{bottom:393.026667pt;}
.yba{bottom:401.026667pt;}
.y9b{bottom:406.626667pt;}
.y20{bottom:408.866667pt;}
.y56{bottom:410.626667pt;}
.yb9{bottom:418.626667pt;}
.y9a{bottom:424.386667pt;}
.y1f{bottom:426.466667pt;}
.y55{bottom:428.386667pt;}
.yb8{bottom:436.386667pt;}
.y99{bottom:441.986667pt;}
.y1e{bottom:444.066667pt;}
.y54{bottom:445.986667pt;}
.yb7{bottom:453.986667pt;}
.y98{bottom:459.586667pt;}
.y1d{bottom:461.666667pt;}
.y53{bottom:463.586667pt;}
.yb6{bottom:471.586667pt;}
.y97{bottom:477.186667pt;}
.y1c{bottom:479.426667pt;}
.y52{bottom:481.186667pt;}
.yb5{bottom:489.186667pt;}
.y96{bottom:494.786667pt;}
.y1b{bottom:497.026667pt;}
.y51{bottom:498.786667pt;}
.yb4{bottom:506.786667pt;}
.y95{bottom:512.546667pt;}
.y1a{bottom:514.626667pt;}
.y50{bottom:516.546667pt;}
.yb3{bottom:524.546667pt;}
.y94{bottom:526.306667pt;}
.y19{bottom:532.226667pt;}
.y4f{bottom:534.146667pt;}
.yb2{bottom:542.146667pt;}
.y92{bottom:545.186667pt;}
.y18{bottom:549.826667pt;}
.y4e{bottom:551.746667pt;}
.yb1{bottom:559.746667pt;}
.y91{bottom:564.226667pt;}
.y4d{bottom:569.346667pt;}
.yb0{bottom:577.373333pt;}
.y90{bottom:583.293333pt;}
.y4c{bottom:586.973333pt;}
.y17{bottom:587.133333pt;}
.yaf{bottom:594.973333pt;}
.y8f{bottom:602.173333pt;}
.y4b{bottom:604.733333pt;}
.yae{bottom:612.733333pt;}
.y16{bottom:612.893333pt;}
.y8e{bottom:621.213333pt;}
.y70{bottom:622.333333pt;}
.y4a{bottom:630.333333pt;}
.y15{bottom:630.493333pt;}
.y6f{bottom:639.933333pt;}
.y8d{bottom:640.093333pt;}
.y49{bottom:647.933333pt;}
.y14{bottom:648.093333pt;}
.y6e{bottom:657.533333pt;}
.y89{bottom:659.133333pt;}
.y48{bottom:665.533333pt;}
.y13{bottom:665.693333pt;}
.y6d{bottom:675.133333pt;}
.y47{bottom:683.133333pt;}
.y12{bottom:683.293333pt;}
.y6c{bottom:692.893333pt;}
.y46{bottom:700.893333pt;}
.y11{bottom:701.053333pt;}
.y6b{bottom:710.493333pt;}
.y45{bottom:718.493333pt;}
.y10{bottom:718.653333pt;}
.y6a{bottom:728.093333pt;}
.y44{bottom:736.093333pt;}
.yf{bottom:736.253333pt;}
.y69{bottom:745.693333pt;}
.y43{bottom:753.693333pt;}
.ye{bottom:753.853333pt;}
.y68{bottom:763.293333pt;}
.y42{bottom:771.293333pt;}
.yd{bottom:773.533333pt;}
.y41{bottom:789.053333pt;}
.yc{bottom:795.773333pt;}
.y40{bottom:806.693333pt;}
.yb{bottom:813.413333pt;}
.y3f{bottom:824.293333pt;}
.ya{bottom:826.853333pt;}
.y3e{bottom:841.893333pt;}
.y9{bottom:845.893333pt;}
.y3d{bottom:859.493333pt;}
.y8{bottom:866.693333pt;}
.y3c{bottom:877.253333pt;}
.y7{bottom:894.853333pt;}
.y3b{bottom:912.453333pt;}
.y3a{bottom:930.053333pt;}
.y5{bottom:934.373333pt;}
.y39{bottom:947.653333pt;}
.y4{bottom:961.733333pt;}
.y38{bottom:965.413333pt;}
.y37{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.y36{bottom:1000.613333pt;}
.y2{bottom:1016.613333pt;}
.y35{bottom:1018.213333pt;}
.y34{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y33{bottom:1060.640000pt;}
.h16{height:1.787500pt;}
.h11{height:17.600000pt;}
.h12{height:17.632000pt;}
.h13{height:17.760000pt;}
.h7{height:24.131250pt;}
.he{height:34.045056pt;}
.hd{height:34.104680pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.h9{height:38.672812pt;}
.hc{height:40.187451pt;}
.hf{height:40.257832pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h14{height:43.782500pt;}
.h6{height:47.310625pt;}
.h10{height:52.800000pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h15{height:75.072000pt;}
.hb{height:244.004667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:66.080000pt;}
.w5{width:75.712000pt;}
.w7{width:85.152000pt;}
.w8{width:94.400000pt;}
.w9{width:110.240000pt;}
.w4{width:115.552000pt;}
.wa{width:187.386667pt;}
.wb{width:516.453333pt;}
.w3{width:561.613720pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.592000pt;}
.x4{left:26.397749pt;}
.x6{left:31.415684pt;}
.x7{left:32.402119pt;}
.x1{left:48.159988pt;}
.x5{left:62.960026pt;}
.x2{left:67.199988pt;}
.x10{left:72.640000pt;}
.xf{left:76.831988pt;}
.x18{left:96.031988pt;}
.x3{left:116.079991pt;}
.x19{left:170.106667pt;}
.x12{left:188.186667pt;}
.x8{left:228.294425pt;}
.x1a{left:235.386667pt;}
.x13{left:263.906667pt;}
.x9{left:273.558738pt;}
.xd{left:318.626655pt;}
.x14{left:329.986667pt;}
.xe{left:396.893322pt;}
.x15{left:415.133333pt;}
.xa{left:456.760399pt;}
.xb{left:479.817150pt;}
.x16{left:509.533333pt;}
.x17{left:585.253333pt;}
.xc{left:677.733322pt;}
}




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