
    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_69d1d2c29837c23cfbc7db6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.763672;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_3ef9c61b00cccad977b4368e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027832;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_a60d153def2669d56268869e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.988281;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_eb1d0f4b1dc7de18943788f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736328;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_6c08d8fbf43ecd0e229794ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988281;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_27ab3a21a813c0932bad83d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_2f0e93a4e826e0e613e0195b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979980;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:-21.550800px;}
.v3{vertical-align:-18.105600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.550800px;}
.lsf{letter-spacing:-0.246000px;}
.ls1{letter-spacing:-0.021600px;}
.ls7{letter-spacing:-0.019200px;}
.lsb{letter-spacing:-0.018000px;}
.ls15{letter-spacing:-0.016800px;}
.ls0{letter-spacing:-0.014400px;}
.lsa{letter-spacing:-0.009600px;}
.ls10{letter-spacing:-0.008400px;}
.ls2{letter-spacing:-0.007200px;}
.ls9{letter-spacing:-0.006000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.006000px;}
.lse{letter-spacing:0.008400px;}
.ls5{letter-spacing:0.009600px;}
.ls6{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.984600px;}
.ls14{letter-spacing:1.650000px;}
.lsc{letter-spacing:3.648000px;}
.ls11{letter-spacing:3.984000px;}
.ls13{letter-spacing:10.056000px;}
.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:-19.944000px;}
.ws5{word-spacing:-16.812000px;}
.ws7{word-spacing:-16.806000px;}
.ws4{word-spacing:-16.626000px;}
.ws3{word-spacing:-16.620000px;}
.ws9{word-spacing:-14.958000px;}
.ws8{word-spacing:-0.086400px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:5.396580px;}
.ws2{word-spacing:11.506380px;}
._c{margin-left:-17.550000px;}
._15{margin-left:-10.488000px;}
._14{margin-left:-8.454000px;}
._8{margin-left:-6.696000px;}
._e{margin-left:-4.966800px;}
._9{margin-left:-3.906000px;}
._b{margin-left:-2.584800px;}
._3{margin-left:-1.518000px;}
._0{width:2.001600px;}
._1{width:3.300000px;}
._5{width:5.250000px;}
._2{width:6.804000px;}
._4{width:8.232000px;}
._6{width:9.715200px;}
._7{width:11.622000px;}
._13{width:12.637200px;}
._a{width:13.998000px;}
._1a{width:15.186180px;}
._1b{width:17.996220px;}
._f{width:19.404000px;}
._12{width:20.426400px;}
._11{width:22.716000px;}
._16{width:23.736000px;}
._10{width:26.262000px;}
._17{width:27.458400px;}
._18{width:29.520000px;}
._19{width:33.762000px;}
._d{width:65.687400px;}
.fc3{color:rgb(0,21,129);}
.fc2{color:rgb(0,0,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,31,103);}
.fs6{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.000000px;}
.y3{bottom:34.500000px;}
.y2e{bottom:55.500000px;}
.yb2{bottom:114.000000px;}
.yb1{bottom:130.500000px;}
.yb0{bottom:147.000000px;}
.y92{bottom:162.000000px;}
.yaf{bottom:163.500000px;}
.y47{bottom:165.000000px;}
.y6d{bottom:181.500000px;}
.y46{bottom:183.000000px;}
.y91{bottom:184.526400px;}
.y6c{bottom:199.500000px;}
.y45{bottom:201.000000px;}
.yae{bottom:210.000000px;}
.y2d{bottom:216.000000px;}
.y6b{bottom:217.500000px;}
.y44{bottom:219.000000px;}
.y2c{bottom:234.000000px;}
.y6a{bottom:235.500000px;}
.y43{bottom:237.000000px;}
.yad{bottom:240.000000px;}
.y2b{bottom:252.000000px;}
.y6{bottom:253.500000px;}
.y42{bottom:264.000000px;}
.y2a{bottom:270.000000px;}
.y69{bottom:271.500000px;}
.y41{bottom:282.000000px;}
.y29{bottom:288.000000px;}
.y68{bottom:289.500000px;}
.y40{bottom:300.000000px;}
.yac{bottom:303.000000px;}
.y28{bottom:306.000000px;}
.y90{bottom:310.500000px;}
.y5{bottom:315.000000px;}
.y67{bottom:316.500000px;}
.y3f{bottom:318.000000px;}
.yab{bottom:321.000000px;}
.y27{bottom:324.000000px;}
.y8f{bottom:331.500000px;}
.y66{bottom:334.500000px;}
.y3e{bottom:336.000000px;}
.yaa{bottom:339.000000px;}
.y26{bottom:342.000000px;}
.y65{bottom:352.500000px;}
.y2{bottom:354.000000px;}
.y25{bottom:360.000000px;}
.ya9{bottom:366.000000px;}
.y64{bottom:370.500000px;}
.y3d{bottom:372.000000px;}
.y24{bottom:378.000000px;}
.ya8{bottom:384.000000px;}
.y63{bottom:388.500000px;}
.y23{bottom:396.000000px;}
.y3c{bottom:399.000000px;}
.ya7{bottom:402.000000px;}
.y8e{bottom:406.500000px;}
.y22{bottom:414.000000px;}
.y62{bottom:415.500000px;}
.y3b{bottom:417.000000px;}
.y8d{bottom:424.500000px;}
.ya6{bottom:429.000000px;}
.y21{bottom:432.000000px;}
.y61{bottom:433.500000px;}
.y3a{bottom:435.000000px;}
.y8c{bottom:442.500000px;}
.ya5{bottom:447.000000px;}
.y20{bottom:450.000000px;}
.y60{bottom:451.500000px;}
.y39{bottom:453.000000px;}
.y8b{bottom:460.500000px;}
.ya4{bottom:465.000000px;}
.y5f{bottom:469.500000px;}
.y1f{bottom:477.000000px;}
.y8a{bottom:478.500000px;}
.ya3{bottom:483.000000px;}
.y5e{bottom:487.500000px;}
.y1e{bottom:495.000000px;}
.y89{bottom:496.500000px;}
.ya2{bottom:510.000000px;}
.y1d{bottom:513.000000px;}
.y5d{bottom:516.000000px;}
.y88{bottom:523.500000px;}
.ya1{bottom:528.000000px;}
.y1c{bottom:531.000000px;}
.y87{bottom:541.500000px;}
.ya0{bottom:546.000000px;}
.y1b{bottom:549.000000px;}
.y86{bottom:559.500000px;}
.y9f{bottom:564.000000px;}
.y1a{bottom:567.000000px;}
.y85{bottom:577.500000px;}
.y9e{bottom:582.000000px;}
.y19{bottom:585.000000px;}
.y84{bottom:595.500000px;}
.y18{bottom:603.000000px;}
.y9d{bottom:609.000000px;}
.y83{bottom:613.500000px;}
.y17{bottom:621.000000px;}
.y9c{bottom:627.000000px;}
.y82{bottom:631.500000px;}
.y5c{bottom:639.000000px;}
.y9b{bottom:645.000000px;}
.y81{bottom:649.500000px;}
.y16{bottom:651.000000px;}
.y5b{bottom:657.000000px;}
.y80{bottom:667.500000px;}
.y5a{bottom:675.000000px;}
.y7f{bottom:685.500000px;}
.y59{bottom:702.000000px;}
.y7e{bottom:703.500000px;}
.y15{bottom:714.000000px;}
.y58{bottom:720.000000px;}
.y1{bottom:724.500000px;}
.y7d{bottom:730.500000px;}
.y57{bottom:738.000000px;}
.y14{bottom:741.000000px;}
.y7c{bottom:748.500000px;}
.y56{bottom:756.000000px;}
.y7b{bottom:766.500000px;}
.y13{bottom:768.000000px;}
.y55{bottom:774.000000px;}
.y9a{bottom:783.000000px;}
.y7a{bottom:784.500000px;}
.y54{bottom:792.000000px;}
.y12{bottom:795.000000px;}
.y99{bottom:801.000000px;}
.y79{bottom:802.500000px;}
.y53{bottom:810.000000px;}
.y98{bottom:819.000000px;}
.y78{bottom:820.500000px;}
.y11{bottom:825.000000px;}
.y52{bottom:828.000000px;}
.y38{bottom:834.000000px;}
.y97{bottom:837.000000px;}
.y51{bottom:846.000000px;}
.y77{bottom:847.500000px;}
.y6f{bottom:850.500000px;}
.y37{bottom:852.000000px;}
.y50{bottom:864.000000px;}
.y76{bottom:865.500000px;}
.y6e{bottom:868.500000px;}
.y36{bottom:870.000000px;}
.y75{bottom:883.500000px;}
.y10{bottom:888.000000px;}
.y4f{bottom:891.000000px;}
.y74{bottom:901.500000px;}
.yf{bottom:906.000000px;}
.y4e{bottom:909.000000px;}
.y96{bottom:916.500000px;}
.y73{bottom:919.500000px;}
.y35{bottom:924.000000px;}
.y4d{bottom:927.000000px;}
.ye{bottom:933.000000px;}
.y95{bottom:934.500000px;}
.y72{bottom:937.500000px;}
.y34{bottom:942.000000px;}
.y4c{bottom:945.000000px;}
.yd{bottom:951.000000px;}
.y94{bottom:952.500000px;}
.y71{bottom:955.500000px;}
.y4b{bottom:963.000000px;}
.yc{bottom:969.000000px;}
.y93{bottom:970.500000px;}
.y33{bottom:972.000000px;}
.y4a{bottom:981.000000px;}
.y70{bottom:984.000000px;}
.yb{bottom:996.000000px;}
.y49{bottom:999.000000px;}
.ya{bottom:1014.000000px;}
.y48{bottom:1017.000000px;}
.y9{bottom:1032.000000px;}
.y32{bottom:1035.000000px;}
.y8{bottom:1050.000000px;}
.y31{bottom:1053.000000px;}
.y30{bottom:1071.000000px;}
.y7{bottom:1080.000000px;}
.y2f{bottom:1089.000000px;}
.hd{height:28.710806px;}
.h5{height:37.500000px;}
.he{height:42.134766px;}
.h8{height:43.037109px;}
.h7{height:46.816406px;}
.h9{height:49.189453px;}
.hb{height:54.000000px;}
.h4{height:56.179688px;}
.hc{height:57.550800px;}
.h3{height:59.027344px;}
.h2{height:60.000000px;}
.ha{height:68.865234px;}
.h6{height:78.703125px;}
.h1{height:108.000000px;}
.h0{height:1263.000000px;}
.w1{width:211.050000px;}
.w2{width:419.700450px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:7.500000px;}
.x8{left:22.955205px;}
.x7{left:45.472785px;}
.x5{left:101.221800px;}
.x6{left:108.701295px;}
.x15{left:126.000000px;}
.xa{left:127.559055px;}
.x2{left:129.000000px;}
.xb{left:148.818900px;}
.x9{left:168.787650px;}
.x10{left:175.462650px;}
.xf{left:179.439750px;}
.x14{left:188.915550px;}
.x11{left:226.303650px;}
.x4{left:341.550000px;}
.x1{left:342.574200px;}
.xc{left:442.078800px;}
.x12{left:476.302002px;}
.xd{left:478.067139px;}
.xe{left:535.760010px;}
.x13{left:575.545170px;}
@media print{
.v2{vertical-align:-19.156267pt;}
.v3{vertical-align:-16.093867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.156267pt;}
.lsf{letter-spacing:-0.218667pt;}
.ls1{letter-spacing:-0.019200pt;}
.ls7{letter-spacing:-0.017067pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls15{letter-spacing:-0.014933pt;}
.ls0{letter-spacing:-0.012800pt;}
.lsa{letter-spacing:-0.008533pt;}
.ls10{letter-spacing:-0.007467pt;}
.ls2{letter-spacing:-0.006400pt;}
.ls9{letter-spacing:-0.005333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.007467pt;}
.ls5{letter-spacing:0.008533pt;}
.ls6{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.875200pt;}
.ls14{letter-spacing:1.466667pt;}
.lsc{letter-spacing:3.242667pt;}
.ls11{letter-spacing:3.541333pt;}
.ls13{letter-spacing:8.938667pt;}
.ws0{word-spacing:-17.728000pt;}
.ws5{word-spacing:-14.944000pt;}
.ws7{word-spacing:-14.938667pt;}
.ws4{word-spacing:-14.778667pt;}
.ws3{word-spacing:-14.773333pt;}
.ws9{word-spacing:-13.296000pt;}
.ws8{word-spacing:-0.076800pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:4.796960pt;}
.ws2{word-spacing:10.227893pt;}
._c{margin-left:-15.600000pt;}
._15{margin-left:-9.322667pt;}
._14{margin-left:-7.514667pt;}
._8{margin-left:-5.952000pt;}
._e{margin-left:-4.414933pt;}
._9{margin-left:-3.472000pt;}
._b{margin-left:-2.297600pt;}
._3{margin-left:-1.349333pt;}
._0{width:1.779200pt;}
._1{width:2.933333pt;}
._5{width:4.666667pt;}
._2{width:6.048000pt;}
._4{width:7.317333pt;}
._6{width:8.635733pt;}
._7{width:10.330667pt;}
._13{width:11.233067pt;}
._a{width:12.442667pt;}
._1a{width:13.498827pt;}
._1b{width:15.996640pt;}
._f{width:17.248000pt;}
._12{width:18.156800pt;}
._11{width:20.192000pt;}
._16{width:21.098667pt;}
._10{width:23.344000pt;}
._17{width:24.407467pt;}
._18{width:26.240000pt;}
._19{width:30.010667pt;}
._d{width:58.388800pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.666667pt;}
.y3{bottom:30.666667pt;}
.y2e{bottom:49.333333pt;}
.yb2{bottom:101.333333pt;}
.yb1{bottom:116.000000pt;}
.yb0{bottom:130.666667pt;}
.y92{bottom:144.000000pt;}
.yaf{bottom:145.333333pt;}
.y47{bottom:146.666667pt;}
.y6d{bottom:161.333333pt;}
.y46{bottom:162.666667pt;}
.y91{bottom:164.023467pt;}
.y6c{bottom:177.333333pt;}
.y45{bottom:178.666667pt;}
.yae{bottom:186.666667pt;}
.y2d{bottom:192.000000pt;}
.y6b{bottom:193.333333pt;}
.y44{bottom:194.666667pt;}
.y2c{bottom:208.000000pt;}
.y6a{bottom:209.333333pt;}
.y43{bottom:210.666667pt;}
.yad{bottom:213.333333pt;}
.y2b{bottom:224.000000pt;}
.y6{bottom:225.333333pt;}
.y42{bottom:234.666667pt;}
.y2a{bottom:240.000000pt;}
.y69{bottom:241.333333pt;}
.y41{bottom:250.666667pt;}
.y29{bottom:256.000000pt;}
.y68{bottom:257.333333pt;}
.y40{bottom:266.666667pt;}
.yac{bottom:269.333333pt;}
.y28{bottom:272.000000pt;}
.y90{bottom:276.000000pt;}
.y5{bottom:280.000000pt;}
.y67{bottom:281.333333pt;}
.y3f{bottom:282.666667pt;}
.yab{bottom:285.333333pt;}
.y27{bottom:288.000000pt;}
.y8f{bottom:294.666667pt;}
.y66{bottom:297.333333pt;}
.y3e{bottom:298.666667pt;}
.yaa{bottom:301.333333pt;}
.y26{bottom:304.000000pt;}
.y65{bottom:313.333333pt;}
.y2{bottom:314.666667pt;}
.y25{bottom:320.000000pt;}
.ya9{bottom:325.333333pt;}
.y64{bottom:329.333333pt;}
.y3d{bottom:330.666667pt;}
.y24{bottom:336.000000pt;}
.ya8{bottom:341.333333pt;}
.y63{bottom:345.333333pt;}
.y23{bottom:352.000000pt;}
.y3c{bottom:354.666667pt;}
.ya7{bottom:357.333333pt;}
.y8e{bottom:361.333333pt;}
.y22{bottom:368.000000pt;}
.y62{bottom:369.333333pt;}
.y3b{bottom:370.666667pt;}
.y8d{bottom:377.333333pt;}
.ya6{bottom:381.333333pt;}
.y21{bottom:384.000000pt;}
.y61{bottom:385.333333pt;}
.y3a{bottom:386.666667pt;}
.y8c{bottom:393.333333pt;}
.ya5{bottom:397.333333pt;}
.y20{bottom:400.000000pt;}
.y60{bottom:401.333333pt;}
.y39{bottom:402.666667pt;}
.y8b{bottom:409.333333pt;}
.ya4{bottom:413.333333pt;}
.y5f{bottom:417.333333pt;}
.y1f{bottom:424.000000pt;}
.y8a{bottom:425.333333pt;}
.ya3{bottom:429.333333pt;}
.y5e{bottom:433.333333pt;}
.y1e{bottom:440.000000pt;}
.y89{bottom:441.333333pt;}
.ya2{bottom:453.333333pt;}
.y1d{bottom:456.000000pt;}
.y5d{bottom:458.666667pt;}
.y88{bottom:465.333333pt;}
.ya1{bottom:469.333333pt;}
.y1c{bottom:472.000000pt;}
.y87{bottom:481.333333pt;}
.ya0{bottom:485.333333pt;}
.y1b{bottom:488.000000pt;}
.y86{bottom:497.333333pt;}
.y9f{bottom:501.333333pt;}
.y1a{bottom:504.000000pt;}
.y85{bottom:513.333333pt;}
.y9e{bottom:517.333333pt;}
.y19{bottom:520.000000pt;}
.y84{bottom:529.333333pt;}
.y18{bottom:536.000000pt;}
.y9d{bottom:541.333333pt;}
.y83{bottom:545.333333pt;}
.y17{bottom:552.000000pt;}
.y9c{bottom:557.333333pt;}
.y82{bottom:561.333333pt;}
.y5c{bottom:568.000000pt;}
.y9b{bottom:573.333333pt;}
.y81{bottom:577.333333pt;}
.y16{bottom:578.666667pt;}
.y5b{bottom:584.000000pt;}
.y80{bottom:593.333333pt;}
.y5a{bottom:600.000000pt;}
.y7f{bottom:609.333333pt;}
.y59{bottom:624.000000pt;}
.y7e{bottom:625.333333pt;}
.y15{bottom:634.666667pt;}
.y58{bottom:640.000000pt;}
.y1{bottom:644.000000pt;}
.y7d{bottom:649.333333pt;}
.y57{bottom:656.000000pt;}
.y14{bottom:658.666667pt;}
.y7c{bottom:665.333333pt;}
.y56{bottom:672.000000pt;}
.y7b{bottom:681.333333pt;}
.y13{bottom:682.666667pt;}
.y55{bottom:688.000000pt;}
.y9a{bottom:696.000000pt;}
.y7a{bottom:697.333333pt;}
.y54{bottom:704.000000pt;}
.y12{bottom:706.666667pt;}
.y99{bottom:712.000000pt;}
.y79{bottom:713.333333pt;}
.y53{bottom:720.000000pt;}
.y98{bottom:728.000000pt;}
.y78{bottom:729.333333pt;}
.y11{bottom:733.333333pt;}
.y52{bottom:736.000000pt;}
.y38{bottom:741.333333pt;}
.y97{bottom:744.000000pt;}
.y51{bottom:752.000000pt;}
.y77{bottom:753.333333pt;}
.y6f{bottom:756.000000pt;}
.y37{bottom:757.333333pt;}
.y50{bottom:768.000000pt;}
.y76{bottom:769.333333pt;}
.y6e{bottom:772.000000pt;}
.y36{bottom:773.333333pt;}
.y75{bottom:785.333333pt;}
.y10{bottom:789.333333pt;}
.y4f{bottom:792.000000pt;}
.y74{bottom:801.333333pt;}
.yf{bottom:805.333333pt;}
.y4e{bottom:808.000000pt;}
.y96{bottom:814.666667pt;}
.y73{bottom:817.333333pt;}
.y35{bottom:821.333333pt;}
.y4d{bottom:824.000000pt;}
.ye{bottom:829.333333pt;}
.y95{bottom:830.666667pt;}
.y72{bottom:833.333333pt;}
.y34{bottom:837.333333pt;}
.y4c{bottom:840.000000pt;}
.yd{bottom:845.333333pt;}
.y94{bottom:846.666667pt;}
.y71{bottom:849.333333pt;}
.y4b{bottom:856.000000pt;}
.yc{bottom:861.333333pt;}
.y93{bottom:862.666667pt;}
.y33{bottom:864.000000pt;}
.y4a{bottom:872.000000pt;}
.y70{bottom:874.666667pt;}
.yb{bottom:885.333333pt;}
.y49{bottom:888.000000pt;}
.ya{bottom:901.333333pt;}
.y48{bottom:904.000000pt;}
.y9{bottom:917.333333pt;}
.y32{bottom:920.000000pt;}
.y8{bottom:933.333333pt;}
.y31{bottom:936.000000pt;}
.y30{bottom:952.000000pt;}
.y7{bottom:960.000000pt;}
.y2f{bottom:968.000000pt;}
.hd{height:25.520717pt;}
.h5{height:33.333333pt;}
.he{height:37.453125pt;}
.h8{height:38.255208pt;}
.h7{height:41.614583pt;}
.h9{height:43.723958pt;}
.hb{height:48.000000pt;}
.h4{height:49.937500pt;}
.hc{height:51.156267pt;}
.h3{height:52.468750pt;}
.h2{height:53.333333pt;}
.ha{height:61.213542pt;}
.h6{height:69.958333pt;}
.h1{height:96.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:187.600000pt;}
.w2{width:373.067067pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:6.666667pt;}
.x8{left:20.404627pt;}
.x7{left:40.420253pt;}
.x5{left:89.974933pt;}
.x6{left:96.623373pt;}
.x15{left:112.000000pt;}
.xa{left:113.385827pt;}
.x2{left:114.666667pt;}
.xb{left:132.283467pt;}
.x9{left:150.033467pt;}
.x10{left:155.966800pt;}
.xf{left:159.502000pt;}
.x14{left:167.924933pt;}
.x11{left:201.158800pt;}
.x4{left:303.600000pt;}
.x1{left:304.510400pt;}
.xc{left:392.958933pt;}
.x12{left:423.379557pt;}
.xd{left:424.948568pt;}
.xe{left:476.231120pt;}
.x13{left:511.595707pt;}
}




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