
    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_04420788dbd127c22db13d5a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_2bb55bda2d1dadf03c5de287.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901855;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_44b6eda0ff48c2bc804b6851.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916016;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_77a67d753a05524b123f9350.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901855;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_85152461d4a2ddd5d59193d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_05a9a1f9565aa487569af6a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_04560eb5e2b59719c45caaef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_01ce8cbd34e42b9a86a59126.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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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);}
.m2{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.690000px;}
.ls6{letter-spacing:-0.378600px;}
.ls1e{letter-spacing:-0.350400px;}
.ls7{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.148320px;}
.ls19{letter-spacing:0.170640px;}
.ls15{letter-spacing:0.291600px;}
.ls3{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.369360px;}
.ls4{letter-spacing:0.378600px;}
.lse{letter-spacing:0.540000px;}
.lsb{letter-spacing:1.980000px;}
.ls1c{letter-spacing:2.700000px;}
.ls10{letter-spacing:5.580000px;}
.ls17{letter-spacing:13.500000px;}
.lsd{letter-spacing:17.940000px;}
.lsc{letter-spacing:25.020000px;}
.ls14{letter-spacing:29.340000px;}
.ls16{letter-spacing:30.240000px;}
.lsf{letter-spacing:35.100000px;}
.ls11{letter-spacing:41.381280px;}
.lsa{letter-spacing:41.682720px;}
.ls9{letter-spacing:44.460000px;}
.ls12{letter-spacing:45.180000px;}
.ls1b{letter-spacing:49.500000px;}
.ls1a{letter-spacing:49.620000px;}
.ls18{letter-spacing:50.220000px;}
.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;}
.ws2{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.401400px;}
.ws0{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.709600px;}
.ws3{word-spacing:-20.681400px;}
.ws5{word-spacing:0.000000px;}
._27{margin-left:-6.125520px;}
._23{margin-left:-5.053680px;}
._1d{margin-left:-3.875040px;}
._2d{margin-left:-2.185920px;}
._1{margin-left:-1.053360px;}
._0{width:1.915200px;}
._2c{width:3.036240px;}
._1c{width:4.086000px;}
._d{width:5.475600px;}
._14{width:7.120560px;}
._12{width:8.676720px;}
._6{width:9.802560px;}
._17{width:11.119680px;}
._2a{width:12.130560px;}
._4{width:14.111760px;}
._8{width:15.352320px;}
._38{width:16.487760px;}
._36{width:17.521920px;}
._a{width:19.047840px;}
._9{width:22.845360px;}
._29{width:24.413280px;}
._22{width:25.482240px;}
._21{width:26.662320px;}
._2f{width:27.801120px;}
._3{width:29.317440px;}
._2b{width:30.958560px;}
._35{width:32.305680px;}
._33{width:33.611760px;}
._f{width:35.296560px;}
._34{width:36.475920px;}
._37{width:38.076480px;}
._1f{width:40.857120px;}
._16{width:41.909760px;}
._7{width:42.956160px;}
._5{width:44.257440px;}
._32{width:45.784800px;}
._20{width:47.174400px;}
._28{width:48.283200px;}
._3b{width:50.019840px;}
._39{width:53.071200px;}
._1b{width:54.714240px;}
._2e{width:55.935360px;}
._3a{width:57.528480px;}
._1e{width:71.940960px;}
._c{width:78.204240px;}
._b{width:79.621680px;}
._31{width:81.881280px;}
._30{width:82.976400px;}
._e{width:90.136800px;}
._2{width:93.789360px;}
._11{width:100.709280px;}
._13{width:102.688560px;}
._18{width:111.702240px;}
._1a{width:127.960560px;}
._15{width:130.193280px;}
._10{width:138.659040px;}
._26{width:143.503200px;}
._24{width:176.778000px;}
._19{width:214.390800px;}
._25{width:334.854000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.yf{bottom:8.100000px;}
.y2a{bottom:8.280000px;}
.y29{bottom:35.994000px;}
.y1c{bottom:36.000000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y28{bottom:63.714000px;}
.y1b{bottom:63.720000px;}
.y2c{bottom:63.750000px;}
.y27{bottom:91.434000px;}
.y1a{bottom:91.440000px;}
.y71{bottom:109.476000px;}
.y4c{bottom:117.756000px;}
.y26{bottom:119.334000px;}
.y36{bottom:119.340000px;}
.y19{bottom:119.370000px;}
.y84{bottom:119.916000px;}
.y1e{bottom:124.596000px;}
.y70{bottom:138.096000px;}
.y4b{bottom:145.476000px;}
.y25{bottom:147.054000px;}
.y35{bottom:147.060000px;}
.y18{bottom:147.090000px;}
.y83{bottom:147.636000px;}
.y6f{bottom:166.530000px;}
.y4a{bottom:173.190000px;}
.y24{bottom:174.774000px;}
.y17{bottom:174.810000px;}
.y34{bottom:174.825000px;}
.y82{bottom:175.530000px;}
.y49{bottom:200.910000px;}
.y23{bottom:202.494000px;}
.y16{bottom:202.530000px;}
.y33{bottom:202.725000px;}
.y6e{bottom:203.250000px;}
.y48{bottom:228.810000px;}
.y15{bottom:230.430000px;}
.y22{bottom:230.439000px;}
.y32{bottom:230.445000px;}
.y6d{bottom:230.970000px;}
.y47{bottom:256.530000px;}
.y14{bottom:258.150000px;}
.y21{bottom:258.159000px;}
.y31{bottom:258.165000px;}
.y6c{bottom:258.690000px;}
.y46{bottom:284.250000px;}
.y13{bottom:285.870000px;}
.y20{bottom:285.879000px;}
.y30{bottom:285.885000px;}
.y6b{bottom:286.590000px;}
.y45{bottom:311.970000px;}
.y12{bottom:313.770000px;}
.y1f{bottom:313.779000px;}
.y2f{bottom:313.785000px;}
.y6a{bottom:314.310000px;}
.y44{bottom:339.915000px;}
.y11{bottom:341.490000px;}
.y69{bottom:342.075000px;}
.y43{bottom:367.635000px;}
.y68{bottom:369.975000px;}
.y42{bottom:395.355000px;}
.y67{bottom:397.695000px;}
.y41{bottom:423.255000px;}
.y66{bottom:425.415000px;}
.y40{bottom:450.975000px;}
.y65{bottom:453.135000px;}
.y1d{bottom:458.715000px;}
.y3f{bottom:478.695000px;}
.y64{bottom:481.035000px;}
.y10{bottom:487.155000px;}
.y3e{bottom:506.415000px;}
.y63{bottom:508.755000px;}
.y3d{bottom:534.315000px;}
.y62{bottom:536.475000px;}
.y3c{bottom:562.035000px;}
.y61{bottom:564.195000px;}
.y3b{bottom:589.755000px;}
.y60{bottom:592.095000px;}
.y3a{bottom:617.685000px;}
.y5f{bottom:619.845000px;}
.y39{bottom:645.405000px;}
.y5e{bottom:647.565000px;}
.y38{bottom:673.125000px;}
.y5d{bottom:675.465000px;}
.y37{bottom:700.845000px;}
.y5c{bottom:703.185000px;}
.y2e{bottom:720.465000px;}
.y81{bottom:728.745000px;}
.y5b{bottom:730.905000px;}
.y80{bottom:756.465000px;}
.y5a{bottom:758.625000px;}
.y7f{bottom:784.185000px;}
.y59{bottom:786.525000px;}
.y7e{bottom:811.905000px;}
.y58{bottom:814.245000px;}
.y7d{bottom:839.805000px;}
.y57{bottom:841.965000px;}
.ye{bottom:848.985000px;}
.y7c{bottom:867.525000px;}
.y56{bottom:869.865000px;}
.yd{bottom:885.750000px;}
.y7b{bottom:895.290000px;}
.y55{bottom:897.630000px;}
.yc{bottom:913.470000px;}
.y7a{bottom:923.190000px;}
.y54{bottom:925.350000px;}
.yb{bottom:941.190000px;}
.y79{bottom:950.910000px;}
.y53{bottom:953.070000px;}
.ya{bottom:969.090000px;}
.y78{bottom:978.630000px;}
.y52{bottom:980.970000px;}
.y9{bottom:996.810000px;}
.y77{bottom:1006.350000px;}
.y51{bottom:1008.690000px;}
.y8{bottom:1024.530000px;}
.y76{bottom:1034.250000px;}
.y50{bottom:1036.410000px;}
.y7{bottom:1053.510000px;}
.y2d{bottom:1054.590000px;}
.y75{bottom:1061.970000px;}
.y4f{bottom:1064.130000px;}
.y2b{bottom:1083.030000px;}
.y6{bottom:1085.370000px;}
.y74{bottom:1089.690000px;}
.y4e{bottom:1092.030000px;}
.y73{bottom:1110.030000px;}
.y5{bottom:1117.050000px;}
.y4d{bottom:1119.750000px;}
.y72{bottom:1138.680000px;}
.y4{bottom:1147.500000px;}
.h3{height:22.536000px;}
.ha{height:27.720000px;}
.h8{height:27.756000px;}
.hd{height:27.900000px;}
.he{height:27.936000px;}
.h5{height:58.984453px;}
.h2{height:59.066719px;}
.h4{height:59.436914px;}
.hf{height:61.329023px;}
.h7{height:61.575820px;}
.h6{height:67.565039px;}
.hc{height:83.376000px;}
.hb{height:333.390000px;}
.h9{height:361.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w9{width:114.120000px;}
.w7{width:161.850000px;}
.w8{width:178.770000px;}
.w6{width:192.270000px;}
.w5{width:244.650000px;}
.w4{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x10{left:10.620000px;}
.x14{left:18.180000px;}
.x3{left:24.120000px;}
.x18{left:25.740000px;}
.x1c{left:27.000000px;}
.x1a{left:31.860000px;}
.x1b{left:35.634000px;}
.xf{left:61.194000px;}
.x19{left:69.840000px;}
.x1{left:95.795987px;}
.x7{left:117.755987px;}
.x13{left:121.896000px;}
.x1d{left:127.835987px;}
.x12{left:138.275987px;}
.x11{left:148.895987px;}
.x6{left:181.109987px;}
.xc{left:270.569987px;}
.x15{left:314.895000px;}
.xb{left:340.094987px;}
.x9{left:342.974987px;}
.x2{left:421.815000px;}
.x5{left:446.474987px;}
.x4{left:451.874987px;}
.x16{left:477.645000px;}
.xe{left:574.305000px;}
.x17{left:657.150000px;}
.xa{left:670.829987px;}
.x8{left:677.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.613333pt;}
.ls6{letter-spacing:-0.336533pt;}
.ls1e{letter-spacing:-0.311467pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.131840pt;}
.ls19{letter-spacing:0.151680pt;}
.ls15{letter-spacing:0.259200pt;}
.ls3{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.328320pt;}
.ls4{letter-spacing:0.336533pt;}
.lse{letter-spacing:0.480000pt;}
.lsb{letter-spacing:1.760000pt;}
.ls1c{letter-spacing:2.400000pt;}
.ls10{letter-spacing:4.960000pt;}
.ls17{letter-spacing:12.000000pt;}
.lsd{letter-spacing:15.946667pt;}
.lsc{letter-spacing:22.240000pt;}
.ls14{letter-spacing:26.080000pt;}
.ls16{letter-spacing:26.880000pt;}
.lsf{letter-spacing:31.200000pt;}
.ls11{letter-spacing:36.783360pt;}
.lsa{letter-spacing:37.051307pt;}
.ls9{letter-spacing:39.520000pt;}
.ls12{letter-spacing:40.160000pt;}
.ls1b{letter-spacing:44.000000pt;}
.ls1a{letter-spacing:44.106667pt;}
.ls18{letter-spacing:44.640000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws2{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.ws1{word-spacing:-19.023467pt;}
.ws0{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.408533pt;}
.ws3{word-spacing:-18.383467pt;}
.ws5{word-spacing:0.000000pt;}
._27{margin-left:-5.444907pt;}
._23{margin-left:-4.492160pt;}
._1d{margin-left:-3.444480pt;}
._2d{margin-left:-1.943040pt;}
._1{margin-left:-0.936320pt;}
._0{width:1.702400pt;}
._2c{width:2.698880pt;}
._1c{width:3.632000pt;}
._d{width:4.867200pt;}
._14{width:6.329387pt;}
._12{width:7.712640pt;}
._6{width:8.713387pt;}
._17{width:9.884160pt;}
._2a{width:10.782720pt;}
._4{width:12.543787pt;}
._8{width:13.646507pt;}
._38{width:14.655787pt;}
._36{width:15.575040pt;}
._a{width:16.931413pt;}
._9{width:20.306987pt;}
._29{width:21.700693pt;}
._22{width:22.650880pt;}
._21{width:23.699840pt;}
._2f{width:24.712107pt;}
._3{width:26.059947pt;}
._2b{width:27.518720pt;}
._35{width:28.716160pt;}
._33{width:29.877120pt;}
._f{width:31.374720pt;}
._34{width:32.423040pt;}
._37{width:33.845760pt;}
._1f{width:36.317440pt;}
._16{width:37.253120pt;}
._7{width:38.183253pt;}
._5{width:39.339947pt;}
._32{width:40.697600pt;}
._20{width:41.932800pt;}
._28{width:42.918400pt;}
._3b{width:44.462080pt;}
._39{width:47.174400pt;}
._1b{width:48.634880pt;}
._2e{width:49.720320pt;}
._3a{width:51.136427pt;}
._1e{width:63.947520pt;}
._c{width:69.514880pt;}
._b{width:70.774827pt;}
._31{width:72.783360pt;}
._30{width:73.756800pt;}
._e{width:80.121600pt;}
._2{width:83.368320pt;}
._11{width:89.519360pt;}
._13{width:91.278720pt;}
._18{width:99.290880pt;}
._1a{width:113.742720pt;}
._15{width:115.727360pt;}
._10{width:123.252480pt;}
._26{width:127.558400pt;}
._24{width:157.136000pt;}
._19{width:190.569600pt;}
._25{width:297.648000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.yf{bottom:7.200000pt;}
.y2a{bottom:7.360000pt;}
.y29{bottom:31.994667pt;}
.y1c{bottom:32.000000pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y28{bottom:56.634667pt;}
.y1b{bottom:56.640000pt;}
.y2c{bottom:56.666667pt;}
.y27{bottom:81.274667pt;}
.y1a{bottom:81.280000pt;}
.y71{bottom:97.312000pt;}
.y4c{bottom:104.672000pt;}
.y26{bottom:106.074667pt;}
.y36{bottom:106.080000pt;}
.y19{bottom:106.106667pt;}
.y84{bottom:106.592000pt;}
.y1e{bottom:110.752000pt;}
.y70{bottom:122.752000pt;}
.y4b{bottom:129.312000pt;}
.y25{bottom:130.714667pt;}
.y35{bottom:130.720000pt;}
.y18{bottom:130.746667pt;}
.y83{bottom:131.232000pt;}
.y6f{bottom:148.026667pt;}
.y4a{bottom:153.946667pt;}
.y24{bottom:155.354667pt;}
.y17{bottom:155.386667pt;}
.y34{bottom:155.400000pt;}
.y82{bottom:156.026667pt;}
.y49{bottom:178.586667pt;}
.y23{bottom:179.994667pt;}
.y16{bottom:180.026667pt;}
.y33{bottom:180.200000pt;}
.y6e{bottom:180.666667pt;}
.y48{bottom:203.386667pt;}
.y15{bottom:204.826667pt;}
.y22{bottom:204.834667pt;}
.y32{bottom:204.840000pt;}
.y6d{bottom:205.306667pt;}
.y47{bottom:228.026667pt;}
.y14{bottom:229.466667pt;}
.y21{bottom:229.474667pt;}
.y31{bottom:229.480000pt;}
.y6c{bottom:229.946667pt;}
.y46{bottom:252.666667pt;}
.y13{bottom:254.106667pt;}
.y20{bottom:254.114667pt;}
.y30{bottom:254.120000pt;}
.y6b{bottom:254.746667pt;}
.y45{bottom:277.306667pt;}
.y12{bottom:278.906667pt;}
.y1f{bottom:278.914667pt;}
.y2f{bottom:278.920000pt;}
.y6a{bottom:279.386667pt;}
.y44{bottom:302.146667pt;}
.y11{bottom:303.546667pt;}
.y69{bottom:304.066667pt;}
.y43{bottom:326.786667pt;}
.y68{bottom:328.866667pt;}
.y42{bottom:351.426667pt;}
.y67{bottom:353.506667pt;}
.y41{bottom:376.226667pt;}
.y66{bottom:378.146667pt;}
.y40{bottom:400.866667pt;}
.y65{bottom:402.786667pt;}
.y1d{bottom:407.746667pt;}
.y3f{bottom:425.506667pt;}
.y64{bottom:427.586667pt;}
.y10{bottom:433.026667pt;}
.y3e{bottom:450.146667pt;}
.y63{bottom:452.226667pt;}
.y3d{bottom:474.946667pt;}
.y62{bottom:476.866667pt;}
.y3c{bottom:499.586667pt;}
.y61{bottom:501.506667pt;}
.y3b{bottom:524.226667pt;}
.y60{bottom:526.306667pt;}
.y3a{bottom:549.053333pt;}
.y5f{bottom:550.973333pt;}
.y39{bottom:573.693333pt;}
.y5e{bottom:575.613333pt;}
.y38{bottom:598.333333pt;}
.y5d{bottom:600.413333pt;}
.y37{bottom:622.973333pt;}
.y5c{bottom:625.053333pt;}
.y2e{bottom:640.413333pt;}
.y81{bottom:647.773333pt;}
.y5b{bottom:649.693333pt;}
.y80{bottom:672.413333pt;}
.y5a{bottom:674.333333pt;}
.y7f{bottom:697.053333pt;}
.y59{bottom:699.133333pt;}
.y7e{bottom:721.693333pt;}
.y58{bottom:723.773333pt;}
.y7d{bottom:746.493333pt;}
.y57{bottom:748.413333pt;}
.ye{bottom:754.653333pt;}
.y7c{bottom:771.133333pt;}
.y56{bottom:773.213333pt;}
.yd{bottom:787.333333pt;}
.y7b{bottom:795.813333pt;}
.y55{bottom:797.893333pt;}
.yc{bottom:811.973333pt;}
.y7a{bottom:820.613333pt;}
.y54{bottom:822.533333pt;}
.yb{bottom:836.613333pt;}
.y79{bottom:845.253333pt;}
.y53{bottom:847.173333pt;}
.ya{bottom:861.413333pt;}
.y78{bottom:869.893333pt;}
.y52{bottom:871.973333pt;}
.y9{bottom:886.053333pt;}
.y77{bottom:894.533333pt;}
.y51{bottom:896.613333pt;}
.y8{bottom:910.693333pt;}
.y76{bottom:919.333333pt;}
.y50{bottom:921.253333pt;}
.y7{bottom:936.453333pt;}
.y2d{bottom:937.413333pt;}
.y75{bottom:943.973333pt;}
.y4f{bottom:945.893333pt;}
.y2b{bottom:962.693333pt;}
.y6{bottom:964.773333pt;}
.y74{bottom:968.613333pt;}
.y4e{bottom:970.693333pt;}
.y73{bottom:986.693333pt;}
.y5{bottom:992.933333pt;}
.y4d{bottom:995.333333pt;}
.y72{bottom:1012.160000pt;}
.y4{bottom:1020.000000pt;}
.h3{height:20.032000pt;}
.ha{height:24.640000pt;}
.h8{height:24.672000pt;}
.hd{height:24.800000pt;}
.he{height:24.832000pt;}
.h5{height:52.430625pt;}
.h2{height:52.503750pt;}
.h4{height:52.832812pt;}
.hf{height:54.514687pt;}
.h7{height:54.734062pt;}
.h6{height:60.057813pt;}
.hc{height:74.112000pt;}
.hb{height:296.346667pt;}
.h9{height:320.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w9{width:101.440000pt;}
.w7{width:143.866667pt;}
.w8{width:158.906667pt;}
.w6{width:170.906667pt;}
.w5{width:217.466667pt;}
.w4{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x10{left:9.440000pt;}
.x14{left:16.160000pt;}
.x3{left:21.440000pt;}
.x18{left:22.880000pt;}
.x1c{left:24.000000pt;}
.x1a{left:28.320000pt;}
.x1b{left:31.674667pt;}
.xf{left:54.394667pt;}
.x19{left:62.080000pt;}
.x1{left:85.151988pt;}
.x7{left:104.671988pt;}
.x13{left:108.352000pt;}
.x1d{left:113.631988pt;}
.x12{left:122.911988pt;}
.x11{left:132.351988pt;}
.x6{left:160.986655pt;}
.xc{left:240.506655pt;}
.x15{left:279.906667pt;}
.xb{left:302.306655pt;}
.x9{left:304.866655pt;}
.x2{left:374.946667pt;}
.x5{left:396.866655pt;}
.x4{left:401.666655pt;}
.x16{left:424.573333pt;}
.xe{left:510.493333pt;}
.x17{left:584.133333pt;}
.xa{left:596.293322pt;}
.x8{left:602.373322pt;}
}




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