
    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_504cb11bfbe9ecd633ab656f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_593906a7db304ccd2b5650d2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_59fb246cb4dbe25fefbe7bac.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_781a06e15a25e6e7edb72574.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_67e41c880331be7839ec7072.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_fec2821b681cf66436f52207.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8128b3d0bc904e2e75546326.woff')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_0b5f51f965639dcd2a68a945.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_8fb9581d30f03347f431829e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-85.680000px;}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.378600px;}
.lsc{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.125280px;}
.lse{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.260000px;}
.ls8{letter-spacing:7.200000px;}
.ls13{letter-spacing:9.360000px;}
.ls1{letter-spacing:10.800000px;}
.ls2{letter-spacing:14.940000px;}
.ls10{letter-spacing:19.980000px;}
.ls9{letter-spacing:27.180000px;}
.ls12{letter-spacing:33.984000px;}
.ls0{letter-spacing:43.200000px;}
.ls7{letter-spacing:125.621280px;}
.ls11{letter-spacing:911.136000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.700000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.940000px;}
.ws7{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.432080px;}
._1{width:1.032960px;}
._a{width:2.039040px;}
._2{width:3.144000px;}
._c{width:4.415040px;}
._7{width:5.688000px;}
._5{width:6.840000px;}
._6{width:8.352000px;}
._9{width:10.092000px;}
._8{width:11.232000px;}
._e{width:12.456000px;}
._d{width:13.536000px;}
._10{width:14.800800px;}
._4{width:15.840000px;}
._3{width:16.848000px;}
._11{width:18.280080px;}
._b{width:20.088000px;}
._12{width:22.070880px;}
._13{width:23.587200px;}
._1f{width:25.103520px;}
._28{width:26.260800px;}
._f{width:27.264000px;}
._16{width:29.022960px;}
._15{width:30.326400px;}
._19{width:32.095440px;}
._1a{width:33.948720px;}
._21{width:35.069520px;}
._27{width:36.955680px;}
._17{width:37.992240px;}
._18{width:39.087360px;}
._24{width:43.156560px;}
._25{width:44.647200px;}
._1d{width:46.079280px;}
._1b{width:51.807600px;}
._1c{width:52.818480px;}
._2a{width:53.913600px;}
._29{width:54.924480px;}
._26{width:60.083760px;}
._1e{width:61.372800px;}
._20{width:65.985600px;}
._14{width:67.560480px;}
._2c{width:69.574560px;}
._22{width:72.867600px;}
._23{width:74.215440px;}
._2b{width:75.596400px;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y56{bottom:6.300000px;}
.y8c{bottom:6.480000px;}
.y5d{bottom:7.020000px;}
.y5b{bottom:7.200000px;}
.y8b{bottom:7.560000px;}
.y5a{bottom:7.920000px;}
.y66{bottom:8.100000px;}
.y4{bottom:12.240000px;}
.y58{bottom:17.280000px;}
.y84{bottom:17.325000px;}
.y3{bottom:23.976000px;}
.y54{bottom:28.260000px;}
.y82{bottom:28.305000px;}
.y2{bottom:31.176000px;}
.y57{bottom:39.060000px;}
.y83{bottom:39.105000px;}
.y55{bottom:50.040000px;}
.y85{bottom:50.085000px;}
.ya5{bottom:60.840000px;}
.ya8{bottom:71.820000px;}
.ya6{bottom:82.800000px;}
.ya7{bottom:93.600000px;}
.y2f{bottom:93.996000px;}
.y80{bottom:96.336000px;}
.ybc{bottom:100.116000px;}
.y52{bottom:101.016000px;}
.ya3{bottom:115.956000px;}
.y2e{bottom:121.896000px;}
.y7f{bottom:124.056000px;}
.ybb{bottom:127.836000px;}
.y51{bottom:128.916000px;}
.ya2{bottom:143.676000px;}
.y2d{bottom:149.616000px;}
.y7e{bottom:151.950000px;}
.yba{bottom:155.550000px;}
.y50{bottom:156.630000px;}
.ya1{bottom:171.390000px;}
.y2c{bottom:177.330000px;}
.y7d{bottom:179.670000px;}
.yb9{bottom:183.270000px;}
.y4f{bottom:184.350000px;}
.ya0{bottom:199.290000px;}
.y2b{bottom:205.230000px;}
.y7c{bottom:207.390000px;}
.yb8{bottom:211.170000px;}
.y4e{bottom:212.070000px;}
.y9f{bottom:227.010000px;}
.y2a{bottom:232.950000px;}
.y7b{bottom:235.110000px;}
.yb7{bottom:238.890000px;}
.y4d{bottom:239.970000px;}
.y9e{bottom:254.730000px;}
.y29{bottom:260.670000px;}
.y7a{bottom:263.010000px;}
.yb6{bottom:266.610000px;}
.y4c{bottom:267.690000px;}
.y9d{bottom:282.495000px;}
.y28{bottom:288.435000px;}
.y79{bottom:290.775000px;}
.yb5{bottom:294.555000px;}
.y4b{bottom:295.455000px;}
.y9c{bottom:310.395000px;}
.y27{bottom:316.335000px;}
.y78{bottom:318.495000px;}
.yb4{bottom:319.395000px;}
.y4a{bottom:323.175000px;}
.y9b{bottom:338.115000px;}
.yb3{bottom:339.015000px;}
.y26{bottom:344.055000px;}
.y77{bottom:346.395000px;}
.y49{bottom:351.075000px;}
.yb2{bottom:362.775000px;}
.y9a{bottom:365.835000px;}
.y25{bottom:371.775000px;}
.y76{bottom:374.115000px;}
.y48{bottom:378.795000px;}
.yb1{bottom:380.235000px;}
.y99{bottom:393.735000px;}
.y24{bottom:399.675000px;}
.y75{bottom:401.835000px;}
.yb0{bottom:404.535000px;}
.y47{bottom:406.515000px;}
.y98{bottom:421.455000px;}
.y23{bottom:427.395000px;}
.yaf{bottom:428.655000px;}
.y74{bottom:429.555000px;}
.y46{bottom:434.415000px;}
.y97{bottom:449.175000px;}
.y22{bottom:452.235000px;}
.yae{bottom:452.775000px;}
.y73{bottom:457.455000px;}
.y45{bottom:462.135000px;}
.y21{bottom:468.795000px;}
.y96{bottom:476.895000px;}
.y72{bottom:485.175000px;}
.y20{bottom:489.495000px;}
.y44{bottom:489.855000px;}
.yad{bottom:501.015000px;}
.y95{bottom:504.795000px;}
.y1f{bottom:510.195000px;}
.y71{bottom:512.895000px;}
.y43{bottom:517.575000px;}
.yac{bottom:525.135000px;}
.y94{bottom:529.635000px;}
.y1e{bottom:530.895000px;}
.y70{bottom:540.615000px;}
.y42{bottom:545.475000px;}
.y93{bottom:549.255000px;}
.yab{bottom:549.435000px;}
.y1d{bottom:551.595000px;}
.y6f{bottom:568.545000px;}
.y1c{bottom:572.325000px;}
.y92{bottom:573.045000px;}
.y41{bottom:573.225000px;}
.yaa{bottom:573.585000px;}
.ycd{bottom:587.265000px;}
.y91{bottom:590.685000px;}
.y1b{bottom:593.025000px;}
.y6e{bottom:596.265000px;}
.ya9{bottom:597.705000px;}
.y40{bottom:600.945000px;}
.ycc{bottom:610.845000px;}
.y1a{bottom:613.725000px;}
.y90{bottom:614.805000px;}
.ya4{bottom:621.825000px;}
.y6d{bottom:622.905000px;}
.y3f{bottom:628.845000px;}
.ycb{bottom:631.545000px;}
.y19{bottom:634.425000px;}
.y8f{bottom:638.925000px;}
.y6c{bottom:646.665000px;}
.yca{bottom:652.245000px;}
.y18{bottom:655.125000px;}
.y3e{bottom:656.565000px;}
.y8e{bottom:663.045000px;}
.y6b{bottom:664.305000px;}
.yc9{bottom:672.945000px;}
.y17{bottom:675.825000px;}
.y3d{bottom:684.285000px;}
.y8d{bottom:687.165000px;}
.y6a{bottom:688.425000px;}
.yc8{bottom:693.645000px;}
.y16{bottom:696.525000px;}
.y8a{bottom:711.285000px;}
.y3c{bottom:712.005000px;}
.y69{bottom:712.545000px;}
.yc7{bottom:714.345000px;}
.y15{bottom:717.225000px;}
.yc6{bottom:735.045000px;}
.y89{bottom:735.585000px;}
.y68{bottom:736.665000px;}
.y14{bottom:737.925000px;}
.y3b{bottom:739.905000px;}
.yc5{bottom:755.745000px;}
.y13{bottom:758.625000px;}
.y88{bottom:759.705000px;}
.y67{bottom:760.785000px;}
.y3a{bottom:767.625000px;}
.yc4{bottom:776.445000px;}
.y12{bottom:779.325000px;}
.y87{bottom:783.825000px;}
.y65{bottom:784.905000px;}
.y39{bottom:795.345000px;}
.yc3{bottom:797.145000px;}
.y11{bottom:800.025000px;}
.y86{bottom:807.945000px;}
.y64{bottom:809.205000px;}
.yc2{bottom:817.845000px;}
.y10{bottom:820.725000px;}
.y38{bottom:823.065000px;}
.y81{bottom:832.065000px;}
.y63{bottom:833.325000px;}
.yc1{bottom:838.365000px;}
.yf{bottom:841.425000px;}
.y37{bottom:851.010000px;}
.y62{bottom:857.490000px;}
.yc0{bottom:859.110000px;}
.ye{bottom:862.170000px;}
.y36{bottom:878.730000px;}
.ybf{bottom:879.810000px;}
.y61{bottom:881.610000px;}
.ybe{bottom:900.510000px;}
.yd{bottom:903.570000px;}
.y60{bottom:905.730000px;}
.y35{bottom:906.450000px;}
.yc{bottom:924.270000px;}
.y5f{bottom:930.030000px;}
.y34{bottom:934.350000px;}
.ybd{bottom:942.630000px;}
.yb{bottom:944.970000px;}
.y5e{bottom:954.150000px;}
.y33{bottom:962.070000px;}
.ya{bottom:965.670000px;}
.y5c{bottom:978.270000px;}
.y9{bottom:986.370000px;}
.y32{bottom:989.790000px;}
.y59{bottom:1002.390000px;}
.y8{bottom:1007.070000px;}
.y31{bottom:1017.510000px;}
.y53{bottom:1026.510000px;}
.y7{bottom:1027.770000px;}
.y30{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.y5{bottom:1073.130000px;}
.y1{bottom:1190.160000px;}
.he{height:23.400000px;}
.h10{height:23.436000px;}
.h11{height:23.580000px;}
.h3{height:31.860000px;}
.h15{height:46.736719px;}
.h18{height:47.344922px;}
.h8{height:52.628906px;}
.h17{height:52.971680px;}
.h9{height:52.998047px;}
.h13{height:59.436914px;}
.hf{height:65.010937px;}
.hc{height:65.520000px;}
.h14{height:65.556000px;}
.hd{height:66.757500px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h5{height:72.562500px;}
.h19{height:74.004654px;}
.ha{height:74.244727px;}
.h12{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hb{height:86.585445px;}
.h16{height:109.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:36.000000px;}
.w11{width:37.980000px;}
.w4{width:41.220000px;}
.w3{width:75.816000px;}
.w6{width:88.560000px;}
.w9{width:93.636000px;}
.w8{width:94.860000px;}
.w7{width:96.156000px;}
.w12{width:96.660000px;}
.w13{width:97.956000px;}
.w14{width:98.280000px;}
.w15{width:104.076000px;}
.w17{width:104.220000px;}
.wc{width:109.080000px;}
.wa{width:120.420000px;}
.w16{width:126.216000px;}
.w10{width:126.900000px;}
.we{width:137.376000px;}
.wf{width:137.556000px;}
.wd{width:139.356000px;}
.w5{width:154.290000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.740000px;}
.x31{left:9.900000px;}
.x18{left:10.980000px;}
.xf{left:12.240000px;}
.x16{left:13.680000px;}
.x13{left:14.940000px;}
.x1c{left:16.380000px;}
.x2c{left:18.174000px;}
.x1e{left:21.600000px;}
.x20{left:24.660000px;}
.x26{left:25.740000px;}
.x3{left:27.360000px;}
.x2f{left:29.160000px;}
.x23{left:30.780000px;}
.x19{left:32.580000px;}
.x14{left:33.840000px;}
.x1f{left:35.640000px;}
.x24{left:38.520000px;}
.x22{left:39.780000px;}
.x11{left:42.294000px;}
.x21{left:43.740000px;}
.x35{left:44.820000px;}
.x1b{left:46.080000px;}
.x27{left:47.880000px;}
.x37{left:48.960000px;}
.x34{left:50.220000px;}
.x25{left:52.020000px;}
.x36{left:53.100000px;}
.x33{left:54.360000px;}
.x28{left:56.160000px;}
.x1{left:84.959987px;}
.x40{left:90.035987px;}
.x4{left:95.435987px;}
.xe{left:99.756000px;}
.x2b{left:101.556000px;}
.x3a{left:111.636000px;}
.x41{left:117.035987px;}
.xb{left:138.095987px;}
.x10{left:141.696000px;}
.x38{left:142.955987px;}
.x29{left:144.035987px;}
.x3b{left:150.330000px;}
.xd{left:225.209987px;}
.x2d{left:248.070000px;}
.xa{left:271.649987px;}
.x8{left:289.514987px;}
.x12{left:296.715000px;}
.x2a{left:302.294987px;}
.x5{left:341.714987px;}
.x3c{left:346.395000px;}
.x39{left:349.994987px;}
.x7{left:380.774987px;}
.x9{left:385.634987px;}
.x2e{left:388.335000px;}
.x2{left:409.035000px;}
.x3d{left:445.395000px;}
.x6{left:446.474987px;}
.x15{left:482.865000px;}
.x30{left:526.425000px;}
.x3e{left:550.185000px;}
.x17{left:578.445000px;}
.x32{left:664.710000px;}
.x1a{left:672.810000px;}
.x3f{left:677.130000px;}
.xc{left:739.229987px;}
@media print{
.v3{vertical-align:-76.160000pt;}
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.336533pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.111360pt;}
.lse{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls6{letter-spacing:1.120000pt;}
.ls8{letter-spacing:6.400000pt;}
.ls13{letter-spacing:8.320000pt;}
.ls1{letter-spacing:9.600000pt;}
.ls2{letter-spacing:13.280000pt;}
.ls10{letter-spacing:17.760000pt;}
.ls9{letter-spacing:24.160000pt;}
.ls12{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls7{letter-spacing:111.663360pt;}
.ls11{letter-spacing:809.898667pt;}
.ws0{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.400000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.280000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.272960pt;}
._1{width:0.918187pt;}
._a{width:1.812480pt;}
._2{width:2.794667pt;}
._c{width:3.924480pt;}
._7{width:5.056000pt;}
._5{width:6.080000pt;}
._6{width:7.424000pt;}
._9{width:8.970667pt;}
._8{width:9.984000pt;}
._e{width:11.072000pt;}
._d{width:12.032000pt;}
._10{width:13.156267pt;}
._4{width:14.080000pt;}
._3{width:14.976000pt;}
._11{width:16.248960pt;}
._b{width:17.856000pt;}
._12{width:19.618560pt;}
._13{width:20.966400pt;}
._1f{width:22.314240pt;}
._28{width:23.342933pt;}
._f{width:24.234667pt;}
._16{width:25.798187pt;}
._15{width:26.956800pt;}
._19{width:28.529280pt;}
._1a{width:30.176640pt;}
._21{width:31.172907pt;}
._27{width:32.849493pt;}
._17{width:33.770880pt;}
._18{width:34.744320pt;}
._24{width:38.361387pt;}
._25{width:39.686400pt;}
._1d{width:40.959360pt;}
._1b{width:46.051200pt;}
._1c{width:46.949760pt;}
._2a{width:47.923200pt;}
._29{width:48.821760pt;}
._26{width:53.407787pt;}
._1e{width:54.553600pt;}
._20{width:58.653867pt;}
._14{width:60.053760pt;}
._2c{width:61.844053pt;}
._22{width:64.771200pt;}
._23{width:65.969280pt;}
._2b{width:67.196800pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:5.600000pt;}
.y8c{bottom:5.760000pt;}
.y5d{bottom:6.240000pt;}
.y5b{bottom:6.400000pt;}
.y8b{bottom:6.720000pt;}
.y5a{bottom:7.040000pt;}
.y66{bottom:7.200000pt;}
.y4{bottom:10.880000pt;}
.y58{bottom:15.360000pt;}
.y84{bottom:15.400000pt;}
.y3{bottom:21.312000pt;}
.y54{bottom:25.120000pt;}
.y82{bottom:25.160000pt;}
.y2{bottom:27.712000pt;}
.y57{bottom:34.720000pt;}
.y83{bottom:34.760000pt;}
.y55{bottom:44.480000pt;}
.y85{bottom:44.520000pt;}
.ya5{bottom:54.080000pt;}
.ya8{bottom:63.840000pt;}
.ya6{bottom:73.600000pt;}
.ya7{bottom:83.200000pt;}
.y2f{bottom:83.552000pt;}
.y80{bottom:85.632000pt;}
.ybc{bottom:88.992000pt;}
.y52{bottom:89.792000pt;}
.ya3{bottom:103.072000pt;}
.y2e{bottom:108.352000pt;}
.y7f{bottom:110.272000pt;}
.ybb{bottom:113.632000pt;}
.y51{bottom:114.592000pt;}
.ya2{bottom:127.712000pt;}
.y2d{bottom:132.992000pt;}
.y7e{bottom:135.066667pt;}
.yba{bottom:138.266667pt;}
.y50{bottom:139.226667pt;}
.ya1{bottom:152.346667pt;}
.y2c{bottom:157.626667pt;}
.y7d{bottom:159.706667pt;}
.yb9{bottom:162.906667pt;}
.y4f{bottom:163.866667pt;}
.ya0{bottom:177.146667pt;}
.y2b{bottom:182.426667pt;}
.y7c{bottom:184.346667pt;}
.yb8{bottom:187.706667pt;}
.y4e{bottom:188.506667pt;}
.y9f{bottom:201.786667pt;}
.y2a{bottom:207.066667pt;}
.y7b{bottom:208.986667pt;}
.yb7{bottom:212.346667pt;}
.y4d{bottom:213.306667pt;}
.y9e{bottom:226.426667pt;}
.y29{bottom:231.706667pt;}
.y7a{bottom:233.786667pt;}
.yb6{bottom:236.986667pt;}
.y4c{bottom:237.946667pt;}
.y9d{bottom:251.106667pt;}
.y28{bottom:256.386667pt;}
.y79{bottom:258.466667pt;}
.yb5{bottom:261.826667pt;}
.y4b{bottom:262.626667pt;}
.y9c{bottom:275.906667pt;}
.y27{bottom:281.186667pt;}
.y78{bottom:283.106667pt;}
.yb4{bottom:283.906667pt;}
.y4a{bottom:287.266667pt;}
.y9b{bottom:300.546667pt;}
.yb3{bottom:301.346667pt;}
.y26{bottom:305.826667pt;}
.y77{bottom:307.906667pt;}
.y49{bottom:312.066667pt;}
.yb2{bottom:322.466667pt;}
.y9a{bottom:325.186667pt;}
.y25{bottom:330.466667pt;}
.y76{bottom:332.546667pt;}
.y48{bottom:336.706667pt;}
.yb1{bottom:337.986667pt;}
.y99{bottom:349.986667pt;}
.y24{bottom:355.266667pt;}
.y75{bottom:357.186667pt;}
.yb0{bottom:359.586667pt;}
.y47{bottom:361.346667pt;}
.y98{bottom:374.626667pt;}
.y23{bottom:379.906667pt;}
.yaf{bottom:381.026667pt;}
.y74{bottom:381.826667pt;}
.y46{bottom:386.146667pt;}
.y97{bottom:399.266667pt;}
.y22{bottom:401.986667pt;}
.yae{bottom:402.466667pt;}
.y73{bottom:406.626667pt;}
.y45{bottom:410.786667pt;}
.y21{bottom:416.706667pt;}
.y96{bottom:423.906667pt;}
.y72{bottom:431.266667pt;}
.y20{bottom:435.106667pt;}
.y44{bottom:435.426667pt;}
.yad{bottom:445.346667pt;}
.y95{bottom:448.706667pt;}
.y1f{bottom:453.506667pt;}
.y71{bottom:455.906667pt;}
.y43{bottom:460.066667pt;}
.yac{bottom:466.786667pt;}
.y94{bottom:470.786667pt;}
.y1e{bottom:471.906667pt;}
.y70{bottom:480.546667pt;}
.y42{bottom:484.866667pt;}
.y93{bottom:488.226667pt;}
.yab{bottom:488.386667pt;}
.y1d{bottom:490.306667pt;}
.y6f{bottom:505.373333pt;}
.y1c{bottom:508.733333pt;}
.y92{bottom:509.373333pt;}
.y41{bottom:509.533333pt;}
.yaa{bottom:509.853333pt;}
.ycd{bottom:522.013333pt;}
.y91{bottom:525.053333pt;}
.y1b{bottom:527.133333pt;}
.y6e{bottom:530.013333pt;}
.ya9{bottom:531.293333pt;}
.y40{bottom:534.173333pt;}
.ycc{bottom:542.973333pt;}
.y1a{bottom:545.533333pt;}
.y90{bottom:546.493333pt;}
.ya4{bottom:552.733333pt;}
.y6d{bottom:553.693333pt;}
.y3f{bottom:558.973333pt;}
.ycb{bottom:561.373333pt;}
.y19{bottom:563.933333pt;}
.y8f{bottom:567.933333pt;}
.y6c{bottom:574.813333pt;}
.yca{bottom:579.773333pt;}
.y18{bottom:582.333333pt;}
.y3e{bottom:583.613333pt;}
.y8e{bottom:589.373333pt;}
.y6b{bottom:590.493333pt;}
.yc9{bottom:598.173333pt;}
.y17{bottom:600.733333pt;}
.y3d{bottom:608.253333pt;}
.y8d{bottom:610.813333pt;}
.y6a{bottom:611.933333pt;}
.yc8{bottom:616.573333pt;}
.y16{bottom:619.133333pt;}
.y8a{bottom:632.253333pt;}
.y3c{bottom:632.893333pt;}
.y69{bottom:633.373333pt;}
.yc7{bottom:634.973333pt;}
.y15{bottom:637.533333pt;}
.yc6{bottom:653.373333pt;}
.y89{bottom:653.853333pt;}
.y68{bottom:654.813333pt;}
.y14{bottom:655.933333pt;}
.y3b{bottom:657.693333pt;}
.yc5{bottom:671.773333pt;}
.y13{bottom:674.333333pt;}
.y88{bottom:675.293333pt;}
.y67{bottom:676.253333pt;}
.y3a{bottom:682.333333pt;}
.yc4{bottom:690.173333pt;}
.y12{bottom:692.733333pt;}
.y87{bottom:696.733333pt;}
.y65{bottom:697.693333pt;}
.y39{bottom:706.973333pt;}
.yc3{bottom:708.573333pt;}
.y11{bottom:711.133333pt;}
.y86{bottom:718.173333pt;}
.y64{bottom:719.293333pt;}
.yc2{bottom:726.973333pt;}
.y10{bottom:729.533333pt;}
.y38{bottom:731.613333pt;}
.y81{bottom:739.613333pt;}
.y63{bottom:740.733333pt;}
.yc1{bottom:745.213333pt;}
.yf{bottom:747.933333pt;}
.y37{bottom:756.453333pt;}
.y62{bottom:762.213333pt;}
.yc0{bottom:763.653333pt;}
.ye{bottom:766.373333pt;}
.y36{bottom:781.093333pt;}
.ybf{bottom:782.053333pt;}
.y61{bottom:783.653333pt;}
.ybe{bottom:800.453333pt;}
.yd{bottom:803.173333pt;}
.y60{bottom:805.093333pt;}
.y35{bottom:805.733333pt;}
.yc{bottom:821.573333pt;}
.y5f{bottom:826.693333pt;}
.y34{bottom:830.533333pt;}
.ybd{bottom:837.893333pt;}
.yb{bottom:839.973333pt;}
.y5e{bottom:848.133333pt;}
.y33{bottom:855.173333pt;}
.ya{bottom:858.373333pt;}
.y5c{bottom:869.573333pt;}
.y9{bottom:876.773333pt;}
.y32{bottom:879.813333pt;}
.y59{bottom:891.013333pt;}
.y8{bottom:895.173333pt;}
.y31{bottom:904.453333pt;}
.y53{bottom:912.453333pt;}
.y7{bottom:913.573333pt;}
.y30{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.y5{bottom:953.893333pt;}
.y1{bottom:1057.920000pt;}
.he{height:20.800000pt;}
.h10{height:20.832000pt;}
.h11{height:20.960000pt;}
.h3{height:28.320000pt;}
.h15{height:41.543750pt;}
.h18{height:42.084375pt;}
.h8{height:46.781250pt;}
.h17{height:47.085938pt;}
.h9{height:47.109375pt;}
.h13{height:52.832812pt;}
.hf{height:57.787500pt;}
.hc{height:58.240000pt;}
.h14{height:58.272000pt;}
.hd{height:59.340000pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h5{height:64.500000pt;}
.h19{height:65.781915pt;}
.ha{height:65.995312pt;}
.h12{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hb{height:76.964840pt;}
.h16{height:96.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:32.000000pt;}
.w11{width:33.760000pt;}
.w4{width:36.640000pt;}
.w3{width:67.392000pt;}
.w6{width:78.720000pt;}
.w9{width:83.232000pt;}
.w8{width:84.320000pt;}
.w7{width:85.472000pt;}
.w12{width:85.920000pt;}
.w13{width:87.072000pt;}
.w14{width:87.360000pt;}
.w15{width:92.512000pt;}
.w17{width:92.640000pt;}
.wc{width:96.960000pt;}
.wa{width:107.040000pt;}
.w16{width:112.192000pt;}
.w10{width:112.800000pt;}
.we{width:122.112000pt;}
.wf{width:122.272000pt;}
.wd{width:123.872000pt;}
.w5{width:137.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.880000pt;}
.x31{left:8.800000pt;}
.x18{left:9.760000pt;}
.xf{left:10.880000pt;}
.x16{left:12.160000pt;}
.x13{left:13.280000pt;}
.x1c{left:14.560000pt;}
.x2c{left:16.154667pt;}
.x1e{left:19.200000pt;}
.x20{left:21.920000pt;}
.x26{left:22.880000pt;}
.x3{left:24.320000pt;}
.x2f{left:25.920000pt;}
.x23{left:27.360000pt;}
.x19{left:28.960000pt;}
.x14{left:30.080000pt;}
.x1f{left:31.680000pt;}
.x24{left:34.240000pt;}
.x22{left:35.360000pt;}
.x11{left:37.594667pt;}
.x21{left:38.880000pt;}
.x35{left:39.840000pt;}
.x1b{left:40.960000pt;}
.x27{left:42.560000pt;}
.x37{left:43.520000pt;}
.x34{left:44.640000pt;}
.x25{left:46.240000pt;}
.x36{left:47.200000pt;}
.x33{left:48.320000pt;}
.x28{left:49.920000pt;}
.x1{left:75.519988pt;}
.x40{left:80.031988pt;}
.x4{left:84.831988pt;}
.xe{left:88.672000pt;}
.x2b{left:90.272000pt;}
.x3a{left:99.232000pt;}
.x41{left:104.031988pt;}
.xb{left:122.751988pt;}
.x10{left:125.952000pt;}
.x38{left:127.071988pt;}
.x29{left:128.031988pt;}
.x3b{left:133.626667pt;}
.xd{left:200.186655pt;}
.x2d{left:220.506667pt;}
.xa{left:241.466655pt;}
.x8{left:257.346655pt;}
.x12{left:263.746667pt;}
.x2a{left:268.706655pt;}
.x5{left:303.746655pt;}
.x3c{left:307.906667pt;}
.x39{left:311.106655pt;}
.x7{left:338.466655pt;}
.x9{left:342.786655pt;}
.x2e{left:345.186667pt;}
.x2{left:363.586667pt;}
.x3d{left:395.906667pt;}
.x6{left:396.866655pt;}
.x15{left:429.213333pt;}
.x30{left:467.933333pt;}
.x3e{left:489.053333pt;}
.x17{left:514.173333pt;}
.x32{left:590.853333pt;}
.x1a{left:598.053333pt;}
.x3f{left:601.893333pt;}
.xc{left:657.093322pt;}
}




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