
    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_002c0a6f7f19bdc19ffa1d48.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_77000c4a93cbbae3a54d4d98.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_e1bdc6a7abd50ff030944f6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_7eb192c67ba7cf2b30eb850d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_7cb3009ee41441618cb6916f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.118652;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_5ad189b37a58e274b8a07206.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_684b9f1969c09654cf499916.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_47afe5db0d8c3849fe1b751a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9ee27203edf2d6f32bb6e9f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.118652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.206640px;}
.ls3{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.720000px;}
.lsb{letter-spacing:31.860000px;}
.ls2{letter-spacing:64.397280px;}
.ls1{letter-spacing:150.797280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.712000px;}
.ws9{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.146400px;}
.ws5{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-4.464000px;}
._c{margin-left:-2.952000px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._6{width:2.196960px;}
._e{width:3.744000px;}
._10{width:4.824000px;}
._4{width:5.832000px;}
._5{width:7.370400px;}
._7{width:8.640000px;}
._a{width:10.209600px;}
._8{width:11.736000px;}
._9{width:13.104000px;}
._f{width:14.220000px;}
._18{width:15.235200px;}
._d{width:16.344000px;}
._12{width:19.538400px;}
._16{width:20.736000px;}
._17{width:21.888000px;}
._15{width:23.760000px;}
._11{width:24.840000px;}
._13{width:25.946400px;}
._19{width:27.379200px;}
._14{width:29.304000px;}
._1a{width:30.960000px;}
._1b{width:32.186400px;}
._21{width:33.408000px;}
._22{width:34.704000px;}
._20{width:47.376000px;}
._1c{width:71.784000px;}
._1d{width:73.008000px;}
._3{width:86.662800px;}
._2{width:88.003440px;}
._1f{width:173.952000px;}
._1e{width:174.960000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y82{bottom:11.700000px;}
.y7e{bottom:11.880000px;}
.yb8{bottom:29.700000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y7a{bottom:166.890000px;}
.y103{bottom:171.930000px;}
.yb5{bottom:172.830000px;}
.ye0{bottom:174.990000px;}
.y32{bottom:180.030000px;}
.yd8{bottom:185.250000px;}
.y99{bottom:189.210000px;}
.y102{bottom:192.630000px;}
.y6a{bottom:194.790000px;}
.y79{bottom:197.850000px;}
.y31{bottom:200.730000px;}
.yb4{bottom:203.970000px;}
.y4d{bottom:211.170000px;}
.y101{bottom:213.330000px;}
.yd7{bottom:216.210000px;}
.ydf{bottom:218.010000px;}
.y98{bottom:220.170000px;}
.y30{bottom:221.430000px;}
.y69{bottom:225.930000px;}
.y78{bottom:228.990000px;}
.yb3{bottom:234.930000px;}
.y100{bottom:240.150000px;}
.y2f{bottom:242.130000px;}
.y4c{bottom:242.310000px;}
.yd6{bottom:247.350000px;}
.yde{bottom:249.150000px;}
.y97{bottom:251.310000px;}
.y68{bottom:256.890000px;}
.y77{bottom:259.950000px;}
.yff{bottom:260.850000px;}
.y2e{bottom:262.830000px;}
.yb2{bottom:266.070000px;}
.y4b{bottom:273.270000px;}
.yd5{bottom:278.310000px;}
.ydd{bottom:280.110000px;}
.yfe{bottom:281.550000px;}
.y96{bottom:282.270000px;}
.y2d{bottom:283.530000px;}
.y67{bottom:288.030000px;}
.y76{bottom:291.090000px;}
.yb1{bottom:297.030000px;}
.yfd{bottom:302.250000px;}
.y2c{bottom:304.230000px;}
.y4a{bottom:304.410000px;}
.yd4{bottom:309.450000px;}
.ydc{bottom:311.250000px;}
.y95{bottom:313.410000px;}
.y66{bottom:318.990000px;}
.y75{bottom:322.050000px;}
.y2b{bottom:324.930000px;}
.yb0{bottom:328.170000px;}
.yfc{bottom:328.890000px;}
.y49{bottom:335.370000px;}
.yd3{bottom:340.455000px;}
.ydb{bottom:342.255000px;}
.y94{bottom:344.415000px;}
.y2a{bottom:345.675000px;}
.yfb{bottom:349.635000px;}
.y65{bottom:350.175000px;}
.y74{bottom:353.235000px;}
.yaf{bottom:359.175000px;}
.y29{bottom:366.375000px;}
.y48{bottom:366.555000px;}
.yfa{bottom:370.335000px;}
.yd2{bottom:371.595000px;}
.yda{bottom:373.395000px;}
.y93{bottom:375.555000px;}
.y64{bottom:381.135000px;}
.y28{bottom:387.075000px;}
.yae{bottom:390.315000px;}
.y73{bottom:392.475000px;}
.yf9{bottom:396.975000px;}
.y47{bottom:397.515000px;}
.yd1{bottom:402.555000px;}
.yd9{bottom:404.355000px;}
.y92{bottom:406.515000px;}
.y27{bottom:407.775000px;}
.y63{bottom:412.275000px;}
.yf8{bottom:417.675000px;}
.yad{bottom:421.275000px;}
.y26{bottom:428.475000px;}
.y46{bottom:428.655000px;}
.yd0{bottom:433.695000px;}
.y72{bottom:435.495000px;}
.y91{bottom:437.655000px;}
.yf7{bottom:438.375000px;}
.y62{bottom:443.235000px;}
.y25{bottom:449.175000px;}
.yac{bottom:452.415000px;}
.yf6{bottom:459.075000px;}
.y45{bottom:459.615000px;}
.ycf{bottom:464.655000px;}
.y71{bottom:466.455000px;}
.y90{bottom:468.615000px;}
.y24{bottom:469.875000px;}
.y61{bottom:474.375000px;}
.yab{bottom:483.375000px;}
.yf5{bottom:485.895000px;}
.y23{bottom:490.575000px;}
.y44{bottom:490.755000px;}
.yce{bottom:493.275000px;}
.y70{bottom:497.595000px;}
.y8f{bottom:499.755000px;}
.y60{bottom:505.335000px;}
.yf4{bottom:506.595000px;}
.y22{bottom:511.275000px;}
.yaa{bottom:514.515000px;}
.ycd{bottom:519.195000px;}
.y43{bottom:521.715000px;}
.y6f{bottom:528.555000px;}
.y8e{bottom:530.715000px;}
.y21{bottom:531.975000px;}
.yf3{bottom:533.235000px;}
.ycc{bottom:534.675000px;}
.y5f{bottom:536.475000px;}
.ya9{bottom:545.475000px;}
.y20{bottom:552.675000px;}
.y42{bottom:552.855000px;}
.yf2{bottom:553.935000px;}
.y6e{bottom:559.695000px;}
.y8d{bottom:561.855000px;}
.ycb{bottom:562.035000px;}
.y5e{bottom:567.435000px;}
.y1f{bottom:573.375000px;}
.yf1{bottom:574.635000px;}
.ya8{bottom:576.615000px;}
.y41{bottom:583.815000px;}
.yca{bottom:587.955000px;}
.y6d{bottom:590.655000px;}
.y8c{bottom:592.815000px;}
.y1e{bottom:594.075000px;}
.yf0{bottom:595.335000px;}
.y5d{bottom:598.575000px;}
.ya7{bottom:607.605000px;}
.yc9{bottom:613.725000px;}
.y1d{bottom:614.805000px;}
.y40{bottom:614.985000px;}
.y6c{bottom:621.645000px;}
.yef{bottom:622.005000px;}
.y8b{bottom:623.985000px;}
.y1c{bottom:635.505000px;}
.ya6{bottom:638.745000px;}
.yc8{bottom:639.645000px;}
.y5c{bottom:640.905000px;}
.yee{bottom:642.705000px;}
.y3f{bottom:645.945000px;}
.y6b{bottom:652.785000px;}
.y8a{bottom:654.945000px;}
.y1b{bottom:656.205000px;}
.yed{bottom:663.405000px;}
.yc7{bottom:667.005000px;}
.ya5{bottom:669.705000px;}
.y1a{bottom:676.905000px;}
.y3e{bottom:677.085000px;}
.y89{bottom:683.565000px;}
.y5b{bottom:683.745000px;}
.yec{bottom:684.105000px;}
.yc6{bottom:694.365000px;}
.y19{bottom:697.605000px;}
.y88{bottom:699.045000px;}
.ya4{bottom:700.665000px;}
.yeb{bottom:704.805000px;}
.y3d{bottom:708.045000px;}
.y5a{bottom:714.885000px;}
.y18{bottom:718.305000px;}
.ya3{bottom:719.025000px;}
.yc5{bottom:720.285000px;}
.y87{bottom:724.965000px;}
.yea{bottom:731.445000px;}
.y17{bottom:739.005000px;}
.y3c{bottom:739.185000px;}
.ya2{bottom:744.945000px;}
.y59{bottom:745.845000px;}
.yc4{bottom:746.205000px;}
.y86{bottom:750.885000px;}
.ye9{bottom:752.145000px;}
.y16{bottom:759.705000px;}
.y3b{bottom:770.145000px;}
.ya1{bottom:770.685000px;}
.yc3{bottom:771.945000px;}
.ye8{bottom:772.845000px;}
.y85{bottom:776.625000px;}
.y58{bottom:776.985000px;}
.y15{bottom:780.405000px;}
.ye7{bottom:793.545000px;}
.ya0{bottom:796.605000px;}
.yc2{bottom:799.485000px;}
.y14{bottom:801.105000px;}
.y84{bottom:802.545000px;}
.y57{bottom:807.945000px;}
.ye6{bottom:820.365000px;}
.y13{bottom:821.805000px;}
.y9f{bottom:822.525000px;}
.yc1{bottom:826.845000px;}
.y83{bottom:828.465000px;}
.y3a{bottom:832.245000px;}
.y56{bottom:839.085000px;}
.ye5{bottom:841.065000px;}
.y12{bottom:842.505000px;}
.y9e{bottom:848.445000px;}
.yc0{bottom:852.585000px;}
.y81{bottom:854.385000px;}
.y11{bottom:863.205000px;}
.ye4{bottom:867.705000px;}
.y55{bottom:870.045000px;}
.y9d{bottom:874.230000px;}
.ybf{bottom:878.550000px;}
.y80{bottom:880.170000px;}
.y10{bottom:883.950000px;}
.ye3{bottom:888.450000px;}
.y39{bottom:894.390000px;}
.y9c{bottom:900.870000px;}
.y54{bottom:901.230000px;}
.ybe{bottom:904.470000px;}
.yf{bottom:904.650000px;}
.y7f{bottom:906.090000px;}
.ye2{bottom:915.090000px;}
.ye{bottom:925.350000px;}
.ybd{bottom:931.830000px;}
.y53{bottom:932.190000px;}
.y7d{bottom:932.730000px;}
.y9b{bottom:940.110000px;}
.ye1{bottom:942.450000px;}
.yd{bottom:946.050000px;}
.y38{bottom:956.490000px;}
.ybc{bottom:959.190000px;}
.y52{bottom:963.330000px;}
.y9a{bottom:966.030000px;}
.yc{bottom:966.750000px;}
.y7c{bottom:971.250000px;}
.ybb{bottom:985.110000px;}
.y37{bottom:987.450000px;}
.yb{bottom:988.710000px;}
.y51{bottom:994.290000px;}
.y7b{bottom:996.990000px;}
.yba{bottom:1010.850000px;}
.ya{bottom:1016.430000px;}
.y36{bottom:1018.590000px;}
.y107{bottom:1023.810000px;}
.y50{bottom:1025.430000px;}
.yb9{bottom:1036.770000px;}
.y9{bottom:1042.710000px;}
.y35{bottom:1049.550000px;}
.y106{bottom:1050.450000px;}
.y4f{bottom:1056.390000px;}
.yb7{bottom:1064.130000px;}
.y8{bottom:1064.670000px;}
.y105{bottom:1071.150000px;}
.y34{bottom:1076.370000px;}
.y4e{bottom:1087.530000px;}
.y7{bottom:1092.210000px;}
.y104{bottom:1097.790000px;}
.y33{bottom:1115.430000px;}
.y6{bottom:1118.490000px;}
.yb6{bottom:1121.190000px;}
.y1{bottom:1233.900000px;}
.hb{height:25.740000px;}
.ha{height:25.776000px;}
.h9{height:25.920000px;}
.hf{height:25.956000px;}
.he{height:43.740000px;}
.hd{height:52.417969px;}
.h8{height:53.077852px;}
.hc{height:53.573906px;}
.h3{height:59.383125px;}
.h4{height:63.351562px;}
.h10{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h5{height:85.052461px;}
.h7{height:140.066719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:78.840000px;}
.wa{width:107.640000px;}
.w9{width:110.736000px;}
.w6{width:126.036000px;}
.w5{width:149.580000px;}
.w4{width:150.870000px;}
.wb{width:151.770000px;}
.wd{width:162.000000px;}
.wc{width:162.030000px;}
.w3{width:216.210000px;}
.w8{width:216.930000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.100000px;}
.x1d{left:16.740000px;}
.x15{left:18.180000px;}
.x14{left:20.520000px;}
.x19{left:22.320000px;}
.x1a{left:25.020000px;}
.x12{left:28.440000px;}
.x13{left:32.220000px;}
.x10{left:34.740000px;}
.xc{left:50.580000px;}
.x1b{left:67.854000px;}
.x17{left:68.934000px;}
.x16{left:74.874000px;}
.x1c{left:79.194000px;}
.x11{left:82.254000px;}
.x18{left:87.294000px;}
.xa{left:96.834000px;}
.x9{left:107.136000px;}
.x1{left:127.655987px;}
.x8{left:160.049987px;}
.x2{left:170.129987px;}
.x1f{left:174.270000px;}
.x5{left:194.069987px;}
.x1e{left:212.789987px;}
.x6{left:286.634987px;}
.xb{left:323.355000px;}
.x24{left:332.175000px;}
.x20{left:391.215000px;}
.x7{left:467.924987px;}
.xd{left:474.225000px;}
.x25{left:494.205000px;}
.x22{left:501.945000px;}
.x23{left:609.585000px;}
.xe{left:623.805000px;}
.x26{left:656.250000px;}
.xf{left:749.850000px;}
.x3{left:765.689987px;}
.x4{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.183680pt;}
.ls3{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.640000pt;}
.lsb{letter-spacing:28.320000pt;}
.ls2{letter-spacing:57.242027pt;}
.ls1{letter-spacing:134.042027pt;}
.ws1{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-3.968000pt;}
._c{margin-left:-2.624000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._6{width:1.952853pt;}
._e{width:3.328000pt;}
._10{width:4.288000pt;}
._4{width:5.184000pt;}
._5{width:6.551467pt;}
._7{width:7.680000pt;}
._a{width:9.075200pt;}
._8{width:10.432000pt;}
._9{width:11.648000pt;}
._f{width:12.640000pt;}
._18{width:13.542400pt;}
._d{width:14.528000pt;}
._12{width:17.367467pt;}
._16{width:18.432000pt;}
._17{width:19.456000pt;}
._15{width:21.120000pt;}
._11{width:22.080000pt;}
._13{width:23.063467pt;}
._19{width:24.337067pt;}
._14{width:26.048000pt;}
._1a{width:27.520000pt;}
._1b{width:28.610133pt;}
._21{width:29.696000pt;}
._22{width:30.848000pt;}
._20{width:42.112000pt;}
._1c{width:63.808000pt;}
._1d{width:64.896000pt;}
._3{width:77.033600pt;}
._2{width:78.225280pt;}
._1f{width:154.624000pt;}
._1e{width:155.520000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:10.400000pt;}
.y7e{bottom:10.560000pt;}
.yb8{bottom:26.400000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y7a{bottom:148.346667pt;}
.y103{bottom:152.826667pt;}
.yb5{bottom:153.626667pt;}
.ye0{bottom:155.546667pt;}
.y32{bottom:160.026667pt;}
.yd8{bottom:164.666667pt;}
.y99{bottom:168.186667pt;}
.y102{bottom:171.226667pt;}
.y6a{bottom:173.146667pt;}
.y79{bottom:175.866667pt;}
.y31{bottom:178.426667pt;}
.yb4{bottom:181.306667pt;}
.y4d{bottom:187.706667pt;}
.y101{bottom:189.626667pt;}
.yd7{bottom:192.186667pt;}
.ydf{bottom:193.786667pt;}
.y98{bottom:195.706667pt;}
.y30{bottom:196.826667pt;}
.y69{bottom:200.826667pt;}
.y78{bottom:203.546667pt;}
.yb3{bottom:208.826667pt;}
.y100{bottom:213.466667pt;}
.y2f{bottom:215.226667pt;}
.y4c{bottom:215.386667pt;}
.yd6{bottom:219.866667pt;}
.yde{bottom:221.466667pt;}
.y97{bottom:223.386667pt;}
.y68{bottom:228.346667pt;}
.y77{bottom:231.066667pt;}
.yff{bottom:231.866667pt;}
.y2e{bottom:233.626667pt;}
.yb2{bottom:236.506667pt;}
.y4b{bottom:242.906667pt;}
.yd5{bottom:247.386667pt;}
.ydd{bottom:248.986667pt;}
.yfe{bottom:250.266667pt;}
.y96{bottom:250.906667pt;}
.y2d{bottom:252.026667pt;}
.y67{bottom:256.026667pt;}
.y76{bottom:258.746667pt;}
.yb1{bottom:264.026667pt;}
.yfd{bottom:268.666667pt;}
.y2c{bottom:270.426667pt;}
.y4a{bottom:270.586667pt;}
.yd4{bottom:275.066667pt;}
.ydc{bottom:276.666667pt;}
.y95{bottom:278.586667pt;}
.y66{bottom:283.546667pt;}
.y75{bottom:286.266667pt;}
.y2b{bottom:288.826667pt;}
.yb0{bottom:291.706667pt;}
.yfc{bottom:292.346667pt;}
.y49{bottom:298.106667pt;}
.yd3{bottom:302.626667pt;}
.ydb{bottom:304.226667pt;}
.y94{bottom:306.146667pt;}
.y2a{bottom:307.266667pt;}
.yfb{bottom:310.786667pt;}
.y65{bottom:311.266667pt;}
.y74{bottom:313.986667pt;}
.yaf{bottom:319.266667pt;}
.y29{bottom:325.666667pt;}
.y48{bottom:325.826667pt;}
.yfa{bottom:329.186667pt;}
.yd2{bottom:330.306667pt;}
.yda{bottom:331.906667pt;}
.y93{bottom:333.826667pt;}
.y64{bottom:338.786667pt;}
.y28{bottom:344.066667pt;}
.yae{bottom:346.946667pt;}
.y73{bottom:348.866667pt;}
.yf9{bottom:352.866667pt;}
.y47{bottom:353.346667pt;}
.yd1{bottom:357.826667pt;}
.yd9{bottom:359.426667pt;}
.y92{bottom:361.346667pt;}
.y27{bottom:362.466667pt;}
.y63{bottom:366.466667pt;}
.yf8{bottom:371.266667pt;}
.yad{bottom:374.466667pt;}
.y26{bottom:380.866667pt;}
.y46{bottom:381.026667pt;}
.yd0{bottom:385.506667pt;}
.y72{bottom:387.106667pt;}
.y91{bottom:389.026667pt;}
.yf7{bottom:389.666667pt;}
.y62{bottom:393.986667pt;}
.y25{bottom:399.266667pt;}
.yac{bottom:402.146667pt;}
.yf6{bottom:408.066667pt;}
.y45{bottom:408.546667pt;}
.ycf{bottom:413.026667pt;}
.y71{bottom:414.626667pt;}
.y90{bottom:416.546667pt;}
.y24{bottom:417.666667pt;}
.y61{bottom:421.666667pt;}
.yab{bottom:429.666667pt;}
.yf5{bottom:431.906667pt;}
.y23{bottom:436.066667pt;}
.y44{bottom:436.226667pt;}
.yce{bottom:438.466667pt;}
.y70{bottom:442.306667pt;}
.y8f{bottom:444.226667pt;}
.y60{bottom:449.186667pt;}
.yf4{bottom:450.306667pt;}
.y22{bottom:454.466667pt;}
.yaa{bottom:457.346667pt;}
.ycd{bottom:461.506667pt;}
.y43{bottom:463.746667pt;}
.y6f{bottom:469.826667pt;}
.y8e{bottom:471.746667pt;}
.y21{bottom:472.866667pt;}
.yf3{bottom:473.986667pt;}
.ycc{bottom:475.266667pt;}
.y5f{bottom:476.866667pt;}
.ya9{bottom:484.866667pt;}
.y20{bottom:491.266667pt;}
.y42{bottom:491.426667pt;}
.yf2{bottom:492.386667pt;}
.y6e{bottom:497.506667pt;}
.y8d{bottom:499.426667pt;}
.ycb{bottom:499.586667pt;}
.y5e{bottom:504.386667pt;}
.y1f{bottom:509.666667pt;}
.yf1{bottom:510.786667pt;}
.ya8{bottom:512.546667pt;}
.y41{bottom:518.946667pt;}
.yca{bottom:522.626667pt;}
.y6d{bottom:525.026667pt;}
.y8c{bottom:526.946667pt;}
.y1e{bottom:528.066667pt;}
.yf0{bottom:529.186667pt;}
.y5d{bottom:532.066667pt;}
.ya7{bottom:540.093333pt;}
.yc9{bottom:545.533333pt;}
.y1d{bottom:546.493333pt;}
.y40{bottom:546.653333pt;}
.y6c{bottom:552.573333pt;}
.yef{bottom:552.893333pt;}
.y8b{bottom:554.653333pt;}
.y1c{bottom:564.893333pt;}
.ya6{bottom:567.773333pt;}
.yc8{bottom:568.573333pt;}
.y5c{bottom:569.693333pt;}
.yee{bottom:571.293333pt;}
.y3f{bottom:574.173333pt;}
.y6b{bottom:580.253333pt;}
.y8a{bottom:582.173333pt;}
.y1b{bottom:583.293333pt;}
.yed{bottom:589.693333pt;}
.yc7{bottom:592.893333pt;}
.ya5{bottom:595.293333pt;}
.y1a{bottom:601.693333pt;}
.y3e{bottom:601.853333pt;}
.y89{bottom:607.613333pt;}
.y5b{bottom:607.773333pt;}
.yec{bottom:608.093333pt;}
.yc6{bottom:617.213333pt;}
.y19{bottom:620.093333pt;}
.y88{bottom:621.373333pt;}
.ya4{bottom:622.813333pt;}
.yeb{bottom:626.493333pt;}
.y3d{bottom:629.373333pt;}
.y5a{bottom:635.453333pt;}
.y18{bottom:638.493333pt;}
.ya3{bottom:639.133333pt;}
.yc5{bottom:640.253333pt;}
.y87{bottom:644.413333pt;}
.yea{bottom:650.173333pt;}
.y17{bottom:656.893333pt;}
.y3c{bottom:657.053333pt;}
.ya2{bottom:662.173333pt;}
.y59{bottom:662.973333pt;}
.yc4{bottom:663.293333pt;}
.y86{bottom:667.453333pt;}
.ye9{bottom:668.573333pt;}
.y16{bottom:675.293333pt;}
.y3b{bottom:684.573333pt;}
.ya1{bottom:685.053333pt;}
.yc3{bottom:686.173333pt;}
.ye8{bottom:686.973333pt;}
.y85{bottom:690.333333pt;}
.y58{bottom:690.653333pt;}
.y15{bottom:693.693333pt;}
.ye7{bottom:705.373333pt;}
.ya0{bottom:708.093333pt;}
.yc2{bottom:710.653333pt;}
.y14{bottom:712.093333pt;}
.y84{bottom:713.373333pt;}
.y57{bottom:718.173333pt;}
.ye6{bottom:729.213333pt;}
.y13{bottom:730.493333pt;}
.y9f{bottom:731.133333pt;}
.yc1{bottom:734.973333pt;}
.y83{bottom:736.413333pt;}
.y3a{bottom:739.773333pt;}
.y56{bottom:745.853333pt;}
.ye5{bottom:747.613333pt;}
.y12{bottom:748.893333pt;}
.y9e{bottom:754.173333pt;}
.yc0{bottom:757.853333pt;}
.y81{bottom:759.453333pt;}
.y11{bottom:767.293333pt;}
.ye4{bottom:771.293333pt;}
.y55{bottom:773.373333pt;}
.y9d{bottom:777.093333pt;}
.ybf{bottom:780.933333pt;}
.y80{bottom:782.373333pt;}
.y10{bottom:785.733333pt;}
.ye3{bottom:789.733333pt;}
.y39{bottom:795.013333pt;}
.y9c{bottom:800.773333pt;}
.y54{bottom:801.093333pt;}
.ybe{bottom:803.973333pt;}
.yf{bottom:804.133333pt;}
.y7f{bottom:805.413333pt;}
.ye2{bottom:813.413333pt;}
.ye{bottom:822.533333pt;}
.ybd{bottom:828.293333pt;}
.y53{bottom:828.613333pt;}
.y7d{bottom:829.093333pt;}
.y9b{bottom:835.653333pt;}
.ye1{bottom:837.733333pt;}
.yd{bottom:840.933333pt;}
.y38{bottom:850.213333pt;}
.ybc{bottom:852.613333pt;}
.y52{bottom:856.293333pt;}
.y9a{bottom:858.693333pt;}
.yc{bottom:859.333333pt;}
.y7c{bottom:863.333333pt;}
.ybb{bottom:875.653333pt;}
.y37{bottom:877.733333pt;}
.yb{bottom:878.853333pt;}
.y51{bottom:883.813333pt;}
.y7b{bottom:886.213333pt;}
.yba{bottom:898.533333pt;}
.ya{bottom:903.493333pt;}
.y36{bottom:905.413333pt;}
.y107{bottom:910.053333pt;}
.y50{bottom:911.493333pt;}
.yb9{bottom:921.573333pt;}
.y9{bottom:926.853333pt;}
.y35{bottom:932.933333pt;}
.y106{bottom:933.733333pt;}
.y4f{bottom:939.013333pt;}
.yb7{bottom:945.893333pt;}
.y8{bottom:946.373333pt;}
.y105{bottom:952.133333pt;}
.y34{bottom:956.773333pt;}
.y4e{bottom:966.693333pt;}
.y7{bottom:970.853333pt;}
.y104{bottom:975.813333pt;}
.y33{bottom:991.493333pt;}
.y6{bottom:994.213333pt;}
.yb6{bottom:996.613333pt;}
.y1{bottom:1096.800000pt;}
.hb{height:22.880000pt;}
.ha{height:22.912000pt;}
.h9{height:23.040000pt;}
.hf{height:23.072000pt;}
.he{height:38.880000pt;}
.hd{height:46.593750pt;}
.h8{height:47.180312pt;}
.hc{height:47.621250pt;}
.h3{height:52.785000pt;}
.h4{height:56.312500pt;}
.h10{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h5{height:75.602187pt;}
.h7{height:124.503750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:70.080000pt;}
.wa{width:95.680000pt;}
.w9{width:98.432000pt;}
.w6{width:112.032000pt;}
.w5{width:132.960000pt;}
.w4{width:134.106667pt;}
.wb{width:134.906667pt;}
.wd{width:144.000000pt;}
.wc{width:144.026667pt;}
.w3{width:192.186667pt;}
.w8{width:192.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.200000pt;}
.x1d{left:14.880000pt;}
.x15{left:16.160000pt;}
.x14{left:18.240000pt;}
.x19{left:19.840000pt;}
.x1a{left:22.240000pt;}
.x12{left:25.280000pt;}
.x13{left:28.640000pt;}
.x10{left:30.880000pt;}
.xc{left:44.960000pt;}
.x1b{left:60.314667pt;}
.x17{left:61.274667pt;}
.x16{left:66.554667pt;}
.x1c{left:70.394667pt;}
.x11{left:73.114667pt;}
.x18{left:77.594667pt;}
.xa{left:86.074667pt;}
.x9{left:95.232000pt;}
.x1{left:113.471988pt;}
.x8{left:142.266655pt;}
.x2{left:151.226655pt;}
.x1f{left:154.906667pt;}
.x5{left:172.506655pt;}
.x1e{left:189.146655pt;}
.x6{left:254.786655pt;}
.xb{left:287.426667pt;}
.x24{left:295.266667pt;}
.x20{left:347.746667pt;}
.x7{left:415.933322pt;}
.xd{left:421.533333pt;}
.x25{left:439.293333pt;}
.x22{left:446.173333pt;}
.x23{left:541.853333pt;}
.xe{left:554.493333pt;}
.x26{left:583.333333pt;}
.xf{left:666.533333pt;}
.x3{left:680.613322pt;}
.x4{left:718.373322pt;}
}




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