
    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_eb87dbbf6b1376407331cbb1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a14ac241456e7e9beb709706.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6cc5dfce2e34879bb8df19e9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fc14bc0555af4f41dcdf0121.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_048500f45e2ae66533dfc441.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_27ccba270bcb40a60177af6c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v2{vertical-align:-68.400000px;}
.v5{vertical-align:-65.520000px;}
.v9{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.v4{vertical-align:-23.760000px;}
.v8{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.341400px;}
.lsd{letter-spacing:-0.220800px;}
.ls16{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.738000px;}
.ls11{letter-spacing:0.792000px;}
.ls13{letter-spacing:1.620000px;}
.ls1b{letter-spacing:2.988000px;}
.ls14{letter-spacing:4.500000px;}
.ls4{letter-spacing:5.220000px;}
.ls5{letter-spacing:14.580000px;}
.ls1a{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls12{letter-spacing:68.628000px;}
.ls0{letter-spacing:154.980000px;}
.ls9{letter-spacing:1295.700000px;}
.ls7{letter-spacing:1367.340000px;}
.ls18{letter-spacing:1410.900000px;}
.ls19{letter-spacing:1412.700000px;}
.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;}
}
.ws10{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.102200px;}
.ws3{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.238000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws9{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.626000px;}
.ws8{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws6{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.792000px;}
.ws7{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._6{width:2.700000px;}
._7{width:4.037760px;}
._8{width:5.687760px;}
._9{width:6.786240px;}
._f{width:8.928000px;}
._b{width:10.854000px;}
._d{width:12.150000px;}
._a{width:14.544000px;}
._e{width:15.635760px;}
._5{width:66.312000px;}
._c{width:1041.240000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:24.075000px;}
.y9c{bottom:43.065000px;}
.y3e{bottom:54.060000px;}
.y1{bottom:56.640000px;}
.y5{bottom:57.930000px;}
.y7a{bottom:70.770000px;}
.y4{bottom:76.860000px;}
.y79{bottom:86.460000px;}
.y3b{bottom:96.150000px;}
.y78{bottom:101.940000px;}
.y3a{bottom:111.630000px;}
.y77{bottom:117.600000px;}
.y39{bottom:127.290000px;}
.y76{bottom:133.080000px;}
.y38{bottom:142.770000px;}
.y75{bottom:148.560000px;}
.y37{bottom:158.250000px;}
.y74{bottom:164.220000px;}
.y2{bottom:169.215000px;}
.y36{bottom:173.730000px;}
.y73{bottom:179.700000px;}
.y35{bottom:189.390000px;}
.y72{bottom:195.360000px;}
.y34{bottom:204.690000px;}
.y71{bottom:210.840000px;}
.y33{bottom:220.530000px;}
.y70{bottom:226.320000px;}
.y32{bottom:236.010000px;}
.y3{bottom:236.760000px;}
.y6f{bottom:241.800000px;}
.y31{bottom:251.670000px;}
.y6e{bottom:257.460000px;}
.y30{bottom:267.150000px;}
.y6d{bottom:272.940000px;}
.y2f{bottom:282.630000px;}
.y6c{bottom:288.600000px;}
.y2e{bottom:298.110000px;}
.y6b{bottom:303.900000px;}
.y2d{bottom:313.770000px;}
.y6a{bottom:319.380000px;}
.y2c{bottom:329.250000px;}
.y69{bottom:335.400000px;}
.y2b{bottom:344.595000px;}
.y68{bottom:350.925000px;}
.y67{bottom:366.405000px;}
.y2a{bottom:376.095000px;}
.y66{bottom:382.065000px;}
.y29{bottom:391.755000px;}
.y65{bottom:397.545000px;}
.y28{bottom:407.235000px;}
.y64{bottom:413.205000px;}
.y27{bottom:422.715000px;}
.y63{bottom:428.505000px;}
.y26{bottom:438.195000px;}
.y62{bottom:444.345000px;}
.y25{bottom:453.855000px;}
.y61{bottom:459.825000px;}
.y24{bottom:469.335000px;}
.y60{bottom:475.485000px;}
.y5f{bottom:490.965000px;}
.y23{bottom:500.115000px;}
.y5e{bottom:506.445000px;}
.y5d{bottom:521.925000px;}
.y22{bottom:531.255000px;}
.y5c{bottom:537.585000px;}
.y21{bottom:549.435000px;}
.y5b{bottom:552.885000px;}
.y5a{bottom:568.365000px;}
.y20{bottom:578.415000px;}
.y59{bottom:584.385000px;}
.y1f{bottom:596.595000px;}
.y58{bottom:599.865000px;}
.y1e{bottom:612.105000px;}
.y57{bottom:615.555000px;}
.y1d{bottom:627.585000px;}
.y56{bottom:631.035000px;}
.y1c{bottom:643.245000px;}
.y9b{bottom:644.865000px;}
.y55{bottom:646.695000px;}
.y1b{bottom:658.725000px;}
.y9a{bottom:660.165000px;}
.y54{bottom:662.355000px;}
.y1a{bottom:674.385000px;}
.y53{bottom:674.595000px;}
.y99{bottom:676.005000px;}
.y98{bottom:691.485000px;}
.y19{bottom:696.525000px;}
.y97{bottom:707.145000px;}
.y96{bottom:722.805000px;}
.y18{bottom:723.165000px;}
.y95{bottom:738.285000px;}
.y17{bottom:738.825000px;}
.y94{bottom:753.945000px;}
.y16{bottom:754.305000px;}
.y93{bottom:769.605000px;}
.y92{bottom:785.085000px;}
.y15{bottom:788.865000px;}
.y91{bottom:800.745000px;}
.y14{bottom:810.465000px;}
.y90{bottom:816.405000px;}
.y8f{bottom:831.885000px;}
.y13{bottom:839.085000px;}
.y52{bottom:860.145000px;}
.y8e{bottom:863.205000px;}
.y12{bottom:874.230000px;}
.y51{bottom:875.670000px;}
.y8d{bottom:878.730000px;}
.y50{bottom:891.330000px;}
.y8c{bottom:894.210000px;}
.y4f{bottom:906.810000px;}
.y8b{bottom:909.870000px;}
.y11{bottom:913.110000px;}
.y4e{bottom:922.290000px;}
.y8a{bottom:925.350000px;}
.y4d{bottom:937.770000px;}
.y89{bottom:940.650000px;}
.y4c{bottom:953.430000px;}
.y10{bottom:956.670000px;}
.y4b{bottom:969.090000px;}
.y88{bottom:972.150000px;}
.y4a{bottom:984.210000px;}
.y87{bottom:987.810000px;}
.y49{bottom:1000.230000px;}
.y86{bottom:1003.290000px;}
.y48{bottom:1015.710000px;}
.yf{bottom:1016.070000px;}
.y85{bottom:1018.770000px;}
.y47{bottom:1031.190000px;}
.yc{bottom:1034.070000px;}
.y84{bottom:1034.430000px;}
.ye{bottom:1039.290000px;}
.y46{bottom:1046.850000px;}
.y83{bottom:1049.910000px;}
.yb{bottom:1057.290000px;}
.y45{bottom:1062.510000px;}
.y82{bottom:1065.390000px;}
.yd{bottom:1071.330000px;}
.y44{bottom:1077.990000px;}
.y81{bottom:1081.050000px;}
.ya{bottom:1086.630000px;}
.y43{bottom:1093.470000px;}
.y80{bottom:1096.530000px;}
.y9{bottom:1105.710000px;}
.y42{bottom:1110.030000px;}
.y7f{bottom:1112.010000px;}
.y8{bottom:1122.990000px;}
.y41{bottom:1125.510000px;}
.y7e{bottom:1127.670000px;}
.y7{bottom:1140.300000px;}
.y40{bottom:1142.280000px;}
.y7d{bottom:1143.180000px;}
.y3f{bottom:1157.760000px;}
.y6{bottom:1158.300000px;}
.y7c{bottom:1158.660000px;}
.y3d{bottom:1175.160000px;}
.y3c{bottom:1193.700000px;}
.hb{height:35.314453px;}
.hf{height:38.158594px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hc{height:52.971680px;}
.h11{height:52.998047px;}
.hd{height:54.421875px;}
.h14{height:55.503491px;}
.h7{height:55.796836px;}
.h13{height:55.824609px;}
.h8{height:58.621992px;}
.h12{height:59.092031px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x4{left:30.021750px;}
.xd{left:46.800000px;}
.x10{left:47.814000px;}
.xf{left:50.844000px;}
.x12{left:74.355000px;}
.x13{left:101.385000px;}
.xa{left:154.020000px;}
.x7{left:244.170000px;}
.x5{left:270.300000px;}
.x6{left:290.610000px;}
.x15{left:313.065000px;}
.xc{left:389.970000px;}
.x16{left:401.250000px;}
.xb{left:405.630000px;}
.x1{left:406.950000px;}
.xe{left:412.539000px;}
.x17{left:427.719000px;}
.x11{left:449.529000px;}
.x3{left:465.621750px;}
.x8{left:478.965000px;}
.x9{left:506.580000px;}
.x14{left:689.115000px;}
.x2{left:1058.250000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-58.240000pt;}
.v9{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.v4{vertical-align:-21.120000pt;}
.v8{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.303467pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls16{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.656000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:2.656000pt;}
.ls14{letter-spacing:4.000000pt;}
.ls4{letter-spacing:4.640000pt;}
.ls5{letter-spacing:12.960000pt;}
.ls1a{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls12{letter-spacing:61.002667pt;}
.ls0{letter-spacing:137.760000pt;}
.ls9{letter-spacing:1151.733333pt;}
.ls7{letter-spacing:1215.413333pt;}
.ls18{letter-spacing:1254.133333pt;}
.ls19{letter-spacing:1255.733333pt;}
.ws10{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.313067pt;}
.ws3{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.656000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws9{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.160000pt;}
.wsb{word-spacing:-12.112000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws6{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.704000pt;}
.ws7{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._6{width:2.400000pt;}
._7{width:3.589120pt;}
._8{width:5.055787pt;}
._9{width:6.032213pt;}
._f{width:7.936000pt;}
._b{width:9.648000pt;}
._d{width:10.800000pt;}
._a{width:12.928000pt;}
._e{width:13.898453pt;}
._5{width:58.944000pt;}
._c{width:925.546667pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:21.400000pt;}
.y9c{bottom:38.280000pt;}
.y3e{bottom:48.053333pt;}
.y1{bottom:50.346667pt;}
.y5{bottom:51.493333pt;}
.y7a{bottom:62.906667pt;}
.y4{bottom:68.320000pt;}
.y79{bottom:76.853333pt;}
.y3b{bottom:85.466667pt;}
.y78{bottom:90.613333pt;}
.y3a{bottom:99.226667pt;}
.y77{bottom:104.533333pt;}
.y39{bottom:113.146667pt;}
.y76{bottom:118.293333pt;}
.y38{bottom:126.906667pt;}
.y75{bottom:132.053333pt;}
.y37{bottom:140.666667pt;}
.y74{bottom:145.973333pt;}
.y2{bottom:150.413333pt;}
.y36{bottom:154.426667pt;}
.y73{bottom:159.733333pt;}
.y35{bottom:168.346667pt;}
.y72{bottom:173.653333pt;}
.y34{bottom:181.946667pt;}
.y71{bottom:187.413333pt;}
.y33{bottom:196.026667pt;}
.y70{bottom:201.173333pt;}
.y32{bottom:209.786667pt;}
.y3{bottom:210.453333pt;}
.y6f{bottom:214.933333pt;}
.y31{bottom:223.706667pt;}
.y6e{bottom:228.853333pt;}
.y30{bottom:237.466667pt;}
.y6d{bottom:242.613333pt;}
.y2f{bottom:251.226667pt;}
.y6c{bottom:256.533333pt;}
.y2e{bottom:264.986667pt;}
.y6b{bottom:270.133333pt;}
.y2d{bottom:278.906667pt;}
.y6a{bottom:283.893333pt;}
.y2c{bottom:292.666667pt;}
.y69{bottom:298.133333pt;}
.y2b{bottom:306.306667pt;}
.y68{bottom:311.933333pt;}
.y67{bottom:325.693333pt;}
.y2a{bottom:334.306667pt;}
.y66{bottom:339.613333pt;}
.y29{bottom:348.226667pt;}
.y65{bottom:353.373333pt;}
.y28{bottom:361.986667pt;}
.y64{bottom:367.293333pt;}
.y27{bottom:375.746667pt;}
.y63{bottom:380.893333pt;}
.y26{bottom:389.506667pt;}
.y62{bottom:394.973333pt;}
.y25{bottom:403.426667pt;}
.y61{bottom:408.733333pt;}
.y24{bottom:417.186667pt;}
.y60{bottom:422.653333pt;}
.y5f{bottom:436.413333pt;}
.y23{bottom:444.546667pt;}
.y5e{bottom:450.173333pt;}
.y5d{bottom:463.933333pt;}
.y22{bottom:472.226667pt;}
.y5c{bottom:477.853333pt;}
.y21{bottom:488.386667pt;}
.y5b{bottom:491.453333pt;}
.y5a{bottom:505.213333pt;}
.y20{bottom:514.146667pt;}
.y59{bottom:519.453333pt;}
.y1f{bottom:530.306667pt;}
.y58{bottom:533.213333pt;}
.y1e{bottom:544.093333pt;}
.y57{bottom:547.160000pt;}
.y1d{bottom:557.853333pt;}
.y56{bottom:560.920000pt;}
.y1c{bottom:571.773333pt;}
.y9b{bottom:573.213333pt;}
.y55{bottom:574.840000pt;}
.y1b{bottom:585.533333pt;}
.y9a{bottom:586.813333pt;}
.y54{bottom:588.760000pt;}
.y1a{bottom:599.453333pt;}
.y53{bottom:599.640000pt;}
.y99{bottom:600.893333pt;}
.y98{bottom:614.653333pt;}
.y19{bottom:619.133333pt;}
.y97{bottom:628.573333pt;}
.y96{bottom:642.493333pt;}
.y18{bottom:642.813333pt;}
.y95{bottom:656.253333pt;}
.y17{bottom:656.733333pt;}
.y94{bottom:670.173333pt;}
.y16{bottom:670.493333pt;}
.y93{bottom:684.093333pt;}
.y92{bottom:697.853333pt;}
.y15{bottom:701.213333pt;}
.y91{bottom:711.773333pt;}
.y14{bottom:720.413333pt;}
.y90{bottom:725.693333pt;}
.y8f{bottom:739.453333pt;}
.y13{bottom:745.853333pt;}
.y52{bottom:764.573333pt;}
.y8e{bottom:767.293333pt;}
.y12{bottom:777.093333pt;}
.y51{bottom:778.373333pt;}
.y8d{bottom:781.093333pt;}
.y50{bottom:792.293333pt;}
.y8c{bottom:794.853333pt;}
.y4f{bottom:806.053333pt;}
.y8b{bottom:808.773333pt;}
.y11{bottom:811.653333pt;}
.y4e{bottom:819.813333pt;}
.y8a{bottom:822.533333pt;}
.y4d{bottom:833.573333pt;}
.y89{bottom:836.133333pt;}
.y4c{bottom:847.493333pt;}
.y10{bottom:850.373333pt;}
.y4b{bottom:861.413333pt;}
.y88{bottom:864.133333pt;}
.y4a{bottom:874.853333pt;}
.y87{bottom:878.053333pt;}
.y49{bottom:889.093333pt;}
.y86{bottom:891.813333pt;}
.y48{bottom:902.853333pt;}
.yf{bottom:903.173333pt;}
.y85{bottom:905.573333pt;}
.y47{bottom:916.613333pt;}
.yc{bottom:919.173333pt;}
.y84{bottom:919.493333pt;}
.ye{bottom:923.813333pt;}
.y46{bottom:930.533333pt;}
.y83{bottom:933.253333pt;}
.yb{bottom:939.813333pt;}
.y45{bottom:944.453333pt;}
.y82{bottom:947.013333pt;}
.yd{bottom:952.293333pt;}
.y44{bottom:958.213333pt;}
.y81{bottom:960.933333pt;}
.ya{bottom:965.893333pt;}
.y43{bottom:971.973333pt;}
.y80{bottom:974.693333pt;}
.y9{bottom:982.853333pt;}
.y42{bottom:986.693333pt;}
.y7f{bottom:988.453333pt;}
.y8{bottom:998.213333pt;}
.y41{bottom:1000.453333pt;}
.y7e{bottom:1002.373333pt;}
.y7{bottom:1013.600000pt;}
.y40{bottom:1015.360000pt;}
.y7d{bottom:1016.160000pt;}
.y3f{bottom:1029.120000pt;}
.y6{bottom:1029.600000pt;}
.y7c{bottom:1029.920000pt;}
.y3d{bottom:1044.586667pt;}
.y3c{bottom:1061.066667pt;}
.hb{height:31.390625pt;}
.hf{height:33.918750pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hc{height:47.085938pt;}
.h11{height:47.109375pt;}
.hd{height:48.375000pt;}
.h14{height:49.336436pt;}
.h7{height:49.597187pt;}
.h13{height:49.621875pt;}
.h8{height:52.108438pt;}
.h12{height:52.526250pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x4{left:26.686000pt;}
.xd{left:41.600000pt;}
.x10{left:42.501333pt;}
.xf{left:45.194667pt;}
.x12{left:66.093333pt;}
.x13{left:90.120000pt;}
.xa{left:136.906667pt;}
.x7{left:217.040000pt;}
.x5{left:240.266667pt;}
.x6{left:258.320000pt;}
.x15{left:278.280000pt;}
.xc{left:346.640000pt;}
.x16{left:356.666667pt;}
.xb{left:360.560000pt;}
.x1{left:361.733333pt;}
.xe{left:366.701333pt;}
.x17{left:380.194667pt;}
.x11{left:399.581333pt;}
.x3{left:413.886000pt;}
.x8{left:425.746667pt;}
.x9{left:450.293333pt;}
.x14{left:612.546667pt;}
.x2{left:940.666667pt;}
}




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