
    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_37f4d4164592e51788b59ee2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_e11f7629efe863352968f813.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9f2e3bb755c898b2d8e42b22.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_053bb92d695f3c01025d660d.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_a28f8a7492e2f67459e5b085.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3e6d67f7a2bd516b93ac8e2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_da272fdd6e3e0c636cf752da.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.060547;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_d848d0cb28d90324e371382b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_239373239664ade46d3a3e7e.woff2')format("woff");}.ff9{font-family:ff9;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.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls7{letter-spacing:-9.900000px;}
.ls8{letter-spacing:-1.800000px;}
.lsf{letter-spacing:-0.804000px;}
.ls13{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.427800px;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.269400px;}
.lsa{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.126000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.900000px;}
.ls14{letter-spacing:25.308000px;}
.lsd{letter-spacing:49.788000px;}
.ls11{letter-spacing:52.668000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.226440px;}
.ws3{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.374000px;}
.ws6{word-spacing:-13.140000px;}
.ws1{word-spacing:-11.790600px;}
.ws5{word-spacing:-11.700000px;}
.wsb{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.185000px;}
.wsa{word-spacing:-9.808800px;}
.ws4{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-3.230880px;}
._0{margin-left:-1.258560px;}
._3{width:1.696560px;}
._6{width:3.364560px;}
._5{width:4.860000px;}
._f{width:6.804000px;}
._7{width:8.748000px;}
._8{width:10.692000px;}
._9{width:11.880000px;}
._10{width:15.444000px;}
._11{width:16.756560px;}
._16{width:17.782560px;}
._d{width:18.792000px;}
._c{width:20.196000px;}
._13{width:21.222000px;}
._15{width:22.281120px;}
._e{width:23.328000px;}
._a{width:24.624000px;}
._b{width:26.152560px;}
._14{width:27.847440px;}
._19{width:28.944000px;}
._1d{width:30.319440px;}
._18{width:31.590000px;}
._1c{width:32.757120px;}
._1b{width:33.804000px;}
._12{width:38.626560px;}
._1e{width:39.636000px;}
._1a{width:41.148000px;}
._17{width:42.174000px;}
._20{width:51.968880px;}
._1f{width:53.206560px;}
._1{width:1625.460000px;}
._2{width:1927.132800px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(38,38,38);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs7{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:5.580000px;}
.y1f{bottom:11.340000px;}
.y1e{bottom:29.160000px;}
.y1b{bottom:32.580000px;}
.y1a{bottom:50.430000px;}
.y4a{bottom:58.500000px;}
.y19{bottom:68.250000px;}
.y7{bottom:76.860000px;}
.y101{bottom:77.940000px;}
.yca{bottom:81.360000px;}
.y18{bottom:86.070000px;}
.yd2{bottom:90.180000px;}
.y39{bottom:92.340000px;}
.y100{bottom:95.760000px;}
.y85{bottom:99.180000px;}
.y17{bottom:103.890000px;}
.yd1{bottom:108.000000px;}
.y38{bottom:110.160000px;}
.yae{bottom:110.880000px;}
.y84{bottom:117.000000px;}
.y16{bottom:121.710000px;}
.yff{bottom:122.580000px;}
.yd0{bottom:125.820000px;}
.y37{bottom:128.160000px;}
.yad{bottom:128.700000px;}
.y83{bottom:134.820000px;}
.y15{bottom:139.710000px;}
.yfe{bottom:140.580000px;}
.ycf{bottom:143.640000px;}
.y36{bottom:145.980000px;}
.yac{bottom:146.700000px;}
.y82{bottom:152.640000px;}
.y46{bottom:154.980000px;}
.y14{bottom:157.530000px;}
.yce{bottom:161.640000px;}
.y35{bottom:163.800000px;}
.yab{bottom:164.520000px;}
.yfd{bottom:167.400000px;}
.y81{bottom:170.640000px;}
.y45{bottom:172.800000px;}
.y13{bottom:175.350000px;}
.ycd{bottom:179.460000px;}
.y34{bottom:181.620000px;}
.yaa{bottom:182.340000px;}
.yfc{bottom:185.220000px;}
.y80{bottom:188.460000px;}
.y44{bottom:190.620000px;}
.y12{bottom:193.170000px;}
.ycc{bottom:197.280000px;}
.y33{bottom:199.440000px;}
.ya9{bottom:200.160000px;}
.yfb{bottom:203.040000px;}
.y7f{bottom:206.310000px;}
.y43{bottom:208.470000px;}
.yc9{bottom:215.310000px;}
.y32{bottom:217.470000px;}
.ya8{bottom:218.010000px;}
.y7e{bottom:224.130000px;}
.y42{bottom:226.470000px;}
.yfa{bottom:229.890000px;}
.yc8{bottom:233.130000px;}
.ya7{bottom:235.830000px;}
.y7d{bottom:241.950000px;}
.y31{bottom:244.290000px;}
.yf9{bottom:247.890000px;}
.yc7{bottom:250.950000px;}
.ya6{bottom:253.830000px;}
.y7c{bottom:259.950000px;}
.y30{bottom:262.110000px;}
.yc6{bottom:268.950000px;}
.yf8{bottom:276.150000px;}
.y7b{bottom:277.770000px;}
.y2f{bottom:279.930000px;}
.ya5{bottom:280.650000px;}
.yc5{bottom:286.770000px;}
.y7a{bottom:295.590000px;}
.y2e{bottom:297.750000px;}
.ya4{bottom:298.470000px;}
.yc4{bottom:304.590000px;}
.yf7{bottom:307.470000px;}
.y79{bottom:313.410000px;}
.y2d{bottom:315.570000px;}
.ya3{bottom:316.290000px;}
.yc3{bottom:322.410000px;}
.yf6{bottom:325.290000px;}
.ye3{bottom:331.230000px;}
.y2c{bottom:333.570000px;}
.ya2{bottom:334.110000px;}
.y78{bottom:340.230000px;}
.yf5{bottom:343.110000px;}
.ye2{bottom:349.050000px;}
.yc2{bottom:349.230000px;}
.y2b{bottom:351.390000px;}
.ya1{bottom:352.110000px;}
.y77{bottom:358.050000px;}
.yf4{bottom:361.110000px;}
.yc1{bottom:367.050000px;}
.y2a{bottom:369.210000px;}
.ya0{bottom:369.930000px;}
.y76{bottom:376.050000px;}
.yf3{bottom:378.930000px;}
.yc0{bottom:385.050000px;}
.y29{bottom:387.030000px;}
.y9f{bottom:387.750000px;}
.y75{bottom:393.870000px;}
.yf2{bottom:396.750000px;}
.ybf{bottom:402.870000px;}
.y28{bottom:404.850000px;}
.y9e{bottom:405.570000px;}
.y74{bottom:411.690000px;}
.y41{bottom:413.850000px;}
.yf1{bottom:414.570000px;}
.ybe{bottom:420.690000px;}
.y27{bottom:422.850000px;}
.y9d{bottom:423.390000px;}
.y73{bottom:429.510000px;}
.y40{bottom:431.850000px;}
.yf0{bottom:432.390000px;}
.ybd{bottom:438.510000px;}
.y26{bottom:440.670000px;}
.y9c{bottom:441.255000px;}
.y72{bottom:447.375000px;}
.y3f{bottom:449.715000px;}
.yef{bottom:450.255000px;}
.ybc{bottom:456.375000px;}
.y25{bottom:458.535000px;}
.y71{bottom:465.195000px;}
.y3e{bottom:467.535000px;}
.yee{bottom:468.255000px;}
.y9b{bottom:469.695000px;}
.ybb{bottom:474.195000px;}
.y24{bottom:476.355000px;}
.y70{bottom:483.195000px;}
.y3d{bottom:485.355000px;}
.yed{bottom:486.075000px;}
.yba{bottom:492.195000px;}
.y23{bottom:494.175000px;}
.y6f{bottom:501.015000px;}
.y3c{bottom:503.175000px;}
.yec{bottom:503.895000px;}
.yb9{bottom:510.015000px;}
.y22{bottom:511.995000px;}
.y6e{bottom:518.835000px;}
.y3b{bottom:520.995000px;}
.yeb{bottom:521.715000px;}
.y21{bottom:529.995000px;}
.y6d{bottom:536.655000px;}
.yb8{bottom:536.835000px;}
.y3a{bottom:538.995000px;}
.yea{bottom:539.535000px;}
.y121{bottom:553.755000px;}
.y6c{bottom:554.475000px;}
.yb7{bottom:554.655000px;}
.ye9{bottom:557.535000px;}
.y20{bottom:558.255000px;}
.y11c{bottom:571.575000px;}
.y9a{bottom:572.475000px;}
.ye8{bottom:575.355000px;}
.y6b{bottom:581.475000px;}
.y1d{bottom:584.715000px;}
.y11b{bottom:589.575000px;}
.y99{bottom:590.295000px;}
.yb6{bottom:590.475000px;}
.ye7{bottom:593.175000px;}
.y6a{bottom:599.295000px;}
.y98{bottom:608.115000px;}
.yb5{bottom:608.295000px;}
.y11a{bottom:616.395000px;}
.y69{bottom:617.115000px;}
.ye6{bottom:621.435000px;}
.y97{bottom:625.935000px;}
.yb4{bottom:626.115000px;}
.y119{bottom:634.215000px;}
.y68{bottom:634.935000px;}
.y11{bottom:635.835000px;}
.y96{bottom:643.755000px;}
.yb3{bottom:643.935000px;}
.y67{bottom:652.755000px;}
.y118{bottom:661.035000px;}
.y95{bottom:661.575000px;}
.yb2{bottom:661.755000px;}
.y66{bottom:670.575000px;}
.y117{bottom:678.885000px;}
.y94{bottom:679.605000px;}
.y65{bottom:688.605000px;}
.y93{bottom:697.425000px;}
.yb1{bottom:697.605000px;}
.y116{bottom:705.885000px;}
.y64{bottom:706.425000px;}
.ye1{bottom:715.245000px;}
.yb0{bottom:715.425000px;}
.y115{bottom:723.705000px;}
.y92{bottom:723.885000px;}
.y63{bottom:724.245000px;}
.yaf{bottom:733.245000px;}
.y62{bottom:742.065000px;}
.y114{bottom:750.525000px;}
.y91{bottom:751.065000px;}
.y61{bottom:759.885000px;}
.y113{bottom:768.345000px;}
.y90{bottom:768.885000px;}
.ye0{bottom:777.885000px;}
.y60{bottom:786.885000px;}
.y112{bottom:795.165000px;}
.ydf{bottom:795.705000px;}
.y5f{bottom:804.705000px;}
.y111{bottom:812.985000px;}
.yde{bottom:813.525000px;}
.y5e{bottom:822.525000px;}
.ydd{bottom:831.345000px;}
.y8f{bottom:831.525000px;}
.y110{bottom:839.985000px;}
.y5d{bottom:840.345000px;}
.ydc{bottom:849.165000px;}
.y8e{bottom:849.345000px;}
.y10{bottom:856.725000px;}
.y10f{bottom:857.805000px;}
.y5c{bottom:858.165000px;}
.ydb{bottom:866.985000px;}
.y8d{bottom:867.165000px;}
.y5b{bottom:875.985000px;}
.yf{bottom:883.545000px;}
.y10e{bottom:884.625000px;}
.y8c{bottom:884.985000px;}
.y5a{bottom:893.985000px;}
.y10d{bottom:902.445000px;}
.yda{bottom:902.805000px;}
.y8b{bottom:902.985000px;}
.y59{bottom:911.850000px;}
.ye{bottom:916.350000px;}
.y10c{bottom:920.310000px;}
.yd9{bottom:920.670000px;}
.y8a{bottom:920.850000px;}
.y120{bottom:929.310000px;}
.y58{bottom:929.670000px;}
.yd8{bottom:938.490000px;}
.y89{bottom:938.670000px;}
.yd{bottom:943.170000px;}
.y10b{bottom:947.310000px;}
.y57{bottom:947.490000px;}
.y88{bottom:956.490000px;}
.yc{bottom:963.690000px;}
.y10a{bottom:965.130000px;}
.y56{bottom:965.310000px;}
.y11f{bottom:974.130000px;}
.y87{bottom:974.310000px;}
.y55{bottom:983.310000px;}
.y109{bottom:991.950000px;}
.y86{bottom:992.310000px;}
.yb{bottom:993.570000px;}
.ycb{bottom:1001.130000px;}
.y108{bottom:1009.770000px;}
.y54{bottom:1010.130000px;}
.y11e{bottom:1018.770000px;}
.yd7{bottom:1018.950000px;}
.ya{bottom:1021.470000px;}
.y53{bottom:1027.950000px;}
.y107{bottom:1036.590000px;}
.yd6{bottom:1036.770000px;}
.y52{bottom:1045.770000px;}
.y106{bottom:1054.410000px;}
.yd5{bottom:1054.590000px;}
.y9{bottom:1056.930000px;}
.y11d{bottom:1063.410000px;}
.y51{bottom:1063.590000px;}
.yd4{bottom:1072.410000px;}
.y50{bottom:1081.410000px;}
.y8{bottom:1087.350000px;}
.yd3{bottom:1090.410000px;}
.y105{bottom:1099.230000px;}
.y4f{bottom:1099.410000px;}
.ye5{bottom:1108.230000px;}
.y6{bottom:1113.270000px;}
.y104{bottom:1117.050000px;}
.y4e{bottom:1117.230000px;}
.ye4{bottom:1126.050000px;}
.y5{bottom:1132.530000px;}
.y4d{bottom:1135.050000px;}
.y103{bottom:1143.870000px;}
.y4{bottom:1150.920000px;}
.y4c{bottom:1152.900000px;}
.y102{bottom:1161.720000px;}
.y3{bottom:1166.220000px;}
.y4b{bottom:1170.720000px;}
.y2{bottom:1181.520000px;}
.y49{bottom:1183.860000px;}
.y48{bottom:1189.260000px;}
.y47{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h13{height:10.363359px;}
.h12{height:15.240234px;}
.hb{height:35.332031px;}
.h14{height:37.705078px;}
.h11{height:40.843828px;}
.hc{height:41.944219px;}
.h6{height:47.344922px;}
.hf{height:50.385000px;}
.h7{height:52.998047px;}
.hd{height:54.421875px;}
.h15{height:55.503491px;}
.ha{height:60.041250px;}
.h3{height:64.978594px;}
.h5{height:65.010937px;}
.h2{height:65.884219px;}
.h8{height:69.660000px;}
.h4{height:70.664062px;}
.h10{height:72.562500px;}
.h9{height:84.898125px;}
.he{height:214.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.098500px;}
.x5{left:54.000000px;}
.xf{left:55.440000px;}
.x8{left:72.901500px;}
.x15{left:81.000000px;}
.x6{left:89.676000px;}
.xa{left:93.816000px;}
.x14{left:95.256000px;}
.x16{left:108.036000px;}
.xd{left:227.010000px;}
.x1{left:259.950000px;}
.x2{left:320.475000px;}
.x4{left:335.775000px;}
.x3{left:353.055000px;}
.xe{left:446.505000px;}
.xb{left:473.505000px;}
.x11{left:500.505000px;}
.xc{left:513.285000px;}
.x13{left:514.725000px;}
.x12{left:527.505000px;}
.x10{left:822.420000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls7{letter-spacing:-8.800000pt;}
.ls8{letter-spacing:-1.600000pt;}
.lsf{letter-spacing:-0.714667pt;}
.ls13{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.380267pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.239467pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.112000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls14{letter-spacing:22.496000pt;}
.lsd{letter-spacing:44.256000pt;}
.ls11{letter-spacing:46.816000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws3{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.888000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws5{word-spacing:-10.400000pt;}
.wsb{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.053333pt;}
.wsa{word-spacing:-8.718933pt;}
.ws4{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-2.871893pt;}
._0{margin-left:-1.118720pt;}
._3{width:1.508053pt;}
._6{width:2.990720pt;}
._5{width:4.320000pt;}
._f{width:6.048000pt;}
._7{width:7.776000pt;}
._8{width:9.504000pt;}
._9{width:10.560000pt;}
._10{width:13.728000pt;}
._11{width:14.894720pt;}
._16{width:15.806720pt;}
._d{width:16.704000pt;}
._c{width:17.952000pt;}
._13{width:18.864000pt;}
._15{width:19.805440pt;}
._e{width:20.736000pt;}
._a{width:21.888000pt;}
._b{width:23.246720pt;}
._14{width:24.753280pt;}
._19{width:25.728000pt;}
._1d{width:26.950613pt;}
._18{width:28.080000pt;}
._1c{width:29.117440pt;}
._1b{width:30.048000pt;}
._12{width:34.334720pt;}
._1e{width:35.232000pt;}
._1a{width:36.576000pt;}
._17{width:37.488000pt;}
._20{width:46.194560pt;}
._1f{width:47.294720pt;}
._1{width:1444.853333pt;}
._2{width:1713.006933pt;}
.fs8{font-size:10.880000pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:4.960000pt;}
.y1f{bottom:10.080000pt;}
.y1e{bottom:25.920000pt;}
.y1b{bottom:28.960000pt;}
.y1a{bottom:44.826667pt;}
.y4a{bottom:52.000000pt;}
.y19{bottom:60.666667pt;}
.y7{bottom:68.320000pt;}
.y101{bottom:69.280000pt;}
.yca{bottom:72.320000pt;}
.y18{bottom:76.506667pt;}
.yd2{bottom:80.160000pt;}
.y39{bottom:82.080000pt;}
.y100{bottom:85.120000pt;}
.y85{bottom:88.160000pt;}
.y17{bottom:92.346667pt;}
.yd1{bottom:96.000000pt;}
.y38{bottom:97.920000pt;}
.yae{bottom:98.560000pt;}
.y84{bottom:104.000000pt;}
.y16{bottom:108.186667pt;}
.yff{bottom:108.960000pt;}
.yd0{bottom:111.840000pt;}
.y37{bottom:113.920000pt;}
.yad{bottom:114.400000pt;}
.y83{bottom:119.840000pt;}
.y15{bottom:124.186667pt;}
.yfe{bottom:124.960000pt;}
.ycf{bottom:127.680000pt;}
.y36{bottom:129.760000pt;}
.yac{bottom:130.400000pt;}
.y82{bottom:135.680000pt;}
.y46{bottom:137.760000pt;}
.y14{bottom:140.026667pt;}
.yce{bottom:143.680000pt;}
.y35{bottom:145.600000pt;}
.yab{bottom:146.240000pt;}
.yfd{bottom:148.800000pt;}
.y81{bottom:151.680000pt;}
.y45{bottom:153.600000pt;}
.y13{bottom:155.866667pt;}
.ycd{bottom:159.520000pt;}
.y34{bottom:161.440000pt;}
.yaa{bottom:162.080000pt;}
.yfc{bottom:164.640000pt;}
.y80{bottom:167.520000pt;}
.y44{bottom:169.440000pt;}
.y12{bottom:171.706667pt;}
.ycc{bottom:175.360000pt;}
.y33{bottom:177.280000pt;}
.ya9{bottom:177.920000pt;}
.yfb{bottom:180.480000pt;}
.y7f{bottom:183.386667pt;}
.y43{bottom:185.306667pt;}
.yc9{bottom:191.386667pt;}
.y32{bottom:193.306667pt;}
.ya8{bottom:193.786667pt;}
.y7e{bottom:199.226667pt;}
.y42{bottom:201.306667pt;}
.yfa{bottom:204.346667pt;}
.yc8{bottom:207.226667pt;}
.ya7{bottom:209.626667pt;}
.y7d{bottom:215.066667pt;}
.y31{bottom:217.146667pt;}
.yf9{bottom:220.346667pt;}
.yc7{bottom:223.066667pt;}
.ya6{bottom:225.626667pt;}
.y7c{bottom:231.066667pt;}
.y30{bottom:232.986667pt;}
.yc6{bottom:239.066667pt;}
.yf8{bottom:245.466667pt;}
.y7b{bottom:246.906667pt;}
.y2f{bottom:248.826667pt;}
.ya5{bottom:249.466667pt;}
.yc5{bottom:254.906667pt;}
.y7a{bottom:262.746667pt;}
.y2e{bottom:264.666667pt;}
.ya4{bottom:265.306667pt;}
.yc4{bottom:270.746667pt;}
.yf7{bottom:273.306667pt;}
.y79{bottom:278.586667pt;}
.y2d{bottom:280.506667pt;}
.ya3{bottom:281.146667pt;}
.yc3{bottom:286.586667pt;}
.yf6{bottom:289.146667pt;}
.ye3{bottom:294.426667pt;}
.y2c{bottom:296.506667pt;}
.ya2{bottom:296.986667pt;}
.y78{bottom:302.426667pt;}
.yf5{bottom:304.986667pt;}
.ye2{bottom:310.266667pt;}
.yc2{bottom:310.426667pt;}
.y2b{bottom:312.346667pt;}
.ya1{bottom:312.986667pt;}
.y77{bottom:318.266667pt;}
.yf4{bottom:320.986667pt;}
.yc1{bottom:326.266667pt;}
.y2a{bottom:328.186667pt;}
.ya0{bottom:328.826667pt;}
.y76{bottom:334.266667pt;}
.yf3{bottom:336.826667pt;}
.yc0{bottom:342.266667pt;}
.y29{bottom:344.026667pt;}
.y9f{bottom:344.666667pt;}
.y75{bottom:350.106667pt;}
.yf2{bottom:352.666667pt;}
.ybf{bottom:358.106667pt;}
.y28{bottom:359.866667pt;}
.y9e{bottom:360.506667pt;}
.y74{bottom:365.946667pt;}
.y41{bottom:367.866667pt;}
.yf1{bottom:368.506667pt;}
.ybe{bottom:373.946667pt;}
.y27{bottom:375.866667pt;}
.y9d{bottom:376.346667pt;}
.y73{bottom:381.786667pt;}
.y40{bottom:383.866667pt;}
.yf0{bottom:384.346667pt;}
.ybd{bottom:389.786667pt;}
.y26{bottom:391.706667pt;}
.y9c{bottom:392.226667pt;}
.y72{bottom:397.666667pt;}
.y3f{bottom:399.746667pt;}
.yef{bottom:400.226667pt;}
.ybc{bottom:405.666667pt;}
.y25{bottom:407.586667pt;}
.y71{bottom:413.506667pt;}
.y3e{bottom:415.586667pt;}
.yee{bottom:416.226667pt;}
.y9b{bottom:417.506667pt;}
.ybb{bottom:421.506667pt;}
.y24{bottom:423.426667pt;}
.y70{bottom:429.506667pt;}
.y3d{bottom:431.426667pt;}
.yed{bottom:432.066667pt;}
.yba{bottom:437.506667pt;}
.y23{bottom:439.266667pt;}
.y6f{bottom:445.346667pt;}
.y3c{bottom:447.266667pt;}
.yec{bottom:447.906667pt;}
.yb9{bottom:453.346667pt;}
.y22{bottom:455.106667pt;}
.y6e{bottom:461.186667pt;}
.y3b{bottom:463.106667pt;}
.yeb{bottom:463.746667pt;}
.y21{bottom:471.106667pt;}
.y6d{bottom:477.026667pt;}
.yb8{bottom:477.186667pt;}
.y3a{bottom:479.106667pt;}
.yea{bottom:479.586667pt;}
.y121{bottom:492.226667pt;}
.y6c{bottom:492.866667pt;}
.yb7{bottom:493.026667pt;}
.ye9{bottom:495.586667pt;}
.y20{bottom:496.226667pt;}
.y11c{bottom:508.066667pt;}
.y9a{bottom:508.866667pt;}
.ye8{bottom:511.426667pt;}
.y6b{bottom:516.866667pt;}
.y1d{bottom:519.746667pt;}
.y11b{bottom:524.066667pt;}
.y99{bottom:524.706667pt;}
.yb6{bottom:524.866667pt;}
.ye7{bottom:527.266667pt;}
.y6a{bottom:532.706667pt;}
.y98{bottom:540.546667pt;}
.yb5{bottom:540.706667pt;}
.y11a{bottom:547.906667pt;}
.y69{bottom:548.546667pt;}
.ye6{bottom:552.386667pt;}
.y97{bottom:556.386667pt;}
.yb4{bottom:556.546667pt;}
.y119{bottom:563.746667pt;}
.y68{bottom:564.386667pt;}
.y11{bottom:565.186667pt;}
.y96{bottom:572.226667pt;}
.yb3{bottom:572.386667pt;}
.y67{bottom:580.226667pt;}
.y118{bottom:587.586667pt;}
.y95{bottom:588.066667pt;}
.yb2{bottom:588.226667pt;}
.y66{bottom:596.066667pt;}
.y117{bottom:603.453333pt;}
.y94{bottom:604.093333pt;}
.y65{bottom:612.093333pt;}
.y93{bottom:619.933333pt;}
.yb1{bottom:620.093333pt;}
.y116{bottom:627.453333pt;}
.y64{bottom:627.933333pt;}
.ye1{bottom:635.773333pt;}
.yb0{bottom:635.933333pt;}
.y115{bottom:643.293333pt;}
.y92{bottom:643.453333pt;}
.y63{bottom:643.773333pt;}
.yaf{bottom:651.773333pt;}
.y62{bottom:659.613333pt;}
.y114{bottom:667.133333pt;}
.y91{bottom:667.613333pt;}
.y61{bottom:675.453333pt;}
.y113{bottom:682.973333pt;}
.y90{bottom:683.453333pt;}
.ye0{bottom:691.453333pt;}
.y60{bottom:699.453333pt;}
.y112{bottom:706.813333pt;}
.ydf{bottom:707.293333pt;}
.y5f{bottom:715.293333pt;}
.y111{bottom:722.653333pt;}
.yde{bottom:723.133333pt;}
.y5e{bottom:731.133333pt;}
.ydd{bottom:738.973333pt;}
.y8f{bottom:739.133333pt;}
.y110{bottom:746.653333pt;}
.y5d{bottom:746.973333pt;}
.ydc{bottom:754.813333pt;}
.y8e{bottom:754.973333pt;}
.y10{bottom:761.533333pt;}
.y10f{bottom:762.493333pt;}
.y5c{bottom:762.813333pt;}
.ydb{bottom:770.653333pt;}
.y8d{bottom:770.813333pt;}
.y5b{bottom:778.653333pt;}
.yf{bottom:785.373333pt;}
.y10e{bottom:786.333333pt;}
.y8c{bottom:786.653333pt;}
.y5a{bottom:794.653333pt;}
.y10d{bottom:802.173333pt;}
.yda{bottom:802.493333pt;}
.y8b{bottom:802.653333pt;}
.y59{bottom:810.533333pt;}
.ye{bottom:814.533333pt;}
.y10c{bottom:818.053333pt;}
.yd9{bottom:818.373333pt;}
.y8a{bottom:818.533333pt;}
.y120{bottom:826.053333pt;}
.y58{bottom:826.373333pt;}
.yd8{bottom:834.213333pt;}
.y89{bottom:834.373333pt;}
.yd{bottom:838.373333pt;}
.y10b{bottom:842.053333pt;}
.y57{bottom:842.213333pt;}
.y88{bottom:850.213333pt;}
.yc{bottom:856.613333pt;}
.y10a{bottom:857.893333pt;}
.y56{bottom:858.053333pt;}
.y11f{bottom:865.893333pt;}
.y87{bottom:866.053333pt;}
.y55{bottom:874.053333pt;}
.y109{bottom:881.733333pt;}
.y86{bottom:882.053333pt;}
.yb{bottom:883.173333pt;}
.ycb{bottom:889.893333pt;}
.y108{bottom:897.573333pt;}
.y54{bottom:897.893333pt;}
.y11e{bottom:905.573333pt;}
.yd7{bottom:905.733333pt;}
.ya{bottom:907.973333pt;}
.y53{bottom:913.733333pt;}
.y107{bottom:921.413333pt;}
.yd6{bottom:921.573333pt;}
.y52{bottom:929.573333pt;}
.y106{bottom:937.253333pt;}
.yd5{bottom:937.413333pt;}
.y9{bottom:939.493333pt;}
.y11d{bottom:945.253333pt;}
.y51{bottom:945.413333pt;}
.yd4{bottom:953.253333pt;}
.y50{bottom:961.253333pt;}
.y8{bottom:966.533333pt;}
.yd3{bottom:969.253333pt;}
.y105{bottom:977.093333pt;}
.y4f{bottom:977.253333pt;}
.ye5{bottom:985.093333pt;}
.y6{bottom:989.573333pt;}
.y104{bottom:992.933333pt;}
.y4e{bottom:993.093333pt;}
.ye4{bottom:1000.933333pt;}
.y5{bottom:1006.693333pt;}
.y4d{bottom:1008.933333pt;}
.y103{bottom:1016.773333pt;}
.y4{bottom:1023.040000pt;}
.y4c{bottom:1024.800000pt;}
.y102{bottom:1032.640000pt;}
.y3{bottom:1036.640000pt;}
.y4b{bottom:1040.640000pt;}
.y2{bottom:1050.240000pt;}
.y49{bottom:1052.320000pt;}
.y48{bottom:1057.120000pt;}
.y47{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h13{height:9.211875pt;}
.h12{height:13.546875pt;}
.hb{height:31.406250pt;}
.h14{height:33.515625pt;}
.h11{height:36.305625pt;}
.hc{height:37.283750pt;}
.h6{height:42.084375pt;}
.hf{height:44.786667pt;}
.h7{height:47.109375pt;}
.hd{height:48.375000pt;}
.h15{height:49.336436pt;}
.ha{height:53.370000pt;}
.h3{height:57.758750pt;}
.h5{height:57.787500pt;}
.h2{height:58.563750pt;}
.h8{height:61.920000pt;}
.h4{height:62.812500pt;}
.h10{height:64.500000pt;}
.h9{height:75.465000pt;}
.he{height:190.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.198667pt;}
.x5{left:48.000000pt;}
.xf{left:49.280000pt;}
.x8{left:64.801333pt;}
.x15{left:72.000000pt;}
.x6{left:79.712000pt;}
.xa{left:83.392000pt;}
.x14{left:84.672000pt;}
.x16{left:96.032000pt;}
.xd{left:201.786667pt;}
.x1{left:231.066667pt;}
.x2{left:284.866667pt;}
.x4{left:298.466667pt;}
.x3{left:313.826667pt;}
.xe{left:396.893333pt;}
.xb{left:420.893333pt;}
.x11{left:444.893333pt;}
.xc{left:456.253333pt;}
.x13{left:457.533333pt;}
.x12{left:468.893333pt;}
.x10{left:731.040000pt;}
.x7{left:739.200000pt;}
}




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