
    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_d56c84d7d9c5786c512bf603.woff')format("woff");}.ff1{font-family:ff1;line-height:0.980957;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_d4628a2a2b2782e49a558ce8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_60fed219f74656080bdea6fc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_aa7299471d31938387ce26ed.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e3eef09fde33f74225fe850b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a2919bada8006b34b9e4b11c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ee2226f97f01b3108536733.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls8{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.422000px;}
.ls9{letter-spacing:-1.326000px;}
.lsf{letter-spacing:-0.972000px;}
.ls12{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.507000px;}
.ls7{letter-spacing:-0.463800px;}
.ls13{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.216000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.423360px;}
.lsc{letter-spacing:0.449280px;}
.lsb{letter-spacing:0.466800px;}
.ls5{letter-spacing:0.469200px;}
.lsa{letter-spacing:0.507000px;}
.lsd{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:1.460160px;}
.ls1{letter-spacing:3.600000px;}
.ls15{letter-spacing:16.306560px;}
.ls14{letter-spacing:46.558560px;}
.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;}
}
.ws6{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.627000px;}
.ws8{word-spacing:-15.586800px;}
.ws0{word-spacing:-15.439440px;}
.ws7{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.ws1{word-spacing:-14.754240px;}
.wsd{word-spacing:-14.613000px;}
.ws2{word-spacing:-14.506440px;}
.wsb{word-spacing:-14.148000px;}
.wsc{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.680000px;}
.wsa{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._15{margin-left:-7.680960px;}
._6{margin-left:-6.647040px;}
._5{margin-left:-5.070240px;}
._4{margin-left:-3.733440px;}
._0{margin-left:-2.304000px;}
._1{margin-left:-1.212000px;}
._2{width:1.044000px;}
._3{width:2.124000px;}
._7{width:4.110240px;}
._b{width:5.344800px;}
._a{width:6.920640px;}
._11{width:8.787360px;}
._f{width:10.136640px;}
._e{width:11.251680px;}
._10{width:12.751200px;}
._9{width:13.829760px;}
._13{width:16.490880px;}
._8{width:17.948160px;}
._d{width:19.272960px;}
._c{width:20.478240px;}
._12{width:21.645600px;}
._14{width:23.989440px;}
._16{width:25.950240px;}
._1a{width:27.519840px;}
._19{width:32.886720px;}
._17{width:34.787520px;}
._18{width:36.002400px;}
.fc6{color:rgb(19,20,19);}
.fc5{color:rgb(238,0,0);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,175,239);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(126,126,126);}
.fs4{font-size:38.880000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:3.240000px;}
.y50{bottom:3.600000px;}
.y5a{bottom:3.630000px;}
.y52{bottom:3.645000px;}
.y3{bottom:3.960000px;}
.y2{bottom:28.440000px;}
.y8{bottom:70.236000px;}
.y7{bottom:102.276000px;}
.y6{bottom:132.516000px;}
.ya7{bottom:152.670000px;}
.y4c{bottom:153.750000px;}
.ya6{bottom:178.230000px;}
.y4b{bottom:179.670000px;}
.y8e{bottom:181.110000px;}
.y7e{bottom:186.150000px;}
.y2d{bottom:187.230000px;}
.y4a{bottom:201.675000px;}
.ya5{bottom:204.195000px;}
.y8d{bottom:207.075000px;}
.y7d{bottom:212.115000px;}
.y2c{bottom:213.195000px;}
.ya4{bottom:230.115000px;}
.y8c{bottom:232.635000px;}
.y7c{bottom:238.755000px;}
.y2b{bottom:239.115000px;}
.ya3{bottom:256.035000px;}
.y8b{bottom:258.555000px;}
.y2a{bottom:265.035000px;}
.y7b{bottom:266.475000px;}
.ya2{bottom:281.955000px;}
.y8a{bottom:284.475000px;}
.y29{bottom:290.955000px;}
.y7a{bottom:292.395000px;}
.ya1{bottom:307.875000px;}
.y89{bottom:310.395000px;}
.y28{bottom:316.875000px;}
.y79{bottom:318.315000px;}
.ya0{bottom:333.825000px;}
.y88{bottom:336.345000px;}
.y27{bottom:342.465000px;}
.y78{bottom:344.265000px;}
.y9f{bottom:359.745000px;}
.y87{bottom:362.265000px;}
.y26{bottom:368.385000px;}
.y77{bottom:370.185000px;}
.y9e{bottom:385.305000px;}
.y86{bottom:388.185000px;}
.y25{bottom:394.305000px;}
.y76{bottom:396.105000px;}
.y9d{bottom:411.225000px;}
.y85{bottom:413.745000px;}
.y24{bottom:420.225000px;}
.y75{bottom:421.665000px;}
.y9c{bottom:437.145000px;}
.y49{bottom:439.665000px;}
.y23{bottom:446.910000px;}
.y74{bottom:447.630000px;}
.y9b{bottom:463.830000px;}
.y48{bottom:465.630000px;}
.y73{bottom:473.550000px;}
.y22{bottom:474.630000px;}
.y47{bottom:491.550000px;}
.y9a{bottom:492.270000px;}
.y72{bottom:499.470000px;}
.y21{bottom:501.270000px;}
.y46{bottom:517.470000px;}
.y99{bottom:519.990000px;}
.y71{bottom:526.110000px;}
.y20{bottom:528.990000px;}
.y45{bottom:543.390000px;}
.y98{bottom:545.910000px;}
.y70{bottom:554.550000px;}
.y1f{bottom:554.910000px;}
.y44{bottom:569.310000px;}
.y6f{bottom:570.750000px;}
.y97{bottom:571.830000px;}
.y1e{bottom:580.860000px;}
.y6e{bottom:588.780000px;}
.y43{bottom:595.260000px;}
.y96{bottom:597.780000px;}
.y1d{bottom:606.420000px;}
.y6d{bottom:606.780000px;}
.y42{bottom:620.820000px;}
.y95{bottom:623.700000px;}
.y6c{bottom:624.780000px;}
.y1c{bottom:632.340000px;}
.y6b{bottom:642.780000px;}
.y41{bottom:646.740000px;}
.y94{bottom:649.260000px;}
.y1b{bottom:658.260000px;}
.y6a{bottom:660.780000px;}
.y40{bottom:672.660000px;}
.y93{bottom:675.180000px;}
.y69{bottom:678.780000px;}
.y1a{bottom:684.180000px;}
.y68{bottom:696.780000px;}
.y3f{bottom:698.580000px;}
.y92{bottom:701.130000px;}
.y19{bottom:710.130000px;}
.y67{bottom:714.810000px;}
.y3e{bottom:724.530000px;}
.y91{bottom:727.050000px;}
.y66{bottom:732.810000px;}
.y18{bottom:736.050000px;}
.y3d{bottom:750.450000px;}
.y65{bottom:750.810000px;}
.y90{bottom:752.970000px;}
.y17{bottom:761.970000px;}
.y64{bottom:768.810000px;}
.y3c{bottom:776.370000px;}
.y8f{bottom:778.890000px;}
.y63{bottom:786.810000px;}
.y16{bottom:787.890000px;}
.y84{bottom:802.290000px;}
.y3b{bottom:803.010000px;}
.y62{bottom:804.810000px;}
.y15{bottom:814.530000px;}
.y61{bottom:822.810000px;}
.y83{bottom:827.895000px;}
.y3a{bottom:830.775000px;}
.y14{bottom:833.655000px;}
.y60{bottom:840.855000px;}
.y82{bottom:853.815000px;}
.y39{bottom:856.335000px;}
.y5f{bottom:858.855000px;}
.y13{bottom:863.175000px;}
.y5e{bottom:876.855000px;}
.y81{bottom:879.735000px;}
.y38{bottom:882.255000px;}
.y12{bottom:889.095000px;}
.y5d{bottom:894.855000px;}
.y80{bottom:905.655000px;}
.y37{bottom:908.175000px;}
.y5c{bottom:912.855000px;}
.y11{bottom:915.015000px;}
.y5b{bottom:930.855000px;}
.yb0{bottom:931.575000px;}
.y7f{bottom:932.295000px;}
.y36{bottom:934.095000px;}
.y10{bottom:940.575000px;}
.y59{bottom:948.855000px;}
.yaf{bottom:957.525000px;}
.y35{bottom:960.045000px;}
.yf{bottom:966.525000px;}
.y58{bottom:966.885000px;}
.yae{bottom:983.445000px;}
.y57{bottom:984.885000px;}
.y34{bottom:985.965000px;}
.ye{bottom:992.445000px;}
.y56{bottom:1002.885000px;}
.yad{bottom:1009.005000px;}
.y33{bottom:1011.885000px;}
.yd{bottom:1018.365000px;}
.y55{bottom:1020.885000px;}
.yac{bottom:1034.925000px;}
.y32{bottom:1037.805000px;}
.y54{bottom:1038.885000px;}
.yc{bottom:1047.885000px;}
.y53{bottom:1056.885000px;}
.yab{bottom:1060.845000px;}
.y31{bottom:1063.365000px;}
.yb{bottom:1073.445000px;}
.y51{bottom:1074.885000px;}
.yaa{bottom:1086.810000px;}
.y30{bottom:1089.330000px;}
.y4f{bottom:1092.930000px;}
.ya{bottom:1103.370000px;}
.y4d{bottom:1110.930000px;}
.ya9{bottom:1112.730000px;}
.y2f{bottom:1115.250000px;}
.y9{bottom:1136.850000px;}
.ya8{bottom:1139.370000px;}
.y2e{bottom:1141.170000px;}
.y1{bottom:1165.290000px;}
.y5{bottom:1192.650000px;}
.y4{bottom:1209.240000px;}
.h9{height:17.280000px;}
.hb{height:17.316000px;}
.hc{height:43.322344px;}
.h2{height:45.756000px;}
.h5{height:53.302500px;}
.h3{height:57.867188px;}
.h4{height:59.357813px;}
.h7{height:60.952500px;}
.hd{height:62.163910px;}
.ha{height:63.663750px;}
.h8{height:66.757500px;}
.h6{height:78.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:108.072000px;}
.w6{width:135.396000px;}
.w4{width:311.865000px;}
.w2{width:440.820000px;}
.w1{width:892.500000px;}
.w3{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x9{left:7.560000px;}
.x8{left:100.476000px;}
.x1{left:106.596000px;}
.x3{left:108.035987px;}
.x4{left:109.475987px;}
.x5{left:123.875987px;}
.xc{left:135.035987px;}
.xd{left:162.074987px;}
.x6{left:328.109987px;}
.xa{left:412.710000px;}
.xb{left:521.130000px;}
.x7{left:784.724987px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.264000pt;}
.ls9{letter-spacing:-1.178667pt;}
.lsf{letter-spacing:-0.864000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.450667pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls13{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.376320pt;}
.lsc{letter-spacing:0.399360pt;}
.lsb{letter-spacing:0.414933pt;}
.ls5{letter-spacing:0.417067pt;}
.lsa{letter-spacing:0.450667pt;}
.lsd{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.297920pt;}
.ls1{letter-spacing:3.200000pt;}
.ls15{letter-spacing:14.494720pt;}
.ls14{letter-spacing:41.385387pt;}
.ws6{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.ws5{word-spacing:-13.890667pt;}
.ws8{word-spacing:-13.854933pt;}
.ws0{word-spacing:-13.723947pt;}
.ws7{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.114880pt;}
.wsd{word-spacing:-12.989333pt;}
.ws2{word-spacing:-12.894613pt;}
.wsb{word-spacing:-12.576000pt;}
.wsc{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.160000pt;}
.wsa{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._15{margin-left:-6.827520pt;}
._6{margin-left:-5.908480pt;}
._5{margin-left:-4.506880pt;}
._4{margin-left:-3.318613pt;}
._0{margin-left:-2.048000pt;}
._1{margin-left:-1.077333pt;}
._2{width:0.928000pt;}
._3{width:1.888000pt;}
._7{width:3.653547pt;}
._b{width:4.750933pt;}
._a{width:6.151680pt;}
._11{width:7.810987pt;}
._f{width:9.010347pt;}
._e{width:10.001493pt;}
._10{width:11.334400pt;}
._9{width:12.293120pt;}
._13{width:14.658560pt;}
._8{width:15.953920pt;}
._d{width:17.131520pt;}
._c{width:18.202880pt;}
._12{width:19.240533pt;}
._14{width:21.323947pt;}
._16{width:23.066880pt;}
._1a{width:24.462080pt;}
._19{width:29.232640pt;}
._17{width:30.922240pt;}
._18{width:32.002133pt;}
.fs4{font-size:34.560000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.880000pt;}
.y50{bottom:3.200000pt;}
.y5a{bottom:3.226667pt;}
.y52{bottom:3.240000pt;}
.y3{bottom:3.520000pt;}
.y2{bottom:25.280000pt;}
.y8{bottom:62.432000pt;}
.y7{bottom:90.912000pt;}
.y6{bottom:117.792000pt;}
.ya7{bottom:135.706667pt;}
.y4c{bottom:136.666667pt;}
.ya6{bottom:158.426667pt;}
.y4b{bottom:159.706667pt;}
.y8e{bottom:160.986667pt;}
.y7e{bottom:165.466667pt;}
.y2d{bottom:166.426667pt;}
.y4a{bottom:179.266667pt;}
.ya5{bottom:181.506667pt;}
.y8d{bottom:184.066667pt;}
.y7d{bottom:188.546667pt;}
.y2c{bottom:189.506667pt;}
.ya4{bottom:204.546667pt;}
.y8c{bottom:206.786667pt;}
.y7c{bottom:212.226667pt;}
.y2b{bottom:212.546667pt;}
.ya3{bottom:227.586667pt;}
.y8b{bottom:229.826667pt;}
.y2a{bottom:235.586667pt;}
.y7b{bottom:236.866667pt;}
.ya2{bottom:250.626667pt;}
.y8a{bottom:252.866667pt;}
.y29{bottom:258.626667pt;}
.y7a{bottom:259.906667pt;}
.ya1{bottom:273.666667pt;}
.y89{bottom:275.906667pt;}
.y28{bottom:281.666667pt;}
.y79{bottom:282.946667pt;}
.ya0{bottom:296.733333pt;}
.y88{bottom:298.973333pt;}
.y27{bottom:304.413333pt;}
.y78{bottom:306.013333pt;}
.y9f{bottom:319.773333pt;}
.y87{bottom:322.013333pt;}
.y26{bottom:327.453333pt;}
.y77{bottom:329.053333pt;}
.y9e{bottom:342.493333pt;}
.y86{bottom:345.053333pt;}
.y25{bottom:350.493333pt;}
.y76{bottom:352.093333pt;}
.y9d{bottom:365.533333pt;}
.y85{bottom:367.773333pt;}
.y24{bottom:373.533333pt;}
.y75{bottom:374.813333pt;}
.y9c{bottom:388.573333pt;}
.y49{bottom:390.813333pt;}
.y23{bottom:397.253333pt;}
.y74{bottom:397.893333pt;}
.y9b{bottom:412.293333pt;}
.y48{bottom:413.893333pt;}
.y73{bottom:420.933333pt;}
.y22{bottom:421.893333pt;}
.y47{bottom:436.933333pt;}
.y9a{bottom:437.573333pt;}
.y72{bottom:443.973333pt;}
.y21{bottom:445.573333pt;}
.y46{bottom:459.973333pt;}
.y99{bottom:462.213333pt;}
.y71{bottom:467.653333pt;}
.y20{bottom:470.213333pt;}
.y45{bottom:483.013333pt;}
.y98{bottom:485.253333pt;}
.y70{bottom:492.933333pt;}
.y1f{bottom:493.253333pt;}
.y44{bottom:506.053333pt;}
.y6f{bottom:507.333333pt;}
.y97{bottom:508.293333pt;}
.y1e{bottom:516.320000pt;}
.y6e{bottom:523.360000pt;}
.y43{bottom:529.120000pt;}
.y96{bottom:531.360000pt;}
.y1d{bottom:539.040000pt;}
.y6d{bottom:539.360000pt;}
.y42{bottom:551.840000pt;}
.y95{bottom:554.400000pt;}
.y6c{bottom:555.360000pt;}
.y1c{bottom:562.080000pt;}
.y6b{bottom:571.360000pt;}
.y41{bottom:574.880000pt;}
.y94{bottom:577.120000pt;}
.y1b{bottom:585.120000pt;}
.y6a{bottom:587.360000pt;}
.y40{bottom:597.920000pt;}
.y93{bottom:600.160000pt;}
.y69{bottom:603.360000pt;}
.y1a{bottom:608.160000pt;}
.y68{bottom:619.360000pt;}
.y3f{bottom:620.960000pt;}
.y92{bottom:623.226667pt;}
.y19{bottom:631.226667pt;}
.y67{bottom:635.386667pt;}
.y3e{bottom:644.026667pt;}
.y91{bottom:646.266667pt;}
.y66{bottom:651.386667pt;}
.y18{bottom:654.266667pt;}
.y3d{bottom:667.066667pt;}
.y65{bottom:667.386667pt;}
.y90{bottom:669.306667pt;}
.y17{bottom:677.306667pt;}
.y64{bottom:683.386667pt;}
.y3c{bottom:690.106667pt;}
.y8f{bottom:692.346667pt;}
.y63{bottom:699.386667pt;}
.y16{bottom:700.346667pt;}
.y84{bottom:713.146667pt;}
.y3b{bottom:713.786667pt;}
.y62{bottom:715.386667pt;}
.y15{bottom:724.026667pt;}
.y61{bottom:731.386667pt;}
.y83{bottom:735.906667pt;}
.y3a{bottom:738.466667pt;}
.y14{bottom:741.026667pt;}
.y60{bottom:747.426667pt;}
.y82{bottom:758.946667pt;}
.y39{bottom:761.186667pt;}
.y5f{bottom:763.426667pt;}
.y13{bottom:767.266667pt;}
.y5e{bottom:779.426667pt;}
.y81{bottom:781.986667pt;}
.y38{bottom:784.226667pt;}
.y12{bottom:790.306667pt;}
.y5d{bottom:795.426667pt;}
.y80{bottom:805.026667pt;}
.y37{bottom:807.266667pt;}
.y5c{bottom:811.426667pt;}
.y11{bottom:813.346667pt;}
.y5b{bottom:827.426667pt;}
.yb0{bottom:828.066667pt;}
.y7f{bottom:828.706667pt;}
.y36{bottom:830.306667pt;}
.y10{bottom:836.066667pt;}
.y59{bottom:843.426667pt;}
.yaf{bottom:851.133333pt;}
.y35{bottom:853.373333pt;}
.yf{bottom:859.133333pt;}
.y58{bottom:859.453333pt;}
.yae{bottom:874.173333pt;}
.y57{bottom:875.453333pt;}
.y34{bottom:876.413333pt;}
.ye{bottom:882.173333pt;}
.y56{bottom:891.453333pt;}
.yad{bottom:896.893333pt;}
.y33{bottom:899.453333pt;}
.yd{bottom:905.213333pt;}
.y55{bottom:907.453333pt;}
.yac{bottom:919.933333pt;}
.y32{bottom:922.493333pt;}
.y54{bottom:923.453333pt;}
.yc{bottom:931.453333pt;}
.y53{bottom:939.453333pt;}
.yab{bottom:942.973333pt;}
.y31{bottom:945.213333pt;}
.yb{bottom:954.173333pt;}
.y51{bottom:955.453333pt;}
.yaa{bottom:966.053333pt;}
.y30{bottom:968.293333pt;}
.y4f{bottom:971.493333pt;}
.ya{bottom:980.773333pt;}
.y4d{bottom:987.493333pt;}
.ya9{bottom:989.093333pt;}
.y2f{bottom:991.333333pt;}
.y9{bottom:1010.533333pt;}
.ya8{bottom:1012.773333pt;}
.y2e{bottom:1014.373333pt;}
.y1{bottom:1035.813333pt;}
.y5{bottom:1060.133333pt;}
.y4{bottom:1074.880000pt;}
.h9{height:15.360000pt;}
.hb{height:15.392000pt;}
.hc{height:38.508750pt;}
.h2{height:40.672000pt;}
.h5{height:47.380000pt;}
.h3{height:51.437500pt;}
.h4{height:52.762500pt;}
.h7{height:54.180000pt;}
.hd{height:55.256809pt;}
.ha{height:56.590000pt;}
.h8{height:59.340000pt;}
.h6{height:69.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:96.064000pt;}
.w6{width:120.352000pt;}
.w4{width:277.213333pt;}
.w2{width:391.840000pt;}
.w1{width:793.333333pt;}
.w3{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x9{left:6.720000pt;}
.x8{left:89.312000pt;}
.x1{left:94.752000pt;}
.x3{left:96.031988pt;}
.x4{left:97.311988pt;}
.x5{left:110.111988pt;}
.xc{left:120.031988pt;}
.xd{left:144.066655pt;}
.x6{left:291.653322pt;}
.xa{left:366.853333pt;}
.xb{left:463.226667pt;}
.x7{left:697.533322pt;}
}




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