
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_9bf5c349b780f8723309e666.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a99398798cf5b99cbff9791a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_12a2a6a9001079c7188e8223.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_e28bb2f00eb607c649826668.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_f4d842fa572a852f9c64d784.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3fb34ce7e6be20ea19155b39.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_cca847b60b38148327a36fb7.woff')format("woff");}.ff8{font-family:ff8;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);}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls19{letter-spacing:-0.420600px;}
.ls1a{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.178800px;}
.ls18{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.014760px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.143400px;}
.ls8{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls6{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.181200px;}
.lse{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls5{letter-spacing:17.400000px;}
.ls17{letter-spacing:47.726640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-60.120000px;}
.ws8{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.425600px;}
.wsc{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.wse{word-spacing:-13.369800px;}
.wsd{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.211640px;}
.wsf{word-spacing:-13.072800px;}
.ws4{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.982800px;}
.ws10{word-spacing:-12.805800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._11{margin-left:-3.907800px;}
._9{margin-left:-2.765400px;}
._0{margin-left:-1.110000px;}
._1{width:1.018092px;}
._4{width:2.524800px;}
._5{width:3.638161px;}
._f{width:4.682995px;}
._6{width:5.771400px;}
._c{width:6.881400px;}
._14{width:8.416800px;}
._d{width:9.859800px;}
._e{width:11.121599px;}
._1b{width:12.192242px;}
._8{width:15.089639px;}
._7{width:16.320600px;}
._16{width:17.827560px;}
._10{width:18.877800px;}
._2{width:20.020200px;}
._3{width:21.642599px;}
._13{width:22.786081px;}
._17{width:24.032520px;}
._15{width:25.037640px;}
._1e{width:26.633160px;}
._12{width:27.835560px;}
._1d{width:29.453640px;}
._1c{width:30.689040px;}
._18{width:32.885640px;}
._b{width:33.943200px;}
._a{width:35.194800px;}
._19{width:49.719240px;}
._1a{width:51.009600px;}
._22{width:55.190160px;}
._23{width:84.498480px;}
._1f{width:94.929480px;}
._20{width:96.252120px;}
._21{width:598.795200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y45{bottom:7.830000px;}
.yba{bottom:7.920000px;}
.y4b{bottom:25.380000px;}
.y49{bottom:25.410000px;}
.y44{bottom:25.470000px;}
.y43{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y77{bottom:113.070000px;}
.yb7{bottom:113.790000px;}
.y85{bottom:113.970000px;}
.y58{bottom:116.220000px;}
.ye4{bottom:122.520000px;}
.y76{bottom:130.620000px;}
.yb6{bottom:131.340000px;}
.y84{bottom:131.610000px;}
.y57{bottom:133.770000px;}
.ye3{bottom:140.160000px;}
.y75{bottom:148.260000px;}
.yb5{bottom:148.980000px;}
.y83{bottom:149.160000px;}
.y56{bottom:151.410000px;}
.ye2{bottom:157.710000px;}
.y27{bottom:158.250000px;}
.y74{bottom:165.810000px;}
.yb4{bottom:166.530000px;}
.y82{bottom:166.800000px;}
.ye1{bottom:175.350000px;}
.y26{bottom:175.800000px;}
.y73{bottom:183.450000px;}
.yb3{bottom:184.170000px;}
.y81{bottom:184.350000px;}
.y55{bottom:186.960000px;}
.y25{bottom:193.350000px;}
.y72{bottom:201.000000px;}
.yb2{bottom:201.720000px;}
.y54{bottom:204.600000px;}
.ye0{bottom:210.900000px;}
.y24{bottom:210.990000px;}
.yb1{bottom:219.270000px;}
.y80{bottom:219.900000px;}
.yf7{bottom:220.170000px;}
.y53{bottom:222.150000px;}
.y71{bottom:227.910000px;}
.ydf{bottom:228.450000px;}
.yf6{bottom:237.720000px;}
.y52{bottom:239.700000px;}
.yde{bottom:246.090000px;}
.y23{bottom:246.540000px;}
.y7f{bottom:252.120000px;}
.yb0{bottom:254.910000px;}
.yf5{bottom:255.270000px;}
.y51{bottom:257.340000px;}
.ydd{bottom:263.640000px;}
.y22{bottom:264.090000px;}
.yaf{bottom:272.460000px;}
.yf4{bottom:272.910000px;}
.y50{bottom:274.890000px;}
.y70{bottom:276.150000px;}
.ydc{bottom:281.190000px;}
.y21{bottom:281.730000px;}
.yae{bottom:290.100000px;}
.yf3{bottom:290.460000px;}
.y4f{bottom:292.440000px;}
.ydb{bottom:298.830000px;}
.y20{bottom:299.280000px;}
.yad{bottom:307.650000px;}
.yf2{bottom:308.100000px;}
.y6f{bottom:308.370000px;}
.y4e{bottom:310.080000px;}
.yda{bottom:316.380000px;}
.y1f{bottom:316.920000px;}
.yac{bottom:325.200000px;}
.yf1{bottom:325.650000px;}
.y4d{bottom:327.630000px;}
.yd9{bottom:334.020000px;}
.y1e{bottom:334.470000px;}
.yab{bottom:342.840000px;}
.yf0{bottom:343.200000px;}
.yd8{bottom:351.570000px;}
.y4c{bottom:354.540000px;}
.yaa{bottom:360.390000px;}
.yef{bottom:360.840000px;}
.y1d{bottom:361.380000px;}
.yd7{bottom:369.120000px;}
.ya9{bottom:377.940000px;}
.yee{bottom:378.390000px;}
.yd6{bottom:386.760000px;}
.ya8{bottom:395.580000px;}
.yed{bottom:395.940000px;}
.y4a{bottom:400.260000px;}
.y1c{bottom:409.620000px;}
.ya7{bottom:413.130000px;}
.yec{bottom:413.580000px;}
.yd5{bottom:422.310000px;}
.y1b{bottom:427.530000px;}
.ya6{bottom:430.770000px;}
.yeb{bottom:431.130000px;}
.yd4{bottom:439.950000px;}
.y48{bottom:445.170000px;}
.yea{bottom:448.770000px;}
.yd3{bottom:457.500000px;}
.y1a{bottom:464.610000px;}
.ya5{bottom:466.320000px;}
.yd2{bottom:475.080000px;}
.y19{bottom:482.190000px;}
.ya4{bottom:483.900000px;}
.y47{bottom:490.110000px;}
.yd1{bottom:492.720000px;}
.y18{bottom:499.830000px;}
.ya3{bottom:501.540000px;}
.y110{bottom:509.730000px;}
.yd0{bottom:510.270000px;}
.y17{bottom:517.380000px;}
.ya2{bottom:519.090000px;}
.y10f{bottom:527.280000px;}
.ycf{bottom:527.910000px;}
.y16{bottom:534.930000px;}
.y46{bottom:535.020000px;}
.ya1{bottom:536.730000px;}
.yce{bottom:545.460000px;}
.y15{bottom:552.570000px;}
.y10e{bottom:553.830000px;}
.ya0{bottom:554.280000px;}
.ycd{bottom:563.010000px;}
.y14{bottom:570.120000px;}
.y10d{bottom:571.470000px;}
.y9f{bottom:571.830000px;}
.y42{bottom:579.930000px;}
.ycc{bottom:580.650000px;}
.ye9{bottom:581.190000px;}
.y13{bottom:587.670000px;}
.y9e{bottom:589.470000px;}
.y10c{bottom:598.020000px;}
.y12{bottom:605.310000px;}
.y9d{bottom:607.020000px;}
.y10b{bottom:615.660000px;}
.ycb{bottom:616.200000px;}
.y11{bottom:622.860000px;}
.y7e{bottom:629.070000px;}
.ye8{bottom:629.430000px;}
.y10a{bottom:633.210000px;}
.yca{bottom:633.840000px;}
.y10{bottom:640.500000px;}
.y9c{bottom:642.660000px;}
.y7d{bottom:646.620000px;}
.y6e{bottom:647.070000px;}
.yc9{bottom:651.390000px;}
.yf{bottom:658.050000px;}
.y109{bottom:659.760000px;}
.y9b{bottom:660.210000px;}
.y41{bottom:663.810000px;}
.y7c{bottom:664.260000px;}
.y6d{bottom:664.620000px;}
.yc8{bottom:668.940000px;}
.ye{bottom:675.600000px;}
.y108{bottom:677.400000px;}
.y9a{bottom:677.760000px;}
.y7b{bottom:681.810000px;}
.y6c{bottom:682.260000px;}
.yc7{bottom:686.580000px;}
.yd{bottom:693.240000px;}
.y107{bottom:694.950000px;}
.y99{bottom:695.400000px;}
.y40{bottom:699.360000px;}
.y6b{bottom:699.810000px;}
.yc6{bottom:704.130000px;}
.yc{bottom:710.790000px;}
.y98{bottom:712.950000px;}
.y3f{bottom:717.000000px;}
.y6a{bottom:717.360000px;}
.y106{bottom:721.590000px;}
.yc5{bottom:721.770000px;}
.yb{bottom:728.430000px;}
.y97{bottom:730.590000px;}
.y3e{bottom:734.550000px;}
.y69{bottom:735.000000px;}
.y105{bottom:739.140000px;}
.yc4{bottom:739.320000px;}
.y96{bottom:748.140000px;}
.y3d{bottom:752.190000px;}
.ye7{bottom:752.550000px;}
.ya{bottom:755.340000px;}
.y104{bottom:756.690000px;}
.yc3{bottom:756.870000px;}
.y95{bottom:765.690000px;}
.y3c{bottom:769.740000px;}
.ye6{bottom:770.190000px;}
.y68{bottom:770.550000px;}
.y103{bottom:774.330000px;}
.yc2{bottom:774.510000px;}
.y94{bottom:783.330000px;}
.y3b{bottom:787.290000px;}
.y7a{bottom:787.740000px;}
.y67{bottom:788.190000px;}
.y93{bottom:800.880000px;}
.yc1{bottom:801.420000px;}
.y9{bottom:803.580000px;}
.y3a{bottom:804.930000px;}
.y79{bottom:805.290000px;}
.y66{bottom:805.740000px;}
.y92{bottom:818.520000px;}
.y78{bottom:822.930000px;}
.y65{bottom:823.290000px;}
.y8{bottom:839.130000px;}
.y39{bottom:840.480000px;}
.y64{bottom:840.930000px;}
.y102{bottom:845.070000px;}
.yc0{bottom:847.050000px;}
.y91{bottom:854.070000px;}
.y38{bottom:858.030000px;}
.y63{bottom:858.480000px;}
.y101{bottom:862.620000px;}
.y90{bottom:871.620000px;}
.ybf{bottom:874.410000px;}
.y7{bottom:874.950000px;}
.y37{bottom:875.670000px;}
.y62{bottom:876.030000px;}
.y100{bottom:880.260000px;}
.y8f{bottom:889.260000px;}
.y36{bottom:893.220000px;}
.y61{bottom:893.670000px;}
.yff{bottom:897.810000px;}
.ybe{bottom:901.680000px;}
.y8e{bottom:906.810000px;}
.y35{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y60{bottom:911.220000px;}
.y8d{bottom:924.450000px;}
.y34{bottom:928.410000px;}
.y5f{bottom:928.860000px;}
.ybd{bottom:929.040000px;}
.y8c{bottom:942.000000px;}
.y33{bottom:945.960000px;}
.y5e{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.ybc{bottom:956.400000px;}
.y8b{bottom:959.550000px;}
.y5d{bottom:963.960000px;}
.y8a{bottom:977.190000px;}
.y32{bottom:981.600000px;}
.ybb{bottom:983.760000px;}
.y4{bottom:985.380000px;}
.y89{bottom:994.740000px;}
.y31{bottom:999.150000px;}
.yfe{bottom:1003.740000px;}
.y3{bottom:1010.070000px;}
.yb9{bottom:1011.060000px;}
.y88{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.yfd{bottom:1021.320000px;}
.y87{bottom:1029.960000px;}
.y2f{bottom:1034.370000px;}
.ye5{bottom:1034.820000px;}
.yb8{bottom:1038.420000px;}
.yfc{bottom:1038.960000px;}
.y2e{bottom:1051.920000px;}
.y5c{bottom:1052.370000px;}
.y86{bottom:1056.870000px;}
.yfb{bottom:1065.510000px;}
.y2d{bottom:1069.560000px;}
.y5b{bottom:1069.920000px;}
.yfa{bottom:1083.150000px;}
.y2c{bottom:1087.110000px;}
.y5a{bottom:1087.560000px;}
.yf9{bottom:1100.700000px;}
.y59{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.yf8{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h11{height:26.580000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.hc{height:44.130000px;}
.hb{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:59.004492px;}
.h8{height:60.960938px;}
.ha{height:61.740000px;}
.h12{height:61.793886px;}
.he{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:48.690000px;}
.wb{width:51.030000px;}
.wc{width:51.060000px;}
.wd{width:51.750000px;}
.w9{width:90.180000px;}
.w3{width:120.000000px;}
.w5{width:120.060000px;}
.w8{width:121.770000px;}
.w7{width:124.590000px;}
.w6{width:125.910000px;}
.we{width:249.210000px;}
.wa{width:273.270000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xf{left:81.090000px;}
.x15{left:111.239987px;}
.x5{left:189.480000px;}
.x2{left:201.539987px;}
.xe{left:215.309987px;}
.xc{left:233.849987px;}
.x6{left:238.890000px;}
.x10{left:355.080000px;}
.x7{left:359.760000px;}
.x11{left:406.830000px;}
.x12{left:458.580000px;}
.x8{left:486.390000px;}
.x13{left:510.360000px;}
.x14{left:562.920000px;}
.x9{left:611.700000px;}
.xa{left:734.280000px;}
.xb{left:765.059987px;}
.x3{left:792.059987px;}
.xd{left:799.889987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls19{letter-spacing:-0.373867pt;}
.ls1a{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.158933pt;}
.ls18{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.127467pt;}
.ls8{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls6{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.161067pt;}
.lse{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls5{letter-spacing:15.466667pt;}
.ls17{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws5{word-spacing:-53.440000pt;}
.ws8{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.933867pt;}
.wsc{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.884267pt;}
.wsd{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.743680pt;}
.wsf{word-spacing:-11.620267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.540267pt;}
.ws10{word-spacing:-11.382933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._11{margin-left:-3.473600pt;}
._9{margin-left:-2.458133pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.904970pt;}
._4{width:2.244266pt;}
._5{width:3.233921pt;}
._f{width:4.162662pt;}
._6{width:5.130133pt;}
._c{width:6.116800pt;}
._14{width:7.481600pt;}
._d{width:8.764267pt;}
._e{width:9.885866pt;}
._1b{width:10.837549pt;}
._8{width:13.413012pt;}
._7{width:14.507200pt;}
._16{width:15.846720pt;}
._10{width:16.780267pt;}
._2{width:17.795734pt;}
._3{width:19.237866pt;}
._13{width:20.254294pt;}
._17{width:21.362240pt;}
._15{width:22.255680pt;}
._1e{width:23.673920pt;}
._12{width:24.742720pt;}
._1d{width:26.181013pt;}
._1c{width:27.279147pt;}
._18{width:29.231680pt;}
._b{width:30.171733pt;}
._a{width:31.284267pt;}
._19{width:44.194880pt;}
._1a{width:45.341867pt;}
._22{width:49.057920pt;}
._23{width:75.109760pt;}
._1f{width:84.381760pt;}
._20{width:85.557440pt;}
._21{width:532.262400pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:6.960000pt;}
.yba{bottom:7.040000pt;}
.y4b{bottom:22.560000pt;}
.y49{bottom:22.586667pt;}
.y44{bottom:22.640000pt;}
.y43{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y77{bottom:100.506667pt;}
.yb7{bottom:101.146667pt;}
.y85{bottom:101.306667pt;}
.y58{bottom:103.306667pt;}
.ye4{bottom:108.906667pt;}
.y76{bottom:116.106667pt;}
.yb6{bottom:116.746667pt;}
.y84{bottom:116.986667pt;}
.y57{bottom:118.906667pt;}
.ye3{bottom:124.586667pt;}
.y75{bottom:131.786667pt;}
.yb5{bottom:132.426667pt;}
.y83{bottom:132.586667pt;}
.y56{bottom:134.586667pt;}
.ye2{bottom:140.186667pt;}
.y27{bottom:140.666667pt;}
.y74{bottom:147.386667pt;}
.yb4{bottom:148.026667pt;}
.y82{bottom:148.266667pt;}
.ye1{bottom:155.866667pt;}
.y26{bottom:156.266667pt;}
.y73{bottom:163.066667pt;}
.yb3{bottom:163.706667pt;}
.y81{bottom:163.866667pt;}
.y55{bottom:166.186667pt;}
.y25{bottom:171.866667pt;}
.y72{bottom:178.666667pt;}
.yb2{bottom:179.306667pt;}
.y54{bottom:181.866667pt;}
.ye0{bottom:187.466667pt;}
.y24{bottom:187.546667pt;}
.yb1{bottom:194.906667pt;}
.y80{bottom:195.466667pt;}
.yf7{bottom:195.706667pt;}
.y53{bottom:197.466667pt;}
.y71{bottom:202.586667pt;}
.ydf{bottom:203.066667pt;}
.yf6{bottom:211.306667pt;}
.y52{bottom:213.066667pt;}
.yde{bottom:218.746667pt;}
.y23{bottom:219.146667pt;}
.y7f{bottom:224.106667pt;}
.yb0{bottom:226.586667pt;}
.yf5{bottom:226.906667pt;}
.y51{bottom:228.746667pt;}
.ydd{bottom:234.346667pt;}
.y22{bottom:234.746667pt;}
.yaf{bottom:242.186667pt;}
.yf4{bottom:242.586667pt;}
.y50{bottom:244.346667pt;}
.y70{bottom:245.466667pt;}
.ydc{bottom:249.946667pt;}
.y21{bottom:250.426667pt;}
.yae{bottom:257.866667pt;}
.yf3{bottom:258.186667pt;}
.y4f{bottom:259.946667pt;}
.ydb{bottom:265.626667pt;}
.y20{bottom:266.026667pt;}
.yad{bottom:273.466667pt;}
.yf2{bottom:273.866667pt;}
.y6f{bottom:274.106667pt;}
.y4e{bottom:275.626667pt;}
.yda{bottom:281.226667pt;}
.y1f{bottom:281.706667pt;}
.yac{bottom:289.066667pt;}
.yf1{bottom:289.466667pt;}
.y4d{bottom:291.226667pt;}
.yd9{bottom:296.906667pt;}
.y1e{bottom:297.306667pt;}
.yab{bottom:304.746667pt;}
.yf0{bottom:305.066667pt;}
.yd8{bottom:312.506667pt;}
.y4c{bottom:315.146667pt;}
.yaa{bottom:320.346667pt;}
.yef{bottom:320.746667pt;}
.y1d{bottom:321.226667pt;}
.yd7{bottom:328.106667pt;}
.ya9{bottom:335.946667pt;}
.yee{bottom:336.346667pt;}
.yd6{bottom:343.786667pt;}
.ya8{bottom:351.626667pt;}
.yed{bottom:351.946667pt;}
.y4a{bottom:355.786667pt;}
.y1c{bottom:364.106667pt;}
.ya7{bottom:367.226667pt;}
.yec{bottom:367.626667pt;}
.yd5{bottom:375.386667pt;}
.y1b{bottom:380.026667pt;}
.ya6{bottom:382.906667pt;}
.yeb{bottom:383.226667pt;}
.yd4{bottom:391.066667pt;}
.y48{bottom:395.706667pt;}
.yea{bottom:398.906667pt;}
.yd3{bottom:406.666667pt;}
.y1a{bottom:412.986667pt;}
.ya5{bottom:414.506667pt;}
.yd2{bottom:422.293333pt;}
.y19{bottom:428.613333pt;}
.ya4{bottom:430.133333pt;}
.y47{bottom:435.653333pt;}
.yd1{bottom:437.973333pt;}
.y18{bottom:444.293333pt;}
.ya3{bottom:445.813333pt;}
.y110{bottom:453.093333pt;}
.yd0{bottom:453.573333pt;}
.y17{bottom:459.893333pt;}
.ya2{bottom:461.413333pt;}
.y10f{bottom:468.693333pt;}
.ycf{bottom:469.253333pt;}
.y16{bottom:475.493333pt;}
.y46{bottom:475.573333pt;}
.ya1{bottom:477.093333pt;}
.yce{bottom:484.853333pt;}
.y15{bottom:491.173333pt;}
.y10e{bottom:492.293333pt;}
.ya0{bottom:492.693333pt;}
.ycd{bottom:500.453333pt;}
.y14{bottom:506.773333pt;}
.y10d{bottom:507.973333pt;}
.y9f{bottom:508.293333pt;}
.y42{bottom:515.493333pt;}
.ycc{bottom:516.133333pt;}
.ye9{bottom:516.613333pt;}
.y13{bottom:522.373333pt;}
.y9e{bottom:523.973333pt;}
.y10c{bottom:531.573333pt;}
.y12{bottom:538.053333pt;}
.y9d{bottom:539.573333pt;}
.y10b{bottom:547.253333pt;}
.ycb{bottom:547.733333pt;}
.y11{bottom:553.653333pt;}
.y7e{bottom:559.173333pt;}
.ye8{bottom:559.493333pt;}
.y10a{bottom:562.853333pt;}
.yca{bottom:563.413333pt;}
.y10{bottom:569.333333pt;}
.y9c{bottom:571.253333pt;}
.y7d{bottom:574.773333pt;}
.y6e{bottom:575.173333pt;}
.yc9{bottom:579.013333pt;}
.yf{bottom:584.933333pt;}
.y109{bottom:586.453333pt;}
.y9b{bottom:586.853333pt;}
.y41{bottom:590.053333pt;}
.y7c{bottom:590.453333pt;}
.y6d{bottom:590.773333pt;}
.yc8{bottom:594.613333pt;}
.ye{bottom:600.533333pt;}
.y108{bottom:602.133333pt;}
.y9a{bottom:602.453333pt;}
.y7b{bottom:606.053333pt;}
.y6c{bottom:606.453333pt;}
.yc7{bottom:610.293333pt;}
.yd{bottom:616.213333pt;}
.y107{bottom:617.733333pt;}
.y99{bottom:618.133333pt;}
.y40{bottom:621.653333pt;}
.y6b{bottom:622.053333pt;}
.yc6{bottom:625.893333pt;}
.yc{bottom:631.813333pt;}
.y98{bottom:633.733333pt;}
.y3f{bottom:637.333333pt;}
.y6a{bottom:637.653333pt;}
.y106{bottom:641.413333pt;}
.yc5{bottom:641.573333pt;}
.yb{bottom:647.493333pt;}
.y97{bottom:649.413333pt;}
.y3e{bottom:652.933333pt;}
.y69{bottom:653.333333pt;}
.y105{bottom:657.013333pt;}
.yc4{bottom:657.173333pt;}
.y96{bottom:665.013333pt;}
.y3d{bottom:668.613333pt;}
.ye7{bottom:668.933333pt;}
.ya{bottom:671.413333pt;}
.y104{bottom:672.613333pt;}
.yc3{bottom:672.773333pt;}
.y95{bottom:680.613333pt;}
.y3c{bottom:684.213333pt;}
.ye6{bottom:684.613333pt;}
.y68{bottom:684.933333pt;}
.y103{bottom:688.293333pt;}
.yc2{bottom:688.453333pt;}
.y94{bottom:696.293333pt;}
.y3b{bottom:699.813333pt;}
.y7a{bottom:700.213333pt;}
.y67{bottom:700.613333pt;}
.y93{bottom:711.893333pt;}
.yc1{bottom:712.373333pt;}
.y9{bottom:714.293333pt;}
.y3a{bottom:715.493333pt;}
.y79{bottom:715.813333pt;}
.y66{bottom:716.213333pt;}
.y92{bottom:727.573333pt;}
.y78{bottom:731.493333pt;}
.y65{bottom:731.813333pt;}
.y8{bottom:745.893333pt;}
.y39{bottom:747.093333pt;}
.y64{bottom:747.493333pt;}
.y102{bottom:751.173333pt;}
.yc0{bottom:752.933333pt;}
.y91{bottom:759.173333pt;}
.y38{bottom:762.693333pt;}
.y63{bottom:763.093333pt;}
.y101{bottom:766.773333pt;}
.y90{bottom:774.773333pt;}
.ybf{bottom:777.253333pt;}
.y7{bottom:777.733333pt;}
.y37{bottom:778.373333pt;}
.y62{bottom:778.693333pt;}
.y100{bottom:782.453333pt;}
.y8f{bottom:790.453333pt;}
.y36{bottom:793.973333pt;}
.y61{bottom:794.373333pt;}
.yff{bottom:798.053333pt;}
.ybe{bottom:801.493333pt;}
.y8e{bottom:806.053333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y60{bottom:809.973333pt;}
.y8d{bottom:821.733333pt;}
.y34{bottom:825.253333pt;}
.y5f{bottom:825.653333pt;}
.ybd{bottom:825.813333pt;}
.y8c{bottom:837.333333pt;}
.y33{bottom:840.853333pt;}
.y5e{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.ybc{bottom:850.133333pt;}
.y8b{bottom:852.933333pt;}
.y5d{bottom:856.853333pt;}
.y8a{bottom:868.613333pt;}
.y32{bottom:872.533333pt;}
.ybb{bottom:874.453333pt;}
.y4{bottom:875.893333pt;}
.y89{bottom:884.213333pt;}
.y31{bottom:888.133333pt;}
.yfe{bottom:892.213333pt;}
.y3{bottom:897.840000pt;}
.yb9{bottom:898.720000pt;}
.y88{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.yfd{bottom:907.840000pt;}
.y87{bottom:915.520000pt;}
.y2f{bottom:919.440000pt;}
.ye5{bottom:919.840000pt;}
.yb8{bottom:923.040000pt;}
.yfc{bottom:923.520000pt;}
.y2e{bottom:935.040000pt;}
.y5c{bottom:935.440000pt;}
.y86{bottom:939.440000pt;}
.yfb{bottom:947.120000pt;}
.y2d{bottom:950.720000pt;}
.y5b{bottom:951.040000pt;}
.yfa{bottom:962.800000pt;}
.y2c{bottom:966.320000pt;}
.y5a{bottom:966.720000pt;}
.yf9{bottom:978.400000pt;}
.y59{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.yf8{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h11{height:23.626667pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.hc{height:39.226667pt;}
.hb{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:52.448437pt;}
.h8{height:54.187500pt;}
.ha{height:54.880000pt;}
.h12{height:54.927899pt;}
.he{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:43.280000pt;}
.wb{width:45.360000pt;}
.wc{width:45.386667pt;}
.wd{width:46.000000pt;}
.w9{width:80.160000pt;}
.w3{width:106.666667pt;}
.w5{width:106.720000pt;}
.w8{width:108.240000pt;}
.w7{width:110.746667pt;}
.w6{width:111.920000pt;}
.we{width:221.520000pt;}
.wa{width:242.906667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xf{left:72.080000pt;}
.x15{left:98.879988pt;}
.x5{left:168.426667pt;}
.x2{left:179.146655pt;}
.xe{left:191.386655pt;}
.xc{left:207.866655pt;}
.x6{left:212.346667pt;}
.x10{left:315.626667pt;}
.x7{left:319.786667pt;}
.x11{left:361.626667pt;}
.x12{left:407.626667pt;}
.x8{left:432.346667pt;}
.x13{left:453.653333pt;}
.x14{left:500.373333pt;}
.x9{left:543.733333pt;}
.xa{left:652.693333pt;}
.xb{left:680.053322pt;}
.x3{left:704.053322pt;}
.xd{left:711.013322pt;}
}




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