
    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_0acbd07b8e9bc9586c126a96.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_eccd259cf6f8e359dbe61e65.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_aaea43d44f35a499a705524a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2b2035767b00faf85370cf69.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056152;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_7714c9aadc11a650263f3fc8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_0dde128fe133389fd965b3cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_399374ab343a23b18d83dd49.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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;}
.v1{vertical-align:15.120000px;}
.ls22{letter-spacing:-0.618000px;}
.ls7{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.529200px;}
.ls5{letter-spacing:-0.495600px;}
.ls4{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.270600px;}
.ls9{letter-spacing:-0.247800px;}
.lsf{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.222000px;}
.ls1f{letter-spacing:-0.126600px;}
.ls1e{letter-spacing:-0.109200px;}
.ls12{letter-spacing:-0.094800px;}
.lsc{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.001440px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.011520px;}
.ls18{letter-spacing:0.023040px;}
.lsb{letter-spacing:0.048960px;}
.ls1b{letter-spacing:0.075000px;}
.ls17{letter-spacing:0.078000px;}
.ls1d{letter-spacing:0.100800px;}
.ls0{letter-spacing:0.172800px;}
.ls6{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.204600px;}
.ls20{letter-spacing:0.222000px;}
.ls11{letter-spacing:0.241800px;}
.ls10{letter-spacing:0.328200px;}
.ls2{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.409200px;}
.ls1{letter-spacing:0.892800px;}
.ls1a{letter-spacing:4.625280px;}
.lsd{letter-spacing:8.225280px;}
.ls15{letter-spacing:13.265280px;}
.ls1c{letter-spacing:14.705280px;}
.ls14{letter-spacing:16.121280px;}
.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;}
}
.ws4{word-spacing:-17.107200px;}
.ws5{word-spacing:-16.885200px;}
.ws18{word-spacing:-14.982000px;}
.ws17{word-spacing:-14.794800px;}
.ws12{word-spacing:-14.777400px;}
.ws13{word-spacing:-14.673600px;}
.ws10{word-spacing:-14.650800px;}
.ws16{word-spacing:-14.647800px;}
.ws11{word-spacing:-14.595840px;}
.wsf{word-spacing:-14.584320px;}
.ws19{word-spacing:-14.572800px;}
.ws14{word-spacing:-14.463600px;}
.ws15{word-spacing:-14.446200px;}
.ws7{word-spacing:-13.145760px;}
.ws3{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.880000px;}
.ws0{word-spacing:-11.592000px;}
.wsd{word-spacing:-10.854600px;}
.ws8{word-spacing:-10.661760px;}
.ws2{word-spacing:-10.612800px;}
.wsc{word-spacing:-10.342200px;}
.ws6{word-spacing:-9.187200px;}
.wse{word-spacing:-9.092400px;}
.ws9{word-spacing:-7.884000px;}
.wsa{word-spacing:-7.632000px;}
.wsb{word-spacing:0.000000px;}
._20{margin-left:-4.586400px;}
._f{margin-left:-3.097440px;}
._1e{margin-left:-2.064960px;}
._3{margin-left:-1.020960px;}
._1{width:1.128000px;}
._13{width:3.093120px;}
._14{width:4.630800px;}
._a{width:5.691600px;}
._18{width:7.350480px;}
._10{width:8.545680px;}
._11{width:9.681120px;}
._17{width:10.868640px;}
._27{width:11.897280px;}
._1d{width:12.941520px;}
._8{width:14.536560px;}
._12{width:15.836400px;}
._19{width:17.547120px;}
._9{width:18.712320px;}
._1a{width:19.866000px;}
._16{width:21.401520px;}
._15{width:22.708800px;}
._26{width:24.299520px;}
._e{width:26.652960px;}
._1f{width:27.898560px;}
._25{width:28.899840px;}
._d{width:29.939760px;}
._0{width:31.908000px;}
._24{width:33.211680px;}
._21{width:34.709760px;}
._28{width:38.230080px;}
._5{width:40.039200px;}
._b{width:41.891760px;}
._c{width:43.206480px;}
._1b{width:46.606920px;}
._4{width:50.616720px;}
._7{width:52.170480px;}
._6{width:66.871440px;}
._22{width:69.826560px;}
._23{width:70.859520px;}
._2{width:162.894000px;}
._1c{width:1056.007200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:4.680000px;}
.y4e{bottom:18.000000px;}
.y4d{bottom:28.440000px;}
.y4c{bottom:46.080000px;}
.y7{bottom:56.520000px;}
.y6{bottom:70.596000px;}
.y4b{bottom:89.280000px;}
.y4a{bottom:103.320000px;}
.y80{bottom:115.596000px;}
.y49{bottom:117.360000px;}
.y3c{bottom:124.416000px;}
.y48{bottom:131.580000px;}
.y7f{bottom:137.916000px;}
.y47{bottom:145.620000px;}
.y3b{bottom:146.736000px;}
.y46{bottom:159.660000px;}
.y7e{bottom:160.050000px;}
.y3a{bottom:168.870000px;}
.y45{bottom:173.700000px;}
.y7d{bottom:182.370000px;}
.y44{bottom:187.740000px;}
.y39{bottom:191.190000px;}
.y43{bottom:201.780000px;}
.y7c{bottom:204.510000px;}
.y38{bottom:213.510000px;}
.y42{bottom:216.045000px;}
.y7b{bottom:226.830000px;}
.y41{bottom:230.085000px;}
.y37{bottom:235.650000px;}
.y40{bottom:244.125000px;}
.y7a{bottom:249.150000px;}
.y3f{bottom:256.725000px;}
.y36{bottom:257.970000px;}
.y3e{bottom:267.705000px;}
.y79{bottom:271.290000px;}
.y35{bottom:280.110000px;}
.y78{bottom:293.610000px;}
.y34{bottom:302.430000px;}
.y77{bottom:315.750000px;}
.y33{bottom:324.750000px;}
.y76{bottom:338.115000px;}
.y32{bottom:346.935000px;}
.y75{bottom:360.255000px;}
.y31{bottom:369.255000px;}
.y74{bottom:382.575000px;}
.y30{bottom:388.515000px;}
.y73{bottom:404.895000px;}
.y2f{bottom:405.975000px;}
.y2e{bottom:423.615000px;}
.y72{bottom:427.035000px;}
.y2d{bottom:441.255000px;}
.y71{bottom:449.355000px;}
.y2c{bottom:458.895000px;}
.y70{bottom:471.495000px;}
.y2b{bottom:476.355000px;}
.y6f{bottom:493.815000px;}
.y2a{bottom:493.995000px;}
.y29{bottom:511.635000px;}
.y6e{bottom:516.135000px;}
.y28{bottom:529.095000px;}
.y6d{bottom:538.275000px;}
.y27{bottom:546.735000px;}
.y6c{bottom:560.595000px;}
.y26{bottom:564.375000px;}
.y25{bottom:581.835000px;}
.y6b{bottom:582.735000px;}
.y24{bottom:599.475000px;}
.y6a{bottom:605.085000px;}
.y23{bottom:617.145000px;}
.y69{bottom:627.405000px;}
.y22{bottom:634.785000px;}
.y68{bottom:649.545000px;}
.y21{bottom:652.245000px;}
.y3d{bottom:665.205000px;}
.y20{bottom:669.885000px;}
.y67{bottom:671.865000px;}
.y1f{bottom:687.525000px;}
.y66{bottom:694.005000px;}
.y1e{bottom:704.985000px;}
.y65{bottom:716.325000px;}
.y1d{bottom:722.625000px;}
.y64{bottom:738.465000px;}
.y1c{bottom:740.265000px;}
.y1b{bottom:757.725000px;}
.y63{bottom:760.785000px;}
.y1a{bottom:775.365000px;}
.y62{bottom:783.105000px;}
.y19{bottom:793.005000px;}
.y61{bottom:805.245000px;}
.y18{bottom:810.465000px;}
.y60{bottom:827.565000px;}
.y17{bottom:828.105000px;}
.y16{bottom:845.745000px;}
.y5f{bottom:849.705000px;}
.y15{bottom:863.385000px;}
.y5e{bottom:872.070000px;}
.y14{bottom:880.890000px;}
.y5d{bottom:894.390000px;}
.y13{bottom:898.530000px;}
.y12{bottom:916.170000px;}
.y5c{bottom:916.530000px;}
.y11{bottom:933.630000px;}
.y5b{bottom:938.850000px;}
.y10{bottom:951.270000px;}
.y5a{bottom:960.990000px;}
.yf{bottom:969.090000px;}
.y59{bottom:983.310000px;}
.ye{bottom:988.530000px;}
.y58{bottom:1005.450000px;}
.yd{bottom:1007.790000px;}
.yc{bottom:1027.230000px;}
.y57{bottom:1027.770000px;}
.yb{bottom:1046.490000px;}
.y56{bottom:1050.090000px;}
.ya{bottom:1066.470000px;}
.y55{bottom:1072.230000px;}
.y9{bottom:1089.330000px;}
.y54{bottom:1094.550000px;}
.y8{bottom:1111.650000px;}
.y53{bottom:1116.690000px;}
.y5{bottom:1133.970000px;}
.y52{bottom:1139.040000px;}
.y4{bottom:1149.840000px;}
.y3{bottom:1165.680000px;}
.y51{bottom:1178.100000px;}
.y2{bottom:1181.520000px;}
.y1{bottom:1196.640000px;}
.y50{bottom:1197.540000px;}
.ha{height:20.024297px;}
.h2{height:35.357344px;}
.h4{height:40.843828px;}
.h3{height:45.720703px;}
.hd{height:49.992188px;}
.h8{height:50.364141px;}
.h7{height:50.597578px;}
.h5{height:56.084062px;}
.hc{height:58.490859px;}
.hb{height:60.960938px;}
.h6{height:65.837812px;}
.h9{height:280.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:249.510000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xc{left:-1.080000px;}
.x0{left:0.000000px;}
.xd{left:106.014000px;}
.x1{left:108.035987px;}
.x2{left:109.475987px;}
.xb{left:110.556000px;}
.x7{left:129.275987px;}
.x4{left:136.115987px;}
.x11{left:140.075987px;}
.x10{left:150.509987px;}
.xa{left:162.029987px;}
.xe{left:171.929987px;}
.x6{left:278.894987px;}
.x9{left:373.754987px;}
.x5{left:393.374987px;}
.x8{left:420.554987px;}
.x3{left:446.474987px;}
.xf{left:516.344987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls22{letter-spacing:-0.549333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.470400pt;}
.ls5{letter-spacing:-0.440533pt;}
.ls4{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.240533pt;}
.ls9{letter-spacing:-0.220267pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.197333pt;}
.ls1f{letter-spacing:-0.112533pt;}
.ls1e{letter-spacing:-0.097067pt;}
.ls12{letter-spacing:-0.084267pt;}
.lsc{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.001280pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.010240pt;}
.ls18{letter-spacing:0.020480pt;}
.lsb{letter-spacing:0.043520pt;}
.ls1b{letter-spacing:0.066667pt;}
.ls17{letter-spacing:0.069333pt;}
.ls1d{letter-spacing:0.089600pt;}
.ls0{letter-spacing:0.153600pt;}
.ls6{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.181867pt;}
.ls20{letter-spacing:0.197333pt;}
.ls11{letter-spacing:0.214933pt;}
.ls10{letter-spacing:0.291733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.363733pt;}
.ls1{letter-spacing:0.793600pt;}
.ls1a{letter-spacing:4.111360pt;}
.lsd{letter-spacing:7.311360pt;}
.ls15{letter-spacing:11.791360pt;}
.ls1c{letter-spacing:13.071360pt;}
.ls14{letter-spacing:14.330027pt;}
.ws4{word-spacing:-15.206400pt;}
.ws5{word-spacing:-15.009067pt;}
.ws18{word-spacing:-13.317333pt;}
.ws17{word-spacing:-13.150933pt;}
.ws12{word-spacing:-13.135467pt;}
.ws13{word-spacing:-13.043200pt;}
.ws10{word-spacing:-13.022933pt;}
.ws16{word-spacing:-13.020267pt;}
.ws11{word-spacing:-12.974080pt;}
.wsf{word-spacing:-12.963840pt;}
.ws19{word-spacing:-12.953600pt;}
.ws14{word-spacing:-12.856533pt;}
.ws15{word-spacing:-12.841067pt;}
.ws7{word-spacing:-11.685120pt;}
.ws3{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws0{word-spacing:-10.304000pt;}
.wsd{word-spacing:-9.648533pt;}
.ws8{word-spacing:-9.477120pt;}
.ws2{word-spacing:-9.433600pt;}
.wsc{word-spacing:-9.193067pt;}
.ws6{word-spacing:-8.166400pt;}
.wse{word-spacing:-8.082133pt;}
.ws9{word-spacing:-7.008000pt;}
.wsa{word-spacing:-6.784000pt;}
.wsb{word-spacing:0.000000pt;}
._20{margin-left:-4.076800pt;}
._f{margin-left:-2.753280pt;}
._1e{margin-left:-1.835520pt;}
._3{margin-left:-0.907520pt;}
._1{width:1.002667pt;}
._13{width:2.749440pt;}
._14{width:4.116267pt;}
._a{width:5.059200pt;}
._18{width:6.533760pt;}
._10{width:7.596160pt;}
._11{width:8.605440pt;}
._17{width:9.661013pt;}
._27{width:10.575360pt;}
._1d{width:11.503573pt;}
._8{width:12.921387pt;}
._12{width:14.076800pt;}
._19{width:15.597440pt;}
._9{width:16.633173pt;}
._1a{width:17.658667pt;}
._16{width:19.023573pt;}
._15{width:20.185600pt;}
._26{width:21.599573pt;}
._e{width:23.691520pt;}
._1f{width:24.798720pt;}
._25{width:25.688747pt;}
._d{width:26.613120pt;}
._0{width:28.362667pt;}
._24{width:29.521493pt;}
._21{width:30.853120pt;}
._28{width:33.982293pt;}
._5{width:35.590400pt;}
._b{width:37.237120pt;}
._c{width:38.405760pt;}
._1b{width:41.428373pt;}
._4{width:44.992640pt;}
._7{width:46.373760pt;}
._6{width:59.441280pt;}
._22{width:62.068053pt;}
._23{width:62.986240pt;}
._2{width:144.794667pt;}
._1c{width:938.673067pt;}
.fs6{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:4.160000pt;}
.y4e{bottom:16.000000pt;}
.y4d{bottom:25.280000pt;}
.y4c{bottom:40.960000pt;}
.y7{bottom:50.240000pt;}
.y6{bottom:62.752000pt;}
.y4b{bottom:79.360000pt;}
.y4a{bottom:91.840000pt;}
.y80{bottom:102.752000pt;}
.y49{bottom:104.320000pt;}
.y3c{bottom:110.592000pt;}
.y48{bottom:116.960000pt;}
.y7f{bottom:122.592000pt;}
.y47{bottom:129.440000pt;}
.y3b{bottom:130.432000pt;}
.y46{bottom:141.920000pt;}
.y7e{bottom:142.266667pt;}
.y3a{bottom:150.106667pt;}
.y45{bottom:154.400000pt;}
.y7d{bottom:162.106667pt;}
.y44{bottom:166.880000pt;}
.y39{bottom:169.946667pt;}
.y43{bottom:179.360000pt;}
.y7c{bottom:181.786667pt;}
.y38{bottom:189.786667pt;}
.y42{bottom:192.040000pt;}
.y7b{bottom:201.626667pt;}
.y41{bottom:204.520000pt;}
.y37{bottom:209.466667pt;}
.y40{bottom:217.000000pt;}
.y7a{bottom:221.466667pt;}
.y3f{bottom:228.200000pt;}
.y36{bottom:229.306667pt;}
.y3e{bottom:237.960000pt;}
.y79{bottom:241.146667pt;}
.y35{bottom:248.986667pt;}
.y78{bottom:260.986667pt;}
.y34{bottom:268.826667pt;}
.y77{bottom:280.666667pt;}
.y33{bottom:288.666667pt;}
.y76{bottom:300.546667pt;}
.y32{bottom:308.386667pt;}
.y75{bottom:320.226667pt;}
.y31{bottom:328.226667pt;}
.y74{bottom:340.066667pt;}
.y30{bottom:345.346667pt;}
.y73{bottom:359.906667pt;}
.y2f{bottom:360.866667pt;}
.y2e{bottom:376.546667pt;}
.y72{bottom:379.586667pt;}
.y2d{bottom:392.226667pt;}
.y71{bottom:399.426667pt;}
.y2c{bottom:407.906667pt;}
.y70{bottom:419.106667pt;}
.y2b{bottom:423.426667pt;}
.y6f{bottom:438.946667pt;}
.y2a{bottom:439.106667pt;}
.y29{bottom:454.786667pt;}
.y6e{bottom:458.786667pt;}
.y28{bottom:470.306667pt;}
.y6d{bottom:478.466667pt;}
.y27{bottom:485.986667pt;}
.y6c{bottom:498.306667pt;}
.y26{bottom:501.666667pt;}
.y25{bottom:517.186667pt;}
.y6b{bottom:517.986667pt;}
.y24{bottom:532.866667pt;}
.y6a{bottom:537.853333pt;}
.y23{bottom:548.573333pt;}
.y69{bottom:557.693333pt;}
.y22{bottom:564.253333pt;}
.y68{bottom:577.373333pt;}
.y21{bottom:579.773333pt;}
.y3d{bottom:591.293333pt;}
.y20{bottom:595.453333pt;}
.y67{bottom:597.213333pt;}
.y1f{bottom:611.133333pt;}
.y66{bottom:616.893333pt;}
.y1e{bottom:626.653333pt;}
.y65{bottom:636.733333pt;}
.y1d{bottom:642.333333pt;}
.y64{bottom:656.413333pt;}
.y1c{bottom:658.013333pt;}
.y1b{bottom:673.533333pt;}
.y63{bottom:676.253333pt;}
.y1a{bottom:689.213333pt;}
.y62{bottom:696.093333pt;}
.y19{bottom:704.893333pt;}
.y61{bottom:715.773333pt;}
.y18{bottom:720.413333pt;}
.y60{bottom:735.613333pt;}
.y17{bottom:736.093333pt;}
.y16{bottom:751.773333pt;}
.y5f{bottom:755.293333pt;}
.y15{bottom:767.453333pt;}
.y5e{bottom:775.173333pt;}
.y14{bottom:783.013333pt;}
.y5d{bottom:795.013333pt;}
.y13{bottom:798.693333pt;}
.y12{bottom:814.373333pt;}
.y5c{bottom:814.693333pt;}
.y11{bottom:829.893333pt;}
.y5b{bottom:834.533333pt;}
.y10{bottom:845.573333pt;}
.y5a{bottom:854.213333pt;}
.yf{bottom:861.413333pt;}
.y59{bottom:874.053333pt;}
.ye{bottom:878.693333pt;}
.y58{bottom:893.733333pt;}
.yd{bottom:895.813333pt;}
.yc{bottom:913.093333pt;}
.y57{bottom:913.573333pt;}
.yb{bottom:930.213333pt;}
.y56{bottom:933.413333pt;}
.ya{bottom:947.973333pt;}
.y55{bottom:953.093333pt;}
.y9{bottom:968.293333pt;}
.y54{bottom:972.933333pt;}
.y8{bottom:988.133333pt;}
.y53{bottom:992.613333pt;}
.y5{bottom:1007.973333pt;}
.y52{bottom:1012.480000pt;}
.y4{bottom:1022.080000pt;}
.y3{bottom:1036.160000pt;}
.y51{bottom:1047.200000pt;}
.y2{bottom:1050.240000pt;}
.y1{bottom:1063.680000pt;}
.y50{bottom:1064.480000pt;}
.ha{height:17.799375pt;}
.h2{height:31.428750pt;}
.h4{height:36.305625pt;}
.h3{height:40.640625pt;}
.hd{height:44.437500pt;}
.h8{height:44.768125pt;}
.h7{height:44.975625pt;}
.h5{height:49.852500pt;}
.hc{height:51.991875pt;}
.hb{height:54.187500pt;}
.h6{height:58.522500pt;}
.h9{height:249.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:221.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xc{left:-0.960000pt;}
.x0{left:0.000000pt;}
.xd{left:94.234667pt;}
.x1{left:96.031988pt;}
.x2{left:97.311988pt;}
.xb{left:98.272000pt;}
.x7{left:114.911988pt;}
.x4{left:120.991988pt;}
.x11{left:124.511988pt;}
.x10{left:133.786655pt;}
.xa{left:144.026655pt;}
.xe{left:152.826655pt;}
.x6{left:247.906655pt;}
.x9{left:332.226655pt;}
.x5{left:349.666655pt;}
.x8{left:373.826655pt;}
.x3{left:396.866655pt;}
.xf{left:458.973322pt;}
}




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