
    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_dd38b2e7bff4a07c89849ac3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_ec60c7062fd4ed791279ab3e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_15d35f7ea9b91d5836365b59.woff2')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_6894fe4e8ea697b18c2df689.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d0164ad554d66698b08babaf.woff2')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_b621dd413f2a3ae199424172.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_019a7fc170abd4c3bbb2c372.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8e41f7615ed53c6c8bdd9782.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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:ffb;src:url('chunks/assets/font_4afb5a07bfc6bbe2105aea89.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-61.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.ls7{letter-spacing:-1.176000px;}
.ls8{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.630000px;}
.lsa{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.108000px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:46.026720px;}
.ls3{letter-spacing:64.206720px;}
.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:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.384000px;}
.ws2{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.wsc{word-spacing:-9.732960px;}
.ws7{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._12{margin-left:-2.340480px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.539200px;}
._5{width:3.726000px;}
._6{width:4.788480px;}
._7{width:6.010080px;}
._9{width:7.992000px;}
._8{width:9.504000px;}
._d{width:10.794480px;}
._f{width:11.840640px;}
._e{width:13.728240px;}
._a{width:14.886480px;}
._4{width:16.650000px;}
._10{width:17.891280px;}
._11{width:19.145040px;}
._b{width:21.812400px;}
._c{width:23.347680px;}
._3{width:1904.451360px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs8{font-size:12.240000px;}
.fs2{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:1.075500px;}
.y45{bottom:3.765000px;}
.y5{bottom:4.140000px;}
.y5c{bottom:5.010000px;}
.y59{bottom:7.555500px;}
.y2{bottom:9.930000px;}
.y44{bottom:21.045000px;}
.y4{bottom:23.070000px;}
.y58{bottom:24.295500px;}
.y4d{bottom:30.949500px;}
.y43{bottom:38.370000px;}
.y57{bottom:45.529500px;}
.y3{bottom:48.090000px;}
.y4c{bottom:51.649500px;}
.y42{bottom:55.650000px;}
.y56{bottom:61.009500px;}
.y4b{bottom:64.609500px;}
.y8{bottom:72.000000px;}
.y41{bottom:72.930000px;}
.y55{bottom:76.489500px;}
.y4a{bottom:86.389500px;}
.y40{bottom:89.670000px;}
.y7{bottom:91.296000px;}
.y54{bottom:93.949500px;}
.y3f{bottom:107.310000px;}
.y53{bottom:109.789500px;}
.y47{bottom:124.420500px;}
.y3e{bottom:124.590000px;}
.y52{bottom:125.269500px;}
.y51{bottom:140.929500px;}
.y3d{bottom:141.870000px;}
.y49{bottom:148.489500px;}
.y94{bottom:152.130000px;}
.y50{bottom:156.409500px;}
.y48{bottom:159.109500px;}
.y3c{bottom:159.150000px;}
.y93{bottom:169.050000px;}
.y4f{bottom:171.529500px;}
.y5a{bottom:175.669500px;}
.y3b{bottom:176.430000px;}
.y92{bottom:186.330000px;}
.y3a{bottom:193.530000px;}
.y91{bottom:203.970000px;}
.y39{bottom:210.810000px;}
.y90{bottom:221.070000px;}
.y38{bottom:227.730000px;}
.y8f{bottom:238.350000px;}
.y37{bottom:245.370000px;}
.y8e{bottom:255.270000px;}
.y36{bottom:262.650000px;}
.y8d{bottom:272.910000px;}
.y35{bottom:279.390000px;}
.y8c{bottom:290.190000px;}
.y34{bottom:297.030000px;}
.y8b{bottom:307.290000px;}
.y12{bottom:313.425000px;}
.y33{bottom:315.420000px;}
.y20{bottom:321.540000px;}
.y8a{bottom:324.570000px;}
.y32{bottom:333.780000px;}
.y1f{bottom:338.640000px;}
.y89{bottom:341.490000px;}
.y31{bottom:351.060000px;}
.y88{bottom:359.175000px;}
.y1e{bottom:362.760000px;}
.y30{bottom:369.420000px;}
.y87{bottom:376.455000px;}
.y2f{bottom:386.520000px;}
.y1d{bottom:387.060000px;}
.y86{bottom:393.735000px;}
.y2e{bottom:404.520000px;}
.y85{bottom:410.475000px;}
.y1c{bottom:411.180000px;}
.y2d{bottom:421.620000px;}
.y84{bottom:428.115000px;}
.y1b{bottom:435.300000px;}
.y2c{bottom:437.280000px;}
.y83{bottom:445.395000px;}
.y2b{bottom:452.760000px;}
.y1a{bottom:459.420000px;}
.y82{bottom:462.315000px;}
.y9d{bottom:462.675000px;}
.y2a{bottom:468.240000px;}
.y81{bottom:479.595000px;}
.y9c{bottom:479.955000px;}
.y19{bottom:483.540000px;}
.y29{bottom:483.720000px;}
.y80{bottom:497.235000px;}
.y28{bottom:499.380000px;}
.y18{bottom:507.660000px;}
.y7f{bottom:514.335000px;}
.y27{bottom:514.860000px;}
.y26{bottom:530.340000px;}
.y7e{bottom:531.615000px;}
.y17{bottom:531.780000px;}
.y25{bottom:545.820000px;}
.y7d{bottom:548.895000px;}
.y16{bottom:556.080000px;}
.y24{bottom:561.525000px;}
.y7c{bottom:566.175000px;}
.y23{bottom:577.005000px;}
.y15{bottom:580.245000px;}
.y7b{bottom:583.455000px;}
.y22{bottom:592.485000px;}
.y7a{bottom:600.735000px;}
.y14{bottom:604.365000px;}
.y79{bottom:617.865000px;}
.y21{bottom:623.265000px;}
.y46{bottom:625.605000px;}
.y13{bottom:628.485000px;}
.y78{bottom:634.785000px;}
.y9b{bottom:635.145000px;}
.y77{bottom:652.425000px;}
.y76{bottom:669.705000px;}
.y75{bottom:686.985000px;}
.y74{bottom:704.085000px;}
.y73{bottom:721.365000px;}
.y9a{bottom:738.285000px;}
.y72{bottom:738.645000px;}
.y71{bottom:755.925000px;}
.y70{bottom:773.205000px;}
.y6f{bottom:790.485000px;}
.y6e{bottom:807.585000px;}
.y6d{bottom:824.865000px;}
.y99{bottom:841.785000px;}
.y6c{bottom:842.145000px;}
.y6b{bottom:859.425000px;}
.y6a{bottom:876.750000px;}
.y69{bottom:894.030000px;}
.y98{bottom:910.770000px;}
.y68{bottom:911.130000px;}
.y67{bottom:928.410000px;}
.y66{bottom:945.690000px;}
.y11{bottom:951.990000px;}
.y10{bottom:953.610000px;}
.yf{bottom:955.410000px;}
.ye{bottom:960.450000px;}
.y65{bottom:962.970000px;}
.yd{bottom:977.550000px;}
.y97{bottom:979.890000px;}
.y64{bottom:980.250000px;}
.yc{bottom:994.830000px;}
.y63{bottom:997.350000px;}
.y62{bottom:1014.630000px;}
.yb{bottom:1030.290000px;}
.y61{bottom:1031.550000px;}
.y96{bottom:1031.910000px;}
.y95{bottom:1048.830000px;}
.y60{bottom:1049.190000px;}
.ya{bottom:1054.410000px;}
.y5f{bottom:1066.470000px;}
.y9{bottom:1082.850000px;}
.y5e{bottom:1083.750000px;}
.y5b{bottom:1086.480000px;}
.y5d{bottom:1100.850000px;}
.y6{bottom:1116.510000px;}
.y1{bottom:1123.530000px;}
.hb{height:5.653125px;}
.hf{height:12.012891px;}
.h15{height:27.540000px;}
.h13{height:29.678906px;}
.h6{height:30.077578px;}
.he{height:40.985156px;}
.h17{height:41.726953px;}
.hd{height:42.086250px;}
.h10{height:52.971680px;}
.h14{height:54.421875px;}
.h8{height:57.324375px;}
.h7{height:58.651172px;}
.ha{height:60.226875px;}
.h11{height:61.423863px;}
.h16{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h18{height:66.543750px;}
.h9{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.h12{height:188.275500px;}
.hc{height:638.010000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:-518.880000px;}
.w6{width:77.580000px;}
.w2{width:104.040000px;}
.w4{width:132.651000px;}
.w8{width:172.620000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.876000px;}
.x17{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1d{left:18.180000px;}
.x15{left:19.980000px;}
.x14{left:28.980000px;}
.x18{left:35.145000px;}
.xe{left:43.740000px;}
.x1e{left:47.700000px;}
.xf{left:50.760000px;}
.xd{left:55.080000px;}
.x1f{left:57.060000px;}
.x19{left:62.145000px;}
.x13{left:67.134000px;}
.x11{left:71.814000px;}
.x12{left:73.254000px;}
.x1{left:78.327000px;}
.x8{left:86.436000px;}
.x2{left:95.763000px;}
.x20{left:102.774000px;}
.x1c{left:106.734000px;}
.x22{left:113.436000px;}
.x10{left:124.554000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x16{left:219.090000px;}
.xa{left:400.215000px;}
.xb{left:550.725000px;}
.xc{left:630.690000px;}
.x7{left:784.440000px;}
.x9{left:806.580000px;}
.x1a{left:815.580000px;}
.x1b{left:1412.040000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-54.400000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.ls7{letter-spacing:-1.045333pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.560000pt;}
.lsa{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:40.912640pt;}
.ls3{letter-spacing:57.072640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.674667pt;}
.ws2{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.wsc{word-spacing:-8.651520pt;}
.ws7{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._12{margin-left:-2.080427pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.257067pt;}
._5{width:3.312000pt;}
._6{width:4.256427pt;}
._7{width:5.342293pt;}
._9{width:7.104000pt;}
._8{width:8.448000pt;}
._d{width:9.595093pt;}
._f{width:10.525013pt;}
._e{width:12.202880pt;}
._a{width:13.232427pt;}
._4{width:14.800000pt;}
._10{width:15.903360pt;}
._11{width:17.017813pt;}
._b{width:19.388800pt;}
._c{width:20.753493pt;}
._3{width:1692.845653pt;}
.fs6{font-size:5.120000pt;}
.fs8{font-size:10.880000pt;}
.fs2{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:0.956000pt;}
.y45{bottom:3.346667pt;}
.y5{bottom:3.680000pt;}
.y5c{bottom:4.453333pt;}
.y59{bottom:6.716000pt;}
.y2{bottom:8.826667pt;}
.y44{bottom:18.706667pt;}
.y4{bottom:20.506667pt;}
.y58{bottom:21.596000pt;}
.y4d{bottom:27.510667pt;}
.y43{bottom:34.106667pt;}
.y57{bottom:40.470667pt;}
.y3{bottom:42.746667pt;}
.y4c{bottom:45.910667pt;}
.y42{bottom:49.466667pt;}
.y56{bottom:54.230667pt;}
.y4b{bottom:57.430667pt;}
.y8{bottom:64.000000pt;}
.y41{bottom:64.826667pt;}
.y55{bottom:67.990667pt;}
.y4a{bottom:76.790667pt;}
.y40{bottom:79.706667pt;}
.y7{bottom:81.152000pt;}
.y54{bottom:83.510667pt;}
.y3f{bottom:95.386667pt;}
.y53{bottom:97.590667pt;}
.y47{bottom:110.596000pt;}
.y3e{bottom:110.746667pt;}
.y52{bottom:111.350667pt;}
.y51{bottom:125.270667pt;}
.y3d{bottom:126.106667pt;}
.y49{bottom:131.990667pt;}
.y94{bottom:135.226667pt;}
.y50{bottom:139.030667pt;}
.y48{bottom:141.430667pt;}
.y3c{bottom:141.466667pt;}
.y93{bottom:150.266667pt;}
.y4f{bottom:152.470667pt;}
.y5a{bottom:156.150667pt;}
.y3b{bottom:156.826667pt;}
.y92{bottom:165.626667pt;}
.y3a{bottom:172.026667pt;}
.y91{bottom:181.306667pt;}
.y39{bottom:187.386667pt;}
.y90{bottom:196.506667pt;}
.y38{bottom:202.426667pt;}
.y8f{bottom:211.866667pt;}
.y37{bottom:218.106667pt;}
.y8e{bottom:226.906667pt;}
.y36{bottom:233.466667pt;}
.y8d{bottom:242.586667pt;}
.y35{bottom:248.346667pt;}
.y8c{bottom:257.946667pt;}
.y34{bottom:264.026667pt;}
.y8b{bottom:273.146667pt;}
.y12{bottom:278.600000pt;}
.y33{bottom:280.373333pt;}
.y20{bottom:285.813333pt;}
.y8a{bottom:288.506667pt;}
.y32{bottom:296.693333pt;}
.y1f{bottom:301.013333pt;}
.y89{bottom:303.546667pt;}
.y31{bottom:312.053333pt;}
.y88{bottom:319.266667pt;}
.y1e{bottom:322.453333pt;}
.y30{bottom:328.373333pt;}
.y87{bottom:334.626667pt;}
.y2f{bottom:343.573333pt;}
.y1d{bottom:344.053333pt;}
.y86{bottom:349.986667pt;}
.y2e{bottom:359.573333pt;}
.y85{bottom:364.866667pt;}
.y1c{bottom:365.493333pt;}
.y2d{bottom:374.773333pt;}
.y84{bottom:380.546667pt;}
.y1b{bottom:386.933333pt;}
.y2c{bottom:388.693333pt;}
.y83{bottom:395.906667pt;}
.y2b{bottom:402.453333pt;}
.y1a{bottom:408.373333pt;}
.y82{bottom:410.946667pt;}
.y9d{bottom:411.266667pt;}
.y2a{bottom:416.213333pt;}
.y81{bottom:426.306667pt;}
.y9c{bottom:426.626667pt;}
.y19{bottom:429.813333pt;}
.y29{bottom:429.973333pt;}
.y80{bottom:441.986667pt;}
.y28{bottom:443.893333pt;}
.y18{bottom:451.253333pt;}
.y7f{bottom:457.186667pt;}
.y27{bottom:457.653333pt;}
.y26{bottom:471.413333pt;}
.y7e{bottom:472.546667pt;}
.y17{bottom:472.693333pt;}
.y25{bottom:485.173333pt;}
.y7d{bottom:487.906667pt;}
.y16{bottom:494.293333pt;}
.y24{bottom:499.133333pt;}
.y7c{bottom:503.266667pt;}
.y23{bottom:512.893333pt;}
.y15{bottom:515.773333pt;}
.y7b{bottom:518.626667pt;}
.y22{bottom:526.653333pt;}
.y7a{bottom:533.986667pt;}
.y14{bottom:537.213333pt;}
.y79{bottom:549.213333pt;}
.y21{bottom:554.013333pt;}
.y46{bottom:556.093333pt;}
.y13{bottom:558.653333pt;}
.y78{bottom:564.253333pt;}
.y9b{bottom:564.573333pt;}
.y77{bottom:579.933333pt;}
.y76{bottom:595.293333pt;}
.y75{bottom:610.653333pt;}
.y74{bottom:625.853333pt;}
.y73{bottom:641.213333pt;}
.y9a{bottom:656.253333pt;}
.y72{bottom:656.573333pt;}
.y71{bottom:671.933333pt;}
.y70{bottom:687.293333pt;}
.y6f{bottom:702.653333pt;}
.y6e{bottom:717.853333pt;}
.y6d{bottom:733.213333pt;}
.y99{bottom:748.253333pt;}
.y6c{bottom:748.573333pt;}
.y6b{bottom:763.933333pt;}
.y6a{bottom:779.333333pt;}
.y69{bottom:794.693333pt;}
.y98{bottom:809.573333pt;}
.y68{bottom:809.893333pt;}
.y67{bottom:825.253333pt;}
.y66{bottom:840.613333pt;}
.y11{bottom:846.213333pt;}
.y10{bottom:847.653333pt;}
.yf{bottom:849.253333pt;}
.ye{bottom:853.733333pt;}
.y65{bottom:855.973333pt;}
.yd{bottom:868.933333pt;}
.y97{bottom:871.013333pt;}
.y64{bottom:871.333333pt;}
.yc{bottom:884.293333pt;}
.y63{bottom:886.533333pt;}
.y62{bottom:901.893333pt;}
.yb{bottom:915.813333pt;}
.y61{bottom:916.933333pt;}
.y96{bottom:917.253333pt;}
.y95{bottom:932.293333pt;}
.y60{bottom:932.613333pt;}
.ya{bottom:937.253333pt;}
.y5f{bottom:947.973333pt;}
.y9{bottom:962.533333pt;}
.y5e{bottom:963.333333pt;}
.y5b{bottom:965.760000pt;}
.y5d{bottom:978.533333pt;}
.y6{bottom:992.453333pt;}
.y1{bottom:998.693333pt;}
.hb{height:5.025000pt;}
.hf{height:10.678125pt;}
.h15{height:24.480000pt;}
.h13{height:26.381250pt;}
.h6{height:26.735625pt;}
.he{height:36.431250pt;}
.h17{height:37.090625pt;}
.hd{height:37.410000pt;}
.h10{height:47.085938pt;}
.h14{height:48.375000pt;}
.h8{height:50.955000pt;}
.h7{height:52.134375pt;}
.ha{height:53.535000pt;}
.h11{height:54.598989pt;}
.h16{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h18{height:59.150000pt;}
.h9{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.h12{height:167.356000pt;}
.hc{height:567.120000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:-461.226667pt;}
.w6{width:68.960000pt;}
.w2{width:92.480000pt;}
.w4{width:117.912000pt;}
.w8{width:153.440000pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.112000pt;}
.x17{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1d{left:16.160000pt;}
.x15{left:17.760000pt;}
.x14{left:25.760000pt;}
.x18{left:31.240000pt;}
.xe{left:38.880000pt;}
.x1e{left:42.400000pt;}
.xf{left:45.120000pt;}
.xd{left:48.960000pt;}
.x1f{left:50.720000pt;}
.x19{left:55.240000pt;}
.x13{left:59.674667pt;}
.x11{left:63.834667pt;}
.x12{left:65.114667pt;}
.x1{left:69.624000pt;}
.x8{left:76.832000pt;}
.x2{left:85.122667pt;}
.x20{left:91.354667pt;}
.x1c{left:94.874667pt;}
.x22{left:100.832000pt;}
.x10{left:110.714667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x16{left:194.746667pt;}
.xa{left:355.746667pt;}
.xb{left:489.533333pt;}
.xc{left:560.613333pt;}
.x7{left:697.280000pt;}
.x9{left:716.960000pt;}
.x1a{left:724.960000pt;}
.x1b{left:1255.146667pt;}
}




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