
    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_0e28bb3a513a8e2aa67058e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ce235a53bf3b1f1dbe0cf47e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_913e1ea5a1592c989c4b89f8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ca1ba8003e328b594597c621.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5fbbec23eb98c19f75d67349.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.432000px;}
.ls1{letter-spacing:64.397280px;}
.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:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._12{margin-left:-5.166720px;}
._5{margin-left:-4.104000px;}
._6{margin-left:-3.060480px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._4{width:2.968320px;}
._b{width:4.680000px;}
._c{width:5.705280px;}
._17{width:6.840000px;}
._7{width:8.208000px;}
._a{width:9.756000px;}
._f{width:10.908000px;}
._8{width:12.528000px;}
._9{width:13.572000px;}
._14{width:15.048000px;}
._13{width:16.344000px;}
._10{width:19.368000px;}
._11{width:21.168000px;}
._18{width:22.896000px;}
._e{width:24.192000px;}
._d{width:25.272000px;}
._1d{width:27.089280px;}
._1e{width:29.016000px;}
._19{width:30.816000px;}
._1a{width:31.824000px;}
._1f{width:33.317760px;}
._23{width:36.594240px;}
._1b{width:38.087040px;}
._1c{width:39.096000px;}
._15{width:40.104000px;}
._16{width:41.616000px;}
._22{width:42.768000px;}
._20{width:44.064000px;}
._21{width:45.432000px;}
._3{width:77.278320px;}
._2{width:101.339760px;}
._24{width:283.608000px;}
._25{width:284.688000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:82.116000px;}
.y5{bottom:109.296000px;}
.y4{bottom:134.496000px;}
.y3{bottom:153.750000px;}
.y2{bottom:172.650000px;}
.y31{bottom:207.750000px;}
.yc0{bottom:211.890000px;}
.y4f{bottom:212.970000px;}
.y7f{bottom:218.010000px;}
.y69{bottom:220.350000px;}
.y77{bottom:221.610000px;}
.ydc{bottom:226.650000px;}
.y30{bottom:228.450000px;}
.ybf{bottom:232.590000px;}
.y9c{bottom:235.290000px;}
.y4e{bottom:243.930000px;}
.y2f{bottom:249.150000px;}
.y68{bottom:251.310000px;}
.ybe{bottom:253.290000px;}
.y9b{bottom:261.930000px;}
.y2e{bottom:269.850000px;}
.ydb{bottom:273.990000px;}
.y4d{bottom:275.070000px;}
.ybd{bottom:279.930000px;}
.y7e{bottom:280.110000px;}
.y67{bottom:282.450000px;}
.y9a{bottom:282.630000px;}
.y2d{bottom:290.550000px;}
.yda{bottom:294.690000px;}
.y99{bottom:303.330000px;}
.y4c{bottom:306.030000px;}
.ybc{bottom:306.750000px;}
.y2c{bottom:311.250000px;}
.y66{bottom:313.410000px;}
.yd9{bottom:321.330000px;}
.ybb{bottom:327.450000px;}
.y98{bottom:330.150000px;}
.y2b{bottom:331.950000px;}
.y4b{bottom:337.215000px;}
.y7d{bottom:342.255000px;}
.y65{bottom:344.595000px;}
.yba{bottom:348.195000px;}
.y2a{bottom:352.695000px;}
.y97{bottom:356.835000px;}
.y4a{bottom:368.175000px;}
.yb9{bottom:368.895000px;}
.y29{bottom:373.395000px;}
.y64{bottom:375.555000px;}
.y96{bottom:377.535000px;}
.y28{bottom:394.095000px;}
.yb8{bottom:395.535000px;}
.y49{bottom:399.315000px;}
.y95{bottom:404.175000px;}
.y7c{bottom:404.355000px;}
.y63{bottom:406.695000px;}
.y27{bottom:414.795000px;}
.yb7{bottom:422.175000px;}
.y48{bottom:430.275000px;}
.y94{bottom:430.995000px;}
.y26{bottom:435.495000px;}
.y62{bottom:437.655000px;}
.yb6{bottom:442.875000px;}
.y93{bottom:451.695000px;}
.y25{bottom:456.195000px;}
.y47{bottom:461.415000px;}
.yd8{bottom:463.575000px;}
.y7b{bottom:466.455000px;}
.y61{bottom:468.795000px;}
.yb5{bottom:469.695000px;}
.y24{bottom:476.895000px;}
.y92{bottom:478.335000px;}
.yd7{bottom:484.275000px;}
.y46{bottom:492.375000px;}
.yb4{bottom:496.335000px;}
.y23{bottom:497.595000px;}
.y60{bottom:499.755000px;}
.y91{bottom:504.975000px;}
.yd6{bottom:510.915000px;}
.yb3{bottom:517.035000px;}
.y22{bottom:518.295000px;}
.y45{bottom:523.515000px;}
.y76{bottom:524.775000px;}
.y90{bottom:525.675000px;}
.y7a{bottom:528.555000px;}
.y5f{bottom:530.895000px;}
.yb2{bottom:537.735000px;}
.y21{bottom:538.995000px;}
.y8f{bottom:552.855000px;}
.y44{bottom:554.475000px;}
.yd5{bottom:558.435000px;}
.y20{bottom:559.695000px;}
.y5e{bottom:561.855000px;}
.yb1{bottom:564.375000px;}
.yd4{bottom:579.135000px;}
.y1f{bottom:580.395000px;}
.y43{bottom:585.615000px;}
.y79{bottom:590.655000px;}
.yb0{bottom:591.015000px;}
.y5d{bottom:592.815000px;}
.y1e{bottom:601.095000px;}
.yd3{bottom:605.805000px;}
.yaf{bottom:611.745000px;}
.y42{bottom:616.605000px;}
.y1d{bottom:621.645000px;}
.y8e{bottom:622.545000px;}
.y5c{bottom:623.985000px;}
.yd2{bottom:632.445000px;}
.yae{bottom:638.565000px;}
.y1c{bottom:642.345000px;}
.y41{bottom:647.745000px;}
.y78{bottom:652.785000px;}
.yd1{bottom:653.145000px;}
.y8d{bottom:653.685000px;}
.y5b{bottom:654.945000px;}
.y1b{bottom:663.045000px;}
.yad{bottom:665.205000px;}
.y40{bottom:678.705000px;}
.yd0{bottom:679.965000px;}
.y5a{bottom:682.305000px;}
.y1a{bottom:683.745000px;}
.y8c{bottom:684.645000px;}
.yac{bottom:685.905000px;}
.y75{bottom:686.085000px;}
.y19{bottom:704.445000px;}
.ycf{bottom:706.605000px;}
.y3f{bottom:709.845000px;}
.yab{bottom:712.545000px;}
.y59{bottom:714.885000px;}
.y8b{bottom:715.785000px;}
.y74{bottom:717.045000px;}
.y18{bottom:725.145000px;}
.yce{bottom:733.245000px;}
.yaa{bottom:739.365000px;}
.y3e{bottom:740.805000px;}
.y17{bottom:745.845000px;}
.y8a{bottom:746.745000px;}
.y73{bottom:748.185000px;}
.ycd{bottom:753.945000px;}
.ya9{bottom:760.065000px;}
.y16{bottom:766.545000px;}
.y3d{bottom:771.945000px;}
.y58{bottom:776.985000px;}
.y89{bottom:777.885000px;}
.y72{bottom:779.145000px;}
.ycc{bottom:780.765000px;}
.ya8{bottom:786.705000px;}
.y15{bottom:787.245000px;}
.y3c{bottom:802.905000px;}
.ycb{bottom:807.405000px;}
.y14{bottom:807.945000px;}
.y88{bottom:808.845000px;}
.y71{bottom:810.285000px;}
.ya7{bottom:813.345000px;}
.yca{bottom:828.105000px;}
.y13{bottom:828.645000px;}
.y3b{bottom:834.045000px;}
.y57{bottom:839.085000px;}
.y87{bottom:839.985000px;}
.y70{bottom:841.245000px;}
.y12{bottom:849.345000px;}
.ya6{bottom:854.745000px;}
.y3a{bottom:865.005000px;}
.y11{bottom:870.045000px;}
.y86{bottom:870.990000px;}
.y6f{bottom:872.430000px;}
.yde{bottom:875.490000px;}
.ya5{bottom:881.610000px;}
.y10{bottom:890.790000px;}
.y39{bottom:896.190000px;}
.y56{bottom:901.230000px;}
.y85{bottom:902.130000px;}
.yc9{bottom:902.310000px;}
.y6e{bottom:903.390000px;}
.ya4{bottom:908.250000px;}
.yf{bottom:911.490000px;}
.yc8{bottom:923.010000px;}
.y38{bottom:927.150000px;}
.ya3{bottom:928.950000px;}
.ye{bottom:932.190000px;}
.y84{bottom:933.090000px;}
.y6d{bottom:934.530000px;}
.yc7{bottom:949.650000px;}
.yd{bottom:952.890000px;}
.ya2{bottom:955.590000px;}
.y37{bottom:958.110000px;}
.y55{bottom:963.330000px;}
.y83{bottom:964.230000px;}
.y6c{bottom:965.490000px;}
.ydd{bottom:970.350000px;}
.yc{bottom:975.030000px;}
.yc6{bottom:976.290000px;}
.ya1{bottom:982.410000px;}
.y36{bottom:989.250000px;}
.y54{bottom:994.290000px;}
.y82{bottom:995.190000px;}
.y6b{bottom:996.630000px;}
.yc5{bottom:996.990000px;}
.yb{bottom:1002.570000px;}
.ya0{bottom:1003.110000px;}
.yc4{bottom:1017.690000px;}
.y35{bottom:1020.210000px;}
.y6a{bottom:1023.810000px;}
.y53{bottom:1025.430000px;}
.y81{bottom:1026.330000px;}
.ya{bottom:1030.110000px;}
.yc3{bottom:1044.510000px;}
.y9f{bottom:1050.450000px;}
.y34{bottom:1051.350000px;}
.y52{bottom:1056.390000px;}
.y80{bottom:1057.290000px;}
.y9{bottom:1057.830000px;}
.yc2{bottom:1071.150000px;}
.y9e{bottom:1077.090000px;}
.y8{bottom:1085.370000px;}
.y51{bottom:1087.530000px;}
.y33{bottom:1088.430000px;}
.yc1{bottom:1091.850000px;}
.y9d{bottom:1097.790000px;}
.y7{bottom:1112.910000px;}
.y32{bottom:1115.610000px;}
.y50{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h8{height:52.628906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h4{height:65.884219px;}
.h7{height:69.996445px;}
.h9{height:74.820586px;}
.h6{height:85.052461px;}
.h5{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x7{left:170.129987px;}
.x4{left:193.169987px;}
.x6{left:299.414987px;}
.x8{left:324.614987px;}
.x5{left:328.574987px;}
.x1{left:489.164987px;}
.x9{left:737.789987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls1{letter-spacing:57.242027pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._12{margin-left:-4.592640pt;}
._5{margin-left:-3.648000pt;}
._6{margin-left:-2.720427pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._4{width:2.638507pt;}
._b{width:4.160000pt;}
._c{width:5.071360pt;}
._17{width:6.080000pt;}
._7{width:7.296000pt;}
._a{width:8.672000pt;}
._f{width:9.696000pt;}
._8{width:11.136000pt;}
._9{width:12.064000pt;}
._14{width:13.376000pt;}
._13{width:14.528000pt;}
._10{width:17.216000pt;}
._11{width:18.816000pt;}
._18{width:20.352000pt;}
._e{width:21.504000pt;}
._d{width:22.464000pt;}
._1d{width:24.079360pt;}
._1e{width:25.792000pt;}
._19{width:27.392000pt;}
._1a{width:28.288000pt;}
._1f{width:29.615787pt;}
._23{width:32.528213pt;}
._1b{width:33.855147pt;}
._1c{width:34.752000pt;}
._15{width:35.648000pt;}
._16{width:36.992000pt;}
._22{width:38.016000pt;}
._20{width:39.168000pt;}
._21{width:40.384000pt;}
._3{width:68.691840pt;}
._2{width:90.079787pt;}
._24{width:252.096000pt;}
._25{width:253.056000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:97.152000pt;}
.y4{bottom:119.552000pt;}
.y3{bottom:136.666667pt;}
.y2{bottom:153.466667pt;}
.y31{bottom:184.666667pt;}
.yc0{bottom:188.346667pt;}
.y4f{bottom:189.306667pt;}
.y7f{bottom:193.786667pt;}
.y69{bottom:195.866667pt;}
.y77{bottom:196.986667pt;}
.ydc{bottom:201.466667pt;}
.y30{bottom:203.066667pt;}
.ybf{bottom:206.746667pt;}
.y9c{bottom:209.146667pt;}
.y4e{bottom:216.826667pt;}
.y2f{bottom:221.466667pt;}
.y68{bottom:223.386667pt;}
.ybe{bottom:225.146667pt;}
.y9b{bottom:232.826667pt;}
.y2e{bottom:239.866667pt;}
.ydb{bottom:243.546667pt;}
.y4d{bottom:244.506667pt;}
.ybd{bottom:248.826667pt;}
.y7e{bottom:248.986667pt;}
.y67{bottom:251.066667pt;}
.y9a{bottom:251.226667pt;}
.y2d{bottom:258.266667pt;}
.yda{bottom:261.946667pt;}
.y99{bottom:269.626667pt;}
.y4c{bottom:272.026667pt;}
.ybc{bottom:272.666667pt;}
.y2c{bottom:276.666667pt;}
.y66{bottom:278.586667pt;}
.yd9{bottom:285.626667pt;}
.ybb{bottom:291.066667pt;}
.y98{bottom:293.466667pt;}
.y2b{bottom:295.066667pt;}
.y4b{bottom:299.746667pt;}
.y7d{bottom:304.226667pt;}
.y65{bottom:306.306667pt;}
.yba{bottom:309.506667pt;}
.y2a{bottom:313.506667pt;}
.y97{bottom:317.186667pt;}
.y4a{bottom:327.266667pt;}
.yb9{bottom:327.906667pt;}
.y29{bottom:331.906667pt;}
.y64{bottom:333.826667pt;}
.y96{bottom:335.586667pt;}
.y28{bottom:350.306667pt;}
.yb8{bottom:351.586667pt;}
.y49{bottom:354.946667pt;}
.y95{bottom:359.266667pt;}
.y7c{bottom:359.426667pt;}
.y63{bottom:361.506667pt;}
.y27{bottom:368.706667pt;}
.yb7{bottom:375.266667pt;}
.y48{bottom:382.466667pt;}
.y94{bottom:383.106667pt;}
.y26{bottom:387.106667pt;}
.y62{bottom:389.026667pt;}
.yb6{bottom:393.666667pt;}
.y93{bottom:401.506667pt;}
.y25{bottom:405.506667pt;}
.y47{bottom:410.146667pt;}
.yd8{bottom:412.066667pt;}
.y7b{bottom:414.626667pt;}
.y61{bottom:416.706667pt;}
.yb5{bottom:417.506667pt;}
.y24{bottom:423.906667pt;}
.y92{bottom:425.186667pt;}
.yd7{bottom:430.466667pt;}
.y46{bottom:437.666667pt;}
.yb4{bottom:441.186667pt;}
.y23{bottom:442.306667pt;}
.y60{bottom:444.226667pt;}
.y91{bottom:448.866667pt;}
.yd6{bottom:454.146667pt;}
.yb3{bottom:459.586667pt;}
.y22{bottom:460.706667pt;}
.y45{bottom:465.346667pt;}
.y76{bottom:466.466667pt;}
.y90{bottom:467.266667pt;}
.y7a{bottom:469.826667pt;}
.y5f{bottom:471.906667pt;}
.yb2{bottom:477.986667pt;}
.y21{bottom:479.106667pt;}
.y8f{bottom:491.426667pt;}
.y44{bottom:492.866667pt;}
.yd5{bottom:496.386667pt;}
.y20{bottom:497.506667pt;}
.y5e{bottom:499.426667pt;}
.yb1{bottom:501.666667pt;}
.yd4{bottom:514.786667pt;}
.y1f{bottom:515.906667pt;}
.y43{bottom:520.546667pt;}
.y79{bottom:525.026667pt;}
.yb0{bottom:525.346667pt;}
.y5d{bottom:526.946667pt;}
.y1e{bottom:534.306667pt;}
.yd3{bottom:538.493333pt;}
.yaf{bottom:543.773333pt;}
.y42{bottom:548.093333pt;}
.y1d{bottom:552.573333pt;}
.y8e{bottom:553.373333pt;}
.y5c{bottom:554.653333pt;}
.yd2{bottom:562.173333pt;}
.yae{bottom:567.613333pt;}
.y1c{bottom:570.973333pt;}
.y41{bottom:575.773333pt;}
.y78{bottom:580.253333pt;}
.yd1{bottom:580.573333pt;}
.y8d{bottom:581.053333pt;}
.y5b{bottom:582.173333pt;}
.y1b{bottom:589.373333pt;}
.yad{bottom:591.293333pt;}
.y40{bottom:603.293333pt;}
.yd0{bottom:604.413333pt;}
.y5a{bottom:606.493333pt;}
.y1a{bottom:607.773333pt;}
.y8c{bottom:608.573333pt;}
.yac{bottom:609.693333pt;}
.y75{bottom:609.853333pt;}
.y19{bottom:626.173333pt;}
.ycf{bottom:628.093333pt;}
.y3f{bottom:630.973333pt;}
.yab{bottom:633.373333pt;}
.y59{bottom:635.453333pt;}
.y8b{bottom:636.253333pt;}
.y74{bottom:637.373333pt;}
.y18{bottom:644.573333pt;}
.yce{bottom:651.773333pt;}
.yaa{bottom:657.213333pt;}
.y3e{bottom:658.493333pt;}
.y17{bottom:662.973333pt;}
.y8a{bottom:663.773333pt;}
.y73{bottom:665.053333pt;}
.ycd{bottom:670.173333pt;}
.ya9{bottom:675.613333pt;}
.y16{bottom:681.373333pt;}
.y3d{bottom:686.173333pt;}
.y58{bottom:690.653333pt;}
.y89{bottom:691.453333pt;}
.y72{bottom:692.573333pt;}
.ycc{bottom:694.013333pt;}
.ya8{bottom:699.293333pt;}
.y15{bottom:699.773333pt;}
.y3c{bottom:713.693333pt;}
.ycb{bottom:717.693333pt;}
.y14{bottom:718.173333pt;}
.y88{bottom:718.973333pt;}
.y71{bottom:720.253333pt;}
.ya7{bottom:722.973333pt;}
.yca{bottom:736.093333pt;}
.y13{bottom:736.573333pt;}
.y3b{bottom:741.373333pt;}
.y57{bottom:745.853333pt;}
.y87{bottom:746.653333pt;}
.y70{bottom:747.773333pt;}
.y12{bottom:754.973333pt;}
.ya6{bottom:759.773333pt;}
.y3a{bottom:768.893333pt;}
.y11{bottom:773.373333pt;}
.y86{bottom:774.213333pt;}
.y6f{bottom:775.493333pt;}
.yde{bottom:778.213333pt;}
.ya5{bottom:783.653333pt;}
.y10{bottom:791.813333pt;}
.y39{bottom:796.613333pt;}
.y56{bottom:801.093333pt;}
.y85{bottom:801.893333pt;}
.yc9{bottom:802.053333pt;}
.y6e{bottom:803.013333pt;}
.ya4{bottom:807.333333pt;}
.yf{bottom:810.213333pt;}
.yc8{bottom:820.453333pt;}
.y38{bottom:824.133333pt;}
.ya3{bottom:825.733333pt;}
.ye{bottom:828.613333pt;}
.y84{bottom:829.413333pt;}
.y6d{bottom:830.693333pt;}
.yc7{bottom:844.133333pt;}
.yd{bottom:847.013333pt;}
.ya2{bottom:849.413333pt;}
.y37{bottom:851.653333pt;}
.y55{bottom:856.293333pt;}
.y83{bottom:857.093333pt;}
.y6c{bottom:858.213333pt;}
.ydd{bottom:862.533333pt;}
.yc{bottom:866.693333pt;}
.yc6{bottom:867.813333pt;}
.ya1{bottom:873.253333pt;}
.y36{bottom:879.333333pt;}
.y54{bottom:883.813333pt;}
.y82{bottom:884.613333pt;}
.y6b{bottom:885.893333pt;}
.yc5{bottom:886.213333pt;}
.yb{bottom:891.173333pt;}
.ya0{bottom:891.653333pt;}
.yc4{bottom:904.613333pt;}
.y35{bottom:906.853333pt;}
.y6a{bottom:910.053333pt;}
.y53{bottom:911.493333pt;}
.y81{bottom:912.293333pt;}
.ya{bottom:915.653333pt;}
.yc3{bottom:928.453333pt;}
.y9f{bottom:933.733333pt;}
.y34{bottom:934.533333pt;}
.y52{bottom:939.013333pt;}
.y80{bottom:939.813333pt;}
.y9{bottom:940.293333pt;}
.yc2{bottom:952.133333pt;}
.y9e{bottom:957.413333pt;}
.y8{bottom:964.773333pt;}
.y51{bottom:966.693333pt;}
.y33{bottom:967.493333pt;}
.yc1{bottom:970.533333pt;}
.y9d{bottom:975.813333pt;}
.y7{bottom:989.253333pt;}
.y32{bottom:991.653333pt;}
.y50{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h8{height:46.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h4{height:58.563750pt;}
.h7{height:62.219062pt;}
.h9{height:66.507188pt;}
.h6{height:75.602187pt;}
.h5{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x7{left:151.226655pt;}
.x4{left:171.706655pt;}
.x6{left:266.146655pt;}
.x8{left:288.546655pt;}
.x5{left:292.066655pt;}
.x1{left:434.813322pt;}
.x9{left:655.813322pt;}
.x3{left:718.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; }
  