
    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_97684bbc4481616be0d1b943.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d058840909802dd3ef9d88d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6f46fd5606e8bbecb1dc38a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_f56a7fc7b38319fdc21d06b6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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_1944780b4395dad9a7609a87.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-1.260000px;}
.ls9{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.900000px;}
.ls8{letter-spacing:11.466720px;}
.lsc{letter-spacing:15.066720px;}
.ls14{letter-spacing:17.226720px;}
.lse{letter-spacing:36.180000px;}
.lsf{letter-spacing:46.746720px;}
.lsa{letter-spacing:114.570720px;}
.lsb{letter-spacing:118.170720px;}
.ls7{letter-spacing:137.610720px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.328000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-11.187120px;}
._2a{margin-left:-4.873680px;}
._24{margin-left:-3.854160px;}
._27{margin-left:-2.550240px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._8{width:2.870160px;}
._9{width:3.884400px;}
._d{width:4.960080px;}
._10{width:6.394320px;}
._b{width:7.470000px;}
._c{width:8.844480px;}
._11{width:10.756800px;}
._f{width:12.011760px;}
._a{width:13.484880px;}
._e{width:16.015680px;}
._16{width:17.588880px;}
._14{width:18.884160px;}
._15{width:20.736720px;}
._1a{width:22.197600px;}
._19{width:23.399280px;}
._4{width:25.089120px;}
._5{width:26.429760px;}
._18{width:28.359360px;}
._17{width:29.435040px;}
._22{width:31.015200px;}
._20{width:32.602320px;}
._21{width:33.618240px;}
._1b{width:34.813440px;}
._1c{width:36.068400px;}
._23{width:38.186640px;}
._1f{width:39.448080px;}
._1e{width:40.550400px;}
._32{width:41.726160px;}
._2c{width:44.016480px;}
._2e{width:45.537120px;}
._36{width:47.037600px;}
._25{width:48.080160px;}
._26{width:49.122720px;}
._29{width:50.709600px;}
._31{width:51.871680px;}
._6{width:52.945200px;}
._7{width:54.487440px;}
._2d{width:56.453760px;}
._30{width:58.511520px;}
._2f{width:59.554080px;}
._3a{width:60.683040px;}
._2{width:64.800000px;}
._1d{width:66.021120px;}
._37{width:67.171680px;}
._35{width:69.300000px;}
._33{width:71.864640px;}
._34{width:73.000080px;}
._39{width:83.414640px;}
._2b{width:103.140000px;}
._38{width:111.008160px;}
._28{width:115.668720px;}
._13{width:201.204000px;}
._3{width:674.100000px;}
.fc3{color:rgb(24,23,23);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.y2e{bottom:5.940000px;}
.y11{bottom:6.480000px;}
.y8{bottom:7.920000px;}
.y1c{bottom:8.820000px;}
.yd{bottom:25.560000px;}
.ya4{bottom:25.740000px;}
.y2{bottom:26.820000px;}
.y7{bottom:27.720000px;}
.y2c{bottom:45.360000px;}
.y13{bottom:45.540000px;}
.y6{bottom:47.520000px;}
.yc{bottom:54.360000px;}
.y10{bottom:59.580000px;}
.y2b{bottom:65.340000px;}
.y5{bottom:69.660000px;}
.yb{bottom:74.340000px;}
.y2a{bottom:85.140000px;}
.yf9{bottom:87.480000px;}
.ybd{bottom:89.640000px;}
.yff{bottom:96.480000px;}
.y4{bottom:97.590000px;}
.yfe{bottom:98.280000px;}
.ya1{bottom:100.080000px;}
.ya{bottom:103.170000px;}
.y29{bottom:104.940000px;}
.yf8{bottom:107.280000px;}
.ybc{bottom:109.440000px;}
.y6f{bottom:116.280000px;}
.yd5{bottom:118.080000px;}
.ya0{bottom:119.880000px;}
.y9{bottom:122.970000px;}
.y28{bottom:124.740000px;}
.yf7{bottom:127.080000px;}
.ybb{bottom:129.420000px;}
.y3{bottom:131.970000px;}
.y6e{bottom:136.080000px;}
.yfd{bottom:137.880000px;}
.y9f{bottom:139.680000px;}
.y27{bottom:144.540000px;}
.yf6{bottom:146.880000px;}
.yba{bottom:149.220000px;}
.y6d{bottom:155.910000px;}
.yfc{bottom:157.710000px;}
.y38{bottom:164.370000px;}
.y26{bottom:164.550000px;}
.yf5{bottom:166.710000px;}
.y9e{bottom:168.690000px;}
.yb9{bottom:169.050000px;}
.y6c{bottom:175.710000px;}
.yfb{bottom:177.690000px;}
.y37{bottom:184.170000px;}
.y25{bottom:184.350000px;}
.yf4{bottom:186.690000px;}
.y9d{bottom:188.490000px;}
.yb8{bottom:188.850000px;}
.y6b{bottom:195.690000px;}
.yfa{bottom:197.490000px;}
.y24{bottom:204.150000px;}
.yf3{bottom:206.490000px;}
.y9c{bottom:208.290000px;}
.yb7{bottom:208.650000px;}
.y6a{bottom:215.490000px;}
.y23{bottom:223.950000px;}
.yf2{bottom:226.290000px;}
.y9b{bottom:228.090000px;}
.yb6{bottom:228.630000px;}
.y69{bottom:235.290000px;}
.y22{bottom:243.750000px;}
.yf1{bottom:246.090000px;}
.y9a{bottom:247.890000px;}
.yb5{bottom:248.430000px;}
.y68{bottom:255.090000px;}
.y36{bottom:263.550000px;}
.y21{bottom:263.730000px;}
.yf0{bottom:265.890000px;}
.y99{bottom:267.870000px;}
.yb4{bottom:268.230000px;}
.y67{bottom:274.890000px;}
.y35{bottom:283.350000px;}
.y20{bottom:283.530000px;}
.yef{bottom:285.870000px;}
.y98{bottom:287.670000px;}
.yb3{bottom:288.030000px;}
.y66{bottom:294.870000px;}
.y1f{bottom:303.330000px;}
.yee{bottom:305.670000px;}
.y97{bottom:307.470000px;}
.yb2{bottom:307.830000px;}
.y65{bottom:314.670000px;}
.y1e{bottom:323.130000px;}
.yed{bottom:325.470000px;}
.y96{bottom:327.270000px;}
.yb1{bottom:327.810000px;}
.y64{bottom:334.470000px;}
.y34{bottom:342.930000px;}
.yec{bottom:345.270000px;}
.y95{bottom:347.070000px;}
.yb0{bottom:347.610000px;}
.y63{bottom:354.270000px;}
.y33{bottom:362.730000px;}
.yeb{bottom:365.070000px;}
.y94{bottom:367.050000px;}
.yaf{bottom:367.410000px;}
.y62{bottom:374.070000px;}
.y32{bottom:382.530000px;}
.yea{bottom:385.050000px;}
.y93{bottom:386.850000px;}
.yae{bottom:387.210000px;}
.y61{bottom:394.050000px;}
.y31{bottom:402.555000px;}
.ye9{bottom:404.895000px;}
.y92{bottom:406.695000px;}
.yad{bottom:407.055000px;}
.y60{bottom:413.895000px;}
.yd4{bottom:418.215000px;}
.y30{bottom:422.355000px;}
.ye8{bottom:424.695000px;}
.y91{bottom:426.495000px;}
.yac{bottom:427.035000px;}
.y5f{bottom:433.695000px;}
.yd3{bottom:438.015000px;}
.y2f{bottom:442.155000px;}
.ye7{bottom:444.495000px;}
.y90{bottom:446.295000px;}
.yab{bottom:446.835000px;}
.y5e{bottom:453.495000px;}
.ye6{bottom:464.295000px;}
.yaa{bottom:466.635000px;}
.yd2{bottom:466.815000px;}
.y5d{bottom:473.295000px;}
.y8f{bottom:475.275000px;}
.y2d{bottom:476.715000px;}
.ye5{bottom:484.275000px;}
.ya9{bottom:486.435000px;}
.yd1{bottom:486.615000px;}
.y5c{bottom:493.275000px;}
.y8e{bottom:495.075000px;}
.y1d{bottom:497.415000px;}
.ye4{bottom:504.075000px;}
.ya8{bottom:506.235000px;}
.yd0{bottom:506.595000px;}
.y5b{bottom:513.075000px;}
.y8d{bottom:514.875000px;}
.ye3{bottom:523.875000px;}
.ya7{bottom:526.215000px;}
.ycf{bottom:526.395000px;}
.y5a{bottom:532.875000px;}
.y8c{bottom:534.675000px;}
.ye2{bottom:543.675000px;}
.ya6{bottom:546.015000px;}
.yce{bottom:546.195000px;}
.y59{bottom:552.675000px;}
.y8b{bottom:554.475000px;}
.ye1{bottom:563.475000px;}
.ya5{bottom:565.815000px;}
.ycd{bottom:565.995000px;}
.y58{bottom:572.475000px;}
.y8a{bottom:574.455000px;}
.ya3{bottom:582.015000px;}
.ye0{bottom:583.455000px;}
.ycc{bottom:585.795000px;}
.y57{bottom:592.455000px;}
.y89{bottom:594.255000px;}
.ydf{bottom:603.255000px;}
.ycb{bottom:605.775000px;}
.y56{bottom:612.255000px;}
.y88{bottom:614.055000px;}
.yde{bottom:623.055000px;}
.ya2{bottom:623.955000px;}
.yca{bottom:625.575000px;}
.y55{bottom:632.055000px;}
.y87{bottom:633.855000px;}
.ydd{bottom:642.855000px;}
.yc9{bottom:645.375000px;}
.y54{bottom:651.885000px;}
.y86{bottom:653.685000px;}
.ydc{bottom:662.685000px;}
.yc8{bottom:665.205000px;}
.y53{bottom:671.685000px;}
.y85{bottom:673.665000px;}
.ydb{bottom:682.665000px;}
.yc7{bottom:685.005000px;}
.y52{bottom:691.665000px;}
.y84{bottom:693.465000px;}
.yda{bottom:702.465000px;}
.yc6{bottom:704.985000px;}
.y51{bottom:711.465000px;}
.y83{bottom:713.265000px;}
.yd9{bottom:722.265000px;}
.yc5{bottom:724.785000px;}
.y50{bottom:731.265000px;}
.y82{bottom:733.065000px;}
.yd8{bottom:742.065000px;}
.yc4{bottom:744.585000px;}
.y4f{bottom:751.065000px;}
.y81{bottom:752.865000px;}
.yd7{bottom:761.865000px;}
.yc3{bottom:764.385000px;}
.y4e{bottom:770.865000px;}
.y80{bottom:772.845000px;}
.yd6{bottom:781.845000px;}
.yc2{bottom:784.185000px;}
.y4d{bottom:790.845000px;}
.y7f{bottom:801.645000px;}
.yc1{bottom:804.165000px;}
.y4c{bottom:810.645000px;}
.y7e{bottom:821.445000px;}
.yc0{bottom:823.965000px;}
.y4b{bottom:830.445000px;}
.y1b{bottom:835.305000px;}
.y7d{bottom:841.245000px;}
.ybf{bottom:843.765000px;}
.y4a{bottom:850.245000px;}
.y7c{bottom:861.045000px;}
.y1a{bottom:864.825000px;}
.y49{bottom:870.045000px;}
.y7b{bottom:881.025000px;}
.y19{bottom:889.845000px;}
.y48{bottom:890.025000px;}
.y7a{bottom:900.870000px;}
.y18{bottom:905.010000px;}
.y47{bottom:909.870000px;}
.y79{bottom:920.670000px;}
.y17{bottom:926.250000px;}
.y46{bottom:929.670000px;}
.y78{bottom:940.470000px;}
.y45{bottom:949.470000px;}
.y16{bottom:949.830000px;}
.y77{bottom:960.270000px;}
.y44{bottom:969.270000px;}
.y76{bottom:980.250000px;}
.y15{bottom:981.510000px;}
.y43{bottom:989.250000px;}
.y75{bottom:1000.050000px;}
.y42{bottom:1009.050000px;}
.y14{bottom:1013.190000px;}
.y74{bottom:1019.850000px;}
.y41{bottom:1028.850000px;}
.y73{bottom:1039.650000px;}
.yf{bottom:1040.010000px;}
.y40{bottom:1048.650000px;}
.y72{bottom:1059.450000px;}
.y1{bottom:1062.510000px;}
.y3f{bottom:1068.450000px;}
.y71{bottom:1079.430000px;}
.y3e{bottom:1088.430000px;}
.y70{bottom:1099.230000px;}
.y3d{bottom:1108.230000px;}
.ybe{bottom:1119.030000px;}
.y3c{bottom:1128.030000px;}
.y3b{bottom:1147.860000px;}
.y3a{bottom:1174.500000px;}
.y39{bottom:1193.580000px;}
.h3{height:2.010938px;}
.h11{height:19.980000px;}
.ha{height:21.960000px;}
.hf{height:22.860000px;}
.hd{height:27.147656px;}
.h14{height:39.780000px;}
.h7{height:41.726953px;}
.h4{height:42.164648px;}
.h13{height:43.156758px;}
.h12{height:43.506914px;}
.he{height:45.461953px;}
.h8{height:46.251562px;}
.h6{height:46.736719px;}
.hb{height:53.224453px;}
.h5{height:59.436914px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h2{height:146.016000px;}
.h10{height:337.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:55.476000px;}
.wc{width:78.516000px;}
.wd{width:110.520000px;}
.w4{width:141.876000px;}
.w2{width:155.730000px;}
.wb{width:163.290000px;}
.w8{width:192.270000px;}
.w3{width:499.065000px;}
.w9{width:585.510000px;}
.w7{width:745.170000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.xb{left:45.900000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.x11{left:55.619987px;}
.xd{left:57.600000px;}
.x16{left:60.300000px;}
.x15{left:71.099987px;}
.x13{left:75.599987px;}
.x1a{left:79.559987px;}
.x1f{left:80.999987px;}
.xc{left:102.096000px;}
.x20{left:108.035987px;}
.x4{left:127.665000px;}
.x8{left:135.585000px;}
.x2{left:147.450000px;}
.x7{left:154.305000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.x12{left:220.529987px;}
.x17{left:224.130000px;}
.xe{left:249.870000px;}
.x18{left:302.655000px;}
.x19{left:469.184987px;}
.x10{left:473.504987px;}
.x1c{left:477.824987px;}
.x14{left:490.604987px;}
.xf{left:495.104987px;}
.x1b{left:499.064987px;}
.x1d{left:500.504987px;}
.x1e{left:527.504987px;}
.x9{left:703.050000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-1.120000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls8{letter-spacing:10.192640pt;}
.lsc{letter-spacing:13.392640pt;}
.ls14{letter-spacing:15.312640pt;}
.lse{letter-spacing:32.160000pt;}
.lsf{letter-spacing:41.552640pt;}
.lsa{letter-spacing:101.840640pt;}
.lsb{letter-spacing:105.040640pt;}
.ls7{letter-spacing:122.320640pt;}
.ws3{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.736000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-9.944107pt;}
._2a{margin-left:-4.332160pt;}
._24{margin-left:-3.425920pt;}
._27{margin-left:-2.266880pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._8{width:2.551253pt;}
._9{width:3.452800pt;}
._d{width:4.408960pt;}
._10{width:5.683840pt;}
._b{width:6.640000pt;}
._c{width:7.861760pt;}
._11{width:9.561600pt;}
._f{width:10.677120pt;}
._a{width:11.986560pt;}
._e{width:14.236160pt;}
._16{width:15.634560pt;}
._14{width:16.785920pt;}
._15{width:18.432640pt;}
._1a{width:19.731200pt;}
._19{width:20.799360pt;}
._4{width:22.301440pt;}
._5{width:23.493120pt;}
._18{width:25.208320pt;}
._17{width:26.164480pt;}
._22{width:27.569067pt;}
._20{width:28.979840pt;}
._21{width:29.882880pt;}
._1b{width:30.945280pt;}
._1c{width:32.060800pt;}
._23{width:33.943680pt;}
._1f{width:35.064960pt;}
._1e{width:36.044800pt;}
._32{width:37.089920pt;}
._2c{width:39.125760pt;}
._2e{width:40.477440pt;}
._36{width:41.811200pt;}
._25{width:42.737920pt;}
._26{width:43.664640pt;}
._29{width:45.075200pt;}
._31{width:46.108160pt;}
._6{width:47.062400pt;}
._7{width:48.433280pt;}
._2d{width:50.181120pt;}
._30{width:52.010240pt;}
._2f{width:52.936960pt;}
._3a{width:53.940480pt;}
._2{width:57.600000pt;}
._1d{width:58.685440pt;}
._37{width:59.708160pt;}
._35{width:61.600000pt;}
._33{width:63.879680pt;}
._34{width:64.888960pt;}
._39{width:74.146347pt;}
._2b{width:91.680000pt;}
._38{width:98.673920pt;}
._28{width:102.816640pt;}
._13{width:178.848000pt;}
._3{width:599.200000pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.y2e{bottom:5.280000pt;}
.y11{bottom:5.760000pt;}
.y8{bottom:7.040000pt;}
.y1c{bottom:7.840000pt;}
.yd{bottom:22.720000pt;}
.ya4{bottom:22.880000pt;}
.y2{bottom:23.840000pt;}
.y7{bottom:24.640000pt;}
.y2c{bottom:40.320000pt;}
.y13{bottom:40.480000pt;}
.y6{bottom:42.240000pt;}
.yc{bottom:48.320000pt;}
.y10{bottom:52.960000pt;}
.y2b{bottom:58.080000pt;}
.y5{bottom:61.920000pt;}
.yb{bottom:66.080000pt;}
.y2a{bottom:75.680000pt;}
.yf9{bottom:77.760000pt;}
.ybd{bottom:79.680000pt;}
.yff{bottom:85.760000pt;}
.y4{bottom:86.746667pt;}
.yfe{bottom:87.360000pt;}
.ya1{bottom:88.960000pt;}
.ya{bottom:91.706667pt;}
.y29{bottom:93.280000pt;}
.yf8{bottom:95.360000pt;}
.ybc{bottom:97.280000pt;}
.y6f{bottom:103.360000pt;}
.yd5{bottom:104.960000pt;}
.ya0{bottom:106.560000pt;}
.y9{bottom:109.306667pt;}
.y28{bottom:110.880000pt;}
.yf7{bottom:112.960000pt;}
.ybb{bottom:115.040000pt;}
.y3{bottom:117.306667pt;}
.y6e{bottom:120.960000pt;}
.yfd{bottom:122.560000pt;}
.y9f{bottom:124.160000pt;}
.y27{bottom:128.480000pt;}
.yf6{bottom:130.560000pt;}
.yba{bottom:132.640000pt;}
.y6d{bottom:138.586667pt;}
.yfc{bottom:140.186667pt;}
.y38{bottom:146.106667pt;}
.y26{bottom:146.266667pt;}
.yf5{bottom:148.186667pt;}
.y9e{bottom:149.946667pt;}
.yb9{bottom:150.266667pt;}
.y6c{bottom:156.186667pt;}
.yfb{bottom:157.946667pt;}
.y37{bottom:163.706667pt;}
.y25{bottom:163.866667pt;}
.yf4{bottom:165.946667pt;}
.y9d{bottom:167.546667pt;}
.yb8{bottom:167.866667pt;}
.y6b{bottom:173.946667pt;}
.yfa{bottom:175.546667pt;}
.y24{bottom:181.466667pt;}
.yf3{bottom:183.546667pt;}
.y9c{bottom:185.146667pt;}
.yb7{bottom:185.466667pt;}
.y6a{bottom:191.546667pt;}
.y23{bottom:199.066667pt;}
.yf2{bottom:201.146667pt;}
.y9b{bottom:202.746667pt;}
.yb6{bottom:203.226667pt;}
.y69{bottom:209.146667pt;}
.y22{bottom:216.666667pt;}
.yf1{bottom:218.746667pt;}
.y9a{bottom:220.346667pt;}
.yb5{bottom:220.826667pt;}
.y68{bottom:226.746667pt;}
.y36{bottom:234.266667pt;}
.y21{bottom:234.426667pt;}
.yf0{bottom:236.346667pt;}
.y99{bottom:238.106667pt;}
.yb4{bottom:238.426667pt;}
.y67{bottom:244.346667pt;}
.y35{bottom:251.866667pt;}
.y20{bottom:252.026667pt;}
.yef{bottom:254.106667pt;}
.y98{bottom:255.706667pt;}
.yb3{bottom:256.026667pt;}
.y66{bottom:262.106667pt;}
.y1f{bottom:269.626667pt;}
.yee{bottom:271.706667pt;}
.y97{bottom:273.306667pt;}
.yb2{bottom:273.626667pt;}
.y65{bottom:279.706667pt;}
.y1e{bottom:287.226667pt;}
.yed{bottom:289.306667pt;}
.y96{bottom:290.906667pt;}
.yb1{bottom:291.386667pt;}
.y64{bottom:297.306667pt;}
.y34{bottom:304.826667pt;}
.yec{bottom:306.906667pt;}
.y95{bottom:308.506667pt;}
.yb0{bottom:308.986667pt;}
.y63{bottom:314.906667pt;}
.y33{bottom:322.426667pt;}
.yeb{bottom:324.506667pt;}
.y94{bottom:326.266667pt;}
.yaf{bottom:326.586667pt;}
.y62{bottom:332.506667pt;}
.y32{bottom:340.026667pt;}
.yea{bottom:342.266667pt;}
.y93{bottom:343.866667pt;}
.yae{bottom:344.186667pt;}
.y61{bottom:350.266667pt;}
.y31{bottom:357.826667pt;}
.ye9{bottom:359.906667pt;}
.y92{bottom:361.506667pt;}
.yad{bottom:361.826667pt;}
.y60{bottom:367.906667pt;}
.yd4{bottom:371.746667pt;}
.y30{bottom:375.426667pt;}
.ye8{bottom:377.506667pt;}
.y91{bottom:379.106667pt;}
.yac{bottom:379.586667pt;}
.y5f{bottom:385.506667pt;}
.yd3{bottom:389.346667pt;}
.y2f{bottom:393.026667pt;}
.ye7{bottom:395.106667pt;}
.y90{bottom:396.706667pt;}
.yab{bottom:397.186667pt;}
.y5e{bottom:403.106667pt;}
.ye6{bottom:412.706667pt;}
.yaa{bottom:414.786667pt;}
.yd2{bottom:414.946667pt;}
.y5d{bottom:420.706667pt;}
.y8f{bottom:422.466667pt;}
.y2d{bottom:423.746667pt;}
.ye5{bottom:430.466667pt;}
.ya9{bottom:432.386667pt;}
.yd1{bottom:432.546667pt;}
.y5c{bottom:438.466667pt;}
.y8e{bottom:440.066667pt;}
.y1d{bottom:442.146667pt;}
.ye4{bottom:448.066667pt;}
.ya8{bottom:449.986667pt;}
.yd0{bottom:450.306667pt;}
.y5b{bottom:456.066667pt;}
.y8d{bottom:457.666667pt;}
.ye3{bottom:465.666667pt;}
.ya7{bottom:467.746667pt;}
.ycf{bottom:467.906667pt;}
.y5a{bottom:473.666667pt;}
.y8c{bottom:475.266667pt;}
.ye2{bottom:483.266667pt;}
.ya6{bottom:485.346667pt;}
.yce{bottom:485.506667pt;}
.y59{bottom:491.266667pt;}
.y8b{bottom:492.866667pt;}
.ye1{bottom:500.866667pt;}
.ya5{bottom:502.946667pt;}
.ycd{bottom:503.106667pt;}
.y58{bottom:508.866667pt;}
.y8a{bottom:510.626667pt;}
.ya3{bottom:517.346667pt;}
.ye0{bottom:518.626667pt;}
.ycc{bottom:520.706667pt;}
.y57{bottom:526.626667pt;}
.y89{bottom:528.226667pt;}
.ydf{bottom:536.226667pt;}
.ycb{bottom:538.466667pt;}
.y56{bottom:544.226667pt;}
.y88{bottom:545.826667pt;}
.yde{bottom:553.826667pt;}
.ya2{bottom:554.626667pt;}
.yca{bottom:556.066667pt;}
.y55{bottom:561.826667pt;}
.y87{bottom:563.426667pt;}
.ydd{bottom:571.426667pt;}
.yc9{bottom:573.666667pt;}
.y54{bottom:579.453333pt;}
.y86{bottom:581.053333pt;}
.ydc{bottom:589.053333pt;}
.yc8{bottom:591.293333pt;}
.y53{bottom:597.053333pt;}
.y85{bottom:598.813333pt;}
.ydb{bottom:606.813333pt;}
.yc7{bottom:608.893333pt;}
.y52{bottom:614.813333pt;}
.y84{bottom:616.413333pt;}
.yda{bottom:624.413333pt;}
.yc6{bottom:626.653333pt;}
.y51{bottom:632.413333pt;}
.y83{bottom:634.013333pt;}
.yd9{bottom:642.013333pt;}
.yc5{bottom:644.253333pt;}
.y50{bottom:650.013333pt;}
.y82{bottom:651.613333pt;}
.yd8{bottom:659.613333pt;}
.yc4{bottom:661.853333pt;}
.y4f{bottom:667.613333pt;}
.y81{bottom:669.213333pt;}
.yd7{bottom:677.213333pt;}
.yc3{bottom:679.453333pt;}
.y4e{bottom:685.213333pt;}
.y80{bottom:686.973333pt;}
.yd6{bottom:694.973333pt;}
.yc2{bottom:697.053333pt;}
.y4d{bottom:702.973333pt;}
.y7f{bottom:712.573333pt;}
.yc1{bottom:714.813333pt;}
.y4c{bottom:720.573333pt;}
.y7e{bottom:730.173333pt;}
.yc0{bottom:732.413333pt;}
.y4b{bottom:738.173333pt;}
.y1b{bottom:742.493333pt;}
.y7d{bottom:747.773333pt;}
.ybf{bottom:750.013333pt;}
.y4a{bottom:755.773333pt;}
.y7c{bottom:765.373333pt;}
.y1a{bottom:768.733333pt;}
.y49{bottom:773.373333pt;}
.y7b{bottom:783.133333pt;}
.y19{bottom:790.973333pt;}
.y48{bottom:791.133333pt;}
.y7a{bottom:800.773333pt;}
.y18{bottom:804.453333pt;}
.y47{bottom:808.773333pt;}
.y79{bottom:818.373333pt;}
.y17{bottom:823.333333pt;}
.y46{bottom:826.373333pt;}
.y78{bottom:835.973333pt;}
.y45{bottom:843.973333pt;}
.y16{bottom:844.293333pt;}
.y77{bottom:853.573333pt;}
.y44{bottom:861.573333pt;}
.y76{bottom:871.333333pt;}
.y15{bottom:872.453333pt;}
.y43{bottom:879.333333pt;}
.y75{bottom:888.933333pt;}
.y42{bottom:896.933333pt;}
.y14{bottom:900.613333pt;}
.y74{bottom:906.533333pt;}
.y41{bottom:914.533333pt;}
.y73{bottom:924.133333pt;}
.yf{bottom:924.453333pt;}
.y40{bottom:932.133333pt;}
.y72{bottom:941.733333pt;}
.y1{bottom:944.453333pt;}
.y3f{bottom:949.733333pt;}
.y71{bottom:959.493333pt;}
.y3e{bottom:967.493333pt;}
.y70{bottom:977.093333pt;}
.y3d{bottom:985.093333pt;}
.ybe{bottom:994.693333pt;}
.y3c{bottom:1002.693333pt;}
.y3b{bottom:1020.320000pt;}
.y3a{bottom:1044.000000pt;}
.y39{bottom:1060.960000pt;}
.h3{height:1.787500pt;}
.h11{height:17.760000pt;}
.ha{height:19.520000pt;}
.hf{height:20.320000pt;}
.hd{height:24.131250pt;}
.h14{height:35.360000pt;}
.h7{height:37.090625pt;}
.h4{height:37.479688pt;}
.h13{height:38.361562pt;}
.h12{height:38.672812pt;}
.he{height:40.410625pt;}
.h8{height:41.112500pt;}
.h6{height:41.543750pt;}
.hb{height:47.310625pt;}
.h5{height:52.832812pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h2{height:129.792000pt;}
.h10{height:299.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:49.312000pt;}
.wc{width:69.792000pt;}
.wd{width:98.240000pt;}
.w4{width:126.112000pt;}
.w2{width:138.426667pt;}
.wb{width:145.146667pt;}
.w8{width:170.906667pt;}
.w3{width:443.613333pt;}
.w9{width:520.453333pt;}
.w7{width:662.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.xb{left:40.800000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.x11{left:49.439988pt;}
.xd{left:51.200000pt;}
.x16{left:53.600000pt;}
.x15{left:63.199988pt;}
.x13{left:67.199988pt;}
.x1a{left:70.719988pt;}
.x1f{left:71.999988pt;}
.xc{left:90.752000pt;}
.x20{left:96.031988pt;}
.x4{left:113.480000pt;}
.x8{left:120.520000pt;}
.x2{left:131.066667pt;}
.x7{left:137.160000pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.x12{left:196.026655pt;}
.x17{left:199.226667pt;}
.xe{left:222.106667pt;}
.x18{left:269.026667pt;}
.x19{left:417.053322pt;}
.x10{left:420.893322pt;}
.x1c{left:424.733322pt;}
.x14{left:436.093322pt;}
.xf{left:440.093322pt;}
.x1b{left:443.613322pt;}
.x1d{left:444.893322pt;}
.x1e{left:468.893322pt;}
.x9{left:624.933333pt;}
}




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