
    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_de0d7faa02bc6e3c1f8990e0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8eba22b071b35978483082dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3a74dafa537780b23acf20c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_a489fd5e4ada6425bc937da9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e08faaf34445f9d11967476d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957520;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_db566209e9fe736f66a72e04.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.093000px;}
.ls7{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls6{letter-spacing:43.122720px;}
.ls4{letter-spacing:73.362720px;}
.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:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.ws6{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.152000px;}
._2{width:1.053360px;}
._1{width:2.688000px;}
._3{width:3.966480px;}
._4{width:5.220720px;}
._d{width:6.282000px;}
._c{width:7.410240px;}
._b{width:9.389520px;}
._5{width:10.502640px;}
._6{width:11.556000px;}
._e{width:12.788640px;}
._8{width:13.799280px;}
._14{width:16.568640px;}
._9{width:17.614080px;}
._a{width:18.824400px;}
._18{width:19.862640px;}
._f{width:20.916000px;}
._13{width:21.931920px;}
._12{width:23.817360px;}
._11{width:24.822720px;}
._17{width:26.115120px;}
._7{width:27.474480px;}
._10{width:28.684800px;}
._16{width:31.732560px;}
._15{width:32.748480px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:30.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.y6{bottom:47.160000px;}
.y9{bottom:57.780000px;}
.y8{bottom:78.516000px;}
.y40{bottom:99.216000px;}
.y3d{bottom:114.876000px;}
.y8b{bottom:122.076000px;}
.y65{bottom:128.916000px;}
.y3c{bottom:131.976000px;}
.y8a{bottom:139.356000px;}
.yb2{bottom:141.696000px;}
.y64{bottom:146.196000px;}
.yd2{bottom:149.076000px;}
.y3b{bottom:149.256000px;}
.y89{bottom:156.630000px;}
.yb1{bottom:158.790000px;}
.y63{bottom:163.470000px;}
.yd1{bottom:166.350000px;}
.y3a{bottom:166.530000px;}
.y88{bottom:173.910000px;}
.yb0{bottom:176.070000px;}
.y62{bottom:180.750000px;}
.yd0{bottom:183.630000px;}
.y39{bottom:183.810000px;}
.y87{bottom:191.190000px;}
.yaf{bottom:193.350000px;}
.y61{bottom:198.030000px;}
.ycf{bottom:200.910000px;}
.y38{bottom:201.090000px;}
.y86{bottom:208.290000px;}
.yae{bottom:210.630000px;}
.y60{bottom:215.130000px;}
.y37{bottom:218.190000px;}
.y85{bottom:225.570000px;}
.yad{bottom:227.910000px;}
.y5f{bottom:232.410000px;}
.y36{bottom:235.470000px;}
.y84{bottom:242.850000px;}
.yac{bottom:245.190000px;}
.y5e{bottom:249.690000px;}
.yce{bottom:252.570000px;}
.y35{bottom:252.750000px;}
.y83{bottom:260.130000px;}
.yab{bottom:262.290000px;}
.y5d{bottom:266.970000px;}
.ycd{bottom:269.850000px;}
.y34{bottom:270.030000px;}
.y82{bottom:277.410000px;}
.yaa{bottom:279.570000px;}
.y5c{bottom:284.250000px;}
.ycc{bottom:287.130000px;}
.y33{bottom:287.310000px;}
.y81{bottom:294.690000px;}
.ya9{bottom:296.850000px;}
.y5b{bottom:301.350000px;}
.ycb{bottom:304.410000px;}
.y32{bottom:304.590000px;}
.y80{bottom:311.790000px;}
.ya8{bottom:314.130000px;}
.y5a{bottom:318.630000px;}
.y31{bottom:321.690000px;}
.y7f{bottom:329.070000px;}
.ya7{bottom:331.410000px;}
.y59{bottom:335.910000px;}
.y30{bottom:339.015000px;}
.y7e{bottom:346.395000px;}
.ya6{bottom:348.735000px;}
.y58{bottom:353.235000px;}
.yca{bottom:356.115000px;}
.y2f{bottom:356.295000px;}
.y7d{bottom:363.675000px;}
.ya5{bottom:365.835000px;}
.y57{bottom:370.515000px;}
.yc9{bottom:373.395000px;}
.y2e{bottom:373.575000px;}
.y7c{bottom:380.955000px;}
.ya4{bottom:383.115000px;}
.y56{bottom:387.795000px;}
.yc8{bottom:390.675000px;}
.y2d{bottom:390.855000px;}
.y7b{bottom:398.235000px;}
.ya3{bottom:400.395000px;}
.y55{bottom:401.835000px;}
.yc7{bottom:407.955000px;}
.y2c{bottom:408.135000px;}
.y7a{bottom:415.335000px;}
.ya2{bottom:417.675000px;}
.y2b{bottom:425.235000px;}
.y79{bottom:432.615000px;}
.ya1{bottom:434.955000px;}
.y2a{bottom:442.515000px;}
.y78{bottom:449.895000px;}
.ya0{bottom:452.235000px;}
.yc6{bottom:459.615000px;}
.y29{bottom:459.795000px;}
.y77{bottom:467.175000px;}
.y9f{bottom:469.335000px;}
.yc5{bottom:476.895000px;}
.y28{bottom:477.075000px;}
.y76{bottom:484.455000px;}
.y9e{bottom:486.615000px;}
.yc4{bottom:494.175000px;}
.y27{bottom:494.355000px;}
.y75{bottom:501.735000px;}
.y9d{bottom:503.895000px;}
.yc3{bottom:511.455000px;}
.y26{bottom:511.635000px;}
.y74{bottom:518.835000px;}
.y9c{bottom:521.175000px;}
.y25{bottom:528.735000px;}
.y73{bottom:536.115000px;}
.y9b{bottom:538.455000px;}
.y24{bottom:544.395000px;}
.yc2{bottom:545.835000px;}
.y72{bottom:553.395000px;}
.y23{bottom:554.655000px;}
.y9a{bottom:555.555000px;}
.yc1{bottom:563.115000px;}
.y71{bottom:570.675000px;}
.y22{bottom:571.935000px;}
.y99{bottom:572.835000px;}
.yc0{bottom:580.395000px;}
.y70{bottom:587.955000px;}
.y21{bottom:589.215000px;}
.y98{bottom:590.115000px;}
.ybf{bottom:597.675000px;}
.y6f{bottom:605.085000px;}
.y20{bottom:606.525000px;}
.y97{bottom:607.425000px;}
.ybe{bottom:614.985000px;}
.y6e{bottom:622.365000px;}
.y1f{bottom:623.625000px;}
.y96{bottom:624.705000px;}
.ybd{bottom:632.265000px;}
.y6d{bottom:639.645000px;}
.y1e{bottom:640.905000px;}
.y95{bottom:641.985000px;}
.ybc{bottom:649.365000px;}
.y6c{bottom:656.925000px;}
.y1d{bottom:658.185000px;}
.y94{bottom:659.085000px;}
.ybb{bottom:666.645000px;}
.y6b{bottom:674.205000px;}
.y1c{bottom:675.465000px;}
.y93{bottom:676.365000px;}
.yba{bottom:683.925000px;}
.y6a{bottom:691.485000px;}
.y1b{bottom:692.745000px;}
.y92{bottom:693.645000px;}
.yb9{bottom:701.205000px;}
.y69{bottom:708.585000px;}
.y1a{bottom:710.025000px;}
.y91{bottom:710.925000px;}
.yb8{bottom:718.485000px;}
.y68{bottom:725.865000px;}
.y19{bottom:727.125000px;}
.y90{bottom:728.205000px;}
.yb7{bottom:735.765000px;}
.y67{bottom:743.145000px;}
.y18{bottom:744.405000px;}
.y8f{bottom:745.485000px;}
.yb6{bottom:752.865000px;}
.y66{bottom:757.185000px;}
.y17{bottom:761.685000px;}
.y8e{bottom:762.585000px;}
.yb5{bottom:770.145000px;}
.y16{bottom:778.965000px;}
.y8d{bottom:779.865000px;}
.yb4{bottom:787.425000px;}
.y8c{bottom:793.905000px;}
.y15{bottom:796.245000px;}
.yb3{bottom:804.705000px;}
.y14{bottom:813.345000px;}
.y54{bottom:821.985000px;}
.y13{bottom:830.625000px;}
.y53{bottom:839.265000px;}
.y12{bottom:847.905000px;}
.y52{bottom:856.365000px;}
.y11{bottom:865.185000px;}
.y51{bottom:873.690000px;}
.y10{bottom:882.510000px;}
.y50{bottom:890.970000px;}
.yf{bottom:902.310000px;}
.y4f{bottom:908.250000px;}
.ye{bottom:919.590000px;}
.y4e{bottom:925.530000px;}
.yd{bottom:936.870000px;}
.y4d{bottom:942.630000px;}
.yc{bottom:954.690000px;}
.y4c{bottom:959.910000px;}
.yb{bottom:975.390000px;}
.y4b{bottom:977.190000px;}
.y4a{bottom:994.470000px;}
.ya{bottom:997.530000px;}
.y49{bottom:1011.750000px;}
.y7{bottom:1023.810000px;}
.y48{bottom:1029.030000px;}
.y5{bottom:1040.550000px;}
.y47{bottom:1046.130000px;}
.y46{bottom:1063.410000px;}
.y45{bottom:1080.690000px;}
.y44{bottom:1097.970000px;}
.y43{bottom:1115.250000px;}
.y42{bottom:1132.530000px;}
.y3{bottom:1149.300000px;}
.y41{bottom:1149.660000px;}
.y3f{bottom:1167.660000px;}
.y1{bottom:1179.180000px;}
.y3e{bottom:1192.140000px;}
.hd{height:21.336328px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.ha{height:42.164648px;}
.hc{height:49.255313px;}
.h5{height:50.800781px;}
.he{height:52.171875px;}
.hb{height:53.573906px;}
.h3{height:64.546875px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h8{height:86.255508px;}
.h6{height:108.756000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:199.830000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:23.940000px;}
.x3{left:42.300000px;}
.x6{left:62.310000px;}
.x10{left:97.235987px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.xf{left:110.195987px;}
.xb{left:118.115987px;}
.x20{left:151.229987px;}
.x4{left:182.559000px;}
.x1c{left:213.149987px;}
.x1d{left:233.129987px;}
.x2{left:240.519000px;}
.x15{left:273.314987px;}
.x16{left:307.694987px;}
.x12{left:308.774987px;}
.x1b{left:314.174987px;}
.x18{left:320.294987px;}
.x5{left:352.695000px;}
.x19{left:358.274987px;}
.xd{left:360.434987px;}
.x11{left:386.534987px;}
.x1f{left:395.714987px;}
.x1e{left:400.784987px;}
.x13{left:433.004987px;}
.xa{left:445.604987px;}
.xc{left:452.264987px;}
.xe{left:459.104987px;}
.x7{left:618.450000px;}
.x17{left:661.649987px;}
.x1a{left:685.409987px;}
.x14{left:697.469987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.082667pt;}
.ls7{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls6{letter-spacing:38.331307pt;}
.ls4{letter-spacing:65.211307pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.024000pt;}
._2{width:0.936320pt;}
._1{width:2.389333pt;}
._3{width:3.525760pt;}
._4{width:4.640640pt;}
._d{width:5.584000pt;}
._c{width:6.586880pt;}
._b{width:8.346240pt;}
._5{width:9.335680pt;}
._6{width:10.272000pt;}
._e{width:11.367680pt;}
._8{width:12.266027pt;}
._14{width:14.727680pt;}
._9{width:15.656960pt;}
._a{width:16.732800pt;}
._18{width:17.655680pt;}
._f{width:18.592000pt;}
._13{width:19.495040pt;}
._12{width:21.170987pt;}
._11{width:22.064640pt;}
._17{width:23.213440pt;}
._7{width:24.421760pt;}
._10{width:25.497600pt;}
._16{width:28.206720pt;}
._15{width:29.109760pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.y6{bottom:41.920000pt;}
.y9{bottom:51.360000pt;}
.y8{bottom:69.792000pt;}
.y40{bottom:88.192000pt;}
.y3d{bottom:102.112000pt;}
.y8b{bottom:108.512000pt;}
.y65{bottom:114.592000pt;}
.y3c{bottom:117.312000pt;}
.y8a{bottom:123.872000pt;}
.yb2{bottom:125.952000pt;}
.y64{bottom:129.952000pt;}
.yd2{bottom:132.512000pt;}
.y3b{bottom:132.672000pt;}
.y89{bottom:139.226667pt;}
.yb1{bottom:141.146667pt;}
.y63{bottom:145.306667pt;}
.yd1{bottom:147.866667pt;}
.y3a{bottom:148.026667pt;}
.y88{bottom:154.586667pt;}
.yb0{bottom:156.506667pt;}
.y62{bottom:160.666667pt;}
.yd0{bottom:163.226667pt;}
.y39{bottom:163.386667pt;}
.y87{bottom:169.946667pt;}
.yaf{bottom:171.866667pt;}
.y61{bottom:176.026667pt;}
.ycf{bottom:178.586667pt;}
.y38{bottom:178.746667pt;}
.y86{bottom:185.146667pt;}
.yae{bottom:187.226667pt;}
.y60{bottom:191.226667pt;}
.y37{bottom:193.946667pt;}
.y85{bottom:200.506667pt;}
.yad{bottom:202.586667pt;}
.y5f{bottom:206.586667pt;}
.y36{bottom:209.306667pt;}
.y84{bottom:215.866667pt;}
.yac{bottom:217.946667pt;}
.y5e{bottom:221.946667pt;}
.yce{bottom:224.506667pt;}
.y35{bottom:224.666667pt;}
.y83{bottom:231.226667pt;}
.yab{bottom:233.146667pt;}
.y5d{bottom:237.306667pt;}
.ycd{bottom:239.866667pt;}
.y34{bottom:240.026667pt;}
.y82{bottom:246.586667pt;}
.yaa{bottom:248.506667pt;}
.y5c{bottom:252.666667pt;}
.ycc{bottom:255.226667pt;}
.y33{bottom:255.386667pt;}
.y81{bottom:261.946667pt;}
.ya9{bottom:263.866667pt;}
.y5b{bottom:267.866667pt;}
.ycb{bottom:270.586667pt;}
.y32{bottom:270.746667pt;}
.y80{bottom:277.146667pt;}
.ya8{bottom:279.226667pt;}
.y5a{bottom:283.226667pt;}
.y31{bottom:285.946667pt;}
.y7f{bottom:292.506667pt;}
.ya7{bottom:294.586667pt;}
.y59{bottom:298.586667pt;}
.y30{bottom:301.346667pt;}
.y7e{bottom:307.906667pt;}
.ya6{bottom:309.986667pt;}
.y58{bottom:313.986667pt;}
.yca{bottom:316.546667pt;}
.y2f{bottom:316.706667pt;}
.y7d{bottom:323.266667pt;}
.ya5{bottom:325.186667pt;}
.y57{bottom:329.346667pt;}
.yc9{bottom:331.906667pt;}
.y2e{bottom:332.066667pt;}
.y7c{bottom:338.626667pt;}
.ya4{bottom:340.546667pt;}
.y56{bottom:344.706667pt;}
.yc8{bottom:347.266667pt;}
.y2d{bottom:347.426667pt;}
.y7b{bottom:353.986667pt;}
.ya3{bottom:355.906667pt;}
.y55{bottom:357.186667pt;}
.yc7{bottom:362.626667pt;}
.y2c{bottom:362.786667pt;}
.y7a{bottom:369.186667pt;}
.ya2{bottom:371.266667pt;}
.y2b{bottom:377.986667pt;}
.y79{bottom:384.546667pt;}
.ya1{bottom:386.626667pt;}
.y2a{bottom:393.346667pt;}
.y78{bottom:399.906667pt;}
.ya0{bottom:401.986667pt;}
.yc6{bottom:408.546667pt;}
.y29{bottom:408.706667pt;}
.y77{bottom:415.266667pt;}
.y9f{bottom:417.186667pt;}
.yc5{bottom:423.906667pt;}
.y28{bottom:424.066667pt;}
.y76{bottom:430.626667pt;}
.y9e{bottom:432.546667pt;}
.yc4{bottom:439.266667pt;}
.y27{bottom:439.426667pt;}
.y75{bottom:445.986667pt;}
.y9d{bottom:447.906667pt;}
.yc3{bottom:454.626667pt;}
.y26{bottom:454.786667pt;}
.y74{bottom:461.186667pt;}
.y9c{bottom:463.266667pt;}
.y25{bottom:469.986667pt;}
.y73{bottom:476.546667pt;}
.y9b{bottom:478.626667pt;}
.y24{bottom:483.906667pt;}
.yc2{bottom:485.186667pt;}
.y72{bottom:491.906667pt;}
.y23{bottom:493.026667pt;}
.y9a{bottom:493.826667pt;}
.yc1{bottom:500.546667pt;}
.y71{bottom:507.266667pt;}
.y22{bottom:508.386667pt;}
.y99{bottom:509.186667pt;}
.yc0{bottom:515.906667pt;}
.y70{bottom:522.626667pt;}
.y21{bottom:523.746667pt;}
.y98{bottom:524.546667pt;}
.ybf{bottom:531.266667pt;}
.y6f{bottom:537.853333pt;}
.y20{bottom:539.133333pt;}
.y97{bottom:539.933333pt;}
.ybe{bottom:546.653333pt;}
.y6e{bottom:553.213333pt;}
.y1f{bottom:554.333333pt;}
.y96{bottom:555.293333pt;}
.ybd{bottom:562.013333pt;}
.y6d{bottom:568.573333pt;}
.y1e{bottom:569.693333pt;}
.y95{bottom:570.653333pt;}
.ybc{bottom:577.213333pt;}
.y6c{bottom:583.933333pt;}
.y1d{bottom:585.053333pt;}
.y94{bottom:585.853333pt;}
.ybb{bottom:592.573333pt;}
.y6b{bottom:599.293333pt;}
.y1c{bottom:600.413333pt;}
.y93{bottom:601.213333pt;}
.yba{bottom:607.933333pt;}
.y6a{bottom:614.653333pt;}
.y1b{bottom:615.773333pt;}
.y92{bottom:616.573333pt;}
.yb9{bottom:623.293333pt;}
.y69{bottom:629.853333pt;}
.y1a{bottom:631.133333pt;}
.y91{bottom:631.933333pt;}
.yb8{bottom:638.653333pt;}
.y68{bottom:645.213333pt;}
.y19{bottom:646.333333pt;}
.y90{bottom:647.293333pt;}
.yb7{bottom:654.013333pt;}
.y67{bottom:660.573333pt;}
.y18{bottom:661.693333pt;}
.y8f{bottom:662.653333pt;}
.yb6{bottom:669.213333pt;}
.y66{bottom:673.053333pt;}
.y17{bottom:677.053333pt;}
.y8e{bottom:677.853333pt;}
.yb5{bottom:684.573333pt;}
.y16{bottom:692.413333pt;}
.y8d{bottom:693.213333pt;}
.yb4{bottom:699.933333pt;}
.y8c{bottom:705.693333pt;}
.y15{bottom:707.773333pt;}
.yb3{bottom:715.293333pt;}
.y14{bottom:722.973333pt;}
.y54{bottom:730.653333pt;}
.y13{bottom:738.333333pt;}
.y53{bottom:746.013333pt;}
.y12{bottom:753.693333pt;}
.y52{bottom:761.213333pt;}
.y11{bottom:769.053333pt;}
.y51{bottom:776.613333pt;}
.y10{bottom:784.453333pt;}
.y50{bottom:791.973333pt;}
.yf{bottom:802.053333pt;}
.y4f{bottom:807.333333pt;}
.ye{bottom:817.413333pt;}
.y4e{bottom:822.693333pt;}
.yd{bottom:832.773333pt;}
.y4d{bottom:837.893333pt;}
.yc{bottom:848.613333pt;}
.y4c{bottom:853.253333pt;}
.yb{bottom:867.013333pt;}
.y4b{bottom:868.613333pt;}
.y4a{bottom:883.973333pt;}
.ya{bottom:886.693333pt;}
.y49{bottom:899.333333pt;}
.y7{bottom:910.053333pt;}
.y48{bottom:914.693333pt;}
.y5{bottom:924.933333pt;}
.y47{bottom:929.893333pt;}
.y46{bottom:945.253333pt;}
.y45{bottom:960.613333pt;}
.y44{bottom:975.973333pt;}
.y43{bottom:991.333333pt;}
.y42{bottom:1006.693333pt;}
.y3{bottom:1021.600000pt;}
.y41{bottom:1021.920000pt;}
.y3f{bottom:1037.920000pt;}
.y1{bottom:1048.160000pt;}
.y3e{bottom:1059.680000pt;}
.hd{height:18.965625pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.ha{height:37.479688pt;}
.hc{height:43.782500pt;}
.h5{height:45.156250pt;}
.he{height:46.375000pt;}
.hb{height:47.621250pt;}
.h3{height:57.375000pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h8{height:76.671562pt;}
.h6{height:96.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:177.626667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:21.280000pt;}
.x3{left:37.600000pt;}
.x6{left:55.386667pt;}
.x10{left:86.431988pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.xf{left:97.951988pt;}
.xb{left:104.991988pt;}
.x20{left:134.426655pt;}
.x4{left:162.274667pt;}
.x1c{left:189.466655pt;}
.x1d{left:207.226655pt;}
.x2{left:213.794667pt;}
.x15{left:242.946655pt;}
.x16{left:273.506655pt;}
.x12{left:274.466655pt;}
.x1b{left:279.266655pt;}
.x18{left:284.706655pt;}
.x5{left:313.506667pt;}
.x19{left:318.466655pt;}
.xd{left:320.386655pt;}
.x11{left:343.586655pt;}
.x1f{left:351.746655pt;}
.x1e{left:356.253322pt;}
.x13{left:384.893322pt;}
.xa{left:396.093322pt;}
.xc{left:402.013322pt;}
.xe{left:408.093322pt;}
.x7{left:549.733333pt;}
.x17{left:588.133322pt;}
.x1a{left:609.253322pt;}
.x14{left:619.973322pt;}
}




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