
    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_9d9447e8db0c4129888b9cd2.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_0fc0defde59ea6daa0890dbd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eb59f7a3a87f128a6ccde8d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_15cc51fd661a2e816ad4f33c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_08931200777f8f2860ba3a58.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_4fe41b60d511bc84afdb6fa7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ae80d9e9dc53a67ec7ceac65.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.253200px;}
.ls8{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls9{letter-spacing:0.017280px;}
.ls5{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.180000px;}
.lse{letter-spacing:0.269280px;}
.ls4{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:16.865280px;}
.ls12{letter-spacing:20.465280px;}
.ls3{letter-spacing:32.580000px;}
.ls10{letter-spacing:39.905280px;}
.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;}
}
.wsa{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.840000px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.482000px;}
.ws1{word-spacing:-13.410720px;}
.ws2{word-spacing:-13.229520px;}
.ws9{word-spacing:-12.060000px;}
.wsb{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-5.085360px;}
._9{margin-left:-3.393360px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._6{width:2.862000px;}
._5{width:4.320000px;}
._4{width:5.400000px;}
._8{width:6.750000px;}
._1c{width:7.751280px;}
._2{width:8.760000px;}
._3{width:10.476000px;}
._7{width:12.324000px;}
._12{width:13.512960px;}
._d{width:15.486000px;}
._f{width:18.313680px;}
._c{width:19.332000px;}
._b{width:20.412000px;}
._15{width:21.696480px;}
._13{width:22.720320px;}
._14{width:23.875200px;}
._1e{width:24.961680px;}
._a{width:26.082000px;}
._10{width:27.270000px;}
._1b{width:28.406880px;}
._16{width:31.265280px;}
._e{width:32.718000px;}
._19{width:35.859360px;}
._1a{width:36.910080px;}
._17{width:43.784640px;}
._18{width:45.057600px;}
._22{width:68.425920px;}
._21{width:69.963840px;}
._1f{width:107.043840px;}
._20{width:108.236160px;}
._1d{width:142.482240px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.874000px;}
.y46{bottom:3.600000px;}
.y2{bottom:5.400000px;}
.y47{bottom:7.740000px;}
.y43{bottom:18.354000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y42{bottom:33.834000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y41{bottom:49.494000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y40{bottom:64.974000px;}
.y3f{bottom:80.454000px;}
.y3e{bottom:95.934000px;}
.y7d{bottom:110.376000px;}
.y3d{bottom:111.414000px;}
.y8e{bottom:114.876000px;}
.y45{bottom:122.076000px;}
.y7c{bottom:124.236000px;}
.y3c{bottom:127.074000px;}
.y7b{bottom:128.736000px;}
.y81{bottom:129.996000px;}
.y9a{bottom:137.916000px;}
.y7a{bottom:138.096000px;}
.y99{bottom:142.416000px;}
.y3b{bottom:142.554000px;}
.y8d{bottom:142.596000px;}
.y17{bottom:147.276000px;}
.y79{bottom:151.770000px;}
.y80{bottom:151.950000px;}
.y98{bottom:152.850000px;}
.y78{bottom:156.270000px;}
.y8c{bottom:156.450000px;}
.y3a{bottom:158.034000px;}
.y77{bottom:165.630000px;}
.y95{bottom:165.810000px;}
.y8b{bottom:166.710000px;}
.y94{bottom:170.310000px;}
.y39{bottom:173.514000px;}
.y7f{bottom:173.730000px;}
.y76{bottom:179.490000px;}
.y93{bottom:180.570000px;}
.y75{bottom:183.990000px;}
.y38{bottom:189.219000px;}
.y88{bottom:193.350000px;}
.y74{bottom:194.250000px;}
.y7e{bottom:195.510000px;}
.y87{bottom:197.850000px;}
.y37{bottom:204.699000px;}
.y86{bottom:208.110000px;}
.y72{bottom:217.290000px;}
.y36{bottom:220.179000px;}
.y73{bottom:223.230000px;}
.y35{bottom:235.659000px;}
.y71{bottom:239.250000px;}
.y34{bottom:251.319000px;}
.y70{bottom:261.030000px;}
.y33{bottom:266.799000px;}
.y32{bottom:282.279000px;}
.y6f{bottom:282.810000px;}
.y31{bottom:297.759000px;}
.y6e{bottom:304.590000px;}
.y30{bottom:313.419000px;}
.y6d{bottom:326.370000px;}
.y2f{bottom:328.899000px;}
.y8a{bottom:332.310000px;}
.y2e{bottom:344.379000px;}
.y6c{bottom:348.375000px;}
.y2d{bottom:359.859000px;}
.y6b{bottom:370.155000px;}
.y2c{bottom:375.519000px;}
.y85{bottom:376.095000px;}
.y2b{bottom:390.999000px;}
.y6a{bottom:391.935000px;}
.y92{bottom:397.875000px;}
.y2a{bottom:406.479000px;}
.y68{bottom:413.715000px;}
.y69{bottom:419.655000px;}
.y29{bottom:421.959000px;}
.y67{bottom:435.495000px;}
.y28{bottom:437.619000px;}
.y27{bottom:453.099000px;}
.y66{bottom:457.455000px;}
.y26{bottom:468.609000px;}
.y65{bottom:479.235000px;}
.y25{bottom:484.089000px;}
.y24{bottom:499.749000px;}
.y64{bottom:501.015000px;}
.y84{bottom:506.955000px;}
.y23{bottom:515.229000px;}
.y63{bottom:522.795000px;}
.y22{bottom:530.709000px;}
.y62{bottom:544.755000px;}
.y21{bottom:546.189000px;}
.y20{bottom:561.849000px;}
.y61{bottom:566.535000px;}
.y1f{bottom:577.329000px;}
.y60{bottom:588.315000px;}
.y1e{bottom:592.809000px;}
.y83{bottom:594.255000px;}
.y1d{bottom:608.289000px;}
.y5f{bottom:610.125000px;}
.y1c{bottom:623.949000px;}
.y5e{bottom:631.905000px;}
.y1b{bottom:639.429000px;}
.y5d{bottom:653.865000px;}
.y1a{bottom:654.909000px;}
.y19{bottom:670.389000px;}
.y5b{bottom:675.645000px;}
.y5c{bottom:681.585000px;}
.y18{bottom:685.869000px;}
.y5a{bottom:697.425000px;}
.y82{bottom:703.365000px;}
.y59{bottom:719.205000px;}
.y58{bottom:741.165000px;}
.y57{bottom:762.945000px;}
.y56{bottom:784.725000px;}
.y55{bottom:806.505000px;}
.y91{bottom:812.445000px;}
.y54{bottom:828.285000px;}
.y53{bottom:850.245000px;}
.y16{bottom:852.225000px;}
.y97{bottom:856.185000px;}
.y52{bottom:872.070000px;}
.y15{bottom:873.510000px;}
.y90{bottom:878.010000px;}
.y14{bottom:893.310000px;}
.y51{bottom:893.850000px;}
.y13{bottom:913.110000px;}
.y50{bottom:915.630000px;}
.y12{bottom:932.910000px;}
.y4f{bottom:937.590000px;}
.y11{bottom:953.430000px;}
.y4e{bottom:959.370000px;}
.y10{bottom:973.410000px;}
.y4d{bottom:981.150000px;}
.y89{bottom:987.090000px;}
.yf{bottom:991.050000px;}
.y4c{bottom:1002.930000px;}
.y96{bottom:1008.870000px;}
.ye{bottom:1012.830000px;}
.y4b{bottom:1024.710000px;}
.yd{bottom:1036.050000px;}
.y4a{bottom:1046.670000px;}
.y8f{bottom:1052.610000px;}
.yc{bottom:1061.790000px;}
.y49{bottom:1068.450000px;}
.yb{bottom:1087.530000px;}
.y48{bottom:1090.230000px;}
.y9{bottom:1109.130000px;}
.y1{bottom:1131.450000px;}
.h16{height:22.104141px;}
.h13{height:25.200000px;}
.h15{height:29.158594px;}
.hb{height:33.683203px;}
.h17{height:35.261367px;}
.h11{height:37.705078px;}
.h10{height:38.100586px;}
.h7{height:39.147891px;}
.h18{height:39.760312px;}
.hd{height:41.726953px;}
.h3{height:42.164648px;}
.h12{height:44.507812px;}
.he{height:46.251562px;}
.h14{height:46.736719px;}
.h6{height:48.418594px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h8{height:63.104063px;}
.h2{height:77.436000px;}
.hf{height:698.475000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w7{width:224.130000px;}
.w4{width:255.090000px;}
.w8{width:283.530000px;}
.w3{width:374.655000px;}
.w9{width:391.575000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x15{left:29.700000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.xa{left:109.475987px;}
.x1e{left:112.175987px;}
.x2e{left:116.315987px;}
.xd{left:117.755987px;}
.xf{left:128.195987px;}
.x2a{left:129.275987px;}
.x7{left:131.805000px;}
.x16{left:161.129987px;}
.x2d{left:168.149973px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x38{left:184.529973px;}
.x1f{left:189.029987px;}
.x11{left:193.889987px;}
.x39{left:194.969987px;}
.x19{left:212.969973px;}
.x24{left:214.409973px;}
.x12{left:215.849987px;}
.x1a{left:218.189987px;}
.x25{left:219.629987px;}
.x17{left:221.249973px;}
.x18{left:226.469987px;}
.xb{left:253.109987px;}
.x36{left:259.949973px;}
.x37{left:270.389987px;}
.x10{left:290.774987px;}
.x34{left:294.554973px;}
.x35{left:304.994987px;}
.x1d{left:324.074987px;}
.x13{left:333.974987px;}
.x20{left:366.374973px;}
.x21{left:371.594987px;}
.xe{left:391.754987px;}
.x2b{left:417.314973px;}
.x2c{left:422.534987px;}
.xc{left:446.474987px;}
.x28{left:463.574973px;}
.x29{left:468.824987px;}
.x32{left:470.444973px;}
.x33{left:480.884987px;}
.x9{left:496.004987px;}
.x1b{left:527.684973px;}
.x1c{left:532.904987px;}
.x5{left:554.685000px;}
.x14{left:567.105000px;}
.x2f{left:570.884973px;}
.x26{left:582.224973px;}
.x27{left:587.444987px;}
.x30{left:701.069973px;}
.x31{left:711.509987px;}
.x22{left:779.909973px;}
.x23{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.225067pt;}
.ls8{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls9{letter-spacing:0.015360pt;}
.ls5{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.239360pt;}
.ls4{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:14.991360pt;}
.ls12{letter-spacing:18.191360pt;}
.ls3{letter-spacing:28.960000pt;}
.ls10{letter-spacing:35.471360pt;}
.wsa{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws1{word-spacing:-11.920640pt;}
.ws2{word-spacing:-11.759573pt;}
.ws9{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-4.520320pt;}
._9{margin-left:-3.016320pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._6{width:2.544000pt;}
._5{width:3.840000pt;}
._4{width:4.800000pt;}
._8{width:6.000000pt;}
._1c{width:6.890027pt;}
._2{width:7.786667pt;}
._3{width:9.312000pt;}
._7{width:10.954667pt;}
._12{width:12.011520pt;}
._d{width:13.765333pt;}
._f{width:16.278827pt;}
._c{width:17.184000pt;}
._b{width:18.144000pt;}
._15{width:19.285760pt;}
._13{width:20.195840pt;}
._14{width:21.222400pt;}
._1e{width:22.188160pt;}
._a{width:23.184000pt;}
._10{width:24.240000pt;}
._1b{width:25.250560pt;}
._16{width:27.791360pt;}
._e{width:29.082667pt;}
._19{width:31.874987pt;}
._1a{width:32.808960pt;}
._17{width:38.919680pt;}
._18{width:40.051200pt;}
._22{width:60.823040pt;}
._21{width:62.190080pt;}
._1f{width:95.150080pt;}
._20{width:96.209920pt;}
._1d{width:126.650880pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.554667pt;}
.y46{bottom:3.200000pt;}
.y2{bottom:4.800000pt;}
.y47{bottom:6.880000pt;}
.y43{bottom:16.314667pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y42{bottom:30.074667pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y41{bottom:43.994667pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y40{bottom:57.754667pt;}
.y3f{bottom:71.514667pt;}
.y3e{bottom:85.274667pt;}
.y7d{bottom:98.112000pt;}
.y3d{bottom:99.034667pt;}
.y8e{bottom:102.112000pt;}
.y45{bottom:108.512000pt;}
.y7c{bottom:110.432000pt;}
.y3c{bottom:112.954667pt;}
.y7b{bottom:114.432000pt;}
.y81{bottom:115.552000pt;}
.y9a{bottom:122.592000pt;}
.y7a{bottom:122.752000pt;}
.y99{bottom:126.592000pt;}
.y3b{bottom:126.714667pt;}
.y8d{bottom:126.752000pt;}
.y17{bottom:130.912000pt;}
.y79{bottom:134.906667pt;}
.y80{bottom:135.066667pt;}
.y98{bottom:135.866667pt;}
.y78{bottom:138.906667pt;}
.y8c{bottom:139.066667pt;}
.y3a{bottom:140.474667pt;}
.y77{bottom:147.226667pt;}
.y95{bottom:147.386667pt;}
.y8b{bottom:148.186667pt;}
.y94{bottom:151.386667pt;}
.y39{bottom:154.234667pt;}
.y7f{bottom:154.426667pt;}
.y76{bottom:159.546667pt;}
.y93{bottom:160.506667pt;}
.y75{bottom:163.546667pt;}
.y38{bottom:168.194667pt;}
.y88{bottom:171.866667pt;}
.y74{bottom:172.666667pt;}
.y7e{bottom:173.786667pt;}
.y87{bottom:175.866667pt;}
.y37{bottom:181.954667pt;}
.y86{bottom:184.986667pt;}
.y72{bottom:193.146667pt;}
.y36{bottom:195.714667pt;}
.y73{bottom:198.426667pt;}
.y35{bottom:209.474667pt;}
.y71{bottom:212.666667pt;}
.y34{bottom:223.394667pt;}
.y70{bottom:232.026667pt;}
.y33{bottom:237.154667pt;}
.y32{bottom:250.914667pt;}
.y6f{bottom:251.386667pt;}
.y31{bottom:264.674667pt;}
.y6e{bottom:270.746667pt;}
.y30{bottom:278.594667pt;}
.y6d{bottom:290.106667pt;}
.y2f{bottom:292.354667pt;}
.y8a{bottom:295.386667pt;}
.y2e{bottom:306.114667pt;}
.y6c{bottom:309.666667pt;}
.y2d{bottom:319.874667pt;}
.y6b{bottom:329.026667pt;}
.y2c{bottom:333.794667pt;}
.y85{bottom:334.306667pt;}
.y2b{bottom:347.554667pt;}
.y6a{bottom:348.386667pt;}
.y92{bottom:353.666667pt;}
.y2a{bottom:361.314667pt;}
.y68{bottom:367.746667pt;}
.y69{bottom:373.026667pt;}
.y29{bottom:375.074667pt;}
.y67{bottom:387.106667pt;}
.y28{bottom:388.994667pt;}
.y27{bottom:402.754667pt;}
.y66{bottom:406.626667pt;}
.y26{bottom:416.541333pt;}
.y65{bottom:425.986667pt;}
.y25{bottom:430.301333pt;}
.y24{bottom:444.221333pt;}
.y64{bottom:445.346667pt;}
.y84{bottom:450.626667pt;}
.y23{bottom:457.981333pt;}
.y63{bottom:464.706667pt;}
.y22{bottom:471.741333pt;}
.y62{bottom:484.226667pt;}
.y21{bottom:485.501333pt;}
.y20{bottom:499.421333pt;}
.y61{bottom:503.586667pt;}
.y1f{bottom:513.181333pt;}
.y60{bottom:522.946667pt;}
.y1e{bottom:526.941333pt;}
.y83{bottom:528.226667pt;}
.y1d{bottom:540.701333pt;}
.y5f{bottom:542.333333pt;}
.y1c{bottom:554.621333pt;}
.y5e{bottom:561.693333pt;}
.y1b{bottom:568.381333pt;}
.y5d{bottom:581.213333pt;}
.y1a{bottom:582.141333pt;}
.y19{bottom:595.901333pt;}
.y5b{bottom:600.573333pt;}
.y5c{bottom:605.853333pt;}
.y18{bottom:609.661333pt;}
.y5a{bottom:619.933333pt;}
.y82{bottom:625.213333pt;}
.y59{bottom:639.293333pt;}
.y58{bottom:658.813333pt;}
.y57{bottom:678.173333pt;}
.y56{bottom:697.533333pt;}
.y55{bottom:716.893333pt;}
.y91{bottom:722.173333pt;}
.y54{bottom:736.253333pt;}
.y53{bottom:755.773333pt;}
.y16{bottom:757.533333pt;}
.y97{bottom:761.053333pt;}
.y52{bottom:775.173333pt;}
.y15{bottom:776.453333pt;}
.y90{bottom:780.453333pt;}
.y14{bottom:794.053333pt;}
.y51{bottom:794.533333pt;}
.y13{bottom:811.653333pt;}
.y50{bottom:813.893333pt;}
.y12{bottom:829.253333pt;}
.y4f{bottom:833.413333pt;}
.y11{bottom:847.493333pt;}
.y4e{bottom:852.773333pt;}
.y10{bottom:865.253333pt;}
.y4d{bottom:872.133333pt;}
.y89{bottom:877.413333pt;}
.yf{bottom:880.933333pt;}
.y4c{bottom:891.493333pt;}
.y96{bottom:896.773333pt;}
.ye{bottom:900.293333pt;}
.y4b{bottom:910.853333pt;}
.yd{bottom:920.933333pt;}
.y4a{bottom:930.373333pt;}
.y8f{bottom:935.653333pt;}
.yc{bottom:943.813333pt;}
.y49{bottom:949.733333pt;}
.yb{bottom:966.693333pt;}
.y48{bottom:969.093333pt;}
.y9{bottom:985.893333pt;}
.y1{bottom:1005.733333pt;}
.h16{height:19.648125pt;}
.h13{height:22.400000pt;}
.h15{height:25.918750pt;}
.hb{height:29.940625pt;}
.h17{height:31.343437pt;}
.h11{height:33.515625pt;}
.h10{height:33.867188pt;}
.h7{height:34.798125pt;}
.h18{height:35.342500pt;}
.hd{height:37.090625pt;}
.h3{height:37.479688pt;}
.h12{height:39.562500pt;}
.he{height:41.112500pt;}
.h14{height:41.543750pt;}
.h6{height:43.038750pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h8{height:56.092500pt;}
.h2{height:68.832000pt;}
.hf{height:620.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w7{width:199.226667pt;}
.w4{width:226.746667pt;}
.w8{width:252.026667pt;}
.w3{width:333.026667pt;}
.w9{width:348.066667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x15{left:26.400000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.xa{left:97.311988pt;}
.x1e{left:99.711988pt;}
.x2e{left:103.391988pt;}
.xd{left:104.671988pt;}
.xf{left:113.951988pt;}
.x2a{left:114.911988pt;}
.x7{left:117.160000pt;}
.x16{left:143.226655pt;}
.x2d{left:149.466643pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x38{left:164.026643pt;}
.x1f{left:168.026655pt;}
.x11{left:172.346655pt;}
.x39{left:173.306655pt;}
.x19{left:189.306643pt;}
.x24{left:190.586643pt;}
.x12{left:191.866655pt;}
.x1a{left:193.946655pt;}
.x25{left:195.226655pt;}
.x17{left:196.666643pt;}
.x18{left:201.306655pt;}
.xb{left:224.986655pt;}
.x36{left:231.066643pt;}
.x37{left:240.346655pt;}
.x10{left:258.466655pt;}
.x34{left:261.826643pt;}
.x35{left:271.106655pt;}
.x1d{left:288.066655pt;}
.x13{left:296.866655pt;}
.x20{left:325.666643pt;}
.x21{left:330.306655pt;}
.xe{left:348.226655pt;}
.x2b{left:370.946643pt;}
.x2c{left:375.586655pt;}
.xc{left:396.866655pt;}
.x28{left:412.066643pt;}
.x29{left:416.733322pt;}
.x32{left:418.173310pt;}
.x33{left:427.453322pt;}
.x9{left:440.893322pt;}
.x1b{left:469.053310pt;}
.x1c{left:473.693322pt;}
.x5{left:493.053333pt;}
.x14{left:504.093333pt;}
.x2f{left:507.453310pt;}
.x26{left:517.533310pt;}
.x27{left:522.173322pt;}
.x30{left:623.173310pt;}
.x31{left:632.453322pt;}
.x22{left:693.253310pt;}
.x23{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; }
  