
    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_176757089536a2201fb75f5e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7e30952395ef0c3420324c4d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e89a49ba76865aac8e31a8d1.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_986e452570da6969437c40b9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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;}
.ls6{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.206400px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.129600px;}
.lsd{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls2{letter-spacing:7.866720px;}
.lsc{letter-spacing:11.466720px;}
.ls16{letter-spacing:16.506720px;}
.lsb{letter-spacing:29.069280px;}
.lsa{letter-spacing:29.213280px;}
.ls1{letter-spacing:31.626720px;}
.ls10{letter-spacing:46.026720px;}
.ls14{letter-spacing:94.410720px;}
.ls11{letter-spacing:209.676000px;}
.ls13{letter-spacing:209.700000px;}
.ls12{letter-spacing:209.880000px;}
.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:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.733600px;}
.ws4{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1572.917760px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1110.513600px;}
._6{margin-left:-479.640000px;}
._1b{margin-left:-15.234000px;}
._21{margin-left:-11.546640px;}
._2a{margin-left:-3.918960px;}
._10{margin-left:-2.877840px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._7{width:2.322480px;}
._c{width:3.768480px;}
._9{width:4.786800px;}
._8{width:5.871120px;}
._f{width:7.011360px;}
._e{width:8.127360px;}
._11{width:9.709920px;}
._1a{width:10.995840px;}
._b{width:12.399120px;}
._a{width:13.565520px;}
._d{width:16.044480px;}
._18{width:17.987760px;}
._12{width:19.391040px;}
._13{width:20.796480px;}
._16{width:22.230720px;}
._1f{width:23.724720px;}
._1e{width:25.247520px;}
._1d{width:26.652960px;}
._1c{width:28.266480px;}
._29{width:29.937600px;}
._2f{width:31.420800px;}
._22{width:33.346080px;}
._20{width:34.656480px;}
._19{width:36.216720px;}
._15{width:37.259280px;}
._14{width:38.664720px;}
._24{width:40.636800px;}
._28{width:42.489360px;}
._2c{width:46.254240px;}
._17{width:48.912480px;}
._23{width:52.139520px;}
._27{width:54.110880px;}
._2b{width:56.113920px;}
._2e{width:94.958640px;}
._2d{width:96.094080px;}
._26{width:97.198560px;}
._25{width:98.842320px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:6.300000px;}
.y8{bottom:11.520000px;}
.y9{bottom:39.780000px;}
.y6{bottom:55.440000px;}
.y39{bottom:82.800000px;}
.y3f{bottom:88.740000px;}
.y9b{bottom:95.040000px;}
.y8b{bottom:97.380000px;}
.y38{bottom:102.600000px;}
.y3e{bottom:108.540000px;}
.y8a{bottom:113.940000px;}
.y9a{bottom:114.840000px;}
.y64{bottom:120.780000px;}
.y37{bottom:122.400000px;}
.y3d{bottom:128.340000px;}
.y99{bottom:134.640000px;}
.y63{bottom:140.580000px;}
.y36{bottom:142.200000px;}
.y3c{bottom:148.140000px;}
.y98{bottom:154.470000px;}
.y62{bottom:160.590000px;}
.y35{bottom:162.210000px;}
.y97{bottom:174.270000px;}
.y61{bottom:180.390000px;}
.y34{bottom:182.010000px;}
.y3b{bottom:185.970000px;}
.y96{bottom:194.070000px;}
.y60{bottom:200.190000px;}
.y33{bottom:201.810000px;}
.y3a{bottom:202.530000px;}
.y95{bottom:214.050000px;}
.y5f{bottom:219.990000px;}
.y32{bottom:221.610000px;}
.y94{bottom:233.850000px;}
.y5e{bottom:239.790000px;}
.y31{bottom:241.410000px;}
.y93{bottom:253.650000px;}
.y5d{bottom:259.770000px;}
.y30{bottom:261.390000px;}
.y92{bottom:273.450000px;}
.y5c{bottom:279.570000px;}
.y2f{bottom:281.190000px;}
.y91{bottom:293.250000px;}
.y5b{bottom:299.370000px;}
.y2e{bottom:300.990000px;}
.y90{bottom:313.230000px;}
.y5a{bottom:319.170000px;}
.y2d{bottom:320.790000px;}
.y8f{bottom:333.030000px;}
.y59{bottom:338.970000px;}
.y2c{bottom:340.590000px;}
.y8e{bottom:352.830000px;}
.y58{bottom:358.950000px;}
.y2b{bottom:360.570000px;}
.y8d{bottom:372.630000px;}
.y57{bottom:378.750000px;}
.y2a{bottom:380.370000px;}
.y8c{bottom:392.430000px;}
.y56{bottom:398.550000px;}
.y29{bottom:400.170000px;}
.y89{bottom:412.455000px;}
.y55{bottom:418.395000px;}
.y28{bottom:420.015000px;}
.y88{bottom:432.255000px;}
.y54{bottom:438.195000px;}
.y27{bottom:439.815000px;}
.y87{bottom:452.055000px;}
.y53{bottom:458.175000px;}
.y26{bottom:459.795000px;}
.y86{bottom:471.855000px;}
.y52{bottom:477.975000px;}
.y25{bottom:479.595000px;}
.y85{bottom:491.655000px;}
.y51{bottom:497.775000px;}
.y24{bottom:499.395000px;}
.y84{bottom:511.635000px;}
.y50{bottom:517.575000px;}
.y23{bottom:519.195000px;}
.y83{bottom:531.435000px;}
.y4f{bottom:537.375000px;}
.y22{bottom:538.995000px;}
.y82{bottom:551.235000px;}
.y4e{bottom:557.355000px;}
.y21{bottom:558.975000px;}
.y81{bottom:571.035000px;}
.y4d{bottom:577.155000px;}
.y20{bottom:578.775000px;}
.y80{bottom:590.835000px;}
.y4c{bottom:596.955000px;}
.y1f{bottom:598.575000px;}
.y7f{bottom:610.815000px;}
.y4b{bottom:616.755000px;}
.y1e{bottom:618.375000px;}
.y7e{bottom:630.615000px;}
.y4a{bottom:636.555000px;}
.y1d{bottom:638.175000px;}
.y7d{bottom:650.445000px;}
.y49{bottom:656.565000px;}
.y1c{bottom:658.185000px;}
.y7c{bottom:670.245000px;}
.y48{bottom:676.365000px;}
.y1b{bottom:677.985000px;}
.y7b{bottom:690.045000px;}
.y47{bottom:696.165000px;}
.y1a{bottom:697.785000px;}
.y7a{bottom:710.025000px;}
.y46{bottom:715.965000px;}
.y19{bottom:719.925000px;}
.y79{bottom:729.825000px;}
.y45{bottom:736.665000px;}
.y18{bottom:739.725000px;}
.y78{bottom:749.625000px;}
.y44{bottom:756.825000px;}
.y17{bottom:759.525000px;}
.y77{bottom:769.425000px;}
.y43{bottom:773.385000px;}
.y16{bottom:779.325000px;}
.y76{bottom:789.225000px;}
.y15{bottom:799.305000px;}
.y75{bottom:809.205000px;}
.y14{bottom:819.105000px;}
.y74{bottom:829.005000px;}
.y13{bottom:838.905000px;}
.y73{bottom:848.805000px;}
.y12{bottom:858.705000px;}
.y72{bottom:868.605000px;}
.y11{bottom:878.505000px;}
.y71{bottom:888.405000px;}
.y10{bottom:898.530000px;}
.y70{bottom:908.430000px;}
.yf{bottom:918.150000px;}
.y6f{bottom:928.230000px;}
.ye{bottom:940.290000px;}
.y6e{bottom:948.030000px;}
.yd{bottom:960.270000px;}
.y6d{bottom:967.830000px;}
.yc{bottom:980.610000px;}
.y6c{bottom:987.630000px;}
.yb{bottom:1001.850000px;}
.y6b{bottom:1007.610000px;}
.ya{bottom:1025.250000px;}
.y6a{bottom:1027.410000px;}
.y69{bottom:1047.210000px;}
.y5{bottom:1054.050000px;}
.y68{bottom:1067.010000px;}
.y67{bottom:1086.810000px;}
.y4{bottom:1087.890000px;}
.y66{bottom:1106.790000px;}
.y3{bottom:1118.850000px;}
.y65{bottom:1126.590000px;}
.y42{bottom:1146.420000px;}
.y2{bottom:1149.660000px;}
.y41{bottom:1166.220000px;}
.y1{bottom:1181.700000px;}
.y40{bottom:1194.300000px;}
.h4{height:21.780000px;}
.h5{height:27.432422px;}
.h9{height:41.726953px;}
.h8{height:42.164648px;}
.ha{height:43.506914px;}
.hb{height:46.251562px;}
.h3{height:46.736719px;}
.h2{height:54.864844px;}
.hc{height:59.439023px;}
.h6{height:65.884219px;}
.h7{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.xb{left:70.199987px;}
.x13{left:75.599987px;}
.x1b{left:80.999987px;}
.x19{left:86.435987px;}
.x14{left:91.835987px;}
.x1c{left:108.035987px;}
.x1a{left:113.435987px;}
.x4{left:118.296000px;}
.x12{left:132.335987px;}
.x7{left:181.829987px;}
.xa{left:210.989987px;}
.x10{left:269.894987px;}
.x6{left:317.739000px;}
.x9{left:390.854987px;}
.x11{left:397.514987px;}
.x5{left:442.689000px;}
.x8{left:446.504987px;}
.xc{left:473.144987px;}
.xf{left:489.344987px;}
.x15{left:494.744987px;}
.x1d{left:505.544987px;}
.x16{left:510.944987px;}
.x18{left:519.044987px;}
.x1e{left:532.544987px;}
.xe{left:570.524987px;}
.xd{left:798.989987px;}
.x17{left:826.919987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.115200pt;}
.lsd{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls2{letter-spacing:6.992640pt;}
.lsc{letter-spacing:10.192640pt;}
.ls16{letter-spacing:14.672640pt;}
.lsb{letter-spacing:25.839360pt;}
.lsa{letter-spacing:25.967360pt;}
.ls1{letter-spacing:28.112640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls14{letter-spacing:83.920640pt;}
.ls11{letter-spacing:186.378667pt;}
.ls13{letter-spacing:186.400000pt;}
.ls12{letter-spacing:186.560000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.096533pt;}
.ws4{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.149120pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-987.123200pt;}
._6{margin-left:-426.346667pt;}
._1b{margin-left:-13.541333pt;}
._21{margin-left:-10.263680pt;}
._2a{margin-left:-3.483520pt;}
._10{margin-left:-2.558080pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._7{width:2.064427pt;}
._c{width:3.349760pt;}
._9{width:4.254933pt;}
._8{width:5.218773pt;}
._f{width:6.232320pt;}
._e{width:7.224320pt;}
._11{width:8.631040pt;}
._1a{width:9.774080pt;}
._b{width:11.021440pt;}
._a{width:12.058240pt;}
._d{width:14.261760pt;}
._18{width:15.989120pt;}
._12{width:17.236480pt;}
._13{width:18.485760pt;}
._16{width:19.760640pt;}
._1f{width:21.088640pt;}
._1e{width:22.442240pt;}
._1d{width:23.691520pt;}
._1c{width:25.125760pt;}
._29{width:26.611200pt;}
._2f{width:27.929600pt;}
._22{width:29.640960pt;}
._20{width:30.805760pt;}
._19{width:32.192640pt;}
._15{width:33.119360pt;}
._14{width:34.368640pt;}
._24{width:36.121600pt;}
._28{width:37.768320pt;}
._2c{width:41.114880pt;}
._17{width:43.477760pt;}
._23{width:46.346240pt;}
._27{width:48.098560pt;}
._2b{width:49.879040pt;}
._2e{width:84.407680pt;}
._2d{width:85.416960pt;}
._26{width:86.398720pt;}
._25{width:87.859840pt;}
.fs2{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.600000pt;}
.y8{bottom:10.240000pt;}
.y9{bottom:35.360000pt;}
.y6{bottom:49.280000pt;}
.y39{bottom:73.600000pt;}
.y3f{bottom:78.880000pt;}
.y9b{bottom:84.480000pt;}
.y8b{bottom:86.560000pt;}
.y38{bottom:91.200000pt;}
.y3e{bottom:96.480000pt;}
.y8a{bottom:101.280000pt;}
.y9a{bottom:102.080000pt;}
.y64{bottom:107.360000pt;}
.y37{bottom:108.800000pt;}
.y3d{bottom:114.080000pt;}
.y99{bottom:119.680000pt;}
.y63{bottom:124.960000pt;}
.y36{bottom:126.400000pt;}
.y3c{bottom:131.680000pt;}
.y98{bottom:137.306667pt;}
.y62{bottom:142.746667pt;}
.y35{bottom:144.186667pt;}
.y97{bottom:154.906667pt;}
.y61{bottom:160.346667pt;}
.y34{bottom:161.786667pt;}
.y3b{bottom:165.306667pt;}
.y96{bottom:172.506667pt;}
.y60{bottom:177.946667pt;}
.y33{bottom:179.386667pt;}
.y3a{bottom:180.026667pt;}
.y95{bottom:190.266667pt;}
.y5f{bottom:195.546667pt;}
.y32{bottom:196.986667pt;}
.y94{bottom:207.866667pt;}
.y5e{bottom:213.146667pt;}
.y31{bottom:214.586667pt;}
.y93{bottom:225.466667pt;}
.y5d{bottom:230.906667pt;}
.y30{bottom:232.346667pt;}
.y92{bottom:243.066667pt;}
.y5c{bottom:248.506667pt;}
.y2f{bottom:249.946667pt;}
.y91{bottom:260.666667pt;}
.y5b{bottom:266.106667pt;}
.y2e{bottom:267.546667pt;}
.y90{bottom:278.426667pt;}
.y5a{bottom:283.706667pt;}
.y2d{bottom:285.146667pt;}
.y8f{bottom:296.026667pt;}
.y59{bottom:301.306667pt;}
.y2c{bottom:302.746667pt;}
.y8e{bottom:313.626667pt;}
.y58{bottom:319.066667pt;}
.y2b{bottom:320.506667pt;}
.y8d{bottom:331.226667pt;}
.y57{bottom:336.666667pt;}
.y2a{bottom:338.106667pt;}
.y8c{bottom:348.826667pt;}
.y56{bottom:354.266667pt;}
.y29{bottom:355.706667pt;}
.y89{bottom:366.626667pt;}
.y55{bottom:371.906667pt;}
.y28{bottom:373.346667pt;}
.y88{bottom:384.226667pt;}
.y54{bottom:389.506667pt;}
.y27{bottom:390.946667pt;}
.y87{bottom:401.826667pt;}
.y53{bottom:407.266667pt;}
.y26{bottom:408.706667pt;}
.y86{bottom:419.426667pt;}
.y52{bottom:424.866667pt;}
.y25{bottom:426.306667pt;}
.y85{bottom:437.026667pt;}
.y51{bottom:442.466667pt;}
.y24{bottom:443.906667pt;}
.y84{bottom:454.786667pt;}
.y50{bottom:460.066667pt;}
.y23{bottom:461.506667pt;}
.y83{bottom:472.386667pt;}
.y4f{bottom:477.666667pt;}
.y22{bottom:479.106667pt;}
.y82{bottom:489.986667pt;}
.y4e{bottom:495.426667pt;}
.y21{bottom:496.866667pt;}
.y81{bottom:507.586667pt;}
.y4d{bottom:513.026667pt;}
.y20{bottom:514.466667pt;}
.y80{bottom:525.186667pt;}
.y4c{bottom:530.626667pt;}
.y1f{bottom:532.066667pt;}
.y7f{bottom:542.946667pt;}
.y4b{bottom:548.226667pt;}
.y1e{bottom:549.666667pt;}
.y7e{bottom:560.546667pt;}
.y4a{bottom:565.826667pt;}
.y1d{bottom:567.266667pt;}
.y7d{bottom:578.173333pt;}
.y49{bottom:583.613333pt;}
.y1c{bottom:585.053333pt;}
.y7c{bottom:595.773333pt;}
.y48{bottom:601.213333pt;}
.y1b{bottom:602.653333pt;}
.y7b{bottom:613.373333pt;}
.y47{bottom:618.813333pt;}
.y1a{bottom:620.253333pt;}
.y7a{bottom:631.133333pt;}
.y46{bottom:636.413333pt;}
.y19{bottom:639.933333pt;}
.y79{bottom:648.733333pt;}
.y45{bottom:654.813333pt;}
.y18{bottom:657.533333pt;}
.y78{bottom:666.333333pt;}
.y44{bottom:672.733333pt;}
.y17{bottom:675.133333pt;}
.y77{bottom:683.933333pt;}
.y43{bottom:687.453333pt;}
.y16{bottom:692.733333pt;}
.y76{bottom:701.533333pt;}
.y15{bottom:710.493333pt;}
.y75{bottom:719.293333pt;}
.y14{bottom:728.093333pt;}
.y74{bottom:736.893333pt;}
.y13{bottom:745.693333pt;}
.y73{bottom:754.493333pt;}
.y12{bottom:763.293333pt;}
.y72{bottom:772.093333pt;}
.y11{bottom:780.893333pt;}
.y71{bottom:789.693333pt;}
.y10{bottom:798.693333pt;}
.y70{bottom:807.493333pt;}
.yf{bottom:816.133333pt;}
.y6f{bottom:825.093333pt;}
.ye{bottom:835.813333pt;}
.y6e{bottom:842.693333pt;}
.yd{bottom:853.573333pt;}
.y6d{bottom:860.293333pt;}
.yc{bottom:871.653333pt;}
.y6c{bottom:877.893333pt;}
.yb{bottom:890.533333pt;}
.y6b{bottom:895.653333pt;}
.ya{bottom:911.333333pt;}
.y6a{bottom:913.253333pt;}
.y69{bottom:930.853333pt;}
.y5{bottom:936.933333pt;}
.y68{bottom:948.453333pt;}
.y67{bottom:966.053333pt;}
.y4{bottom:967.013333pt;}
.y66{bottom:983.813333pt;}
.y3{bottom:994.533333pt;}
.y65{bottom:1001.413333pt;}
.y42{bottom:1019.040000pt;}
.y2{bottom:1021.920000pt;}
.y41{bottom:1036.640000pt;}
.y1{bottom:1050.400000pt;}
.y40{bottom:1061.600000pt;}
.h4{height:19.360000pt;}
.h5{height:24.384375pt;}
.h9{height:37.090625pt;}
.h8{height:37.479688pt;}
.ha{height:38.672812pt;}
.hb{height:41.112500pt;}
.h3{height:41.543750pt;}
.h2{height:48.768750pt;}
.hc{height:52.834688pt;}
.h6{height:58.563750pt;}
.h7{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.xb{left:62.399988pt;}
.x13{left:67.199988pt;}
.x1b{left:71.999988pt;}
.x19{left:76.831988pt;}
.x14{left:81.631988pt;}
.x1c{left:96.031988pt;}
.x1a{left:100.831988pt;}
.x4{left:105.152000pt;}
.x12{left:117.631988pt;}
.x7{left:161.626655pt;}
.xa{left:187.546655pt;}
.x10{left:239.906655pt;}
.x6{left:282.434667pt;}
.x9{left:347.426655pt;}
.x11{left:353.346655pt;}
.x5{left:393.501333pt;}
.x8{left:396.893322pt;}
.xc{left:420.573322pt;}
.xf{left:434.973322pt;}
.x15{left:439.773322pt;}
.x1d{left:449.373322pt;}
.x16{left:454.173322pt;}
.x18{left:461.373322pt;}
.x1e{left:473.373322pt;}
.xe{left:507.133322pt;}
.xd{left:710.213322pt;}
.x17{left:735.039988pt;}
}




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