
    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_de42de6fcec2b1943a2a18a7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a37ffc6327cb60a84ce06db9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_55cfa3c4228ac94cc0ee919f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e87cb5451951029351f9fa91.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_10d2a3a3e9709dd0b084f055.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_022dd904f18d760f2a329788.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_58441e6d83a35d5c12c8701d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_24d4dff6200bd0e058c6c66c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_2e50aff3e4ef86633baab63e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls1b{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.064800px;}
.ls12{letter-spacing:-0.008640px;}
.ls11{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.034560px;}
.ls13{letter-spacing:0.092400px;}
.ls18{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.442800px;}
.ls14{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.745920px;}
.ls10{letter-spacing:21.420000px;}
.ls15{letter-spacing:22.140000px;}
.ls5{letter-spacing:28.800000px;}
.ls6{letter-spacing:28.980000px;}
.ls1a{letter-spacing:29.520000px;}
.ls7{letter-spacing:54.000000px;}
.ls8{letter-spacing:54.180000px;}
.ls9{letter-spacing:54.720000px;}
.lsb{letter-spacing:56.160000px;}
.lsc{letter-spacing:56.340000px;}
.lsd{letter-spacing:98.640000px;}
.lse{letter-spacing:98.820000px;}
.ls3{letter-spacing:110.160000px;}
.lsa{letter-spacing:156.960000px;}
.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:-21.617280px;}
.ws9{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.060000px;}
.wsa{word-spacing:-20.995200px;}
.wsd{word-spacing:-19.980000px;}
.ws4{word-spacing:-19.532400px;}
.ws3{word-spacing:-19.474560px;}
.ws5{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.300000px;}
.wsb{word-spacing:-14.940000px;}
.ws1{word-spacing:-0.077760px;}
.ws8{word-spacing:0.000000px;}
._28{margin-left:-10.278720px;}
._0{margin-left:-1.224000px;}
._1{width:1.788000px;}
._2{width:3.283680px;}
._d{width:4.548960px;}
._a{width:6.149520px;}
._b{width:7.191120px;}
._8{width:8.508240px;}
._21{width:10.698480px;}
._2c{width:11.838240px;}
._1f{width:12.943440px;}
._1e{width:14.236560px;}
._25{width:15.331680px;}
._10{width:16.511040px;}
._7{width:17.606160px;}
._30{width:19.038240px;}
._6{width:21.437760px;}
._11{width:22.478400px;}
._20{width:23.755680px;}
._29{width:24.948720px;}
._27{width:26.114400px;}
._31{width:27.209520px;}
._3{width:28.243680px;}
._4{width:29.467200px;}
._2f{width:30.724800px;}
._1c{width:32.055840px;}
._22{width:33.211200px;}
._2a{width:34.622640px;}
._2d{width:37.295280px;}
._2e{width:38.626560px;}
._9{width:39.845520px;}
._12{width:41.193360px;}
._13{width:42.338160px;}
._c{width:43.552080px;}
._19{width:44.989200px;}
._1d{width:46.182240px;}
._16{width:47.289600px;}
._15{width:48.566880px;}
._23{width:49.911840px;}
._24{width:50.949840px;}
._26{width:57.030480px;}
._32{width:58.331520px;}
._1b{width:60.360480px;}
._1a{width:61.539840px;}
._14{width:67.476240px;}
._2b{width:76.911120px;}
._18{width:83.858400px;}
._17{width:84.874320px;}
._e{width:117.936000px;}
._f{width:119.244240px;}
._5{width:157.768320px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs6{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y18{bottom:4.320000px;}
.y30{bottom:4.500000px;}
.y1a{bottom:4.860000px;}
.y2b{bottom:7.560000px;}
.y2f{bottom:25.200000px;}
.y17{bottom:26.865000px;}
.y2a{bottom:33.300000px;}
.y28{bottom:34.200000px;}
.y2e{bottom:45.930000px;}
.y27{bottom:56.700000px;}
.yd{bottom:58.140000px;}
.y2d{bottom:66.630000px;}
.y26{bottom:79.020000px;}
.yc{bottom:82.296000px;}
.y2c{bottom:87.330000px;}
.y24{bottom:97.410000px;}
.yb{bottom:106.416000px;}
.y23{bottom:119.730000px;}
.ya{bottom:130.536000px;}
.y22{bottom:142.230000px;}
.y9{bottom:154.470000px;}
.y21{bottom:164.550000px;}
.y8{bottom:176.250000px;}
.y20{bottom:187.050000px;}
.y7{bottom:198.750000px;}
.y1f{bottom:209.550000px;}
.y6{bottom:221.250000px;}
.y1e{bottom:231.870000px;}
.y67{bottom:243.210000px;}
.y58{bottom:243.570000px;}
.y66{bottom:250.050000px;}
.y1d{bottom:254.370000px;}
.y3b{bottom:254.910000px;}
.y6b{bottom:260.490000px;}
.y65{bottom:261.750000px;}
.y6a{bottom:267.330000px;}
.y6e{bottom:270.930000px;}
.y57{bottom:274.890000px;}
.y1c{bottom:276.690000px;}
.y69{bottom:279.030000px;}
.y3a{bottom:282.630000px;}
.y56{bottom:284.610000px;}
.y6d{bottom:298.650000px;}
.y55{bottom:299.010000px;}
.y39{bottom:310.350000px;}
.y6c{bottom:326.550000px;}
.y64{bottom:326.910000px;}
.y38{bottom:338.295000px;}
.y54{bottom:347.475000px;}
.y63{bottom:354.675000px;}
.y37{bottom:366.015000px;}
.y53{bottom:375.195000px;}
.y62{bottom:382.395000px;}
.y36{bottom:393.735000px;}
.y52{bottom:402.915000px;}
.y61{bottom:410.115000px;}
.y35{bottom:421.635000px;}
.y50{bottom:430.635000px;}
.y60{bottom:438.015000px;}
.y51{bottom:440.355000px;}
.y34{bottom:449.355000px;}
.y4f{bottom:458.535000px;}
.y5f{bottom:465.735000px;}
.y33{bottom:477.075000px;}
.y4e{bottom:486.255000px;}
.y5e{bottom:493.455000px;}
.y32{bottom:504.795000px;}
.y4d{bottom:513.975000px;}
.y5d{bottom:521.355000px;}
.y31{bottom:532.155000px;}
.y5c{bottom:549.075000px;}
.y1b{bottom:549.795000px;}
.y5b{bottom:576.795000px;}
.y59{bottom:604.545000px;}
.y5a{bottom:614.265000px;}
.y4c{bottom:632.445000px;}
.y29{bottom:654.045000px;}
.y4b{bottom:660.165000px;}
.y4a{bottom:687.885000px;}
.y49{bottom:715.785000px;}
.y25{bottom:723.525000px;}
.y48{bottom:743.505000px;}
.y47{bottom:771.225000px;}
.y46{bottom:798.945000px;}
.y19{bottom:821.085000px;}
.y45{bottom:826.845000px;}
.y16{bottom:853.845000px;}
.y44{bottom:854.565000px;}
.y71{bottom:881.970000px;}
.y43{bottom:882.330000px;}
.y42{bottom:910.050000px;}
.y15{bottom:912.930000px;}
.y14{bottom:937.050000px;}
.y41{bottom:937.950000px;}
.y13{bottom:961.170000px;}
.y40{bottom:965.670000px;}
.y12{bottom:985.290000px;}
.y3f{bottom:993.390000px;}
.y11{bottom:1009.410000px;}
.y3e{bottom:1021.290000px;}
.y10{bottom:1032.810000px;}
.y70{bottom:1048.650000px;}
.y3d{bottom:1049.010000px;}
.yf{bottom:1055.310000px;}
.y68{bottom:1058.730000px;}
.y6f{bottom:1076.370000px;}
.y3c{bottom:1076.730000px;}
.ye{bottom:1077.630000px;}
.y5{bottom:1100.850000px;}
.y4{bottom:1124.250000px;}
.y3{bottom:1147.140000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1193.220000px;}
.hc{height:32.040000px;}
.h17{height:38.158594px;}
.h12{height:52.628906px;}
.h15{height:52.998047px;}
.ha{height:54.022500px;}
.h18{height:58.651172px;}
.h16{height:59.439023px;}
.hb{height:67.242656px;}
.h10{height:69.480000px;}
.h2{height:72.562500px;}
.h13{height:74.244727px;}
.he{height:76.279219px;}
.h8{height:76.317188px;}
.h3{height:78.367500px;}
.h7{height:80.949375px;}
.h5{height:81.101250px;}
.h9{height:82.635820px;}
.h6{height:82.676953px;}
.h4{height:84.898125px;}
.h19{height:87.859687px;}
.hf{height:96.660000px;}
.h11{height:103.530000px;}
.hd{height:303.330000px;}
.h14{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:237.439500px;}
.w3{width:404.895000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x17{left:10.249500px;}
.x11{left:29.340000px;}
.x10{left:33.283500px;}
.xc{left:43.723500px;}
.x16{left:49.663500px;}
.x15{left:57.943500px;}
.x1b{left:63.720000px;}
.x13{left:67.843500px;}
.x18{left:74.683500px;}
.xd{left:78.643500px;}
.x14{left:79.903500px;}
.x1{left:84.960000px;}
.x22{left:94.716000px;}
.x1f{left:98.676000px;}
.x2{left:103.356000px;}
.x19{left:111.996000px;}
.x25{left:118.836000px;}
.xb{left:125.326500px;}
.x1a{left:127.476000px;}
.xf{left:144.210000px;}
.x23{left:153.208125px;}
.x4{left:155.370000px;}
.x24{left:166.890000px;}
.x9{left:279.930000px;}
.x1e{left:301.035000px;}
.x8{left:319.935000px;}
.x7{left:322.815000px;}
.x6{left:324.795000px;}
.xa{left:355.215000px;}
.xe{left:362.775000px;}
.x1c{left:387.433125px;}
.x1d{left:401.115000px;}
.x5{left:457.095000px;}
.x20{left:492.583125px;}
.x21{left:506.265000px;}
.x3{left:778.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.057600pt;}
.ls12{letter-spacing:-0.007680pt;}
.ls11{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.030720pt;}
.ls13{letter-spacing:0.082133pt;}
.ls18{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.393600pt;}
.ls14{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.663040pt;}
.ls10{letter-spacing:19.040000pt;}
.ls15{letter-spacing:19.680000pt;}
.ls5{letter-spacing:25.600000pt;}
.ls6{letter-spacing:25.760000pt;}
.ls1a{letter-spacing:26.240000pt;}
.ls7{letter-spacing:48.000000pt;}
.ls8{letter-spacing:48.160000pt;}
.ls9{letter-spacing:48.640000pt;}
.lsb{letter-spacing:49.920000pt;}
.lsc{letter-spacing:50.080000pt;}
.lsd{letter-spacing:87.680000pt;}
.lse{letter-spacing:87.840000pt;}
.ls3{letter-spacing:97.920000pt;}
.lsa{letter-spacing:139.520000pt;}
.ws0{word-spacing:-19.215360pt;}
.ws9{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.662400pt;}
.wsd{word-spacing:-17.760000pt;}
.ws4{word-spacing:-17.362133pt;}
.ws3{word-spacing:-17.310720pt;}
.ws5{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.280000pt;}
.ws1{word-spacing:-0.069120pt;}
.ws8{word-spacing:0.000000pt;}
._28{margin-left:-9.136640pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.589333pt;}
._2{width:2.918827pt;}
._d{width:4.043520pt;}
._a{width:5.466240pt;}
._b{width:6.392107pt;}
._8{width:7.562880pt;}
._21{width:9.509760pt;}
._2c{width:10.522880pt;}
._1f{width:11.505280pt;}
._1e{width:12.654720pt;}
._25{width:13.628160pt;}
._10{width:14.676480pt;}
._7{width:15.649920pt;}
._30{width:16.922880pt;}
._6{width:19.055787pt;}
._11{width:19.980800pt;}
._20{width:21.116160pt;}
._29{width:22.176640pt;}
._27{width:23.212800pt;}
._31{width:24.186240pt;}
._3{width:25.105493pt;}
._4{width:26.193067pt;}
._2f{width:27.310933pt;}
._1c{width:28.494080pt;}
._22{width:29.521067pt;}
._2a{width:30.775680pt;}
._2d{width:33.151360pt;}
._2e{width:34.334720pt;}
._9{width:35.418240pt;}
._12{width:36.616320pt;}
._13{width:37.633920pt;}
._c{width:38.712960pt;}
._19{width:39.990400pt;}
._1d{width:41.050880pt;}
._16{width:42.035200pt;}
._15{width:43.170560pt;}
._23{width:44.366080pt;}
._24{width:45.288747pt;}
._26{width:50.693760pt;}
._32{width:51.850240pt;}
._1b{width:53.653760pt;}
._1a{width:54.702080pt;}
._14{width:59.978880pt;}
._2b{width:68.365440pt;}
._18{width:74.540800pt;}
._17{width:75.443840pt;}
._e{width:104.832000pt;}
._f{width:105.994880pt;}
._5{width:140.238507pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:3.840000pt;}
.y30{bottom:4.000000pt;}
.y1a{bottom:4.320000pt;}
.y2b{bottom:6.720000pt;}
.y2f{bottom:22.400000pt;}
.y17{bottom:23.880000pt;}
.y2a{bottom:29.600000pt;}
.y28{bottom:30.400000pt;}
.y2e{bottom:40.826667pt;}
.y27{bottom:50.400000pt;}
.yd{bottom:51.680000pt;}
.y2d{bottom:59.226667pt;}
.y26{bottom:70.240000pt;}
.yc{bottom:73.152000pt;}
.y2c{bottom:77.626667pt;}
.y24{bottom:86.586667pt;}
.yb{bottom:94.592000pt;}
.y23{bottom:106.426667pt;}
.ya{bottom:116.032000pt;}
.y22{bottom:126.426667pt;}
.y9{bottom:137.306667pt;}
.y21{bottom:146.266667pt;}
.y8{bottom:156.666667pt;}
.y20{bottom:166.266667pt;}
.y7{bottom:176.666667pt;}
.y1f{bottom:186.266667pt;}
.y6{bottom:196.666667pt;}
.y1e{bottom:206.106667pt;}
.y67{bottom:216.186667pt;}
.y58{bottom:216.506667pt;}
.y66{bottom:222.266667pt;}
.y1d{bottom:226.106667pt;}
.y3b{bottom:226.586667pt;}
.y6b{bottom:231.546667pt;}
.y65{bottom:232.666667pt;}
.y6a{bottom:237.626667pt;}
.y6e{bottom:240.826667pt;}
.y57{bottom:244.346667pt;}
.y1c{bottom:245.946667pt;}
.y69{bottom:248.026667pt;}
.y3a{bottom:251.226667pt;}
.y56{bottom:252.986667pt;}
.y6d{bottom:265.466667pt;}
.y55{bottom:265.786667pt;}
.y39{bottom:275.866667pt;}
.y6c{bottom:290.266667pt;}
.y64{bottom:290.586667pt;}
.y38{bottom:300.706667pt;}
.y54{bottom:308.866667pt;}
.y63{bottom:315.266667pt;}
.y37{bottom:325.346667pt;}
.y53{bottom:333.506667pt;}
.y62{bottom:339.906667pt;}
.y36{bottom:349.986667pt;}
.y52{bottom:358.146667pt;}
.y61{bottom:364.546667pt;}
.y35{bottom:374.786667pt;}
.y50{bottom:382.786667pt;}
.y60{bottom:389.346667pt;}
.y51{bottom:391.426667pt;}
.y34{bottom:399.426667pt;}
.y4f{bottom:407.586667pt;}
.y5f{bottom:413.986667pt;}
.y33{bottom:424.066667pt;}
.y4e{bottom:432.226667pt;}
.y5e{bottom:438.626667pt;}
.y32{bottom:448.706667pt;}
.y4d{bottom:456.866667pt;}
.y5d{bottom:463.426667pt;}
.y31{bottom:473.026667pt;}
.y5c{bottom:488.066667pt;}
.y1b{bottom:488.706667pt;}
.y5b{bottom:512.706667pt;}
.y59{bottom:537.373333pt;}
.y5a{bottom:546.013333pt;}
.y4c{bottom:562.173333pt;}
.y29{bottom:581.373333pt;}
.y4b{bottom:586.813333pt;}
.y4a{bottom:611.453333pt;}
.y49{bottom:636.253333pt;}
.y25{bottom:643.133333pt;}
.y48{bottom:660.893333pt;}
.y47{bottom:685.533333pt;}
.y46{bottom:710.173333pt;}
.y19{bottom:729.853333pt;}
.y45{bottom:734.973333pt;}
.y16{bottom:758.973333pt;}
.y44{bottom:759.613333pt;}
.y71{bottom:783.973333pt;}
.y43{bottom:784.293333pt;}
.y42{bottom:808.933333pt;}
.y15{bottom:811.493333pt;}
.y14{bottom:832.933333pt;}
.y41{bottom:833.733333pt;}
.y13{bottom:854.373333pt;}
.y40{bottom:858.373333pt;}
.y12{bottom:875.813333pt;}
.y3f{bottom:883.013333pt;}
.y11{bottom:897.253333pt;}
.y3e{bottom:907.813333pt;}
.y10{bottom:918.053333pt;}
.y70{bottom:932.133333pt;}
.y3d{bottom:932.453333pt;}
.yf{bottom:938.053333pt;}
.y68{bottom:941.093333pt;}
.y6f{bottom:956.773333pt;}
.y3c{bottom:957.093333pt;}
.ye{bottom:957.893333pt;}
.y5{bottom:978.533333pt;}
.y4{bottom:999.333333pt;}
.y3{bottom:1019.680000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.640000pt;}
.hc{height:28.480000pt;}
.h17{height:33.918750pt;}
.h12{height:46.781250pt;}
.h15{height:47.109375pt;}
.ha{height:48.020000pt;}
.h18{height:52.134375pt;}
.h16{height:52.834688pt;}
.hb{height:59.771250pt;}
.h10{height:61.760000pt;}
.h2{height:64.500000pt;}
.h13{height:65.995312pt;}
.he{height:67.803750pt;}
.h8{height:67.837500pt;}
.h3{height:69.660000pt;}
.h7{height:71.955000pt;}
.h5{height:72.090000pt;}
.h9{height:73.454062pt;}
.h6{height:73.490625pt;}
.h4{height:75.465000pt;}
.h19{height:78.097500pt;}
.hf{height:85.920000pt;}
.h11{height:92.026667pt;}
.hd{height:269.626667pt;}
.h14{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:211.057333pt;}
.w3{width:359.906667pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x17{left:9.110667pt;}
.x11{left:26.080000pt;}
.x10{left:29.585333pt;}
.xc{left:38.865333pt;}
.x16{left:44.145333pt;}
.x15{left:51.505333pt;}
.x1b{left:56.640000pt;}
.x13{left:60.305333pt;}
.x18{left:66.385333pt;}
.xd{left:69.905333pt;}
.x14{left:71.025333pt;}
.x1{left:75.520000pt;}
.x22{left:84.192000pt;}
.x1f{left:87.712000pt;}
.x2{left:91.872000pt;}
.x19{left:99.552000pt;}
.x25{left:105.632000pt;}
.xb{left:111.401333pt;}
.x1a{left:113.312000pt;}
.xf{left:128.186667pt;}
.x23{left:136.185000pt;}
.x4{left:138.106667pt;}
.x24{left:148.346667pt;}
.x9{left:248.826667pt;}
.x1e{left:267.586667pt;}
.x8{left:284.386667pt;}
.x7{left:286.946667pt;}
.x6{left:288.706667pt;}
.xa{left:315.746667pt;}
.xe{left:322.466667pt;}
.x1c{left:344.385000pt;}
.x1d{left:356.546667pt;}
.x5{left:406.306667pt;}
.x20{left:437.851667pt;}
.x21{left:450.013333pt;}
.x3{left:692.133333pt;}
}




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