
    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_a8bd9d66a858a3ee5f44216f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_77471dd3e6459da304e4b02b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e499df47772b264637d1a42f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.171875;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_c6f309c69dd97b8f98e18bd1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_33455f19abb72bdc7f9efbc3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0b91883af1d04a16b0841ebc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_74fa0b06dd62f19db525fb5b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_3a754d82bc1e38224ad244ef.woff')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_de209552cad60644eae13131.woff')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls15{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.259800px;}
.ls4{letter-spacing:-0.230400px;}
.ls6{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.080000px;}
.ls13{letter-spacing:16.740000px;}
.ls11{letter-spacing:31.860000px;}
.ls12{letter-spacing:34.020000px;}
.ls14{letter-spacing:46.980000px;}
.lsf{letter-spacing:62.100000px;}
.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:-27.000000px;}
.wse{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.226440px;}
.ws9{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws4{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-9.687600px;}
._16{margin-left:-8.193360px;}
._5{margin-left:-6.919200px;}
._12{margin-left:-5.740320px;}
._6{margin-left:-4.413600px;}
._3{margin-left:-3.022560px;}
._1{margin-left:-1.120320px;}
._2{width:1.116000px;}
._a{width:2.510880px;}
._9{width:3.666240px;}
._8{width:5.118480px;}
._7{width:6.155280px;}
._10{width:7.653600px;}
._13{width:9.094320px;}
._b{width:10.477440px;}
._c{width:11.533680px;}
._d{width:13.166640px;}
._11{width:16.663560px;}
._0{width:17.876400px;}
._14{width:19.873200px;}
._e{width:25.178400px;}
._f{width:26.334720px;}
._15{width:1368.480000px;}
.fc2{color:rgb(4,98,193);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:56.880000px;}
.y3{bottom:78.120000px;}
.y2{bottom:98.280000px;}
.y41{bottom:119.736000px;}
.y72{bottom:122.436000px;}
.y6e{bottom:123.516000px;}
.y26{bottom:133.956000px;}
.y4e{bottom:135.576000px;}
.y40{bottom:145.476000px;}
.y71{bottom:148.176000px;}
.y6d{bottom:149.436000px;}
.y25{bottom:159.870000px;}
.y4d{bottom:161.490000px;}
.y3f{bottom:171.390000px;}
.y6c{bottom:175.350000px;}
.y24{bottom:185.610000px;}
.y4c{bottom:187.230000px;}
.y3e{bottom:197.310000px;}
.y6b{bottom:201.270000px;}
.y9c{bottom:208.830000px;}
.y23{bottom:211.530000px;}
.y4b{bottom:213.150000px;}
.y3d{bottom:223.230000px;}
.y6a{bottom:227.010000px;}
.y22{bottom:237.450000px;}
.y4a{bottom:239.070000px;}
.y3c{bottom:248.970000px;}
.y69{bottom:252.930000px;}
.y21{bottom:263.370000px;}
.y49{bottom:264.990000px;}
.y3b{bottom:274.890000px;}
.y68{bottom:278.850000px;}
.y20{bottom:289.110000px;}
.y48{bottom:291.990000px;}
.y3a{bottom:301.890000px;}
.y67{bottom:304.770000px;}
.y9b{bottom:315.030000px;}
.y1f{bottom:316.110000px;}
.y47{bottom:319.170000px;}
.y39{bottom:329.250000px;}
.y66{bottom:330.510000px;}
.y1e{bottom:340.050000px;}
.y9a{bottom:340.950000px;}
.y46{bottom:345.090000px;}
.y38{bottom:355.170000px;}
.y65{bottom:356.430000px;}
.y1d{bottom:361.650000px;}
.y99{bottom:366.915000px;}
.y45{bottom:367.995000px;}
.y37{bottom:380.955000px;}
.y64{bottom:382.395000px;}
.y1c{bottom:387.615000px;}
.y98{bottom:392.655000px;}
.y36{bottom:403.635000px;}
.y63{bottom:408.315000px;}
.y8d{bottom:409.395000px;}
.y1b{bottom:413.355000px;}
.y97{bottom:418.575000px;}
.y8c{bottom:431.895000px;}
.y62{bottom:434.055000px;}
.y1a{bottom:439.275000px;}
.y96{bottom:444.495000px;}
.y8b{bottom:452.235000px;}
.y61{bottom:459.975000px;}
.y19{bottom:465.195000px;}
.y95{bottom:470.235000px;}
.y8a{bottom:478.155000px;}
.y60{bottom:485.895000px;}
.y18{bottom:490.935000px;}
.y94{bottom:496.155000px;}
.y89{bottom:503.895000px;}
.y5f{bottom:511.635000px;}
.y17{bottom:516.855000px;}
.y93{bottom:522.075000px;}
.y88{bottom:529.815000px;}
.y5e{bottom:537.555000px;}
.y16{bottom:542.775000px;}
.y92{bottom:547.995000px;}
.y87{bottom:555.735000px;}
.y5d{bottom:563.475000px;}
.y15{bottom:568.695000px;}
.y91{bottom:573.735000px;}
.y70{bottom:576.435000px;}
.y86{bottom:581.655000px;}
.y5c{bottom:589.395000px;}
.y14{bottom:594.435000px;}
.y90{bottom:599.655000px;}
.y6f{bottom:602.355000px;}
.y85{bottom:607.395000px;}
.y5b{bottom:615.135000px;}
.y13{bottom:620.355000px;}
.y8f{bottom:625.605000px;}
.y44{bottom:628.125000px;}
.y84{bottom:634.425000px;}
.y5a{bottom:641.085000px;}
.y12{bottom:646.305000px;}
.y8e{bottom:651.525000px;}
.y43{bottom:654.045000px;}
.y83{bottom:657.105000px;}
.y59{bottom:667.005000px;}
.y11{bottom:672.225000px;}
.y82{bottom:677.265000px;}
.y42{bottom:679.965000px;}
.y58{bottom:692.925000px;}
.y10{bottom:697.965000px;}
.y81{bottom:703.185000px;}
.y35{bottom:705.885000px;}
.y57{bottom:718.665000px;}
.yf{bottom:723.885000px;}
.y80{bottom:729.105000px;}
.y34{bottom:731.625000px;}
.y56{bottom:744.585000px;}
.ye{bottom:749.805000px;}
.y7f{bottom:755.025000px;}
.y33{bottom:757.545000px;}
.y55{bottom:770.505000px;}
.yd{bottom:776.805000px;}
.y7e{bottom:780.765000px;}
.y32{bottom:783.465000px;}
.y54{bottom:796.425000px;}
.yc{bottom:805.245000px;}
.y7d{bottom:806.685000px;}
.y31{bottom:809.205000px;}
.y53{bottom:822.165000px;}
.y7c{bottom:832.605000px;}
.yb{bottom:833.685000px;}
.y30{bottom:835.125000px;}
.y52{bottom:848.085000px;}
.y7b{bottom:858.525000px;}
.y2f{bottom:861.045000px;}
.ya{bottom:862.125000px;}
.y51{bottom:874.005000px;}
.y7a{bottom:884.310000px;}
.y2e{bottom:887.010000px;}
.y9{bottom:897.450000px;}
.y50{bottom:901.050000px;}
.y79{bottom:910.230000px;}
.y2d{bottom:912.750000px;}
.y4f{bottom:921.210000px;}
.y8{bottom:922.830000px;}
.y78{bottom:936.150000px;}
.y2c{bottom:938.670000px;}
.y77{bottom:962.070000px;}
.y7{bottom:963.510000px;}
.y2b{bottom:964.590000px;}
.y76{bottom:987.810000px;}
.y2a{bottom:990.510000px;}
.y6{bottom:1010.130000px;}
.y75{bottom:1013.730000px;}
.y29{bottom:1016.250000px;}
.y74{bottom:1039.650000px;}
.y28{bottom:1042.170000px;}
.y5{bottom:1056.750000px;}
.y73{bottom:1066.650000px;}
.y27{bottom:1068.090000px;}
.y1{bottom:1103.010000px;}
.hf{height:16.764258px;}
.h10{height:25.136719px;}
.h11{height:25.400391px;}
.hc{height:29.464453px;}
.h7{height:31.829766px;}
.hd{height:41.726953px;}
.he{height:42.164648px;}
.hb{height:45.549492px;}
.h9{height:46.251562px;}
.ha{height:46.736719px;}
.h2{height:50.273438px;}
.h8{height:50.488594px;}
.h3{height:65.884219px;}
.h4{height:67.824844px;}
.h6{height:68.340586px;}
.h5{height:76.201172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:2.159987px;}
.xd{left:106.955987px;}
.x3{left:108.035987px;}
.x16{left:148.535987px;}
.x9{left:173.549987px;}
.x5{left:178.229987px;}
.xf{left:179.309987px;}
.x15{left:194.609987px;}
.x6{left:207.389987px;}
.xa{left:236.009987px;}
.x12{left:251.129987px;}
.x14{left:266.654987px;}
.x8{left:269.894987px;}
.xb{left:272.774987px;}
.x13{left:285.014987px;}
.x10{left:296.714987px;}
.x7{left:386.354987px;}
.xc{left:459.644987px;}
.x2{left:702.869987px;}
.xe{left:709.709987px;}
.x11{left:719.969987px;}
.x1{left:785.309987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:-0.204800pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.800000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls13{letter-spacing:14.880000pt;}
.ls11{letter-spacing:28.320000pt;}
.ls12{letter-spacing:30.240000pt;}
.ls14{letter-spacing:41.760000pt;}
.lsf{letter-spacing:55.200000pt;}
.ws1{word-spacing:-24.000000pt;}
.wse{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.wsc{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-8.611200pt;}
._16{margin-left:-7.282987pt;}
._5{margin-left:-6.150400pt;}
._12{margin-left:-5.102507pt;}
._6{margin-left:-3.923200pt;}
._3{margin-left:-2.686720pt;}
._1{margin-left:-0.995840pt;}
._2{width:0.992000pt;}
._a{width:2.231893pt;}
._9{width:3.258880pt;}
._8{width:4.549760pt;}
._7{width:5.471360pt;}
._10{width:6.803200pt;}
._13{width:8.083840pt;}
._b{width:9.313280pt;}
._c{width:10.252160pt;}
._d{width:11.703680pt;}
._11{width:14.812053pt;}
._0{width:15.890133pt;}
._14{width:17.665067pt;}
._e{width:22.380800pt;}
._f{width:23.408640pt;}
._15{width:1216.426667pt;}
.fs7{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:50.560000pt;}
.y3{bottom:69.440000pt;}
.y2{bottom:87.360000pt;}
.y41{bottom:106.432000pt;}
.y72{bottom:108.832000pt;}
.y6e{bottom:109.792000pt;}
.y26{bottom:119.072000pt;}
.y4e{bottom:120.512000pt;}
.y40{bottom:129.312000pt;}
.y71{bottom:131.712000pt;}
.y6d{bottom:132.832000pt;}
.y25{bottom:142.106667pt;}
.y4d{bottom:143.546667pt;}
.y3f{bottom:152.346667pt;}
.y6c{bottom:155.866667pt;}
.y24{bottom:164.986667pt;}
.y4c{bottom:166.426667pt;}
.y3e{bottom:175.386667pt;}
.y6b{bottom:178.906667pt;}
.y9c{bottom:185.626667pt;}
.y23{bottom:188.026667pt;}
.y4b{bottom:189.466667pt;}
.y3d{bottom:198.426667pt;}
.y6a{bottom:201.786667pt;}
.y22{bottom:211.066667pt;}
.y4a{bottom:212.506667pt;}
.y3c{bottom:221.306667pt;}
.y69{bottom:224.826667pt;}
.y21{bottom:234.106667pt;}
.y49{bottom:235.546667pt;}
.y3b{bottom:244.346667pt;}
.y68{bottom:247.866667pt;}
.y20{bottom:256.986667pt;}
.y48{bottom:259.546667pt;}
.y3a{bottom:268.346667pt;}
.y67{bottom:270.906667pt;}
.y9b{bottom:280.026667pt;}
.y1f{bottom:280.986667pt;}
.y47{bottom:283.706667pt;}
.y39{bottom:292.666667pt;}
.y66{bottom:293.786667pt;}
.y1e{bottom:302.266667pt;}
.y9a{bottom:303.066667pt;}
.y46{bottom:306.746667pt;}
.y38{bottom:315.706667pt;}
.y65{bottom:316.826667pt;}
.y1d{bottom:321.466667pt;}
.y99{bottom:326.146667pt;}
.y45{bottom:327.106667pt;}
.y37{bottom:338.626667pt;}
.y64{bottom:339.906667pt;}
.y1c{bottom:344.546667pt;}
.y98{bottom:349.026667pt;}
.y36{bottom:358.786667pt;}
.y63{bottom:362.946667pt;}
.y8d{bottom:363.906667pt;}
.y1b{bottom:367.426667pt;}
.y97{bottom:372.066667pt;}
.y8c{bottom:383.906667pt;}
.y62{bottom:385.826667pt;}
.y1a{bottom:390.466667pt;}
.y96{bottom:395.106667pt;}
.y8b{bottom:401.986667pt;}
.y61{bottom:408.866667pt;}
.y19{bottom:413.506667pt;}
.y95{bottom:417.986667pt;}
.y8a{bottom:425.026667pt;}
.y60{bottom:431.906667pt;}
.y18{bottom:436.386667pt;}
.y94{bottom:441.026667pt;}
.y89{bottom:447.906667pt;}
.y5f{bottom:454.786667pt;}
.y17{bottom:459.426667pt;}
.y93{bottom:464.066667pt;}
.y88{bottom:470.946667pt;}
.y5e{bottom:477.826667pt;}
.y16{bottom:482.466667pt;}
.y92{bottom:487.106667pt;}
.y87{bottom:493.986667pt;}
.y5d{bottom:500.866667pt;}
.y15{bottom:505.506667pt;}
.y91{bottom:509.986667pt;}
.y70{bottom:512.386667pt;}
.y86{bottom:517.026667pt;}
.y5c{bottom:523.906667pt;}
.y14{bottom:528.386667pt;}
.y90{bottom:533.026667pt;}
.y6f{bottom:535.426667pt;}
.y85{bottom:539.906667pt;}
.y5b{bottom:546.786667pt;}
.y13{bottom:551.426667pt;}
.y8f{bottom:556.093333pt;}
.y44{bottom:558.333333pt;}
.y84{bottom:563.933333pt;}
.y5a{bottom:569.853333pt;}
.y12{bottom:574.493333pt;}
.y8e{bottom:579.133333pt;}
.y43{bottom:581.373333pt;}
.y83{bottom:584.093333pt;}
.y59{bottom:592.893333pt;}
.y11{bottom:597.533333pt;}
.y82{bottom:602.013333pt;}
.y42{bottom:604.413333pt;}
.y58{bottom:615.933333pt;}
.y10{bottom:620.413333pt;}
.y81{bottom:625.053333pt;}
.y35{bottom:627.453333pt;}
.y57{bottom:638.813333pt;}
.yf{bottom:643.453333pt;}
.y80{bottom:648.093333pt;}
.y34{bottom:650.333333pt;}
.y56{bottom:661.853333pt;}
.ye{bottom:666.493333pt;}
.y7f{bottom:671.133333pt;}
.y33{bottom:673.373333pt;}
.y55{bottom:684.893333pt;}
.yd{bottom:690.493333pt;}
.y7e{bottom:694.013333pt;}
.y32{bottom:696.413333pt;}
.y54{bottom:707.933333pt;}
.yc{bottom:715.773333pt;}
.y7d{bottom:717.053333pt;}
.y31{bottom:719.293333pt;}
.y53{bottom:730.813333pt;}
.y7c{bottom:740.093333pt;}
.yb{bottom:741.053333pt;}
.y30{bottom:742.333333pt;}
.y52{bottom:753.853333pt;}
.y7b{bottom:763.133333pt;}
.y2f{bottom:765.373333pt;}
.ya{bottom:766.333333pt;}
.y51{bottom:776.893333pt;}
.y7a{bottom:786.053333pt;}
.y2e{bottom:788.453333pt;}
.y9{bottom:797.733333pt;}
.y50{bottom:800.933333pt;}
.y79{bottom:809.093333pt;}
.y2d{bottom:811.333333pt;}
.y4f{bottom:818.853333pt;}
.y8{bottom:820.293333pt;}
.y78{bottom:832.133333pt;}
.y2c{bottom:834.373333pt;}
.y77{bottom:855.173333pt;}
.y7{bottom:856.453333pt;}
.y2b{bottom:857.413333pt;}
.y76{bottom:878.053333pt;}
.y2a{bottom:880.453333pt;}
.y6{bottom:897.893333pt;}
.y75{bottom:901.093333pt;}
.y29{bottom:903.333333pt;}
.y74{bottom:924.133333pt;}
.y28{bottom:926.373333pt;}
.y5{bottom:939.333333pt;}
.y73{bottom:948.133333pt;}
.y27{bottom:949.413333pt;}
.y1{bottom:980.453333pt;}
.hf{height:14.901562pt;}
.h10{height:22.343750pt;}
.h11{height:22.578125pt;}
.hc{height:26.190625pt;}
.h7{height:28.293125pt;}
.hd{height:37.090625pt;}
.he{height:37.479688pt;}
.hb{height:40.488438pt;}
.h9{height:41.112500pt;}
.ha{height:41.543750pt;}
.h2{height:44.687500pt;}
.h8{height:44.878750pt;}
.h3{height:58.563750pt;}
.h4{height:60.288750pt;}
.h6{height:60.747187pt;}
.h5{height:67.734375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:1.919988pt;}
.xd{left:95.071988pt;}
.x3{left:96.031988pt;}
.x16{left:132.031988pt;}
.x9{left:154.266655pt;}
.x5{left:158.426655pt;}
.xf{left:159.386655pt;}
.x15{left:172.986655pt;}
.x6{left:184.346655pt;}
.xa{left:209.786655pt;}
.x12{left:223.226655pt;}
.x14{left:237.026655pt;}
.x8{left:239.906655pt;}
.xb{left:242.466655pt;}
.x13{left:253.346655pt;}
.x10{left:263.746655pt;}
.x7{left:343.426655pt;}
.xc{left:408.573322pt;}
.x2{left:624.773322pt;}
.xe{left:630.853322pt;}
.x11{left:639.973322pt;}
.x1{left:698.053322pt;}
}




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