
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_398409278953fe89bafd8f57.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_79cdb2ff6edb0ad3ca193223.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7d4ab11be898dcd2a2d9eb9d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a2d1611aeb01de4743154a72.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_77590a2ca5a00ca508ecbd73.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_0606898c7604cf19cf76b2c7.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.960000px;}
.ls27{letter-spacing:-0.786000px;}
.ls25{letter-spacing:-0.544800px;}
.ls1c{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.533400px;}
.ls5{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.414000px;}
.ls28{letter-spacing:-0.326400px;}
.ls22{letter-spacing:-0.240600px;}
.ls2a{letter-spacing:-0.226800px;}
.ls8{letter-spacing:-0.226200px;}
.ls9{letter-spacing:-0.115800px;}
.ls18{letter-spacing:-0.107400px;}
.ls12{letter-spacing:-0.078600px;}
.lsb{letter-spacing:-0.064800px;}
.ls19{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.020160px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.023760px;}
.ls31{letter-spacing:0.025200px;}
.lsa{letter-spacing:0.066000px;}
.ls1d{letter-spacing:0.074880px;}
.lsd{letter-spacing:0.075000px;}
.ls1e{letter-spacing:0.140400px;}
.ls1a{letter-spacing:0.174000px;}
.ls2c{letter-spacing:0.174240px;}
.ls16{letter-spacing:0.179280px;}
.lsc{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.186600px;}
.ls17{letter-spacing:0.243600px;}
.ls29{letter-spacing:0.288600px;}
.ls14{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.393600px;}
.ls24{letter-spacing:0.479520px;}
.lsf{letter-spacing:0.637200px;}
.ls21{letter-spacing:0.654000px;}
.ls26{letter-spacing:0.780000px;}
.ls32{letter-spacing:0.858000px;}
.ls2d{letter-spacing:0.894240px;}
.ls6{letter-spacing:0.930000px;}
.ls2f{letter-spacing:1.026000px;}
.ls20{letter-spacing:1.068000px;}
.ls10{letter-spacing:1.116000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls30{letter-spacing:1.398000px;}
.ls1{letter-spacing:2.016000px;}
.ls2e{letter-spacing:12.186720px;}
.ls3{letter-spacing:17.454240px;}
.ls2b{letter-spacing:42.426720px;}
.ls15{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-21.641760px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsb{word-spacing:-13.811760px;}
.ws12{word-spacing:-13.794360px;}
.wsf{word-spacing:-13.749360px;}
.wse{word-spacing:-13.685040px;}
.ws10{word-spacing:-13.646160px;}
.ws7{word-spacing:-13.580760px;}
.ws14{word-spacing:-13.530960px;}
.ws9{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.427160px;}
.wsc{word-spacing:-13.398360px;}
.ws13{word-spacing:-13.278960px;}
.ws11{word-spacing:-13.265160px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1447.776240px;}
._2{margin-left:-1325.957760px;}
._3{margin-left:-1000.189440px;}
._5{margin-left:-578.174400px;}
._7{margin-left:-4.329600px;}
._6{margin-left:-3.312000px;}
._1a{margin-left:-2.283120px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._c{width:2.437200px;}
._a{width:3.439440px;}
._d{width:4.887120px;}
._e{width:6.752880px;}
._f{width:8.545680px;}
._14{width:9.674880px;}
._17{width:10.922400px;}
._b{width:11.972160px;}
._12{width:14.940000px;}
._11{width:16.852320px;}
._10{width:17.868240px;}
._13{width:19.720800px;}
._18{width:21.394080px;}
._19{width:22.429920px;}
._1b{width:35.178720px;}
._1c{width:36.354000px;}
._15{width:38.047200px;}
._16{width:39.142800px;}
._9{width:48.647760px;}
._8{width:50.172480px;}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(94,94,94);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:7.020000px;}
.yd8{bottom:28.080000px;}
.yd5{bottom:35.490000px;}
.yd7{bottom:49.530000px;}
.y6{bottom:57.420000px;}
.yd6{bottom:70.590000px;}
.y83{bottom:86.220000px;}
.y32{bottom:87.300000px;}
.yd3{bottom:92.160000px;}
.y90{bottom:95.220000px;}
.yba{bottom:101.340000px;}
.y66{bottom:104.220000px;}
.y82{bottom:107.280000px;}
.y31{bottom:108.360000px;}
.yd2{bottom:113.220000px;}
.y8f{bottom:116.280000px;}
.yd4{bottom:121.680000px;}
.yb9{bottom:122.400000px;}
.y65{bottom:125.280000px;}
.y81{bottom:128.340000px;}
.y30{bottom:129.420000px;}
.yd1{bottom:134.280000px;}
.y8e{bottom:137.340000px;}
.yb8{bottom:143.460000px;}
.y64{bottom:146.340000px;}
.y80{bottom:149.400000px;}
.y2f{bottom:150.480000px;}
.yd0{bottom:155.370000px;}
.y8d{bottom:158.430000px;}
.yb7{bottom:164.550000px;}
.y63{bottom:167.430000px;}
.y7f{bottom:170.490000px;}
.y2e{bottom:171.570000px;}
.ycf{bottom:176.430000px;}
.y8c{bottom:179.490000px;}
.y62{bottom:188.490000px;}
.y7e{bottom:191.550000px;}
.y2d{bottom:192.630000px;}
.yb6{bottom:194.610000px;}
.yce{bottom:197.490000px;}
.y8b{bottom:200.550000px;}
.y61{bottom:209.550000px;}
.y7d{bottom:212.610000px;}
.y2c{bottom:213.690000px;}
.yb5{bottom:215.670000px;}
.ycd{bottom:218.550000px;}
.y8a{bottom:221.610000px;}
.y60{bottom:230.610000px;}
.y7c{bottom:233.670000px;}
.y2b{bottom:234.750000px;}
.yb4{bottom:236.730000px;}
.ycc{bottom:239.610000px;}
.y89{bottom:242.670000px;}
.y5f{bottom:251.670000px;}
.y7b{bottom:254.730000px;}
.y2a{bottom:255.810000px;}
.yb3{bottom:257.790000px;}
.ycb{bottom:260.670000px;}
.y88{bottom:263.730000px;}
.y5e{bottom:272.730000px;}
.y96{bottom:275.790000px;}
.y29{bottom:276.870000px;}
.yb2{bottom:278.850000px;}
.yca{bottom:281.730000px;}
.y7a{bottom:284.790000px;}
.y5d{bottom:293.790000px;}
.y95{bottom:296.850000px;}
.y28{bottom:297.930000px;}
.yb1{bottom:299.910000px;}
.yc9{bottom:302.790000px;}
.y79{bottom:305.850000px;}
.y5c{bottom:314.850000px;}
.y94{bottom:317.910000px;}
.y27{bottom:318.990000px;}
.yc8{bottom:323.850000px;}
.y78{bottom:326.910000px;}
.yb0{bottom:329.970000px;}
.y5b{bottom:335.910000px;}
.y26{bottom:340.050000px;}
.yc7{bottom:344.910000px;}
.y77{bottom:347.970000px;}
.yaf{bottom:351.030000px;}
.y5a{bottom:356.970000px;}
.y25{bottom:361.110000px;}
.yc6{bottom:365.970000px;}
.y76{bottom:369.030000px;}
.yae{bottom:372.090000px;}
.y59{bottom:378.030000px;}
.y24{bottom:382.170000px;}
.yc5{bottom:387.030000px;}
.y75{bottom:390.090000px;}
.yad{bottom:393.150000px;}
.y58{bottom:399.090000px;}
.y23{bottom:403.275000px;}
.yc4{bottom:408.135000px;}
.y74{bottom:411.195000px;}
.yac{bottom:414.255000px;}
.y57{bottom:420.195000px;}
.y22{bottom:424.335000px;}
.yc3{bottom:429.195000px;}
.y73{bottom:432.255000px;}
.yab{bottom:435.315000px;}
.y56{bottom:441.255000px;}
.y21{bottom:445.395000px;}
.yc2{bottom:450.255000px;}
.y72{bottom:453.315000px;}
.y55{bottom:462.315000px;}
.yaa{bottom:465.375000px;}
.y20{bottom:466.455000px;}
.yc1{bottom:471.315000px;}
.y93{bottom:474.375000px;}
.y54{bottom:483.375000px;}
.ya9{bottom:486.435000px;}
.y1f{bottom:487.515000px;}
.yc0{bottom:492.375000px;}
.y92{bottom:495.435000px;}
.y53{bottom:504.435000px;}
.ya8{bottom:507.495000px;}
.y1e{bottom:510.915000px;}
.ybf{bottom:513.435000px;}
.y91{bottom:516.495000px;}
.y52{bottom:525.495000px;}
.ya7{bottom:528.555000px;}
.y1d{bottom:531.795000px;}
.ybe{bottom:534.495000px;}
.y51{bottom:546.555000px;}
.ya6{bottom:549.615000px;}
.ybd{bottom:555.555000px;}
.y1c{bottom:561.855000px;}
.y50{bottom:567.615000px;}
.ya5{bottom:570.675000px;}
.ybc{bottom:576.615000px;}
.y1b{bottom:582.915000px;}
.y4f{bottom:588.675000px;}
.ya4{bottom:591.735000px;}
.ybb{bottom:597.675000px;}
.y1a{bottom:603.975000px;}
.y4e{bottom:609.735000px;}
.ya3{bottom:612.795000px;}
.y87{bottom:618.735000px;}
.y19{bottom:625.035000px;}
.y4d{bottom:630.795000px;}
.y86{bottom:639.795000px;}
.ya2{bottom:642.675000px;}
.y18{bottom:646.095000px;}
.y4c{bottom:651.705000px;}
.y85{bottom:660.705000px;}
.ya1{bottom:663.765000px;}
.y17{bottom:667.185000px;}
.y4b{bottom:672.765000px;}
.y84{bottom:681.765000px;}
.ya0{bottom:684.825000px;}
.y16{bottom:688.245000px;}
.y4a{bottom:693.825000px;}
.y71{bottom:702.825000px;}
.y9f{bottom:705.885000px;}
.y15{bottom:709.305000px;}
.y49{bottom:714.885000px;}
.y70{bottom:723.885000px;}
.y9e{bottom:726.945000px;}
.y14{bottom:730.365000px;}
.y48{bottom:735.945000px;}
.y6f{bottom:744.945000px;}
.y9d{bottom:748.005000px;}
.y13{bottom:751.425000px;}
.y47{bottom:757.005000px;}
.y6e{bottom:766.005000px;}
.y9c{bottom:769.065000px;}
.y12{bottom:772.485000px;}
.y46{bottom:778.065000px;}
.y6d{bottom:787.065000px;}
.y9b{bottom:790.125000px;}
.y11{bottom:793.545000px;}
.y45{bottom:799.125000px;}
.y6c{bottom:808.125000px;}
.y10{bottom:814.605000px;}
.y44{bottom:820.185000px;}
.y6b{bottom:829.185000px;}
.yf{bottom:835.665000px;}
.y43{bottom:841.245000px;}
.y6a{bottom:850.245000px;}
.ye{bottom:856.725000px;}
.y42{bottom:862.305000px;}
.y69{bottom:871.305000px;}
.yd{bottom:879.945000px;}
.y41{bottom:883.365000px;}
.y68{bottom:892.365000px;}
.y40{bottom:904.470000px;}
.yc{bottom:906.270000px;}
.y67{bottom:913.470000px;}
.yb{bottom:924.630000px;}
.y9a{bottom:925.530000px;}
.y3f{bottom:934.530000px;}
.ya{bottom:941.370000px;}
.y99{bottom:946.590000px;}
.y3e{bottom:955.590000px;}
.y9{bottom:963.690000px;}
.y98{bottom:967.650000px;}
.y3d{bottom:976.650000px;}
.y97{bottom:988.710000px;}
.y8{bottom:988.890000px;}
.y3c{bottom:997.710000px;}
.y3b{bottom:1018.770000px;}
.y7{bottom:1022.550000px;}
.y3a{bottom:1039.830000px;}
.y39{bottom:1060.890000px;}
.y5{bottom:1061.250000px;}
.y38{bottom:1081.950000px;}
.y4{bottom:1093.470000px;}
.y37{bottom:1103.010000px;}
.y36{bottom:1124.070000px;}
.y3{bottom:1125.510000px;}
.y35{bottom:1145.130000px;}
.y2{bottom:1157.760000px;}
.y34{bottom:1166.220000px;}
.y1{bottom:1192.320000px;}
.y33{bottom:1194.120000px;}
.hb{height:2.864531px;}
.h7{height:38.671172px;}
.h8{height:40.309805px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.ha{height:84.996000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.785000px;}
.x1{left:53.999987px;}
.x2{left:80.999987px;}
.x3{left:107.135987px;}
.x4{left:191.370000px;}
.x5{left:264.810000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls27{letter-spacing:-0.698667pt;}
.ls25{letter-spacing:-0.484267pt;}
.ls1c{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.474133pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.368000pt;}
.ls28{letter-spacing:-0.290133pt;}
.ls22{letter-spacing:-0.213867pt;}
.ls2a{letter-spacing:-0.201600pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls18{letter-spacing:-0.095467pt;}
.ls12{letter-spacing:-0.069867pt;}
.lsb{letter-spacing:-0.057600pt;}
.ls19{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.017920pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.021120pt;}
.ls31{letter-spacing:0.022400pt;}
.lsa{letter-spacing:0.058667pt;}
.ls1d{letter-spacing:0.066560pt;}
.lsd{letter-spacing:0.066667pt;}
.ls1e{letter-spacing:0.124800pt;}
.ls1a{letter-spacing:0.154667pt;}
.ls2c{letter-spacing:0.154880pt;}
.ls16{letter-spacing:0.159360pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.165867pt;}
.ls17{letter-spacing:0.216533pt;}
.ls29{letter-spacing:0.256533pt;}
.ls14{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.349867pt;}
.ls24{letter-spacing:0.426240pt;}
.lsf{letter-spacing:0.566400pt;}
.ls21{letter-spacing:0.581333pt;}
.ls26{letter-spacing:0.693333pt;}
.ls32{letter-spacing:0.762667pt;}
.ls2d{letter-spacing:0.794880pt;}
.ls6{letter-spacing:0.826667pt;}
.ls2f{letter-spacing:0.912000pt;}
.ls20{letter-spacing:0.949333pt;}
.ls10{letter-spacing:0.992000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls30{letter-spacing:1.242667pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2e{letter-spacing:10.832640pt;}
.ls3{letter-spacing:15.514880pt;}
.ls2b{letter-spacing:37.712640pt;}
.ls15{letter-spacing:40.912640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-19.237120pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsb{word-spacing:-12.277120pt;}
.ws12{word-spacing:-12.261653pt;}
.wsf{word-spacing:-12.221653pt;}
.wse{word-spacing:-12.164480pt;}
.ws10{word-spacing:-12.129920pt;}
.ws7{word-spacing:-12.071787pt;}
.ws14{word-spacing:-12.027520pt;}
.ws9{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.935253pt;}
.wsc{word-spacing:-11.909653pt;}
.ws13{word-spacing:-11.803520pt;}
.ws11{word-spacing:-11.791253pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1286.912213pt;}
._2{margin-left:-1178.629120pt;}
._3{margin-left:-889.057280pt;}
._5{margin-left:-513.932800pt;}
._7{margin-left:-3.848533pt;}
._6{margin-left:-2.944000pt;}
._1a{margin-left:-2.029440pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._c{width:2.166400pt;}
._a{width:3.057280pt;}
._d{width:4.344107pt;}
._e{width:6.002560pt;}
._f{width:7.596160pt;}
._14{width:8.599893pt;}
._17{width:9.708800pt;}
._b{width:10.641920pt;}
._12{width:13.280000pt;}
._11{width:14.979840pt;}
._10{width:15.882880pt;}
._13{width:17.529600pt;}
._18{width:19.016960pt;}
._19{width:19.937707pt;}
._1b{width:31.269973pt;}
._1c{width:32.314667pt;}
._15{width:33.819733pt;}
._16{width:34.793600pt;}
._9{width:43.242453pt;}
._8{width:44.597760pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:6.240000pt;}
.yd8{bottom:24.960000pt;}
.yd5{bottom:31.546667pt;}
.yd7{bottom:44.026667pt;}
.y6{bottom:51.040000pt;}
.yd6{bottom:62.746667pt;}
.y83{bottom:76.640000pt;}
.y32{bottom:77.600000pt;}
.yd3{bottom:81.920000pt;}
.y90{bottom:84.640000pt;}
.yba{bottom:90.080000pt;}
.y66{bottom:92.640000pt;}
.y82{bottom:95.360000pt;}
.y31{bottom:96.320000pt;}
.yd2{bottom:100.640000pt;}
.y8f{bottom:103.360000pt;}
.yd4{bottom:108.160000pt;}
.yb9{bottom:108.800000pt;}
.y65{bottom:111.360000pt;}
.y81{bottom:114.080000pt;}
.y30{bottom:115.040000pt;}
.yd1{bottom:119.360000pt;}
.y8e{bottom:122.080000pt;}
.yb8{bottom:127.520000pt;}
.y64{bottom:130.080000pt;}
.y80{bottom:132.800000pt;}
.y2f{bottom:133.760000pt;}
.yd0{bottom:138.106667pt;}
.y8d{bottom:140.826667pt;}
.yb7{bottom:146.266667pt;}
.y63{bottom:148.826667pt;}
.y7f{bottom:151.546667pt;}
.y2e{bottom:152.506667pt;}
.ycf{bottom:156.826667pt;}
.y8c{bottom:159.546667pt;}
.y62{bottom:167.546667pt;}
.y7e{bottom:170.266667pt;}
.y2d{bottom:171.226667pt;}
.yb6{bottom:172.986667pt;}
.yce{bottom:175.546667pt;}
.y8b{bottom:178.266667pt;}
.y61{bottom:186.266667pt;}
.y7d{bottom:188.986667pt;}
.y2c{bottom:189.946667pt;}
.yb5{bottom:191.706667pt;}
.ycd{bottom:194.266667pt;}
.y8a{bottom:196.986667pt;}
.y60{bottom:204.986667pt;}
.y7c{bottom:207.706667pt;}
.y2b{bottom:208.666667pt;}
.yb4{bottom:210.426667pt;}
.ycc{bottom:212.986667pt;}
.y89{bottom:215.706667pt;}
.y5f{bottom:223.706667pt;}
.y7b{bottom:226.426667pt;}
.y2a{bottom:227.386667pt;}
.yb3{bottom:229.146667pt;}
.ycb{bottom:231.706667pt;}
.y88{bottom:234.426667pt;}
.y5e{bottom:242.426667pt;}
.y96{bottom:245.146667pt;}
.y29{bottom:246.106667pt;}
.yb2{bottom:247.866667pt;}
.yca{bottom:250.426667pt;}
.y7a{bottom:253.146667pt;}
.y5d{bottom:261.146667pt;}
.y95{bottom:263.866667pt;}
.y28{bottom:264.826667pt;}
.yb1{bottom:266.586667pt;}
.yc9{bottom:269.146667pt;}
.y79{bottom:271.866667pt;}
.y5c{bottom:279.866667pt;}
.y94{bottom:282.586667pt;}
.y27{bottom:283.546667pt;}
.yc8{bottom:287.866667pt;}
.y78{bottom:290.586667pt;}
.yb0{bottom:293.306667pt;}
.y5b{bottom:298.586667pt;}
.y26{bottom:302.266667pt;}
.yc7{bottom:306.586667pt;}
.y77{bottom:309.306667pt;}
.yaf{bottom:312.026667pt;}
.y5a{bottom:317.306667pt;}
.y25{bottom:320.986667pt;}
.yc6{bottom:325.306667pt;}
.y76{bottom:328.026667pt;}
.yae{bottom:330.746667pt;}
.y59{bottom:336.026667pt;}
.y24{bottom:339.706667pt;}
.yc5{bottom:344.026667pt;}
.y75{bottom:346.746667pt;}
.yad{bottom:349.466667pt;}
.y58{bottom:354.746667pt;}
.y23{bottom:358.466667pt;}
.yc4{bottom:362.786667pt;}
.y74{bottom:365.506667pt;}
.yac{bottom:368.226667pt;}
.y57{bottom:373.506667pt;}
.y22{bottom:377.186667pt;}
.yc3{bottom:381.506667pt;}
.y73{bottom:384.226667pt;}
.yab{bottom:386.946667pt;}
.y56{bottom:392.226667pt;}
.y21{bottom:395.906667pt;}
.yc2{bottom:400.226667pt;}
.y72{bottom:402.946667pt;}
.y55{bottom:410.946667pt;}
.yaa{bottom:413.666667pt;}
.y20{bottom:414.626667pt;}
.yc1{bottom:418.946667pt;}
.y93{bottom:421.666667pt;}
.y54{bottom:429.666667pt;}
.ya9{bottom:432.386667pt;}
.y1f{bottom:433.346667pt;}
.yc0{bottom:437.666667pt;}
.y92{bottom:440.386667pt;}
.y53{bottom:448.386667pt;}
.ya8{bottom:451.106667pt;}
.y1e{bottom:454.146667pt;}
.ybf{bottom:456.386667pt;}
.y91{bottom:459.106667pt;}
.y52{bottom:467.106667pt;}
.ya7{bottom:469.826667pt;}
.y1d{bottom:472.706667pt;}
.ybe{bottom:475.106667pt;}
.y51{bottom:485.826667pt;}
.ya6{bottom:488.546667pt;}
.ybd{bottom:493.826667pt;}
.y1c{bottom:499.426667pt;}
.y50{bottom:504.546667pt;}
.ya5{bottom:507.266667pt;}
.ybc{bottom:512.546667pt;}
.y1b{bottom:518.146667pt;}
.y4f{bottom:523.266667pt;}
.ya4{bottom:525.986667pt;}
.ybb{bottom:531.266667pt;}
.y1a{bottom:536.866667pt;}
.y4e{bottom:541.986667pt;}
.ya3{bottom:544.706667pt;}
.y87{bottom:549.986667pt;}
.y19{bottom:555.586667pt;}
.y4d{bottom:560.706667pt;}
.y86{bottom:568.706667pt;}
.ya2{bottom:571.266667pt;}
.y18{bottom:574.306667pt;}
.y4c{bottom:579.293333pt;}
.y85{bottom:587.293333pt;}
.ya1{bottom:590.013333pt;}
.y17{bottom:593.053333pt;}
.y4b{bottom:598.013333pt;}
.y84{bottom:606.013333pt;}
.ya0{bottom:608.733333pt;}
.y16{bottom:611.773333pt;}
.y4a{bottom:616.733333pt;}
.y71{bottom:624.733333pt;}
.y9f{bottom:627.453333pt;}
.y15{bottom:630.493333pt;}
.y49{bottom:635.453333pt;}
.y70{bottom:643.453333pt;}
.y9e{bottom:646.173333pt;}
.y14{bottom:649.213333pt;}
.y48{bottom:654.173333pt;}
.y6f{bottom:662.173333pt;}
.y9d{bottom:664.893333pt;}
.y13{bottom:667.933333pt;}
.y47{bottom:672.893333pt;}
.y6e{bottom:680.893333pt;}
.y9c{bottom:683.613333pt;}
.y12{bottom:686.653333pt;}
.y46{bottom:691.613333pt;}
.y6d{bottom:699.613333pt;}
.y9b{bottom:702.333333pt;}
.y11{bottom:705.373333pt;}
.y45{bottom:710.333333pt;}
.y6c{bottom:718.333333pt;}
.y10{bottom:724.093333pt;}
.y44{bottom:729.053333pt;}
.y6b{bottom:737.053333pt;}
.yf{bottom:742.813333pt;}
.y43{bottom:747.773333pt;}
.y6a{bottom:755.773333pt;}
.ye{bottom:761.533333pt;}
.y42{bottom:766.493333pt;}
.y69{bottom:774.493333pt;}
.yd{bottom:782.173333pt;}
.y41{bottom:785.213333pt;}
.y68{bottom:793.213333pt;}
.y40{bottom:803.973333pt;}
.yc{bottom:805.573333pt;}
.y67{bottom:811.973333pt;}
.yb{bottom:821.893333pt;}
.y9a{bottom:822.693333pt;}
.y3f{bottom:830.693333pt;}
.ya{bottom:836.773333pt;}
.y99{bottom:841.413333pt;}
.y3e{bottom:849.413333pt;}
.y9{bottom:856.613333pt;}
.y98{bottom:860.133333pt;}
.y3d{bottom:868.133333pt;}
.y97{bottom:878.853333pt;}
.y8{bottom:879.013333pt;}
.y3c{bottom:886.853333pt;}
.y3b{bottom:905.573333pt;}
.y7{bottom:908.933333pt;}
.y3a{bottom:924.293333pt;}
.y39{bottom:943.013333pt;}
.y5{bottom:943.333333pt;}
.y38{bottom:961.733333pt;}
.y4{bottom:971.973333pt;}
.y37{bottom:980.453333pt;}
.y36{bottom:999.173333pt;}
.y3{bottom:1000.453333pt;}
.y35{bottom:1017.893333pt;}
.y2{bottom:1029.120000pt;}
.y34{bottom:1036.640000pt;}
.y1{bottom:1059.840000pt;}
.y33{bottom:1061.440000pt;}
.hb{height:2.546250pt;}
.h7{height:34.374375pt;}
.h8{height:35.830937pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.ha{height:75.552000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.920000pt;}
.x1{left:47.999988pt;}
.x2{left:71.999988pt;}
.x3{left:95.231988pt;}
.x4{left:170.106667pt;}
.x5{left:235.386667pt;}
}




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