
    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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_c9bef8a44e5ba982ecc69a1e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a1148940b17c0fa0a05b02db.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4f8d08f7b02001dd77e9b7f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_061d85ccd2e5cd09ae6d5dab.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0b8e75d44306099d9cc39795.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_2ff0ef8ea6ea6ade39a0166d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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:ffa;src:url('chunks/assets/font_af1a24326c710f17d62735bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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);}
.v1{vertical-align:-73.800000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.876000px;}
.ls19{letter-spacing:-0.420000px;}
.ls13{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.060000px;}
.lsb{letter-spacing:-0.024000px;}
.ls8{letter-spacing:-0.018000px;}
.ls9{letter-spacing:-0.012000px;}
.lsa{letter-spacing:-0.006000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006000px;}
.ls4{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.024000px;}
.ls15{letter-spacing:0.030000px;}
.lsf{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.420000px;}
.lsc{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.720000px;}
.lse{letter-spacing:9.000000px;}
.ls1a{letter-spacing:16.320000px;}
.ls17{letter-spacing:33.120000px;}
.ls18{letter-spacing:36.120000px;}
.ls14{letter-spacing:46.320000px;}
.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;}
}
.wsa{word-spacing:-15.720000px;}
.ws8{word-spacing:-15.180000px;}
.ws0{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.880000px;}
.ws9{word-spacing:-14.760000px;}
.wsb{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.506000px;}
.ws3{word-spacing:-13.494000px;}
.ws2{word-spacing:-13.482000px;}
.ws1{word-spacing:-10.500000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.200000px;}
._0{width:1.128000px;}
._2{width:2.220000px;}
._4{width:3.342000px;}
._7{width:4.974000px;}
._a{width:6.228000px;}
._9{width:7.236000px;}
._b{width:8.640000px;}
._c{width:9.684000px;}
._5{width:11.016000px;}
._f{width:12.240000px;}
._10{width:13.440000px;}
._14{width:14.634000px;}
._15{width:16.500000px;}
._16{width:17.640000px;}
._d{width:19.320000px;}
._e{width:20.340000px;}
._11{width:22.140000px;}
._12{width:23.760000px;}
._13{width:25.020000px;}
._8{width:26.190000px;}
._6{width:27.864000px;}
._17{width:28.980000px;}
._18{width:30.090000px;}
._19{width:178.260000px;}
._3{width:210.096000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:6.000000px;}
.fs3{font-size:24.000000px;}
.fsa{font-size:30.000000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:0.891000px;}
.y59{bottom:3.441000px;}
.y42{bottom:3.735000px;}
.y5{bottom:3.750000px;}
.y5b{bottom:4.770000px;}
.y2{bottom:8.100000px;}
.y58{bottom:18.891000px;}
.y41{bottom:20.985000px;}
.y4{bottom:21.000000px;}
.y4b{bottom:30.741000px;}
.y57{bottom:34.491000px;}
.y40{bottom:38.235000px;}
.y4a{bottom:41.841000px;}
.y3{bottom:44.400000px;}
.y56{bottom:51.741000px;}
.y49{bottom:53.091000px;}
.y3f{bottom:55.485000px;}
.y7{bottom:57.600000px;}
.y48{bottom:64.791000px;}
.y55{bottom:67.791000px;}
.y3e{bottom:72.600000px;}
.y47{bottom:77.841000px;}
.y54{bottom:83.241000px;}
.y3d{bottom:89.850000px;}
.y46{bottom:90.441000px;}
.yc4{bottom:94.500000px;}
.y53{bottom:95.841000px;}
.y52{bottom:102.291000px;}
.y3c{bottom:107.100000px;}
.ye4{bottom:111.000000px;}
.yc3{bottom:111.750000px;}
.y51{bottom:118.341000px;}
.y94{bottom:122.250000px;}
.y3b{bottom:124.350000px;}
.y43{bottom:126.009000px;}
.ye3{bottom:128.250000px;}
.yc2{bottom:129.000000px;}
.y50{bottom:133.791000px;}
.y93{bottom:139.500000px;}
.y3a{bottom:141.600000px;}
.ye2{bottom:145.500000px;}
.yc1{bottom:146.250000px;}
.y4f{bottom:149.436000px;}
.y45{bottom:152.871000px;}
.y92{bottom:156.750000px;}
.y39{bottom:158.850000px;}
.ye1{bottom:162.750000px;}
.y44{bottom:163.371000px;}
.yc0{bottom:163.500000px;}
.y4e{bottom:164.871000px;}
.y91{bottom:174.000000px;}
.y38{bottom:176.100000px;}
.ye0{bottom:179.700000px;}
.y4d{bottom:180.036000px;}
.ybf{bottom:180.750000px;}
.y90{bottom:191.250000px;}
.y37{bottom:193.350000px;}
.ybe{bottom:198.000000px;}
.ydf{bottom:206.250000px;}
.y8f{bottom:208.500000px;}
.y36{bottom:210.600000px;}
.ybd{bottom:215.250000px;}
.yde{bottom:223.500000px;}
.y8e{bottom:225.750000px;}
.y35{bottom:227.850000px;}
.ybc{bottom:232.500000px;}
.ydd{bottom:240.750000px;}
.y8d{bottom:243.000000px;}
.y34{bottom:245.130000px;}
.ybb{bottom:249.750000px;}
.y8c{bottom:260.250000px;}
.y33{bottom:262.380000px;}
.yba{bottom:267.000000px;}
.y8b{bottom:277.545000px;}
.y32{bottom:279.630000px;}
.yb9{bottom:284.295000px;}
.y8a{bottom:294.795000px;}
.y31{bottom:296.880000px;}
.yb8{bottom:301.245000px;}
.ydc{bottom:301.545000px;}
.y89{bottom:312.045000px;}
.y30{bottom:314.130000px;}
.yd{bottom:319.395000px;}
.yb7{bottom:327.795000px;}
.y88{bottom:329.295000px;}
.y2f{bottom:331.380000px;}
.y1b{bottom:334.080000px;}
.yb6{bottom:345.045000px;}
.y87{bottom:346.545000px;}
.y2e{bottom:348.630000px;}
.y1a{bottom:358.230000px;}
.yb5{bottom:362.295000px;}
.y86{bottom:363.795000px;}
.y2d{bottom:365.880000px;}
.ydb{bottom:371.295000px;}
.yb4{bottom:379.545000px;}
.y85{bottom:381.045000px;}
.y19{bottom:382.380000px;}
.y2c{bottom:383.130000px;}
.yda{bottom:388.545000px;}
.yb3{bottom:396.630000px;}
.y84{bottom:398.295000px;}
.y2b{bottom:400.380000px;}
.yd9{bottom:405.630000px;}
.y18{bottom:406.530000px;}
.yb2{bottom:413.880000px;}
.y83{bottom:415.545000px;}
.y2a{bottom:417.330000px;}
.yd8{bottom:422.880000px;}
.y17{bottom:430.680000px;}
.yb1{bottom:430.845000px;}
.y82{bottom:432.630000px;}
.yd7{bottom:440.130000px;}
.y29{bottom:443.580000px;}
.y81{bottom:449.880000px;}
.y16{bottom:454.830000px;}
.yb0{bottom:457.380000px;}
.y28{bottom:459.030000px;}
.yd6{bottom:466.380000px;}
.y80{bottom:467.130000px;}
.y27{bottom:474.630000px;}
.y15{bottom:478.980000px;}
.yd5{bottom:483.630000px;}
.y7f{bottom:484.380000px;}
.y26{bottom:490.080000px;}
.yaf{bottom:491.880000px;}
.yd4{bottom:500.895000px;}
.y7e{bottom:501.645000px;}
.y14{bottom:503.130000px;}
.y25{bottom:505.680000px;}
.yae{bottom:508.845000px;}
.yd3{bottom:518.145000px;}
.y7d{bottom:518.895000px;}
.y24{bottom:521.175000px;}
.y13{bottom:527.310000px;}
.yd2{bottom:535.095000px;}
.yad{bottom:535.395000px;}
.y7c{bottom:536.145000px;}
.y23{bottom:536.775000px;}
.y12{bottom:551.475000px;}
.y22{bottom:552.225000px;}
.yac{bottom:552.675000px;}
.y7b{bottom:553.425000px;}
.yd1{bottom:561.675000px;}
.y21{bottom:567.810000px;}
.yab{bottom:569.925000px;}
.y7a{bottom:570.375000px;}
.yf7{bottom:570.675000px;}
.y11{bottom:575.625000px;}
.yd0{bottom:578.925000px;}
.y20{bottom:583.275000px;}
.yaa{bottom:587.175000px;}
.yf6{bottom:587.925000px;}
.ycf{bottom:596.175000px;}
.y79{bottom:596.925000px;}
.y1f{bottom:598.875000px;}
.y10{bottom:599.775000px;}
.ya9{bottom:604.425000px;}
.yf5{bottom:605.175000px;}
.yce{bottom:613.425000px;}
.y78{bottom:614.175000px;}
.y1e{bottom:614.310000px;}
.ya8{bottom:621.375000px;}
.yf4{bottom:622.425000px;}
.yf{bottom:623.925000px;}
.y1d{bottom:629.925000px;}
.ycd{bottom:630.675000px;}
.y77{bottom:631.425000px;}
.yf3{bottom:639.675000px;}
.y1c{bottom:644.925000px;}
.ya7{bottom:647.925000px;}
.ye{bottom:648.060000px;}
.y76{bottom:648.675000px;}
.yf2{bottom:656.925000px;}
.ycc{bottom:664.875000px;}
.ya6{bottom:665.175000px;}
.y75{bottom:665.925000px;}
.yf1{bottom:674.175000px;}
.ycb{bottom:682.125000px;}
.ya5{bottom:682.425000px;}
.y74{bottom:683.175000px;}
.yf0{bottom:691.425000px;}
.ya4{bottom:699.675000px;}
.y73{bottom:700.425000px;}
.yca{bottom:708.675000px;}
.ya3{bottom:716.625000px;}
.y72{bottom:717.675000px;}
.yc9{bottom:725.925000px;}
.y71{bottom:734.925000px;}
.ya2{bottom:743.175000px;}
.y70{bottom:752.175000px;}
.ya1{bottom:760.425000px;}
.y6f{bottom:769.425000px;}
.ya0{bottom:777.675000px;}
.y6e{bottom:786.675000px;}
.y9f{bottom:794.925000px;}
.y6d{bottom:803.925000px;}
.y9e{bottom:812.175000px;}
.y6c{bottom:821.175000px;}
.y9d{bottom:829.125000px;}
.yc8{bottom:829.425000px;}
.y6b{bottom:838.455000px;}
.yc7{bottom:846.705000px;}
.y9c{bottom:855.705000px;}
.yc6{bottom:863.955000px;}
.y6a{bottom:864.705000px;}
.y9b{bottom:872.955000px;}
.yef{bottom:881.205000px;}
.y69{bottom:881.955000px;}
.y9a{bottom:890.205000px;}
.yee{bottom:898.455000px;}
.y68{bottom:899.205000px;}
.y99{bottom:907.455000px;}
.yed{bottom:915.705000px;}
.y67{bottom:916.455000px;}
.y98{bottom:924.705000px;}
.yec{bottom:932.955000px;}
.y66{bottom:933.705000px;}
.y97{bottom:941.955000px;}
.yeb{bottom:950.205000px;}
.y65{bottom:950.955000px;}
.yc5{bottom:958.920000px;}
.y96{bottom:959.205000px;}
.yea{bottom:967.170000px;}
.y64{bottom:968.205000px;}
.y95{bottom:976.455000px;}
.yc{bottom:982.920000px;}
.y63{bottom:985.455000px;}
.ye9{bottom:993.705000px;}
.yb{bottom:1000.170000px;}
.y62{bottom:1002.705000px;}
.ye8{bottom:1010.955000px;}
.y61{bottom:1019.955000px;}
.ye7{bottom:1028.205000px;}
.ya{bottom:1035.570000px;}
.y60{bottom:1037.205000px;}
.ye6{bottom:1045.455000px;}
.y5f{bottom:1054.455000px;}
.y9{bottom:1059.705000px;}
.ye5{bottom:1062.420000px;}
.y5e{bottom:1071.720000px;}
.y8{bottom:1088.220000px;}
.y5d{bottom:1088.970000px;}
.y5a{bottom:1091.700000px;}
.y5c{bottom:1106.220000px;}
.y6{bottom:1121.550000px;}
.y1{bottom:1127.100000px;}
.h13{height:5.885742px;}
.h6{height:16.371094px;}
.h14{height:27.450000px;}
.h11{height:29.443359px;}
.h10{height:35.332031px;}
.hc{height:41.220703px;}
.he{height:41.689453px;}
.hb{height:42.328125px;}
.h3{height:45.020508px;}
.hd{height:52.971680px;}
.h12{height:54.421875px;}
.h7{height:57.445312px;}
.h5{height:58.886719px;}
.h9{height:60.468750px;}
.h16{height:61.670545px;}
.h15{height:63.820312px;}
.h2{height:81.450000px;}
.h8{height:84.656250px;}
.h4{height:117.000000px;}
.hf{height:192.621000px;}
.ha{height:657.510000px;}
.h1{height:1262.250000px;}
.h0{height:1262.550000px;}
.w2{width:103.978500px;}
.w4{width:132.628500px;}
.w6{width:162.900000px;}
.w5{width:596.460000px;}
.w3{width:622.425000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:6.750000px;}
.x13{left:8.100000px;}
.x4{left:12.915000px;}
.x11{left:17.100000px;}
.x17{left:18.150000px;}
.x5{left:19.215000px;}
.x12{left:28.800000px;}
.x6{left:34.065000px;}
.xd{left:43.687500px;}
.x18{left:47.587500px;}
.xe{left:50.737500px;}
.xc{left:54.937500px;}
.x1a{left:57.187500px;}
.x15{left:62.100000px;}
.x19{left:66.330000px;}
.x10{left:72.330000px;}
.x1{left:78.300000px;}
.x7{left:86.400000px;}
.x2{left:95.880000px;}
.x1b{left:102.780000px;}
.x16{left:106.845000px;}
.x1e{left:113.400000px;}
.xf{left:124.545000px;}
.x1d{left:140.437500px;}
.x3{left:182.280000px;}
.x14{left:219.045000px;}
.xa{left:275.745000px;}
.xb{left:595.575000px;}
.x9{left:766.005000px;}
.x8{left:784.455000px;}
@media print{
.v1{vertical-align:-65.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.778667pt;}
.ls19{letter-spacing:-0.373333pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:-0.021333pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:-0.010667pt;}
.lsa{letter-spacing:-0.005333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005333pt;}
.ls4{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls15{letter-spacing:0.026667pt;}
.lsf{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.373333pt;}
.lsc{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.640000pt;}
.lse{letter-spacing:8.000000pt;}
.ls1a{letter-spacing:14.506667pt;}
.ls17{letter-spacing:29.440000pt;}
.ls18{letter-spacing:32.106667pt;}
.ls14{letter-spacing:41.173333pt;}
.wsa{word-spacing:-13.973333pt;}
.ws8{word-spacing:-13.493333pt;}
.ws0{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.226667pt;}
.ws9{word-spacing:-13.120000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.005333pt;}
.ws3{word-spacing:-11.994667pt;}
.ws2{word-spacing:-11.984000pt;}
.ws1{word-spacing:-9.333333pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.002667pt;}
._2{width:1.973333pt;}
._4{width:2.970667pt;}
._7{width:4.421333pt;}
._a{width:5.536000pt;}
._9{width:6.432000pt;}
._b{width:7.680000pt;}
._c{width:8.608000pt;}
._5{width:9.792000pt;}
._f{width:10.880000pt;}
._10{width:11.946667pt;}
._14{width:13.008000pt;}
._15{width:14.666667pt;}
._16{width:15.680000pt;}
._d{width:17.173333pt;}
._e{width:18.080000pt;}
._11{width:19.680000pt;}
._12{width:21.120000pt;}
._13{width:22.240000pt;}
._8{width:23.280000pt;}
._6{width:24.768000pt;}
._17{width:25.760000pt;}
._18{width:26.746667pt;}
._19{width:158.453333pt;}
._3{width:186.752000pt;}
.fs6{font-size:5.333333pt;}
.fs3{font-size:21.333333pt;}
.fsa{font-size:26.666667pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:0.792000pt;}
.y59{bottom:3.058667pt;}
.y42{bottom:3.320000pt;}
.y5{bottom:3.333333pt;}
.y5b{bottom:4.240000pt;}
.y2{bottom:7.200000pt;}
.y58{bottom:16.792000pt;}
.y41{bottom:18.653333pt;}
.y4{bottom:18.666667pt;}
.y4b{bottom:27.325333pt;}
.y57{bottom:30.658667pt;}
.y40{bottom:33.986667pt;}
.y4a{bottom:37.192000pt;}
.y3{bottom:39.466667pt;}
.y56{bottom:45.992000pt;}
.y49{bottom:47.192000pt;}
.y3f{bottom:49.320000pt;}
.y7{bottom:51.200000pt;}
.y48{bottom:57.592000pt;}
.y55{bottom:60.258667pt;}
.y3e{bottom:64.533333pt;}
.y47{bottom:69.192000pt;}
.y54{bottom:73.992000pt;}
.y3d{bottom:79.866667pt;}
.y46{bottom:80.392000pt;}
.yc4{bottom:84.000000pt;}
.y53{bottom:85.192000pt;}
.y52{bottom:90.925333pt;}
.y3c{bottom:95.200000pt;}
.ye4{bottom:98.666667pt;}
.yc3{bottom:99.333333pt;}
.y51{bottom:105.192000pt;}
.y94{bottom:108.666667pt;}
.y3b{bottom:110.533333pt;}
.y43{bottom:112.008000pt;}
.ye3{bottom:114.000000pt;}
.yc2{bottom:114.666667pt;}
.y50{bottom:118.925333pt;}
.y93{bottom:124.000000pt;}
.y3a{bottom:125.866667pt;}
.ye2{bottom:129.333333pt;}
.yc1{bottom:130.000000pt;}
.y4f{bottom:132.832000pt;}
.y45{bottom:135.885333pt;}
.y92{bottom:139.333333pt;}
.y39{bottom:141.200000pt;}
.ye1{bottom:144.666667pt;}
.y44{bottom:145.218667pt;}
.yc0{bottom:145.333333pt;}
.y4e{bottom:146.552000pt;}
.y91{bottom:154.666667pt;}
.y38{bottom:156.533333pt;}
.ye0{bottom:159.733333pt;}
.y4d{bottom:160.032000pt;}
.ybf{bottom:160.666667pt;}
.y90{bottom:170.000000pt;}
.y37{bottom:171.866667pt;}
.ybe{bottom:176.000000pt;}
.ydf{bottom:183.333333pt;}
.y8f{bottom:185.333333pt;}
.y36{bottom:187.200000pt;}
.ybd{bottom:191.333333pt;}
.yde{bottom:198.666667pt;}
.y8e{bottom:200.666667pt;}
.y35{bottom:202.533333pt;}
.ybc{bottom:206.666667pt;}
.ydd{bottom:214.000000pt;}
.y8d{bottom:216.000000pt;}
.y34{bottom:217.893333pt;}
.ybb{bottom:222.000000pt;}
.y8c{bottom:231.333333pt;}
.y33{bottom:233.226667pt;}
.yba{bottom:237.333333pt;}
.y8b{bottom:246.706667pt;}
.y32{bottom:248.560000pt;}
.yb9{bottom:252.706667pt;}
.y8a{bottom:262.040000pt;}
.y31{bottom:263.893333pt;}
.yb8{bottom:267.773333pt;}
.ydc{bottom:268.040000pt;}
.y89{bottom:277.373333pt;}
.y30{bottom:279.226667pt;}
.yd{bottom:283.906667pt;}
.yb7{bottom:291.373333pt;}
.y88{bottom:292.706667pt;}
.y2f{bottom:294.560000pt;}
.y1b{bottom:296.960000pt;}
.yb6{bottom:306.706667pt;}
.y87{bottom:308.040000pt;}
.y2e{bottom:309.893333pt;}
.y1a{bottom:318.426667pt;}
.yb5{bottom:322.040000pt;}
.y86{bottom:323.373333pt;}
.y2d{bottom:325.226667pt;}
.ydb{bottom:330.040000pt;}
.yb4{bottom:337.373333pt;}
.y85{bottom:338.706667pt;}
.y19{bottom:339.893333pt;}
.y2c{bottom:340.560000pt;}
.yda{bottom:345.373333pt;}
.yb3{bottom:352.560000pt;}
.y84{bottom:354.040000pt;}
.y2b{bottom:355.893333pt;}
.yd9{bottom:360.560000pt;}
.y18{bottom:361.360000pt;}
.yb2{bottom:367.893333pt;}
.y83{bottom:369.373333pt;}
.y2a{bottom:370.960000pt;}
.yd8{bottom:375.893333pt;}
.y17{bottom:382.826667pt;}
.yb1{bottom:382.973333pt;}
.y82{bottom:384.560000pt;}
.yd7{bottom:391.226667pt;}
.y29{bottom:394.293333pt;}
.y81{bottom:399.893333pt;}
.y16{bottom:404.293333pt;}
.yb0{bottom:406.560000pt;}
.y28{bottom:408.026667pt;}
.yd6{bottom:414.560000pt;}
.y80{bottom:415.226667pt;}
.y27{bottom:421.893333pt;}
.y15{bottom:425.760000pt;}
.yd5{bottom:429.893333pt;}
.y7f{bottom:430.560000pt;}
.y26{bottom:435.626667pt;}
.yaf{bottom:437.226667pt;}
.yd4{bottom:445.240000pt;}
.y7e{bottom:445.906667pt;}
.y14{bottom:447.226667pt;}
.y25{bottom:449.493333pt;}
.yae{bottom:452.306667pt;}
.yd3{bottom:460.573333pt;}
.y7d{bottom:461.240000pt;}
.y24{bottom:463.266667pt;}
.y13{bottom:468.720000pt;}
.yd2{bottom:475.640000pt;}
.yad{bottom:475.906667pt;}
.y7c{bottom:476.573333pt;}
.y23{bottom:477.133333pt;}
.y12{bottom:490.200000pt;}
.y22{bottom:490.866667pt;}
.yac{bottom:491.266667pt;}
.y7b{bottom:491.933333pt;}
.yd1{bottom:499.266667pt;}
.y21{bottom:504.720000pt;}
.yab{bottom:506.600000pt;}
.y7a{bottom:507.000000pt;}
.yf7{bottom:507.266667pt;}
.y11{bottom:511.666667pt;}
.yd0{bottom:514.600000pt;}
.y20{bottom:518.466667pt;}
.yaa{bottom:521.933333pt;}
.yf6{bottom:522.600000pt;}
.ycf{bottom:529.933333pt;}
.y79{bottom:530.600000pt;}
.y1f{bottom:532.333333pt;}
.y10{bottom:533.133333pt;}
.ya9{bottom:537.266667pt;}
.yf5{bottom:537.933333pt;}
.yce{bottom:545.266667pt;}
.y78{bottom:545.933333pt;}
.y1e{bottom:546.053333pt;}
.ya8{bottom:552.333333pt;}
.yf4{bottom:553.266667pt;}
.yf{bottom:554.600000pt;}
.y1d{bottom:559.933333pt;}
.ycd{bottom:560.600000pt;}
.y77{bottom:561.266667pt;}
.yf3{bottom:568.600000pt;}
.y1c{bottom:573.266667pt;}
.ya7{bottom:575.933333pt;}
.ye{bottom:576.053333pt;}
.y76{bottom:576.600000pt;}
.yf2{bottom:583.933333pt;}
.ycc{bottom:591.000000pt;}
.ya6{bottom:591.266667pt;}
.y75{bottom:591.933333pt;}
.yf1{bottom:599.266667pt;}
.ycb{bottom:606.333333pt;}
.ya5{bottom:606.600000pt;}
.y74{bottom:607.266667pt;}
.yf0{bottom:614.600000pt;}
.ya4{bottom:621.933333pt;}
.y73{bottom:622.600000pt;}
.yca{bottom:629.933333pt;}
.ya3{bottom:637.000000pt;}
.y72{bottom:637.933333pt;}
.yc9{bottom:645.266667pt;}
.y71{bottom:653.266667pt;}
.ya2{bottom:660.600000pt;}
.y70{bottom:668.600000pt;}
.ya1{bottom:675.933333pt;}
.y6f{bottom:683.933333pt;}
.ya0{bottom:691.266667pt;}
.y6e{bottom:699.266667pt;}
.y9f{bottom:706.600000pt;}
.y6d{bottom:714.600000pt;}
.y9e{bottom:721.933333pt;}
.y6c{bottom:729.933333pt;}
.y9d{bottom:737.000000pt;}
.yc8{bottom:737.266667pt;}
.y6b{bottom:745.293333pt;}
.yc7{bottom:752.626667pt;}
.y9c{bottom:760.626667pt;}
.yc6{bottom:767.960000pt;}
.y6a{bottom:768.626667pt;}
.y9b{bottom:775.960000pt;}
.yef{bottom:783.293333pt;}
.y69{bottom:783.960000pt;}
.y9a{bottom:791.293333pt;}
.yee{bottom:798.626667pt;}
.y68{bottom:799.293333pt;}
.y99{bottom:806.626667pt;}
.yed{bottom:813.960000pt;}
.y67{bottom:814.626667pt;}
.y98{bottom:821.960000pt;}
.yec{bottom:829.293333pt;}
.y66{bottom:829.960000pt;}
.y97{bottom:837.293333pt;}
.yeb{bottom:844.626667pt;}
.y65{bottom:845.293333pt;}
.yc5{bottom:852.373333pt;}
.y96{bottom:852.626667pt;}
.yea{bottom:859.706667pt;}
.y64{bottom:860.626667pt;}
.y95{bottom:867.960000pt;}
.yc{bottom:873.706667pt;}
.y63{bottom:875.960000pt;}
.ye9{bottom:883.293333pt;}
.yb{bottom:889.040000pt;}
.y62{bottom:891.293333pt;}
.ye8{bottom:898.626667pt;}
.y61{bottom:906.626667pt;}
.ye7{bottom:913.960000pt;}
.ya{bottom:920.506667pt;}
.y60{bottom:921.960000pt;}
.ye6{bottom:929.293333pt;}
.y5f{bottom:937.293333pt;}
.y9{bottom:941.960000pt;}
.ye5{bottom:944.373333pt;}
.y5e{bottom:952.640000pt;}
.y8{bottom:967.306667pt;}
.y5d{bottom:967.973333pt;}
.y5a{bottom:970.400000pt;}
.y5c{bottom:983.306667pt;}
.y6{bottom:996.933333pt;}
.y1{bottom:1001.866667pt;}
.h13{height:5.231771pt;}
.h6{height:14.552083pt;}
.h14{height:24.400000pt;}
.h11{height:26.171875pt;}
.h10{height:31.406250pt;}
.hc{height:36.640625pt;}
.he{height:37.057292pt;}
.hb{height:37.625000pt;}
.h3{height:40.018229pt;}
.hd{height:47.085938pt;}
.h12{height:48.375000pt;}
.h7{height:51.062500pt;}
.h5{height:52.343750pt;}
.h9{height:53.750000pt;}
.h16{height:54.818262pt;}
.h15{height:56.729167pt;}
.h2{height:72.400000pt;}
.h8{height:75.250000pt;}
.h4{height:104.000000pt;}
.hf{height:171.218667pt;}
.ha{height:584.453333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.266667pt;}
.w2{width:92.425333pt;}
.w4{width:117.892000pt;}
.w6{width:144.800000pt;}
.w5{width:530.186667pt;}
.w3{width:553.266667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.000000pt;}
.x13{left:7.200000pt;}
.x4{left:11.480000pt;}
.x11{left:15.200000pt;}
.x17{left:16.133333pt;}
.x5{left:17.080000pt;}
.x12{left:25.600000pt;}
.x6{left:30.280000pt;}
.xd{left:38.833333pt;}
.x18{left:42.300000pt;}
.xe{left:45.100000pt;}
.xc{left:48.833333pt;}
.x1a{left:50.833333pt;}
.x15{left:55.200000pt;}
.x19{left:58.960000pt;}
.x10{left:64.293333pt;}
.x1{left:69.600000pt;}
.x7{left:76.800000pt;}
.x2{left:85.226667pt;}
.x1b{left:91.360000pt;}
.x16{left:94.973333pt;}
.x1e{left:100.800000pt;}
.xf{left:110.706667pt;}
.x1d{left:124.833333pt;}
.x3{left:162.026667pt;}
.x14{left:194.706667pt;}
.xa{left:245.106667pt;}
.xb{left:529.400000pt;}
.x9{left:680.893333pt;}
.x8{left:697.293333pt;}
}




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