
    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_b7fafb22f6198a98d763c5c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_e754910a42e45605dc215589.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_69aa0e14a3a1d5f5d57c833b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_11789211bde06516df9ec098.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_ba95b7c6189d967314e95e95.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_57c53e014ab63a8c31054bd9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:10.260000px;}
.lsa{letter-spacing:39.881280px;}
.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;}
}
.ws7{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.450800px;}
.ws9{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-4.305600px;}
._f{margin-left:-3.167280px;}
._e{margin-left:-2.091600px;}
._2{margin-left:-1.059840px;}
._0{width:1.075680px;}
._1{width:2.203200px;}
._9{width:3.447600px;}
._8{width:4.780800px;}
._7{width:5.856480px;}
._6{width:7.051680px;}
._10{width:8.187120px;}
._13{width:9.339840px;}
._5{width:10.681200px;}
._4{width:12.250800px;}
._17{width:13.516560px;}
._11{width:14.641680px;}
._14{width:18.282240px;}
._16{width:19.540800px;}
._18{width:21.528000px;}
._20{width:23.272560px;}
._1b{width:24.376320px;}
._19{width:26.231040px;}
._22{width:27.489600px;}
._1e{width:29.432880px;}
._1f{width:30.712320px;}
._23{width:32.457600px;}
._1a{width:34.436640px;}
._b{width:35.676720px;}
._a{width:36.692640px;}
._1d{width:38.959200px;}
._1c{width:40.273920px;}
._31{width:41.918880px;}
._2f{width:44.523360px;}
._2e{width:45.573120px;}
._30{width:47.092080px;}
._c{width:49.780080px;}
._d{width:52.368240px;}
._12{width:59.400000px;}
._39{width:60.431040px;}
._26{width:61.801920px;}
._27{width:63.325440px;}
._28{width:67.898880px;}
._29{width:69.351840px;}
._24{width:75.381120px;}
._37{width:84.654720px;}
._38{width:85.680720px;}
._36{width:95.333760px;}
._35{width:96.523200px;}
._2a{width:106.646400px;}
._2b{width:107.876880px;}
._2c{width:108.957360px;}
._32{width:157.982400px;}
._2d{width:165.533760px;}
._21{width:199.269360px;}
._33{width:240.252480px;}
._34{width:241.306560px;}
._25{width:495.828720px;}
._3{width:964.574400px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.940000px;}
.y7e{bottom:6.300000px;}
.y4{bottom:6.480000px;}
.y8{bottom:47.880000px;}
.y7{bottom:51.480000px;}
.ya7{bottom:53.100000px;}
.ya6{bottom:56.520000px;}
.y6{bottom:70.056000px;}
.ya5{bottom:75.276000px;}
.y74{bottom:113.796000px;}
.y44{bottom:119.196000px;}
.y7b{bottom:131.796000px;}
.y73{bottom:135.576000px;}
.y43{bottom:135.756000px;}
.y42{bottom:149.616000px;}
.y7a{bottom:153.570000px;}
.y92{bottom:155.190000px;}
.y72{bottom:157.350000px;}
.y41{bottom:164.190000px;}
.y79{bottom:175.350000px;}
.y91{bottom:176.970000px;}
.y71{bottom:179.130000px;}
.y40{bottom:181.290000px;}
.y78{bottom:197.130000px;}
.y3f{bottom:198.570000px;}
.y90{bottom:198.750000px;}
.y70{bottom:201.090000px;}
.y3e{bottom:215.850000px;}
.y77{bottom:219.090000px;}
.y8f{bottom:220.530000px;}
.y6f{bottom:222.870000px;}
.y3d{bottom:233.130000px;}
.y76{bottom:240.870000px;}
.y8e{bottom:242.310000px;}
.y6e{bottom:244.650000px;}
.y3c{bottom:250.410000px;}
.y75{bottom:259.050000px;}
.ya4{bottom:262.650000px;}
.y8d{bottom:264.270000px;}
.y6d{bottom:266.430000px;}
.y3b{bottom:267.690000px;}
.ya3{bottom:284.430000px;}
.y3a{bottom:284.790000px;}
.y8c{bottom:286.050000px;}
.y6c{bottom:288.210000px;}
.y39{bottom:302.070000px;}
.ya2{bottom:306.390000px;}
.y8b{bottom:307.830000px;}
.y6b{bottom:310.170000px;}
.y38{bottom:319.350000px;}
.ya1{bottom:328.170000px;}
.y8a{bottom:329.610000px;}
.y6a{bottom:331.950000px;}
.y37{bottom:336.675000px;}
.ya0{bottom:349.995000px;}
.y89{bottom:351.615000px;}
.y69{bottom:353.775000px;}
.y36{bottom:353.955000px;}
.y35{bottom:371.055000px;}
.y9f{bottom:371.775000px;}
.y88{bottom:373.395000px;}
.y68{bottom:375.555000px;}
.y34{bottom:388.335000px;}
.y9e{bottom:393.555000px;}
.y87{bottom:395.175000px;}
.y67{bottom:397.515000px;}
.y33{bottom:405.615000px;}
.y9d{bottom:415.515000px;}
.y86{bottom:416.955000px;}
.y66{bottom:419.295000px;}
.y32{bottom:422.895000px;}
.y85{bottom:438.735000px;}
.y31{bottom:440.175000px;}
.y65{bottom:441.075000px;}
.y30{bottom:457.455000px;}
.y84{bottom:460.695000px;}
.y64{bottom:462.855000px;}
.y2f{bottom:474.555000px;}
.y83{bottom:482.475000px;}
.y63{bottom:484.635000px;}
.y2e{bottom:491.835000px;}
.y82{bottom:504.255000px;}
.y62{bottom:506.595000px;}
.y2d{bottom:509.115000px;}
.y81{bottom:520.455000px;}
.y2c{bottom:526.395000px;}
.y61{bottom:528.375000px;}
.y80{bottom:542.415000px;}
.y2b{bottom:543.675000px;}
.y60{bottom:550.155000px;}
.y2a{bottom:560.955000px;}
.y7f{bottom:564.195000px;}
.y5f{bottom:571.935000px;}
.y29{bottom:578.055000px;}
.y7d{bottom:585.975000px;}
.y5e{bottom:593.895000px;}
.y28{bottom:595.335000px;}
.y7c{bottom:608.505000px;}
.y27{bottom:612.645000px;}
.y5d{bottom:615.705000px;}
.y26{bottom:629.925000px;}
.y9c{bottom:634.605000px;}
.y5c{bottom:637.485000px;}
.y25{bottom:647.205000px;}
.y9b{bottom:656.385000px;}
.y5b{bottom:659.265000px;}
.y24{bottom:664.305000px;}
.y9a{bottom:678.165000px;}
.y5a{bottom:681.045000px;}
.y23{bottom:681.585000px;}
.y22{bottom:698.865000px;}
.y99{bottom:699.945000px;}
.y59{bottom:703.005000px;}
.y21{bottom:716.145000px;}
.y98{bottom:721.905000px;}
.y58{bottom:724.785000px;}
.y20{bottom:733.425000px;}
.y97{bottom:743.685000px;}
.y57{bottom:746.565000px;}
.y1f{bottom:750.705000px;}
.y96{bottom:765.465000px;}
.y1e{bottom:767.805000px;}
.y56{bottom:768.345000px;}
.y1d{bottom:785.085000px;}
.y95{bottom:787.245000px;}
.y55{bottom:790.125000px;}
.y1c{bottom:802.365000px;}
.y94{bottom:809.025000px;}
.y54{bottom:812.085000px;}
.y1b{bottom:819.645000px;}
.y93{bottom:827.385000px;}
.y53{bottom:833.865000px;}
.y1a{bottom:836.925000px;}
.y19{bottom:854.565000px;}
.y52{bottom:855.645000px;}
.y51{bottom:877.470000px;}
.y18{bottom:878.370000px;}
.y17{bottom:890.430000px;}
.y50{bottom:899.430000px;}
.y16{bottom:907.710000px;}
.y4f{bottom:921.210000px;}
.y15{bottom:924.810000px;}
.y4e{bottom:942.990000px;}
.y14{bottom:947.310000px;}
.y13{bottom:959.910000px;}
.y4d{bottom:964.770000px;}
.y12{bottom:978.810000px;}
.y4c{bottom:986.550000px;}
.y11{bottom:996.630000px;}
.y4b{bottom:1008.510000px;}
.y10{bottom:1012.110000px;}
.y4a{bottom:1030.290000px;}
.yf{bottom:1034.430000px;}
.y49{bottom:1052.070000px;}
.ye{bottom:1057.290000px;}
.yd{bottom:1071.870000px;}
.y48{bottom:1073.850000px;}
.yc{bottom:1089.150000px;}
.y47{bottom:1095.810000px;}
.yb{bottom:1106.430000px;}
.y46{bottom:1117.590000px;}
.ya{bottom:1123.530000px;}
.y45{bottom:1139.400000px;}
.y9{bottom:1140.840000px;}
.y5{bottom:1184.040000px;}
.y3{bottom:1184.760000px;}
.y1{bottom:1187.460000px;}
.h2{height:20.700000px;}
.h14{height:21.780000px;}
.h13{height:21.816000px;}
.h12{height:21.960000px;}
.h4{height:25.020000px;}
.hc{height:27.147656px;}
.h9{height:33.683203px;}
.hf{height:34.036523px;}
.h7{height:39.760312px;}
.h6{height:41.726953px;}
.h8{height:42.164648px;}
.h3{height:46.251562px;}
.h5{height:46.380937px;}
.h10{height:46.736719px;}
.hd{height:48.027656px;}
.h15{height:48.224531px;}
.he{height:49.255313px;}
.hb{height:53.224453px;}
.h11{height:54.596250px;}
.ha{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:34.380000px;}
.w4{width:53.100000px;}
.w8{width:138.996000px;}
.w9{width:148.896000px;}
.w7{width:169.020000px;}
.wa{width:219.450000px;}
.w3{width:242.310000px;}
.w5{width:627.405000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:3.060000px;}
.x5{left:8.100000px;}
.x20{left:90.035987px;}
.x4{left:108.036000px;}
.x13{left:109.835987px;}
.xc{left:111.095987px;}
.x1d{left:115.775987px;}
.x1{left:125.496000px;}
.x10{left:128.555987px;}
.x8{left:130.535987px;}
.x1e{left:135.035987px;}
.xa{left:143.135987px;}
.x14{left:148.535987px;}
.x6{left:161.130000px;}
.xe{left:165.629987px;}
.x3{left:175.170000px;}
.x1b{left:191.549987px;}
.xf{left:214.049987px;}
.x1f{left:216.029987px;}
.x1c{left:225.029987px;}
.x18{left:277.050000px;}
.x16{left:317.774987px;}
.xb{left:330.194987px;}
.x9{left:358.454987px;}
.x12{left:413.354987px;}
.x11{left:414.974987px;}
.xd{left:416.594987px;}
.x17{left:473.504987px;}
.x19{left:564.945000px;}
.x15{left:658.769987px;}
.x1a{left:718.529987px;}
.x7{left:785.129987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:9.120000pt;}
.lsa{letter-spacing:35.450027pt;}
.ws7{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.622933pt;}
.ws9{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-3.827200pt;}
._f{margin-left:-2.815360pt;}
._e{margin-left:-1.859200pt;}
._2{margin-left:-0.942080pt;}
._0{width:0.956160pt;}
._1{width:1.958400pt;}
._9{width:3.064533pt;}
._8{width:4.249600pt;}
._7{width:5.205760pt;}
._6{width:6.268160pt;}
._10{width:7.277440pt;}
._13{width:8.302080pt;}
._5{width:9.494400pt;}
._4{width:10.889600pt;}
._17{width:12.014720pt;}
._11{width:13.014827pt;}
._14{width:16.250880pt;}
._16{width:17.369600pt;}
._18{width:19.136000pt;}
._20{width:20.686720pt;}
._1b{width:21.667840pt;}
._19{width:23.316480pt;}
._22{width:24.435200pt;}
._1e{width:26.162560pt;}
._1f{width:27.299840pt;}
._23{width:28.851200pt;}
._1a{width:30.610347pt;}
._b{width:31.712640pt;}
._a{width:32.615680pt;}
._1d{width:34.630400pt;}
._1c{width:35.799040pt;}
._31{width:37.261227pt;}
._2f{width:39.576320pt;}
._2e{width:40.509440pt;}
._30{width:41.859627pt;}
._c{width:44.248960pt;}
._d{width:46.549547pt;}
._12{width:52.800000pt;}
._39{width:53.716480pt;}
._26{width:54.935040pt;}
._27{width:56.289280pt;}
._28{width:60.354560pt;}
._29{width:61.646080pt;}
._24{width:67.005440pt;}
._37{width:75.248640pt;}
._38{width:76.160640pt;}
._36{width:84.741120pt;}
._35{width:85.798400pt;}
._2a{width:94.796800pt;}
._2b{width:95.890560pt;}
._2c{width:96.850987pt;}
._32{width:140.428800pt;}
._2d{width:147.141120pt;}
._21{width:177.128320pt;}
._33{width:213.557760pt;}
._34{width:214.494720pt;}
._25{width:440.736640pt;}
._3{width:857.399467pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.280000pt;}
.y7e{bottom:5.600000pt;}
.y4{bottom:5.760000pt;}
.y8{bottom:42.560000pt;}
.y7{bottom:45.760000pt;}
.ya7{bottom:47.200000pt;}
.ya6{bottom:50.240000pt;}
.y6{bottom:62.272000pt;}
.ya5{bottom:66.912000pt;}
.y74{bottom:101.152000pt;}
.y44{bottom:105.952000pt;}
.y7b{bottom:117.152000pt;}
.y73{bottom:120.512000pt;}
.y43{bottom:120.672000pt;}
.y42{bottom:132.992000pt;}
.y7a{bottom:136.506667pt;}
.y92{bottom:137.946667pt;}
.y72{bottom:139.866667pt;}
.y41{bottom:145.946667pt;}
.y79{bottom:155.866667pt;}
.y91{bottom:157.306667pt;}
.y71{bottom:159.226667pt;}
.y40{bottom:161.146667pt;}
.y78{bottom:175.226667pt;}
.y3f{bottom:176.506667pt;}
.y90{bottom:176.666667pt;}
.y70{bottom:178.746667pt;}
.y3e{bottom:191.866667pt;}
.y77{bottom:194.746667pt;}
.y8f{bottom:196.026667pt;}
.y6f{bottom:198.106667pt;}
.y3d{bottom:207.226667pt;}
.y76{bottom:214.106667pt;}
.y8e{bottom:215.386667pt;}
.y6e{bottom:217.466667pt;}
.y3c{bottom:222.586667pt;}
.y75{bottom:230.266667pt;}
.ya4{bottom:233.466667pt;}
.y8d{bottom:234.906667pt;}
.y6d{bottom:236.826667pt;}
.y3b{bottom:237.946667pt;}
.ya3{bottom:252.826667pt;}
.y3a{bottom:253.146667pt;}
.y8c{bottom:254.266667pt;}
.y6c{bottom:256.186667pt;}
.y39{bottom:268.506667pt;}
.ya2{bottom:272.346667pt;}
.y8b{bottom:273.626667pt;}
.y6b{bottom:275.706667pt;}
.y38{bottom:283.866667pt;}
.ya1{bottom:291.706667pt;}
.y8a{bottom:292.986667pt;}
.y6a{bottom:295.066667pt;}
.y37{bottom:299.266667pt;}
.ya0{bottom:311.106667pt;}
.y89{bottom:312.546667pt;}
.y69{bottom:314.466667pt;}
.y36{bottom:314.626667pt;}
.y35{bottom:329.826667pt;}
.y9f{bottom:330.466667pt;}
.y88{bottom:331.906667pt;}
.y68{bottom:333.826667pt;}
.y34{bottom:345.186667pt;}
.y9e{bottom:349.826667pt;}
.y87{bottom:351.266667pt;}
.y67{bottom:353.346667pt;}
.y33{bottom:360.546667pt;}
.y9d{bottom:369.346667pt;}
.y86{bottom:370.626667pt;}
.y66{bottom:372.706667pt;}
.y32{bottom:375.906667pt;}
.y85{bottom:389.986667pt;}
.y31{bottom:391.266667pt;}
.y65{bottom:392.066667pt;}
.y30{bottom:406.626667pt;}
.y84{bottom:409.506667pt;}
.y64{bottom:411.426667pt;}
.y2f{bottom:421.826667pt;}
.y83{bottom:428.866667pt;}
.y63{bottom:430.786667pt;}
.y2e{bottom:437.186667pt;}
.y82{bottom:448.226667pt;}
.y62{bottom:450.306667pt;}
.y2d{bottom:452.546667pt;}
.y81{bottom:462.626667pt;}
.y2c{bottom:467.906667pt;}
.y61{bottom:469.666667pt;}
.y80{bottom:482.146667pt;}
.y2b{bottom:483.266667pt;}
.y60{bottom:489.026667pt;}
.y2a{bottom:498.626667pt;}
.y7f{bottom:501.506667pt;}
.y5f{bottom:508.386667pt;}
.y29{bottom:513.826667pt;}
.y7d{bottom:520.866667pt;}
.y5e{bottom:527.906667pt;}
.y28{bottom:529.186667pt;}
.y7c{bottom:540.893333pt;}
.y27{bottom:544.573333pt;}
.y5d{bottom:547.293333pt;}
.y26{bottom:559.933333pt;}
.y9c{bottom:564.093333pt;}
.y5c{bottom:566.653333pt;}
.y25{bottom:575.293333pt;}
.y9b{bottom:583.453333pt;}
.y5b{bottom:586.013333pt;}
.y24{bottom:590.493333pt;}
.y9a{bottom:602.813333pt;}
.y5a{bottom:605.373333pt;}
.y23{bottom:605.853333pt;}
.y22{bottom:621.213333pt;}
.y99{bottom:622.173333pt;}
.y59{bottom:624.893333pt;}
.y21{bottom:636.573333pt;}
.y98{bottom:641.693333pt;}
.y58{bottom:644.253333pt;}
.y20{bottom:651.933333pt;}
.y97{bottom:661.053333pt;}
.y57{bottom:663.613333pt;}
.y1f{bottom:667.293333pt;}
.y96{bottom:680.413333pt;}
.y1e{bottom:682.493333pt;}
.y56{bottom:682.973333pt;}
.y1d{bottom:697.853333pt;}
.y95{bottom:699.773333pt;}
.y55{bottom:702.333333pt;}
.y1c{bottom:713.213333pt;}
.y94{bottom:719.133333pt;}
.y54{bottom:721.853333pt;}
.y1b{bottom:728.573333pt;}
.y93{bottom:735.453333pt;}
.y53{bottom:741.213333pt;}
.y1a{bottom:743.933333pt;}
.y19{bottom:759.613333pt;}
.y52{bottom:760.573333pt;}
.y51{bottom:779.973333pt;}
.y18{bottom:780.773333pt;}
.y17{bottom:791.493333pt;}
.y50{bottom:799.493333pt;}
.y16{bottom:806.853333pt;}
.y4f{bottom:818.853333pt;}
.y15{bottom:822.053333pt;}
.y4e{bottom:838.213333pt;}
.y14{bottom:842.053333pt;}
.y13{bottom:853.253333pt;}
.y4d{bottom:857.573333pt;}
.y12{bottom:870.053333pt;}
.y4c{bottom:876.933333pt;}
.y11{bottom:885.893333pt;}
.y4b{bottom:896.453333pt;}
.y10{bottom:899.653333pt;}
.y4a{bottom:915.813333pt;}
.yf{bottom:919.493333pt;}
.y49{bottom:935.173333pt;}
.ye{bottom:939.813333pt;}
.yd{bottom:952.773333pt;}
.y48{bottom:954.533333pt;}
.yc{bottom:968.133333pt;}
.y47{bottom:974.053333pt;}
.yb{bottom:983.493333pt;}
.y46{bottom:993.413333pt;}
.ya{bottom:998.693333pt;}
.y45{bottom:1012.800000pt;}
.y9{bottom:1014.080000pt;}
.y5{bottom:1052.480000pt;}
.y3{bottom:1053.120000pt;}
.y1{bottom:1055.520000pt;}
.h2{height:18.400000pt;}
.h14{height:19.360000pt;}
.h13{height:19.392000pt;}
.h12{height:19.520000pt;}
.h4{height:22.240000pt;}
.hc{height:24.131250pt;}
.h9{height:29.940625pt;}
.hf{height:30.254687pt;}
.h7{height:35.342500pt;}
.h6{height:37.090625pt;}
.h8{height:37.479688pt;}
.h3{height:41.112500pt;}
.h5{height:41.227500pt;}
.h10{height:41.543750pt;}
.hd{height:42.691250pt;}
.h15{height:42.866250pt;}
.he{height:43.782500pt;}
.hb{height:47.310625pt;}
.h11{height:48.530000pt;}
.ha{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:30.560000pt;}
.w4{width:47.200000pt;}
.w8{width:123.552000pt;}
.w9{width:132.352000pt;}
.w7{width:150.240000pt;}
.wa{width:195.066667pt;}
.w3{width:215.386667pt;}
.w5{width:557.693333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:2.720000pt;}
.x5{left:7.200000pt;}
.x20{left:80.031988pt;}
.x4{left:96.032000pt;}
.x13{left:97.631988pt;}
.xc{left:98.751988pt;}
.x1d{left:102.911988pt;}
.x1{left:111.552000pt;}
.x10{left:114.271988pt;}
.x8{left:116.031988pt;}
.x1e{left:120.031988pt;}
.xa{left:127.231988pt;}
.x14{left:132.031988pt;}
.x6{left:143.226667pt;}
.xe{left:147.226655pt;}
.x3{left:155.706667pt;}
.x1b{left:170.266655pt;}
.xf{left:190.266655pt;}
.x1f{left:192.026655pt;}
.x1c{left:200.026655pt;}
.x18{left:246.266667pt;}
.x16{left:282.466655pt;}
.xb{left:293.506655pt;}
.x9{left:318.626655pt;}
.x12{left:367.426655pt;}
.x11{left:368.866655pt;}
.xd{left:370.306655pt;}
.x17{left:420.893322pt;}
.x19{left:502.173333pt;}
.x15{left:585.573322pt;}
.x1a{left:638.693322pt;}
.x7{left:697.893322pt;}
}




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