
    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_c1738eb7f418a558e00a46fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_86946d07973f1270b79dd693.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8c34a148a0bfb3b3bf5122f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b2f8e8fd030b4fbce6add9b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6d925f7f449c27462429724f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.106800px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:16.506720px;}
.lsb{letter-spacing:31.140000px;}
.ls4{letter-spacing:37.386720px;}
.ls3{letter-spacing:41.868000px;}
.lsc{letter-spacing:46.026720px;}
.lsa{letter-spacing:64.026720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws8{word-spacing:-54.000000px;}
.ws4{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.833200px;}
.wsa{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsd{word-spacing:0.000000px;}
._3{margin-left:-1.170720px;}
._0{width:1.135440px;}
._7{width:2.390400px;}
._8{width:3.645360px;}
._e{width:4.861440px;}
._9{width:5.949120px;}
._6{width:7.624800px;}
._5{width:8.665200px;}
._18{width:10.099440px;}
._1b{width:11.234880px;}
._b{width:12.669120px;}
._a{width:13.685040px;}
._1c{width:16.135200px;}
._d{width:17.241120px;}
._c{width:18.824400px;}
._26{width:19.908480px;}
._1e{width:20.975760px;}
._24{width:22.576320px;}
._1f{width:23.654160px;}
._12{width:25.110000px;}
._20{width:26.202240px;}
._11{width:27.594000px;}
._10{width:29.412720px;}
._f{width:30.456000px;}
._1a{width:31.911840px;}
._28{width:33.346080px;}
._19{width:35.557200px;}
._1d{width:37.230480px;}
._21{width:39.023280px;}
._25{width:40.875840px;}
._17{width:42.549120px;}
._22{width:44.461440px;}
._23{width:45.596880px;}
._27{width:50.652000px;}
._14{width:52.434000px;}
._13{width:54.000000px;}
._16{width:59.724000px;}
._15{width:61.074000px;}
._29{width:129.619440px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._4{width:1014.184320px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y39{bottom:2.880000px;}
.y18{bottom:3.240000px;}
.y31{bottom:6.120000px;}
.y4{bottom:8.316000px;}
.y9{bottom:14.040000px;}
.yf9{bottom:15.840000px;}
.y5{bottom:16.236000px;}
.yf2{bottom:16.380000px;}
.y38{bottom:18.540000px;}
.y2f{bottom:19.440000px;}
.yf8{bottom:28.800000px;}
.yf1{bottom:30.240000px;}
.y37{bottom:34.020000px;}
.y7{bottom:35.460000px;}
.y2e{bottom:35.820000px;}
.yf7{bottom:41.760000px;}
.yf0{bottom:43.965000px;}
.y36{bottom:49.500000px;}
.y2d{bottom:51.480000px;}
.yf6{bottom:54.720000px;}
.y3{bottom:58.140000px;}
.y35{bottom:64.980000px;}
.y2c{bottom:66.960000px;}
.yf5{bottom:67.500000px;}
.y34{bottom:80.640000px;}
.y2b{bottom:82.440000px;}
.y33{bottom:96.120000px;}
.y2a{bottom:97.950000px;}
.y3a{bottom:106.245000px;}
.y29{bottom:113.610000px;}
.ybf{bottom:114.156000px;}
.yed{bottom:121.716000px;}
.y40{bottom:127.476000px;}
.y28{bottom:129.090000px;}
.ybe{bottom:131.436000px;}
.yac{bottom:133.596000px;}
.yec{bottom:138.996000px;}
.y77{bottom:140.076000px;}
.y3f{bottom:143.316000px;}
.ybd{bottom:148.716000px;}
.yab{bottom:150.870000px;}
.yeb{bottom:156.270000px;}
.y76{bottom:157.350000px;}
.y3e{bottom:160.590000px;}
.ybc{bottom:165.990000px;}
.yaa{bottom:168.150000px;}
.y26{bottom:170.325000px;}
.yea{bottom:173.550000px;}
.y75{bottom:175.710000px;}
.y3d{bottom:177.870000px;}
.ybb{bottom:183.270000px;}
.ya9{bottom:185.430000px;}
.y25{bottom:187.605000px;}
.ye9{bottom:190.830000px;}
.y74{bottom:192.990000px;}
.y3c{bottom:195.150000px;}
.yba{bottom:200.550000px;}
.ya8{bottom:202.710000px;}
.y24{bottom:204.885000px;}
.ye8{bottom:207.930000px;}
.y73{bottom:210.090000px;}
.y3b{bottom:212.070000px;}
.yb9{bottom:218.730000px;}
.ya7{bottom:219.810000px;}
.y23{bottom:221.985000px;}
.ye7{bottom:225.210000px;}
.y19{bottom:225.390000px;}
.y72{bottom:227.370000px;}
.yb8{bottom:236.010000px;}
.ya6{bottom:237.090000px;}
.y22{bottom:239.265000px;}
.ye6{bottom:242.490000px;}
.y71{bottom:244.650000px;}
.yb7{bottom:253.290000px;}
.ya5{bottom:254.370000px;}
.y21{bottom:256.545000px;}
.ye5{bottom:259.770000px;}
.y70{bottom:261.930000px;}
.yb6{bottom:270.570000px;}
.ya4{bottom:271.650000px;}
.y20{bottom:273.825000px;}
.ye4{bottom:277.050000px;}
.y6f{bottom:279.210000px;}
.ya3{bottom:288.930000px;}
.y1f{bottom:291.105000px;}
.ye3{bottom:294.330000px;}
.y6e{bottom:296.490000px;}
.ya2{bottom:306.030000px;}
.y1e{bottom:308.385000px;}
.ye2{bottom:311.430000px;}
.y6d{bottom:313.590000px;}
.ya1{bottom:323.355000px;}
.y1d{bottom:325.485000px;}
.ye1{bottom:328.755000px;}
.y6c{bottom:330.915000px;}
.ya0{bottom:340.635000px;}
.y1c{bottom:342.795000px;}
.y32{bottom:344.955000px;}
.ye0{bottom:346.035000px;}
.y6b{bottom:348.195000px;}
.y9f{bottom:357.915000px;}
.yb5{bottom:358.995000px;}
.y1b{bottom:360.075000px;}
.ydf{bottom:363.315000px;}
.y6a{bottom:365.475000px;}
.y9e{bottom:376.275000px;}
.y1a{bottom:377.355000px;}
.yde{bottom:380.595000px;}
.y69{bottom:382.755000px;}
.y9d{bottom:393.555000px;}
.ydd{bottom:397.875000px;}
.y68{bottom:399.855000px;}
.y9c{bottom:410.655000px;}
.ydc{bottom:414.975000px;}
.y67{bottom:417.135000px;}
.y9b{bottom:427.935000px;}
.ydb{bottom:432.255000px;}
.y66{bottom:434.415000px;}
.y9a{bottom:445.215000px;}
.yda{bottom:449.535000px;}
.y65{bottom:451.695000px;}
.y30{bottom:454.395000px;}
.y99{bottom:463.575000px;}
.yd9{bottom:466.815000px;}
.y64{bottom:468.975000px;}
.y27{bottom:475.095000px;}
.y98{bottom:480.855000px;}
.yd8{bottom:484.095000px;}
.y63{bottom:486.255000px;}
.y97{bottom:498.135000px;}
.yd7{bottom:501.195000px;}
.y62{bottom:503.355000px;}
.y96{bottom:515.235000px;}
.yd6{bottom:518.475000px;}
.y61{bottom:520.635000px;}
.y95{bottom:533.595000px;}
.yd5{bottom:535.755000px;}
.y60{bottom:537.915000px;}
.y94{bottom:550.875000px;}
.yd4{bottom:553.035000px;}
.y5f{bottom:555.195000px;}
.y93{bottom:568.185000px;}
.yd3{bottom:570.345000px;}
.y5e{bottom:572.505000px;}
.y92{bottom:585.465000px;}
.yd2{bottom:587.625000px;}
.y5d{bottom:589.785000px;}
.y91{bottom:602.565000px;}
.yb4{bottom:603.645000px;}
.yd1{bottom:604.725000px;}
.y5c{bottom:606.885000px;}
.y17{bottom:617.505000px;}
.y90{bottom:619.845000px;}
.yb3{bottom:620.925000px;}
.yd0{bottom:622.005000px;}
.y5b{bottom:624.165000px;}
.y8f{bottom:638.205000px;}
.ycf{bottom:639.285000px;}
.y5a{bottom:641.445000px;}
.y16{bottom:652.065000px;}
.y8e{bottom:655.485000px;}
.yce{bottom:656.565000px;}
.y59{bottom:658.725000px;}
.y15{bottom:671.865000px;}
.y8d{bottom:672.765000px;}
.ycd{bottom:673.845000px;}
.y58{bottom:676.005000px;}
.yf4{bottom:685.005000px;}
.y8c{bottom:690.045000px;}
.ycc{bottom:691.125000px;}
.y57{bottom:693.285000px;}
.y14{bottom:705.525000px;}
.y8b{bottom:707.145000px;}
.ycb{bottom:708.225000px;}
.y56{bottom:710.385000px;}
.y13{bottom:722.805000px;}
.y8a{bottom:724.425000px;}
.yca{bottom:725.505000px;}
.y55{bottom:727.665000px;}
.y12{bottom:740.085000px;}
.y89{bottom:741.705000px;}
.yc9{bottom:742.785000px;}
.y54{bottom:744.945000px;}
.y11{bottom:757.365000px;}
.y88{bottom:758.985000px;}
.yc8{bottom:760.065000px;}
.y53{bottom:762.225000px;}
.yf3{bottom:763.665000px;}
.y10{bottom:774.645000px;}
.y87{bottom:776.265000px;}
.yc7{bottom:777.345000px;}
.yef{bottom:778.245000px;}
.y52{bottom:779.505000px;}
.yf{bottom:787.065000px;}
.y86{bottom:793.545000px;}
.yc6{bottom:794.625000px;}
.y51{bottom:796.605000px;}
.ye{bottom:808.125000px;}
.y85{bottom:810.645000px;}
.yc5{bottom:811.725000px;}
.y50{bottom:813.885000px;}
.y84{bottom:827.970000px;}
.yc4{bottom:829.050000px;}
.y4f{bottom:831.210000px;}
.yee{bottom:834.270000px;}
.yd{bottom:839.310000px;}
.y83{bottom:845.250000px;}
.yc3{bottom:846.330000px;}
.y4e{bottom:848.490000px;}
.y82{bottom:862.530000px;}
.yc2{bottom:863.610000px;}
.y4d{bottom:865.770000px;}
.yc{bottom:870.270000px;}
.yb2{bottom:879.810000px;}
.y81{bottom:880.890000px;}
.y4c{bottom:883.050000px;}
.yb1{bottom:896.910000px;}
.y80{bottom:897.990000px;}
.y4b{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.yb0{bottom:914.190000px;}
.y7f{bottom:915.270000px;}
.y4a{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.yaf{bottom:931.470000px;}
.y7e{bottom:932.550000px;}
.y49{bottom:934.710000px;}
.y8{bottom:945.510000px;}
.y7d{bottom:949.830000px;}
.y48{bottom:951.990000px;}
.yae{bottom:967.110000px;}
.y7c{bottom:968.190000px;}
.y47{bottom:969.270000px;}
.yad{bottom:984.390000px;}
.y7b{bottom:985.470000px;}
.y46{bottom:986.550000px;}
.yc1{bottom:1001.490000px;}
.y7a{bottom:1002.570000px;}
.y45{bottom:1003.650000px;}
.y79{bottom:1019.850000px;}
.y44{bottom:1020.930000px;}
.y78{bottom:1037.130000px;}
.y43{bottom:1038.210000px;}
.yc0{bottom:1054.410000px;}
.y42{bottom:1055.490000px;}
.y41{bottom:1072.800000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1b{height:13.860000px;}
.hf{height:17.280000px;}
.h14{height:19.980000px;}
.hc{height:27.147656px;}
.h3{height:27.576000px;}
.h20{height:31.672266px;}
.h1f{height:32.004492px;}
.h5{height:33.683203px;}
.h1c{height:34.036523px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h6{height:39.336328px;}
.h12{height:39.999023px;}
.h4{height:41.726953px;}
.he{height:42.164648px;}
.h19{height:43.506914px;}
.h13{height:44.265586px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h1a{height:49.255313px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.hb{height:53.224453px;}
.h1d{height:55.296000px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.h1e{height:77.940000px;}
.h15{height:108.720000px;}
.h18{height:118.836000px;}
.h11{height:141.696000px;}
.h7{height:153.930000px;}
.h10{height:391.395000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w8{width:64.476000px;}
.w6{width:220.170000px;}
.w9{width:324.930000px;}
.w7{width:390.135000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:6.480000px;}
.x3{left:8.460000px;}
.x14{left:19.980000px;}
.x18{left:27.360000px;}
.x16{left:34.065000px;}
.x17{left:35.865000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x1{left:60.659986px;}
.x9{left:61.739986px;}
.x1f{left:62.856000px;}
.x19{left:65.519986px;}
.xc{left:74.339986px;}
.x1a{left:88.199986px;}
.x4{left:100.836000px;}
.x5{left:108.035986px;}
.x1e{left:112.170000px;}
.x20{left:125.136000px;}
.xe{left:135.215986px;}
.xa{left:138.995986px;}
.xf{left:223.769986px;}
.x11{left:249.149986px;}
.x10{left:254.009986px;}
.xd{left:269.309986px;}
.x8{left:459.074986px;}
.xb{left:464.294986px;}
.x12{left:465.374986px;}
.x1d{left:478.334986px;}
.x1c{left:479.804986px;}
.x1b{left:506.804986px;}
.x13{left:642.345000px;}
.x7{left:812.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:14.672640pt;}
.lsb{letter-spacing:27.680000pt;}
.ls4{letter-spacing:33.232640pt;}
.ls3{letter-spacing:37.216000pt;}
.lsc{letter-spacing:40.912640pt;}
.lsa{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws4{word-spacing:-14.448533pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.185067pt;}
.wsa{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsd{word-spacing:0.000000pt;}
._3{margin-left:-1.040640pt;}
._0{width:1.009280pt;}
._7{width:2.124800pt;}
._8{width:3.240320pt;}
._e{width:4.321280pt;}
._9{width:5.288107pt;}
._6{width:6.777600pt;}
._5{width:7.702400pt;}
._18{width:8.977280pt;}
._1b{width:9.986560pt;}
._b{width:11.261440pt;}
._a{width:12.164480pt;}
._1c{width:14.342400pt;}
._d{width:15.325440pt;}
._c{width:16.732800pt;}
._26{width:17.696427pt;}
._1e{width:18.645120pt;}
._24{width:20.067840pt;}
._1f{width:21.025920pt;}
._12{width:22.320000pt;}
._20{width:23.290880pt;}
._11{width:24.528000pt;}
._10{width:26.144640pt;}
._f{width:27.072000pt;}
._1a{width:28.366080pt;}
._28{width:29.640960pt;}
._19{width:31.606400pt;}
._1d{width:33.093760pt;}
._21{width:34.687360pt;}
._25{width:36.334080pt;}
._17{width:37.821440pt;}
._22{width:39.521280pt;}
._23{width:40.530560pt;}
._27{width:45.024000pt;}
._14{width:46.608000pt;}
._13{width:48.000000pt;}
._16{width:53.088000pt;}
._15{width:54.288000pt;}
._29{width:115.217280pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._4{width:901.497173pt;}
.fs3{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y39{bottom:2.560000pt;}
.y18{bottom:2.880000pt;}
.y31{bottom:5.440000pt;}
.y4{bottom:7.392000pt;}
.y9{bottom:12.480000pt;}
.yf9{bottom:14.080000pt;}
.y5{bottom:14.432000pt;}
.yf2{bottom:14.560000pt;}
.y38{bottom:16.480000pt;}
.y2f{bottom:17.280000pt;}
.yf8{bottom:25.600000pt;}
.yf1{bottom:26.880000pt;}
.y37{bottom:30.240000pt;}
.y7{bottom:31.520000pt;}
.y2e{bottom:31.840000pt;}
.yf7{bottom:37.120000pt;}
.yf0{bottom:39.080000pt;}
.y36{bottom:44.000000pt;}
.y2d{bottom:45.760000pt;}
.yf6{bottom:48.640000pt;}
.y3{bottom:51.680000pt;}
.y35{bottom:57.760000pt;}
.y2c{bottom:59.520000pt;}
.yf5{bottom:60.000000pt;}
.y34{bottom:71.680000pt;}
.y2b{bottom:73.280000pt;}
.y33{bottom:85.440000pt;}
.y2a{bottom:87.066667pt;}
.y3a{bottom:94.440000pt;}
.y29{bottom:100.986667pt;}
.ybf{bottom:101.472000pt;}
.yed{bottom:108.192000pt;}
.y40{bottom:113.312000pt;}
.y28{bottom:114.746667pt;}
.ybe{bottom:116.832000pt;}
.yac{bottom:118.752000pt;}
.yec{bottom:123.552000pt;}
.y77{bottom:124.512000pt;}
.y3f{bottom:127.392000pt;}
.ybd{bottom:132.192000pt;}
.yab{bottom:134.106667pt;}
.yeb{bottom:138.906667pt;}
.y76{bottom:139.866667pt;}
.y3e{bottom:142.746667pt;}
.ybc{bottom:147.546667pt;}
.yaa{bottom:149.466667pt;}
.y26{bottom:151.400000pt;}
.yea{bottom:154.266667pt;}
.y75{bottom:156.186667pt;}
.y3d{bottom:158.106667pt;}
.ybb{bottom:162.906667pt;}
.ya9{bottom:164.826667pt;}
.y25{bottom:166.760000pt;}
.ye9{bottom:169.626667pt;}
.y74{bottom:171.546667pt;}
.y3c{bottom:173.466667pt;}
.yba{bottom:178.266667pt;}
.ya8{bottom:180.186667pt;}
.y24{bottom:182.120000pt;}
.ye8{bottom:184.826667pt;}
.y73{bottom:186.746667pt;}
.y3b{bottom:188.506667pt;}
.yb9{bottom:194.426667pt;}
.ya7{bottom:195.386667pt;}
.y23{bottom:197.320000pt;}
.ye7{bottom:200.186667pt;}
.y19{bottom:200.346667pt;}
.y72{bottom:202.106667pt;}
.yb8{bottom:209.786667pt;}
.ya6{bottom:210.746667pt;}
.y22{bottom:212.680000pt;}
.ye6{bottom:215.546667pt;}
.y71{bottom:217.466667pt;}
.yb7{bottom:225.146667pt;}
.ya5{bottom:226.106667pt;}
.y21{bottom:228.040000pt;}
.ye5{bottom:230.906667pt;}
.y70{bottom:232.826667pt;}
.yb6{bottom:240.506667pt;}
.ya4{bottom:241.466667pt;}
.y20{bottom:243.400000pt;}
.ye4{bottom:246.266667pt;}
.y6f{bottom:248.186667pt;}
.ya3{bottom:256.826667pt;}
.y1f{bottom:258.760000pt;}
.ye3{bottom:261.626667pt;}
.y6e{bottom:263.546667pt;}
.ya2{bottom:272.026667pt;}
.y1e{bottom:274.120000pt;}
.ye2{bottom:276.826667pt;}
.y6d{bottom:278.746667pt;}
.ya1{bottom:287.426667pt;}
.y1d{bottom:289.320000pt;}
.ye1{bottom:292.226667pt;}
.y6c{bottom:294.146667pt;}
.ya0{bottom:302.786667pt;}
.y1c{bottom:304.706667pt;}
.y32{bottom:306.626667pt;}
.ye0{bottom:307.586667pt;}
.y6b{bottom:309.506667pt;}
.y9f{bottom:318.146667pt;}
.yb5{bottom:319.106667pt;}
.y1b{bottom:320.066667pt;}
.ydf{bottom:322.946667pt;}
.y6a{bottom:324.866667pt;}
.y9e{bottom:334.466667pt;}
.y1a{bottom:335.426667pt;}
.yde{bottom:338.306667pt;}
.y69{bottom:340.226667pt;}
.y9d{bottom:349.826667pt;}
.ydd{bottom:353.666667pt;}
.y68{bottom:355.426667pt;}
.y9c{bottom:365.026667pt;}
.ydc{bottom:368.866667pt;}
.y67{bottom:370.786667pt;}
.y9b{bottom:380.386667pt;}
.ydb{bottom:384.226667pt;}
.y66{bottom:386.146667pt;}
.y9a{bottom:395.746667pt;}
.yda{bottom:399.586667pt;}
.y65{bottom:401.506667pt;}
.y30{bottom:403.906667pt;}
.y99{bottom:412.066667pt;}
.yd9{bottom:414.946667pt;}
.y64{bottom:416.866667pt;}
.y27{bottom:422.306667pt;}
.y98{bottom:427.426667pt;}
.yd8{bottom:430.306667pt;}
.y63{bottom:432.226667pt;}
.y97{bottom:442.786667pt;}
.yd7{bottom:445.506667pt;}
.y62{bottom:447.426667pt;}
.y96{bottom:457.986667pt;}
.yd6{bottom:460.866667pt;}
.y61{bottom:462.786667pt;}
.y95{bottom:474.306667pt;}
.yd5{bottom:476.226667pt;}
.y60{bottom:478.146667pt;}
.y94{bottom:489.666667pt;}
.yd4{bottom:491.586667pt;}
.y5f{bottom:493.506667pt;}
.y93{bottom:505.053333pt;}
.yd3{bottom:506.973333pt;}
.y5e{bottom:508.893333pt;}
.y92{bottom:520.413333pt;}
.yd2{bottom:522.333333pt;}
.y5d{bottom:524.253333pt;}
.y91{bottom:535.613333pt;}
.yb4{bottom:536.573333pt;}
.yd1{bottom:537.533333pt;}
.y5c{bottom:539.453333pt;}
.y17{bottom:548.893333pt;}
.y90{bottom:550.973333pt;}
.yb3{bottom:551.933333pt;}
.yd0{bottom:552.893333pt;}
.y5b{bottom:554.813333pt;}
.y8f{bottom:567.293333pt;}
.ycf{bottom:568.253333pt;}
.y5a{bottom:570.173333pt;}
.y16{bottom:579.613333pt;}
.y8e{bottom:582.653333pt;}
.yce{bottom:583.613333pt;}
.y59{bottom:585.533333pt;}
.y15{bottom:597.213333pt;}
.y8d{bottom:598.013333pt;}
.ycd{bottom:598.973333pt;}
.y58{bottom:600.893333pt;}
.yf4{bottom:608.893333pt;}
.y8c{bottom:613.373333pt;}
.ycc{bottom:614.333333pt;}
.y57{bottom:616.253333pt;}
.y14{bottom:627.133333pt;}
.y8b{bottom:628.573333pt;}
.ycb{bottom:629.533333pt;}
.y56{bottom:631.453333pt;}
.y13{bottom:642.493333pt;}
.y8a{bottom:643.933333pt;}
.yca{bottom:644.893333pt;}
.y55{bottom:646.813333pt;}
.y12{bottom:657.853333pt;}
.y89{bottom:659.293333pt;}
.yc9{bottom:660.253333pt;}
.y54{bottom:662.173333pt;}
.y11{bottom:673.213333pt;}
.y88{bottom:674.653333pt;}
.yc8{bottom:675.613333pt;}
.y53{bottom:677.533333pt;}
.yf3{bottom:678.813333pt;}
.y10{bottom:688.573333pt;}
.y87{bottom:690.013333pt;}
.yc7{bottom:690.973333pt;}
.yef{bottom:691.773333pt;}
.y52{bottom:692.893333pt;}
.yf{bottom:699.613333pt;}
.y86{bottom:705.373333pt;}
.yc6{bottom:706.333333pt;}
.y51{bottom:708.093333pt;}
.ye{bottom:718.333333pt;}
.y85{bottom:720.573333pt;}
.yc5{bottom:721.533333pt;}
.y50{bottom:723.453333pt;}
.y84{bottom:735.973333pt;}
.yc4{bottom:736.933333pt;}
.y4f{bottom:738.853333pt;}
.yee{bottom:741.573333pt;}
.yd{bottom:746.053333pt;}
.y83{bottom:751.333333pt;}
.yc3{bottom:752.293333pt;}
.y4e{bottom:754.213333pt;}
.y82{bottom:766.693333pt;}
.yc2{bottom:767.653333pt;}
.y4d{bottom:769.573333pt;}
.yc{bottom:773.573333pt;}
.yb2{bottom:782.053333pt;}
.y81{bottom:783.013333pt;}
.y4c{bottom:784.933333pt;}
.yb1{bottom:797.253333pt;}
.y80{bottom:798.213333pt;}
.y4b{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.yb0{bottom:812.613333pt;}
.y7f{bottom:813.573333pt;}
.y4a{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.yaf{bottom:827.973333pt;}
.y7e{bottom:828.933333pt;}
.y49{bottom:830.853333pt;}
.y8{bottom:840.453333pt;}
.y7d{bottom:844.293333pt;}
.y48{bottom:846.213333pt;}
.yae{bottom:859.653333pt;}
.y7c{bottom:860.613333pt;}
.y47{bottom:861.573333pt;}
.yad{bottom:875.013333pt;}
.y7b{bottom:875.973333pt;}
.y46{bottom:876.933333pt;}
.yc1{bottom:890.213333pt;}
.y7a{bottom:891.173333pt;}
.y45{bottom:892.133333pt;}
.y79{bottom:906.533333pt;}
.y44{bottom:907.493333pt;}
.y78{bottom:921.893333pt;}
.y43{bottom:922.853333pt;}
.yc0{bottom:937.253333pt;}
.y42{bottom:938.213333pt;}
.y41{bottom:953.600000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1b{height:12.320000pt;}
.hf{height:15.360000pt;}
.h14{height:17.760000pt;}
.hc{height:24.131250pt;}
.h3{height:24.512000pt;}
.h20{height:28.153125pt;}
.h1f{height:28.448437pt;}
.h5{height:29.940625pt;}
.h1c{height:30.254687pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h6{height:34.965625pt;}
.h12{height:35.554688pt;}
.h4{height:37.090625pt;}
.he{height:37.479688pt;}
.h19{height:38.672812pt;}
.h13{height:39.347188pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h1a{height:43.782500pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.hb{height:47.310625pt;}
.h1d{height:49.152000pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.h1e{height:69.280000pt;}
.h15{height:96.640000pt;}
.h18{height:105.632000pt;}
.h11{height:125.952000pt;}
.h7{height:136.826667pt;}
.h10{height:347.906667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w8{width:57.312000pt;}
.w6{width:195.706667pt;}
.w9{width:288.826667pt;}
.w7{width:346.786667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:5.760000pt;}
.x3{left:7.520000pt;}
.x14{left:17.760000pt;}
.x18{left:24.320000pt;}
.x16{left:30.280000pt;}
.x17{left:31.880000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x1{left:53.919988pt;}
.x9{left:54.879988pt;}
.x1f{left:55.872000pt;}
.x19{left:58.239988pt;}
.xc{left:66.079988pt;}
.x1a{left:78.399988pt;}
.x4{left:89.632000pt;}
.x5{left:96.031988pt;}
.x1e{left:99.706667pt;}
.x20{left:111.232000pt;}
.xe{left:120.191988pt;}
.xa{left:123.551988pt;}
.xf{left:198.906655pt;}
.x11{left:221.466655pt;}
.x10{left:225.786655pt;}
.xd{left:239.386655pt;}
.x8{left:408.066655pt;}
.xb{left:412.706655pt;}
.x12{left:413.666655pt;}
.x1d{left:425.186655pt;}
.x1c{left:426.493321pt;}
.x1b{left:450.493321pt;}
.x13{left:570.973333pt;}
.x7{left:722.213333pt;}
}




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