
    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_4ed12d7bc98b34ebda8da80b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_2594bcff0163db7cd39b576d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_1ba7e619b1f4dd806132ad26.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.085938;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_a246343abec04afa6c9adf69.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_069dcc8fba4ba596e5316f16.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012938px;}
.ls3{letter-spacing:0.046408px;}
.ls7{letter-spacing:29.015206px;}
.ls6{letter-spacing:64.085816px;}
.ls5{letter-spacing:844.055111px;}
.ls0{letter-spacing:844.055215px;}
.ls4{letter-spacing:844.055251px;}
.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;}
}
.ws3{word-spacing:-59.762250px;}
.ws2{word-spacing:-14.629487px;}
.ws1{word-spacing:-14.616549px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-6.207353px;}
._0{margin-left:-4.194157px;}
._3{margin-left:-3.187560px;}
._1{margin-left:-1.845429px;}
._4{width:1.093260px;}
._5{width:2.351091px;}
._6{width:3.563765px;}
.fc2{color:rgb(15,71,97);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.762250px;}
.fs0{font-size:72.002705px;}
.fs3{font-size:95.763600px;}
.fs2{font-size:120.244505px;}
.fs1{font-size:167.766296px;}
.y0{bottom:0.000000px;}
.y2a{bottom:4.859940px;}
.y1f{bottom:4.859973px;}
.y23{bottom:4.859974px;}
.y14{bottom:4.859991px;}
.y4a{bottom:4.859992px;}
.y16{bottom:4.860008px;}
.y1a{bottom:4.860009px;}
.y3{bottom:58.140060px;}
.y2{bottom:80.100083px;}
.y97{bottom:115.200096px;}
.ycd{bottom:124.560036px;}
.ye8{bottom:126.360077px;}
.y96{bottom:140.760064px;}
.ycc{bottom:149.940033px;}
.ye7{bottom:163.800041px;}
.y95{bottom:178.200096px;}
.ycb{bottom:187.380066px;}
.ye6{bottom:201.420043px;}
.y38{bottom:206.640060px;}
.y94{bottom:215.640060px;}
.yca{bottom:225.000068px;}
.ye5{bottom:238.860077px;}
.y76{bottom:241.740074px;}
.y93{bottom:253.080093px;}
.yb3{bottom:257.040047px;}
.yc9{bottom:262.440033px;}
.y75{bottom:267.120072px;}
.ye4{bottom:276.300041px;}
.y37{bottom:279.000068px;}
.y92{bottom:290.520058px;}
.y74{bottom:292.500068px;}
.yb2{bottom:294.480079px;}
.yc8{bottom:299.880066px;}
.ye3{bottom:301.680039px;}
.y36{bottom:304.380066px;}
.y91{bottom:315.900055px;}
.y73{bottom:318.060036px;}
.yb1{bottom:331.920043px;}
.yc7{bottom:337.320099px;}
.ye2{bottom:339.120072px;}
.y90{bottom:341.460091px;}
.y35{bottom:341.820099px;}
.y72{bottom:343.440033px;}
.yb0{bottom:357.300041px;}
.yc6{bottom:362.700096px;}
.y34{bottom:364.500068px;}
.ye1{bottom:376.560036px;}
.y8f{bottom:378.900055px;}
.y71{bottom:380.880066px;}
.y33{bottom:386.460091px;}
.yaf{bottom:394.740074px;}
.yc5{bottom:400.140060px;}
.y8e{bottom:404.280052px;}
.y70{bottom:406.440033px;}
.y32{bottom:408.420043px;}
.ye0{bottom:414.000068px;}
.yae{bottom:420.300041px;}
.y31{bottom:425.520058px;}
.y6f{bottom:431.820099px;}
.yc4{bottom:437.580093px;}
.y8d{bottom:441.720085px;}
.ydf{bottom:451.440033px;}
.y30{bottom:453.240074px;}
.y6e{bottom:457.200096px;}
.yad{bottom:457.740074px;}
.y8c{bottom:467.280052px;}
.y2f{bottom:470.340088px;}
.yc3{bottom:475.020058px;}
.y6d{bottom:482.760064px;}
.yde{bottom:488.880066px;}
.y2e{bottom:493.020058px;}
.yac{bottom:495.180039px;}
.y8b{bottom:504.720085px;}
.yc2{bottom:512.460091px;}
.y6c{bottom:520.200096px;}
.y2d{bottom:520.560036px;}
.ydd{bottom:526.320099px;}
.y8a{bottom:530.100083px;}
.yab{bottom:532.620072px;}
.y2c{bottom:542.520058px;}
.y6b{bottom:545.580093px;}
.yc1{bottom:549.900055px;}
.y89{bottom:555.480079px;}
.yaa{bottom:558.000068px;}
.ydc{bottom:563.940033px;}
.y2b{bottom:564.480079px;}
.y6a{bottom:571.140060px;}
.y29{bottom:581.580093px;}
.yc0{bottom:587.520058px;}
.y88{bottom:593.100083px;}
.ya9{bottom:595.440033px;}
.y69{bottom:596.520058px;}
.ydb{bottom:601.380066px;}
.y28{bottom:604.440033px;}
.y11{bottom:605.160049px;}
.y87{bottom:618.480079px;}
.y68{bottom:621.900055px;}
.ybf{bottom:624.960091px;}
.ya8{bottom:632.880066px;}
.yda{bottom:638.820099px;}
.y10{bottom:642.600083px;}
.y86{bottom:643.860077px;}
.y27{bottom:647.280052px;}
.ya7{bottom:658.440033px;}
.y67{bottom:659.520058px;}
.ybe{bottom:662.400055px;}
.yd9{bottom:676.260064px;}
.yf{bottom:680.040047px;}
.y85{bottom:681.300041px;}
.ya6{bottom:683.820099px;}
.y66{bottom:684.900055px;}
.y45{bottom:699.660049px;}
.ybd{bottom:699.840054px;}
.y26{bottom:703.260064px;}
.y84{bottom:706.860077px;}
.ya5{bottom:709.380066px;}
.y65{bottom:710.280052px;}
.yd8{bottom:713.700061px;}
.ye{bottom:717.480079px;}
.ybc{bottom:725.220051px;}
.y25{bottom:725.940067px;}
.ya4{bottom:734.760064px;}
.y64{bottom:735.840054px;}
.y44{bottom:737.100083px;}
.y83{bottom:744.300076px;}
.y24{bottom:748.800076px;}
.yd7{bottom:751.140060px;}
.yd{bottom:754.920078px;}
.ya3{bottom:760.140060px;}
.y63{bottom:761.220051px;}
.ybb{bottom:762.660049px;}
.y43{bottom:770.040081px;}
.y22{bottom:771.480079px;}
.y54{bottom:781.020058px;}
.y82{bottom:781.740074px;}
.yba{bottom:788.220051px;}
.yd6{bottom:788.580059px;}
.yc{bottom:792.360077px;}
.ya2{bottom:797.580059px;}
.y62{bottom:798.660049px;}
.y53{bottom:798.840054px;}
.y21{bottom:799.020058px;}
.y42{bottom:802.980079px;}
.yb9{bottom:813.600083px;}
.y20{bottom:816.120072px;}
.y81{bottom:819.180073px;}
.y52{bottom:821.700061px;}
.y5e{bottom:824.220051px;}
.yd5{bottom:826.020058px;}
.yb{bottom:829.800076px;}
.ya1{bottom:835.200061px;}
.y41{bottom:835.920078px;}
.y1e{bottom:838.800076px;}
.yb8{bottom:838.980079px;}
.y51{bottom:844.380066px;}
.y80{bottom:844.560070px;}
.y5d{bottom:849.600083px;}
.ya0{bottom:860.580059px;}
.y1d{bottom:861.660049px;}
.yd4{bottom:863.460056px;}
.y50{bottom:867.060070px;}
.ya{bottom:867.240074px;}
.y40{bottom:868.860077px;}
.y7f{bottom:870.120072px;}
.y61{bottom:874.980079px;}
.yb7{bottom:876.420078px;}
.y1c{bottom:884.340054px;}
.y9f{bottom:885.960056px;}
.y5c{bottom:887.040081px;}
.y4f{bottom:889.740074px;}
.y7e{bottom:895.500068px;}
.yd3{bottom:900.900055px;}
.y3f{bottom:901.800076px;}
.y9{bottom:904.680073px;}
.y1b{bottom:907.020058px;}
.y9e{bottom:911.520058px;}
.y5b{bottom:912.420078px;}
.y4e{bottom:912.600083px;}
.yb6{bottom:914.040081px;}
.y19{bottom:929.700061px;}
.y7d{bottom:932.940067px;}
.y3e{bottom:934.740074px;}
.y4d{bottom:935.280052px;}
.y5a{bottom:937.980079px;}
.yd2{bottom:938.340054px;}
.y8{bottom:942.120072px;}
.y9d{bottom:948.960056px;}
.yb5{bottom:951.480079px;}
.y18{bottom:957.420078px;}
.y4c{bottom:957.960056px;}
.y7c{bottom:958.500068px;}
.y60{bottom:963.360077px;}
.y3d{bottom:967.680073px;}
.y59{bottom:975.420061px;}
.yd1{bottom:975.780069px;}
.y17{bottom:979.380066px;}
.y7{bottom:979.560070px;}
.y4b{bottom:980.640060px;}
.y7b{bottom:983.880066px;}
.y9c{bottom:986.400072px;}
.y5f{bottom:988.920061px;}
.y15{bottom:996.480063px;}
.y3c{bottom:1000.620072px;}
.y58{bottom:1000.800058px;}
.y49{bottom:1003.500068px;}
.y7a{bottom:1009.260064px;}
.y9b{bottom:1011.780069px;}
.yd0{bottom:1013.220068px;}
.yb4{bottom:1014.300058px;}
.y6{bottom:1014.480063px;}
.y13{bottom:1019.160067px;}
.y48{bottom:1026.180073px;}
.y57{bottom:1026.360060px;}
.y3b{bottom:1033.560070px;}
.y79{bottom:1034.820065px;}
.y9a{bottom:1037.340070px;}
.y47{bottom:1048.860060px;}
.ycf{bottom:1050.660067px;}
.y56{bottom:1051.740074px;}
.y3a{bottom:1059.660067px;}
.y12{bottom:1062.000068px;}
.y5{bottom:1065.780069px;}
.y46{bottom:1071.540064px;}
.y78{bottom:1072.080059px;}
.y99{bottom:1074.780069px;}
.y55{bottom:1077.300058px;}
.yce{bottom:1088.100065px;}
.y98{bottom:1100.160067px;}
.y77{bottom:1114.380066px;}
.y39{bottom:1114.560070px;}
.y4{bottom:1125.720068px;}
.y1{bottom:1157.940067px;}
.h9{height:21.779983px;}
.ha{height:21.779984px;}
.h6{height:21.780000px;}
.h7{height:21.780001px;}
.hb{height:21.780017px;}
.h8{height:21.780018px;}
.hc{height:21.780052px;}
.h2{height:62.404688px;}
.h4{height:62.510160px;}
.hd{height:82.483882px;}
.h5{height:103.569974px;}
.h3{height:144.501829px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w13{width:3.599979px;}
.w2d{width:3.599980px;}
.w5{width:6.120002px;}
.w52{width:6.299973px;}
.w31{width:6.300042px;}
.w12{width:8.459988px;}
.w2a{width:9.179971px;}
.w3a{width:9.359974px;}
.w1b{width:9.539978px;}
.w15{width:9.539979px;}
.w8{width:9.539994px;}
.w10{width:9.539996px;}
.w48{width:9.540003px;}
.w3{width:9.540012px;}
.w3b{width:9.540046px;}
.we{width:9.540047px;}
.w2c{width:19.080007px;}
.w36{width:21.959953px;}
.w6{width:22.139992px;}
.w47{width:22.140000px;}
.w23{width:22.319995px;}
.w4c{width:22.679996px;}
.w54{width:23.759994px;}
.w4a{width:29.520006px;}
.w55{width:29.700010px;}
.w41{width:30.240006px;}
.w59{width:32.219999px;}
.w45{width:33.120002px;}
.w2b{width:34.919992px;}
.w57{width:35.279983px;}
.w17{width:36.000000px;}
.w27{width:36.900003px;}
.w4e{width:38.520006px;}
.w19{width:40.319995px;}
.w43{width:43.199993px;}
.w21{width:44.459988px;}
.w3e{width:46.620002px;}
.w50{width:47.520006px;}
.w38{width:48.240006px;}
.w20{width:53.280000px;}
.w4{width:56.699993px;}
.w3f{width:57.060001px;}
.w26{width:57.960005px;}
.w58{width:63.000000px;}
.w3c{width:63.719999px;}
.w2f{width:73.980011px;}
.w37{width:77.759994px;}
.wb{width:86.579990px;}
.w7{width:88.740006px;}
.w28{width:90.180004px;}
.w11{width:90.720017px;}
.w14{width:100.980011px;}
.w53{width:104.760028px;}
.w30{width:112.860008px;}
.w33{width:113.759994px;}
.w35{width:117.720017px;}
.w4d{width:119.520024px;}
.wf{width:123.659998px;}
.w49{width:124.920009px;}
.w2{width:127.799990px;}
.w2e{width:128.519989px;}
.w1c{width:133.560001px;}
.w18{width:135.539996px;}
.w51{width:140.400020px;}
.w34{width:147.420044px;}
.wd{width:148.679970px;}
.w32{width:151.199975px;}
.w22{width:152.099997px;}
.w29{width:152.280052px;}
.w42{width:178.740006px;}
.w40{width:191.160016px;}
.wa{width:196.739988px;}
.wc{width:200.159998px;}
.w44{width:204.840019px;}
.w25{width:207.000000px;}
.w16{width:207.359991px;}
.w4b{width:209.160015px;}
.w5a{width:210.600014px;}
.w1a{width:211.680005px;}
.w46{width:216.000000px;}
.w24{width:228.419992px;}
.w1f{width:229.679970px;}
.w56{width:270.180005px;}
.w1e{width:275.760011px;}
.w39{width:277.740006px;}
.w4f{width:284.400020px;}
.w1d{width:304.019989px;}
.w9{width:310.139992px;}
.w3d{width:464.939999px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.200002px;}
.x3{left:114.840002px;}
.x4a{left:133.200002px;}
.x3d{left:136.980002px;}
.x45{left:138.599997px;}
.x38{left:145.080008px;}
.x3c{left:147.960005px;}
.x25{left:149.759994px;}
.x41{left:153.360008px;}
.x3a{left:158.039996px;}
.x4b{left:160.199993px;}
.x35{left:161.460005px;}
.x2f{left:163.080008px;}
.x1b{left:168.120002px;}
.x21{left:172.800007px;}
.x33{left:178.560001px;}
.x1{left:196.199993px;}
.x9{left:203.580008px;}
.xe{left:238.500000px;}
.x4{left:242.639992px;}
.x18{left:248.400003px;}
.x15{left:250.379998px;}
.x1d{left:266.939999px;}
.x22{left:284.580008px;}
.x30{left:295.199993px;}
.x26{left:303.660015px;}
.x27{left:307.259994px;}
.xa{left:311.579990px;}
.xc{left:315.000000px;}
.x13{left:322.199993px;}
.x1f{left:343.259994px;}
.x36{left:352.259994px;}
.x19{left:390.600014px;}
.x40{left:414.720017px;}
.x3e{left:420.120002px;}
.x28{left:435.779983px;}
.x43{left:441.899987px;}
.x5{left:454.500000px;}
.x39{left:473.939999px;}
.x1e{left:476.819996px;}
.x14{left:490.500000px;}
.x16{left:494.819996px;}
.x1c{left:498.959988px;}
.x3b{left:500.040012px;}
.x3f{left:504.360008px;}
.x49{left:505.800007px;}
.x6{left:511.199993px;}
.x7{left:517.319996px;}
.x29{left:528.480011px;}
.x2e{left:532.259994px;}
.x8{left:539.459988px;}
.xb{left:541.079990px;}
.x37{left:543.420010px;}
.xf{left:545.220017px;}
.x44{left:546.660015px;}
.x10{left:553.680005px;}
.x11{left:557.279983px;}
.x46{left:565.379998px;}
.x2b{left:568.259994px;}
.x2d{left:572.220017px;}
.x42{left:579.600014px;}
.x31{left:582.299973px;}
.x32{left:591.840019px;}
.x47{left:600.659981px;}
.xd{left:603.179970px;}
.x23{left:624.419975px;}
.x12{left:658.259994px;}
.x20{left:661.500000px;}
.x48{left:663.659981px;}
.x1a{left:684.179970px;}
.x17{left:706.500000px;}
.x2a{left:737.279983px;}
.x34{left:760.139992px;}
.x2c{left:771.840019px;}
.x24{left:776.700027px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011500pt;}
.ls3{letter-spacing:0.041252pt;}
.ls7{letter-spacing:25.791294pt;}
.ls6{letter-spacing:56.965170pt;}
.ls5{letter-spacing:750.271210pt;}
.ls0{letter-spacing:750.271302pt;}
.ls4{letter-spacing:750.271334pt;}
.ws3{word-spacing:-53.122000pt;}
.ws2{word-spacing:-13.003988pt;}
.ws1{word-spacing:-12.992488pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-5.517647pt;}
._0{margin-left:-3.728140pt;}
._3{margin-left:-2.833386pt;}
._1{margin-left:-1.640382pt;}
._4{width:0.971787pt;}
._5{width:2.089858pt;}
._6{width:3.167791pt;}
.fs4{font-size:53.122000pt;}
.fs0{font-size:64.002404pt;}
.fs3{font-size:85.123200pt;}
.fs2{font-size:106.884004pt;}
.fs1{font-size:149.125596pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:4.319947pt;}
.y1f{bottom:4.319976pt;}
.y23{bottom:4.319977pt;}
.y14{bottom:4.319992pt;}
.y4a{bottom:4.319993pt;}
.y16{bottom:4.320007pt;}
.y1a{bottom:4.320008pt;}
.y3{bottom:51.680054pt;}
.y2{bottom:71.200074pt;}
.y97{bottom:102.400086pt;}
.ycd{bottom:110.720032pt;}
.ye8{bottom:112.320069pt;}
.y96{bottom:125.120057pt;}
.ycc{bottom:133.280030pt;}
.ye7{bottom:145.600037pt;}
.y95{bottom:158.400086pt;}
.ycb{bottom:166.560059pt;}
.ye6{bottom:179.040039pt;}
.y38{bottom:183.680054pt;}
.y94{bottom:191.680054pt;}
.yca{bottom:200.000061pt;}
.ye5{bottom:212.320069pt;}
.y76{bottom:214.880066pt;}
.y93{bottom:224.960083pt;}
.yb3{bottom:228.480042pt;}
.yc9{bottom:233.280030pt;}
.y75{bottom:237.440064pt;}
.ye4{bottom:245.600037pt;}
.y37{bottom:248.000061pt;}
.y92{bottom:258.240052pt;}
.y74{bottom:260.000061pt;}
.yb2{bottom:261.760071pt;}
.yc8{bottom:266.560059pt;}
.ye3{bottom:268.160035pt;}
.y36{bottom:270.560059pt;}
.y91{bottom:280.800049pt;}
.y73{bottom:282.720032pt;}
.yb1{bottom:295.040039pt;}
.yc7{bottom:299.840088pt;}
.ye2{bottom:301.440064pt;}
.y90{bottom:303.520081pt;}
.y35{bottom:303.840088pt;}
.y72{bottom:305.280030pt;}
.yb0{bottom:317.600037pt;}
.yc6{bottom:322.400086pt;}
.y34{bottom:324.000061pt;}
.ye1{bottom:334.720032pt;}
.y8f{bottom:336.800049pt;}
.y71{bottom:338.560059pt;}
.y33{bottom:343.520081pt;}
.yaf{bottom:350.880066pt;}
.yc5{bottom:355.680054pt;}
.y8e{bottom:359.360047pt;}
.y70{bottom:361.280030pt;}
.y32{bottom:363.040039pt;}
.ye0{bottom:368.000061pt;}
.yae{bottom:373.600037pt;}
.y31{bottom:378.240052pt;}
.y6f{bottom:383.840088pt;}
.yc4{bottom:388.960083pt;}
.y8d{bottom:392.640076pt;}
.ydf{bottom:401.280030pt;}
.y30{bottom:402.880066pt;}
.y6e{bottom:406.400086pt;}
.yad{bottom:406.880066pt;}
.y8c{bottom:415.360047pt;}
.y2f{bottom:418.080079pt;}
.yc3{bottom:422.240052pt;}
.y6d{bottom:429.120057pt;}
.yde{bottom:434.560059pt;}
.y2e{bottom:438.240052pt;}
.yac{bottom:440.160035pt;}
.y8b{bottom:448.640076pt;}
.yc2{bottom:455.520081pt;}
.y6c{bottom:462.400086pt;}
.y2d{bottom:462.720032pt;}
.ydd{bottom:467.840088pt;}
.y8a{bottom:471.200074pt;}
.yab{bottom:473.440064pt;}
.y2c{bottom:482.240052pt;}
.y6b{bottom:484.960083pt;}
.yc1{bottom:488.800049pt;}
.y89{bottom:493.760071pt;}
.yaa{bottom:496.000061pt;}
.ydc{bottom:501.280030pt;}
.y2b{bottom:501.760071pt;}
.y6a{bottom:507.680054pt;}
.y29{bottom:516.960083pt;}
.yc0{bottom:522.240052pt;}
.y88{bottom:527.200074pt;}
.ya9{bottom:529.280030pt;}
.y69{bottom:530.240052pt;}
.ydb{bottom:534.560059pt;}
.y28{bottom:537.280030pt;}
.y11{bottom:537.920044pt;}
.y87{bottom:549.760071pt;}
.y68{bottom:552.800049pt;}
.ybf{bottom:555.520081pt;}
.ya8{bottom:562.560059pt;}
.yda{bottom:567.840088pt;}
.y10{bottom:571.200074pt;}
.y86{bottom:572.320069pt;}
.y27{bottom:575.360047pt;}
.ya7{bottom:585.280030pt;}
.y67{bottom:586.240052pt;}
.ybe{bottom:588.800049pt;}
.yd9{bottom:601.120057pt;}
.yf{bottom:604.480042pt;}
.y85{bottom:605.600037pt;}
.ya6{bottom:607.840088pt;}
.y66{bottom:608.800049pt;}
.y45{bottom:621.920044pt;}
.ybd{bottom:622.080048pt;}
.y26{bottom:625.120057pt;}
.y84{bottom:628.320069pt;}
.ya5{bottom:630.560059pt;}
.y65{bottom:631.360047pt;}
.yd8{bottom:634.400055pt;}
.ye{bottom:637.760071pt;}
.ybc{bottom:644.640046pt;}
.y25{bottom:645.280060pt;}
.ya4{bottom:653.120057pt;}
.y64{bottom:654.080048pt;}
.y44{bottom:655.200074pt;}
.y83{bottom:661.600068pt;}
.y24{bottom:665.600068pt;}
.yd7{bottom:667.680054pt;}
.yd{bottom:671.040070pt;}
.ya3{bottom:675.680054pt;}
.y63{bottom:676.640046pt;}
.ybb{bottom:677.920044pt;}
.y43{bottom:684.480072pt;}
.y22{bottom:685.760071pt;}
.y54{bottom:694.240052pt;}
.y82{bottom:694.880066pt;}
.yba{bottom:700.640046pt;}
.yd6{bottom:700.960053pt;}
.yc{bottom:704.320069pt;}
.ya2{bottom:708.960053pt;}
.y62{bottom:709.920044pt;}
.y53{bottom:710.080048pt;}
.y21{bottom:710.240052pt;}
.y42{bottom:713.760071pt;}
.yb9{bottom:723.200074pt;}
.y20{bottom:725.440064pt;}
.y81{bottom:728.160065pt;}
.y52{bottom:730.400055pt;}
.y5e{bottom:732.640046pt;}
.yd5{bottom:734.240052pt;}
.yb{bottom:737.600068pt;}
.ya1{bottom:742.400055pt;}
.y41{bottom:743.040070pt;}
.y1e{bottom:745.600068pt;}
.yb8{bottom:745.760071pt;}
.y51{bottom:750.560059pt;}
.y80{bottom:750.720063pt;}
.y5d{bottom:755.200074pt;}
.ya0{bottom:764.960053pt;}
.y1d{bottom:765.920044pt;}
.yd4{bottom:767.520050pt;}
.y50{bottom:770.720063pt;}
.ya{bottom:770.880066pt;}
.y40{bottom:772.320069pt;}
.y7f{bottom:773.440064pt;}
.y61{bottom:777.760071pt;}
.yb7{bottom:779.040070pt;}
.y1c{bottom:786.080048pt;}
.y9f{bottom:787.520050pt;}
.y5c{bottom:788.480072pt;}
.y4f{bottom:790.880066pt;}
.y7e{bottom:796.000061pt;}
.yd3{bottom:800.800049pt;}
.y3f{bottom:801.600068pt;}
.y9{bottom:804.160065pt;}
.y1b{bottom:806.240052pt;}
.y9e{bottom:810.240052pt;}
.y5b{bottom:811.040070pt;}
.y4e{bottom:811.200074pt;}
.yb6{bottom:812.480072pt;}
.y19{bottom:826.400055pt;}
.y7d{bottom:829.280060pt;}
.y3e{bottom:830.880066pt;}
.y4d{bottom:831.360047pt;}
.y5a{bottom:833.760071pt;}
.yd2{bottom:834.080048pt;}
.y8{bottom:837.440064pt;}
.y9d{bottom:843.520050pt;}
.yb5{bottom:845.760071pt;}
.y18{bottom:851.040070pt;}
.y4c{bottom:851.520050pt;}
.y7c{bottom:852.000061pt;}
.y60{bottom:856.320069pt;}
.y3d{bottom:860.160065pt;}
.y59{bottom:867.040055pt;}
.yd1{bottom:867.360062pt;}
.y17{bottom:870.560059pt;}
.y7{bottom:870.720063pt;}
.y4b{bottom:871.680054pt;}
.y7b{bottom:874.560059pt;}
.y9c{bottom:876.800064pt;}
.y5f{bottom:879.040055pt;}
.y15{bottom:885.760056pt;}
.y3c{bottom:889.440064pt;}
.y58{bottom:889.600052pt;}
.y49{bottom:892.000061pt;}
.y7a{bottom:897.120057pt;}
.y9b{bottom:899.360062pt;}
.yd0{bottom:900.640061pt;}
.yb4{bottom:901.600052pt;}
.y6{bottom:901.760056pt;}
.y13{bottom:905.920060pt;}
.y48{bottom:912.160065pt;}
.y57{bottom:912.320054pt;}
.y3b{bottom:918.720063pt;}
.y79{bottom:919.840058pt;}
.y9a{bottom:922.080063pt;}
.y47{bottom:932.320054pt;}
.ycf{bottom:933.920060pt;}
.y56{bottom:934.880066pt;}
.y3a{bottom:941.920060pt;}
.y12{bottom:944.000061pt;}
.y5{bottom:947.360062pt;}
.y46{bottom:952.480057pt;}
.y78{bottom:952.960053pt;}
.y99{bottom:955.360062pt;}
.y55{bottom:957.600052pt;}
.yce{bottom:967.200058pt;}
.y98{bottom:977.920060pt;}
.y77{bottom:990.560059pt;}
.y39{bottom:990.720063pt;}
.y4{bottom:1000.640061pt;}
.y1{bottom:1029.280060pt;}
.h9{height:19.359985pt;}
.ha{height:19.359986pt;}
.h6{height:19.360000pt;}
.h7{height:19.360001pt;}
.hb{height:19.360015pt;}
.h8{height:19.360016pt;}
.hc{height:19.360046pt;}
.h2{height:55.470834pt;}
.h4{height:55.564587pt;}
.hd{height:73.319006pt;}
.h5{height:92.062199pt;}
.h3{height:128.446070pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w13{width:3.199981pt;}
.w2d{width:3.199982pt;}
.w5{width:5.440002pt;}
.w52{width:5.599976pt;}
.w31{width:5.600037pt;}
.w12{width:7.519989pt;}
.w2a{width:8.159974pt;}
.w3a{width:8.319977pt;}
.w1b{width:8.479980pt;}
.w15{width:8.479981pt;}
.w8{width:8.479995pt;}
.w10{width:8.479996pt;}
.w48{width:8.480003pt;}
.w3{width:8.480011pt;}
.w3b{width:8.480041pt;}
.we{width:8.480042pt;}
.w2c{width:16.960006pt;}
.w36{width:19.519958pt;}
.w6{width:19.679993pt;}
.w47{width:19.680000pt;}
.w23{width:19.839996pt;}
.w4c{width:20.159996pt;}
.w54{width:21.119995pt;}
.w4a{width:26.240005pt;}
.w55{width:26.400009pt;}
.w41{width:26.880005pt;}
.w59{width:28.639999pt;}
.w45{width:29.440002pt;}
.w2b{width:31.039993pt;}
.w57{width:31.359985pt;}
.w17{width:32.000000pt;}
.w27{width:32.800003pt;}
.w4e{width:34.240005pt;}
.w19{width:35.839996pt;}
.w43{width:38.399994pt;}
.w21{width:39.519989pt;}
.w3e{width:41.440002pt;}
.w50{width:42.240005pt;}
.w38{width:42.880005pt;}
.w20{width:47.360000pt;}
.w4{width:50.399994pt;}
.w3f{width:50.720001pt;}
.w26{width:51.520004pt;}
.w58{width:56.000000pt;}
.w3c{width:56.639999pt;}
.w2f{width:65.760010pt;}
.w37{width:69.119995pt;}
.wb{width:76.959991pt;}
.w7{width:78.880005pt;}
.w28{width:80.160004pt;}
.w11{width:80.640015pt;}
.w14{width:89.760010pt;}
.w53{width:93.120025pt;}
.w30{width:100.320007pt;}
.w33{width:101.119995pt;}
.w35{width:104.640015pt;}
.w4d{width:106.240021pt;}
.wf{width:109.919998pt;}
.w49{width:111.040008pt;}
.w2{width:113.599991pt;}
.w2e{width:114.239990pt;}
.w1c{width:118.720001pt;}
.w18{width:120.479996pt;}
.w51{width:124.800018pt;}
.w34{width:131.040039pt;}
.wd{width:132.159973pt;}
.w32{width:134.399978pt;}
.w22{width:135.199997pt;}
.w29{width:135.360046pt;}
.w42{width:158.880005pt;}
.w40{width:169.920014pt;}
.wa{width:174.879989pt;}
.wc{width:177.919998pt;}
.w44{width:182.080017pt;}
.w25{width:184.000000pt;}
.w16{width:184.319992pt;}
.w4b{width:185.920013pt;}
.w5a{width:187.200012pt;}
.w1a{width:188.160004pt;}
.w46{width:192.000000pt;}
.w24{width:203.039993pt;}
.w1f{width:204.159973pt;}
.w56{width:240.160004pt;}
.w1e{width:245.120010pt;}
.w39{width:246.880005pt;}
.w4f{width:252.800018pt;}
.w1d{width:270.239990pt;}
.w9{width:275.679993pt;}
.w3d{width:413.279999pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.400002pt;}
.x3{left:102.080002pt;}
.x4a{left:118.400002pt;}
.x3d{left:121.760002pt;}
.x45{left:123.199997pt;}
.x38{left:128.960007pt;}
.x3c{left:131.520004pt;}
.x25{left:133.119995pt;}
.x41{left:136.320007pt;}
.x3a{left:140.479996pt;}
.x4b{left:142.399994pt;}
.x35{left:143.520004pt;}
.x2f{left:144.960007pt;}
.x1b{left:149.440002pt;}
.x21{left:153.600006pt;}
.x33{left:158.720001pt;}
.x1{left:174.399994pt;}
.x9{left:180.960007pt;}
.xe{left:212.000000pt;}
.x4{left:215.679993pt;}
.x18{left:220.800003pt;}
.x15{left:222.559998pt;}
.x1d{left:237.279999pt;}
.x22{left:252.960007pt;}
.x30{left:262.399994pt;}
.x26{left:269.920013pt;}
.x27{left:273.119995pt;}
.xa{left:276.959991pt;}
.xc{left:280.000000pt;}
.x13{left:286.399994pt;}
.x1f{left:305.119995pt;}
.x36{left:313.119995pt;}
.x19{left:347.200012pt;}
.x40{left:368.640015pt;}
.x3e{left:373.440002pt;}
.x28{left:387.359985pt;}
.x43{left:392.799988pt;}
.x5{left:404.000000pt;}
.x39{left:421.279999pt;}
.x1e{left:423.839996pt;}
.x14{left:436.000000pt;}
.x16{left:439.839996pt;}
.x1c{left:443.519989pt;}
.x3b{left:444.480011pt;}
.x3f{left:448.320007pt;}
.x49{left:449.600006pt;}
.x6{left:454.399994pt;}
.x7{left:459.839996pt;}
.x29{left:469.760010pt;}
.x2e{left:473.119995pt;}
.x8{left:479.519989pt;}
.xb{left:480.959991pt;}
.x37{left:483.040009pt;}
.xf{left:484.640015pt;}
.x44{left:485.920013pt;}
.x10{left:492.160004pt;}
.x11{left:495.359985pt;}
.x46{left:502.559998pt;}
.x2b{left:505.119995pt;}
.x2d{left:508.640015pt;}
.x42{left:515.200012pt;}
.x31{left:517.599976pt;}
.x32{left:526.080017pt;}
.x47{left:533.919983pt;}
.xd{left:536.159973pt;}
.x23{left:555.039978pt;}
.x12{left:585.119995pt;}
.x20{left:588.000000pt;}
.x48{left:589.919983pt;}
.x1a{left:608.159973pt;}
.x17{left:628.000000pt;}
.x2a{left:655.359985pt;}
.x34{left:675.679993pt;}
.x2c{left:686.080017pt;}
.x24{left:690.400024pt;}
}




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