
    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_df23d4d474a0be28fa296c05.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5b16f886bca6ad2286a28f96.woff2')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_75cd6920fcb398bff5194675.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a706b768692d2d3df6674502.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_8673829c715b2d8c8e6e7753.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.037109;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_afbe8dc396479dab98e5b669.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,-0.249714,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249714,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249714,0.250000,0.000000,0,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(0.250287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250287,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.400000px;}
.v1{vertical-align:33.120000px;}
.ls6{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.030431px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.080000px;}
.ls9{letter-spacing:3.917520px;}
.lse{letter-spacing:5.040000px;}
.lsb{letter-spacing:6.480000px;}
.ls8{letter-spacing:18.641520px;}
.ls7{letter-spacing:19.361520px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws9{word-spacing:-55.944000px;}
.wsa{word-spacing:-55.584000px;}
.ws8{word-spacing:-52.344000px;}
.ws7{word-spacing:-27.498480px;}
.ws5{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.784000px;}
.ws10{word-spacing:-14.626598px;}
.wsf{word-spacing:-14.609853px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:162.240413px;}
.wsd{word-spacing:175.843668px;}
._1c{margin-left:-6.912000px;}
._1d{margin-left:-2.448000px;}
._0{margin-left:-1.188000px;}
._2{width:1.044000px;}
._13{width:2.880000px;}
._b{width:4.068000px;}
._c{width:5.424000px;}
._8{width:6.552000px;}
._14{width:7.752000px;}
._18{width:8.988000px;}
._f{width:10.296000px;}
._10{width:11.304000px;}
._6{width:12.456000px;}
._5{width:13.836000px;}
._e{width:14.964000px;}
._7{width:15.984000px;}
._1e{width:16.992000px;}
._d{width:19.872000px;}
._19{width:20.880000px;}
._16{width:21.960000px;}
._17{width:23.580000px;}
._11{width:24.624000px;}
._12{width:25.920000px;}
._9{width:27.720000px;}
._a{width:28.944000px;}
._4{width:30.960000px;}
._1a{width:31.968000px;}
._1b{width:33.912000px;}
._1{width:42.984000px;}
._3{width:48.924000px;}
._23{width:63.000000px;}
._22{width:66.384000px;}
._20{width:204.052217px;}
._21{width:205.978678px;}
._15{width:1195.164000px;}
._1f{width:1822.080000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:25.306263px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs4{font-size:52.553428px;}
.fs5{font-size:52.613661px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y8c{bottom:0.360000px;}
.yb8{bottom:3.902307px;}
.y6e{bottom:4.140000px;}
.y72{bottom:4.320000px;}
.y70{bottom:4.500000px;}
.y51{bottom:13.500000px;}
.y50{bottom:15.480000px;}
.yaf{bottom:17.516735px;}
.y8a{bottom:22.320000px;}
.yb0{bottom:26.759619px;}
.yba{bottom:28.718316px;}
.y75{bottom:30.060000px;}
.y26{bottom:46.836000px;}
.yb1{bottom:55.476645px;}
.yb2{bottom:83.692714px;}
.y87{bottom:99.036000px;}
.yad{bottom:102.636000px;}
.y23{bottom:103.356000px;}
.y4a{bottom:103.536000px;}
.y6c{bottom:108.036000px;}
.yb3{bottom:112.409096px;}
.yb9{bottom:115.806836px;}
.yd5{bottom:118.476000px;}
.y86{bottom:124.416000px;}
.yac{bottom:128.016000px;}
.y22{bottom:128.916000px;}
.y6b{bottom:133.416000px;}
.yb4{bottom:140.641928px;}
.yd4{bottom:144.036000px;}
.y85{bottom:149.976000px;}
.y21{bottom:154.470000px;}
.y6a{bottom:158.970000px;}
.yab{bottom:167.250000px;}
.yae{bottom:167.295000px;}
.yb5{bottom:169.338968px;}
.yd3{bottom:169.410000px;}
.ybe{bottom:175.186691px;}
.y84{bottom:175.530000px;}
.y20{bottom:179.850000px;}
.y49{bottom:180.030000px;}
.ybd{bottom:192.214074px;}
.yd2{bottom:194.970000px;}
.yb6{bottom:197.571800px;}
.y83{bottom:200.910000px;}
.y69{bottom:202.530000px;}
.y1f{bottom:205.410000px;}
.ybc{bottom:209.241457px;}
.yd1{bottom:220.530000px;}
.yb7{bottom:225.785291px;}
.y82{bottom:226.470000px;}
.ybb{bottom:228.215932px;}
.y9a{bottom:230.250000px;}
.y48{bottom:230.970000px;}
.y68{bottom:245.910000px;}
.y1e{bottom:248.610000px;}
.y81{bottom:252.030000px;}
.y99{bottom:255.810000px;}
.y47{bottom:256.530000px;}
.y67{bottom:271.470000px;}
.y80{bottom:277.410000px;}
.y98{bottom:281.190000px;}
.y46{bottom:281.910000px;}
.y66{bottom:297.030000px;}
.y97{bottom:306.750000px;}
.y45{bottom:307.470000px;}
.y1d{bottom:312.870000px;}
.y7f{bottom:320.655000px;}
.y65{bottom:322.455000px;}
.y96{bottom:332.355000px;}
.y44{bottom:333.075000px;}
.y1c{bottom:338.655000px;}
.y64{bottom:348.015000px;}
.y95{bottom:357.735000px;}
.y43{bottom:358.455000px;}
.y7e{bottom:364.575000px;}
.y63{bottom:373.575000px;}
.y1b{bottom:382.035000px;}
.y94{bottom:383.295000px;}
.y42{bottom:384.015000px;}
.y7d{bottom:389.955000px;}
.y62{bottom:398.955000px;}
.y1a{bottom:407.595000px;}
.y93{bottom:408.855000px;}
.y41{bottom:409.575000px;}
.y7c{bottom:415.515000px;}
.yaa{bottom:420.735000px;}
.y61{bottom:424.515000px;}
.y19{bottom:433.155000px;}
.y7b{bottom:441.075000px;}
.ya9{bottom:446.295000px;}
.y60{bottom:450.075000px;}
.y92{bottom:452.235000px;}
.y40{bottom:452.955000px;}
.y18{bottom:458.535000px;}
.y7a{bottom:466.455000px;}
.ya8{bottom:471.855000px;}
.y5f{bottom:475.455000px;}
.y17{bottom:484.095000px;}
.y79{bottom:492.015000px;}
.y91{bottom:495.795000px;}
.y3f{bottom:496.155000px;}
.ya7{bottom:497.235000px;}
.y5e{bottom:501.015000px;}
.y16{bottom:509.655000px;}
.y78{bottom:517.575000px;}
.ya6{bottom:522.795000px;}
.y5d{bottom:526.575000px;}
.y15{bottom:535.035000px;}
.y90{bottom:539.355000px;}
.y3e{bottom:540.075000px;}
.ya5{bottom:548.355000px;}
.y5c{bottom:551.955000px;}
.y14{bottom:560.595000px;}
.y77{bottom:560.955000px;}
.y8f{bottom:564.735000px;}
.y3d{bottom:565.455000px;}
.yd0{bottom:569.595000px;}
.ya4{bottom:573.735000px;}
.y5b{bottom:577.515000px;}
.y13{bottom:586.155000px;}
.y76{bottom:586.515000px;}
.y8e{bottom:590.325000px;}
.y3c{bottom:591.045000px;}
.ya3{bottom:599.325000px;}
.y5a{bottom:603.105000px;}
.y74{bottom:608.325000px;}
.y12{bottom:611.565000px;}
.ycf{bottom:613.545000px;}
.y3b{bottom:616.605000px;}
.ya2{bottom:624.885000px;}
.y59{bottom:628.485000px;}
.y8d{bottom:629.385000px;}
.yce{bottom:639.105000px;}
.y3a{bottom:641.985000px;}
.ya1{bottom:650.265000px;}
.y58{bottom:654.045000px;}
.y8b{bottom:654.945000px;}
.y11{bottom:657.645000px;}
.y73{bottom:660.165000px;}
.ycd{bottom:664.485000px;}
.y39{bottom:667.545000px;}
.y10{bottom:683.205000px;}
.y71{bottom:686.445000px;}
.ycc{bottom:690.045000px;}
.y38{bottom:693.105000px;}
.ya0{bottom:693.825000px;}
.y57{bottom:697.605000px;}
.yf{bottom:708.765000px;}
.y6f{bottom:712.545000px;}
.ycb{bottom:715.605000px;}
.y37{bottom:718.485000px;}
.y9f{bottom:737.385000px;}
.y6d{bottom:738.825000px;}
.y56{bottom:740.985000px;}
.y36{bottom:744.045000px;}
.ye{bottom:760.605000px;}
.y9e{bottom:762.765000px;}
.y55{bottom:766.545000px;}
.y35{bottom:769.605000px;}
.yd{bottom:777.705000px;}
.yca{bottom:784.185000px;}
.y9d{bottom:788.325000px;}
.y54{bottom:792.105000px;}
.y34{bottom:794.985000px;}
.yc{bottom:803.265000px;}
.y53{bottom:817.485000px;}
.y33{bottom:820.545000px;}
.yc9{bottom:828.105000px;}
.y9c{bottom:831.885000px;}
.yb{bottom:837.105000px;}
.y52{bottom:843.045000px;}
.y32{bottom:846.105000px;}
.yc8{bottom:853.485000px;}
.y4f{bottom:864.150000px;}
.y89{bottom:866.850000px;}
.y9b{bottom:870.990000px;}
.y31{bottom:871.530000px;}
.ya{bottom:871.890000px;}
.yc7{bottom:879.090000px;}
.y30{bottom:897.090000px;}
.y9{bottom:897.450000px;}
.yc6{bottom:904.650000px;}
.y88{bottom:910.230000px;}
.y4e{bottom:912.030000px;}
.y2f{bottom:922.650000px;}
.yc5{bottom:930.030000px;}
.y4d{bottom:937.590000px;}
.y8{bottom:942.810000px;}
.y2e{bottom:948.030000px;}
.yc4{bottom:955.590000px;}
.y4c{bottom:963.150000px;}
.y2d{bottom:973.590000px;}
.y7{bottom:973.950000px;}
.yc3{bottom:981.150000px;}
.y2c{bottom:999.150000px;}
.y4b{bottom:1006.530000px;}
.y6{bottom:1021.470000px;}
.y2b{bottom:1024.530000px;}
.yc2{bottom:1032.090000px;}
.y2a{bottom:1050.090000px;}
.yc1{bottom:1057.650000px;}
.y5{bottom:1064.850000px;}
.y29{bottom:1075.650000px;}
.yc0{bottom:1083.030000px;}
.y4{bottom:1090.410000px;}
.y28{bottom:1101.030000px;}
.y3{bottom:1115.970000px;}
.ybf{bottom:1126.230000px;}
.y27{bottom:1126.590000px;}
.y2{bottom:1141.380000px;}
.y25{bottom:1152.180000px;}
.y1{bottom:1166.940000px;}
.y24{bottom:1177.560000px;}
.hb{height:25.380000px;}
.ha{height:25.560000px;}
.h13{height:26.393641px;}
.he{height:43.365000px;}
.h8{height:43.545000px;}
.h5{height:47.344922px;}
.hc{height:51.120000px;}
.h11{height:54.811583px;}
.h12{height:54.874404px;}
.h9{height:64.546875px;}
.h2{height:70.628906px;}
.h6{height:70.664062px;}
.h7{height:72.562500px;}
.h4{height:81.736875px;}
.h3{height:108.843750px;}
.hd{height:211.845000px;}
.hf{height:211.890000px;}
.h10{height:249.150393px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:48.240000px;}
.w4{width:145.296000px;}
.w5{width:193.335000px;}
.w7{width:377.520000px;}
.w6{width:377.563500px;}
.w8{width:455.399405px;}
.w2{width:706.858500px;}
.w1{width:893.250000px;}
.w0{width:893.520000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x7{left:22.140000px;}
.x1c{left:32.107683px;}
.x1a{left:38.927733px;}
.x19{left:50.106007px;}
.x18{left:55.953977px;}
.x1d{left:58.383531px;}
.xc{left:66.421500px;}
.x4{left:69.301500px;}
.x1{left:74.520000px;}
.x2{left:95.796000px;}
.x20{left:109.116000px;}
.x3{left:116.676000px;}
.xf{left:119.016000px;}
.x10{left:123.156000px;}
.x15{left:127.656000px;}
.x13{left:130.356000px;}
.xe{left:178.813500px;}
.x1b{left:226.231256px;}
.x14{left:227.370000px;}
.x17{left:231.899998px;}
.xb{left:265.035000px;}
.x11{left:285.555000px;}
.x8{left:298.335000px;}
.x5{left:311.293500px;}
.xd{left:330.583500px;}
.x1f{left:354.680054px;}
.x16{left:390.135000px;}
.x1e{left:411.604172px;}
.xa{left:444.360000px;}
.x12{left:637.710000px;}
.x6{left:776.160000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.800000pt;}
.v1{vertical-align:29.440000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.027050pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.960000pt;}
.ls9{letter-spacing:3.482240pt;}
.lse{letter-spacing:4.480000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls8{letter-spacing:16.570240pt;}
.ls7{letter-spacing:17.210240pt;}
.ws6{word-spacing:-64.000000pt;}
.ws9{word-spacing:-49.728000pt;}
.wsa{word-spacing:-49.408000pt;}
.ws8{word-spacing:-46.528000pt;}
.ws7{word-spacing:-24.443093pt;}
.ws5{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws10{word-spacing:-13.001420pt;}
.wsf{word-spacing:-12.986536pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:144.213700pt;}
.wsd{word-spacing:156.305483pt;}
._1c{margin-left:-6.144000pt;}
._1d{margin-left:-2.176000pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.928000pt;}
._13{width:2.560000pt;}
._b{width:3.616000pt;}
._c{width:4.821333pt;}
._8{width:5.824000pt;}
._14{width:6.890667pt;}
._18{width:7.989333pt;}
._f{width:9.152000pt;}
._10{width:10.048000pt;}
._6{width:11.072000pt;}
._5{width:12.298667pt;}
._e{width:13.301333pt;}
._7{width:14.208000pt;}
._1e{width:15.104000pt;}
._d{width:17.664000pt;}
._19{width:18.560000pt;}
._16{width:19.520000pt;}
._17{width:20.960000pt;}
._11{width:21.888000pt;}
._12{width:23.040000pt;}
._9{width:24.640000pt;}
._a{width:25.728000pt;}
._4{width:27.520000pt;}
._1a{width:28.416000pt;}
._1b{width:30.144000pt;}
._1{width:38.208000pt;}
._3{width:43.488000pt;}
._23{width:56.000000pt;}
._22{width:59.008000pt;}
._20{width:181.379749pt;}
._21{width:183.092158pt;}
._15{width:1062.368000pt;}
._1f{width:1619.626667pt;}
.fs6{font-size:22.494456pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs4{font-size:46.714159pt;}
.fs5{font-size:46.767699pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:0.320000pt;}
.yb8{bottom:3.468718pt;}
.y6e{bottom:3.680000pt;}
.y72{bottom:3.840000pt;}
.y70{bottom:4.000000pt;}
.y51{bottom:12.000000pt;}
.y50{bottom:13.760000pt;}
.yaf{bottom:15.570431pt;}
.y8a{bottom:19.840000pt;}
.yb0{bottom:23.786328pt;}
.yba{bottom:25.527392pt;}
.y75{bottom:26.720000pt;}
.y26{bottom:41.632000pt;}
.yb1{bottom:49.312573pt;}
.yb2{bottom:74.393524pt;}
.y87{bottom:88.032000pt;}
.yad{bottom:91.232000pt;}
.y23{bottom:91.872000pt;}
.y4a{bottom:92.032000pt;}
.y6c{bottom:96.032000pt;}
.yb3{bottom:99.919196pt;}
.yb9{bottom:102.939410pt;}
.yd5{bottom:105.312000pt;}
.y86{bottom:110.592000pt;}
.yac{bottom:113.792000pt;}
.y22{bottom:114.592000pt;}
.y6b{bottom:118.592000pt;}
.yb4{bottom:125.015047pt;}
.yd4{bottom:128.032000pt;}
.y85{bottom:133.312000pt;}
.y21{bottom:137.306667pt;}
.y6a{bottom:141.306667pt;}
.yab{bottom:148.666667pt;}
.yae{bottom:148.706667pt;}
.yb5{bottom:150.523527pt;}
.yd3{bottom:150.586667pt;}
.ybe{bottom:155.721503pt;}
.y84{bottom:156.026667pt;}
.y20{bottom:159.866667pt;}
.y49{bottom:160.026667pt;}
.ybd{bottom:170.856955pt;}
.yd2{bottom:173.306667pt;}
.yb6{bottom:175.619378pt;}
.y83{bottom:178.586667pt;}
.y69{bottom:180.026667pt;}
.y1f{bottom:182.586667pt;}
.ybc{bottom:185.992406pt;}
.yd1{bottom:196.026667pt;}
.yb7{bottom:200.698036pt;}
.y82{bottom:201.306667pt;}
.ybb{bottom:202.858606pt;}
.y9a{bottom:204.666667pt;}
.y48{bottom:205.306667pt;}
.y68{bottom:218.586667pt;}
.y1e{bottom:220.986667pt;}
.y81{bottom:224.026667pt;}
.y99{bottom:227.386667pt;}
.y47{bottom:228.026667pt;}
.y67{bottom:241.306667pt;}
.y80{bottom:246.586667pt;}
.y98{bottom:249.946667pt;}
.y46{bottom:250.586667pt;}
.y66{bottom:264.026667pt;}
.y97{bottom:272.666667pt;}
.y45{bottom:273.306667pt;}
.y1d{bottom:278.106667pt;}
.y7f{bottom:285.026667pt;}
.y65{bottom:286.626667pt;}
.y96{bottom:295.426667pt;}
.y44{bottom:296.066667pt;}
.y1c{bottom:301.026667pt;}
.y64{bottom:309.346667pt;}
.y95{bottom:317.986667pt;}
.y43{bottom:318.626667pt;}
.y7e{bottom:324.066667pt;}
.y63{bottom:332.066667pt;}
.y1b{bottom:339.586667pt;}
.y94{bottom:340.706667pt;}
.y42{bottom:341.346667pt;}
.y7d{bottom:346.626667pt;}
.y62{bottom:354.626667pt;}
.y1a{bottom:362.306667pt;}
.y93{bottom:363.426667pt;}
.y41{bottom:364.066667pt;}
.y7c{bottom:369.346667pt;}
.yaa{bottom:373.986667pt;}
.y61{bottom:377.346667pt;}
.y19{bottom:385.026667pt;}
.y7b{bottom:392.066667pt;}
.ya9{bottom:396.706667pt;}
.y60{bottom:400.066667pt;}
.y92{bottom:401.986667pt;}
.y40{bottom:402.626667pt;}
.y18{bottom:407.586667pt;}
.y7a{bottom:414.626667pt;}
.ya8{bottom:419.426667pt;}
.y5f{bottom:422.626667pt;}
.y17{bottom:430.306667pt;}
.y79{bottom:437.346667pt;}
.y91{bottom:440.706667pt;}
.y3f{bottom:441.026667pt;}
.ya7{bottom:441.986667pt;}
.y5e{bottom:445.346667pt;}
.y16{bottom:453.026667pt;}
.y78{bottom:460.066667pt;}
.ya6{bottom:464.706667pt;}
.y5d{bottom:468.066667pt;}
.y15{bottom:475.586667pt;}
.y90{bottom:479.426667pt;}
.y3e{bottom:480.066667pt;}
.ya5{bottom:487.426667pt;}
.y5c{bottom:490.626667pt;}
.y14{bottom:498.306667pt;}
.y77{bottom:498.626667pt;}
.y8f{bottom:501.986667pt;}
.y3d{bottom:502.626667pt;}
.yd0{bottom:506.306667pt;}
.ya4{bottom:509.986667pt;}
.y5b{bottom:513.346667pt;}
.y13{bottom:521.026667pt;}
.y76{bottom:521.346667pt;}
.y8e{bottom:524.733333pt;}
.y3c{bottom:525.373333pt;}
.ya3{bottom:532.733333pt;}
.y5a{bottom:536.093333pt;}
.y74{bottom:540.733333pt;}
.y12{bottom:543.613333pt;}
.ycf{bottom:545.373333pt;}
.y3b{bottom:548.093333pt;}
.ya2{bottom:555.453333pt;}
.y59{bottom:558.653333pt;}
.y8d{bottom:559.453333pt;}
.yce{bottom:568.093333pt;}
.y3a{bottom:570.653333pt;}
.ya1{bottom:578.013333pt;}
.y58{bottom:581.373333pt;}
.y8b{bottom:582.173333pt;}
.y11{bottom:584.573333pt;}
.y73{bottom:586.813333pt;}
.ycd{bottom:590.653333pt;}
.y39{bottom:593.373333pt;}
.y10{bottom:607.293333pt;}
.y71{bottom:610.173333pt;}
.ycc{bottom:613.373333pt;}
.y38{bottom:616.093333pt;}
.ya0{bottom:616.733333pt;}
.y57{bottom:620.093333pt;}
.yf{bottom:630.013333pt;}
.y6f{bottom:633.373333pt;}
.ycb{bottom:636.093333pt;}
.y37{bottom:638.653333pt;}
.y9f{bottom:655.453333pt;}
.y6d{bottom:656.733333pt;}
.y56{bottom:658.653333pt;}
.y36{bottom:661.373333pt;}
.ye{bottom:676.093333pt;}
.y9e{bottom:678.013333pt;}
.y55{bottom:681.373333pt;}
.y35{bottom:684.093333pt;}
.yd{bottom:691.293333pt;}
.yca{bottom:697.053333pt;}
.y9d{bottom:700.733333pt;}
.y54{bottom:704.093333pt;}
.y34{bottom:706.653333pt;}
.yc{bottom:714.013333pt;}
.y53{bottom:726.653333pt;}
.y33{bottom:729.373333pt;}
.yc9{bottom:736.093333pt;}
.y9c{bottom:739.453333pt;}
.yb{bottom:744.093333pt;}
.y52{bottom:749.373333pt;}
.y32{bottom:752.093333pt;}
.yc8{bottom:758.653333pt;}
.y4f{bottom:768.133333pt;}
.y89{bottom:770.533333pt;}
.y9b{bottom:774.213333pt;}
.y31{bottom:774.693333pt;}
.ya{bottom:775.013333pt;}
.yc7{bottom:781.413333pt;}
.y30{bottom:797.413333pt;}
.y9{bottom:797.733333pt;}
.yc6{bottom:804.133333pt;}
.y88{bottom:809.093333pt;}
.y4e{bottom:810.693333pt;}
.y2f{bottom:820.133333pt;}
.yc5{bottom:826.693333pt;}
.y4d{bottom:833.413333pt;}
.y8{bottom:838.053333pt;}
.y2e{bottom:842.693333pt;}
.yc4{bottom:849.413333pt;}
.y4c{bottom:856.133333pt;}
.y2d{bottom:865.413333pt;}
.y7{bottom:865.733333pt;}
.yc3{bottom:872.133333pt;}
.y2c{bottom:888.133333pt;}
.y4b{bottom:894.693333pt;}
.y6{bottom:907.973333pt;}
.y2b{bottom:910.693333pt;}
.yc2{bottom:917.413333pt;}
.y2a{bottom:933.413333pt;}
.yc1{bottom:940.133333pt;}
.y5{bottom:946.533333pt;}
.y29{bottom:956.133333pt;}
.yc0{bottom:962.693333pt;}
.y4{bottom:969.253333pt;}
.y28{bottom:978.693333pt;}
.y3{bottom:991.973333pt;}
.ybf{bottom:1001.093333pt;}
.y27{bottom:1001.413333pt;}
.y2{bottom:1014.560000pt;}
.y25{bottom:1024.160000pt;}
.y1{bottom:1037.280000pt;}
.y24{bottom:1046.720000pt;}
.hb{height:22.560000pt;}
.ha{height:22.720000pt;}
.h13{height:23.461015pt;}
.he{height:38.546667pt;}
.h8{height:38.706667pt;}
.h5{height:42.084375pt;}
.hc{height:45.440000pt;}
.h11{height:48.721408pt;}
.h12{height:48.777248pt;}
.h9{height:57.375000pt;}
.h2{height:62.781250pt;}
.h6{height:62.812500pt;}
.h7{height:64.500000pt;}
.h4{height:72.655000pt;}
.h3{height:96.750000pt;}
.hd{height:188.306667pt;}
.hf{height:188.346667pt;}
.h10{height:221.467016pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:42.880000pt;}
.w4{width:129.152000pt;}
.w5{width:171.853333pt;}
.w7{width:335.573333pt;}
.w6{width:335.612000pt;}
.w8{width:404.799471pt;}
.w2{width:628.318667pt;}
.w1{width:794.000000pt;}
.w0{width:794.240000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x7{left:19.680000pt;}
.x1c{left:28.540162pt;}
.x1a{left:34.602430pt;}
.x19{left:44.538672pt;}
.x18{left:49.736868pt;}
.x1d{left:51.896472pt;}
.xc{left:59.041333pt;}
.x4{left:61.601333pt;}
.x1{left:66.240000pt;}
.x2{left:85.152000pt;}
.x20{left:96.992000pt;}
.x3{left:103.712000pt;}
.xf{left:105.792000pt;}
.x10{left:109.472000pt;}
.x15{left:113.472000pt;}
.x13{left:115.872000pt;}
.xe{left:158.945333pt;}
.x1b{left:201.094450pt;}
.x14{left:202.106667pt;}
.x17{left:206.133332pt;}
.xb{left:235.586667pt;}
.x11{left:253.826667pt;}
.x8{left:265.186667pt;}
.x5{left:276.705333pt;}
.xd{left:293.852000pt;}
.x1f{left:315.271159pt;}
.x16{left:346.786667pt;}
.x1e{left:365.870375pt;}
.xa{left:394.986667pt;}
.x12{left:566.853333pt;}
.x6{left:689.920000pt;}
}




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