
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_001ff7a910f3e2ee04e4601a.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_1e4bf861d95c97445c534d8d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7c19238edeefa944b130d5f0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_016252175eb5df5ab6609b49.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_8370ac548f659f2a3de666c0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a8a4e19a2fc03e695460099e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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:ffa;src:url('chunks/assets/font_fe11be85aae4021e0b287a8b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e4c935298d36f3bd59c617a6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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;}
.ls6{letter-spacing:-0.226200px;}
.lsa{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.089400px;}
.ls9{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493800px;}
.ls4{letter-spacing:1.589760px;}
.lsc{letter-spacing:41.706720px;}
.ls0{letter-spacing:599.885760px;}
.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;}
}
.ws9{word-spacing:-54.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws7{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.016640px;}
._9{width:2.227680px;}
._2{width:3.348000px;}
._8{width:4.361040px;}
._4{width:5.508000px;}
._3{width:6.588000px;}
._6{width:8.046720px;}
._5{width:9.234000px;}
._c{width:10.697040px;}
._7{width:12.163680px;}
._e{width:13.270800px;}
._d{width:15.993840px;}
._11{width:17.150400px;}
._10{width:18.846240px;}
._b{width:24.349680px;}
._a{width:25.578000px;}
._f{width:201.060000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:1.620000px;}
.y50{bottom:3.285000px;}
.y5{bottom:3.780000px;}
.y66{bottom:4.860000px;}
.y68{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y65{bottom:20.334000px;}
.y4f{bottom:20.385000px;}
.y4{bottom:22.710000px;}
.y64{bottom:35.814000px;}
.y4e{bottom:37.665000px;}
.y59{bottom:42.294000px;}
.y3{bottom:47.910000px;}
.y58{bottom:50.754000px;}
.y63{bottom:51.474000px;}
.y4d{bottom:54.945000px;}
.y57{bottom:59.934000px;}
.y62{bottom:69.114000px;}
.y56{bottom:70.554000px;}
.yb{bottom:71.820000px;}
.y4c{bottom:72.225000px;}
.y55{bottom:82.614000px;}
.y61{bottom:84.774000px;}
.y4b{bottom:89.505000px;}
.y54{bottom:94.674000px;}
.y60{bottom:102.414000px;}
.y2d{bottom:103.545000px;}
.ya{bottom:105.696000px;}
.y4a{bottom:106.785000px;}
.y5f{bottom:118.074000px;}
.y49{bottom:123.885000px;}
.y9{bottom:124.596000px;}
.y2c{bottom:125.685000px;}
.y5e{bottom:133.554000px;}
.y2b{bottom:139.545000px;}
.y48{bottom:141.165000px;}
.y51{bottom:142.056000px;}
.y5d{bottom:149.034000px;}
.y2a{bottom:153.405000px;}
.y53{bottom:155.694000px;}
.y47{bottom:158.445000px;}
.y5c{bottom:164.514000px;}
.y52{bottom:165.414000px;}
.y9d{bottom:165.450000px;}
.y29{bottom:167.265000px;}
.y46{bottom:175.725000px;}
.y5b{bottom:180.174000px;}
.y28{bottom:181.125000px;}
.y9c{bottom:182.730000px;}
.y45{bottom:193.005000px;}
.y27{bottom:194.985000px;}
.y9b{bottom:200.010000px;}
.y26{bottom:208.845000px;}
.y44{bottom:210.285000px;}
.y9a{bottom:217.290000px;}
.y25{bottom:222.705000px;}
.y43{bottom:227.385000px;}
.y99{bottom:234.570000px;}
.y24{bottom:236.565000px;}
.y42{bottom:244.665000px;}
.y23{bottom:250.425000px;}
.y98{bottom:251.670000px;}
.y22{bottom:255.285000px;}
.y41{bottom:261.945000px;}
.y97{bottom:268.950000px;}
.y40{bottom:279.255000px;}
.y21{bottom:279.435000px;}
.y96{bottom:286.230000px;}
.y3f{bottom:296.535000px;}
.y95{bottom:303.510000px;}
.y20{bottom:303.555000px;}
.y3e{bottom:313.815000px;}
.y94{bottom:320.790000px;}
.y1f{bottom:327.675000px;}
.y3d{bottom:331.995000px;}
.y14{bottom:337.530000px;}
.y93{bottom:338.070000px;}
.y3c{bottom:348.915000px;}
.y1e{bottom:351.795000px;}
.y92{bottom:355.215000px;}
.y3b{bottom:364.575000px;}
.y91{bottom:372.495000px;}
.y1d{bottom:376.095000px;}
.y3a{bottom:380.055000px;}
.y90{bottom:389.775000px;}
.y39{bottom:395.535000px;}
.y1c{bottom:400.215000px;}
.y8f{bottom:407.055000px;}
.y38{bottom:411.015000px;}
.y1b{bottom:424.335000px;}
.y37{bottom:426.675000px;}
.y8e{bottom:441.435000px;}
.y36{bottom:442.155000px;}
.y1a{bottom:448.455000px;}
.y35{bottom:457.635000px;}
.y8d{bottom:458.715000px;}
.y19{bottom:472.575000px;}
.y34{bottom:473.115000px;}
.y8c{bottom:475.995000px;}
.y33{bottom:488.775000px;}
.y8b{bottom:493.275000px;}
.y18{bottom:496.695000px;}
.y32{bottom:504.255000px;}
.y8a{bottom:510.555000px;}
.y31{bottom:519.735000px;}
.y17{bottom:520.995000px;}
.y89{bottom:527.835000px;}
.y30{bottom:535.260000px;}
.y88{bottom:544.935000px;}
.y16{bottom:545.160000px;}
.y2f{bottom:550.920000px;}
.y87{bottom:562.215000px;}
.y2e{bottom:566.400000px;}
.y15{bottom:569.280000px;}
.y86{bottom:579.495000px;}
.y85{bottom:596.775000px;}
.y84{bottom:614.085000px;}
.y83{bottom:631.365000px;}
.y82{bottom:648.465000px;}
.y81{bottom:665.745000px;}
.y80{bottom:683.025000px;}
.y7f{bottom:700.305000px;}
.y7e{bottom:717.585000px;}
.y7d{bottom:734.865000px;}
.y7c{bottom:751.965000px;}
.y7b{bottom:769.245000px;}
.y7a{bottom:786.525000px;}
.y79{bottom:803.805000px;}
.y78{bottom:821.085000px;}
.y77{bottom:838.185000px;}
.y76{bottom:855.465000px;}
.y75{bottom:872.790000px;}
.y74{bottom:890.070000px;}
.y73{bottom:907.350000px;}
.y13{bottom:921.930000px;}
.y72{bottom:924.630000px;}
.y12{bottom:939.210000px;}
.y71{bottom:941.730000px;}
.y11{bottom:956.490000px;}
.y70{bottom:959.010000px;}
.y10{bottom:973.770000px;}
.y6f{bottom:976.290000px;}
.yf{bottom:991.050000px;}
.y6e{bottom:993.570000px;}
.ye{bottom:1009.590000px;}
.y6d{bottom:1010.850000px;}
.y6c{bottom:1028.130000px;}
.yd{bottom:1033.710000px;}
.y6b{bottom:1045.230000px;}
.yc{bottom:1062.330000px;}
.y6a{bottom:1062.510000px;}
.y67{bottom:1065.600000px;}
.y69{bottom:1079.790000px;}
.y8{bottom:1106.070000px;}
.y7{bottom:1120.110000px;}
.y6{bottom:1122.090000px;}
.y1{bottom:1123.530000px;}
.he{height:4.021875px;}
.h6{height:5.729063px;}
.h14{height:21.114844px;}
.h13{height:25.136719px;}
.h15{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h8{height:40.132617px;}
.h7{height:41.726953px;}
.ha{height:42.164648px;}
.hf{height:43.822266px;}
.h10{height:44.507812px;}
.h5{height:46.251562px;}
.h17{height:48.496641px;}
.h18{height:49.255313px;}
.h11{height:53.709961px;}
.h9{height:59.436914px;}
.h16{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h12{height:194.580000px;}
.hb{height:578.985000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:131.940000px;}
.w8{width:162.900000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.056000px;}
.x18{left:8.100000px;}
.x4{left:12.780000px;}
.x16{left:18.180000px;}
.x6{left:19.260000px;}
.x10{left:25.560000px;}
.x11{left:28.980000px;}
.xf{left:31.140000px;}
.x15{left:37.260000px;}
.x14{left:40.320000px;}
.x13{left:42.480000px;}
.x1b{left:47.340000px;}
.x1c{left:56.700000px;}
.x19{left:62.145000px;}
.x12{left:65.874000px;}
.x1{left:78.300000px;}
.x7{left:86.435987px;}
.x2{left:95.790000px;}
.x1a{left:106.374000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x17{left:218.370000px;}
.xb{left:564.764987px;}
.xd{left:595.724987px;}
.xa{left:605.669987px;}
.xc{left:622.049987px;}
.x9{left:766.049987px;}
.x8{left:784.439987px;}
.xe{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.201067pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.079467pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.438933pt;}
.ls4{letter-spacing:1.413120pt;}
.lsc{letter-spacing:37.072640pt;}
.ls0{letter-spacing:533.231787pt;}
.ws9{word-spacing:-48.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws7{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.903680pt;}
._9{width:1.980160pt;}
._2{width:2.976000pt;}
._8{width:3.876480pt;}
._4{width:4.896000pt;}
._3{width:5.856000pt;}
._6{width:7.152640pt;}
._5{width:8.208000pt;}
._c{width:9.508480pt;}
._7{width:10.812160pt;}
._e{width:11.796267pt;}
._d{width:14.216747pt;}
._11{width:15.244800pt;}
._10{width:16.752213pt;}
._b{width:21.644160pt;}
._a{width:22.736000pt;}
._f{width:178.720000pt;}
.fs2{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:1.440000pt;}
.y50{bottom:2.920000pt;}
.y5{bottom:3.360000pt;}
.y66{bottom:4.320000pt;}
.y68{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y65{bottom:18.074667pt;}
.y4f{bottom:18.120000pt;}
.y4{bottom:20.186667pt;}
.y64{bottom:31.834667pt;}
.y4e{bottom:33.480000pt;}
.y59{bottom:37.594667pt;}
.y3{bottom:42.586667pt;}
.y58{bottom:45.114667pt;}
.y63{bottom:45.754667pt;}
.y4d{bottom:48.840000pt;}
.y57{bottom:53.274667pt;}
.y62{bottom:61.434667pt;}
.y56{bottom:62.714667pt;}
.yb{bottom:63.840000pt;}
.y4c{bottom:64.200000pt;}
.y55{bottom:73.434667pt;}
.y61{bottom:75.354667pt;}
.y4b{bottom:79.560000pt;}
.y54{bottom:84.154667pt;}
.y60{bottom:91.034667pt;}
.y2d{bottom:92.040000pt;}
.ya{bottom:93.952000pt;}
.y4a{bottom:94.920000pt;}
.y5f{bottom:104.954667pt;}
.y49{bottom:110.120000pt;}
.y9{bottom:110.752000pt;}
.y2c{bottom:111.720000pt;}
.y5e{bottom:118.714667pt;}
.y2b{bottom:124.040000pt;}
.y48{bottom:125.480000pt;}
.y51{bottom:126.272000pt;}
.y5d{bottom:132.474667pt;}
.y2a{bottom:136.360000pt;}
.y53{bottom:138.394667pt;}
.y47{bottom:140.840000pt;}
.y5c{bottom:146.234667pt;}
.y52{bottom:147.034667pt;}
.y9d{bottom:147.066667pt;}
.y29{bottom:148.680000pt;}
.y46{bottom:156.200000pt;}
.y5b{bottom:160.154667pt;}
.y28{bottom:161.000000pt;}
.y9c{bottom:162.426667pt;}
.y45{bottom:171.560000pt;}
.y27{bottom:173.320000pt;}
.y9b{bottom:177.786667pt;}
.y26{bottom:185.640000pt;}
.y44{bottom:186.920000pt;}
.y9a{bottom:193.146667pt;}
.y25{bottom:197.960000pt;}
.y43{bottom:202.120000pt;}
.y99{bottom:208.506667pt;}
.y24{bottom:210.280000pt;}
.y42{bottom:217.480000pt;}
.y23{bottom:222.600000pt;}
.y98{bottom:223.706667pt;}
.y22{bottom:226.920000pt;}
.y41{bottom:232.840000pt;}
.y97{bottom:239.066667pt;}
.y40{bottom:248.226667pt;}
.y21{bottom:248.386667pt;}
.y96{bottom:254.426667pt;}
.y3f{bottom:263.586667pt;}
.y95{bottom:269.786667pt;}
.y20{bottom:269.826667pt;}
.y3e{bottom:278.946667pt;}
.y94{bottom:285.146667pt;}
.y1f{bottom:291.266667pt;}
.y3d{bottom:295.106667pt;}
.y14{bottom:300.026667pt;}
.y93{bottom:300.506667pt;}
.y3c{bottom:310.146667pt;}
.y1e{bottom:312.706667pt;}
.y92{bottom:315.746667pt;}
.y3b{bottom:324.066667pt;}
.y91{bottom:331.106667pt;}
.y1d{bottom:334.306667pt;}
.y3a{bottom:337.826667pt;}
.y90{bottom:346.466667pt;}
.y39{bottom:351.586667pt;}
.y1c{bottom:355.746667pt;}
.y8f{bottom:361.826667pt;}
.y38{bottom:365.346667pt;}
.y1b{bottom:377.186667pt;}
.y37{bottom:379.266667pt;}
.y8e{bottom:392.386667pt;}
.y36{bottom:393.026667pt;}
.y1a{bottom:398.626667pt;}
.y35{bottom:406.786667pt;}
.y8d{bottom:407.746667pt;}
.y19{bottom:420.066667pt;}
.y34{bottom:420.546667pt;}
.y8c{bottom:423.106667pt;}
.y33{bottom:434.466667pt;}
.y8b{bottom:438.466667pt;}
.y18{bottom:441.506667pt;}
.y32{bottom:448.226667pt;}
.y8a{bottom:453.826667pt;}
.y31{bottom:461.986667pt;}
.y17{bottom:463.106667pt;}
.y89{bottom:469.186667pt;}
.y30{bottom:475.786667pt;}
.y88{bottom:484.386667pt;}
.y16{bottom:484.586667pt;}
.y2f{bottom:489.706667pt;}
.y87{bottom:499.746667pt;}
.y2e{bottom:503.466667pt;}
.y15{bottom:506.026667pt;}
.y86{bottom:515.106667pt;}
.y85{bottom:530.466667pt;}
.y84{bottom:545.853333pt;}
.y83{bottom:561.213333pt;}
.y82{bottom:576.413333pt;}
.y81{bottom:591.773333pt;}
.y80{bottom:607.133333pt;}
.y7f{bottom:622.493333pt;}
.y7e{bottom:637.853333pt;}
.y7d{bottom:653.213333pt;}
.y7c{bottom:668.413333pt;}
.y7b{bottom:683.773333pt;}
.y7a{bottom:699.133333pt;}
.y79{bottom:714.493333pt;}
.y78{bottom:729.853333pt;}
.y77{bottom:745.053333pt;}
.y76{bottom:760.413333pt;}
.y75{bottom:775.813333pt;}
.y74{bottom:791.173333pt;}
.y73{bottom:806.533333pt;}
.y13{bottom:819.493333pt;}
.y72{bottom:821.893333pt;}
.y12{bottom:834.853333pt;}
.y71{bottom:837.093333pt;}
.y11{bottom:850.213333pt;}
.y70{bottom:852.453333pt;}
.y10{bottom:865.573333pt;}
.y6f{bottom:867.813333pt;}
.yf{bottom:880.933333pt;}
.y6e{bottom:883.173333pt;}
.ye{bottom:897.413333pt;}
.y6d{bottom:898.533333pt;}
.y6c{bottom:913.893333pt;}
.yd{bottom:918.853333pt;}
.y6b{bottom:929.093333pt;}
.yc{bottom:944.293333pt;}
.y6a{bottom:944.453333pt;}
.y67{bottom:947.200000pt;}
.y69{bottom:959.813333pt;}
.y8{bottom:983.173333pt;}
.y7{bottom:995.653333pt;}
.y6{bottom:997.413333pt;}
.y1{bottom:998.693333pt;}
.he{height:3.575000pt;}
.h6{height:5.092500pt;}
.h14{height:18.768750pt;}
.h13{height:22.343750pt;}
.h15{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h8{height:35.673437pt;}
.h7{height:37.090625pt;}
.ha{height:37.479688pt;}
.hf{height:38.953125pt;}
.h10{height:39.562500pt;}
.h5{height:41.112500pt;}
.h17{height:43.108125pt;}
.h18{height:43.782500pt;}
.h11{height:47.742188pt;}
.h9{height:52.832812pt;}
.h16{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h12{height:172.960000pt;}
.hb{height:514.653333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.280000pt;}
.w8{width:144.800000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.272000pt;}
.x18{left:7.200000pt;}
.x4{left:11.360000pt;}
.x16{left:16.160000pt;}
.x6{left:17.120000pt;}
.x10{left:22.720000pt;}
.x11{left:25.760000pt;}
.xf{left:27.680000pt;}
.x15{left:33.120000pt;}
.x14{left:35.840000pt;}
.x13{left:37.760000pt;}
.x1b{left:42.080000pt;}
.x1c{left:50.400000pt;}
.x19{left:55.240000pt;}
.x12{left:58.554667pt;}
.x1{left:69.600000pt;}
.x7{left:76.831988pt;}
.x2{left:85.146667pt;}
.x1a{left:94.554667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x17{left:194.106667pt;}
.xb{left:502.013322pt;}
.xd{left:529.533322pt;}
.xa{left:538.373322pt;}
.xc{left:552.933322pt;}
.x9{left:680.933322pt;}
.x8{left:697.279988pt;}
.xe{left:717.279988pt;}
}




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