
    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_3bdf8c2a37bf18f897842c5a.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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad5839bc8e1b2c2fbf4f5659.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_5456c8733ac5bec76bd15633.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_a19a0f711cb77cb13ae27cf1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3e17a4e60759dc70b1f80327.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_ad4da692b2cb970b3cf053c9.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f5eb0765005672823414c458.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_b68ee312869ff0b4f38e5a7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_3d867cb7b8fd7326bc1404fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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;}
.lsa{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.900000px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws3{word-spacing:-16.560000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-4.438080px;}
._5{margin-left:-2.741760px;}
._0{margin-left:-1.258560px;}
._2{width:1.375680px;}
._4{width:2.988000px;}
._e{width:4.361280px;}
._d{width:5.378400px;}
._10{width:6.557760px;}
._7{width:7.756800px;}
._3{width:8.760240px;}
._8{width:10.158000px;}
._c{width:11.494320px;}
._9{width:12.719760px;}
._b{width:13.841040px;}
._13{width:15.307680px;}
._17{width:17.619840px;}
._16{width:18.679680px;}
._a{width:20.376960px;}
._14{width:21.448560px;}
._6{width:22.468560px;}
._20{width:23.517360px;}
._11{width:24.641280px;}
._12{width:25.930560px;}
._1a{width:27.355680px;}
._18{width:28.946880px;}
._19{width:30.008160px;}
._21{width:34.179840px;}
._1c{width:36.100800px;}
._f{width:42.011040px;}
._22{width:49.613760px;}
._23{width:50.800800px;}
._1f{width:57.165120px;}
._1b{width:90.616320px;}
._24{width:95.160000px;}
._1e{width:100.876800px;}
._1d{width:102.009600px;}
._25{width:142.349760px;}
._1{width:1044.693120px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y73{bottom:6.294000px;}
.y70{bottom:6.300000px;}
.y6e{bottom:6.480000px;}
.y2{bottom:10.440000px;}
.y4{bottom:55.620000px;}
.y6c{bottom:113.796000px;}
.y3d{bottom:115.596000px;}
.y9c{bottom:129.636000px;}
.y74{bottom:133.236000px;}
.y6b{bottom:135.576000px;}
.y3c{bottom:137.376000px;}
.y72{bottom:149.616000px;}
.y9b{bottom:151.410000px;}
.y6a{bottom:157.350000px;}
.y3b{bottom:159.330000px;}
.y71{bottom:171.390000px;}
.y9a{bottom:173.190000px;}
.y69{bottom:179.130000px;}
.y3a{bottom:181.110000px;}
.y6f{bottom:193.170000px;}
.y99{bottom:194.970000px;}
.y68{bottom:201.090000px;}
.y39{bottom:202.890000px;}
.y6d{bottom:215.670000px;}
.y98{bottom:216.750000px;}
.y67{bottom:222.870000px;}
.y38{bottom:224.670000px;}
.y97{bottom:238.710000px;}
.y66{bottom:244.650000px;}
.y37{bottom:246.630000px;}
.y96{bottom:260.490000px;}
.y65{bottom:266.430000px;}
.y36{bottom:268.410000px;}
.y95{bottom:282.270000px;}
.y64{bottom:288.210000px;}
.y35{bottom:290.190000px;}
.y94{bottom:304.050000px;}
.y34{bottom:308.190000px;}
.y63{bottom:310.170000px;}
.y33{bottom:322.050000px;}
.y93{bottom:326.010000px;}
.y62{bottom:331.950000px;}
.y32{bottom:336.495000px;}
.y92{bottom:347.835000px;}
.y31{bottom:353.775000px;}
.y91{bottom:369.615000px;}
.y30{bottom:371.055000px;}
.y61{bottom:375.555000px;}
.y2f{bottom:388.335000px;}
.y90{bottom:391.395000px;}
.y60{bottom:397.515000px;}
.y2e{bottom:405.615000px;}
.y8f{bottom:413.175000px;}
.y5f{bottom:419.295000px;}
.y2d{bottom:422.715000px;}
.y8e{bottom:435.135000px;}
.y2c{bottom:439.995000px;}
.y5e{bottom:441.075000px;}
.y8d{bottom:456.915000px;}
.y2b{bottom:457.275000px;}
.y5d{bottom:462.855000px;}
.y2a{bottom:474.555000px;}
.y8c{bottom:478.695000px;}
.y5c{bottom:484.635000px;}
.y29{bottom:491.835000px;}
.y8b{bottom:500.475000px;}
.y5b{bottom:506.595000px;}
.y28{bottom:509.115000px;}
.y8a{bottom:522.435000px;}
.y27{bottom:526.215000px;}
.y5a{bottom:528.375000px;}
.y26{bottom:543.495000px;}
.y89{bottom:544.215000px;}
.y59{bottom:550.155000px;}
.y25{bottom:560.775000px;}
.y88{bottom:565.995000px;}
.y58{bottom:571.935000px;}
.y24{bottom:578.055000px;}
.y87{bottom:587.775000px;}
.y57{bottom:593.895000px;}
.y23{bottom:595.335000px;}
.y86{bottom:609.585000px;}
.y22{bottom:612.645000px;}
.y56{bottom:615.705000px;}
.y85{bottom:625.965000px;}
.y21{bottom:629.745000px;}
.y55{bottom:637.485000px;}
.y20{bottom:647.025000px;}
.y84{bottom:648.465000px;}
.y54{bottom:659.265000px;}
.y1f{bottom:664.305000px;}
.y83{bottom:670.965000px;}
.y53{bottom:681.045000px;}
.y1e{bottom:681.585000px;}
.y82{bottom:693.645000px;}
.y1d{bottom:698.865000px;}
.y52{bottom:703.005000px;}
.y1c{bottom:715.965000px;}
.y81{bottom:722.445000px;}
.y51{bottom:724.785000px;}
.y1b{bottom:733.245000px;}
.y80{bottom:744.405000px;}
.y50{bottom:746.565000px;}
.y1a{bottom:750.525000px;}
.y7f{bottom:766.185000px;}
.y19{bottom:767.805000px;}
.y4f{bottom:768.345000px;}
.y18{bottom:785.085000px;}
.y7e{bottom:787.965000px;}
.y4e{bottom:790.125000px;}
.y17{bottom:802.365000px;}
.y7d{bottom:809.745000px;}
.y4d{bottom:812.085000px;}
.y16{bottom:819.465000px;}
.y7c{bottom:831.525000px;}
.y4c{bottom:833.865000px;}
.y15{bottom:836.745000px;}
.y7b{bottom:853.485000px;}
.y14{bottom:854.025000px;}
.y4b{bottom:855.645000px;}
.y13{bottom:871.350000px;}
.y7a{bottom:875.310000px;}
.y4a{bottom:877.470000px;}
.y12{bottom:888.630000px;}
.y79{bottom:897.090000px;}
.y49{bottom:899.430000px;}
.y11{bottom:908.430000px;}
.y78{bottom:913.290000px;}
.y48{bottom:921.210000px;}
.y10{bottom:928.230000px;}
.y77{bottom:935.070000px;}
.y47{bottom:942.990000px;}
.yf{bottom:948.030000px;}
.y76{bottom:957.030000px;}
.y46{bottom:964.770000px;}
.ye{bottom:968.370000px;}
.y75{bottom:979.530000px;}
.y45{bottom:986.550000px;}
.yd{bottom:988.530000px;}
.yc{bottom:1007.430000px;}
.y44{bottom:1008.510000px;}
.y43{bottom:1030.290000px;}
.yb{bottom:1033.170000px;}
.y42{bottom:1052.070000px;}
.ya{bottom:1054.590000px;}
.y9{bottom:1071.870000px;}
.y41{bottom:1073.850000px;}
.y8{bottom:1089.150000px;}
.y40{bottom:1095.810000px;}
.y7{bottom:1106.430000px;}
.y3f{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.y3e{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1164.960000px;}
.y1{bottom:1180.620000px;}
.h12{height:21.780000px;}
.h11{height:21.960000px;}
.h2{height:29.160000px;}
.he{height:34.036523px;}
.h9{height:34.884492px;}
.h5{height:36.768867px;}
.h7{height:41.726953px;}
.h6{height:42.164648px;}
.hc{height:43.156758px;}
.hb{height:43.215117px;}
.hd{height:45.549492px;}
.h10{height:46.736719px;}
.ha{height:47.901094px;}
.h3{height:50.068125px;}
.hf{height:50.488594px;}
.h8{height:54.864844px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.wc{width:84.600000px;}
.wd{width:84.636000px;}
.wa{width:85.356000px;}
.w9{width:93.600000px;}
.w6{width:127.476000px;}
.w7{width:160.590000px;}
.w5{width:186.330000px;}
.wb{width:276.735000px;}
.w8{width:277.455000px;}
.w3{width:606.165000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:9.900000px;}
.x12{left:40.140000px;}
.x10{left:42.840000px;}
.x14{left:46.080000px;}
.x16{left:65.340000px;}
.x17{left:81.900000px;}
.x18{left:86.445000px;}
.x15{left:90.585000px;}
.x1{left:108.036000px;}
.x5{left:124.235987px;}
.x8{left:134.135987px;}
.xb{left:138.635987px;}
.xe{left:140.075987px;}
.x3{left:161.130000px;}
.xa{left:194.069987px;}
.xf{left:207.930000px;}
.x1d{left:223.950000px;}
.x9{left:234.389987px;}
.x1c{left:237.989987px;}
.x19{left:248.429987px;}
.x6{left:259.769987px;}
.x11{left:394.275000px;}
.xd{left:420.734987px;}
.xc{left:422.354987px;}
.x7{left:446.474987px;}
.x1a{left:485.385000px;}
.x1e{left:501.405000px;}
.x13{left:521.745000px;}
.x1b{left:578.985000px;}
.x1f{left:586.725000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.800000pt;}
.ws5{word-spacing:-58.880000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-3.944960pt;}
._5{margin-left:-2.437120pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.222827pt;}
._4{width:2.656000pt;}
._e{width:3.876693pt;}
._d{width:4.780800pt;}
._10{width:5.829120pt;}
._7{width:6.894933pt;}
._3{width:7.786880pt;}
._8{width:9.029333pt;}
._c{width:10.217173pt;}
._9{width:11.306453pt;}
._b{width:12.303147pt;}
._13{width:13.606827pt;}
._17{width:15.662080pt;}
._16{width:16.604160pt;}
._a{width:18.112853pt;}
._14{width:19.065387pt;}
._6{width:19.972053pt;}
._20{width:20.904320pt;}
._11{width:21.903360pt;}
._12{width:23.049387pt;}
._1a{width:24.316160pt;}
._18{width:25.730560pt;}
._19{width:26.673920pt;}
._21{width:30.382080pt;}
._1c{width:32.089600pt;}
._f{width:37.343147pt;}
._22{width:44.101120pt;}
._23{width:45.156267pt;}
._1f{width:50.813440pt;}
._1b{width:80.547840pt;}
._24{width:84.586667pt;}
._1e{width:89.668267pt;}
._1d{width:90.675200pt;}
._25{width:126.533120pt;}
._1{width:928.616107pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:5.594667pt;}
.y70{bottom:5.600000pt;}
.y6e{bottom:5.760000pt;}
.y2{bottom:9.280000pt;}
.y4{bottom:49.440000pt;}
.y6c{bottom:101.152000pt;}
.y3d{bottom:102.752000pt;}
.y9c{bottom:115.232000pt;}
.y74{bottom:118.432000pt;}
.y6b{bottom:120.512000pt;}
.y3c{bottom:122.112000pt;}
.y72{bottom:132.992000pt;}
.y9b{bottom:134.586667pt;}
.y6a{bottom:139.866667pt;}
.y3b{bottom:141.626667pt;}
.y71{bottom:152.346667pt;}
.y9a{bottom:153.946667pt;}
.y69{bottom:159.226667pt;}
.y3a{bottom:160.986667pt;}
.y6f{bottom:171.706667pt;}
.y99{bottom:173.306667pt;}
.y68{bottom:178.746667pt;}
.y39{bottom:180.346667pt;}
.y6d{bottom:191.706667pt;}
.y98{bottom:192.666667pt;}
.y67{bottom:198.106667pt;}
.y38{bottom:199.706667pt;}
.y97{bottom:212.186667pt;}
.y66{bottom:217.466667pt;}
.y37{bottom:219.226667pt;}
.y96{bottom:231.546667pt;}
.y65{bottom:236.826667pt;}
.y36{bottom:238.586667pt;}
.y95{bottom:250.906667pt;}
.y64{bottom:256.186667pt;}
.y35{bottom:257.946667pt;}
.y94{bottom:270.266667pt;}
.y34{bottom:273.946667pt;}
.y63{bottom:275.706667pt;}
.y33{bottom:286.266667pt;}
.y93{bottom:289.786667pt;}
.y62{bottom:295.066667pt;}
.y32{bottom:299.106667pt;}
.y92{bottom:309.186667pt;}
.y31{bottom:314.466667pt;}
.y91{bottom:328.546667pt;}
.y30{bottom:329.826667pt;}
.y61{bottom:333.826667pt;}
.y2f{bottom:345.186667pt;}
.y90{bottom:347.906667pt;}
.y60{bottom:353.346667pt;}
.y2e{bottom:360.546667pt;}
.y8f{bottom:367.266667pt;}
.y5f{bottom:372.706667pt;}
.y2d{bottom:375.746667pt;}
.y8e{bottom:386.786667pt;}
.y2c{bottom:391.106667pt;}
.y5e{bottom:392.066667pt;}
.y8d{bottom:406.146667pt;}
.y2b{bottom:406.466667pt;}
.y5d{bottom:411.426667pt;}
.y2a{bottom:421.826667pt;}
.y8c{bottom:425.506667pt;}
.y5c{bottom:430.786667pt;}
.y29{bottom:437.186667pt;}
.y8b{bottom:444.866667pt;}
.y5b{bottom:450.306667pt;}
.y28{bottom:452.546667pt;}
.y8a{bottom:464.386667pt;}
.y27{bottom:467.746667pt;}
.y5a{bottom:469.666667pt;}
.y26{bottom:483.106667pt;}
.y89{bottom:483.746667pt;}
.y59{bottom:489.026667pt;}
.y25{bottom:498.466667pt;}
.y88{bottom:503.106667pt;}
.y58{bottom:508.386667pt;}
.y24{bottom:513.826667pt;}
.y87{bottom:522.466667pt;}
.y57{bottom:527.906667pt;}
.y23{bottom:529.186667pt;}
.y86{bottom:541.853333pt;}
.y22{bottom:544.573333pt;}
.y56{bottom:547.293333pt;}
.y85{bottom:556.413333pt;}
.y21{bottom:559.773333pt;}
.y55{bottom:566.653333pt;}
.y20{bottom:575.133333pt;}
.y84{bottom:576.413333pt;}
.y54{bottom:586.013333pt;}
.y1f{bottom:590.493333pt;}
.y83{bottom:596.413333pt;}
.y53{bottom:605.373333pt;}
.y1e{bottom:605.853333pt;}
.y82{bottom:616.573333pt;}
.y1d{bottom:621.213333pt;}
.y52{bottom:624.893333pt;}
.y1c{bottom:636.413333pt;}
.y81{bottom:642.173333pt;}
.y51{bottom:644.253333pt;}
.y1b{bottom:651.773333pt;}
.y80{bottom:661.693333pt;}
.y50{bottom:663.613333pt;}
.y1a{bottom:667.133333pt;}
.y7f{bottom:681.053333pt;}
.y19{bottom:682.493333pt;}
.y4f{bottom:682.973333pt;}
.y18{bottom:697.853333pt;}
.y7e{bottom:700.413333pt;}
.y4e{bottom:702.333333pt;}
.y17{bottom:713.213333pt;}
.y7d{bottom:719.773333pt;}
.y4d{bottom:721.853333pt;}
.y16{bottom:728.413333pt;}
.y7c{bottom:739.133333pt;}
.y4c{bottom:741.213333pt;}
.y15{bottom:743.773333pt;}
.y7b{bottom:758.653333pt;}
.y14{bottom:759.133333pt;}
.y4b{bottom:760.573333pt;}
.y13{bottom:774.533333pt;}
.y7a{bottom:778.053333pt;}
.y4a{bottom:779.973333pt;}
.y12{bottom:789.893333pt;}
.y79{bottom:797.413333pt;}
.y49{bottom:799.493333pt;}
.y11{bottom:807.493333pt;}
.y78{bottom:811.813333pt;}
.y48{bottom:818.853333pt;}
.y10{bottom:825.093333pt;}
.y77{bottom:831.173333pt;}
.y47{bottom:838.213333pt;}
.yf{bottom:842.693333pt;}
.y76{bottom:850.693333pt;}
.y46{bottom:857.573333pt;}
.ye{bottom:860.773333pt;}
.y75{bottom:870.693333pt;}
.y45{bottom:876.933333pt;}
.yd{bottom:878.693333pt;}
.yc{bottom:895.493333pt;}
.y44{bottom:896.453333pt;}
.y43{bottom:915.813333pt;}
.yb{bottom:918.373333pt;}
.y42{bottom:935.173333pt;}
.ya{bottom:937.413333pt;}
.y9{bottom:952.773333pt;}
.y41{bottom:954.533333pt;}
.y8{bottom:968.133333pt;}
.y40{bottom:974.053333pt;}
.y7{bottom:983.493333pt;}
.y3f{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.y3e{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1035.520000pt;}
.y1{bottom:1049.440000pt;}
.h12{height:19.360000pt;}
.h11{height:19.520000pt;}
.h2{height:25.920000pt;}
.he{height:30.254687pt;}
.h9{height:31.008437pt;}
.h5{height:32.683437pt;}
.h7{height:37.090625pt;}
.h6{height:37.479688pt;}
.hc{height:38.361562pt;}
.hb{height:38.413438pt;}
.hd{height:40.488438pt;}
.h10{height:41.543750pt;}
.ha{height:42.578750pt;}
.h3{height:44.505000pt;}
.hf{height:44.878750pt;}
.h8{height:48.768750pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.wc{width:75.200000pt;}
.wd{width:75.232000pt;}
.wa{width:75.872000pt;}
.w9{width:83.200000pt;}
.w6{width:113.312000pt;}
.w7{width:142.746667pt;}
.w5{width:165.626667pt;}
.wb{width:245.986667pt;}
.w8{width:246.626667pt;}
.w3{width:538.813333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:8.800000pt;}
.x12{left:35.680000pt;}
.x10{left:38.080000pt;}
.x14{left:40.960000pt;}
.x16{left:58.080000pt;}
.x17{left:72.800000pt;}
.x18{left:76.840000pt;}
.x15{left:80.520000pt;}
.x1{left:96.032000pt;}
.x5{left:110.431988pt;}
.x8{left:119.231988pt;}
.xb{left:123.231988pt;}
.xe{left:124.511988pt;}
.x3{left:143.226667pt;}
.xa{left:172.506655pt;}
.xf{left:184.826667pt;}
.x1d{left:199.066667pt;}
.x9{left:208.346655pt;}
.x1c{left:211.546655pt;}
.x19{left:220.826655pt;}
.x6{left:230.906655pt;}
.x11{left:350.466667pt;}
.xd{left:373.986655pt;}
.xc{left:375.426655pt;}
.x7{left:396.866655pt;}
.x1a{left:431.453333pt;}
.x1e{left:445.693333pt;}
.x13{left:463.773333pt;}
.x1b{left:514.653333pt;}
.x1f{left:521.533333pt;}
}




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