
    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_e8c9776dc3fb44d6bc2ab084.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_96f8f22768026483ed2e6581.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9b44a3f7f84e433265df70e4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b337c78170d4dab840f3149a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_edc694d5ceb60a69b44057fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_78ed05719c7031ab1f10c5a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls14{letter-spacing:-1.512000px;}
.lsf{letter-spacing:-1.410000px;}
.ls13{letter-spacing:-1.224000px;}
.ls15{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.690000px;}
.ls1b{letter-spacing:-0.684000px;}
.ls8{letter-spacing:-0.378600px;}
.ls1f{letter-spacing:-0.369600px;}
.ls9{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.000001px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.004080px;}
.lse{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.181440px;}
.lsc{letter-spacing:0.252720px;}
.ls19{letter-spacing:0.341280px;}
.ls1e{letter-spacing:0.341400px;}
.ls1c{letter-spacing:0.350400px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.378720px;}
.ls3{letter-spacing:0.521280px;}
.ls18{letter-spacing:0.540000px;}
.lsb{letter-spacing:3.420000px;}
.lsd{letter-spacing:13.500000px;}
.ls17{letter-spacing:23.580000px;}
.lsa{letter-spacing:35.100000px;}
.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;}
}
.ws2{word-spacing:-24.300000px;}
.ws6{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.097440px;}
.wsa{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.718600px;}
.ws8{word-spacing:-20.700000px;}
.ws15{word-spacing:-20.690400px;}
.ws5{word-spacing:-20.681400px;}
.ws13{word-spacing:-20.376000px;}
.ws14{word-spacing:-20.370000px;}
.wsb{word-spacing:-19.650000px;}
.wsf{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.712000px;}
.ws12{word-spacing:-17.280000px;}
.ws10{word-spacing:-16.776000px;}
.ws11{word-spacing:-16.488000px;}
.wsd{word-spacing:-16.272000px;}
.ws9{word-spacing:0.000000px;}
._b{margin-left:-5.965200px;}
._a{margin-left:-4.738080px;}
._1d{margin-left:-3.690000px;}
._9{margin-left:-2.395200px;}
._2{margin-left:-1.158720px;}
._1{width:1.104000px;}
._0{width:2.208000px;}
._8{width:4.200480px;}
._6{width:5.454960px;}
._e{width:6.570720px;}
._12{width:7.603920px;}
._3{width:8.760960px;}
._19{width:9.940320px;}
._36{width:10.985280px;}
._13{width:12.092160px;}
._14{width:13.611360px;}
._22{width:14.869200px;}
._18{width:16.005600px;}
._7{width:17.100720px;}
._11{width:18.166320px;}
._4{width:19.290960px;}
._5{width:22.548240px;}
._17{width:23.742480px;}
._24{width:25.440480px;}
._15{width:26.619840px;}
._28{width:27.883440px;}
._1b{width:28.978560px;}
._1c{width:30.137280px;}
._2e{width:31.947600px;}
._2c{width:33.065040px;}
._f{width:34.117200px;}
._23{width:35.549280px;}
._25{width:36.697440px;}
._1a{width:38.076480px;}
._2d{width:39.173280px;}
._34{width:40.198080px;}
._2b{width:41.358000px;}
._20{width:42.604800px;}
._c{width:43.720560px;}
._d{width:45.384720px;}
._30{width:48.636960px;}
._35{width:50.083440px;}
._29{width:51.133680px;}
._1e{width:52.356000px;}
._26{width:53.365200px;}
._2a{width:54.376080px;}
._27{width:56.127120px;}
._32{width:58.454880px;}
._2f{width:76.635120px;}
._1f{width:82.787280px;}
._16{width:83.987280px;}
._33{width:89.040240px;}
._10{width:103.952160px;}
._21{width:107.995680px;}
._31{width:158.437920px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y8d{bottom:5.580000px;}
.y9b{bottom:7.020000px;}
.y9{bottom:7.380000px;}
.y88{bottom:14.220000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya1{bottom:23.040000px;}
.y2{bottom:24.660000px;}
.y81{bottom:25.920000px;}
.y8c{bottom:26.280000px;}
.y9a{bottom:27.720000px;}
.y87{bottom:36.180000px;}
.ya0{bottom:43.785000px;}
.y8{bottom:44.640000px;}
.y7c{bottom:45.360000px;}
.y93{bottom:45.390000px;}
.y80{bottom:46.620000px;}
.y8b{bottom:46.980000px;}
.y99{bottom:48.420000px;}
.y86{bottom:58.140000px;}
.y9f{bottom:64.485000px;}
.y92{bottom:66.090000px;}
.y7f{bottom:67.320000px;}
.y8a{bottom:67.680000px;}
.y98{bottom:69.120000px;}
.y85{bottom:80.145000px;}
.y9e{bottom:85.185000px;}
.y91{bottom:86.790000px;}
.y7e{bottom:88.020000px;}
.y97{bottom:89.820000px;}
.y69{bottom:95.256000px;}
.y48{bottom:96.516000px;}
.y7a{bottom:98.856000px;}
.y84{bottom:101.205000px;}
.y9d{bottom:105.885000px;}
.y90{bottom:107.490000px;}
.y96{bottom:110.520000px;}
.y83{bottom:121.905000px;}
.y68{bottom:122.976000px;}
.y47{bottom:124.236000px;}
.y79{bottom:126.576000px;}
.y8f{bottom:128.190000px;}
.y95{bottom:131.220000px;}
.y28{bottom:133.956000px;}
.ya7{bottom:144.576000px;}
.y67{bottom:150.870000px;}
.y46{bottom:151.950000px;}
.y78{bottom:154.470000px;}
.y27{bottom:170.130000px;}
.ya6{bottom:172.470000px;}
.y66{bottom:178.590000px;}
.y45{bottom:179.850000px;}
.y77{bottom:190.650000px;}
.ya5{bottom:200.190000px;}
.y26{bottom:206.310000px;}
.y44{bottom:207.570000px;}
.y76{bottom:226.830000px;}
.ya4{bottom:227.910000px;}
.y65{bottom:234.030000px;}
.y43{bottom:235.290000px;}
.y25{bottom:242.490000px;}
.ya3{bottom:255.630000px;}
.y64{bottom:261.930000px;}
.y42{bottom:263.010000px;}
.y24{bottom:278.850000px;}
.ya2{bottom:283.530000px;}
.y63{bottom:289.650000px;}
.y41{bottom:290.910000px;}
.y75{bottom:299.370000px;}
.y9c{bottom:303.870000px;}
.y23{bottom:315.030000px;}
.y62{bottom:317.370000px;}
.y40{bottom:318.630000px;}
.y74{bottom:335.550000px;}
.y61{bottom:345.135000px;}
.y3f{bottom:346.395000px;}
.y22{bottom:351.255000px;}
.y73{bottom:371.775000px;}
.y60{bottom:373.035000px;}
.y3e{bottom:374.115000px;}
.y21{bottom:387.435000px;}
.y5f{bottom:400.755000px;}
.y3d{bottom:402.015000px;}
.y72{bottom:407.955000px;}
.y20{bottom:423.615000px;}
.y94{bottom:427.215000px;}
.y5e{bottom:428.475000px;}
.y3c{bottom:429.735000px;}
.y71{bottom:444.315000px;}
.y5d{bottom:456.375000px;}
.y3b{bottom:457.455000px;}
.y1f{bottom:459.975000px;}
.y70{bottom:480.495000px;}
.y5c{bottom:484.095000px;}
.y3a{bottom:485.355000px;}
.y1e{bottom:496.155000px;}
.y5b{bottom:511.815000px;}
.y39{bottom:513.075000px;}
.y6f{bottom:516.675000px;}
.y1d{bottom:532.335000px;}
.y5a{bottom:539.535000px;}
.y38{bottom:540.795000px;}
.y6e{bottom:552.855000px;}
.y59{bottom:567.435000px;}
.y1c{bottom:568.515000px;}
.y8e{bottom:575.895000px;}
.y6d{bottom:589.035000px;}
.y58{bottom:595.155000px;}
.y37{bottom:596.415000px;}
.y1b{bottom:604.905000px;}
.y57{bottom:622.905000px;}
.y36{bottom:624.165000px;}
.y6c{bottom:625.425000px;}
.y1a{bottom:641.085000px;}
.y56{bottom:650.805000px;}
.y35{bottom:651.885000px;}
.y6b{bottom:661.605000px;}
.y19{bottom:677.265000px;}
.y55{bottom:678.525000px;}
.y34{bottom:688.065000px;}
.y6a{bottom:697.785000px;}
.y54{bottom:706.245000px;}
.y18{bottom:713.445000px;}
.y89{bottom:721.545000px;}
.y33{bottom:724.425000px;}
.y53{bottom:733.965000px;}
.y17{bottom:749.805000px;}
.y32{bottom:760.605000px;}
.y52{bottom:761.865000px;}
.y16{bottom:785.985000px;}
.y51{bottom:789.585000px;}
.y31{bottom:796.785000px;}
.y82{bottom:806.865000px;}
.y50{bottom:817.305000px;}
.y15{bottom:822.165000px;}
.y30{bottom:832.965000px;}
.y4f{bottom:845.025000px;}
.y14{bottom:858.345000px;}
.y2f{bottom:869.325000px;}
.y4e{bottom:872.970000px;}
.y13{bottom:894.750000px;}
.y4d{bottom:900.690000px;}
.y2e{bottom:905.550000px;}
.y4c{bottom:928.410000px;}
.y12{bottom:930.930000px;}
.y2d{bottom:941.730000px;}
.y7d{bottom:946.410000px;}
.y4b{bottom:956.310000px;}
.y11{bottom:967.110000px;}
.y2c{bottom:977.910000px;}
.y4a{bottom:984.030000px;}
.y10{bottom:1003.290000px;}
.y49{bottom:1011.750000px;}
.y2b{bottom:1014.270000px;}
.yf{bottom:1039.470000px;}
.y2a{bottom:1050.450000px;}
.y7b{bottom:1051.890000px;}
.ye{bottom:1067.370000px;}
.y29{bottom:1086.630000px;}
.yd{bottom:1095.090000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.h2{height:41.400000px;}
.h4{height:53.709961px;}
.hd{height:62.100000px;}
.hf{height:63.457031px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h11{height:71.613281px;}
.h3{height:72.562500px;}
.h13{height:73.722656px;}
.hc{height:74.244727px;}
.ha{height:82.676953px;}
.h12{height:84.420000px;}
.hb{height:84.898125px;}
.h9{height:96.508125px;}
.he{height:104.760000px;}
.h16{height:122.616000px;}
.h10{height:138.636000px;}
.h14{height:144.936000px;}
.h15{height:147.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w7{width:127.260000px;}
.wa{width:141.120000px;}
.w8{width:147.996000px;}
.w9{width:289.695000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.x8{left:17.460000px;}
.xa{left:19.800000px;}
.x1{left:31.860000px;}
.x2{left:44.460000px;}
.x5{left:59.970000px;}
.x7{left:84.959987px;}
.x15{left:92.376000px;}
.x10{left:96.875987px;}
.x12{left:127.475987px;}
.xb{left:129.635987px;}
.xe{left:215.129987px;}
.x16{left:220.350000px;}
.xd{left:346.394987px;}
.xf{left:353.414987px;}
.x11{left:368.894987px;}
.x13{left:375.914987px;}
.x14{left:389.234987px;}
.xc{left:446.474987px;}
.x3{left:521.205000px;}
.x17{left:659.490000px;}
.x4{left:792.690000px;}
.x9{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.344000pt;}
.lsf{letter-spacing:-1.253333pt;}
.ls13{letter-spacing:-1.088000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.613333pt;}
.ls1b{letter-spacing:-0.608000pt;}
.ls8{letter-spacing:-0.336533pt;}
.ls1f{letter-spacing:-0.328533pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.000001pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.003627pt;}
.lse{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.161280pt;}
.lsc{letter-spacing:0.224640pt;}
.ls19{letter-spacing:0.303360pt;}
.ls1e{letter-spacing:0.303467pt;}
.ls1c{letter-spacing:0.311467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.336640pt;}
.ls3{letter-spacing:0.463360pt;}
.ls18{letter-spacing:0.480000pt;}
.lsb{letter-spacing:3.040000pt;}
.lsd{letter-spacing:12.000000pt;}
.ls17{letter-spacing:20.960000pt;}
.lsa{letter-spacing:31.200000pt;}
.ws2{word-spacing:-21.600000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.753280pt;}
.wsa{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.416533pt;}
.ws8{word-spacing:-18.400000pt;}
.ws15{word-spacing:-18.391467pt;}
.ws5{word-spacing:-18.383467pt;}
.ws13{word-spacing:-18.112000pt;}
.ws14{word-spacing:-18.106667pt;}
.wsb{word-spacing:-17.466667pt;}
.wsf{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws12{word-spacing:-15.360000pt;}
.ws10{word-spacing:-14.912000pt;}
.ws11{word-spacing:-14.656000pt;}
.wsd{word-spacing:-14.464000pt;}
.ws9{word-spacing:0.000000pt;}
._b{margin-left:-5.302400pt;}
._a{margin-left:-4.211627pt;}
._1d{margin-left:-3.280000pt;}
._9{margin-left:-2.129067pt;}
._2{margin-left:-1.029973pt;}
._1{width:0.981333pt;}
._0{width:1.962667pt;}
._8{width:3.733760pt;}
._6{width:4.848853pt;}
._e{width:5.840640pt;}
._12{width:6.759040pt;}
._3{width:7.787520pt;}
._19{width:8.835840pt;}
._36{width:9.764693pt;}
._13{width:10.748587pt;}
._14{width:12.098987pt;}
._22{width:13.217067pt;}
._18{width:14.227200pt;}
._7{width:15.200640pt;}
._11{width:16.147840pt;}
._4{width:17.147520pt;}
._5{width:20.042880pt;}
._17{width:21.104427pt;}
._24{width:22.613760pt;}
._15{width:23.662080pt;}
._28{width:24.785280pt;}
._1b{width:25.758720pt;}
._1c{width:26.788693pt;}
._2e{width:28.397867pt;}
._2c{width:29.391147pt;}
._f{width:30.326400pt;}
._23{width:31.599360pt;}
._25{width:32.619947pt;}
._1a{width:33.845760pt;}
._2d{width:34.820693pt;}
._34{width:35.731627pt;}
._2b{width:36.762667pt;}
._20{width:37.870933pt;}
._c{width:38.862720pt;}
._d{width:40.341973pt;}
._30{width:43.232853pt;}
._35{width:44.518613pt;}
._29{width:45.452160pt;}
._1e{width:46.538667pt;}
._26{width:47.435733pt;}
._2a{width:48.334293pt;}
._27{width:49.890773pt;}
._32{width:51.959893pt;}
._2f{width:68.120107pt;}
._1f{width:73.588693pt;}
._16{width:74.655360pt;}
._33{width:79.146880pt;}
._10{width:92.401920pt;}
._21{width:95.996160pt;}
._31{width:140.833707pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y8d{bottom:4.960000pt;}
.y9b{bottom:6.240000pt;}
.y9{bottom:6.560000pt;}
.y88{bottom:12.640000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya1{bottom:20.480000pt;}
.y2{bottom:21.920000pt;}
.y81{bottom:23.040000pt;}
.y8c{bottom:23.360000pt;}
.y9a{bottom:24.640000pt;}
.y87{bottom:32.160000pt;}
.ya0{bottom:38.920000pt;}
.y8{bottom:39.680000pt;}
.y7c{bottom:40.320000pt;}
.y93{bottom:40.346667pt;}
.y80{bottom:41.440000pt;}
.y8b{bottom:41.760000pt;}
.y99{bottom:43.040000pt;}
.y86{bottom:51.680000pt;}
.y9f{bottom:57.320000pt;}
.y92{bottom:58.746667pt;}
.y7f{bottom:59.840000pt;}
.y8a{bottom:60.160000pt;}
.y98{bottom:61.440000pt;}
.y85{bottom:71.240000pt;}
.y9e{bottom:75.720000pt;}
.y91{bottom:77.146667pt;}
.y7e{bottom:78.240000pt;}
.y97{bottom:79.840000pt;}
.y69{bottom:84.672000pt;}
.y48{bottom:85.792000pt;}
.y7a{bottom:87.872000pt;}
.y84{bottom:89.960000pt;}
.y9d{bottom:94.120000pt;}
.y90{bottom:95.546667pt;}
.y96{bottom:98.240000pt;}
.y83{bottom:108.360000pt;}
.y68{bottom:109.312000pt;}
.y47{bottom:110.432000pt;}
.y79{bottom:112.512000pt;}
.y8f{bottom:113.946667pt;}
.y95{bottom:116.640000pt;}
.y28{bottom:119.072000pt;}
.ya7{bottom:128.512000pt;}
.y67{bottom:134.106667pt;}
.y46{bottom:135.066667pt;}
.y78{bottom:137.306667pt;}
.y27{bottom:151.226667pt;}
.ya6{bottom:153.306667pt;}
.y66{bottom:158.746667pt;}
.y45{bottom:159.866667pt;}
.y77{bottom:169.466667pt;}
.ya5{bottom:177.946667pt;}
.y26{bottom:183.386667pt;}
.y44{bottom:184.506667pt;}
.y76{bottom:201.626667pt;}
.ya4{bottom:202.586667pt;}
.y65{bottom:208.026667pt;}
.y43{bottom:209.146667pt;}
.y25{bottom:215.546667pt;}
.ya3{bottom:227.226667pt;}
.y64{bottom:232.826667pt;}
.y42{bottom:233.786667pt;}
.y24{bottom:247.866667pt;}
.ya2{bottom:252.026667pt;}
.y63{bottom:257.466667pt;}
.y41{bottom:258.586667pt;}
.y75{bottom:266.106667pt;}
.y9c{bottom:270.106667pt;}
.y23{bottom:280.026667pt;}
.y62{bottom:282.106667pt;}
.y40{bottom:283.226667pt;}
.y74{bottom:298.266667pt;}
.y61{bottom:306.786667pt;}
.y3f{bottom:307.906667pt;}
.y22{bottom:312.226667pt;}
.y73{bottom:330.466667pt;}
.y60{bottom:331.586667pt;}
.y3e{bottom:332.546667pt;}
.y21{bottom:344.386667pt;}
.y5f{bottom:356.226667pt;}
.y3d{bottom:357.346667pt;}
.y72{bottom:362.626667pt;}
.y20{bottom:376.546667pt;}
.y94{bottom:379.746667pt;}
.y5e{bottom:380.866667pt;}
.y3c{bottom:381.986667pt;}
.y71{bottom:394.946667pt;}
.y5d{bottom:405.666667pt;}
.y3b{bottom:406.626667pt;}
.y1f{bottom:408.866667pt;}
.y70{bottom:427.106667pt;}
.y5c{bottom:430.306667pt;}
.y3a{bottom:431.426667pt;}
.y1e{bottom:441.026667pt;}
.y5b{bottom:454.946667pt;}
.y39{bottom:456.066667pt;}
.y6f{bottom:459.266667pt;}
.y1d{bottom:473.186667pt;}
.y5a{bottom:479.586667pt;}
.y38{bottom:480.706667pt;}
.y6e{bottom:491.426667pt;}
.y59{bottom:504.386667pt;}
.y1c{bottom:505.346667pt;}
.y8e{bottom:511.906667pt;}
.y6d{bottom:523.586667pt;}
.y58{bottom:529.026667pt;}
.y37{bottom:530.146667pt;}
.y1b{bottom:537.693333pt;}
.y57{bottom:553.693333pt;}
.y36{bottom:554.813333pt;}
.y6c{bottom:555.933333pt;}
.y1a{bottom:569.853333pt;}
.y56{bottom:578.493333pt;}
.y35{bottom:579.453333pt;}
.y6b{bottom:588.093333pt;}
.y19{bottom:602.013333pt;}
.y55{bottom:603.133333pt;}
.y34{bottom:611.613333pt;}
.y6a{bottom:620.253333pt;}
.y54{bottom:627.773333pt;}
.y18{bottom:634.173333pt;}
.y89{bottom:641.373333pt;}
.y33{bottom:643.933333pt;}
.y53{bottom:652.413333pt;}
.y17{bottom:666.493333pt;}
.y32{bottom:676.093333pt;}
.y52{bottom:677.213333pt;}
.y16{bottom:698.653333pt;}
.y51{bottom:701.853333pt;}
.y31{bottom:708.253333pt;}
.y82{bottom:717.213333pt;}
.y50{bottom:726.493333pt;}
.y15{bottom:730.813333pt;}
.y30{bottom:740.413333pt;}
.y4f{bottom:751.133333pt;}
.y14{bottom:762.973333pt;}
.y2f{bottom:772.733333pt;}
.y4e{bottom:775.973333pt;}
.y13{bottom:795.333333pt;}
.y4d{bottom:800.613333pt;}
.y2e{bottom:804.933333pt;}
.y4c{bottom:825.253333pt;}
.y12{bottom:827.493333pt;}
.y2d{bottom:837.093333pt;}
.y7d{bottom:841.253333pt;}
.y4b{bottom:850.053333pt;}
.y11{bottom:859.653333pt;}
.y2c{bottom:869.253333pt;}
.y4a{bottom:874.693333pt;}
.y10{bottom:891.813333pt;}
.y49{bottom:899.333333pt;}
.y2b{bottom:901.573333pt;}
.yf{bottom:923.973333pt;}
.y2a{bottom:933.733333pt;}
.y7b{bottom:935.013333pt;}
.ye{bottom:948.773333pt;}
.y29{bottom:965.893333pt;}
.yd{bottom:973.413333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.h2{height:36.800000pt;}
.h4{height:47.742188pt;}
.hd{height:55.200000pt;}
.hf{height:56.406250pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h11{height:63.656250pt;}
.h3{height:64.500000pt;}
.h13{height:65.531250pt;}
.hc{height:65.995312pt;}
.ha{height:73.490625pt;}
.h12{height:75.040000pt;}
.hb{height:75.465000pt;}
.h9{height:85.785000pt;}
.he{height:93.120000pt;}
.h16{height:108.992000pt;}
.h10{height:123.232000pt;}
.h14{height:128.832000pt;}
.h15{height:131.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w7{width:113.120000pt;}
.wa{width:125.440000pt;}
.w8{width:131.552000pt;}
.w9{width:257.506667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.x8{left:15.520000pt;}
.xa{left:17.600000pt;}
.x1{left:28.320000pt;}
.x2{left:39.520000pt;}
.x5{left:53.306667pt;}
.x7{left:75.519988pt;}
.x15{left:82.112000pt;}
.x10{left:86.111988pt;}
.x12{left:113.311988pt;}
.xb{left:115.231988pt;}
.xe{left:191.226655pt;}
.x16{left:195.866667pt;}
.xd{left:307.906655pt;}
.xf{left:314.146655pt;}
.x11{left:327.906655pt;}
.x13{left:334.146655pt;}
.x14{left:345.986655pt;}
.xc{left:396.866655pt;}
.x3{left:463.293333pt;}
.x17{left:586.213333pt;}
.x4{left:704.613333pt;}
.x9{left:708.933333pt;}
}




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