
    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_0b9a8cfc1068d23b99b2ab7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_38606c0ce1e4aebf46e11cd5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_087ff72dda87a17b0a274b7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_6013a77bf083425745cda70b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096000;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_c63a03b9ba973d2a1e4e5b01.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_49e60e622312d214cfd5cfb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;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_972e387355d9379b8e099483.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927000;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_f2fbe3914160c09ca4862ed6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929000;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_58d4f78174acabbc29720902.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.118000;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_4af31d8539ddccc74b6b2444.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.117000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v1{vertical-align:-52.416000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:561.648000px;}
.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;}
}
.ws1{word-spacing:-15.750000px;}
.ws5{word-spacing:-14.178000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:254.592000px;}
.ws2{word-spacing:267.936000px;}
.ws4{word-spacing:641.376000px;}
._d{margin-left:-21.600000px;}
._e{margin-left:-8.475000px;}
._11{margin-left:-7.212000px;}
._a{margin-left:-5.670000px;}
._c{margin-left:-4.032000px;}
._9{margin-left:-2.772000px;}
._0{margin-left:-1.008000px;}
._8{width:1.134000px;}
._1{width:2.772000px;}
._5{width:4.347000px;}
._7{width:5.544000px;}
._6{width:6.552000px;}
._3{width:8.316000px;}
._4{width:9.576000px;}
._b{width:10.710000px;}
._f{width:12.096000px;}
._2{width:13.104000px;}
._10{width:14.112000px;}
._12{width:18.018000px;}
._15{width:130.032000px;}
._14{width:188.112000px;}
._1f{width:356.064000px;}
._1c{width:400.512000px;}
._18{width:415.728000px;}
._1b{width:418.272000px;}
._21{width:448.464000px;}
._20{width:483.168000px;}
._16{width:501.024000px;}
._1e{width:524.064000px;}
._19{width:548.304000px;}
._1d{width:561.648000px;}
._13{width:567.600000px;}
._17{width:588.336000px;}
._1a{width:594.288000px;}
._22{width:981.532800px;}
.fc5{color:rgb(90,103,113);}
.fc3{color:rgb(210,32,39);}
.fc2{color:rgb(29,100,52);}
.fc1{color:rgb(237,28,36);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:36.000000px;}
.fs8{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:75.000000px;}
.fs2{font-size:96.000000px;}
.fs4{font-size:144.000000px;}
.fs3{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.611850px;}
.y36{bottom:63.780150px;}
.y2d{bottom:64.134150px;}
.y80{bottom:67.867650px;}
.y86{bottom:71.916000px;}
.y19{bottom:75.223650px;}
.y2c{bottom:85.884900px;}
.y85{bottom:89.919000px;}
.y18{bottom:96.974400px;}
.y2b{bottom:107.635650px;}
.y84{bottom:107.922000px;}
.y7f{bottom:115.531650px;}
.y17{bottom:118.725150px;}
.y83{bottom:125.925000px;}
.y2a{bottom:129.386400px;}
.y7b{bottom:134.575650px;}
.y7e{bottom:136.963650px;}
.y16{bottom:140.475900px;}
.y82{bottom:143.925000px;}
.y29{bottom:151.137150px;}
.y7d{bottom:158.395650px;}
.y15{bottom:162.226650px;}
.y28{bottom:172.887900px;}
.y81{bottom:176.325000px;}
.y7c{bottom:179.827650px;}
.y14{bottom:183.977400px;}
.y27{bottom:194.638650px;}
.y7a{bottom:201.259650px;}
.y13{bottom:205.728150px;}
.y93{bottom:216.068100px;}
.y26{bottom:216.389400px;}
.y79{bottom:222.691650px;}
.y12{bottom:227.478900px;}
.y76{bottom:233.407650px;}
.y92{bottom:237.818850px;}
.y25{bottom:238.140150px;}
.y78{bottom:244.123650px;}
.y11{bottom:249.229650px;}
.y91{bottom:259.569600px;}
.y24{bottom:259.890900px;}
.y77{bottom:265.555650px;}
.y10{bottom:270.980400px;}
.y90{bottom:281.320350px;}
.y23{bottom:281.641650px;}
.yf{bottom:292.731150px;}
.y22{bottom:303.457650px;}
.y75{bottom:310.423650px;}
.ye{bottom:314.481900px;}
.y71{bottom:331.855650px;}
.y74{bottom:333.871650px;}
.y73{bottom:355.303650px;}
.yd{bottom:357.983400px;}
.y72{bottom:376.735650px;}
.y8c{bottom:377.390250px;}
.yc{bottom:379.734150px;}
.y21{bottom:382.801650px;}
.y70{bottom:398.167650px;}
.yb{bottom:401.484900px;}
.y8b{bottom:408.034800px;}
.y20{bottom:411.289650px;}
.y6f{bottom:412.567650px;}
.ya{bottom:423.235650px;}
.y6e{bottom:433.999650px;}
.y1f{bottom:439.777650px;}
.y8a{bottom:439.924500px;}
.y9{bottom:444.986400px;}
.y8{bottom:466.737150px;}
.y1e{bottom:468.265650px;}
.y89{bottom:471.814200px;}
.y7{bottom:488.487900px;}
.y1d{bottom:496.753650px;}
.y88{bottom:507.033900px;}
.y6{bottom:510.238650px;}
.y51{bottom:515.436750px;}
.y1c{bottom:525.241650px;}
.y5{bottom:531.989400px;}
.y6d{bottom:532.336500px;}
.y87{bottom:536.797800px;}
.y50{bottom:537.187500px;}
.y4{bottom:553.740150px;}
.y6c{bottom:554.087250px;}
.y4f{bottom:558.938250px;}
.y1b{bottom:575.475150px;}
.y3{bottom:575.490900px;}
.y6b{bottom:575.838000px;}
.y4e{bottom:580.689000px;}
.y1a{bottom:597.225900px;}
.y2{bottom:597.241650px;}
.y6a{bottom:597.588750px;}
.y4d{bottom:602.439750px;}
.y69{bottom:619.339500px;}
.y4c{bottom:624.189750px;}
.y68{bottom:641.090250px;}
.y32{bottom:651.424350px;}
.y67{bottom:662.841000px;}
.y4b{bottom:674.733600px;}
.y66{bottom:684.591750px;}
.y4a{bottom:696.484350px;}
.y65{bottom:706.342500px;}
.y49{bottom:718.235100px;}
.y48{bottom:739.985850px;}
.y64{bottom:749.844000px;}
.y35{bottom:756.352500px;}
.y47{bottom:761.736600px;}
.y63{bottom:771.594750px;}
.y34{bottom:780.352500px;}
.y8d{bottom:783.388800px;}
.y46{bottom:783.487350px;}
.y62{bottom:793.345500px;}
.y33{bottom:804.352500px;}
.y45{bottom:805.238100px;}
.y61{bottom:815.096250px;}
.y44{bottom:826.988850px;}
.y60{bottom:836.847000px;}
.y43{bottom:848.739600px;}
.y30{bottom:852.663150px;}
.y5f{bottom:880.348500px;}
.y42{bottom:892.287600px;}
.y5e{bottom:902.099250px;}
.y41{bottom:920.775600px;}
.y5d{bottom:923.850000px;}
.y2f{bottom:942.627150px;}
.y5c{bottom:945.600750px;}
.y40{bottom:949.263600px;}
.y5b{bottom:967.351500px;}
.y3f{bottom:977.751600px;}
.y5a{bottom:989.102250px;}
.y3e{bottom:1006.239600px;}
.y59{bottom:1010.853000px;}
.y2e{bottom:1032.591150px;}
.y58{bottom:1032.603750px;}
.y57{bottom:1054.354500px;}
.y3d{bottom:1056.485250px;}
.y56{bottom:1076.105250px;}
.y3c{bottom:1078.236000px;}
.y55{bottom:1097.856000px;}
.y3b{bottom:1099.986750px;}
.y3a{bottom:1121.737500px;}
.y8f{bottom:1136.315850px;}
.y54{bottom:1141.357500px;}
.y39{bottom:1143.488250px;}
.y53{bottom:1163.108250px;}
.y38{bottom:1165.239000px;}
.y31{bottom:1172.055750px;}
.y52{bottom:1184.859000px;}
.y8e{bottom:1185.193800px;}
.y37{bottom:1186.989750px;}
.he{height:32.688000px;}
.hc{height:35.088000px;}
.hf{height:37.791000px;}
.h11{height:38.352000px;}
.h2{height:40.014000px;}
.h8{height:40.608000px;}
.hd{height:43.584000px;}
.hb{height:43.860000px;}
.h10{height:49.572000px;}
.h9{height:54.225000px;}
.h3{height:57.204000px;}
.ha{height:58.410000px;}
.h4{height:69.696000px;}
.h5{height:84.960000px;}
.h7{height:127.440000px;}
.h6{height:382.320000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:24.383700px;}
.x1e{left:38.949750px;}
.xa{left:57.578700px;}
.xb{left:61.830600px;}
.x2{left:63.779550px;}
.x13{left:70.468800px;}
.x1b{left:92.793300px;}
.xf{left:108.878400px;}
.x12{left:115.214400px;}
.x1a{left:127.559100px;}
.x11{left:162.926400px;}
.x10{left:182.918400px;}
.x16{left:218.536800px;}
.x1d{left:261.850350px;}
.x17{left:310.660800px;}
.x3{left:457.198800px;}
.x8{left:459.667050px;}
.x7{left:465.115050px;}
.x5{left:474.403050px;}
.x6{left:479.347050px;}
.x4{left:484.171050px;}
.x18{left:496.588800px;}
.x9{left:517.483050px;}
.x14{left:597.388800px;}
.x1c{left:640.125150px;}
.x19{left:650.344800px;}
.x15{left:715.156800px;}
.xc{left:732.799950px;}
.xe{left:853.456950px;}
.xd{left:868.022850px;}
@media print{
.v1{vertical-align:-46.592000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:499.242667pt;}
.ws1{word-spacing:-14.000000pt;}
.ws5{word-spacing:-12.602667pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:226.304000pt;}
.ws2{word-spacing:238.165333pt;}
.ws4{word-spacing:570.112000pt;}
._d{margin-left:-19.200000pt;}
._e{margin-left:-7.533333pt;}
._11{margin-left:-6.410667pt;}
._a{margin-left:-5.040000pt;}
._c{margin-left:-3.584000pt;}
._9{margin-left:-2.464000pt;}
._0{margin-left:-0.896000pt;}
._8{width:1.008000pt;}
._1{width:2.464000pt;}
._5{width:3.864000pt;}
._7{width:4.928000pt;}
._6{width:5.824000pt;}
._3{width:7.392000pt;}
._4{width:8.512000pt;}
._b{width:9.520000pt;}
._f{width:10.752000pt;}
._2{width:11.648000pt;}
._10{width:12.544000pt;}
._12{width:16.016000pt;}
._15{width:115.584000pt;}
._14{width:167.210667pt;}
._1f{width:316.501333pt;}
._1c{width:356.010667pt;}
._18{width:369.536000pt;}
._1b{width:371.797333pt;}
._21{width:398.634667pt;}
._20{width:429.482667pt;}
._16{width:445.354667pt;}
._1e{width:465.834667pt;}
._19{width:487.381333pt;}
._1d{width:499.242667pt;}
._13{width:504.533333pt;}
._17{width:522.965333pt;}
._1a{width:528.256000pt;}
._22{width:872.473600pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:66.666667pt;}
.fs2{font-size:85.333333pt;}
.fs4{font-size:128.000000pt;}
.fs3{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.543867pt;}
.y36{bottom:56.693467pt;}
.y2d{bottom:57.008133pt;}
.y80{bottom:60.326800pt;}
.y86{bottom:63.925333pt;}
.y19{bottom:66.865467pt;}
.y2c{bottom:76.342133pt;}
.y85{bottom:79.928000pt;}
.y18{bottom:86.199467pt;}
.y2b{bottom:95.676133pt;}
.y84{bottom:95.930667pt;}
.y7f{bottom:102.694800pt;}
.y17{bottom:105.533467pt;}
.y83{bottom:111.933333pt;}
.y2a{bottom:115.010133pt;}
.y7b{bottom:119.622800pt;}
.y7e{bottom:121.745467pt;}
.y16{bottom:124.867467pt;}
.y82{bottom:127.933333pt;}
.y29{bottom:134.344133pt;}
.y7d{bottom:140.796133pt;}
.y15{bottom:144.201467pt;}
.y28{bottom:153.678133pt;}
.y81{bottom:156.733333pt;}
.y7c{bottom:159.846800pt;}
.y14{bottom:163.535467pt;}
.y27{bottom:173.012133pt;}
.y7a{bottom:178.897467pt;}
.y13{bottom:182.869467pt;}
.y93{bottom:192.060533pt;}
.y26{bottom:192.346133pt;}
.y79{bottom:197.948133pt;}
.y12{bottom:202.203467pt;}
.y76{bottom:207.473467pt;}
.y92{bottom:211.394533pt;}
.y25{bottom:211.680133pt;}
.y78{bottom:216.998800pt;}
.y11{bottom:221.537467pt;}
.y91{bottom:230.728533pt;}
.y24{bottom:231.014133pt;}
.y77{bottom:236.049467pt;}
.y10{bottom:240.871467pt;}
.y90{bottom:250.062533pt;}
.y23{bottom:250.348133pt;}
.yf{bottom:260.205467pt;}
.y22{bottom:269.740133pt;}
.y75{bottom:275.932133pt;}
.ye{bottom:279.539467pt;}
.y71{bottom:294.982800pt;}
.y74{bottom:296.774800pt;}
.y73{bottom:315.825467pt;}
.yd{bottom:318.207467pt;}
.y72{bottom:334.876133pt;}
.y8c{bottom:335.458000pt;}
.yc{bottom:337.541467pt;}
.y21{bottom:340.268133pt;}
.y70{bottom:353.926800pt;}
.yb{bottom:356.875467pt;}
.y8b{bottom:362.697600pt;}
.y20{bottom:365.590800pt;}
.y6f{bottom:366.726800pt;}
.ya{bottom:376.209467pt;}
.y6e{bottom:385.777467pt;}
.y1f{bottom:390.913467pt;}
.y8a{bottom:391.044000pt;}
.y9{bottom:395.543467pt;}
.y8{bottom:414.877467pt;}
.y1e{bottom:416.236133pt;}
.y89{bottom:419.390400pt;}
.y7{bottom:434.211467pt;}
.y1d{bottom:441.558800pt;}
.y88{bottom:450.696800pt;}
.y6{bottom:453.545467pt;}
.y51{bottom:458.166000pt;}
.y1c{bottom:466.881467pt;}
.y5{bottom:472.879467pt;}
.y6d{bottom:473.188000pt;}
.y87{bottom:477.153600pt;}
.y50{bottom:477.500000pt;}
.y4{bottom:492.213467pt;}
.y6c{bottom:492.522000pt;}
.y4f{bottom:496.834000pt;}
.y1b{bottom:511.533467pt;}
.y3{bottom:511.547467pt;}
.y6b{bottom:511.856000pt;}
.y4e{bottom:516.168000pt;}
.y1a{bottom:530.867467pt;}
.y2{bottom:530.881467pt;}
.y6a{bottom:531.190000pt;}
.y4d{bottom:535.502000pt;}
.y69{bottom:550.524000pt;}
.y4c{bottom:554.835333pt;}
.y68{bottom:569.858000pt;}
.y32{bottom:579.043867pt;}
.y67{bottom:589.192000pt;}
.y4b{bottom:599.763200pt;}
.y66{bottom:608.526000pt;}
.y4a{bottom:619.097200pt;}
.y65{bottom:627.860000pt;}
.y49{bottom:638.431200pt;}
.y48{bottom:657.765200pt;}
.y64{bottom:666.528000pt;}
.y35{bottom:672.313333pt;}
.y47{bottom:677.099200pt;}
.y63{bottom:685.862000pt;}
.y34{bottom:693.646667pt;}
.y8d{bottom:696.345600pt;}
.y46{bottom:696.433200pt;}
.y62{bottom:705.196000pt;}
.y33{bottom:714.980000pt;}
.y45{bottom:715.767200pt;}
.y61{bottom:724.530000pt;}
.y44{bottom:735.101200pt;}
.y60{bottom:743.864000pt;}
.y43{bottom:754.435200pt;}
.y30{bottom:757.922800pt;}
.y5f{bottom:782.532000pt;}
.y42{bottom:793.144533pt;}
.y5e{bottom:801.866000pt;}
.y41{bottom:818.467200pt;}
.y5d{bottom:821.200000pt;}
.y2f{bottom:837.890800pt;}
.y5c{bottom:840.534000pt;}
.y40{bottom:843.789867pt;}
.y5b{bottom:859.868000pt;}
.y3f{bottom:869.112533pt;}
.y5a{bottom:879.202000pt;}
.y3e{bottom:894.435200pt;}
.y59{bottom:898.536000pt;}
.y2e{bottom:917.858800pt;}
.y58{bottom:917.870000pt;}
.y57{bottom:937.204000pt;}
.y3d{bottom:939.098000pt;}
.y56{bottom:956.538000pt;}
.y3c{bottom:958.432000pt;}
.y55{bottom:975.872000pt;}
.y3b{bottom:977.766000pt;}
.y3a{bottom:997.100000pt;}
.y8f{bottom:1010.058533pt;}
.y54{bottom:1014.540000pt;}
.y39{bottom:1016.434000pt;}
.y53{bottom:1033.874000pt;}
.y38{bottom:1035.768000pt;}
.y31{bottom:1041.827333pt;}
.y52{bottom:1053.208000pt;}
.y8e{bottom:1053.505600pt;}
.y37{bottom:1055.102000pt;}
.he{height:29.056000pt;}
.hc{height:31.189333pt;}
.hf{height:33.592000pt;}
.h11{height:34.090667pt;}
.h2{height:35.568000pt;}
.h8{height:36.096000pt;}
.hd{height:38.741333pt;}
.hb{height:38.986667pt;}
.h10{height:44.064000pt;}
.h9{height:48.200000pt;}
.h3{height:50.848000pt;}
.ha{height:51.920000pt;}
.h4{height:61.952000pt;}
.h5{height:75.520000pt;}
.h7{height:113.280000pt;}
.h6{height:339.840000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:21.674400pt;}
.x1e{left:34.622000pt;}
.xa{left:51.181067pt;}
.xb{left:54.960533pt;}
.x2{left:56.692933pt;}
.x13{left:62.638933pt;}
.x1b{left:82.482933pt;}
.xf{left:96.780800pt;}
.x12{left:102.412800pt;}
.x1a{left:113.385867pt;}
.x11{left:144.823467pt;}
.x10{left:162.594133pt;}
.x16{left:194.254933pt;}
.x1d{left:232.755867pt;}
.x17{left:276.142933pt;}
.x3{left:406.398933pt;}
.x8{left:408.592933pt;}
.x7{left:413.435600pt;}
.x5{left:421.691600pt;}
.x6{left:426.086267pt;}
.x4{left:430.374267pt;}
.x18{left:441.412267pt;}
.x9{left:459.984933pt;}
.x14{left:531.012267pt;}
.x1c{left:569.000133pt;}
.x19{left:578.084267pt;}
.x15{left:635.694933pt;}
.xc{left:651.377733pt;}
.xe{left:758.628400pt;}
.xd{left:771.575867pt;}
}




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