
    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_462d6b354eb5c5adff6cf6bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_de9509e8bf4936290bc10eaf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_e348c96c83e8df3f43b0c0f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_f037681d20080ded344e55a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_a6fe38e9729fbb1c8bc3e9cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_013155f6f55ae40da308f8f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:2.549805;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_49d7d3fbe48c71ffc16bfad6.woff2')format("woff");}.ff7{font-family:ff7;line-height:2.549805;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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:25.920000px;}
.v1{vertical-align:48.960000px;}
.v4{vertical-align:64.080000px;}
.ls7{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.115200px;}
.ls2{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.027360px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.093600px;}
.lsb{letter-spacing:0.100800px;}
.ls8{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.180000px;}
.lse{letter-spacing:0.189600px;}
.ls10{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.305400px;}
.ls11{letter-spacing:0.334080px;}
.ls3{letter-spacing:0.360000px;}
.lsa{letter-spacing:50.751360px;}
.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;}
}
.ws7{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.220000px;}
.wsd{word-spacing:-14.192640px;}
.wsa{word-spacing:-10.168800px;}
.ws9{word-spacing:-9.979200px;}
.wsb{word-spacing:-8.136000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-5.100480px;}
._14{margin-left:-3.974400px;}
._5{margin-left:-2.947680px;}
._0{margin-left:-1.324800px;}
._1{width:1.212000px;}
._13{width:2.254080px;}
._e{width:3.286800px;}
._8{width:4.721040px;}
._12{width:6.377520px;}
._6{width:8.306640px;}
._7{width:9.425280px;}
._2{width:10.458000px;}
._3{width:12.310560px;}
._d{width:13.744800px;}
._17{width:17.143200px;}
._4{width:18.226800px;}
._18{width:20.233920px;}
._a{width:21.240480px;}
._9{width:22.529520px;}
._f{width:24.322320px;}
._c{width:25.637040px;}
._b{width:26.652960px;}
._16{width:27.730080px;}
._10{width:32.074320px;}
._11{width:33.123840px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.000000px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.240000px;}
.ydf{bottom:3.420000px;}
.yec{bottom:3.465000px;}
.ye7{bottom:12.420000px;}
.y11{bottom:14.400000px;}
.y18{bottom:21.240000px;}
.ye8{bottom:21.600000px;}
.y33{bottom:29.520000px;}
.y17{bottom:38.520000px;}
.y32{bottom:46.800000px;}
.y16{bottom:55.830000px;}
.y31{bottom:63.900000px;}
.y15{bottom:73.110000px;}
.y30{bottom:81.180000px;}
.y14{bottom:90.390000px;}
.y19{bottom:95.610000px;}
.y2f{bottom:98.460000px;}
.y13{bottom:105.330000px;}
.y2e{bottom:115.740000px;}
.y2d{bottom:133.020000px;}
.y2c{bottom:150.345000px;}
.y41{bottom:167.250000px;}
.y2b{bottom:167.445000px;}
.yc3{bottom:169.770000px;}
.yf7{bottom:170.850000px;}
.y2a{bottom:184.725000px;}
.y40{bottom:186.330000px;}
.yc2{bottom:187.950000px;}
.yf6{bottom:189.030000px;}
.y74{bottom:190.470000px;}
.y29{bottom:202.005000px;}
.y3f{bottom:205.230000px;}
.yc1{bottom:205.950000px;}
.yf5{bottom:207.210000px;}
.y73{bottom:213.870000px;}
.ya2{bottom:217.470000px;}
.y28{bottom:219.285000px;}
.yc0{bottom:224.130000px;}
.yf4{bottom:225.210000px;}
.y3b{bottom:228.285000px;}
.y3e{bottom:233.130000px;}
.ya1{bottom:235.650000px;}
.y27{bottom:236.565000px;}
.ybf{bottom:242.310000px;}
.yf3{bottom:243.390000px;}
.y3a{bottom:245.565000px;}
.y3d{bottom:251.850000px;}
.y72{bottom:252.030000px;}
.ya0{bottom:253.830000px;}
.y26{bottom:253.845000px;}
.ybe{bottom:260.310000px;}
.yf2{bottom:261.390000px;}
.y39{bottom:262.845000px;}
.y1a{bottom:268.050000px;}
.y25{bottom:270.945000px;}
.y71{bottom:271.110000px;}
.y9f{bottom:272.010000px;}
.y38{bottom:280.125000px;}
.ybd{bottom:287.310000px;}
.y24{bottom:288.225000px;}
.y70{bottom:290.010000px;}
.y37{bottom:297.405000px;}
.yf1{bottom:297.570000px;}
.y11d{bottom:302.790000px;}
.ybc{bottom:305.490000px;}
.y23{bottom:305.505000px;}
.y9e{bottom:308.190000px;}
.y6f{bottom:308.910000px;}
.y36{bottom:314.505000px;}
.y3c{bottom:319.725000px;}
.y22{bottom:322.785000px;}
.ybb{bottom:323.670000px;}
.y9d{bottom:326.190000px;}
.y11c{bottom:327.090000px;}
.y6e{bottom:327.990000px;}
.y35{bottom:329.445000px;}
.yf0{bottom:331.950000px;}
.y21{bottom:340.065000px;}
.yba{bottom:341.850000px;}
.y11b{bottom:343.470000px;}
.y9c{bottom:344.370000px;}
.yef{bottom:349.950000px;}
.y6d{bottom:351.210000px;}
.y20{bottom:357.165000px;}
.yb9{bottom:359.850000px;}
.y9b{bottom:362.550000px;}
.yee{bottom:368.130000px;}
.y6c{bottom:370.470000px;}
.y1f{bottom:374.445000px;}
.yb8{bottom:378.030000px;}
.y9a{bottom:380.550000px;}
.y11a{bottom:380.730000px;}
.yed{bottom:386.130000px;}
.y6b{bottom:389.370000px;}
.y1e{bottom:391.755000px;}
.yb7{bottom:396.210000px;}
.y119{bottom:397.110000px;}
.y99{bottom:398.730000px;}
.yeb{bottom:404.310000px;}
.y6a{bottom:408.315000px;}
.y1d{bottom:409.035000px;}
.yb6{bottom:414.255000px;}
.y98{bottom:416.955000px;}
.y118{bottom:418.035000px;}
.yea{bottom:422.535000px;}
.y1c{bottom:426.315000px;}
.y69{bottom:427.395000px;}
.yb5{bottom:432.435000px;}
.y117{bottom:434.415000px;}
.y97{bottom:434.955000px;}
.ye9{bottom:440.535000px;}
.y1b{bottom:441.255000px;}
.y68{bottom:446.295000px;}
.y116{bottom:450.795000px;}
.y96{bottom:453.135000px;}
.ye6{bottom:458.715000px;}
.yb4{bottom:459.435000px;}
.y67{bottom:465.375000px;}
.y95{bottom:471.135000px;}
.y115{bottom:471.675000px;}
.yb3{bottom:477.615000px;}
.y66{bottom:484.275000px;}
.y114{bottom:488.055000px;}
.y94{bottom:489.315000px;}
.ye5{bottom:494.895000px;}
.yb2{bottom:495.795000px;}
.y65{bottom:503.175000px;}
.y113{bottom:504.435000px;}
.ye4{bottom:513.075000px;}
.yb1{bottom:513.795000px;}
.y93{bottom:516.495000px;}
.y64{bottom:522.255000px;}
.y112{bottom:525.315000px;}
.ye3{bottom:531.075000px;}
.yb0{bottom:531.975000px;}
.y92{bottom:540.975000px;}
.y63{bottom:541.155000px;}
.y111{bottom:541.695000px;}
.y91{bottom:546.735000px;}
.ye2{bottom:549.255000px;}
.yaf{bottom:549.975000px;}
.y8f{bottom:556.995000px;}
.y110{bottom:558.075000px;}
.y90{bottom:563.475000px;}
.y62{bottom:564.555000px;}
.ye1{bottom:567.435000px;}
.yae{bottom:568.155000px;}
.y10f{bottom:578.955000px;}
.y61{bottom:583.635000px;}
.ye0{bottom:585.435000px;}
.yad{bottom:586.335000px;}
.y10e{bottom:595.335000px;}
.y8e{bottom:596.955000px;}
.y60{bottom:602.535000px;}
.y12{bottom:603.975000px;}
.yac{bottom:604.335000px;}
.y8d{bottom:615.135000px;}
.y10d{bottom:616.215000px;}
.y5f{bottom:621.615000px;}
.yde{bottom:626.655000px;}
.yab{bottom:631.515000px;}
.y10c{bottom:632.595000px;}
.y8c{bottom:633.315000px;}
.y5e{bottom:640.515000px;}
.y10b{bottom:653.505000px;}
.ydd{bottom:653.685000px;}
.yaa{bottom:659.445000px;}
.y5d{bottom:659.625000px;}
.y8b{bottom:660.345000px;}
.y10a{bottom:669.885000px;}
.ydc{bottom:671.865000px;}
.ya9{bottom:677.625000px;}
.y5c{bottom:678.525000px;}
.y109{bottom:686.265000px;}
.y8a{bottom:687.525000px;}
.ydb{bottom:690.045000px;}
.ya8{bottom:695.805000px;}
.y5b{bottom:701.745000px;}
.y89{bottom:705.705000px;}
.y108{bottom:707.145000px;}
.yda{bottom:708.045000px;}
.ya7{bottom:713.805000px;}
.y10{bottom:715.785000px;}
.y5a{bottom:721.005000px;}
.y107{bottom:723.525000px;}
.yd9{bottom:726.225000px;}
.ya6{bottom:731.985000px;}
.y88{bottom:732.885000px;}
.y59{bottom:739.905000px;}
.yd8{bottom:753.225000px;}
.y58{bottom:758.985000px;}
.ya5{bottom:759.165000px;}
.yf{bottom:760.245000px;}
.y87{bottom:760.605000px;}
.y106{bottom:760.785000px;}
.yd7{bottom:771.405000px;}
.y105{bottom:777.165000px;}
.ye{bottom:777.345000px;}
.y57{bottom:777.885000px;}
.y86{bottom:778.785000px;}
.yd6{bottom:789.585000px;}
.yd{bottom:794.625000px;}
.ya4{bottom:795.885000px;}
.y56{bottom:796.965000px;}
.y104{bottom:798.225000px;}
.yd5{bottom:807.585000px;}
.ya3{bottom:810.645000px;}
.yc{bottom:812.085000px;}
.y103{bottom:814.605000px;}
.y85{bottom:814.965000px;}
.y55{bottom:815.865000px;}
.yd4{bottom:825.765000px;}
.yb{bottom:830.265000px;}
.y54{bottom:834.765000px;}
.y102{bottom:835.485000px;}
.y84{bottom:842.145000px;}
.yd3{bottom:843.945000px;}
.ya{bottom:848.265000px;}
.y101{bottom:851.865000px;}
.y53{bottom:858.165000px;}
.y83{bottom:860.325000px;}
.yd2{bottom:861.945000px;}
.y100{bottom:872.745000px;}
.y52{bottom:877.245000px;}
.y82{bottom:878.325000px;}
.yd1{bottom:880.125000px;}
.y9{bottom:884.985000px;}
.yff{bottom:889.125000px;}
.y51{bottom:896.325000px;}
.y81{bottom:896.505000px;}
.y8{bottom:905.730000px;}
.yd0{bottom:907.170000px;}
.y80{bottom:914.550000px;}
.y50{bottom:915.270000px;}
.yfe{bottom:923.910000px;}
.ycf{bottom:925.350000px;}
.y7f{bottom:932.730000px;}
.y4f{bottom:934.170000px;}
.yce{bottom:943.530000px;}
.y7{bottom:944.430000px;}
.y7e{bottom:950.910000px;}
.yfd{bottom:951.990000px;}
.y4e{bottom:953.250000px;}
.ycd{bottom:961.530000px;}
.y6{bottom:965.130000px;}
.y7d{bottom:968.910000px;}
.y4d{bottom:976.470000px;}
.ycc{bottom:979.710000px;}
.y7c{bottom:987.090000px;}
.y4c{bottom:995.730000px;}
.ycb{bottom:997.890000px;}
.y5{bottom:1003.830000px;}
.y7b{bottom:1005.270000px;}
.yfc{bottom:1006.890000px;}
.y4b{bottom:1014.630000px;}
.yca{bottom:1015.890000px;}
.y7a{bottom:1023.270000px;}
.yfb{bottom:1025.070000px;}
.y4a{bottom:1033.530000px;}
.yc9{bottom:1034.070000px;}
.y4{bottom:1038.570000px;}
.y79{bottom:1041.450000px;}
.yfa{bottom:1043.070000px;}
.yc8{bottom:1052.070000px;}
.y49{bottom:1052.610000px;}
.y78{bottom:1059.450000px;}
.yf9{bottom:1070.250000px;}
.y48{bottom:1071.510000px;}
.y77{bottom:1077.630000px;}
.yc7{bottom:1079.250000px;}
.y47{bottom:1090.590000px;}
.yf8{bottom:1097.250000px;}
.yc6{bottom:1097.430000px;}
.y76{bottom:1104.810000px;}
.y46{bottom:1113.810000px;}
.yc5{bottom:1115.430000px;}
.y75{bottom:1132.710000px;}
.y45{bottom:1132.890000px;}
.yc4{bottom:1133.610000px;}
.y3{bottom:1168.200000px;}
.y44{bottom:1169.460000px;}
.y43{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y42{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hc{height:17.657227px;}
.h19{height:18.000000px;}
.h18{height:18.180000px;}
.h1b{height:18.216000px;}
.h1a{height:36.180000px;}
.h9{height:40.320000px;}
.h17{height:45.478125px;}
.hf{height:45.549492px;}
.h1c{height:55.824609px;}
.hd{height:58.621992px;}
.h7{height:58.651172px;}
.h8{height:60.226875px;}
.h6{height:62.184375px;}
.h5{height:63.855000px;}
.h2{height:65.010937px;}
.ha{height:66.757500px;}
.h11{height:70.664062px;}
.h4{height:72.562500px;}
.h15{height:82.837266px;}
.h14{height:94.568555px;}
.h3{height:96.508125px;}
.hb{height:109.476000px;}
.h13{height:131.797266px;}
.h12{height:153.341016px;}
.h16{height:162.987187px;}
.h10{height:333.750000px;}
.he{height:445.395000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w7{width:174.810000px;}
.w8{width:203.790000px;}
.w3{width:237.810000px;}
.w6{width:298.650000px;}
.w5{width:407.055000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x5{left:108.035987px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.xc{left:165.989987px;}
.xe{left:175.709987px;}
.xf{left:178.769987px;}
.xa{left:185.430000px;}
.x15{left:254.549987px;}
.x3{left:314.354987px;}
.x11{left:330.914987px;}
.x14{left:351.614987px;}
.x8{left:360.615000px;}
.xd{left:375.374987px;}
.x9{left:378.255000px;}
.x16{left:406.695000px;}
.x10{left:496.364987px;}
.x12{left:508.964987px;}
.x17{left:581.505000px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
.x13{left:805.649987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:23.040000pt;}
.v1{vertical-align:43.520000pt;}
.v4{vertical-align:56.960000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.102400pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.024320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.083200pt;}
.lsb{letter-spacing:0.089600pt;}
.ls8{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.168533pt;}
.ls10{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.271467pt;}
.ls11{letter-spacing:0.296960pt;}
.ls3{letter-spacing:0.320000pt;}
.lsa{letter-spacing:45.112320pt;}
.ws7{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.640000pt;}
.wsd{word-spacing:-12.615680pt;}
.wsa{word-spacing:-9.038933pt;}
.ws9{word-spacing:-8.870400pt;}
.wsb{word-spacing:-7.232000pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-4.533760pt;}
._14{margin-left:-3.532800pt;}
._5{margin-left:-2.620160pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.077333pt;}
._13{width:2.003627pt;}
._e{width:2.921600pt;}
._8{width:4.196480pt;}
._12{width:5.668907pt;}
._6{width:7.383680pt;}
._7{width:8.378027pt;}
._2{width:9.296000pt;}
._3{width:10.942720pt;}
._d{width:12.217600pt;}
._17{width:15.238400pt;}
._4{width:16.201600pt;}
._18{width:17.985707pt;}
._a{width:18.880427pt;}
._9{width:20.026240pt;}
._f{width:21.619840pt;}
._c{width:22.788480pt;}
._b{width:23.691520pt;}
._16{width:24.648960pt;}
._10{width:28.510507pt;}
._11{width:29.443413pt;}
.fs5{font-size:16.000000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.880000pt;}
.ydf{bottom:3.040000pt;}
.yec{bottom:3.080000pt;}
.ye7{bottom:11.040000pt;}
.y11{bottom:12.800000pt;}
.y18{bottom:18.880000pt;}
.ye8{bottom:19.200000pt;}
.y33{bottom:26.240000pt;}
.y17{bottom:34.240000pt;}
.y32{bottom:41.600000pt;}
.y16{bottom:49.626667pt;}
.y31{bottom:56.800000pt;}
.y15{bottom:64.986667pt;}
.y30{bottom:72.160000pt;}
.y14{bottom:80.346667pt;}
.y19{bottom:84.986667pt;}
.y2f{bottom:87.520000pt;}
.y13{bottom:93.626667pt;}
.y2e{bottom:102.880000pt;}
.y2d{bottom:118.240000pt;}
.y2c{bottom:133.640000pt;}
.y41{bottom:148.666667pt;}
.y2b{bottom:148.840000pt;}
.yc3{bottom:150.906667pt;}
.yf7{bottom:151.866667pt;}
.y2a{bottom:164.200000pt;}
.y40{bottom:165.626667pt;}
.yc2{bottom:167.066667pt;}
.yf6{bottom:168.026667pt;}
.y74{bottom:169.306667pt;}
.y29{bottom:179.560000pt;}
.y3f{bottom:182.426667pt;}
.yc1{bottom:183.066667pt;}
.yf5{bottom:184.186667pt;}
.y73{bottom:190.106667pt;}
.ya2{bottom:193.306667pt;}
.y28{bottom:194.920000pt;}
.yc0{bottom:199.226667pt;}
.yf4{bottom:200.186667pt;}
.y3b{bottom:202.920000pt;}
.y3e{bottom:207.226667pt;}
.ya1{bottom:209.466667pt;}
.y27{bottom:210.280000pt;}
.ybf{bottom:215.386667pt;}
.yf3{bottom:216.346667pt;}
.y3a{bottom:218.280000pt;}
.y3d{bottom:223.866667pt;}
.y72{bottom:224.026667pt;}
.ya0{bottom:225.626667pt;}
.y26{bottom:225.640000pt;}
.ybe{bottom:231.386667pt;}
.yf2{bottom:232.346667pt;}
.y39{bottom:233.640000pt;}
.y1a{bottom:238.266667pt;}
.y25{bottom:240.840000pt;}
.y71{bottom:240.986667pt;}
.y9f{bottom:241.786667pt;}
.y38{bottom:249.000000pt;}
.ybd{bottom:255.386667pt;}
.y24{bottom:256.200000pt;}
.y70{bottom:257.786667pt;}
.y37{bottom:264.360000pt;}
.yf1{bottom:264.506667pt;}
.y11d{bottom:269.146667pt;}
.ybc{bottom:271.546667pt;}
.y23{bottom:271.560000pt;}
.y9e{bottom:273.946667pt;}
.y6f{bottom:274.586667pt;}
.y36{bottom:279.560000pt;}
.y3c{bottom:284.200000pt;}
.y22{bottom:286.920000pt;}
.ybb{bottom:287.706667pt;}
.y9d{bottom:289.946667pt;}
.y11c{bottom:290.746667pt;}
.y6e{bottom:291.546667pt;}
.y35{bottom:292.840000pt;}
.yf0{bottom:295.066667pt;}
.y21{bottom:302.280000pt;}
.yba{bottom:303.866667pt;}
.y11b{bottom:305.306667pt;}
.y9c{bottom:306.106667pt;}
.yef{bottom:311.066667pt;}
.y6d{bottom:312.186667pt;}
.y20{bottom:317.480000pt;}
.yb9{bottom:319.866667pt;}
.y9b{bottom:322.266667pt;}
.yee{bottom:327.226667pt;}
.y6c{bottom:329.306667pt;}
.y1f{bottom:332.840000pt;}
.yb8{bottom:336.026667pt;}
.y9a{bottom:338.266667pt;}
.y11a{bottom:338.426667pt;}
.yed{bottom:343.226667pt;}
.y6b{bottom:346.106667pt;}
.y1e{bottom:348.226667pt;}
.yb7{bottom:352.186667pt;}
.y119{bottom:352.986667pt;}
.y99{bottom:354.426667pt;}
.yeb{bottom:359.386667pt;}
.y6a{bottom:362.946667pt;}
.y1d{bottom:363.586667pt;}
.yb6{bottom:368.226667pt;}
.y98{bottom:370.626667pt;}
.y118{bottom:371.586667pt;}
.yea{bottom:375.586667pt;}
.y1c{bottom:378.946667pt;}
.y69{bottom:379.906667pt;}
.yb5{bottom:384.386667pt;}
.y117{bottom:386.146667pt;}
.y97{bottom:386.626667pt;}
.ye9{bottom:391.586667pt;}
.y1b{bottom:392.226667pt;}
.y68{bottom:396.706667pt;}
.y116{bottom:400.706667pt;}
.y96{bottom:402.786667pt;}
.ye6{bottom:407.746667pt;}
.yb4{bottom:408.386667pt;}
.y67{bottom:413.666667pt;}
.y95{bottom:418.786667pt;}
.y115{bottom:419.266667pt;}
.yb3{bottom:424.546667pt;}
.y66{bottom:430.466667pt;}
.y114{bottom:433.826667pt;}
.y94{bottom:434.946667pt;}
.ye5{bottom:439.906667pt;}
.yb2{bottom:440.706667pt;}
.y65{bottom:447.266667pt;}
.y113{bottom:448.386667pt;}
.ye4{bottom:456.066667pt;}
.yb1{bottom:456.706667pt;}
.y93{bottom:459.106667pt;}
.y64{bottom:464.226667pt;}
.y112{bottom:466.946667pt;}
.ye3{bottom:472.066667pt;}
.yb0{bottom:472.866667pt;}
.y92{bottom:480.866667pt;}
.y63{bottom:481.026667pt;}
.y111{bottom:481.506667pt;}
.y91{bottom:485.986667pt;}
.ye2{bottom:488.226667pt;}
.yaf{bottom:488.866667pt;}
.y8f{bottom:495.106667pt;}
.y110{bottom:496.066667pt;}
.y90{bottom:500.866667pt;}
.y62{bottom:501.826667pt;}
.ye1{bottom:504.386667pt;}
.yae{bottom:505.026667pt;}
.y10f{bottom:514.626667pt;}
.y61{bottom:518.786667pt;}
.ye0{bottom:520.386667pt;}
.yad{bottom:521.186667pt;}
.y10e{bottom:529.186667pt;}
.y8e{bottom:530.626667pt;}
.y60{bottom:535.586667pt;}
.y12{bottom:536.866667pt;}
.yac{bottom:537.186667pt;}
.y8d{bottom:546.786667pt;}
.y10d{bottom:547.746667pt;}
.y5f{bottom:552.546667pt;}
.yde{bottom:557.026667pt;}
.yab{bottom:561.346667pt;}
.y10c{bottom:562.306667pt;}
.y8c{bottom:562.946667pt;}
.y5e{bottom:569.346667pt;}
.y10b{bottom:580.893333pt;}
.ydd{bottom:581.053333pt;}
.yaa{bottom:586.173333pt;}
.y5d{bottom:586.333333pt;}
.y8b{bottom:586.973333pt;}
.y10a{bottom:595.453333pt;}
.ydc{bottom:597.213333pt;}
.ya9{bottom:602.333333pt;}
.y5c{bottom:603.133333pt;}
.y109{bottom:610.013333pt;}
.y8a{bottom:611.133333pt;}
.ydb{bottom:613.373333pt;}
.ya8{bottom:618.493333pt;}
.y5b{bottom:623.773333pt;}
.y89{bottom:627.293333pt;}
.y108{bottom:628.573333pt;}
.yda{bottom:629.373333pt;}
.ya7{bottom:634.493333pt;}
.y10{bottom:636.253333pt;}
.y5a{bottom:640.893333pt;}
.y107{bottom:643.133333pt;}
.yd9{bottom:645.533333pt;}
.ya6{bottom:650.653333pt;}
.y88{bottom:651.453333pt;}
.y59{bottom:657.693333pt;}
.yd8{bottom:669.533333pt;}
.y58{bottom:674.653333pt;}
.ya5{bottom:674.813333pt;}
.yf{bottom:675.773333pt;}
.y87{bottom:676.093333pt;}
.y106{bottom:676.253333pt;}
.yd7{bottom:685.693333pt;}
.y105{bottom:690.813333pt;}
.ye{bottom:690.973333pt;}
.y57{bottom:691.453333pt;}
.y86{bottom:692.253333pt;}
.yd6{bottom:701.853333pt;}
.yd{bottom:706.333333pt;}
.ya4{bottom:707.453333pt;}
.y56{bottom:708.413333pt;}
.y104{bottom:709.533333pt;}
.yd5{bottom:717.853333pt;}
.ya3{bottom:720.573333pt;}
.yc{bottom:721.853333pt;}
.y103{bottom:724.093333pt;}
.y85{bottom:724.413333pt;}
.y55{bottom:725.213333pt;}
.yd4{bottom:734.013333pt;}
.yb{bottom:738.013333pt;}
.y54{bottom:742.013333pt;}
.y102{bottom:742.653333pt;}
.y84{bottom:748.573333pt;}
.yd3{bottom:750.173333pt;}
.ya{bottom:754.013333pt;}
.y101{bottom:757.213333pt;}
.y53{bottom:762.813333pt;}
.y83{bottom:764.733333pt;}
.yd2{bottom:766.173333pt;}
.y100{bottom:775.773333pt;}
.y52{bottom:779.773333pt;}
.y82{bottom:780.733333pt;}
.yd1{bottom:782.333333pt;}
.y9{bottom:786.653333pt;}
.yff{bottom:790.333333pt;}
.y51{bottom:796.733333pt;}
.y81{bottom:796.893333pt;}
.y8{bottom:805.093333pt;}
.yd0{bottom:806.373333pt;}
.y80{bottom:812.933333pt;}
.y50{bottom:813.573333pt;}
.yfe{bottom:821.253333pt;}
.ycf{bottom:822.533333pt;}
.y7f{bottom:829.093333pt;}
.y4f{bottom:830.373333pt;}
.yce{bottom:838.693333pt;}
.y7{bottom:839.493333pt;}
.y7e{bottom:845.253333pt;}
.yfd{bottom:846.213333pt;}
.y4e{bottom:847.333333pt;}
.ycd{bottom:854.693333pt;}
.y6{bottom:857.893333pt;}
.y7d{bottom:861.253333pt;}
.y4d{bottom:867.973333pt;}
.ycc{bottom:870.853333pt;}
.y7c{bottom:877.413333pt;}
.y4c{bottom:885.093333pt;}
.ycb{bottom:887.013333pt;}
.y5{bottom:892.293333pt;}
.y7b{bottom:893.573333pt;}
.yfc{bottom:895.013333pt;}
.y4b{bottom:901.893333pt;}
.yca{bottom:903.013333pt;}
.y7a{bottom:909.573333pt;}
.yfb{bottom:911.173333pt;}
.y4a{bottom:918.693333pt;}
.yc9{bottom:919.173333pt;}
.y4{bottom:923.173333pt;}
.y79{bottom:925.733333pt;}
.yfa{bottom:927.173333pt;}
.yc8{bottom:935.173333pt;}
.y49{bottom:935.653333pt;}
.y78{bottom:941.733333pt;}
.yf9{bottom:951.333333pt;}
.y48{bottom:952.453333pt;}
.y77{bottom:957.893333pt;}
.yc7{bottom:959.333333pt;}
.y47{bottom:969.413333pt;}
.yf8{bottom:975.333333pt;}
.yc6{bottom:975.493333pt;}
.y76{bottom:982.053333pt;}
.y46{bottom:990.053333pt;}
.yc5{bottom:991.493333pt;}
.y75{bottom:1006.853333pt;}
.y45{bottom:1007.013333pt;}
.yc4{bottom:1007.653333pt;}
.y3{bottom:1038.400000pt;}
.y44{bottom:1039.520000pt;}
.y43{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y42{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hc{height:15.695312pt;}
.h19{height:16.000000pt;}
.h18{height:16.160000pt;}
.h1b{height:16.192000pt;}
.h1a{height:32.160000pt;}
.h9{height:35.840000pt;}
.h17{height:40.425000pt;}
.hf{height:40.488438pt;}
.h1c{height:49.621875pt;}
.hd{height:52.108438pt;}
.h7{height:52.134375pt;}
.h8{height:53.535000pt;}
.h6{height:55.275000pt;}
.h5{height:56.760000pt;}
.h2{height:57.787500pt;}
.ha{height:59.340000pt;}
.h11{height:62.812500pt;}
.h4{height:64.500000pt;}
.h15{height:73.633125pt;}
.h14{height:84.060937pt;}
.h3{height:85.785000pt;}
.hb{height:97.312000pt;}
.h13{height:117.153125pt;}
.h12{height:136.303125pt;}
.h16{height:144.877500pt;}
.h10{height:296.666667pt;}
.he{height:395.906667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w7{width:155.386667pt;}
.w8{width:181.146667pt;}
.w3{width:211.386667pt;}
.w6{width:265.466667pt;}
.w5{width:361.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x5{left:96.031988pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.xc{left:147.546655pt;}
.xe{left:156.186655pt;}
.xf{left:158.906655pt;}
.xa{left:164.826667pt;}
.x15{left:226.266655pt;}
.x3{left:279.426655pt;}
.x11{left:294.146655pt;}
.x14{left:312.546655pt;}
.x8{left:320.546667pt;}
.xd{left:333.666655pt;}
.x9{left:336.226667pt;}
.x16{left:361.506667pt;}
.x10{left:441.213322pt;}
.x12{left:452.413322pt;}
.x17{left:516.893333pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
.x13{left:716.133322pt;}
}




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