
    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_d96132d9042fd5ae37e9ec8e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_52085668f161818fa4ed27d8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a86da7afd6ee7aa478f6b4e4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_077403f5aa1b9d649a51cd02.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf0d3f49b37b642ea4fddb2a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.908691;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_5e6290b40bfe76b383be2ac2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_96bc12ee8ded4e9cd44b5e34.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_072980a2a8ceb6d7867bceea.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a7c79f5f6a3c31236920277c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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;}
.ls14{letter-spacing:-0.552000px;}
.ls10{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.372000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.096000px;}
.lsc{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.660000px;}
.ls7{letter-spacing:7.740000px;}
.ls9{letter-spacing:7.800000px;}
.lsb{letter-spacing:12.600000px;}
.ls8{letter-spacing:15.060000px;}
.ls11{letter-spacing:16.170000px;}
.lsd{letter-spacing:16.200000px;}
.ls12{letter-spacing:21.048000px;}
.ls2{letter-spacing:24.660000px;}
.ls13{letter-spacing:24.720000px;}
.lsf{letter-spacing:37.800000px;}
.ls6{letter-spacing:43.200000px;}
.lse{letter-spacing:43.800000px;}
.ls1{letter-spacing:45.000000px;}
.ls5{letter-spacing:184.860000px;}
.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:-27.000000px;}
.ws2{word-spacing:-21.096000px;}
.ws1{word-spacing:-21.000000px;}
.ws6{word-spacing:-20.448000px;}
.ws5{word-spacing:-18.000000px;}
.ws3{word-spacing:-0.084000px;}
.ws4{word-spacing:0.000000px;}
._31{margin-left:-5.586000px;}
._a{margin-left:-4.200000px;}
._6{margin-left:-2.454000px;}
._0{margin-left:-1.080000px;}
._1{width:1.410000px;}
._2{width:2.994000px;}
._d{width:4.704000px;}
._2a{width:5.742000px;}
._13{width:6.960000px;}
._7{width:8.064000px;}
._2f{width:9.174000px;}
._3a{width:10.218000px;}
._24{width:11.736000px;}
._25{width:12.816000px;}
._e{width:14.016000px;}
._b{width:15.288000px;}
._c{width:16.632000px;}
._17{width:17.700000px;}
._29{width:18.756000px;}
._1f{width:19.788000px;}
._26{width:22.584000px;}
._12{width:23.730000px;}
._11{width:24.864000px;}
._5{width:26.046000px;}
._8{width:27.216000px;}
._9{width:28.224000px;}
._3{width:29.280000px;}
._35{width:30.312000px;}
._16{width:31.338000px;}
._36{width:32.442000px;}
._15{width:35.094000px;}
._14{width:36.792000px;}
._1c{width:38.394000px;}
._2e{width:39.504000px;}
._23{width:40.680000px;}
._22{width:42.096000px;}
._10{width:43.224000px;}
._f{width:44.724000px;}
._32{width:46.206000px;}
._33{width:47.544000px;}
._3b{width:49.476000px;}
._30{width:50.646000px;}
._21{width:51.792000px;}
._20{width:53.178000px;}
._28{width:54.186000px;}
._2b{width:56.196000px;}
._2c{width:57.258000px;}
._2d{width:58.560000px;}
._19{width:59.628000px;}
._18{width:61.152000px;}
._1a{width:62.244000px;}
._1b{width:64.314000px;}
._37{width:66.192000px;}
._39{width:70.092000px;}
._38{width:71.232000px;}
._1e{width:74.514000px;}
._34{width:77.826000px;}
._27{width:79.044000px;}
._4{width:84.240000px;}
._1d{width:124.158000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.485000px;}
.y9{bottom:6.037500px;}
.y2{bottom:6.900000px;}
.ya{bottom:7.500000px;}
.y3{bottom:8.700000px;}
.y8{bottom:9.037500px;}
.y77{bottom:14.100000px;}
.y50{bottom:14.392500px;}
.y46{bottom:14.400000px;}
.y74{bottom:14.430000px;}
.y4e{bottom:15.600000px;}
.y68{bottom:17.100000px;}
.y48{bottom:27.600000px;}
.y75{bottom:29.700000px;}
.y65{bottom:29.985000px;}
.y7{bottom:31.800000px;}
.y79{bottom:45.000000px;}
.y66{bottom:45.285000px;}
.y4f{bottom:45.292500px;}
.y76{bottom:45.300000px;}
.y45{bottom:45.315000px;}
.y72{bottom:45.600000px;}
.y4d{bottom:46.800000px;}
.y47{bottom:58.800000px;}
.y44{bottom:76.500000px;}
.y4c{bottom:77.700000px;}
.y42{bottom:90.630000px;}
.y2d{bottom:105.337500px;}
.y7d{bottom:108.637500px;}
.y8b{bottom:114.337500px;}
.y63{bottom:114.937500px;}
.y41{bottom:121.545000px;}
.y51{bottom:123.937500px;}
.y83{bottom:129.337500px;}
.y8a{bottom:137.737500px;}
.y4a{bottom:140.737500px;}
.y2c{bottom:141.637500px;}
.y49{bottom:144.337500px;}
.y7c{bottom:144.937500px;}
.y62{bottom:151.230000px;}
.y40{bottom:152.730000px;}
.y82{bottom:157.245000px;}
.y89{bottom:165.630000px;}
.y2b{bottom:177.630000px;}
.y7b{bottom:180.930000px;}
.y81{bottom:184.830000px;}
.y61{bottom:187.245000px;}
.y88{bottom:193.245000px;}
.y4b{bottom:207.375000px;}
.y80{bottom:212.775000px;}
.y7a{bottom:217.275000px;}
.y87{bottom:221.175000px;}
.y60{bottom:223.575000px;}
.y2a{bottom:225.975000px;}
.y78{bottom:237.975000px;}
.y7f{bottom:240.375000px;}
.y86{bottom:249.075000px;}
.y5f{bottom:259.875000px;}
.y29{bottom:262.275000px;}
.y7e{bottom:268.275000px;}
.y85{bottom:276.675000px;}
.y5e{bottom:295.875000px;}
.y28{bottom:298.575000px;}
.y71{bottom:300.675000px;}
.y3f{bottom:302.775000px;}
.y84{bottom:304.575000px;}
.y5d{bottom:332.175000px;}
.y27{bottom:334.575000px;}
.y73{bottom:363.375000px;}
.y5c{bottom:368.505000px;}
.y26{bottom:370.905000px;}
.y43{bottom:379.005000px;}
.y5b{bottom:404.820000px;}
.y25{bottom:407.205000px;}
.y70{bottom:411.705000px;}
.y24{bottom:434.820000px;}
.y5a{bottom:440.820000px;}
.y6f{bottom:448.005000px;}
.y23{bottom:462.705000px;}
.y59{bottom:477.120000px;}
.y6e{bottom:484.320000px;}
.y3e{bottom:489.405000px;}
.y22{bottom:490.320000px;}
.y58{bottom:513.405000px;}
.y21{bottom:518.220000px;}
.y6d{bottom:520.320000px;}
.y3d{bottom:525.705000px;}
.y20{bottom:546.150000px;}
.y57{bottom:549.750000px;}
.y6c{bottom:556.650000px;}
.y3c{bottom:561.750000px;}
.y1f{bottom:573.750000px;}
.y56{bottom:585.750000px;}
.y6b{bottom:592.950000px;}
.y1e{bottom:601.650000px;}
.y3b{bottom:610.050000px;}
.y55{bottom:622.050000px;}
.y1d{bottom:629.250000px;}
.y3a{bottom:646.350000px;}
.y1c{bottom:657.150000px;}
.y54{bottom:658.350000px;}
.y6a{bottom:665.250000px;}
.y39{bottom:682.650000px;}
.y1b{bottom:684.750000px;}
.y53{bottom:694.680000px;}
.y69{bottom:701.580000px;}
.y1a{bottom:712.695000px;}
.y38{bottom:718.695000px;}
.y67{bottom:722.280000px;}
.y52{bottom:730.695000px;}
.y19{bottom:740.595000px;}
.y64{bottom:760.095000px;}
.y37{bottom:766.980000px;}
.y18{bottom:768.195000px;}
.y17{bottom:796.080000px;}
.y36{bottom:803.295000px;}
.y16{bottom:823.695000px;}
.y35{bottom:839.580000px;}
.y15{bottom:851.580000px;}
.y34{bottom:875.625000px;}
.y14{bottom:879.225000px;}
.y13{bottom:907.125000px;}
.y33{bottom:911.925000px;}
.y12{bottom:935.025000px;}
.y32{bottom:948.225000px;}
.y11{bottom:962.625000px;}
.y31{bottom:984.525000px;}
.y10{bottom:990.525000px;}
.yf{bottom:1018.125000px;}
.y30{bottom:1020.525000px;}
.ye{bottom:1046.070000px;}
.y2f{bottom:1056.870000px;}
.yd{bottom:1073.655000px;}
.y2e{bottom:1093.155000px;}
.yc{bottom:1101.570000px;}
.yb{bottom:1129.455000px;}
.y6{bottom:1152.870000px;}
.y4{bottom:1168.170000px;}
.y1{bottom:1193.400000px;}
.h5{height:14.400000px;}
.h2{height:26.700000px;}
.h7{height:31.237500px;}
.h1a{height:37.200000px;}
.h12{height:50.484375px;}
.h4{height:53.709961px;}
.h10{height:58.898438px;}
.he{height:61.400391px;}
.h1d{height:61.800000px;}
.h18{height:62.085000px;}
.h1c{height:62.100000px;}
.h17{height:62.137500px;}
.h19{height:62.261719px;}
.ha{height:65.645508px;}
.h6{height:66.515625px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hd{height:72.638672px;}
.h14{height:75.637500px;}
.hf{height:82.400391px;}
.hc{height:82.441406px;}
.hb{height:84.656250px;}
.h1e{height:87.445312px;}
.h13{height:93.300000px;}
.h1b{height:93.937500px;}
.h16{height:94.500000px;}
.h9{height:108.843750px;}
.h15{height:157.545000px;}
.h11{height:169.545000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:44.437500px;}
.w6{width:63.637500px;}
.w11{width:86.737500px;}
.wb{width:112.237500px;}
.wc{width:117.037500px;}
.wd{width:120.637500px;}
.w12{width:126.937500px;}
.we{width:147.037500px;}
.w13{width:162.675000px;}
.wf{width:165.930000px;}
.w8{width:169.275000px;}
.w14{width:177.045000px;}
.w7{width:180.030000px;}
.wa{width:221.475000px;}
.w10{width:340.320000px;}
.w9{width:390.120000px;}
.w5{width:755.070000px;}
.w2{width:839.970000px;}
.w4{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:4.500000px;}
.x5{left:8.400000px;}
.x9{left:18.285000px;}
.x4{left:35.730000px;}
.x7{left:42.600000px;}
.x21{left:58.200000px;}
.x18{left:60.900000px;}
.x2{left:69.037500px;}
.x13{left:75.937500px;}
.x6{left:84.937487px;}
.xe{left:101.437487px;}
.x22{left:111.937487px;}
.xf{left:127.537487px;}
.xa{left:137.737487px;}
.x11{left:183.074987px;}
.x1d{left:252.075000px;}
.xb{left:253.874987px;}
.x14{left:256.875000px;}
.x19{left:308.220000px;}
.xd{left:383.819987px;}
.x12{left:388.319987px;}
.x20{left:415.350000px;}
.x1a{left:421.050000px;}
.x15{left:427.050000px;}
.xc{left:446.249987px;}
.x1b{left:538.695000px;}
.x1e{left:592.995000px;}
.x1c{left:660.225000px;}
.x1f{left:680.625000px;}
.x10{left:715.124987px;}
.x16{left:720.224987px;}
.x8{left:797.670000px;}
.x17{left:807.869987px;}
.x3{left:844.470000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.490667pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.330667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.085333pt;}
.lsc{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.586667pt;}
.ls7{letter-spacing:6.880000pt;}
.ls9{letter-spacing:6.933333pt;}
.lsb{letter-spacing:11.200000pt;}
.ls8{letter-spacing:13.386667pt;}
.ls11{letter-spacing:14.373333pt;}
.lsd{letter-spacing:14.400000pt;}
.ls12{letter-spacing:18.709333pt;}
.ls2{letter-spacing:21.920000pt;}
.ls13{letter-spacing:21.973333pt;}
.lsf{letter-spacing:33.600000pt;}
.ls6{letter-spacing:38.400000pt;}
.lse{letter-spacing:38.933333pt;}
.ls1{letter-spacing:40.000000pt;}
.ls5{letter-spacing:164.320000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws2{word-spacing:-18.752000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws6{word-spacing:-18.176000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws3{word-spacing:-0.074667pt;}
.ws4{word-spacing:0.000000pt;}
._31{margin-left:-4.965333pt;}
._a{margin-left:-3.733333pt;}
._6{margin-left:-2.181333pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.253333pt;}
._2{width:2.661333pt;}
._d{width:4.181333pt;}
._2a{width:5.104000pt;}
._13{width:6.186667pt;}
._7{width:7.168000pt;}
._2f{width:8.154667pt;}
._3a{width:9.082667pt;}
._24{width:10.432000pt;}
._25{width:11.392000pt;}
._e{width:12.458667pt;}
._b{width:13.589333pt;}
._c{width:14.784000pt;}
._17{width:15.733333pt;}
._29{width:16.672000pt;}
._1f{width:17.589333pt;}
._26{width:20.074667pt;}
._12{width:21.093333pt;}
._11{width:22.101333pt;}
._5{width:23.152000pt;}
._8{width:24.192000pt;}
._9{width:25.088000pt;}
._3{width:26.026667pt;}
._35{width:26.944000pt;}
._16{width:27.856000pt;}
._36{width:28.837333pt;}
._15{width:31.194667pt;}
._14{width:32.704000pt;}
._1c{width:34.128000pt;}
._2e{width:35.114667pt;}
._23{width:36.160000pt;}
._22{width:37.418667pt;}
._10{width:38.421333pt;}
._f{width:39.754667pt;}
._32{width:41.072000pt;}
._33{width:42.261333pt;}
._3b{width:43.978667pt;}
._30{width:45.018667pt;}
._21{width:46.037333pt;}
._20{width:47.269333pt;}
._28{width:48.165333pt;}
._2b{width:49.952000pt;}
._2c{width:50.896000pt;}
._2d{width:52.053333pt;}
._19{width:53.002667pt;}
._18{width:54.357333pt;}
._1a{width:55.328000pt;}
._1b{width:57.168000pt;}
._37{width:58.837333pt;}
._39{width:62.304000pt;}
._38{width:63.317333pt;}
._1e{width:66.234667pt;}
._34{width:69.178667pt;}
._27{width:70.261333pt;}
._4{width:74.880000pt;}
._1d{width:110.362667pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.320000pt;}
.y9{bottom:5.366667pt;}
.y2{bottom:6.133333pt;}
.ya{bottom:6.666667pt;}
.y3{bottom:7.733333pt;}
.y8{bottom:8.033333pt;}
.y77{bottom:12.533333pt;}
.y50{bottom:12.793333pt;}
.y46{bottom:12.800000pt;}
.y74{bottom:12.826667pt;}
.y4e{bottom:13.866667pt;}
.y68{bottom:15.200000pt;}
.y48{bottom:24.533333pt;}
.y75{bottom:26.400000pt;}
.y65{bottom:26.653333pt;}
.y7{bottom:28.266667pt;}
.y79{bottom:40.000000pt;}
.y66{bottom:40.253333pt;}
.y4f{bottom:40.260000pt;}
.y76{bottom:40.266667pt;}
.y45{bottom:40.280000pt;}
.y72{bottom:40.533333pt;}
.y4d{bottom:41.600000pt;}
.y47{bottom:52.266667pt;}
.y44{bottom:68.000000pt;}
.y4c{bottom:69.066667pt;}
.y42{bottom:80.560000pt;}
.y2d{bottom:93.633333pt;}
.y7d{bottom:96.566667pt;}
.y8b{bottom:101.633333pt;}
.y63{bottom:102.166667pt;}
.y41{bottom:108.040000pt;}
.y51{bottom:110.166667pt;}
.y83{bottom:114.966667pt;}
.y8a{bottom:122.433333pt;}
.y4a{bottom:125.100000pt;}
.y2c{bottom:125.900000pt;}
.y49{bottom:128.300000pt;}
.y7c{bottom:128.833333pt;}
.y62{bottom:134.426667pt;}
.y40{bottom:135.760000pt;}
.y82{bottom:139.773333pt;}
.y89{bottom:147.226667pt;}
.y2b{bottom:157.893333pt;}
.y7b{bottom:160.826667pt;}
.y81{bottom:164.293333pt;}
.y61{bottom:166.440000pt;}
.y88{bottom:171.773333pt;}
.y4b{bottom:184.333333pt;}
.y80{bottom:189.133333pt;}
.y7a{bottom:193.133333pt;}
.y87{bottom:196.600000pt;}
.y60{bottom:198.733333pt;}
.y2a{bottom:200.866667pt;}
.y78{bottom:211.533333pt;}
.y7f{bottom:213.666667pt;}
.y86{bottom:221.400000pt;}
.y5f{bottom:231.000000pt;}
.y29{bottom:233.133333pt;}
.y7e{bottom:238.466667pt;}
.y85{bottom:245.933333pt;}
.y5e{bottom:263.000000pt;}
.y28{bottom:265.400000pt;}
.y71{bottom:267.266667pt;}
.y3f{bottom:269.133333pt;}
.y84{bottom:270.733333pt;}
.y5d{bottom:295.266667pt;}
.y27{bottom:297.400000pt;}
.y73{bottom:323.000000pt;}
.y5c{bottom:327.560000pt;}
.y26{bottom:329.693333pt;}
.y43{bottom:336.893333pt;}
.y5b{bottom:359.840000pt;}
.y25{bottom:361.960000pt;}
.y70{bottom:365.960000pt;}
.y24{bottom:386.506667pt;}
.y5a{bottom:391.840000pt;}
.y6f{bottom:398.226667pt;}
.y23{bottom:411.293333pt;}
.y59{bottom:424.106667pt;}
.y6e{bottom:430.506667pt;}
.y3e{bottom:435.026667pt;}
.y22{bottom:435.840000pt;}
.y58{bottom:456.360000pt;}
.y21{bottom:460.640000pt;}
.y6d{bottom:462.506667pt;}
.y3d{bottom:467.293333pt;}
.y20{bottom:485.466667pt;}
.y57{bottom:488.666667pt;}
.y6c{bottom:494.800000pt;}
.y3c{bottom:499.333333pt;}
.y1f{bottom:510.000000pt;}
.y56{bottom:520.666667pt;}
.y6b{bottom:527.066667pt;}
.y1e{bottom:534.800000pt;}
.y3b{bottom:542.266667pt;}
.y55{bottom:552.933333pt;}
.y1d{bottom:559.333333pt;}
.y3a{bottom:574.533333pt;}
.y1c{bottom:584.133333pt;}
.y54{bottom:585.200000pt;}
.y6a{bottom:591.333333pt;}
.y39{bottom:606.800000pt;}
.y1b{bottom:608.666667pt;}
.y53{bottom:617.493333pt;}
.y69{bottom:623.626667pt;}
.y1a{bottom:633.506667pt;}
.y38{bottom:638.840000pt;}
.y67{bottom:642.026667pt;}
.y52{bottom:649.506667pt;}
.y19{bottom:658.306667pt;}
.y64{bottom:675.640000pt;}
.y37{bottom:681.760000pt;}
.y18{bottom:682.840000pt;}
.y17{bottom:707.626667pt;}
.y36{bottom:714.040000pt;}
.y16{bottom:732.173333pt;}
.y35{bottom:746.293333pt;}
.y15{bottom:756.960000pt;}
.y34{bottom:778.333333pt;}
.y14{bottom:781.533333pt;}
.y13{bottom:806.333333pt;}
.y33{bottom:810.600000pt;}
.y12{bottom:831.133333pt;}
.y32{bottom:842.866667pt;}
.y11{bottom:855.666667pt;}
.y31{bottom:875.133333pt;}
.y10{bottom:880.466667pt;}
.yf{bottom:905.000000pt;}
.y30{bottom:907.133333pt;}
.ye{bottom:929.840000pt;}
.y2f{bottom:939.440000pt;}
.yd{bottom:954.360000pt;}
.y2e{bottom:971.693333pt;}
.yc{bottom:979.173333pt;}
.yb{bottom:1003.960000pt;}
.y6{bottom:1024.773333pt;}
.y4{bottom:1038.373333pt;}
.y1{bottom:1060.800000pt;}
.h5{height:12.800000pt;}
.h2{height:23.733333pt;}
.h7{height:27.766667pt;}
.h1a{height:33.066667pt;}
.h12{height:44.875000pt;}
.h4{height:47.742188pt;}
.h10{height:52.354167pt;}
.he{height:54.578125pt;}
.h1d{height:54.933333pt;}
.h18{height:55.186667pt;}
.h1c{height:55.200000pt;}
.h17{height:55.233333pt;}
.h19{height:55.343750pt;}
.ha{height:58.351562pt;}
.h6{height:59.125000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hd{height:64.567708pt;}
.h14{height:67.233333pt;}
.hf{height:73.244792pt;}
.hc{height:73.281250pt;}
.hb{height:75.250000pt;}
.h1e{height:77.729167pt;}
.h13{height:82.933333pt;}
.h1b{height:83.500000pt;}
.h16{height:84.000000pt;}
.h9{height:96.750000pt;}
.h15{height:140.040000pt;}
.h11{height:150.706667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:39.500000pt;}
.w6{width:56.566667pt;}
.w11{width:77.100000pt;}
.wb{width:99.766667pt;}
.wc{width:104.033333pt;}
.wd{width:107.233333pt;}
.w12{width:112.833333pt;}
.we{width:130.700000pt;}
.w13{width:144.600000pt;}
.wf{width:147.493333pt;}
.w8{width:150.466667pt;}
.w14{width:157.373333pt;}
.w7{width:160.026667pt;}
.wa{width:196.866667pt;}
.w10{width:302.506667pt;}
.w9{width:346.773333pt;}
.w5{width:671.173333pt;}
.w2{width:746.640000pt;}
.w4{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:4.000000pt;}
.x5{left:7.466667pt;}
.x9{left:16.253333pt;}
.x4{left:31.760000pt;}
.x7{left:37.866667pt;}
.x21{left:51.733333pt;}
.x18{left:54.133333pt;}
.x2{left:61.366667pt;}
.x13{left:67.500000pt;}
.x6{left:75.499988pt;}
.xe{left:90.166655pt;}
.x22{left:99.499988pt;}
.xf{left:113.366655pt;}
.xa{left:122.433322pt;}
.x11{left:162.733322pt;}
.x1d{left:224.066667pt;}
.xb{left:225.666655pt;}
.x14{left:228.333333pt;}
.x19{left:273.973333pt;}
.xd{left:341.173322pt;}
.x12{left:345.173322pt;}
.x20{left:369.200000pt;}
.x1a{left:374.266667pt;}
.x15{left:379.600000pt;}
.xc{left:396.666655pt;}
.x1b{left:478.840000pt;}
.x1e{left:527.106667pt;}
.x1c{left:586.866667pt;}
.x1f{left:605.000000pt;}
.x10{left:635.666655pt;}
.x16{left:640.199988pt;}
.x8{left:709.040000pt;}
.x17{left:718.106655pt;}
.x3{left:750.640000pt;}
}




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