
    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_d35c901faa977c91d2c85298.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8c3adf1a3b4d00035192e09e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e90765b22d2b40090a378986.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_e8007dff5235715339f73433.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968262;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_d596e0a3d2f91be4e545dde6.woff2')format("woff");}.ff5{font-family:ff5;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: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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.720000px;}
.ls8{letter-spacing:5.040000px;}
.ls12{letter-spacing:6.480000px;}
.ls11{letter-spacing:7.200000px;}
.lsd{letter-spacing:10.080000px;}
.ls7{letter-spacing:12.960000px;}
.lse{letter-spacing:14.400000px;}
.ls3{letter-spacing:18.000000px;}
.ls6{letter-spacing:19.440000px;}
.lsa{letter-spacing:33.984000px;}
.ls9{letter-spacing:64.026720px;}
.ls0{letter-spacing:197.436000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-59.760000px;}
.ws5{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.784000px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-18.360000px;}
._28{margin-left:-13.884000px;}
._32{margin-left:-7.183680px;}
._26{margin-left:-5.640000px;}
._5{margin-left:-1.347840px;}
._3{width:1.044000px;}
._10{width:2.605920px;}
._4{width:3.757920px;}
._6{width:4.868160px;}
._11{width:6.459840px;}
._2{width:7.992000px;}
._1a{width:9.576000px;}
._1b{width:10.584000px;}
._18{width:12.312000px;}
._17{width:13.392000px;}
._12{width:14.832000px;}
._f{width:16.287840px;}
._9{width:19.839840px;}
._1c{width:21.168000px;}
._19{width:22.752000px;}
._7{width:23.832000px;}
._8{width:24.984000px;}
._16{width:26.784000px;}
._13{width:27.864000px;}
._14{width:29.211840px;}
._1f{width:30.300480px;}
._23{width:31.392000px;}
._b{width:32.544000px;}
._c{width:33.840000px;}
._15{width:34.920000px;}
._27{width:36.123840px;}
._21{width:37.327680px;}
._20{width:38.592000px;}
._1d{width:39.600000px;}
._1e{width:41.040000px;}
._d{width:42.408000px;}
._e{width:43.704000px;}
._22{width:44.856000px;}
._30{width:50.256000px;}
._31{width:51.552000px;}
._2e{width:58.824000px;}
._24{width:63.000000px;}
._2f{width:68.040000px;}
._1{width:86.400000px;}
._25{width:95.655840px;}
._2d{width:105.336000px;}
._29{width:149.688000px;}
._2c{width:173.376000px;}
._0{width:179.124000px;}
._2a{width:182.232000px;}
._33{width:185.736000px;}
._2b{width:198.411840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:3.780000px;}
.y45{bottom:3.960000px;}
.y91{bottom:4.140000px;}
.y8e{bottom:5.220000px;}
.y55{bottom:14.040000px;}
.y4b{bottom:14.220000px;}
.y51{bottom:15.660000px;}
.y58{bottom:15.840000px;}
.y4e{bottom:16.014000px;}
.y48{bottom:18.720000px;}
.ya3{bottom:19.260000px;}
.ycb{bottom:22.680000px;}
.y71{bottom:24.654000px;}
.y62{bottom:24.660000px;}
.y8c{bottom:24.840000px;}
.y54{bottom:34.740000px;}
.y4a{bottom:34.920000px;}
.y50{bottom:36.360000px;}
.y57{bottom:36.540000px;}
.y4d{bottom:36.714000px;}
.y47{bottom:39.465000px;}
.yca{bottom:41.760000px;}
.y77{bottom:45.180000px;}
.y70{bottom:45.354000px;}
.y68{bottom:45.360000px;}
.y76{bottom:65.880000px;}
.y6f{bottom:66.054000px;}
.y67{bottom:66.060000px;}
.yd2{bottom:66.090000px;}
.y5{bottom:76.176000px;}
.y75{bottom:86.580000px;}
.y6e{bottom:86.754000px;}
.y66{bottom:86.760000px;}
.yd1{bottom:86.790000px;}
.yce{bottom:86.805000px;}
.y4{bottom:96.156000px;}
.y74{bottom:107.280000px;}
.y6d{bottom:107.454000px;}
.y65{bottom:107.460000px;}
.y6c{bottom:128.154000px;}
.y64{bottom:128.190000px;}
.y26{bottom:130.716000px;}
.y25{bottom:135.936000px;}
.y6a{bottom:143.856000px;}
.y4c{bottom:146.016000px;}
.y24{bottom:147.996000px;}
.yc7{bottom:148.536000px;}
.y6b{bottom:148.899000px;}
.y96{bottom:150.690000px;}
.y23{bottom:153.210000px;}
.ya1{bottom:155.910000px;}
.y43{bottom:158.970000px;}
.yde{bottom:160.410000px;}
.y22{bottom:165.090000px;}
.y21{bottom:170.310000px;}
.y95{bottom:171.390000px;}
.yc6{bottom:179.670000px;}
.y20{bottom:182.370000px;}
.ya0{bottom:187.050000px;}
.y1f{bottom:187.590000px;}
.y42{bottom:189.930000px;}
.ydd{bottom:191.370000px;}
.y94{bottom:192.090000px;}
.y49{bottom:200.190000px;}
.y1e{bottom:200.370000px;}
.yc5{bottom:210.630000px;}
.y93{bottom:212.790000px;}
.y9f{bottom:218.010000px;}
.y41{bottom:221.070000px;}
.ydc{bottom:222.510000px;}
.y1d{bottom:229.170000px;}
.y92{bottom:230.250000px;}
.yc4{bottom:241.770000px;}
.y9e{bottom:248.970000px;}
.y90{bottom:251.670000px;}
.y40{bottom:252.030000px;}
.y46{bottom:252.570000px;}
.ydb{bottom:253.470000px;}
.y1c{bottom:260.130000px;}
.y9d{bottom:269.670000px;}
.yc3{bottom:272.730000px;}
.y8f{bottom:273.270000px;}
.y3f{bottom:283.170000px;}
.yda{bottom:284.610000px;}
.y9c{bottom:290.415000px;}
.y1b{bottom:291.315000px;}
.y8d{bottom:294.735000px;}
.yc2{bottom:303.915000px;}
.y44{bottom:309.495000px;}
.y69{bottom:310.215000px;}
.y9b{bottom:311.115000px;}
.y3e{bottom:314.175000px;}
.yd9{bottom:315.615000px;}
.y8b{bottom:317.415000px;}
.y1a{bottom:322.275000px;}
.y9a{bottom:328.755000px;}
.yc1{bottom:334.875000px;}
.y3d{bottom:345.315000px;}
.yd8{bottom:346.755000px;}
.y99{bottom:350.175000px;}
.y19{bottom:353.415000px;}
.yc0{bottom:366.015000px;}
.y98{bottom:371.595000px;}
.y8a{bottom:374.115000px;}
.y3c{bottom:376.275000px;}
.yd7{bottom:377.715000px;}
.y18{bottom:384.375000px;}
.ybf{bottom:396.975000px;}
.y89{bottom:405.075000px;}
.y3b{bottom:407.415000px;}
.yd6{bottom:408.675000px;}
.y17{bottom:415.515000px;}
.y97{bottom:417.675000px;}
.ybe{bottom:428.115000px;}
.y63{bottom:435.135000px;}
.y88{bottom:436.215000px;}
.y3a{bottom:438.375000px;}
.yd5{bottom:439.815000px;}
.y16{bottom:446.475000px;}
.ybd{bottom:459.075000px;}
.yd4{bottom:460.515000px;}
.y87{bottom:467.175000px;}
.y39{bottom:469.515000px;}
.y15{bottom:477.615000px;}
.yd3{bottom:481.215000px;}
.ybc{bottom:490.215000px;}
.y86{bottom:498.315000px;}
.yd0{bottom:498.675000px;}
.y38{bottom:500.475000px;}
.y14{bottom:508.575000px;}
.ybb{bottom:521.175000px;}
.y85{bottom:529.275000px;}
.yab{bottom:531.435000px;}
.y37{bottom:531.615000px;}
.y13{bottom:539.535000px;}
.yba{bottom:552.345000px;}
.y84{bottom:560.445000px;}
.y36{bottom:562.605000px;}
.y12{bottom:570.705000px;}
.y61{bottom:580.785000px;}
.yb9{bottom:583.305000px;}
.y83{bottom:591.405000px;}
.y35{bottom:593.565000px;}
.ycf{bottom:602.925000px;}
.y11{bottom:610.665000px;}
.yb8{bottom:614.265000px;}
.y82{bottom:622.365000px;}
.y34{bottom:624.705000px;}
.y60{bottom:637.305000px;}
.yb7{bottom:645.405000px;}
.y10{bottom:650.805000px;}
.y81{bottom:653.505000px;}
.y33{bottom:655.665000px;}
.y5f{bottom:668.265000px;}
.yb6{bottom:676.365000px;}
.y80{bottom:684.465000px;}
.y32{bottom:686.805000px;}
.yf{bottom:690.765000px;}
.y5e{bottom:699.405000px;}
.yaa{bottom:707.505000px;}
.y7f{bottom:715.605000px;}
.y31{bottom:717.765000px;}
.ycd{bottom:727.845000px;}
.ya9{bottom:728.205000px;}
.y5d{bottom:730.365000px;}
.ye{bottom:730.905000px;}
.yb5{bottom:738.465000px;}
.ya8{bottom:745.665000px;}
.y7e{bottom:746.565000px;}
.y30{bottom:748.905000px;}
.y5c{bottom:751.065000px;}
.ya7{bottom:767.085000px;}
.yb4{bottom:769.605000px;}
.yd{bottom:770.865000px;}
.y5b{bottom:771.765000px;}
.y7d{bottom:777.705000px;}
.y2f{bottom:779.865000px;}
.ya6{bottom:788.505000px;}
.y5a{bottom:792.465000px;}
.yb3{bottom:800.565000px;}
.y7c{bottom:808.710000px;}
.y59{bottom:809.970000px;}
.ya5{bottom:810.150000px;}
.yc{bottom:811.050000px;}
.ya4{bottom:831.750000px;}
.yc9{bottom:832.110000px;}
.y7b{bottom:839.850000px;}
.y2e{bottom:842.010000px;}
.yb{bottom:844.350000px;}
.ya2{bottom:853.170000px;}
.yb2{bottom:862.710000px;}
.y56{bottom:863.790000px;}
.y7a{bottom:870.810000px;}
.y2d{bottom:873.150000px;}
.ya{bottom:880.530000px;}
.y79{bottom:891.510000px;}
.yb1{bottom:893.850000px;}
.y2c{bottom:904.110000px;}
.y78{bottom:912.210000px;}
.yc8{bottom:914.550000px;}
.y9{bottom:916.890000px;}
.y53{bottom:917.790000px;}
.yb0{bottom:924.810000px;}
.y73{bottom:929.850000px;}
.y2b{bottom:935.250000px;}
.yaf{bottom:955.950000px;}
.y8{bottom:957.570000px;}
.y2a{bottom:966.210000px;}
.y52{bottom:969.990000px;}
.yae{bottom:986.910000px;}
.y29{bottom:997.350000px;}
.y7{bottom:1004.190000px;}
.yad{bottom:1018.050000px;}
.y4f{bottom:1022.370000px;}
.y28{bottom:1028.310000px;}
.yac{bottom:1038.750000px;}
.y6{bottom:1050.810000px;}
.y72{bottom:1054.770000px;}
.y27{bottom:1059.450000px;}
.y3{bottom:1080.180000px;}
.y2{bottom:1100.160000px;}
.y1{bottom:1118.160000px;}
.h9{height:20.700000px;}
.h15{height:20.736000px;}
.h19{height:20.880000px;}
.h18{height:21.960000px;}
.h7{height:34.855313px;}
.h1a{height:36.000000px;}
.h11{height:41.400000px;}
.h17{height:41.580000px;}
.h3{height:49.255313px;}
.he{height:51.480000px;}
.hb{height:51.660000px;}
.h10{height:53.100000px;}
.hd{height:53.136000px;}
.hf{height:53.280000px;}
.hc{height:53.460000px;}
.h8{height:53.573906px;}
.ha{height:56.196000px;}
.h1b{height:57.060000px;}
.h1c{height:58.833281px;}
.h1{height:59.343750px;}
.h5{height:60.835430px;}
.h6{height:63.949219px;}
.h2{height:64.546875px;}
.h4{height:95.923828px;}
.h1d{height:103.536000px;}
.h16{height:124.020000px;}
.h13{height:124.200000px;}
.h12{height:144.936000px;}
.h14{height:165.630000px;}
.h0{height:1188.000000px;}
.w11{width:73.800000px;}
.wa{width:99.180000px;}
.we{width:102.600000px;}
.w14{width:110.160000px;}
.w15{width:113.436000px;}
.w3{width:113.760000px;}
.wc{width:134.676000px;}
.w8{width:135.756000px;}
.w6{width:145.836000px;}
.w5{width:151.020000px;}
.w17{width:156.420000px;}
.w16{width:160.770000px;}
.wf{width:161.310000px;}
.w13{width:170.670000px;}
.wb{width:176.970000px;}
.w12{width:197.310000px;}
.wd{width:219.990000px;}
.w10{width:241.230000px;}
.w7{width:243.390000px;}
.w9{width:263.370000px;}
.w4{width:554.145000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x24{left:9.210000px;}
.x31{left:12.240000px;}
.x3e{left:17.460000px;}
.x33{left:19.440000px;}
.x2c{left:20.880000px;}
.x41{left:21.960000px;}
.x3f{left:23.580000px;}
.x22{left:25.020000px;}
.x15{left:26.280000px;}
.x40{left:29.160000px;}
.x3d{left:30.285000px;}
.x3c{left:31.905000px;}
.x1a{left:33.474000px;}
.x1c{left:36.045000px;}
.x25{left:38.340000px;}
.x1e{left:39.960000px;}
.x3a{left:41.040000px;}
.x2a{left:45.000000px;}
.x19{left:47.514000px;}
.x27{left:58.365000px;}
.x2d{left:69.330000px;}
.x2e{left:71.640000px;}
.x36{left:76.185000px;}
.x26{left:77.250000px;}
.x2f{left:82.614000px;}
.x35{left:87.510000px;}
.x20{left:106.014000px;}
.x14{left:119.916000px;}
.x1{left:127.655986px;}
.x4{left:131.255986px;}
.x12{left:132.515986px;}
.x6{left:135.935986px;}
.x2{left:142.055986px;}
.x13{left:154.649986px;}
.x42{left:178.589986px;}
.x3{left:180.749986px;}
.x17{left:201.825000px;}
.x37{left:230.790000px;}
.x16{left:234.390000px;}
.x7{left:250.949986px;}
.x5{left:258.329986px;}
.x1b{left:271.650000px;}
.x28{left:340.635000px;}
.x11{left:343.694986px;}
.x38{left:344.955000px;}
.x30{left:361.875000px;}
.x21{left:384.015000px;}
.x1d{left:418.215000px;}
.xb{left:423.614973px;}
.x9{left:425.594973px;}
.xc{left:432.614986px;}
.xa{left:434.594986px;}
.x32{left:436.395000px;}
.x29{left:443.955000px;}
.xd{left:452.594973px;}
.x8{left:459.074986px;}
.xe{left:461.594986px;}
.xf{left:467.714973px;}
.x10{left:476.714986px;}
.x23{left:483.915000px;}
.x39{left:506.445000px;}
.x2b{left:605.985000px;}
.x34{left:634.605000px;}
.x1f{left:662.505000px;}
.x3b{left:663.585000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls8{letter-spacing:4.480000pt;}
.ls12{letter-spacing:5.760000pt;}
.ls11{letter-spacing:6.400000pt;}
.lsd{letter-spacing:8.960000pt;}
.ls7{letter-spacing:11.520000pt;}
.lse{letter-spacing:12.800000pt;}
.ls3{letter-spacing:16.000000pt;}
.ls6{letter-spacing:17.280000pt;}
.lsa{letter-spacing:30.208000pt;}
.ls9{letter-spacing:56.912640pt;}
.ls0{letter-spacing:175.498667pt;}
.ws3{word-spacing:-53.120000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-16.320000pt;}
._28{margin-left:-12.341333pt;}
._32{margin-left:-6.385493pt;}
._26{margin-left:-5.013333pt;}
._5{margin-left:-1.198080pt;}
._3{width:0.928000pt;}
._10{width:2.316373pt;}
._4{width:3.340373pt;}
._6{width:4.327253pt;}
._11{width:5.742080pt;}
._2{width:7.104000pt;}
._1a{width:8.512000pt;}
._1b{width:9.408000pt;}
._18{width:10.944000pt;}
._17{width:11.904000pt;}
._12{width:13.184000pt;}
._f{width:14.478080pt;}
._9{width:17.635413pt;}
._1c{width:18.816000pt;}
._19{width:20.224000pt;}
._7{width:21.184000pt;}
._8{width:22.208000pt;}
._16{width:23.808000pt;}
._13{width:24.768000pt;}
._14{width:25.966080pt;}
._1f{width:26.933760pt;}
._23{width:27.904000pt;}
._b{width:28.928000pt;}
._c{width:30.080000pt;}
._15{width:31.040000pt;}
._27{width:32.110080pt;}
._21{width:33.180160pt;}
._20{width:34.304000pt;}
._1d{width:35.200000pt;}
._1e{width:36.480000pt;}
._d{width:37.696000pt;}
._e{width:38.848000pt;}
._22{width:39.872000pt;}
._30{width:44.672000pt;}
._31{width:45.824000pt;}
._2e{width:52.288000pt;}
._24{width:56.000000pt;}
._2f{width:60.480000pt;}
._1{width:76.800000pt;}
._25{width:85.027413pt;}
._2d{width:93.632000pt;}
._29{width:133.056000pt;}
._2c{width:154.112000pt;}
._0{width:159.221333pt;}
._2a{width:161.984000pt;}
._33{width:165.098667pt;}
._2b{width:176.366080pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:3.360000pt;}
.y45{bottom:3.520000pt;}
.y91{bottom:3.680000pt;}
.y8e{bottom:4.640000pt;}
.y55{bottom:12.480000pt;}
.y4b{bottom:12.640000pt;}
.y51{bottom:13.920000pt;}
.y58{bottom:14.080000pt;}
.y4e{bottom:14.234667pt;}
.y48{bottom:16.640000pt;}
.ya3{bottom:17.120000pt;}
.ycb{bottom:20.160000pt;}
.y71{bottom:21.914667pt;}
.y62{bottom:21.920000pt;}
.y8c{bottom:22.080000pt;}
.y54{bottom:30.880000pt;}
.y4a{bottom:31.040000pt;}
.y50{bottom:32.320000pt;}
.y57{bottom:32.480000pt;}
.y4d{bottom:32.634667pt;}
.y47{bottom:35.080000pt;}
.yca{bottom:37.120000pt;}
.y77{bottom:40.160000pt;}
.y70{bottom:40.314667pt;}
.y68{bottom:40.320000pt;}
.y76{bottom:58.560000pt;}
.y6f{bottom:58.714667pt;}
.y67{bottom:58.720000pt;}
.yd2{bottom:58.746667pt;}
.y5{bottom:67.712000pt;}
.y75{bottom:76.960000pt;}
.y6e{bottom:77.114667pt;}
.y66{bottom:77.120000pt;}
.yd1{bottom:77.146667pt;}
.yce{bottom:77.160000pt;}
.y4{bottom:85.472000pt;}
.y74{bottom:95.360000pt;}
.y6d{bottom:95.514667pt;}
.y65{bottom:95.520000pt;}
.y6c{bottom:113.914667pt;}
.y64{bottom:113.946667pt;}
.y26{bottom:116.192000pt;}
.y25{bottom:120.832000pt;}
.y6a{bottom:127.872000pt;}
.y4c{bottom:129.792000pt;}
.y24{bottom:131.552000pt;}
.yc7{bottom:132.032000pt;}
.y6b{bottom:132.354667pt;}
.y96{bottom:133.946667pt;}
.y23{bottom:136.186667pt;}
.ya1{bottom:138.586667pt;}
.y43{bottom:141.306667pt;}
.yde{bottom:142.586667pt;}
.y22{bottom:146.746667pt;}
.y21{bottom:151.386667pt;}
.y95{bottom:152.346667pt;}
.yc6{bottom:159.706667pt;}
.y20{bottom:162.106667pt;}
.ya0{bottom:166.266667pt;}
.y1f{bottom:166.746667pt;}
.y42{bottom:168.826667pt;}
.ydd{bottom:170.106667pt;}
.y94{bottom:170.746667pt;}
.y49{bottom:177.946667pt;}
.y1e{bottom:178.106667pt;}
.yc5{bottom:187.226667pt;}
.y93{bottom:189.146667pt;}
.y9f{bottom:193.786667pt;}
.y41{bottom:196.506667pt;}
.ydc{bottom:197.786667pt;}
.y1d{bottom:203.706667pt;}
.y92{bottom:204.666667pt;}
.yc4{bottom:214.906667pt;}
.y9e{bottom:221.306667pt;}
.y90{bottom:223.706667pt;}
.y40{bottom:224.026667pt;}
.y46{bottom:224.506667pt;}
.ydb{bottom:225.306667pt;}
.y1c{bottom:231.226667pt;}
.y9d{bottom:239.706667pt;}
.yc3{bottom:242.426667pt;}
.y8f{bottom:242.906667pt;}
.y3f{bottom:251.706667pt;}
.yda{bottom:252.986667pt;}
.y9c{bottom:258.146667pt;}
.y1b{bottom:258.946667pt;}
.y8d{bottom:261.986667pt;}
.yc2{bottom:270.146667pt;}
.y44{bottom:275.106667pt;}
.y69{bottom:275.746667pt;}
.y9b{bottom:276.546667pt;}
.y3e{bottom:279.266667pt;}
.yd9{bottom:280.546667pt;}
.y8b{bottom:282.146667pt;}
.y1a{bottom:286.466667pt;}
.y9a{bottom:292.226667pt;}
.yc1{bottom:297.666667pt;}
.y3d{bottom:306.946667pt;}
.yd8{bottom:308.226667pt;}
.y99{bottom:311.266667pt;}
.y19{bottom:314.146667pt;}
.yc0{bottom:325.346667pt;}
.y98{bottom:330.306667pt;}
.y8a{bottom:332.546667pt;}
.y3c{bottom:334.466667pt;}
.yd7{bottom:335.746667pt;}
.y18{bottom:341.666667pt;}
.ybf{bottom:352.866667pt;}
.y89{bottom:360.066667pt;}
.y3b{bottom:362.146667pt;}
.yd6{bottom:363.266667pt;}
.y17{bottom:369.346667pt;}
.y97{bottom:371.266667pt;}
.ybe{bottom:380.546667pt;}
.y63{bottom:386.786667pt;}
.y88{bottom:387.746667pt;}
.y3a{bottom:389.666667pt;}
.yd5{bottom:390.946667pt;}
.y16{bottom:396.866667pt;}
.ybd{bottom:408.066667pt;}
.yd4{bottom:409.346667pt;}
.y87{bottom:415.266667pt;}
.y39{bottom:417.346667pt;}
.y15{bottom:424.546667pt;}
.yd3{bottom:427.746667pt;}
.ybc{bottom:435.746667pt;}
.y86{bottom:442.946667pt;}
.yd0{bottom:443.266667pt;}
.y38{bottom:444.866667pt;}
.y14{bottom:452.066667pt;}
.ybb{bottom:463.266667pt;}
.y85{bottom:470.466667pt;}
.yab{bottom:472.386667pt;}
.y37{bottom:472.546667pt;}
.y13{bottom:479.586667pt;}
.yba{bottom:490.973333pt;}
.y84{bottom:498.173333pt;}
.y36{bottom:500.093333pt;}
.y12{bottom:507.293333pt;}
.y61{bottom:516.253333pt;}
.yb9{bottom:518.493333pt;}
.y83{bottom:525.693333pt;}
.y35{bottom:527.613333pt;}
.ycf{bottom:535.933333pt;}
.y11{bottom:542.813333pt;}
.yb8{bottom:546.013333pt;}
.y82{bottom:553.213333pt;}
.y34{bottom:555.293333pt;}
.y60{bottom:566.493333pt;}
.yb7{bottom:573.693333pt;}
.y10{bottom:578.493333pt;}
.y81{bottom:580.893333pt;}
.y33{bottom:582.813333pt;}
.y5f{bottom:594.013333pt;}
.yb6{bottom:601.213333pt;}
.y80{bottom:608.413333pt;}
.y32{bottom:610.493333pt;}
.yf{bottom:614.013333pt;}
.y5e{bottom:621.693333pt;}
.yaa{bottom:628.893333pt;}
.y7f{bottom:636.093333pt;}
.y31{bottom:638.013333pt;}
.ycd{bottom:646.973333pt;}
.ya9{bottom:647.293333pt;}
.y5d{bottom:649.213333pt;}
.ye{bottom:649.693333pt;}
.yb5{bottom:656.413333pt;}
.ya8{bottom:662.813333pt;}
.y7e{bottom:663.613333pt;}
.y30{bottom:665.693333pt;}
.y5c{bottom:667.613333pt;}
.ya7{bottom:681.853333pt;}
.yb4{bottom:684.093333pt;}
.yd{bottom:685.213333pt;}
.y5b{bottom:686.013333pt;}
.y7d{bottom:691.293333pt;}
.y2f{bottom:693.213333pt;}
.ya6{bottom:700.893333pt;}
.y5a{bottom:704.413333pt;}
.yb3{bottom:711.613333pt;}
.y7c{bottom:718.853333pt;}
.y59{bottom:719.973333pt;}
.ya5{bottom:720.133333pt;}
.yc{bottom:720.933333pt;}
.ya4{bottom:739.333333pt;}
.yc9{bottom:739.653333pt;}
.y7b{bottom:746.533333pt;}
.y2e{bottom:748.453333pt;}
.yb{bottom:750.533333pt;}
.ya2{bottom:758.373333pt;}
.yb2{bottom:766.853333pt;}
.y56{bottom:767.813333pt;}
.y7a{bottom:774.053333pt;}
.y2d{bottom:776.133333pt;}
.ya{bottom:782.693333pt;}
.y79{bottom:792.453333pt;}
.yb1{bottom:794.533333pt;}
.y2c{bottom:803.653333pt;}
.y78{bottom:810.853333pt;}
.yc8{bottom:812.933333pt;}
.y9{bottom:815.013333pt;}
.y53{bottom:815.813333pt;}
.yb0{bottom:822.053333pt;}
.y73{bottom:826.533333pt;}
.y2b{bottom:831.333333pt;}
.yaf{bottom:849.733333pt;}
.y8{bottom:851.173333pt;}
.y2a{bottom:858.853333pt;}
.y52{bottom:862.213333pt;}
.yae{bottom:877.253333pt;}
.y29{bottom:886.533333pt;}
.y7{bottom:892.613333pt;}
.yad{bottom:904.933333pt;}
.y4f{bottom:908.773333pt;}
.y28{bottom:914.053333pt;}
.yac{bottom:923.333333pt;}
.y6{bottom:934.053333pt;}
.y72{bottom:937.573333pt;}
.y27{bottom:941.733333pt;}
.y3{bottom:960.160000pt;}
.y2{bottom:977.920000pt;}
.y1{bottom:993.920000pt;}
.h9{height:18.400000pt;}
.h15{height:18.432000pt;}
.h19{height:18.560000pt;}
.h18{height:19.520000pt;}
.h7{height:30.982500pt;}
.h1a{height:32.000000pt;}
.h11{height:36.800000pt;}
.h17{height:36.960000pt;}
.h3{height:43.782500pt;}
.he{height:45.760000pt;}
.hb{height:45.920000pt;}
.h10{height:47.200000pt;}
.hd{height:47.232000pt;}
.hf{height:47.360000pt;}
.hc{height:47.520000pt;}
.h8{height:47.621250pt;}
.ha{height:49.952000pt;}
.h1b{height:50.720000pt;}
.h1c{height:52.296250pt;}
.h1{height:52.750000pt;}
.h5{height:54.075937pt;}
.h6{height:56.843750pt;}
.h2{height:57.375000pt;}
.h4{height:85.265625pt;}
.h1d{height:92.032000pt;}
.h16{height:110.240000pt;}
.h13{height:110.400000pt;}
.h12{height:128.832000pt;}
.h14{height:147.226667pt;}
.h0{height:1056.000000pt;}
.w11{width:65.600000pt;}
.wa{width:88.160000pt;}
.we{width:91.200000pt;}
.w14{width:97.920000pt;}
.w15{width:100.832000pt;}
.w3{width:101.120000pt;}
.wc{width:119.712000pt;}
.w8{width:120.672000pt;}
.w6{width:129.632000pt;}
.w5{width:134.240000pt;}
.w17{width:139.040000pt;}
.w16{width:142.906667pt;}
.wf{width:143.386667pt;}
.w13{width:151.706667pt;}
.wb{width:157.306667pt;}
.w12{width:175.386667pt;}
.wd{width:195.546667pt;}
.w10{width:214.426667pt;}
.w7{width:216.346667pt;}
.w9{width:234.106667pt;}
.w4{width:492.573333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x24{left:8.186667pt;}
.x31{left:10.880000pt;}
.x3e{left:15.520000pt;}
.x33{left:17.280000pt;}
.x2c{left:18.560000pt;}
.x41{left:19.520000pt;}
.x3f{left:20.960000pt;}
.x22{left:22.240000pt;}
.x15{left:23.360000pt;}
.x40{left:25.920000pt;}
.x3d{left:26.920000pt;}
.x3c{left:28.360000pt;}
.x1a{left:29.754667pt;}
.x1c{left:32.040000pt;}
.x25{left:34.080000pt;}
.x1e{left:35.520000pt;}
.x3a{left:36.480000pt;}
.x2a{left:40.000000pt;}
.x19{left:42.234667pt;}
.x27{left:51.880000pt;}
.x2d{left:61.626667pt;}
.x2e{left:63.680000pt;}
.x36{left:67.720000pt;}
.x26{left:68.666667pt;}
.x2f{left:73.434667pt;}
.x35{left:77.786667pt;}
.x20{left:94.234667pt;}
.x14{left:106.592000pt;}
.x1{left:113.471988pt;}
.x4{left:116.671988pt;}
.x12{left:117.791988pt;}
.x6{left:120.831988pt;}
.x2{left:126.271988pt;}
.x13{left:137.466655pt;}
.x42{left:158.746655pt;}
.x3{left:160.666655pt;}
.x17{left:179.400000pt;}
.x37{left:205.146667pt;}
.x16{left:208.346667pt;}
.x7{left:223.066655pt;}
.x5{left:229.626655pt;}
.x1b{left:241.466667pt;}
.x28{left:302.786667pt;}
.x11{left:305.506655pt;}
.x38{left:306.626667pt;}
.x30{left:321.666667pt;}
.x21{left:341.346667pt;}
.x1d{left:371.746667pt;}
.xb{left:376.546642pt;}
.x9{left:378.306642pt;}
.xc{left:384.546655pt;}
.xa{left:386.306655pt;}
.x32{left:387.906667pt;}
.x29{left:394.626667pt;}
.xd{left:402.306642pt;}
.x8{left:408.066655pt;}
.xe{left:410.306655pt;}
.xf{left:415.746642pt;}
.x10{left:423.746655pt;}
.x23{left:430.146667pt;}
.x39{left:450.173333pt;}
.x2b{left:538.653333pt;}
.x34{left:564.093333pt;}
.x1f{left:588.893333pt;}
.x3b{left:589.853333pt;}
}




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