
    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_c4f8d31016a1444d29b14a05.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971208;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_8d5e06749af454edea8017ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971224;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.188000px;}
.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:-42.192000px;}
.ws1{word-spacing:-21.096000px;}
.ws13{word-spacing:-16.902000px;}
.wsd{word-spacing:-15.822000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:42.979500px;}
.wsa{word-spacing:43.965000px;}
.ws7{word-spacing:45.598500px;}
.ws9{word-spacing:46.984500px;}
.ws8{word-spacing:60.979500px;}
.ws5{word-spacing:78.237000px;}
.ws4{word-spacing:97.965000px;}
.wsc{word-spacing:210.276000px;}
.ws3{word-spacing:350.999437px;}
.ws16{word-spacing:1041.966000px;}
.wsf{word-spacing:1135.206000px;}
.ws11{word-spacing:1189.206000px;}
.ws15{word-spacing:1232.514000px;}
.wse{word-spacing:1250.514000px;}
.wsb{word-spacing:1275.979500px;}
.ws12{word-spacing:1277.514000px;}
.ws10{word-spacing:1283.562000px;}
.ws14{word-spacing:1295.514000px;}
._38{margin-left:-8.028000px;}
._15{margin-left:-6.048000px;}
._40{margin-left:-4.230000px;}
._4{margin-left:-2.628000px;}
._0{margin-left:-1.152000px;}
._2{width:1.008000px;}
._1{width:2.124000px;}
._5{width:3.240000px;}
._3{width:4.680000px;}
._3a{width:6.336000px;}
._39{width:56.520000px;}
._11{width:58.104000px;}
._28{width:59.152500px;}
._12{width:60.228000px;}
._f{width:62.280000px;}
._23{width:63.459563px;}
._e{width:70.920000px;}
._24{width:77.035500px;}
._14{width:80.856000px;}
._2e{width:90.639000px;}
._37{width:103.981500px;}
._1f{width:113.737500px;}
._21{width:115.996500px;}
._1d{width:118.179000px;}
._20{width:119.623500px;}
._2a{width:121.248000px;}
._1e{width:128.740500px;}
._6{width:134.999437px;}
._c{width:144.611437px;}
._8{width:148.571437px;}
._32{width:175.270500px;}
._26{width:184.270500px;}
._d{width:186.120000px;}
._10{width:195.768000px;}
._13{width:196.776000px;}
._30{width:198.445500px;}
._22{width:207.445500px;}
._a{width:216.215438px;}
._3b{width:237.996000px;}
._2f{width:263.061000px;}
._9{width:270.143438px;}
._1c{width:272.061000px;}
._7{width:279.827437px;}
._3c{width:282.996000px;}
._3d{width:288.144000px;}
._31{width:301.932000px;}
._1a{width:305.208000px;}
._3f{width:314.783437px;}
._25{width:328.959000px;}
._18{width:355.500000px;}
._3e{width:391.571437px;}
._1b{width:394.164000px;}
._b{width:409.247438px;}
._17{width:424.044000px;}
._27{width:450.769500px;}
._33{width:477.796500px;}
._19{width:532.980000px;}
._34{width:575.883563px;}
._29{width:585.203063px;}
._16{width:606.060000px;}
._52{width:637.002000px;}
._6f{width:669.600000px;}
._50{width:677.754000px;}
._6c{width:700.668000px;}
._4a{width:746.874000px;}
._56{width:751.086000px;}
._2b{width:752.215500px;}
._62{width:753.750000px;}
._54{width:777.582000px;}
._35{width:778.918500px;}
._6e{width:790.758000px;}
._51{width:798.264000px;}
._4c{width:806.760000px;}
._66{width:809.226000px;}
._4e{width:810.990000px;}
._6b{width:854.154000px;}
._4b{width:875.088000px;}
._45{width:890.532000px;}
._46{width:899.442000px;}
._2c{width:927.391500px;}
._59{width:947.736000px;}
._5f{width:951.012000px;}
._6a{width:955.746000px;}
._47{width:965.484000px;}
._36{width:981.445500px;}
._58{width:982.944000px;}
._42{width:989.730000px;}
._5e{width:993.528000px;}
._55{width:1002.474000px;}
._68{width:1011.942000px;}
._67{width:1015.596000px;}
._5d{width:1019.844000px;}
._53{width:1028.556000px;}
._4d{width:1030.482000px;}
._5b{width:1031.760000px;}
._6d{width:1041.804000px;}
._4f{width:1043.658000px;}
._69{width:1055.286000px;}
._65{width:1061.010000px;}
._43{width:1064.898000px;}
._70{width:1069.182000px;}
._63{width:1075.122000px;}
._41{width:1078.542000px;}
._57{width:1095.606000px;}
._61{width:1101.582000px;}
._2d{width:1116.279000px;}
._5a{width:1122.966000px;}
._48{width:1158.732000px;}
._49{width:1186.308000px;}
._60{width:1250.208000px;}
._64{width:1254.150000px;}
._5c{width:1266.642000px;}
._74{width:1274.868000px;}
._44{width:1294.614000px;}
._72{width:1336.320000px;}
._73{width:1346.868000px;}
._71{width:1374.066000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:49.500000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:67.511719px;}
.yb3{bottom:107.625000px;}
.y7b{bottom:108.750000px;}
.yb2{bottom:127.875000px;}
.y7a{bottom:129.000000px;}
.yb1{bottom:147.000000px;}
.y79{bottom:148.125000px;}
.yb0{bottom:166.125000px;}
.y78{bottom:167.250000px;}
.y25{bottom:177.199219px;}
.yaf{bottom:186.375000px;}
.y77{bottom:187.500000px;}
.yae{bottom:205.500000px;}
.y76{bottom:206.625000px;}
.y24{bottom:211.687500px;}
.yad{bottom:224.625000px;}
.y75{bottom:225.750000px;}
.y23{bottom:244.312500px;}
.yac{bottom:244.875000px;}
.y74{bottom:246.000000px;}
.y35{bottom:250.324219px;}
.yab{bottom:264.000000px;}
.y73{bottom:265.125000px;}
.y22{bottom:278.062500px;}
.yaa{bottom:283.125000px;}
.y72{bottom:284.250000px;}
.y34{bottom:284.812500px;}
.ya9{bottom:303.375000px;}
.y71{bottom:304.500000px;}
.y33{bottom:311.812500px;}
.y47{bottom:315.011719px;}
.ya8{bottom:322.500000px;}
.y70{bottom:323.625000px;}
.y32{bottom:338.812500px;}
.ya7{bottom:341.625000px;}
.y46{bottom:342.574219px;}
.y6f{bottom:342.750000px;}
.ya6{bottom:361.875000px;}
.y6e{bottom:363.000000px;}
.y31{bottom:366.937500px;}
.y45{bottom:377.062500px;}
.ya5{bottom:381.000000px;}
.y6d{bottom:382.125000px;}
.y21{bottom:384.199219px;}
.y30{bottom:393.937500px;}
.ya4{bottom:400.125000px;}
.y6c{bottom:401.250000px;}
.y44{bottom:409.687500px;}
.y20{bottom:414.205078px;}
.ya3{bottom:420.375000px;}
.y2f{bottom:420.937500px;}
.y6b{bottom:421.500000px;}
.ya2{bottom:439.500000px;}
.y6a{bottom:440.625000px;}
.y1f{bottom:444.193359px;}
.y2e{bottom:449.062500px;}
.ya1{bottom:458.625000px;}
.y69{bottom:459.750000px;}
.y1e{bottom:474.199219px;}
.y2d{bottom:476.062500px;}
.ya0{bottom:478.875000px;}
.y68{bottom:480.000000px;}
.y43{bottom:481.142578px;}
.y9f{bottom:498.000000px;}
.y67{bottom:499.125000px;}
.y2c{bottom:503.062500px;}
.y42{bottom:508.705078px;}
.y9e{bottom:517.125000px;}
.y66{bottom:518.250000px;}
.y1d{bottom:536.267578px;}
.y9d{bottom:537.375000px;}
.y65{bottom:538.500000px;}
.y9c{bottom:556.500000px;}
.y64{bottom:557.625000px;}
.y2b{bottom:569.437500px;}
.y9b{bottom:575.625000px;}
.y1c{bottom:575.642578px;}
.y63{bottom:576.750000px;}
.y9a{bottom:595.875000px;}
.y62{bottom:597.000000px;}
.y2a{bottom:602.062500px;}
.y99{bottom:615.000000px;}
.y61{bottom:616.125000px;}
.y98{bottom:634.125000px;}
.y60{bottom:635.250000px;}
.y29{bottom:650.437500px;}
.y97{bottom:654.375000px;}
.y5f{bottom:655.500000px;}
.y96{bottom:673.500000px;}
.y5e{bottom:674.625000px;}
.y28{bottom:683.062500px;}
.y95{bottom:692.625000px;}
.y5d{bottom:693.750000px;}
.y94{bottom:712.875000px;}
.y5c{bottom:714.000000px;}
.y93{bottom:732.000000px;}
.y5b{bottom:733.125000px;}
.y92{bottom:751.125000px;}
.y5a{bottom:752.250000px;}
.y27{bottom:753.761719px;}
.yf{bottom:769.705078px;}
.y91{bottom:771.375000px;}
.y59{bottom:772.500000px;}
.y26{bottom:773.625000px;}
.y90{bottom:790.500000px;}
.y58{bottom:791.625000px;}
.ye{bottom:797.267578px;}
.y48{bottom:797.812500px;}
.y8f{bottom:809.625000px;}
.y57{bottom:810.750000px;}
.yd{bottom:818.642578px;}
.y8e{bottom:829.875000px;}
.y56{bottom:831.000000px;}
.yc{bottom:840.017578px;}
.y8d{bottom:849.000000px;}
.y55{bottom:850.125000px;}
.yb{bottom:861.392578px;}
.y41{bottom:863.625000px;}
.y8c{bottom:868.125000px;}
.y54{bottom:869.250000px;}
.ya{bottom:882.767578px;}
.y8b{bottom:888.375000px;}
.y53{bottom:889.500000px;}
.y9{bottom:904.142578px;}
.y8a{bottom:907.500000px;}
.y52{bottom:908.625000px;}
.y36{bottom:911.437500px;}
.y8{bottom:925.517578px;}
.y89{bottom:926.625000px;}
.y51{bottom:927.750000px;}
.y37{bottom:929.437500px;}
.y12{bottom:930.562500px;}
.y88{bottom:946.875000px;}
.y7{bottom:946.892578px;}
.y38{bottom:947.437500px;}
.y50{bottom:948.000000px;}
.y13{bottom:948.562500px;}
.y39{bottom:965.437500px;}
.y87{bottom:966.000000px;}
.y14{bottom:966.562500px;}
.y4f{bottom:967.125000px;}
.y6{bottom:968.267578px;}
.y3a{bottom:983.437500px;}
.y15{bottom:984.562500px;}
.y86{bottom:985.125000px;}
.y4e{bottom:986.250000px;}
.y5{bottom:989.642578px;}
.y3b{bottom:1001.437500px;}
.y16{bottom:1002.562500px;}
.y85{bottom:1005.375000px;}
.y4d{bottom:1006.500000px;}
.y4{bottom:1011.017578px;}
.y3c{bottom:1019.437500px;}
.y17{bottom:1020.562500px;}
.y84{bottom:1024.500000px;}
.y4c{bottom:1025.625000px;}
.y3{bottom:1032.392578px;}
.y3d{bottom:1037.437500px;}
.y18{bottom:1038.562500px;}
.y83{bottom:1043.625000px;}
.y4b{bottom:1044.750000px;}
.y2{bottom:1053.767578px;}
.y3e{bottom:1055.437500px;}
.y19{bottom:1056.562500px;}
.y82{bottom:1063.875000px;}
.y4a{bottom:1065.000000px;}
.y3f{bottom:1073.437500px;}
.y1a{bottom:1074.562500px;}
.y81{bottom:1083.000000px;}
.y40{bottom:1091.437500px;}
.y1{bottom:1092.000000px;}
.y1b{bottom:1092.562500px;}
.y49{bottom:1097.062500px;}
.y80{bottom:1102.125000px;}
.y7f{bottom:1122.375000px;}
.y7e{bottom:1141.500000px;}
.y11{bottom:1159.500000px;}
.y7d{bottom:1160.625000px;}
.y7c{bottom:1180.875000px;}
.h3{height:37.850098px;}
.h4{height:41.291016px;}
.h2{height:55.054688px;}
.h1{height:110.109375px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:67.500000px;}
.x28{left:69.750000px;}
.x12{left:71.244141px;}
.x18{left:74.250000px;}
.x29{left:87.750000px;}
.x14{left:102.375000px;}
.x2a{left:105.750000px;}
.x24{left:113.625000px;}
.x22{left:119.988281px;}
.x1a{left:182.250000px;}
.x1e{left:183.375000px;}
.x19{left:212.625000px;}
.x1d{left:213.750000px;}
.x23{left:221.800781px;}
.x1b{left:229.113281px;}
.x17{left:253.863281px;}
.x1c{left:256.675781px;}
.x21{left:267.363281px;}
.x11{left:270.738281px;}
.x26{left:287.613281px;}
.x25{left:289.863281px;}
.xb{left:298.863281px;}
.x6{left:305.050781px;}
.xa{left:316.863281px;}
.x2{left:318.550781px;}
.x9{left:326.988281px;}
.x4{left:329.238281px;}
.x1{left:333.738281px;}
.x8{left:341.050781px;}
.x7{left:344.988281px;}
.x5{left:348.925781px;}
.xc{left:360.738281px;}
.x15{left:374.800781px;}
.x2c{left:414.175781px;}
.xd{left:419.238281px;}
.x3{left:422.613281px;}
.x13{left:446.238281px;}
.x2b{left:448.875000px;}
.x16{left:540.000000px;}
.x10{left:618.240234px;}
.x27{left:714.375000px;}
.xf{left:715.500000px;}
.x1f{left:718.875000px;}
.x20{left:728.437500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.056000pt;}
.ws0{word-spacing:-37.504000pt;}
.ws1{word-spacing:-18.752000pt;}
.ws13{word-spacing:-15.024000pt;}
.wsd{word-spacing:-14.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:38.204000pt;}
.wsa{word-spacing:39.080000pt;}
.ws7{word-spacing:40.532000pt;}
.ws9{word-spacing:41.764000pt;}
.ws8{word-spacing:54.204000pt;}
.ws5{word-spacing:69.544000pt;}
.ws4{word-spacing:87.080000pt;}
.wsc{word-spacing:186.912000pt;}
.ws3{word-spacing:311.999500pt;}
.ws16{word-spacing:926.192000pt;}
.wsf{word-spacing:1009.072000pt;}
.ws11{word-spacing:1057.072000pt;}
.ws15{word-spacing:1095.568000pt;}
.wse{word-spacing:1111.568000pt;}
.wsb{word-spacing:1134.204000pt;}
.ws12{word-spacing:1135.568000pt;}
.ws10{word-spacing:1140.944000pt;}
.ws14{word-spacing:1151.568000pt;}
._38{margin-left:-7.136000pt;}
._15{margin-left:-5.376000pt;}
._40{margin-left:-3.760000pt;}
._4{margin-left:-2.336000pt;}
._0{margin-left:-1.024000pt;}
._2{width:0.896000pt;}
._1{width:1.888000pt;}
._5{width:2.880000pt;}
._3{width:4.160000pt;}
._3a{width:5.632000pt;}
._39{width:50.240000pt;}
._11{width:51.648000pt;}
._28{width:52.580000pt;}
._12{width:53.536000pt;}
._f{width:55.360000pt;}
._23{width:56.408500pt;}
._e{width:63.040000pt;}
._24{width:68.476000pt;}
._14{width:71.872000pt;}
._2e{width:80.568000pt;}
._37{width:92.428000pt;}
._1f{width:101.100000pt;}
._21{width:103.108000pt;}
._1d{width:105.048000pt;}
._20{width:106.332000pt;}
._2a{width:107.776000pt;}
._1e{width:114.436000pt;}
._6{width:119.999500pt;}
._c{width:128.543500pt;}
._8{width:132.063500pt;}
._32{width:155.796000pt;}
._26{width:163.796000pt;}
._d{width:165.440000pt;}
._10{width:174.016000pt;}
._13{width:174.912000pt;}
._30{width:176.396000pt;}
._22{width:184.396000pt;}
._a{width:192.191500pt;}
._3b{width:211.552000pt;}
._2f{width:233.832000pt;}
._9{width:240.127500pt;}
._1c{width:241.832000pt;}
._7{width:248.735500pt;}
._3c{width:251.552000pt;}
._3d{width:256.128000pt;}
._31{width:268.384000pt;}
._1a{width:271.296000pt;}
._3f{width:279.807500pt;}
._25{width:292.408000pt;}
._18{width:316.000000pt;}
._3e{width:348.063500pt;}
._1b{width:350.368000pt;}
._b{width:363.775500pt;}
._17{width:376.928000pt;}
._27{width:400.684000pt;}
._33{width:424.708000pt;}
._19{width:473.760000pt;}
._34{width:511.896500pt;}
._29{width:520.180500pt;}
._16{width:538.720000pt;}
._52{width:566.224000pt;}
._6f{width:595.200000pt;}
._50{width:602.448000pt;}
._6c{width:622.816000pt;}
._4a{width:663.888000pt;}
._56{width:667.632000pt;}
._2b{width:668.636000pt;}
._62{width:670.000000pt;}
._54{width:691.184000pt;}
._35{width:692.372000pt;}
._6e{width:702.896000pt;}
._51{width:709.568000pt;}
._4c{width:717.120000pt;}
._66{width:719.312000pt;}
._4e{width:720.880000pt;}
._6b{width:759.248000pt;}
._4b{width:777.856000pt;}
._45{width:791.584000pt;}
._46{width:799.504000pt;}
._2c{width:824.348000pt;}
._59{width:842.432000pt;}
._5f{width:845.344000pt;}
._6a{width:849.552000pt;}
._47{width:858.208000pt;}
._36{width:872.396000pt;}
._58{width:873.728000pt;}
._42{width:879.760000pt;}
._5e{width:883.136000pt;}
._55{width:891.088000pt;}
._68{width:899.504000pt;}
._67{width:902.752000pt;}
._5d{width:906.528000pt;}
._53{width:914.272000pt;}
._4d{width:915.984000pt;}
._5b{width:917.120000pt;}
._6d{width:926.048000pt;}
._4f{width:927.696000pt;}
._69{width:938.032000pt;}
._65{width:943.120000pt;}
._43{width:946.576000pt;}
._70{width:950.384000pt;}
._63{width:955.664000pt;}
._41{width:958.704000pt;}
._57{width:973.872000pt;}
._61{width:979.184000pt;}
._2d{width:992.248000pt;}
._5a{width:998.192000pt;}
._48{width:1029.984000pt;}
._49{width:1054.496000pt;}
._60{width:1111.296000pt;}
._64{width:1114.800000pt;}
._5c{width:1125.904000pt;}
._74{width:1133.216000pt;}
._44{width:1150.768000pt;}
._72{width:1187.840000pt;}
._73{width:1197.216000pt;}
._71{width:1221.392000pt;}
.fs2{font-size:44.000000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:60.010417pt;}
.yb3{bottom:95.666667pt;}
.y7b{bottom:96.666667pt;}
.yb2{bottom:113.666667pt;}
.y7a{bottom:114.666667pt;}
.yb1{bottom:130.666667pt;}
.y79{bottom:131.666667pt;}
.yb0{bottom:147.666667pt;}
.y78{bottom:148.666667pt;}
.y25{bottom:157.510417pt;}
.yaf{bottom:165.666667pt;}
.y77{bottom:166.666667pt;}
.yae{bottom:182.666667pt;}
.y76{bottom:183.666667pt;}
.y24{bottom:188.166667pt;}
.yad{bottom:199.666667pt;}
.y75{bottom:200.666667pt;}
.y23{bottom:217.166667pt;}
.yac{bottom:217.666667pt;}
.y74{bottom:218.666667pt;}
.y35{bottom:222.510417pt;}
.yab{bottom:234.666667pt;}
.y73{bottom:235.666667pt;}
.y22{bottom:247.166667pt;}
.yaa{bottom:251.666667pt;}
.y72{bottom:252.666667pt;}
.y34{bottom:253.166667pt;}
.ya9{bottom:269.666667pt;}
.y71{bottom:270.666667pt;}
.y33{bottom:277.166667pt;}
.y47{bottom:280.010417pt;}
.ya8{bottom:286.666667pt;}
.y70{bottom:287.666667pt;}
.y32{bottom:301.166667pt;}
.ya7{bottom:303.666667pt;}
.y46{bottom:304.510417pt;}
.y6f{bottom:304.666667pt;}
.ya6{bottom:321.666667pt;}
.y6e{bottom:322.666667pt;}
.y31{bottom:326.166667pt;}
.y45{bottom:335.166667pt;}
.ya5{bottom:338.666667pt;}
.y6d{bottom:339.666667pt;}
.y21{bottom:341.510417pt;}
.y30{bottom:350.166667pt;}
.ya4{bottom:355.666667pt;}
.y6c{bottom:356.666667pt;}
.y44{bottom:364.166667pt;}
.y20{bottom:368.182292pt;}
.ya3{bottom:373.666667pt;}
.y2f{bottom:374.166667pt;}
.y6b{bottom:374.666667pt;}
.ya2{bottom:390.666667pt;}
.y6a{bottom:391.666667pt;}
.y1f{bottom:394.838542pt;}
.y2e{bottom:399.166667pt;}
.ya1{bottom:407.666667pt;}
.y69{bottom:408.666667pt;}
.y1e{bottom:421.510417pt;}
.y2d{bottom:423.166667pt;}
.ya0{bottom:425.666667pt;}
.y68{bottom:426.666667pt;}
.y43{bottom:427.682292pt;}
.y9f{bottom:442.666667pt;}
.y67{bottom:443.666667pt;}
.y2c{bottom:447.166667pt;}
.y42{bottom:452.182292pt;}
.y9e{bottom:459.666667pt;}
.y66{bottom:460.666667pt;}
.y1d{bottom:476.682292pt;}
.y9d{bottom:477.666667pt;}
.y65{bottom:478.666667pt;}
.y9c{bottom:494.666667pt;}
.y64{bottom:495.666667pt;}
.y2b{bottom:506.166667pt;}
.y9b{bottom:511.666667pt;}
.y1c{bottom:511.682292pt;}
.y63{bottom:512.666667pt;}
.y9a{bottom:529.666667pt;}
.y62{bottom:530.666667pt;}
.y2a{bottom:535.166667pt;}
.y99{bottom:546.666667pt;}
.y61{bottom:547.666667pt;}
.y98{bottom:563.666667pt;}
.y60{bottom:564.666667pt;}
.y29{bottom:578.166667pt;}
.y97{bottom:581.666667pt;}
.y5f{bottom:582.666667pt;}
.y96{bottom:598.666667pt;}
.y5e{bottom:599.666667pt;}
.y28{bottom:607.166667pt;}
.y95{bottom:615.666667pt;}
.y5d{bottom:616.666667pt;}
.y94{bottom:633.666667pt;}
.y5c{bottom:634.666667pt;}
.y93{bottom:650.666667pt;}
.y5b{bottom:651.666667pt;}
.y92{bottom:667.666667pt;}
.y5a{bottom:668.666667pt;}
.y27{bottom:670.010417pt;}
.yf{bottom:684.182292pt;}
.y91{bottom:685.666667pt;}
.y59{bottom:686.666667pt;}
.y26{bottom:687.666667pt;}
.y90{bottom:702.666667pt;}
.y58{bottom:703.666667pt;}
.ye{bottom:708.682292pt;}
.y48{bottom:709.166667pt;}
.y8f{bottom:719.666667pt;}
.y57{bottom:720.666667pt;}
.yd{bottom:727.682292pt;}
.y8e{bottom:737.666667pt;}
.y56{bottom:738.666667pt;}
.yc{bottom:746.682292pt;}
.y8d{bottom:754.666667pt;}
.y55{bottom:755.666667pt;}
.yb{bottom:765.682292pt;}
.y41{bottom:767.666667pt;}
.y8c{bottom:771.666667pt;}
.y54{bottom:772.666667pt;}
.ya{bottom:784.682292pt;}
.y8b{bottom:789.666667pt;}
.y53{bottom:790.666667pt;}
.y9{bottom:803.682292pt;}
.y8a{bottom:806.666667pt;}
.y52{bottom:807.666667pt;}
.y36{bottom:810.166667pt;}
.y8{bottom:822.682292pt;}
.y89{bottom:823.666667pt;}
.y51{bottom:824.666667pt;}
.y37{bottom:826.166667pt;}
.y12{bottom:827.166667pt;}
.y88{bottom:841.666667pt;}
.y7{bottom:841.682292pt;}
.y38{bottom:842.166667pt;}
.y50{bottom:842.666667pt;}
.y13{bottom:843.166667pt;}
.y39{bottom:858.166667pt;}
.y87{bottom:858.666667pt;}
.y14{bottom:859.166667pt;}
.y4f{bottom:859.666667pt;}
.y6{bottom:860.682292pt;}
.y3a{bottom:874.166667pt;}
.y15{bottom:875.166667pt;}
.y86{bottom:875.666667pt;}
.y4e{bottom:876.666667pt;}
.y5{bottom:879.682292pt;}
.y3b{bottom:890.166667pt;}
.y16{bottom:891.166667pt;}
.y85{bottom:893.666667pt;}
.y4d{bottom:894.666667pt;}
.y4{bottom:898.682292pt;}
.y3c{bottom:906.166667pt;}
.y17{bottom:907.166667pt;}
.y84{bottom:910.666667pt;}
.y4c{bottom:911.666667pt;}
.y3{bottom:917.682292pt;}
.y3d{bottom:922.166667pt;}
.y18{bottom:923.166667pt;}
.y83{bottom:927.666667pt;}
.y4b{bottom:928.666667pt;}
.y2{bottom:936.682292pt;}
.y3e{bottom:938.166667pt;}
.y19{bottom:939.166667pt;}
.y82{bottom:945.666667pt;}
.y4a{bottom:946.666667pt;}
.y3f{bottom:954.166667pt;}
.y1a{bottom:955.166667pt;}
.y81{bottom:962.666667pt;}
.y40{bottom:970.166667pt;}
.y1{bottom:970.666667pt;}
.y1b{bottom:971.166667pt;}
.y49{bottom:975.166667pt;}
.y80{bottom:979.666667pt;}
.y7f{bottom:997.666667pt;}
.y7e{bottom:1014.666667pt;}
.y11{bottom:1030.666667pt;}
.y7d{bottom:1031.666667pt;}
.y7c{bottom:1049.666667pt;}
.h3{height:33.644531pt;}
.h4{height:36.703125pt;}
.h2{height:48.937500pt;}
.h1{height:97.875000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:60.000000pt;}
.x28{left:62.000000pt;}
.x12{left:63.328125pt;}
.x18{left:66.000000pt;}
.x29{left:78.000000pt;}
.x14{left:91.000000pt;}
.x2a{left:94.000000pt;}
.x24{left:101.000000pt;}
.x22{left:106.656250pt;}
.x1a{left:162.000000pt;}
.x1e{left:163.000000pt;}
.x19{left:189.000000pt;}
.x1d{left:190.000000pt;}
.x23{left:197.156250pt;}
.x1b{left:203.656250pt;}
.x17{left:225.656250pt;}
.x1c{left:228.156250pt;}
.x21{left:237.656250pt;}
.x11{left:240.656250pt;}
.x26{left:255.656250pt;}
.x25{left:257.656250pt;}
.xb{left:265.656250pt;}
.x6{left:271.156250pt;}
.xa{left:281.656250pt;}
.x2{left:283.156250pt;}
.x9{left:290.656250pt;}
.x4{left:292.656250pt;}
.x1{left:296.656250pt;}
.x8{left:303.156250pt;}
.x7{left:306.656250pt;}
.x5{left:310.156250pt;}
.xc{left:320.656250pt;}
.x15{left:333.156250pt;}
.x2c{left:368.156250pt;}
.xd{left:372.656250pt;}
.x3{left:375.656250pt;}
.x13{left:396.656250pt;}
.x2b{left:399.000000pt;}
.x16{left:480.000000pt;}
.x10{left:549.546875pt;}
.x27{left:635.000000pt;}
.xf{left:636.000000pt;}
.x1f{left:639.000000pt;}
.x20{left:647.500000pt;}
}




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