
    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_c98614a92fbc047755a8ef27.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_ccb1d54505d058283d4c3d98.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_2f46e69b6aba0ec3370aac22.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_8fe9cd7797f1de5684c4c673.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096680;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_499eb4beb718c4d0cb08542f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_1f7845d3c00a6f55aa7a30a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_688811941d0385a7e7da533e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_84257dd418f9634b6ca97044.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5a2e69c3234ab084f0bea34d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5220d154fdce90c9166b15f1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767090;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:ffb;src:url('chunks/assets/font_994b7879282a6016e7337b4b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937012;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.618000px;}
.ls12{letter-spacing:-0.252600px;}
.lsb{letter-spacing:-0.184200px;}
.lsf{letter-spacing:-0.109200px;}
.ls6{letter-spacing:-0.085200px;}
.ls10{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.022320px;}
.lse{letter-spacing:0.023040px;}
.ls3{letter-spacing:0.079200px;}
.ls11{letter-spacing:0.087600px;}
.lsa{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.187200px;}
.ls8{letter-spacing:0.190800px;}
.ls1{letter-spacing:5.636160px;}
.ls7{letter-spacing:5.676000px;}
.ls9{letter-spacing:33.984000px;}
.ls4{letter-spacing:849.583200px;}
.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;}
}
.ws12{word-spacing:-48.240000px;}
.wsb{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.288800px;}
.ws4{word-spacing:-15.840000px;}
.wsf{word-spacing:-14.595840px;}
.ws10{word-spacing:-14.572800px;}
.ws11{word-spacing:-14.509200px;}
.wse{word-spacing:-14.463600px;}
.wsd{word-spacing:-14.388600px;}
.ws7{word-spacing:-13.147200px;}
.ws0{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.527600px;}
.ws9{word-spacing:-9.187200px;}
.wsc{word-spacing:-0.066240px;}
.ws5{word-spacing:-0.048240px;}
.ws8{word-spacing:-0.041760px;}
.wsa{word-spacing:0.000000px;}
.ws6{word-spacing:0.036960px;}
.ws3{word-spacing:2.088000px;}
._d{margin-left:-4.826400px;}
._9{margin-left:-3.816000px;}
._8{margin-left:-2.592000px;}
._0{margin-left:-1.353120px;}
._1{width:1.001760px;}
._a{width:2.085600px;}
._10{width:3.483840px;}
._e{width:4.575840px;}
._5{width:5.595840px;}
._6{width:6.657120px;}
._12{width:7.882560px;}
._13{width:8.970720px;}
._15{width:10.011360px;}
._1b{width:11.128320px;}
._b{width:12.235680px;}
._c{width:13.530240px;}
._f{width:14.874240px;}
._11{width:16.022880px;}
._1a{width:17.994720px;}
._7{width:19.128000px;}
._14{width:20.437440px;}
._24{width:21.452160px;}
._1c{width:22.521600px;}
._1d{width:24.385920px;}
._17{width:25.625280px;}
._16{width:26.827200px;}
._1f{width:28.511520px;}
._22{width:29.618880px;}
._23{width:31.105440px;}
._19{width:32.126400px;}
._18{width:33.347040px;}
._20{width:34.548960px;}
._1e{width:35.835840px;}
._21{width:37.122720px;}
._27{width:39.942720px;}
._4{width:60.475200px;}
._25{width:65.378880px;}
._26{width:66.990720px;}
._2{width:111.023040px;}
._3{width:201.787200px;}
._28{width:849.583200px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(204,0,0);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fs5{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y23{bottom:2.340000px;}
.y31{bottom:3.420000px;}
.y3c{bottom:3.780000px;}
.y3b{bottom:6.660000px;}
.y3d{bottom:8.100000px;}
.y1a{bottom:8.640000px;}
.y17{bottom:11.340000px;}
.y39{bottom:11.385000px;}
.y42{bottom:11.520000px;}
.y22{bottom:14.760000px;}
.y35{bottom:14.805000px;}
.y2d{bottom:16.560000px;}
.y30{bottom:18.000000px;}
.y45{bottom:20.520000px;}
.y41{bottom:23.760000px;}
.y38{bottom:23.805000px;}
.y21{bottom:27.000000px;}
.y34{bottom:27.045000px;}
.y44{bottom:32.760000px;}
.y40{bottom:36.000000px;}
.y37{bottom:36.045000px;}
.y20{bottom:39.270000px;}
.y33{bottom:39.285000px;}
.y43{bottom:45.000000px;}
.y3{bottom:46.620000px;}
.y28{bottom:48.270000px;}
.y36{bottom:48.285000px;}
.y1f{bottom:51.690000px;}
.y3f{bottom:57.420000px;}
.y27{bottom:60.690000px;}
.y32{bottom:60.705000px;}
.y1e{bottom:63.930000px;}
.y2f{bottom:70.785000px;}
.y2{bottom:71.460000px;}
.y26{bottom:72.930000px;}
.y1d{bottom:76.170000px;}
.y25{bottom:85.170000px;}
.y1c{bottom:88.590000px;}
.y24{bottom:97.590000px;}
.y1b{bottom:109.830000px;}
.ybe{bottom:110.376000px;}
.y76{bottom:114.876000px;}
.ya1{bottom:122.076000px;}
.y6a{bottom:129.636000px;}
.ybd{bottom:129.816000px;}
.y75{bottom:135.756000px;}
.y19{bottom:141.690000px;}
.ybc{bottom:149.076000px;}
.y69{bottom:150.510000px;}
.y74{bottom:156.630000px;}
.ya0{bottom:169.950000px;}
.y68{bottom:171.390000px;}
.y46{bottom:174.450000px;}
.y73{bottom:177.510000px;}
.ybb{bottom:181.830000px;}
.y9f{bottom:190.830000px;}
.y88{bottom:192.270000px;}
.ydb{bottom:193.710000px;}
.y3e{bottom:195.510000px;}
.y72{bottom:198.390000px;}
.yba{bottom:201.450000px;}
.yac{bottom:204.510000px;}
.y9e{bottom:211.710000px;}
.y87{bottom:213.150000px;}
.y67{bottom:219.270000px;}
.yb9{bottom:220.710000px;}
.yab{bottom:225.390000px;}
.yda{bottom:226.650000px;}
.y9d{bottom:232.590000px;}
.y86{bottom:234.030000px;}
.y66{bottom:240.150000px;}
.yd9{bottom:246.090000px;}
.yaa{bottom:246.270000px;}
.y9c{bottom:253.470000px;}
.y65{bottom:261.030000px;}
.ya9{bottom:267.150000px;}
.yb8{bottom:273.090000px;}
.y3a{bottom:273.270000px;}
.y9b{bottom:274.350000px;}
.yd8{bottom:278.850000px;}
.y64{bottom:281.910000px;}
.ya8{bottom:288.030000px;}
.yb7{bottom:292.350000px;}
.y9a{bottom:295.230000px;}
.yd7{bottom:298.470000px;}
.y63{bottom:302.790000px;}
.y2e{bottom:303.150000px;}
.ya7{bottom:308.910000px;}
.y99{bottom:316.155000px;}
.yd6{bottom:317.775000px;}
.yb6{bottom:322.635000px;}
.y62{bottom:323.715000px;}
.ya6{bottom:329.835000px;}
.y98{bottom:337.035000px;}
.y61{bottom:344.595000px;}
.yd5{bottom:350.535000px;}
.ya5{bottom:350.715000px;}
.y97{bottom:357.915000px;}
.y60{bottom:365.475000px;}
.yd4{bottom:369.975000px;}
.ya4{bottom:371.595000px;}
.y96{bottom:378.795000px;}
.y2c{bottom:384.195000px;}
.y71{bottom:386.355000px;}
.yd3{bottom:389.415000px;}
.ya3{bottom:392.475000px;}
.y95{bottom:399.675000px;}
.y70{bottom:407.235000px;}
.yd2{bottom:408.675000px;}
.y5f{bottom:413.355000px;}
.y94{bottom:420.555000px;}
.y6f{bottom:428.115000px;}
.y5e{bottom:434.235000px;}
.y2b{bottom:434.955000px;}
.y93{bottom:441.435000px;}
.y85{bottom:448.995000px;}
.y2a{bottom:450.435000px;}
.y5d{bottom:455.115000px;}
.yd1{bottom:461.055000px;}
.y92{bottom:462.315000px;}
.y29{bottom:466.095000px;}
.y84{bottom:469.875000px;}
.y5c{bottom:475.995000px;}
.yd0{bottom:480.315000px;}
.y91{bottom:483.195000px;}
.y83{bottom:490.755000px;}
.y18{bottom:491.835000px;}
.y5b{bottom:496.875000px;}
.ycf{bottom:499.755000px;}
.y90{bottom:504.075000px;}
.y82{bottom:511.635000px;}
.y5a{bottom:517.755000px;}
.yb5{bottom:523.875000px;}
.y8f{bottom:524.955000px;}
.y81{bottom:532.545000px;}
.y59{bottom:538.665000px;}
.yb4{bottom:544.785000px;}
.y8e{bottom:545.865000px;}
.yce{bottom:551.985000px;}
.yad{bottom:552.345000px;}
.y80{bottom:553.425000px;}
.y58{bottom:559.545000px;}
.yb3{bottom:565.665000px;}
.y8d{bottom:566.745000px;}
.ycd{bottom:571.425000px;}
.y7f{bottom:574.305000px;}
.y57{bottom:580.425000px;}
.yb2{bottom:586.545000px;}
.y8c{bottom:587.625000px;}
.y7e{bottom:595.185000px;}
.y56{bottom:601.305000px;}
.ycc{bottom:604.005000px;}
.yb1{bottom:607.425000px;}
.y8b{bottom:608.505000px;}
.y16{bottom:622.185000px;}
.ycb{bottom:623.625000px;}
.yb0{bottom:628.305000px;}
.y8a{bottom:629.385000px;}
.y55{bottom:643.065000px;}
.yaf{bottom:649.185000px;}
.y15{bottom:650.085000px;}
.yca{bottom:656.385000px;}
.y54{bottom:663.945000px;}
.y14{bottom:664.845000px;}
.yae{bottom:670.065000px;}
.y89{bottom:677.625000px;}
.y13{bottom:681.765000px;}
.y6e{bottom:684.825000px;}
.yc9{bottom:689.325000px;}
.ya2{bottom:690.945000px;}
.y12{bottom:696.165000px;}
.y6d{bottom:705.705000px;}
.yc8{bottom:708.765000px;}
.y53{bottom:711.825000px;}
.y11{bottom:712.365000px;}
.y6c{bottom:726.585000px;}
.y10{bottom:729.825000px;}
.ye6{bottom:731.265000px;}
.y52{bottom:732.705000px;}
.yc7{bottom:741.525000px;}
.yf{bottom:747.510000px;}
.y51{bottom:753.630000px;}
.ye5{bottom:757.050000px;}
.ye{bottom:764.430000px;}
.y7d{bottom:768.390000px;}
.y50{bottom:774.510000px;}
.ye4{bottom:776.130000px;}
.yd{bottom:778.830000px;}
.y7c{bottom:789.270000px;}
.ye3{bottom:790.890000px;}
.yc6{bottom:793.950000px;}
.yc{bottom:795.030000px;}
.y4f{bottom:795.390000px;}
.ye2{bottom:805.470000px;}
.y7b{bottom:810.150000px;}
.yb{bottom:813.210000px;}
.yc5{bottom:813.390000px;}
.y4e{bottom:816.270000px;}
.ye1{bottom:824.550000px;}
.y7a{bottom:831.030000px;}
.yc4{bottom:832.650000px;}
.ya{bottom:834.270000px;}
.y4d{bottom:837.150000px;}
.ye0{bottom:839.310000px;}
.y79{bottom:851.910000px;}
.yc3{bottom:852.090000px;}
.ydf{bottom:853.890000px;}
.y9{bottom:855.330000px;}
.y4c{bottom:858.030000px;}
.yc2{bottom:871.350000px;}
.y78{bottom:872.790000px;}
.yde{bottom:872.970000px;}
.y8{bottom:876.570000px;}
.y4b{bottom:878.910000px;}
.ydd{bottom:892.230000px;}
.y77{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.y4a{bottom:899.790000px;}
.yc1{bottom:904.110000px;}
.ydc{bottom:908.070000px;}
.y6{bottom:918.690000px;}
.y49{bottom:920.670000px;}
.yc0{bottom:923.730000px;}
.y5{bottom:939.750000px;}
.y48{bottom:941.550000px;}
.ybf{bottom:942.990000px;}
.y4{bottom:960.990000px;}
.y47{bottom:962.280000px;}
.y6b{bottom:962.460000px;}
.y1{bottom:1017.720000px;}
.h15{height:19.440000px;}
.h9{height:19.980000px;}
.h10{height:29.340000px;}
.hc{height:31.324219px;}
.ha{height:35.806641px;}
.hf{height:36.336094px;}
.h18{height:36.662344px;}
.he{height:41.535703px;}
.h8{height:41.974453px;}
.h11{height:46.986328px;}
.h3{height:47.980898px;}
.h7{height:51.998203px;}
.h6{height:52.465078px;}
.h13{height:54.421875px;}
.h16{height:57.636562px;}
.h19{height:58.154062px;}
.h4{height:63.210938px;}
.h1c{height:65.884219px;}
.h17{height:67.320000px;}
.h5{height:67.660313px;}
.h14{height:70.596000px;}
.h1b{height:72.562500px;}
.h1a{height:74.953125px;}
.h12{height:110.376000px;}
.hd{height:119.736000px;}
.hb{height:150.330000px;}
.h1{height:1062.750000px;}
.h2{height:1063.079908px;}
.h0{height:1063.080000px;}
.w4{width:10.656000px;}
.w3{width:117.000000px;}
.w6{width:122.940000px;}
.w5{width:425.235000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x0{left:0.000000px;}
.x15{left:4.185000px;}
.x13{left:5.220000px;}
.x1{left:127.655988px;}
.x21{left:131.435988px;}
.x12{left:132.876000px;}
.x8{left:137.015988px;}
.x17{left:138.275988px;}
.x20{left:144.575988px;}
.x1d{left:148.175988px;}
.x5{left:151.769988px;}
.x19{left:154.649988px;}
.x4{left:158.789988px;}
.x1e{left:160.049988px;}
.x9{left:161.309988px;}
.x18{left:180.749988px;}
.x1c{left:207.749988px;}
.x22{left:215.309988px;}
.x14{left:249.870000px;}
.x16{left:260.535000px;}
.x1f{left:272.594988px;}
.x23{left:281.234988px;}
.xa{left:307.154988px;}
.x6{left:316.334988px;}
.x1b{left:325.874988px;}
.x2{left:338.294988px;}
.xc{left:346.034988px;}
.x7{left:403.994988px;}
.x1a{left:453.524988px;}
.xd{left:468.644988px;}
.x3{left:518.144988px;}
.xe{left:521.204988px;}
.xb{left:524.624988px;}
.x11{left:529.844988px;}
.x10{left:535.784988px;}
.xf{left:680.549988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.549333pt;}
.ls12{letter-spacing:-0.224533pt;}
.lsb{letter-spacing:-0.163733pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:-0.075733pt;}
.ls10{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.019840pt;}
.lse{letter-spacing:0.020480pt;}
.ls3{letter-spacing:0.070400pt;}
.ls11{letter-spacing:0.077867pt;}
.lsa{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.166400pt;}
.ls8{letter-spacing:0.169600pt;}
.ls1{letter-spacing:5.009920pt;}
.ls7{letter-spacing:5.045333pt;}
.ls9{letter-spacing:30.208000pt;}
.ls4{letter-spacing:755.185067pt;}
.ws12{word-spacing:-42.880000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.478933pt;}
.ws4{word-spacing:-14.080000pt;}
.wsf{word-spacing:-12.974080pt;}
.ws10{word-spacing:-12.953600pt;}
.ws11{word-spacing:-12.897067pt;}
.wse{word-spacing:-12.856533pt;}
.wsd{word-spacing:-12.789867pt;}
.ws7{word-spacing:-11.686400pt;}
.ws0{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.357867pt;}
.ws9{word-spacing:-8.166400pt;}
.wsc{word-spacing:-0.058880pt;}
.ws5{word-spacing:-0.042880pt;}
.ws8{word-spacing:-0.037120pt;}
.wsa{word-spacing:0.000000pt;}
.ws6{word-spacing:0.032853pt;}
.ws3{word-spacing:1.856000pt;}
._d{margin-left:-4.290133pt;}
._9{margin-left:-3.392000pt;}
._8{margin-left:-2.304000pt;}
._0{margin-left:-1.202773pt;}
._1{width:0.890453pt;}
._a{width:1.853867pt;}
._10{width:3.096747pt;}
._e{width:4.067413pt;}
._5{width:4.974080pt;}
._6{width:5.917440pt;}
._12{width:7.006720pt;}
._13{width:7.973973pt;}
._15{width:8.898987pt;}
._1b{width:9.891840pt;}
._b{width:10.876160pt;}
._c{width:12.026880pt;}
._f{width:13.221547pt;}
._11{width:14.242560pt;}
._1a{width:15.995307pt;}
._7{width:17.002667pt;}
._14{width:18.166613pt;}
._24{width:19.068587pt;}
._1c{width:20.019200pt;}
._1d{width:21.676373pt;}
._17{width:22.778027pt;}
._16{width:23.846400pt;}
._1f{width:25.343573pt;}
._22{width:26.327893pt;}
._23{width:27.649280pt;}
._19{width:28.556800pt;}
._18{width:29.641813pt;}
._20{width:30.710187pt;}
._1e{width:31.854080pt;}
._21{width:32.997973pt;}
._27{width:35.504640pt;}
._4{width:53.755733pt;}
._25{width:58.114560pt;}
._26{width:59.547307pt;}
._2{width:98.687147pt;}
._3{width:179.366400pt;}
._28{width:755.185067pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:2.080000pt;}
.y31{bottom:3.040000pt;}
.y3c{bottom:3.360000pt;}
.y3b{bottom:5.920000pt;}
.y3d{bottom:7.200000pt;}
.y1a{bottom:7.680000pt;}
.y17{bottom:10.080000pt;}
.y39{bottom:10.120000pt;}
.y42{bottom:10.240000pt;}
.y22{bottom:13.120000pt;}
.y35{bottom:13.160000pt;}
.y2d{bottom:14.720000pt;}
.y30{bottom:16.000000pt;}
.y45{bottom:18.240000pt;}
.y41{bottom:21.120000pt;}
.y38{bottom:21.160000pt;}
.y21{bottom:24.000000pt;}
.y34{bottom:24.040000pt;}
.y44{bottom:29.120000pt;}
.y40{bottom:32.000000pt;}
.y37{bottom:32.040000pt;}
.y20{bottom:34.906667pt;}
.y33{bottom:34.920000pt;}
.y43{bottom:40.000000pt;}
.y3{bottom:41.440000pt;}
.y28{bottom:42.906667pt;}
.y36{bottom:42.920000pt;}
.y1f{bottom:45.946667pt;}
.y3f{bottom:51.040000pt;}
.y27{bottom:53.946667pt;}
.y32{bottom:53.960000pt;}
.y1e{bottom:56.826667pt;}
.y2f{bottom:62.920000pt;}
.y2{bottom:63.520000pt;}
.y26{bottom:64.826667pt;}
.y1d{bottom:67.706667pt;}
.y25{bottom:75.706667pt;}
.y1c{bottom:78.746667pt;}
.y24{bottom:86.746667pt;}
.y1b{bottom:97.626667pt;}
.ybe{bottom:98.112000pt;}
.y76{bottom:102.112000pt;}
.ya1{bottom:108.512000pt;}
.y6a{bottom:115.232000pt;}
.ybd{bottom:115.392000pt;}
.y75{bottom:120.672000pt;}
.y19{bottom:125.946667pt;}
.ybc{bottom:132.512000pt;}
.y69{bottom:133.786667pt;}
.y74{bottom:139.226667pt;}
.ya0{bottom:151.066667pt;}
.y68{bottom:152.346667pt;}
.y46{bottom:155.066667pt;}
.y73{bottom:157.786667pt;}
.ybb{bottom:161.626667pt;}
.y9f{bottom:169.626667pt;}
.y88{bottom:170.906667pt;}
.ydb{bottom:172.186667pt;}
.y3e{bottom:173.786667pt;}
.y72{bottom:176.346667pt;}
.yba{bottom:179.066667pt;}
.yac{bottom:181.786667pt;}
.y9e{bottom:188.186667pt;}
.y87{bottom:189.466667pt;}
.y67{bottom:194.906667pt;}
.yb9{bottom:196.186667pt;}
.yab{bottom:200.346667pt;}
.yda{bottom:201.466667pt;}
.y9d{bottom:206.746667pt;}
.y86{bottom:208.026667pt;}
.y66{bottom:213.466667pt;}
.yd9{bottom:218.746667pt;}
.yaa{bottom:218.906667pt;}
.y9c{bottom:225.306667pt;}
.y65{bottom:232.026667pt;}
.ya9{bottom:237.466667pt;}
.yb8{bottom:242.746667pt;}
.y3a{bottom:242.906667pt;}
.y9b{bottom:243.866667pt;}
.yd8{bottom:247.866667pt;}
.y64{bottom:250.586667pt;}
.ya8{bottom:256.026667pt;}
.yb7{bottom:259.866667pt;}
.y9a{bottom:262.426667pt;}
.yd7{bottom:265.306667pt;}
.y63{bottom:269.146667pt;}
.y2e{bottom:269.466667pt;}
.ya7{bottom:274.586667pt;}
.y99{bottom:281.026667pt;}
.yd6{bottom:282.466667pt;}
.yb6{bottom:286.786667pt;}
.y62{bottom:287.746667pt;}
.ya6{bottom:293.186667pt;}
.y98{bottom:299.586667pt;}
.y61{bottom:306.306667pt;}
.yd5{bottom:311.586667pt;}
.ya5{bottom:311.746667pt;}
.y97{bottom:318.146667pt;}
.y60{bottom:324.866667pt;}
.yd4{bottom:328.866667pt;}
.ya4{bottom:330.306667pt;}
.y96{bottom:336.706667pt;}
.y2c{bottom:341.506667pt;}
.y71{bottom:343.426667pt;}
.yd3{bottom:346.146667pt;}
.ya3{bottom:348.866667pt;}
.y95{bottom:355.266667pt;}
.y70{bottom:361.986667pt;}
.yd2{bottom:363.266667pt;}
.y5f{bottom:367.426667pt;}
.y94{bottom:373.826667pt;}
.y6f{bottom:380.546667pt;}
.y5e{bottom:385.986667pt;}
.y2b{bottom:386.626667pt;}
.y93{bottom:392.386667pt;}
.y85{bottom:399.106667pt;}
.y2a{bottom:400.386667pt;}
.y5d{bottom:404.546667pt;}
.yd1{bottom:409.826667pt;}
.y92{bottom:410.946667pt;}
.y29{bottom:414.306667pt;}
.y84{bottom:417.666667pt;}
.y5c{bottom:423.106667pt;}
.yd0{bottom:426.946667pt;}
.y91{bottom:429.506667pt;}
.y83{bottom:436.226667pt;}
.y18{bottom:437.186667pt;}
.y5b{bottom:441.666667pt;}
.ycf{bottom:444.226667pt;}
.y90{bottom:448.066667pt;}
.y82{bottom:454.786667pt;}
.y5a{bottom:460.226667pt;}
.yb5{bottom:465.666667pt;}
.y8f{bottom:466.626667pt;}
.y81{bottom:473.373333pt;}
.y59{bottom:478.813333pt;}
.yb4{bottom:484.253333pt;}
.y8e{bottom:485.213333pt;}
.yce{bottom:490.653333pt;}
.yad{bottom:490.973333pt;}
.y80{bottom:491.933333pt;}
.y58{bottom:497.373333pt;}
.yb3{bottom:502.813333pt;}
.y8d{bottom:503.773333pt;}
.ycd{bottom:507.933333pt;}
.y7f{bottom:510.493333pt;}
.y57{bottom:515.933333pt;}
.yb2{bottom:521.373333pt;}
.y8c{bottom:522.333333pt;}
.y7e{bottom:529.053333pt;}
.y56{bottom:534.493333pt;}
.ycc{bottom:536.893333pt;}
.yb1{bottom:539.933333pt;}
.y8b{bottom:540.893333pt;}
.y16{bottom:553.053333pt;}
.ycb{bottom:554.333333pt;}
.yb0{bottom:558.493333pt;}
.y8a{bottom:559.453333pt;}
.y55{bottom:571.613333pt;}
.yaf{bottom:577.053333pt;}
.y15{bottom:577.853333pt;}
.yca{bottom:583.453333pt;}
.y54{bottom:590.173333pt;}
.y14{bottom:590.973333pt;}
.yae{bottom:595.613333pt;}
.y89{bottom:602.333333pt;}
.y13{bottom:606.013333pt;}
.y6e{bottom:608.733333pt;}
.yc9{bottom:612.733333pt;}
.ya2{bottom:614.173333pt;}
.y12{bottom:618.813333pt;}
.y6d{bottom:627.293333pt;}
.yc8{bottom:630.013333pt;}
.y53{bottom:632.733333pt;}
.y11{bottom:633.213333pt;}
.y6c{bottom:645.853333pt;}
.y10{bottom:648.733333pt;}
.ye6{bottom:650.013333pt;}
.y52{bottom:651.293333pt;}
.yc7{bottom:659.133333pt;}
.yf{bottom:664.453333pt;}
.y51{bottom:669.893333pt;}
.ye5{bottom:672.933333pt;}
.ye{bottom:679.493333pt;}
.y7d{bottom:683.013333pt;}
.y50{bottom:688.453333pt;}
.ye4{bottom:689.893333pt;}
.yd{bottom:692.293333pt;}
.y7c{bottom:701.573333pt;}
.ye3{bottom:703.013333pt;}
.yc6{bottom:705.733333pt;}
.yc{bottom:706.693333pt;}
.y4f{bottom:707.013333pt;}
.ye2{bottom:715.973333pt;}
.y7b{bottom:720.133333pt;}
.yb{bottom:722.853333pt;}
.yc5{bottom:723.013333pt;}
.y4e{bottom:725.573333pt;}
.ye1{bottom:732.933333pt;}
.y7a{bottom:738.693333pt;}
.yc4{bottom:740.133333pt;}
.ya{bottom:741.573333pt;}
.y4d{bottom:744.133333pt;}
.ye0{bottom:746.053333pt;}
.y79{bottom:757.253333pt;}
.yc3{bottom:757.413333pt;}
.ydf{bottom:759.013333pt;}
.y9{bottom:760.293333pt;}
.y4c{bottom:762.693333pt;}
.yc2{bottom:774.533333pt;}
.y78{bottom:775.813333pt;}
.yde{bottom:775.973333pt;}
.y8{bottom:779.173333pt;}
.y4b{bottom:781.253333pt;}
.ydd{bottom:793.093333pt;}
.y77{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.y4a{bottom:799.813333pt;}
.yc1{bottom:803.653333pt;}
.ydc{bottom:807.173333pt;}
.y6{bottom:816.613333pt;}
.y49{bottom:818.373333pt;}
.yc0{bottom:821.093333pt;}
.y5{bottom:835.333333pt;}
.y48{bottom:836.933333pt;}
.ybf{bottom:838.213333pt;}
.y4{bottom:854.213333pt;}
.y47{bottom:855.360000pt;}
.y6b{bottom:855.520000pt;}
.y1{bottom:904.640000pt;}
.h15{height:17.280000pt;}
.h9{height:17.760000pt;}
.h10{height:26.080000pt;}
.hc{height:27.843750pt;}
.ha{height:31.828125pt;}
.hf{height:32.298750pt;}
.h18{height:32.588750pt;}
.he{height:36.920625pt;}
.h8{height:37.310625pt;}
.h11{height:41.765625pt;}
.h3{height:42.649687pt;}
.h7{height:46.220625pt;}
.h6{height:46.635625pt;}
.h13{height:48.375000pt;}
.h16{height:51.232500pt;}
.h19{height:51.692500pt;}
.h4{height:56.187500pt;}
.h1c{height:58.563750pt;}
.h17{height:59.840000pt;}
.h5{height:60.142500pt;}
.h14{height:62.752000pt;}
.h1b{height:64.500000pt;}
.h1a{height:66.625000pt;}
.h12{height:98.112000pt;}
.hd{height:106.432000pt;}
.hb{height:133.626667pt;}
.h1{height:944.666667pt;}
.h2{height:944.959919pt;}
.h0{height:944.960000pt;}
.w4{width:9.472000pt;}
.w3{width:104.000000pt;}
.w6{width:109.280000pt;}
.w5{width:377.986667pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x0{left:0.000000pt;}
.x15{left:3.720000pt;}
.x13{left:4.640000pt;}
.x1{left:113.471989pt;}
.x21{left:116.831989pt;}
.x12{left:118.112000pt;}
.x8{left:121.791989pt;}
.x17{left:122.911989pt;}
.x20{left:128.511989pt;}
.x1d{left:131.711989pt;}
.x5{left:134.906656pt;}
.x19{left:137.466656pt;}
.x4{left:141.146656pt;}
.x1e{left:142.266656pt;}
.x9{left:143.386656pt;}
.x18{left:160.666656pt;}
.x1c{left:184.666656pt;}
.x22{left:191.386656pt;}
.x14{left:222.106667pt;}
.x16{left:231.586667pt;}
.x1f{left:242.306656pt;}
.x23{left:249.986656pt;}
.xa{left:273.026656pt;}
.x6{left:281.186656pt;}
.x1b{left:289.666656pt;}
.x2{left:300.706656pt;}
.xc{left:307.586656pt;}
.x7{left:359.106656pt;}
.x1a{left:403.133323pt;}
.xd{left:416.573323pt;}
.x3{left:460.573323pt;}
.xe{left:463.293323pt;}
.xb{left:466.333323pt;}
.x11{left:470.973323pt;}
.x10{left:476.253323pt;}
.xf{left:604.933323pt;}
}




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