
    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_514ff994fc64950f5df5f952.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_73c649ce431c14329d726f03.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_707ea89a4604be961b820031.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ba434c0b51ce799ef7e28abc.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_97878a36bedd414ad883e372.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_f973c883c4398fae77df1747.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747559;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.360000px;}
.ls4{letter-spacing:24.480000px;}
.ls7{letter-spacing:54.144000px;}
.ls2{letter-spacing:95.309760px;}
.ls1{letter-spacing:129.029760px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws5{word-spacing:-16.560000px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.026000px;}
._0{width:1.104000px;}
._4{width:2.868000px;}
._3{width:4.116000px;}
._2{width:5.466000px;}
._35{width:6.468000px;}
._8{width:7.632000px;}
._d{width:9.432000px;}
._e{width:10.872000px;}
._f{width:11.952000px;}
._36{width:13.440000px;}
._37{width:14.622000px;}
._9{width:15.624000px;}
._34{width:16.632000px;}
._b{width:19.224000px;}
._a{width:20.304000px;}
._38{width:21.462480px;}
._15{width:22.484880px;}
._11{width:23.616000px;}
._5{width:24.768000px;}
._6{width:25.920000px;}
._7{width:26.928000px;}
._1a{width:28.416960px;}
._c{width:30.312000px;}
._10{width:31.824000px;}
._26{width:33.848640px;}
._1c{width:36.432000px;}
._39{width:37.560000px;}
._1f{width:39.015360px;}
._3c{width:42.251760px;}
._28{width:43.287120px;}
._31{width:44.640000px;}
._1b{width:47.560320px;}
._16{width:49.314960px;}
._3a{width:52.560000px;}
._3b{width:53.568000px;}
._3e{width:55.242000px;}
._3d{width:56.250000px;}
._25{width:57.594960px;}
._24{width:58.887360px;}
._1e{width:64.186560px;}
._22{width:67.631040px;}
._12{width:69.684480px;}
._17{width:77.235840px;}
._2d{width:79.156800px;}
._1d{width:81.673920px;}
._29{width:86.045760px;}
._14{width:92.007360px;}
._32{width:94.424400px;}
._2e{width:95.783040px;}
._18{width:105.387840px;}
._2b{width:109.328400px;}
._13{width:117.973440px;}
._19{width:119.960640px;}
._30{width:128.206800px;}
._20{width:130.625280px;}
._2a{width:151.093440px;}
._2c{width:158.512320px;}
._27{width:160.896960px;}
._21{width:171.561600px;}
._33{width:178.516800px;}
._2f{width:179.874000px;}
._23{width:438.177600px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(5,99,193);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:5.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:6.300000px;}
.y40{bottom:6.480000px;}
.y4f{bottom:6.525000px;}
.y27{bottom:7.920000px;}
.y2e{bottom:8.100000px;}
.y29{bottom:9.540000px;}
.y2b{bottom:9.720000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y3d{bottom:28.080000px;}
.y4e{bottom:28.305000px;}
.y5f{bottom:45.360000px;}
.y3c{bottom:50.085000px;}
.y6{bottom:55.440000px;}
.y3{bottom:57.600000px;}
.y5e{bottom:67.140000px;}
.y3b{bottom:71.865000px;}
.y5d{bottom:89.100000px;}
.y3a{bottom:93.645000px;}
.y92{bottom:102.996000px;}
.y80{bottom:108.036000px;}
.y5c{bottom:110.880000px;}
.y39{bottom:115.425000px;}
.y4d{bottom:115.605000px;}
.y91{bottom:126.756000px;}
.y7f{bottom:131.796000px;}
.y5b{bottom:132.660000px;}
.y38{bottom:137.385000px;}
.y90{bottom:150.510000px;}
.y5a{bottom:154.440000px;}
.y7e{bottom:155.550000px;}
.y37{bottom:159.165000px;}
.y8f{bottom:174.450000px;}
.y59{bottom:176.220000px;}
.y7d{bottom:179.490000px;}
.y36{bottom:180.945000px;}
.y58{bottom:198.180000px;}
.y8e{bottom:198.210000px;}
.y35{bottom:202.725000px;}
.y4c{bottom:202.905000px;}
.y7c{bottom:203.250000px;}
.y57{bottom:219.960000px;}
.y8d{bottom:221.970000px;}
.y34{bottom:224.505000px;}
.y4b{bottom:224.685000px;}
.y7b{bottom:227.010000px;}
.y53{bottom:241.590000px;}
.y56{bottom:241.740000px;}
.y8c{bottom:245.730000px;}
.y33{bottom:246.465000px;}
.y7a{bottom:250.770000px;}
.y55{bottom:263.550000px;}
.y52{bottom:264.990000px;}
.y32{bottom:268.245000px;}
.y8b{bottom:269.490000px;}
.y2d{bottom:272.190000px;}
.y79{bottom:274.710000px;}
.y51{bottom:288.210000px;}
.y31{bottom:290.025000px;}
.y4a{bottom:290.055000px;}
.y8a{bottom:293.430000px;}
.y78{bottom:298.470000px;}
.y2c{bottom:298.830000px;}
.y50{bottom:311.610000px;}
.y30{bottom:311.835000px;}
.y49{bottom:312.015000px;}
.y89{bottom:317.190000px;}
.y77{bottom:322.230000px;}
.y2a{bottom:325.470000px;}
.y48{bottom:333.795000px;}
.y41{bottom:334.830000px;}
.y88{bottom:340.995000px;}
.y76{bottom:346.035000px;}
.y28{bottom:352.155000px;}
.y47{bottom:355.575000px;}
.y87{bottom:364.755000px;}
.y75{bottom:369.975000px;}
.y46{bottom:377.355000px;}
.y26{bottom:378.795000px;}
.y86{bottom:388.695000px;}
.y74{bottom:393.735000px;}
.y45{bottom:399.135000px;}
.y25{bottom:412.455000px;}
.y73{bottom:417.495000px;}
.y44{bottom:421.095000px;}
.y24{bottom:436.215000px;}
.y72{bottom:441.255000px;}
.y43{bottom:442.875000px;}
.y23{bottom:459.975000px;}
.y42{bottom:464.655000px;}
.y71{bottom:465.195000px;}
.y22{bottom:483.915000px;}
.y70{bottom:488.955000px;}
.y21{bottom:507.675000px;}
.y6f{bottom:512.715000px;}
.y20{bottom:531.435000px;}
.y6e{bottom:536.475000px;}
.y1f{bottom:555.195000px;}
.y6d{bottom:560.235000px;}
.y1e{bottom:579.135000px;}
.y6c{bottom:584.175000px;}
.y1d{bottom:602.895000px;}
.y6b{bottom:607.965000px;}
.y1c{bottom:626.685000px;}
.y6a{bottom:631.725000px;}
.y1b{bottom:650.445000px;}
.y69{bottom:655.485000px;}
.y1a{bottom:674.385000px;}
.y68{bottom:679.425000px;}
.y19{bottom:698.145000px;}
.y67{bottom:703.185000px;}
.y18{bottom:721.905000px;}
.y66{bottom:726.945000px;}
.y17{bottom:745.665000px;}
.y65{bottom:750.705000px;}
.y16{bottom:769.605000px;}
.y64{bottom:774.645000px;}
.y15{bottom:793.365000px;}
.y63{bottom:798.405000px;}
.y3f{bottom:816.405000px;}
.y14{bottom:817.125000px;}
.y62{bottom:822.165000px;}
.y2f{bottom:839.805000px;}
.y13{bottom:840.885000px;}
.y61{bottom:845.925000px;}
.y12{bottom:864.645000px;}
.y60{bottom:869.865000px;}
.y54{bottom:888.090000px;}
.y11{bottom:888.630000px;}
.y10{bottom:912.390000px;}
.yf{bottom:936.150000px;}
.ye{bottom:959.910000px;}
.yd{bottom:983.850000px;}
.y85{bottom:1007.610000px;}
.yc{bottom:1014.450000px;}
.yb{bottom:1031.370000px;}
.ya{bottom:1055.130000px;}
.y84{bottom:1079.070000px;}
.y9{bottom:1081.410000px;}
.y83{bottom:1102.830000px;}
.y8{bottom:1113.090000px;}
.y82{bottom:1126.590000px;}
.y7{bottom:1144.800000px;}
.y81{bottom:1150.380000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:4.021875px;}
.h14{height:21.780000px;}
.h12{height:21.960000px;}
.hc{height:25.020000px;}
.h10{height:25.200000px;}
.hf{height:25.236000px;}
.h3{height:27.036000px;}
.h9{height:33.683203px;}
.h2{height:38.100586px;}
.he{height:46.251562px;}
.hd{height:46.736719px;}
.h4{height:50.273438px;}
.ha{height:50.414062px;}
.hb{height:50.800781px;}
.h16{height:52.417969px;}
.h8{height:57.796523px;}
.h5{height:65.884219px;}
.h7{height:67.565039px;}
.h15{height:279.030000px;}
.h11{height:327.315000px;}
.h13{height:480.135000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w8{width:205.050000px;}
.w7{width:244.290000px;}
.w9{width:244.470000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w6{width:696.705000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:3.420000px;}
.x6{left:7.560000px;}
.x1b{left:19.980000px;}
.x1a{left:24.660000px;}
.x19{left:30.420000px;}
.x11{left:31.860000px;}
.x15{left:73.440000px;}
.x3{left:87.660000px;}
.x13{left:92.874000px;}
.x8{left:95.795987px;}
.x2{left:120.095987px;}
.x1{left:127.835987px;}
.x9{left:132.875987px;}
.x18{left:147.594000px;}
.xf{left:148.895987px;}
.xd{left:179.849987px;}
.xc{left:208.109987px;}
.x17{left:229.179000px;}
.xa{left:258.509987px;}
.xe{left:295.814987px;}
.x4{left:297.795000px;}
.x14{left:342.255000px;}
.x5{left:393.915000px;}
.x10{left:396.434987px;}
.xb{left:446.474987px;}
.x7{left:500.145000px;}
.x16{left:548.745000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls4{letter-spacing:21.760000pt;}
.ls7{letter-spacing:48.128000pt;}
.ls2{letter-spacing:84.719787pt;}
.ls1{letter-spacing:114.693120pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.912000pt;}
._0{width:0.981333pt;}
._4{width:2.549333pt;}
._3{width:3.658667pt;}
._2{width:4.858667pt;}
._35{width:5.749333pt;}
._8{width:6.784000pt;}
._d{width:8.384000pt;}
._e{width:9.664000pt;}
._f{width:10.624000pt;}
._36{width:11.946667pt;}
._37{width:12.997333pt;}
._9{width:13.888000pt;}
._34{width:14.784000pt;}
._b{width:17.088000pt;}
._a{width:18.048000pt;}
._38{width:19.077760pt;}
._15{width:19.986560pt;}
._11{width:20.992000pt;}
._5{width:22.016000pt;}
._6{width:23.040000pt;}
._7{width:23.936000pt;}
._1a{width:25.259520pt;}
._c{width:26.944000pt;}
._10{width:28.288000pt;}
._26{width:30.087680pt;}
._1c{width:32.384000pt;}
._39{width:33.386667pt;}
._1f{width:34.680320pt;}
._3c{width:37.557120pt;}
._28{width:38.477440pt;}
._31{width:39.680000pt;}
._1b{width:42.275840pt;}
._16{width:43.835520pt;}
._3a{width:46.720000pt;}
._3b{width:47.616000pt;}
._3e{width:49.104000pt;}
._3d{width:50.000000pt;}
._25{width:51.195520pt;}
._24{width:52.344320pt;}
._1e{width:57.054720pt;}
._22{width:60.116480pt;}
._12{width:61.941760pt;}
._17{width:68.654080pt;}
._2d{width:70.361600pt;}
._1d{width:72.599040pt;}
._29{width:76.485120pt;}
._14{width:81.784320pt;}
._32{width:83.932800pt;}
._2e{width:85.140480pt;}
._18{width:93.678080pt;}
._2b{width:97.180800pt;}
._13{width:104.865280pt;}
._19{width:106.631680pt;}
._30{width:113.961600pt;}
._20{width:116.111360pt;}
._2a{width:134.305280pt;}
._2c{width:140.899840pt;}
._27{width:143.019520pt;}
._21{width:152.499200pt;}
._33{width:158.681600pt;}
._2f{width:159.888000pt;}
._23{width:389.491200pt;}
.fs3{font-size:5.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:5.600000pt;}
.y40{bottom:5.760000pt;}
.y4f{bottom:5.800000pt;}
.y27{bottom:7.040000pt;}
.y2e{bottom:7.200000pt;}
.y29{bottom:8.480000pt;}
.y2b{bottom:8.640000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y3d{bottom:24.960000pt;}
.y4e{bottom:25.160000pt;}
.y5f{bottom:40.320000pt;}
.y3c{bottom:44.520000pt;}
.y6{bottom:49.280000pt;}
.y3{bottom:51.200000pt;}
.y5e{bottom:59.680000pt;}
.y3b{bottom:63.880000pt;}
.y5d{bottom:79.200000pt;}
.y3a{bottom:83.240000pt;}
.y92{bottom:91.552000pt;}
.y80{bottom:96.032000pt;}
.y5c{bottom:98.560000pt;}
.y39{bottom:102.600000pt;}
.y4d{bottom:102.760000pt;}
.y91{bottom:112.672000pt;}
.y7f{bottom:117.152000pt;}
.y5b{bottom:117.920000pt;}
.y38{bottom:122.120000pt;}
.y90{bottom:133.786667pt;}
.y5a{bottom:137.280000pt;}
.y7e{bottom:138.266667pt;}
.y37{bottom:141.480000pt;}
.y8f{bottom:155.066667pt;}
.y59{bottom:156.640000pt;}
.y7d{bottom:159.546667pt;}
.y36{bottom:160.840000pt;}
.y58{bottom:176.160000pt;}
.y8e{bottom:176.186667pt;}
.y35{bottom:180.200000pt;}
.y4c{bottom:180.360000pt;}
.y7c{bottom:180.666667pt;}
.y57{bottom:195.520000pt;}
.y8d{bottom:197.306667pt;}
.y34{bottom:199.560000pt;}
.y4b{bottom:199.720000pt;}
.y7b{bottom:201.786667pt;}
.y53{bottom:214.746667pt;}
.y56{bottom:214.880000pt;}
.y8c{bottom:218.426667pt;}
.y33{bottom:219.080000pt;}
.y7a{bottom:222.906667pt;}
.y55{bottom:234.266667pt;}
.y52{bottom:235.546667pt;}
.y32{bottom:238.440000pt;}
.y8b{bottom:239.546667pt;}
.y2d{bottom:241.946667pt;}
.y79{bottom:244.186667pt;}
.y51{bottom:256.186667pt;}
.y31{bottom:257.800000pt;}
.y4a{bottom:257.826667pt;}
.y8a{bottom:260.826667pt;}
.y78{bottom:265.306667pt;}
.y2c{bottom:265.626667pt;}
.y50{bottom:276.986667pt;}
.y30{bottom:277.186667pt;}
.y49{bottom:277.346667pt;}
.y89{bottom:281.946667pt;}
.y77{bottom:286.426667pt;}
.y2a{bottom:289.306667pt;}
.y48{bottom:296.706667pt;}
.y41{bottom:297.626667pt;}
.y88{bottom:303.106667pt;}
.y76{bottom:307.586667pt;}
.y28{bottom:313.026667pt;}
.y47{bottom:316.066667pt;}
.y87{bottom:324.226667pt;}
.y75{bottom:328.866667pt;}
.y46{bottom:335.426667pt;}
.y26{bottom:336.706667pt;}
.y86{bottom:345.506667pt;}
.y74{bottom:349.986667pt;}
.y45{bottom:354.786667pt;}
.y25{bottom:366.626667pt;}
.y73{bottom:371.106667pt;}
.y44{bottom:374.306667pt;}
.y24{bottom:387.746667pt;}
.y72{bottom:392.226667pt;}
.y43{bottom:393.666667pt;}
.y23{bottom:408.866667pt;}
.y42{bottom:413.026667pt;}
.y71{bottom:413.506667pt;}
.y22{bottom:430.146667pt;}
.y70{bottom:434.626667pt;}
.y21{bottom:451.266667pt;}
.y6f{bottom:455.746667pt;}
.y20{bottom:472.386667pt;}
.y6e{bottom:476.866667pt;}
.y1f{bottom:493.506667pt;}
.y6d{bottom:497.986667pt;}
.y1e{bottom:514.786667pt;}
.y6c{bottom:519.266667pt;}
.y1d{bottom:535.906667pt;}
.y6b{bottom:540.413333pt;}
.y1c{bottom:557.053333pt;}
.y6a{bottom:561.533333pt;}
.y1b{bottom:578.173333pt;}
.y69{bottom:582.653333pt;}
.y1a{bottom:599.453333pt;}
.y68{bottom:603.933333pt;}
.y19{bottom:620.573333pt;}
.y67{bottom:625.053333pt;}
.y18{bottom:641.693333pt;}
.y66{bottom:646.173333pt;}
.y17{bottom:662.813333pt;}
.y65{bottom:667.293333pt;}
.y16{bottom:684.093333pt;}
.y64{bottom:688.573333pt;}
.y15{bottom:705.213333pt;}
.y63{bottom:709.693333pt;}
.y3f{bottom:725.693333pt;}
.y14{bottom:726.333333pt;}
.y62{bottom:730.813333pt;}
.y2f{bottom:746.493333pt;}
.y13{bottom:747.453333pt;}
.y61{bottom:751.933333pt;}
.y12{bottom:768.573333pt;}
.y60{bottom:773.213333pt;}
.y54{bottom:789.413333pt;}
.y11{bottom:789.893333pt;}
.y10{bottom:811.013333pt;}
.yf{bottom:832.133333pt;}
.ye{bottom:853.253333pt;}
.yd{bottom:874.533333pt;}
.y85{bottom:895.653333pt;}
.yc{bottom:901.733333pt;}
.yb{bottom:916.773333pt;}
.ya{bottom:937.893333pt;}
.y84{bottom:959.173333pt;}
.y9{bottom:961.253333pt;}
.y83{bottom:980.293333pt;}
.y8{bottom:989.413333pt;}
.y82{bottom:1001.413333pt;}
.y7{bottom:1017.600000pt;}
.y81{bottom:1022.560000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:3.575000pt;}
.h14{height:19.360000pt;}
.h12{height:19.520000pt;}
.hc{height:22.240000pt;}
.h10{height:22.400000pt;}
.hf{height:22.432000pt;}
.h3{height:24.032000pt;}
.h9{height:29.940625pt;}
.h2{height:33.867188pt;}
.he{height:41.112500pt;}
.hd{height:41.543750pt;}
.h4{height:44.687500pt;}
.ha{height:44.812500pt;}
.hb{height:45.156250pt;}
.h16{height:46.593750pt;}
.h8{height:51.374687pt;}
.h5{height:58.563750pt;}
.h7{height:60.057813pt;}
.h15{height:248.026667pt;}
.h11{height:290.946667pt;}
.h13{height:426.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w8{width:182.266667pt;}
.w7{width:217.146667pt;}
.w9{width:217.306667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w6{width:619.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:3.040000pt;}
.x6{left:6.720000pt;}
.x1b{left:17.760000pt;}
.x1a{left:21.920000pt;}
.x19{left:27.040000pt;}
.x11{left:28.320000pt;}
.x15{left:65.280000pt;}
.x3{left:77.920000pt;}
.x13{left:82.554667pt;}
.x8{left:85.151988pt;}
.x2{left:106.751988pt;}
.x1{left:113.631988pt;}
.x9{left:118.111988pt;}
.x18{left:131.194667pt;}
.xf{left:132.351988pt;}
.xd{left:159.866655pt;}
.xc{left:184.986655pt;}
.x17{left:203.714667pt;}
.xa{left:229.786655pt;}
.xe{left:262.946655pt;}
.x4{left:264.706667pt;}
.x14{left:304.226667pt;}
.x5{left:350.146667pt;}
.x10{left:352.386655pt;}
.xb{left:396.866655pt;}
.x7{left:444.573333pt;}
.x16{left:487.773333pt;}
}




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