
    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_f3af1350ea8ce0e82f0007d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_9821da502fa19aa0d355e6c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_be120dec18eb4bdcfe416a57.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_163a202bd060908722f98bd5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5db620be9f88959966913a99.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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;}
.m7{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236607,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240909,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,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);}
.m4{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);}
.v1{vertical-align:-23.400000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-19.500000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.000000px;}
.ws5{word-spacing:-10.500000px;}
.ws1{word-spacing:-8.700000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-673.118609px;}
._c{margin-left:-383.694261px;}
._7{margin-left:-193.792696px;}
._9{margin-left:-92.363478px;}
._5{margin-left:-23.919652px;}
._b{margin-left:-17.934261px;}
._6{margin-left:-12.168000px;}
._1{margin-left:-1.080000px;}
._0{width:1.008000px;}
._2{width:2.185044px;}
._a{width:55.656000px;}
._8{width:157.464000px;}
._d{width:346.824000px;}
._4{width:636.048000px;}
.fc4{color:rgb(57,100,254);}
.fc3{color:rgb(15,17,21);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.000000px;}
.fs7{font-size:31.200000px;}
.fs5{font-size:34.800000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.042000px;}
.y7{bottom:57.316500px;}
.y6{bottom:73.816500px;}
.y5{bottom:90.316500px;}
.y8f{bottom:111.241500px;}
.ybc{bottom:121.966500px;}
.y4{bottom:123.241500px;}
.y44{bottom:127.741500px;}
.y78{bottom:127.816500px;}
.y63{bottom:128.566500px;}
.y77{bottom:133.441500px;}
.ybb{bottom:142.666500px;}
.y6a{bottom:144.391500px;}
.y43{bottom:145.066500px;}
.y8e{bottom:145.891500px;}
.y62{bottom:145.966500px;}
.y61{bottom:151.591500px;}
.y10{bottom:157.891500px;}
.y42{bottom:162.391500px;}
.y8d{bottom:163.291500px;}
.yba{bottom:163.366500px;}
.y8c{bottom:168.916500px;}
.yf{bottom:175.216500px;}
.y60{bottom:175.441500px;}
.y41{bottom:179.791500px;}
.y40{bottom:185.416500px;}
.ye{bottom:198.391500px;}
.yb9{bottom:204.766500px;}
.y5f{bottom:206.491500px;}
.y75{bottom:224.641500px;}
.yb8{bottom:225.466500px;}
.y8b{bottom:230.941500px;}
.y76{bottom:231.691500px;}
.y5e{bottom:237.541500px;}
.y74{bottom:245.341500px;}
.yb7{bottom:246.166500px;}
.y8a{bottom:261.991500px;}
.y73{bottom:266.041500px;}
.y69{bottom:268.591500px;}
.y3f{bottom:269.266500px;}
.y72{bottom:286.741500px;}
.yb6{bottom:287.566500px;}
.y5d{bottom:299.641500px;}
.y3d{bottom:300.316500px;}
.y3e{bottom:307.366500px;}
.y71{bottom:307.441500px;}
.y89{bottom:311.866500px;}
.y70{bottom:328.141500px;}
.yb5{bottom:328.966500px;}
.y5c{bottom:330.691500px;}
.y3c{bottom:331.366500px;}
.y68{bottom:337.741500px;}
.y91{bottom:342.916500px;}
.y6f{bottom:348.841500px;}
.yb4{bottom:349.666500px;}
.y5b{bottom:361.741500px;}
.y3b{bottom:362.416500px;}
.y6e{bottom:369.541500px;}
.y88{bottom:373.966500px;}
.y6c{bottom:390.241500px;}
.yb3{bottom:391.066500px;}
.y5a{bottom:392.791500px;}
.y3a{bottom:393.466500px;}
.y6d{bottom:397.291500px;}
.y87{bottom:405.016500px;}
.y6b{bottom:410.941500px;}
.yb2{bottom:411.766500px;}
.y59{bottom:423.841500px;}
.y39{bottom:424.516500px;}
.yb1{bottom:432.466500px;}
.y86{bottom:436.066500px;}
.y58{bottom:454.891500px;}
.y38{bottom:455.566500px;}
.y85{bottom:467.116500px;}
.yb0{bottom:473.866500px;}
.y57{bottom:485.941500px;}
.y37{bottom:486.616500px;}
.y84{bottom:498.166500px;}
.yaf{bottom:515.266500px;}
.y56{bottom:516.991500px;}
.y36{bottom:517.666500px;}
.y83{bottom:529.216500px;}
.yae{bottom:535.966500px;}
.y55{bottom:548.041500px;}
.y35{bottom:548.716500px;}
.y82{bottom:560.266500px;}
.yad{bottom:577.366500px;}
.y54{bottom:579.091500px;}
.y34{bottom:579.766500px;}
.y90{bottom:591.316500px;}
.yac{bottom:598.066500px;}
.y53{bottom:610.141500px;}
.yab{bottom:618.766500px;}
.y81{bottom:622.366500px;}
.y52{bottom:641.191500px;}
.y33{bottom:641.866500px;}
.yaa{bottom:660.166500px;}
.y1e{bottom:669.691500px;}
.y51{bottom:672.241500px;}
.y32{bottom:672.916500px;}
.ya9{bottom:680.866500px;}
.y80{bottom:684.466500px;}
.y1d{bottom:700.741500px;}
.y50{bottom:703.291500px;}
.y31{bottom:703.966500px;}
.y7f{bottom:715.516500px;}
.ya8{bottom:722.266500px;}
.y67{bottom:734.341500px;}
.y30{bottom:735.016500px;}
.ya7{bottom:742.966500px;}
.y7e{bottom:746.566500px;}
.y1c{bottom:762.841500px;}
.ya6{bottom:763.666500px;}
.y4f{bottom:765.391500px;}
.y2f{bottom:766.066500px;}
.y7d{bottom:777.616500px;}
.y1b{bottom:793.891500px;}
.y4e{bottom:796.441500px;}
.ya5{bottom:805.066500px;}
.y7c{bottom:808.666500px;}
.y1a{bottom:824.941500px;}
.ya4{bottom:825.766500px;}
.y4d{bottom:827.491500px;}
.y2d{bottom:834.466500px;}
.y7b{bottom:839.716500px;}
.y2e{bottom:841.516500px;}
.ya3{bottom:846.466500px;}
.y2c{bottom:855.166500px;}
.y19{bottom:855.991500px;}
.y66{bottom:858.541500px;}
.y7a{bottom:870.766500px;}
.y2a{bottom:875.866500px;}
.y2b{bottom:882.916500px;}
.y18{bottom:887.041500px;}
.ya2{bottom:887.866500px;}
.y4c{bottom:889.591500px;}
.y28{bottom:896.566500px;}
.y29{bottom:903.616500px;}
.ya1{bottom:908.566500px;}
.yd{bottom:913.216500px;}
.y26{bottom:917.266500px;}
.y17{bottom:918.091500px;}
.y65{bottom:920.641500px;}
.y27{bottom:924.316500px;}
.ya0{bottom:929.266500px;}
.y25{bottom:937.966500px;}
.yc{bottom:940.816500px;}
.y16{bottom:949.141500px;}
.y4b{bottom:951.691500px;}
.y23{bottom:958.666500px;}
.y96{bottom:960.316500px;}
.y24{bottom:965.716500px;}
.y9f{bottom:970.666500px;}
.y9a{bottom:972.391500px;}
.y22{bottom:979.366500px;}
.y15{bottom:980.191500px;}
.y4a{bottom:982.741500px;}
.y95{bottom:991.366500px;}
.y99{bottom:993.091500px;}
.y21{bottom:1000.066500px;}
.y14{bottom:1011.241500px;}
.y9e{bottom:1012.066500px;}
.y64{bottom:1013.791500px;}
.y94{bottom:1022.416500px;}
.y9d{bottom:1032.766500px;}
.ybe{bottom:1034.491500px;}
.ya{bottom:1036.216500px;}
.y20{bottom:1039.741500px;}
.y13{bottom:1042.291500px;}
.yb{bottom:1043.266500px;}
.y48{bottom:1044.841500px;}
.y49{bottom:1051.891500px;}
.y93{bottom:1053.466500px;}
.y98{bottom:1055.191500px;}
.y1f{bottom:1070.791500px;}
.y12{bottom:1073.341500px;}
.y9c{bottom:1074.166500px;}
.y47{bottom:1075.891500px;}
.y92{bottom:1084.516500px;}
.y9b{bottom:1094.866500px;}
.y97{bottom:1096.591500px;}
.y9{bottom:1098.916500px;}
.y46{bottom:1106.941500px;}
.ybd{bottom:1117.291500px;}
.y8{bottom:1135.141500px;}
.y11{bottom:1136.566500px;}
.y45{bottom:1137.991500px;}
.y79{bottom:1145.041500px;}
.y1{bottom:1195.708500px;}
.y3{bottom:1196.191500px;}
.hd{height:8.337891px;}
.hc{height:21.617578px;}
.h9{height:24.179883px;}
.h8{height:29.182617px;}
.h2{height:37.415039px;}
.h4{height:37.520508px;}
.h5{height:41.689453px;}
.he{height:48.796875px;}
.hb{height:49.992188px;}
.h7{height:50.027344px;}
.ha{height:52.863281px;}
.h6{height:56.929688px;}
.h3{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.150000px;}
.x2b{left:112.050000px;}
.x29{left:113.850000px;}
.x2a{left:118.800000px;}
.x2c{left:120.150000px;}
.x17{left:131.925000px;}
.x37{left:134.850000px;}
.x1a{left:148.650000px;}
.x9{left:151.875000px;}
.x53{left:172.950000px;}
.x45{left:194.175000px;}
.x18{left:201.300000px;}
.x3a{left:208.500000px;}
.x55{left:212.625000px;}
.x1c{left:214.125000px;}
.x1d{left:224.025000px;}
.x4e{left:226.200000px;}
.x6{left:235.875000px;}
.x3b{left:241.275000px;}
.x24{left:248.550000px;}
.x22{left:253.725000px;}
.x57{left:256.125000px;}
.x23{left:268.575000px;}
.x12{left:271.575000px;}
.x40{left:290.775000px;}
.x13{left:302.175000px;}
.x7{left:324.000000px;}
.xc{left:326.475000px;}
.x8{left:341.400000px;}
.x3d{left:346.125000px;}
.x3e{left:364.425000px;}
.x3c{left:366.975000px;}
.x58{left:376.200000px;}
.x54{left:386.625000px;}
.x4f{left:391.500000px;}
.x19{left:395.925000px;}
.x4d{left:402.150000px;}
.x38{left:409.125000px;}
.x56{left:410.325000px;}
.xb{left:411.975000px;}
.x14{left:429.375000px;}
.x15{left:437.925000px;}
.x28{left:441.225000px;}
.x25{left:442.275000px;}
.x35{left:444.150000px;}
.x1b{left:456.450000px;}
.x5{left:465.825000px;}
.x5a{left:469.875000px;}
.x41{left:494.325000px;}
.x32{left:511.500000px;}
.xd{left:514.425000px;}
.x16{left:521.775000px;}
.x5d{left:525.375000px;}
.x36{left:528.000000px;}
.x2f{left:535.950000px;}
.xe{left:539.250000px;}
.x42{left:542.475000px;}
.x3{left:546.075000px;}
.x50{left:553.950000px;}
.x10{left:556.425000px;}
.x4a{left:562.425000px;}
.x4b{left:567.375000px;}
.x20{left:572.550000px;}
.x21{left:582.450000px;}
.x26{left:590.025000px;}
.x43{left:596.025000px;}
.x30{left:597.150000px;}
.x51{left:615.600000px;}
.x4{left:621.150000px;}
.x2d{left:626.700000px;}
.x2e{left:632.325000px;}
.x39{left:636.150000px;}
.x59{left:638.325000px;}
.x34{left:642.750000px;}
.x27{left:652.650000px;}
.x48{left:664.875000px;}
.x3f{left:672.900000px;}
.x49{left:674.775000px;}
.x33{left:685.950000px;}
.x5c{left:696.525000px;}
.x4c{left:710.250000px;}
.xf{left:717.600000px;}
.x31{left:720.075000px;}
.x5b{left:724.350000px;}
.x11{left:726.525000px;}
.x1e{left:730.725000px;}
.x46{left:734.400000px;}
.x47{left:739.350000px;}
.x1f{left:740.625000px;}
.x44{left:757.500000px;}
.x52{left:771.375000px;}
.x1{left:774.825000px;}
.xa{left:778.200000px;}
@media print{
.v1{vertical-align:-20.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-17.333333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5{word-spacing:-9.333333pt;}
.ws1{word-spacing:-7.733333pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-598.327652pt;}
._c{margin-left:-341.061565pt;}
._7{margin-left:-172.260174pt;}
._9{margin-left:-82.100869pt;}
._5{margin-left:-21.261913pt;}
._b{margin-left:-15.941565pt;}
._6{margin-left:-10.816000pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.896000pt;}
._2{width:1.942261pt;}
._a{width:49.472000pt;}
._8{width:139.968000pt;}
._d{width:308.288000pt;}
._4{width:565.376000pt;}
.fs8{font-size:10.666667pt;}
.fs7{font-size:27.733333pt;}
.fs5{font-size:30.933333pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.037333pt;}
.y7{bottom:50.948000pt;}
.y6{bottom:65.614667pt;}
.y5{bottom:80.281333pt;}
.y8f{bottom:98.881333pt;}
.ybc{bottom:108.414667pt;}
.y4{bottom:109.548000pt;}
.y44{bottom:113.548000pt;}
.y78{bottom:113.614667pt;}
.y63{bottom:114.281333pt;}
.y77{bottom:118.614667pt;}
.ybb{bottom:126.814667pt;}
.y6a{bottom:128.348000pt;}
.y43{bottom:128.948000pt;}
.y8e{bottom:129.681333pt;}
.y62{bottom:129.748000pt;}
.y61{bottom:134.748000pt;}
.y10{bottom:140.348000pt;}
.y42{bottom:144.348000pt;}
.y8d{bottom:145.148000pt;}
.yba{bottom:145.214667pt;}
.y8c{bottom:150.148000pt;}
.yf{bottom:155.748000pt;}
.y60{bottom:155.948000pt;}
.y41{bottom:159.814667pt;}
.y40{bottom:164.814667pt;}
.ye{bottom:176.348000pt;}
.yb9{bottom:182.014667pt;}
.y5f{bottom:183.548000pt;}
.y75{bottom:199.681333pt;}
.yb8{bottom:200.414667pt;}
.y8b{bottom:205.281333pt;}
.y76{bottom:205.948000pt;}
.y5e{bottom:211.148000pt;}
.y74{bottom:218.081333pt;}
.yb7{bottom:218.814667pt;}
.y8a{bottom:232.881333pt;}
.y73{bottom:236.481333pt;}
.y69{bottom:238.748000pt;}
.y3f{bottom:239.348000pt;}
.y72{bottom:254.881333pt;}
.yb6{bottom:255.614667pt;}
.y5d{bottom:266.348000pt;}
.y3d{bottom:266.948000pt;}
.y3e{bottom:273.214667pt;}
.y71{bottom:273.281333pt;}
.y89{bottom:277.214667pt;}
.y70{bottom:291.681333pt;}
.yb5{bottom:292.414667pt;}
.y5c{bottom:293.948000pt;}
.y3c{bottom:294.548000pt;}
.y68{bottom:300.214667pt;}
.y91{bottom:304.814667pt;}
.y6f{bottom:310.081333pt;}
.yb4{bottom:310.814667pt;}
.y5b{bottom:321.548000pt;}
.y3b{bottom:322.148000pt;}
.y6e{bottom:328.481333pt;}
.y88{bottom:332.414667pt;}
.y6c{bottom:346.881333pt;}
.yb3{bottom:347.614667pt;}
.y5a{bottom:349.148000pt;}
.y3a{bottom:349.748000pt;}
.y6d{bottom:353.148000pt;}
.y87{bottom:360.014667pt;}
.y6b{bottom:365.281333pt;}
.yb2{bottom:366.014667pt;}
.y59{bottom:376.748000pt;}
.y39{bottom:377.348000pt;}
.yb1{bottom:384.414667pt;}
.y86{bottom:387.614667pt;}
.y58{bottom:404.348000pt;}
.y38{bottom:404.948000pt;}
.y85{bottom:415.214667pt;}
.yb0{bottom:421.214667pt;}
.y57{bottom:431.948000pt;}
.y37{bottom:432.548000pt;}
.y84{bottom:442.814667pt;}
.yaf{bottom:458.014667pt;}
.y56{bottom:459.548000pt;}
.y36{bottom:460.148000pt;}
.y83{bottom:470.414667pt;}
.yae{bottom:476.414667pt;}
.y55{bottom:487.148000pt;}
.y35{bottom:487.748000pt;}
.y82{bottom:498.014667pt;}
.yad{bottom:513.214667pt;}
.y54{bottom:514.748000pt;}
.y34{bottom:515.348000pt;}
.y90{bottom:525.614667pt;}
.yac{bottom:531.614667pt;}
.y53{bottom:542.348000pt;}
.yab{bottom:550.014667pt;}
.y81{bottom:553.214667pt;}
.y52{bottom:569.948000pt;}
.y33{bottom:570.548000pt;}
.yaa{bottom:586.814667pt;}
.y1e{bottom:595.281333pt;}
.y51{bottom:597.548000pt;}
.y32{bottom:598.148000pt;}
.ya9{bottom:605.214667pt;}
.y80{bottom:608.414667pt;}
.y1d{bottom:622.881333pt;}
.y50{bottom:625.148000pt;}
.y31{bottom:625.748000pt;}
.y7f{bottom:636.014667pt;}
.ya8{bottom:642.014667pt;}
.y67{bottom:652.748000pt;}
.y30{bottom:653.348000pt;}
.ya7{bottom:660.414667pt;}
.y7e{bottom:663.614667pt;}
.y1c{bottom:678.081333pt;}
.ya6{bottom:678.814667pt;}
.y4f{bottom:680.348000pt;}
.y2f{bottom:680.948000pt;}
.y7d{bottom:691.214667pt;}
.y1b{bottom:705.681333pt;}
.y4e{bottom:707.948000pt;}
.ya5{bottom:715.614667pt;}
.y7c{bottom:718.814667pt;}
.y1a{bottom:733.281333pt;}
.ya4{bottom:734.014667pt;}
.y4d{bottom:735.548000pt;}
.y2d{bottom:741.748000pt;}
.y7b{bottom:746.414667pt;}
.y2e{bottom:748.014667pt;}
.ya3{bottom:752.414667pt;}
.y2c{bottom:760.148000pt;}
.y19{bottom:760.881333pt;}
.y66{bottom:763.148000pt;}
.y7a{bottom:774.014667pt;}
.y2a{bottom:778.548000pt;}
.y2b{bottom:784.814667pt;}
.y18{bottom:788.481333pt;}
.ya2{bottom:789.214667pt;}
.y4c{bottom:790.748000pt;}
.y28{bottom:796.948000pt;}
.y29{bottom:803.214667pt;}
.ya1{bottom:807.614667pt;}
.yd{bottom:811.748000pt;}
.y26{bottom:815.348000pt;}
.y17{bottom:816.081333pt;}
.y65{bottom:818.348000pt;}
.y27{bottom:821.614667pt;}
.ya0{bottom:826.014667pt;}
.y25{bottom:833.748000pt;}
.yc{bottom:836.281333pt;}
.y16{bottom:843.681333pt;}
.y4b{bottom:845.948000pt;}
.y23{bottom:852.148000pt;}
.y96{bottom:853.614667pt;}
.y24{bottom:858.414667pt;}
.y9f{bottom:862.814667pt;}
.y9a{bottom:864.348000pt;}
.y22{bottom:870.548000pt;}
.y15{bottom:871.281333pt;}
.y4a{bottom:873.548000pt;}
.y95{bottom:881.214667pt;}
.y99{bottom:882.748000pt;}
.y21{bottom:888.948000pt;}
.y14{bottom:898.881333pt;}
.y9e{bottom:899.614667pt;}
.y64{bottom:901.148000pt;}
.y94{bottom:908.814667pt;}
.y9d{bottom:918.014667pt;}
.ybe{bottom:919.548000pt;}
.ya{bottom:921.081333pt;}
.y20{bottom:924.214667pt;}
.y13{bottom:926.481333pt;}
.yb{bottom:927.348000pt;}
.y48{bottom:928.748000pt;}
.y49{bottom:935.014667pt;}
.y93{bottom:936.414667pt;}
.y98{bottom:937.948000pt;}
.y1f{bottom:951.814667pt;}
.y12{bottom:954.081333pt;}
.y9c{bottom:954.814667pt;}
.y47{bottom:956.348000pt;}
.y92{bottom:964.014667pt;}
.y9b{bottom:973.214667pt;}
.y97{bottom:974.748000pt;}
.y9{bottom:976.814667pt;}
.y46{bottom:983.948000pt;}
.ybd{bottom:993.148000pt;}
.y8{bottom:1009.014667pt;}
.y11{bottom:1010.281333pt;}
.y45{bottom:1011.548000pt;}
.y79{bottom:1017.814667pt;}
.y1{bottom:1062.852000pt;}
.y3{bottom:1063.281333pt;}
.hd{height:7.411458pt;}
.hc{height:19.215625pt;}
.h9{height:21.493229pt;}
.h8{height:25.940104pt;}
.h2{height:33.257812pt;}
.h4{height:33.351562pt;}
.h5{height:37.057292pt;}
.he{height:43.375000pt;}
.hb{height:44.437500pt;}
.h7{height:44.468750pt;}
.ha{height:46.989583pt;}
.h6{height:50.604167pt;}
.h3{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.133333pt;}
.x2b{left:99.600000pt;}
.x29{left:101.200000pt;}
.x2a{left:105.600000pt;}
.x2c{left:106.800000pt;}
.x17{left:117.266667pt;}
.x37{left:119.866667pt;}
.x1a{left:132.133333pt;}
.x9{left:135.000000pt;}
.x53{left:153.733333pt;}
.x45{left:172.600000pt;}
.x18{left:178.933333pt;}
.x3a{left:185.333333pt;}
.x55{left:189.000000pt;}
.x1c{left:190.333333pt;}
.x1d{left:199.133333pt;}
.x4e{left:201.066667pt;}
.x6{left:209.666667pt;}
.x3b{left:214.466667pt;}
.x24{left:220.933333pt;}
.x22{left:225.533333pt;}
.x57{left:227.666667pt;}
.x23{left:238.733333pt;}
.x12{left:241.400000pt;}
.x40{left:258.466667pt;}
.x13{left:268.600000pt;}
.x7{left:288.000000pt;}
.xc{left:290.200000pt;}
.x8{left:303.466667pt;}
.x3d{left:307.666667pt;}
.x3e{left:323.933333pt;}
.x3c{left:326.200000pt;}
.x58{left:334.400000pt;}
.x54{left:343.666667pt;}
.x4f{left:348.000000pt;}
.x19{left:351.933333pt;}
.x4d{left:357.466667pt;}
.x38{left:363.666667pt;}
.x56{left:364.733333pt;}
.xb{left:366.200000pt;}
.x14{left:381.666667pt;}
.x15{left:389.266667pt;}
.x28{left:392.200000pt;}
.x25{left:393.133333pt;}
.x35{left:394.800000pt;}
.x1b{left:405.733333pt;}
.x5{left:414.066667pt;}
.x5a{left:417.666667pt;}
.x41{left:439.400000pt;}
.x32{left:454.666667pt;}
.xd{left:457.266667pt;}
.x16{left:463.800000pt;}
.x5d{left:467.000000pt;}
.x36{left:469.333333pt;}
.x2f{left:476.400000pt;}
.xe{left:479.333333pt;}
.x42{left:482.200000pt;}
.x3{left:485.400000pt;}
.x50{left:492.400000pt;}
.x10{left:494.600000pt;}
.x4a{left:499.933333pt;}
.x4b{left:504.333333pt;}
.x20{left:508.933333pt;}
.x21{left:517.733333pt;}
.x26{left:524.466667pt;}
.x43{left:529.800000pt;}
.x30{left:530.800000pt;}
.x51{left:547.200000pt;}
.x4{left:552.133333pt;}
.x2d{left:557.066667pt;}
.x2e{left:562.066667pt;}
.x39{left:565.466667pt;}
.x59{left:567.400000pt;}
.x34{left:571.333333pt;}
.x27{left:580.133333pt;}
.x48{left:591.000000pt;}
.x3f{left:598.133333pt;}
.x49{left:599.800000pt;}
.x33{left:609.733333pt;}
.x5c{left:619.133333pt;}
.x4c{left:631.333333pt;}
.xf{left:637.866667pt;}
.x31{left:640.066667pt;}
.x5b{left:643.866667pt;}
.x11{left:645.800000pt;}
.x1e{left:649.533333pt;}
.x46{left:652.800000pt;}
.x47{left:657.200000pt;}
.x1f{left:658.333333pt;}
.x44{left:673.333333pt;}
.x52{left:685.666667pt;}
.x1{left:688.733333pt;}
.xa{left:691.733333pt;}
}




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