
    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_fe871183d5a67a8b0a86b416.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_6d200d1d5ab7131e4b9cbc28.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1f678d2e7f2a104a7cdba3e6.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_c8ae736818e7cf8266222b72.woff2')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_c503b721b86b34098709ec9f.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_a55379f582e19f669b120c0b.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_aa80a97dae6ab38f34fae42a.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_cf5b54b838ee9f69dcdff9c4.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;}
.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(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;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:4.140000px;}
.lse{letter-spacing:7.020000px;}
.ls6{letter-spacing:8.460000px;}
.ls2{letter-spacing:14.940000px;}
.ls7{letter-spacing:16.380000px;}
.lsd{letter-spacing:17.100000px;}
.lsc{letter-spacing:23.580000px;}
.lsa{letter-spacing:24.300000px;}
.lsb{letter-spacing:30.780000px;}
.ls4{letter-spacing:32.220000px;}
.ls5{letter-spacing:35.220000px;}
.ls9{letter-spacing:41.381280px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.ws3{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:0.000000px;}
._3b{margin-left:-6.776640px;}
._3a{margin-left:-5.522400px;}
._16{margin-left:-4.464720px;}
._37{margin-left:-3.032640px;}
._1{margin-left:-1.263600px;}
._0{width:1.244880px;}
._d{width:3.285360px;}
._e{width:4.296240px;}
._a{width:5.812560px;}
._b{width:7.076160px;}
._44{width:8.087040px;}
._c{width:9.308160px;}
._5{width:10.782720px;}
._6{width:11.793600px;}
._1b{width:13.141440px;}
._34{width:14.573520px;}
._3c{width:16.595280px;}
._4e{width:17.606160px;}
._32{width:18.617040px;}
._33{width:19.796400px;}
._f{width:22.323600px;}
._40{width:23.418720px;}
._41{width:24.616800px;}
._45{width:25.740000px;}
._43{width:27.378000px;}
._2e{width:28.473120px;}
._4{width:29.989440px;}
._4f{width:31.337280px;}
._39{width:32.348160px;}
._38{width:33.359040px;}
._2{width:35.043840px;}
._1a{width:36.475920px;}
._19{width:38.244960px;}
._35{width:39.255840px;}
._42{width:40.350960px;}
._3f{width:42.456960px;}
._2a{width:44.226000px;}
._4c{width:45.405360px;}
._2c{width:46.753200px;}
._11{width:48.101040px;}
._50{width:49.111920px;}
._51{width:50.141520px;}
._52{width:53.155440px;}
._48{width:55.766880px;}
._9{width:56.777760px;}
._8{width:58.061280px;}
._1c{width:60.400080px;}
._4d{width:63.348480px;}
._20{width:64.359360px;}
._4b{width:66.465360px;}
._24{width:68.318640px;}
._29{width:70.424640px;}
._31{width:71.604000px;}
._13{width:73.457280px;}
._23{width:75.057840px;}
._10{width:81.123120px;}
._25{width:82.236960px;}
._47{width:84.240000px;}
._46{width:85.503600px;}
._2d{width:89.968320px;}
._18{width:91.905840px;}
._26{width:93.028080px;}
._17{width:101.930400px;}
._36{width:103.446720px;}
._3{width:104.541840px;}
._21{width:106.732080px;}
._22{width:107.742960px;}
._2b{width:111.533760px;}
._49{width:120.294720px;}
._4a{width:121.310400px;}
._1f{width:132.846480px;}
._1e{width:133.857360px;}
._7{width:141.186240px;}
._14{width:148.093920px;}
._1d{width:163.341360px;}
._2f{width:165.110400px;}
._28{width:166.626720px;}
._27{width:167.721840px;}
._15{width:186.086160px;}
._3e{width:232.502400px;}
._12{width:241.010640px;}
._30{width:250.950960px;}
._3d{width:255.584160px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y25{bottom:8.100000px;}
.ye{bottom:8.280000px;}
.y4d{bottom:16.380000px;}
.y3b{bottom:35.820000px;}
.y23{bottom:36.000000px;}
.y4c{bottom:44.130000px;}
.y2{bottom:52.560000px;}
.y1{bottom:57.600000px;}
.y2a{bottom:63.714000px;}
.y3a{bottom:63.720000px;}
.y22{bottom:63.765000px;}
.y29{bottom:91.434000px;}
.y39{bottom:91.440000px;}
.y21{bottom:91.485000px;}
.y26{bottom:100.836000px;}
.y3d{bottom:109.476000px;}
.y71{bottom:110.916000px;}
.y28{bottom:119.154000px;}
.y38{bottom:119.160000px;}
.y4a{bottom:119.334000px;}
.y20{bottom:119.385000px;}
.y95{bottom:119.916000px;}
.y70{bottom:138.636000px;}
.y27{bottom:147.054000px;}
.y37{bottom:147.060000px;}
.y1f{bottom:147.105000px;}
.y94{bottom:147.636000px;}
.y6f{bottom:166.350000px;}
.y49{bottom:174.774000px;}
.y36{bottom:174.780000px;}
.y1e{bottom:174.825000px;}
.y93{bottom:175.530000px;}
.y6e{bottom:194.250000px;}
.y48{bottom:202.494000px;}
.y35{bottom:202.500000px;}
.y1d{bottom:202.725000px;}
.y92{bottom:203.250000px;}
.y6d{bottom:221.970000px;}
.y34{bottom:230.220000px;}
.y47{bottom:230.439000px;}
.y1c{bottom:230.445000px;}
.y91{bottom:230.970000px;}
.y6c{bottom:249.690000px;}
.y46{bottom:258.159000px;}
.y1b{bottom:258.165000px;}
.y90{bottom:258.690000px;}
.y24{bottom:268.230000px;}
.y6b{bottom:277.590000px;}
.y45{bottom:285.879000px;}
.y1a{bottom:285.885000px;}
.y8f{bottom:286.590000px;}
.yf{bottom:296.670000px;}
.y6a{bottom:305.310000px;}
.y33{bottom:313.605000px;}
.y44{bottom:313.779000px;}
.y19{bottom:313.815000px;}
.y8e{bottom:314.310000px;}
.y69{bottom:333.030000px;}
.y32{bottom:341.325000px;}
.y43{bottom:341.499000px;}
.y18{bottom:341.535000px;}
.y8d{bottom:342.075000px;}
.y68{bottom:360.795000px;}
.y42{bottom:369.219000px;}
.y31{bottom:369.225000px;}
.y17{bottom:369.255000px;}
.y8c{bottom:369.975000px;}
.y67{bottom:388.695000px;}
.y41{bottom:396.939000px;}
.y30{bottom:396.945000px;}
.y16{bottom:396.975000px;}
.y8b{bottom:397.695000px;}
.y66{bottom:416.415000px;}
.y2f{bottom:424.665000px;}
.y40{bottom:424.839000px;}
.y15{bottom:424.875000px;}
.y8a{bottom:425.415000px;}
.y65{bottom:444.135000px;}
.y3f{bottom:452.559000px;}
.y2e{bottom:452.565000px;}
.y14{bottom:452.595000px;}
.y89{bottom:453.135000px;}
.y64{bottom:471.855000px;}
.y3e{bottom:480.279000px;}
.y2d{bottom:480.285000px;}
.y13{bottom:480.315000px;}
.y88{bottom:481.035000px;}
.y63{bottom:499.755000px;}
.y2c{bottom:508.035000px;}
.y12{bottom:508.215000px;}
.y87{bottom:508.755000px;}
.y62{bottom:527.475000px;}
.y11{bottom:535.935000px;}
.y86{bottom:536.475000px;}
.y61{bottom:555.195000px;}
.y10{bottom:563.655000px;}
.y85{bottom:564.195000px;}
.y60{bottom:583.095000px;}
.y84{bottom:592.095000px;}
.y3c{bottom:610.125000px;}
.y5f{bottom:610.845000px;}
.y83{bottom:619.845000px;}
.y5e{bottom:638.565000px;}
.y2b{bottom:638.745000px;}
.y82{bottom:647.565000px;}
.y5d{bottom:666.285000px;}
.y81{bottom:675.465000px;}
.y5c{bottom:694.185000px;}
.y80{bottom:703.185000px;}
.y5b{bottom:721.905000px;}
.y7f{bottom:730.905000px;}
.y5a{bottom:749.625000px;}
.y7e{bottom:758.625000px;}
.y59{bottom:777.525000px;}
.y7d{bottom:786.525000px;}
.y58{bottom:805.245000px;}
.y7c{bottom:814.245000px;}
.y57{bottom:832.965000px;}
.y7b{bottom:841.965000px;}
.y56{bottom:860.685000px;}
.y7a{bottom:869.865000px;}
.yd{bottom:880.710000px;}
.y55{bottom:888.630000px;}
.y79{bottom:897.630000px;}
.y54{bottom:916.350000px;}
.yc{bottom:917.430000px;}
.y78{bottom:925.350000px;}
.y53{bottom:944.070000px;}
.yb{bottom:945.150000px;}
.y77{bottom:953.070000px;}
.y52{bottom:971.790000px;}
.ya{bottom:973.050000px;}
.y76{bottom:980.970000px;}
.y51{bottom:999.690000px;}
.y9{bottom:1000.770000px;}
.y75{bottom:1008.690000px;}
.y50{bottom:1027.410000px;}
.y8{bottom:1028.490000px;}
.y74{bottom:1036.410000px;}
.y4f{bottom:1055.130000px;}
.y7{bottom:1057.470000px;}
.y73{bottom:1064.130000px;}
.y4e{bottom:1083.030000px;}
.y6{bottom:1089.330000px;}
.y72{bottom:1092.030000px;}
.y4b{bottom:1102.650000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1147.500000px;}
.h3{height:22.536000px;}
.ha{height:27.720000px;}
.h8{height:27.900000px;}
.h5{height:58.984453px;}
.h2{height:59.066719px;}
.h4{height:59.436914px;}
.hf{height:61.329023px;}
.h7{height:61.575820px;}
.he{height:63.756000px;}
.h6{height:67.565039px;}
.hb{height:166.680000px;}
.hd{height:499.935000px;}
.hc{height:527.655000px;}
.h9{height:583.305000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:58.896000px;}
.w5{width:244.650000px;}
.w4{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.100000px;}
.x3{left:18.900000px;}
.x1{left:95.795987px;}
.x5{left:102.455987px;}
.xe{left:127.835987px;}
.xd{left:148.895987px;}
.x8{left:200.909987px;}
.x6{left:214.769987px;}
.xa{left:270.569987px;}
.x2{left:421.815000px;}
.x4{left:446.474987px;}
.xc{left:574.305000px;}
.x7{left:617.144987px;}
.x9{left:636.404987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:3.680000pt;}
.lse{letter-spacing:6.240000pt;}
.ls6{letter-spacing:7.520000pt;}
.ls2{letter-spacing:13.280000pt;}
.ls7{letter-spacing:14.560000pt;}
.lsd{letter-spacing:15.200000pt;}
.lsc{letter-spacing:20.960000pt;}
.lsa{letter-spacing:21.600000pt;}
.lsb{letter-spacing:27.360000pt;}
.ls4{letter-spacing:28.640000pt;}
.ls5{letter-spacing:31.306667pt;}
.ls9{letter-spacing:36.783360pt;}
.ws0{word-spacing:-19.040000pt;}
.ws3{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:0.000000pt;}
._3b{margin-left:-6.023680pt;}
._3a{margin-left:-4.908800pt;}
._16{margin-left:-3.968640pt;}
._37{margin-left:-2.695680pt;}
._1{margin-left:-1.123200pt;}
._0{width:1.106560pt;}
._d{width:2.920320pt;}
._e{width:3.818880pt;}
._a{width:5.166720pt;}
._b{width:6.289920pt;}
._44{width:7.188480pt;}
._c{width:8.273920pt;}
._5{width:9.584640pt;}
._6{width:10.483200pt;}
._1b{width:11.681280pt;}
._34{width:12.954240pt;}
._3c{width:14.751360pt;}
._4e{width:15.649920pt;}
._32{width:16.548480pt;}
._33{width:17.596800pt;}
._f{width:19.843200pt;}
._40{width:20.816640pt;}
._41{width:21.881600pt;}
._45{width:22.880000pt;}
._43{width:24.336000pt;}
._2e{width:25.309440pt;}
._4{width:26.657280pt;}
._4f{width:27.855360pt;}
._39{width:28.753920pt;}
._38{width:29.652480pt;}
._2{width:31.150080pt;}
._1a{width:32.423040pt;}
._19{width:33.995520pt;}
._35{width:34.894080pt;}
._42{width:35.867520pt;}
._3f{width:37.739520pt;}
._2a{width:39.312000pt;}
._4c{width:40.360320pt;}
._2c{width:41.558400pt;}
._11{width:42.756480pt;}
._50{width:43.655040pt;}
._51{width:44.570240pt;}
._52{width:47.249280pt;}
._48{width:49.570560pt;}
._9{width:50.469120pt;}
._8{width:51.610027pt;}
._1c{width:53.688960pt;}
._4d{width:56.309760pt;}
._20{width:57.208320pt;}
._4b{width:59.080320pt;}
._24{width:60.727680pt;}
._29{width:62.599680pt;}
._31{width:63.648000pt;}
._13{width:65.295360pt;}
._23{width:66.718080pt;}
._10{width:72.109440pt;}
._25{width:73.099520pt;}
._47{width:74.880000pt;}
._46{width:76.003200pt;}
._2d{width:79.971840pt;}
._18{width:81.694080pt;}
._26{width:82.691627pt;}
._17{width:90.604800pt;}
._36{width:91.952640pt;}
._3{width:92.926080pt;}
._21{width:94.872960pt;}
._22{width:95.771520pt;}
._2b{width:99.141120pt;}
._49{width:106.928640pt;}
._4a{width:107.831467pt;}
._1f{width:118.085760pt;}
._1e{width:118.984320pt;}
._7{width:125.498880pt;}
._14{width:131.639040pt;}
._1d{width:145.192320pt;}
._2f{width:146.764800pt;}
._28{width:148.112640pt;}
._27{width:149.086080pt;}
._15{width:165.409920pt;}
._3e{width:206.668800pt;}
._12{width:214.231680pt;}
._30{width:223.067520pt;}
._3d{width:227.185920pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y25{bottom:7.200000pt;}
.ye{bottom:7.360000pt;}
.y4d{bottom:14.560000pt;}
.y3b{bottom:31.840000pt;}
.y23{bottom:32.000000pt;}
.y4c{bottom:39.226667pt;}
.y2{bottom:46.720000pt;}
.y1{bottom:51.200000pt;}
.y2a{bottom:56.634667pt;}
.y3a{bottom:56.640000pt;}
.y22{bottom:56.680000pt;}
.y29{bottom:81.274667pt;}
.y39{bottom:81.280000pt;}
.y21{bottom:81.320000pt;}
.y26{bottom:89.632000pt;}
.y3d{bottom:97.312000pt;}
.y71{bottom:98.592000pt;}
.y28{bottom:105.914667pt;}
.y38{bottom:105.920000pt;}
.y4a{bottom:106.074667pt;}
.y20{bottom:106.120000pt;}
.y95{bottom:106.592000pt;}
.y70{bottom:123.232000pt;}
.y27{bottom:130.714667pt;}
.y37{bottom:130.720000pt;}
.y1f{bottom:130.760000pt;}
.y94{bottom:131.232000pt;}
.y6f{bottom:147.866667pt;}
.y49{bottom:155.354667pt;}
.y36{bottom:155.360000pt;}
.y1e{bottom:155.400000pt;}
.y93{bottom:156.026667pt;}
.y6e{bottom:172.666667pt;}
.y48{bottom:179.994667pt;}
.y35{bottom:180.000000pt;}
.y1d{bottom:180.200000pt;}
.y92{bottom:180.666667pt;}
.y6d{bottom:197.306667pt;}
.y34{bottom:204.640000pt;}
.y47{bottom:204.834667pt;}
.y1c{bottom:204.840000pt;}
.y91{bottom:205.306667pt;}
.y6c{bottom:221.946667pt;}
.y46{bottom:229.474667pt;}
.y1b{bottom:229.480000pt;}
.y90{bottom:229.946667pt;}
.y24{bottom:238.426667pt;}
.y6b{bottom:246.746667pt;}
.y45{bottom:254.114667pt;}
.y1a{bottom:254.120000pt;}
.y8f{bottom:254.746667pt;}
.yf{bottom:263.706667pt;}
.y6a{bottom:271.386667pt;}
.y33{bottom:278.760000pt;}
.y44{bottom:278.914667pt;}
.y19{bottom:278.946667pt;}
.y8e{bottom:279.386667pt;}
.y69{bottom:296.026667pt;}
.y32{bottom:303.400000pt;}
.y43{bottom:303.554667pt;}
.y18{bottom:303.586667pt;}
.y8d{bottom:304.066667pt;}
.y68{bottom:320.706667pt;}
.y42{bottom:328.194667pt;}
.y31{bottom:328.200000pt;}
.y17{bottom:328.226667pt;}
.y8c{bottom:328.866667pt;}
.y67{bottom:345.506667pt;}
.y41{bottom:352.834667pt;}
.y30{bottom:352.840000pt;}
.y16{bottom:352.866667pt;}
.y8b{bottom:353.506667pt;}
.y66{bottom:370.146667pt;}
.y2f{bottom:377.480000pt;}
.y40{bottom:377.634667pt;}
.y15{bottom:377.666667pt;}
.y8a{bottom:378.146667pt;}
.y65{bottom:394.786667pt;}
.y3f{bottom:402.274667pt;}
.y2e{bottom:402.280000pt;}
.y14{bottom:402.306667pt;}
.y89{bottom:402.786667pt;}
.y64{bottom:419.426667pt;}
.y3e{bottom:426.914667pt;}
.y2d{bottom:426.920000pt;}
.y13{bottom:426.946667pt;}
.y88{bottom:427.586667pt;}
.y63{bottom:444.226667pt;}
.y2c{bottom:451.586667pt;}
.y12{bottom:451.746667pt;}
.y87{bottom:452.226667pt;}
.y62{bottom:468.866667pt;}
.y11{bottom:476.386667pt;}
.y86{bottom:476.866667pt;}
.y61{bottom:493.506667pt;}
.y10{bottom:501.026667pt;}
.y85{bottom:501.506667pt;}
.y60{bottom:518.306667pt;}
.y84{bottom:526.306667pt;}
.y3c{bottom:542.333333pt;}
.y5f{bottom:542.973333pt;}
.y83{bottom:550.973333pt;}
.y5e{bottom:567.613333pt;}
.y2b{bottom:567.773333pt;}
.y82{bottom:575.613333pt;}
.y5d{bottom:592.253333pt;}
.y81{bottom:600.413333pt;}
.y5c{bottom:617.053333pt;}
.y80{bottom:625.053333pt;}
.y5b{bottom:641.693333pt;}
.y7f{bottom:649.693333pt;}
.y5a{bottom:666.333333pt;}
.y7e{bottom:674.333333pt;}
.y59{bottom:691.133333pt;}
.y7d{bottom:699.133333pt;}
.y58{bottom:715.773333pt;}
.y7c{bottom:723.773333pt;}
.y57{bottom:740.413333pt;}
.y7b{bottom:748.413333pt;}
.y56{bottom:765.053333pt;}
.y7a{bottom:773.213333pt;}
.yd{bottom:782.853333pt;}
.y55{bottom:789.893333pt;}
.y79{bottom:797.893333pt;}
.y54{bottom:814.533333pt;}
.yc{bottom:815.493333pt;}
.y78{bottom:822.533333pt;}
.y53{bottom:839.173333pt;}
.yb{bottom:840.133333pt;}
.y77{bottom:847.173333pt;}
.y52{bottom:863.813333pt;}
.ya{bottom:864.933333pt;}
.y76{bottom:871.973333pt;}
.y51{bottom:888.613333pt;}
.y9{bottom:889.573333pt;}
.y75{bottom:896.613333pt;}
.y50{bottom:913.253333pt;}
.y8{bottom:914.213333pt;}
.y74{bottom:921.253333pt;}
.y4f{bottom:937.893333pt;}
.y7{bottom:939.973333pt;}
.y73{bottom:945.893333pt;}
.y4e{bottom:962.693333pt;}
.y6{bottom:968.293333pt;}
.y72{bottom:970.693333pt;}
.y4b{bottom:980.133333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1020.000000pt;}
.h3{height:20.032000pt;}
.ha{height:24.640000pt;}
.h8{height:24.800000pt;}
.h5{height:52.430625pt;}
.h2{height:52.503750pt;}
.h4{height:52.832812pt;}
.hf{height:54.514687pt;}
.h7{height:54.734062pt;}
.he{height:56.672000pt;}
.h6{height:60.057813pt;}
.hb{height:148.160000pt;}
.hd{height:444.386667pt;}
.hc{height:469.026667pt;}
.h9{height:518.493333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:52.352000pt;}
.w5{width:217.466667pt;}
.w4{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.200000pt;}
.x3{left:16.800000pt;}
.x1{left:85.151988pt;}
.x5{left:91.071988pt;}
.xe{left:113.631988pt;}
.xd{left:132.351988pt;}
.x8{left:178.586655pt;}
.x6{left:190.906655pt;}
.xa{left:240.506655pt;}
.x2{left:374.946667pt;}
.x4{left:396.866655pt;}
.xc{left:510.493333pt;}
.x7{left:548.573322pt;}
.x9{left:565.693322pt;}
}




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