
    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_25f4d9a60b99d6eced8fb15f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.762000;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_715c24be47cff48c280dde9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_7dc199b6c82d84ab19afc1b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041000;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_488411c26fd99575f67ab29e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.956500;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_d4b3242e63e798faa6d39c96.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_b8452e02bfc983037a9c4408.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965500;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_c2cc90adbdda94b4a58248a8.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c4cbf94bf5a5220e3e99555c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.713867;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.241923,-0.063033,0.063029,0.241924,0,0);-ms-transform:matrix(0.241923,-0.063033,0.063029,0.241924,0,0);-webkit-transform:matrix(0.241923,-0.063033,0.063029,0.241924,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-78.055652px;}
.v2{vertical-align:-20.392696px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.520027px;}
.v3{vertical-align:49.500002px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.020026px;}
.ls3{letter-spacing:107.986185px;}
.ls1{letter-spacing:107.992093px;}
.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;}
}
.wsc{word-spacing:-37.728001px;}
.ws1{word-spacing:-33.955198px;}
.ws2{word-spacing:-16.212000px;}
.wsb{word-spacing:-15.054001px;}
.wsd{word-spacing:-0.078000px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:170.889684px;}
.ws8{word-spacing:217.145515px;}
.ws5{word-spacing:217.592114px;}
.ws9{word-spacing:217.592204px;}
.ws6{word-spacing:238.233703px;}
.ws3{word-spacing:286.359787px;}
.ws4{word-spacing:287.137796px;}
.wsa{word-spacing:317.648343px;}
._9{margin-left:-7.956001px;}
._3{margin-left:-6.240000px;}
._5{margin-left:-4.676972px;}
._1{margin-left:-3.168000px;}
._0{margin-left:-1.824000px;}
._a{width:1.305600px;}
._b{width:2.448000px;}
._4{width:3.744000px;}
._2{width:107.992093px;}
._7{width:254.445703px;}
._6{width:295.978645px;}
._8{width:926.111048px;}
.fc7{color:rgb(152,0,0);}
.fc6{color:rgb(27,33,44);}
.fc5{color:rgb(164,194,244);}
.fc8{color:rgb(120,144,205);}
.fc4{color:transparent;}
.fc2{color:rgb(106,168,79);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:60.000000px;}
.fsb{font-size:72.000002px;}
.fs3{font-size:78.000005px;}
.fs8{font-size:81.600010px;}
.fs6{font-size:84.000000px;}
.fse{font-size:88.666797px;}
.fsf{font-size:90.000003px;}
.fs1{font-size:96.000006px;}
.fs7{font-size:120.000001px;}
.fs4{font-size:129.599991px;}
.fs9{font-size:132.000007px;}
.fs2{font-size:144.000005px;}
.fsa{font-size:180.000006px;}
.fs0{font-size:288.000009px;}
.fs10{font-size:396.069605px;}
.fsc{font-size:486.000019px;}
.fsd{font-size:552.000009px;}
.y0{bottom:0.000000px;}
.y10{bottom:11.554698px;}
.y8{bottom:20.749459px;}
.y3b{bottom:28.781076px;}
.y5a{bottom:30.862095px;}
.y7b{bottom:33.909439px;}
.y6{bottom:35.108610px;}
.y3e{bottom:37.789936px;}
.y3a{bottom:46.781082px;}
.y86{bottom:49.331699px;}
.y3d{bottom:55.789936px;}
.y4f{bottom:59.917291px;}
.y99{bottom:62.161086px;}
.y39{bottom:64.781083px;}
.y9a{bottom:64.957640px;}
.y5{bottom:66.908626px;}
.y34{bottom:71.531083px;}
.y69{bottom:71.805475px;}
.y3c{bottom:73.789937px;}
.ya8{bottom:74.700095px;}
.y59{bottom:75.772085px;}
.y85{bottom:76.241689px;}
.yb3{bottom:78.030006px;}
.y4e{bottom:82.147292px;}
.y7a{bottom:82.149441px;}
.y38{bottom:82.781083px;}
.y17{bottom:86.265816px;}
.y98{bottom:89.071064px;}
.y4{bottom:98.708620px;}
.y68{bottom:98.715471px;}
.ya7{bottom:101.610063px;}
.y3f{bottom:101.955696px;}
.y61{bottom:102.901338px;}
.y70{bottom:104.109613px;}
.y4d{bottom:104.377315px;}
.y97{bottom:115.981043px;}
.y84{bottom:118.151641px;}
.y58{bottom:120.682064px;}
.y88{bottom:122.199779px;}
.ya6{bottom:128.520041px;}
.yb2{bottom:129.150007px;}
.y37{bottom:129.940371px;}
.y79{bottom:130.389442px;}
.y3{bottom:130.508620px;}
.y65{bottom:132.894806px;}
.y16{bottom:133.245817px;}
.y60{bottom:138.001316px;}
.y35{bottom:142.315372px;}
.y96{bottom:142.891043px;}
.y67{bottom:143.625473px;}
.y4c{bottom:144.607328px;}
.y57{bottom:147.592065px;}
.y36{bottom:154.690372px;}
.ya5{bottom:155.430019px;}
.y83{bottom:160.061605px;}
.y4b{bottom:166.837317px;}
.y95{bottom:169.801010px;}
.y5f{bottom:173.101317px;}
.y78{bottom:178.629478px;}
.y15{bottom:180.225810px;}
.y2{bottom:191.108619px;}
.y56{bottom:192.502078px;}
.y94{bottom:196.710989px;}
.ya4{bottom:200.340009px;}
.y82{bottom:204.971606px;}
.y4a{bottom:207.067318px;}
.y5e{bottom:208.201307px;}
.y93{bottom:223.620967px;}
.y77{bottom:226.869468px;}
.y49{bottom:229.297308px;}
.yb1{bottom:229.500010px;}
.y55{bottom:237.412079px;}
.y5d{bottom:243.301308px;}
.ya3{bottom:245.249988px;}
.y6f{bottom:248.420080px;}
.y81{bottom:249.881597px;}
.yb0{bottom:256.410000px;}
.y54{bottom:264.322080px;}
.y6e{bottom:266.544810px;}
.yf{bottom:267.871309px;}
.y92{bottom:268.530957px;}
.y48{bottom:269.527309px;}
.y66{bottom:272.521657px;}
.y76{bottom:274.659469px;}
.y1b{bottom:277.402249px;}
.y5c{bottom:278.401309px;}
.y1{bottom:278.965621px;}
.y33{bottom:282.364932px;}
.yaf{bottom:283.320001px;}
.y64{bottom:287.828765px;}
.ya2{bottom:290.160001px;}
.y53{bottom:291.232070px;}
.y18{bottom:291.241662px;}
.y47{bottom:291.757299px;}
.y14{bottom:291.923641px;}
.ye{bottom:294.781305px;}
.y91{bottom:295.440958px;}
.y75{bottom:303.009459px;}
.y1a{bottom:307.250423px;}
.y1c{bottom:307.777250px;}
.y19{bottom:309.241662px;}
.yae{bottom:310.230002px;}
.y5b{bottom:313.501305px;}
.ya1{bottom:317.070002px;}
.y52{bottom:318.142075px;}
.y80{bottom:318.281610px;}
.y6d{bottom:320.629723px;}
.yd{bottom:321.691304px;}
.y90{bottom:322.350948px;}
.y1d{bottom:323.380262px;}
.y2b{bottom:324.010269px;}
.y74{bottom:331.359460px;}
.y46{bottom:331.987306px;}
.y87{bottom:335.187014px;}
.yad{bottom:337.140003px;}
.y13{bottom:338.903631px;}
.y6c{bottom:347.539721px;}
.yc{bottom:348.601300px;}
.y8f{bottom:349.260949px;}
.y7f{bottom:356.681608px;}
.y73{bottom:359.709456px;}
.ya0{bottom:361.980003px;}
.y51{bottom:363.052072px;}
.yac{bottom:364.049999px;}
.y45{bottom:372.217305px;}
.y6b{bottom:374.449720px;}
.y8e{bottom:376.170950px;}
.y7e{bottom:380.081597px;}
.y28{bottom:384.186604px;}
.y12{bottom:385.883630px;}
.y22{bottom:386.200399px;}
.y2e{bottom:387.927743px;}
.yab{bottom:390.959998px;}
.y2a{bottom:393.452344px;}
.yb{bottom:393.511302px;}
.y44{bottom:394.447303px;}
.y31{bottom:395.463185px;}
.y40{bottom:396.136424px;}
.y32{bottom:397.781093px;}
.y6a{bottom:401.359718px;}
.y27{bottom:402.186605px;}
.y8d{bottom:403.080950px;}
.y21{bottom:404.200400px;}
.y2d{bottom:405.927744px;}
.y72{bottom:406.059452px;}
.y9f{bottom:406.890005px;}
.y50{bottom:407.962074px;}
.y29{bottom:411.452345px;}
.y30{bottom:413.463185px;}
.y11{bottom:414.863625px;}
.yaa{bottom:417.869994px;}
.y7d{bottom:418.481606px;}
.y26{bottom:420.186605px;}
.y20{bottom:422.200395px;}
.y2c{bottom:423.927747px;}
.y8c{bottom:429.990947px;}
.y2f{bottom:431.463186px;}
.y9e{bottom:433.800001px;}
.y25{bottom:438.186606px;}
.y1f{bottom:440.200395px;}
.y24{bottom:456.186609px;}
.y8b{bottom:456.900945px;}
.y1e{bottom:458.200396px;}
.y43{bottom:458.554225px;}
.y9d{bottom:460.710000px;}
.ya9{bottom:462.779995px;}
.y7c{bottom:463.391607px;}
.y23{bottom:474.186608px;}
.ya{bottom:480.885110px;}
.y71{bottom:486.389066px;}
.y9c{bottom:487.619996px;}
.y42{bottom:495.285094px;}
.y8a{bottom:501.810945px;}
.y7{bottom:516.309095px;}
.y63{bottom:516.359517px;}
.y9{bottom:519.765100px;}
.y41{bottom:522.069095px;}
.y89{bottom:528.720943px;}
.y9b{bottom:532.529998px;}
.y62{bottom:555.239507px;}
.h6{height:43.681641px;}
.hb{height:46.470000px;}
.ha{height:46.530000px;}
.h11{height:52.417970px;}
.h4{height:60.489004px;}
.he{height:61.230004px;}
.h7{height:65.142000px;}
.h8{height:65.940000px;}
.hd{height:68.707209px;}
.h15{height:69.795002px;}
.h2{height:74.448005px;}
.h14{height:74.657443px;}
.hc{height:101.040001px;}
.hf{height:103.620006px;}
.h5{height:109.123192px;}
.h9{height:114.642001px;}
.h3{height:121.248004px;}
.h10{height:141.300005px;}
.h1{height:216.000007px;}
.h16{height:263.981939px;}
.h12{height:381.510015px;}
.h13{height:433.320007px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x26{left:41.264765px;}
.x1a{left:43.384371px;}
.x5{left:45.788387px;}
.x2a{left:48.153545px;}
.x30{left:55.458666px;}
.x27{left:61.500243px;}
.x6{left:66.023865px;}
.x4{left:69.321664px;}
.x31{left:74.651181px;}
.x1b{left:78.312996px;}
.x39{left:79.887758px;}
.x10{left:86.361233px;}
.x28{left:95.264767px;}
.x25{left:98.548474px;}
.x7{left:99.788389px;}
.x35{left:109.395830px;}
.x34{left:127.963343px;}
.x1c{left:131.131144px;}
.x29{left:134.441937px;}
.x36{left:147.047252px;}
.x3{left:163.373034px;}
.x37{left:167.282730px;}
.x24{left:168.620090px;}
.x2d{left:170.326783px;}
.xf{left:172.381899px;}
.x3a{left:183.608512px;}
.x2e{left:192.396773px;}
.x38{left:201.047253px;}
.x1f{left:220.009845px;}
.x2{left:245.867127px;}
.x1d{left:260.581336px;}
.x1e{left:270.624232px;}
.x2f{left:279.620384px;}
.x32{left:296.176194px;}
.x13{left:310.818925px;}
.x9{left:340.541336px;}
.x14{left:341.930443px;}
.x33{left:350.176196px;}
.xb{left:354.209076px;}
.x20{left:361.715659px;}
.xa{left:372.209077px;}
.x1{left:381.983277px;}
.x3b{left:414.338098px;}
.x15{left:425.692926px;}
.xc{left:467.859022px;}
.x8{left:474.936023px;}
.x21{left:514.325694px;}
.x11{left:524.090582px;}
.x2b{left:525.168569px;}
.x16{left:550.473824px;}
.x2c{left:558.933093px;}
.xe{left:561.504100px;}
.xd{left:579.504101px;}
.x23{left:590.398219px;}
.x12{left:638.964583px;}
.x22{left:706.132825px;}
.x17{left:780.661442px;}
.x19{left:911.905567px;}
.x18{left:938.911938px;}
@media print{
.v1{vertical-align:-69.382802pt;}
.v2{vertical-align:-18.126841pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.240024pt;}
.v3{vertical-align:44.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.017801pt;}
.ls3{letter-spacing:95.987720pt;}
.ls1{letter-spacing:95.992971pt;}
.wsc{word-spacing:-33.536001pt;}
.ws1{word-spacing:-30.182398pt;}
.ws2{word-spacing:-14.410667pt;}
.wsb{word-spacing:-13.381334pt;}
.wsd{word-spacing:-0.069333pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:151.901942pt;}
.ws8{word-spacing:193.018235pt;}
.ws5{word-spacing:193.415212pt;}
.ws9{word-spacing:193.415292pt;}
.ws6{word-spacing:211.763291pt;}
.ws3{word-spacing:254.542033pt;}
.ws4{word-spacing:255.233596pt;}
.wsa{word-spacing:282.354083pt;}
._9{margin-left:-7.072000pt;}
._3{margin-left:-5.546667pt;}
._5{margin-left:-4.157308pt;}
._1{margin-left:-2.816000pt;}
._0{margin-left:-1.621333pt;}
._a{width:1.160533pt;}
._b{width:2.176000pt;}
._4{width:3.328000pt;}
._2{width:95.992971pt;}
._7{width:226.173958pt;}
._6{width:263.092128pt;}
._8{width:823.209821pt;}
.fs5{font-size:53.333334pt;}
.fsb{font-size:64.000002pt;}
.fs3{font-size:69.333338pt;}
.fs8{font-size:72.533342pt;}
.fs6{font-size:74.666666pt;}
.fse{font-size:78.814931pt;}
.fsf{font-size:80.000003pt;}
.fs1{font-size:85.333339pt;}
.fs7{font-size:106.666667pt;}
.fs4{font-size:115.199992pt;}
.fs9{font-size:117.333340pt;}
.fs2{font-size:128.000004pt;}
.fsa{font-size:160.000005pt;}
.fs0{font-size:256.000008pt;}
.fs10{font-size:352.061871pt;}
.fsc{font-size:432.000017pt;}
.fsd{font-size:490.666675pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:10.270843pt;}
.y8{bottom:18.443963pt;}
.y3b{bottom:25.583179pt;}
.y5a{bottom:27.432974pt;}
.y7b{bottom:30.141724pt;}
.y6{bottom:31.207654pt;}
.y3e{bottom:33.591054pt;}
.y3a{bottom:41.583184pt;}
.y86{bottom:43.850399pt;}
.y3d{bottom:49.591054pt;}
.y4f{bottom:53.259814pt;}
.y99{bottom:55.254298pt;}
.y39{bottom:57.583185pt;}
.y9a{bottom:57.740125pt;}
.y5{bottom:59.474335pt;}
.y34{bottom:63.583185pt;}
.y69{bottom:63.827089pt;}
.y3c{bottom:65.591055pt;}
.ya8{bottom:66.400085pt;}
.y59{bottom:67.352965pt;}
.y85{bottom:67.770390pt;}
.yb3{bottom:69.360005pt;}
.y4e{bottom:73.019815pt;}
.y7a{bottom:73.021725pt;}
.y38{bottom:73.583185pt;}
.y17{bottom:76.680725pt;}
.y98{bottom:79.174279pt;}
.y4{bottom:87.740996pt;}
.y68{bottom:87.747086pt;}
.ya7{bottom:90.320056pt;}
.y3f{bottom:90.627286pt;}
.y61{bottom:91.467856pt;}
.y70{bottom:92.541879pt;}
.y4d{bottom:92.779836pt;}
.y97{bottom:103.094260pt;}
.y84{bottom:105.023681pt;}
.y58{bottom:107.272946pt;}
.y88{bottom:108.622026pt;}
.ya6{bottom:114.240036pt;}
.yb2{bottom:114.800006pt;}
.y37{bottom:115.502552pt;}
.y79{bottom:115.901726pt;}
.y3{bottom:116.007662pt;}
.y65{bottom:118.128717pt;}
.y16{bottom:118.440727pt;}
.y60{bottom:122.667837pt;}
.y35{bottom:126.502553pt;}
.y96{bottom:127.014261pt;}
.y67{bottom:127.667087pt;}
.y4c{bottom:128.539847pt;}
.y57{bottom:131.192947pt;}
.y36{bottom:137.502553pt;}
.ya5{bottom:138.160017pt;}
.y83{bottom:142.276982pt;}
.y4b{bottom:148.299837pt;}
.y95{bottom:150.934232pt;}
.y5f{bottom:153.867838pt;}
.y78{bottom:158.781758pt;}
.y15{bottom:160.200720pt;}
.y2{bottom:169.874328pt;}
.y56{bottom:171.112958pt;}
.y94{bottom:174.854212pt;}
.ya4{bottom:178.080008pt;}
.y82{bottom:182.196984pt;}
.y4a{bottom:184.059839pt;}
.y5e{bottom:185.067829pt;}
.y93{bottom:198.774193pt;}
.y77{bottom:201.661749pt;}
.y49{bottom:203.819829pt;}
.yb1{bottom:204.000009pt;}
.y55{bottom:211.032959pt;}
.y5d{bottom:216.267830pt;}
.ya3{bottom:217.999990pt;}
.y6f{bottom:220.817849pt;}
.y81{bottom:222.116975pt;}
.yb0{bottom:227.920000pt;}
.y54{bottom:234.952960pt;}
.y6e{bottom:236.928720pt;}
.yf{bottom:238.107830pt;}
.y92{bottom:238.694184pt;}
.y48{bottom:239.579830pt;}
.y66{bottom:242.241472pt;}
.y76{bottom:244.141751pt;}
.y1b{bottom:246.579777pt;}
.y5c{bottom:247.467831pt;}
.y1{bottom:247.969441pt;}
.y33{bottom:250.991051pt;}
.yaf{bottom:251.840001pt;}
.y64{bottom:255.847791pt;}
.ya2{bottom:257.920001pt;}
.y53{bottom:258.872951pt;}
.y18{bottom:258.881477pt;}
.y47{bottom:259.339821pt;}
.y14{bottom:259.487681pt;}
.ye{bottom:262.027827pt;}
.y91{bottom:262.614185pt;}
.y75{bottom:269.341741pt;}
.y1a{bottom:273.111487pt;}
.y1c{bottom:273.579777pt;}
.y19{bottom:274.881478pt;}
.yae{bottom:275.760002pt;}
.y5b{bottom:278.667827pt;}
.ya1{bottom:281.840002pt;}
.y52{bottom:282.792956pt;}
.y80{bottom:282.916987pt;}
.y6d{bottom:285.004198pt;}
.yd{bottom:285.947826pt;}
.y90{bottom:286.534176pt;}
.y1d{bottom:287.449122pt;}
.y2b{bottom:288.009128pt;}
.y74{bottom:294.541742pt;}
.y46{bottom:295.099827pt;}
.y87{bottom:297.944012pt;}
.yad{bottom:299.680002pt;}
.y13{bottom:301.247672pt;}
.y6c{bottom:308.924197pt;}
.yc{bottom:309.867823pt;}
.y8f{bottom:310.454177pt;}
.y7f{bottom:317.050318pt;}
.y73{bottom:319.741739pt;}
.ya0{bottom:321.760003pt;}
.y51{bottom:322.712953pt;}
.yac{bottom:323.599999pt;}
.y45{bottom:330.859826pt;}
.y6b{bottom:332.844195pt;}
.y8e{bottom:334.374177pt;}
.y7e{bottom:337.850309pt;}
.y28{bottom:341.499204pt;}
.y12{bottom:343.007671pt;}
.y22{bottom:343.289244pt;}
.y2e{bottom:344.824661pt;}
.yab{bottom:347.519998pt;}
.y2a{bottom:349.735417pt;}
.yb{bottom:349.787824pt;}
.y44{bottom:350.619825pt;}
.y31{bottom:351.522831pt;}
.y40{bottom:352.121266pt;}
.y32{bottom:353.583194pt;}
.y6a{bottom:356.764194pt;}
.y27{bottom:357.499204pt;}
.y8d{bottom:358.294178pt;}
.y21{bottom:359.289244pt;}
.y2d{bottom:360.824661pt;}
.y72{bottom:360.941735pt;}
.y9f{bottom:361.680004pt;}
.y50{bottom:362.632954pt;}
.y29{bottom:365.735417pt;}
.y30{bottom:367.522831pt;}
.y11{bottom:368.767667pt;}
.yaa{bottom:371.439995pt;}
.y7d{bottom:371.983650pt;}
.y26{bottom:373.499205pt;}
.y20{bottom:375.289240pt;}
.y2c{bottom:376.824664pt;}
.y8c{bottom:382.214175pt;}
.y2f{bottom:383.522832pt;}
.y9e{bottom:385.600001pt;}
.y25{bottom:389.499205pt;}
.y1f{bottom:391.289240pt;}
.y24{bottom:405.499208pt;}
.y8b{bottom:406.134174pt;}
.y1e{bottom:407.289241pt;}
.y43{bottom:407.603756pt;}
.y9d{bottom:409.520000pt;}
.ya9{bottom:411.359996pt;}
.y7c{bottom:411.903651pt;}
.y23{bottom:421.499207pt;}
.ya{bottom:427.453431pt;}
.y71{bottom:432.345837pt;}
.y9c{bottom:433.439997pt;}
.y42{bottom:440.253417pt;}
.y8a{bottom:446.054173pt;}
.y7{bottom:458.941417pt;}
.y63{bottom:458.986237pt;}
.y9{bottom:462.013423pt;}
.y41{bottom:464.061418pt;}
.y89{bottom:469.974172pt;}
.y9b{bottom:473.359998pt;}
.y62{bottom:493.546229pt;}
.h6{height:38.828125pt;}
.hb{height:41.306667pt;}
.ha{height:41.360000pt;}
.h11{height:46.593751pt;}
.h4{height:53.768004pt;}
.he{height:54.426671pt;}
.h7{height:57.904000pt;}
.h8{height:58.613333pt;}
.hd{height:61.073074pt;}
.h15{height:62.040002pt;}
.h2{height:66.176004pt;}
.h14{height:66.362171pt;}
.hc{height:89.813334pt;}
.hf{height:92.106672pt;}
.h5{height:96.998393pt;}
.h9{height:101.904001pt;}
.h3{height:107.776003pt;}
.h10{height:125.600004pt;}
.h1{height:192.000006pt;}
.h16{height:234.650612pt;}
.h12{height:339.120013pt;}
.h13{height:385.173340pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x26{left:36.679791pt;}
.x1a{left:38.563885pt;}
.x5{left:40.700788pt;}
.x2a{left:42.803151pt;}
.x30{left:49.296592pt;}
.x27{left:54.666883pt;}
.x6{left:58.687880pt;}
.x4{left:61.619257pt;}
.x31{left:66.356605pt;}
.x1b{left:69.611552pt;}
.x39{left:71.011340pt;}
.x10{left:76.765540pt;}
.x28{left:84.679793pt;}
.x25{left:87.598644pt;}
.x7{left:88.700790pt;}
.x35{left:97.240738pt;}
.x34{left:113.745194pt;}
.x1c{left:116.561017pt;}
.x29{left:119.503944pt;}
.x36{left:130.708668pt;}
.x3{left:145.220475pt;}
.x37{left:148.695760pt;}
.x24{left:149.884525pt;}
.x2d{left:151.401585pt;}
.xf{left:153.228355pt;}
.x3a{left:163.207566pt;}
.x2e{left:171.019354pt;}
.x38{left:178.708670pt;}
.x1f{left:195.564306pt;}
.x2{left:218.548557pt;}
.x1d{left:231.627854pt;}
.x1e{left:240.554873pt;}
.x2f{left:248.551452pt;}
.x32{left:263.267728pt;}
.x13{left:276.283489pt;}
.x9{left:302.703410pt;}
.x14{left:303.938172pt;}
.x33{left:311.267730pt;}
.xb{left:314.852512pt;}
.x20{left:321.525030pt;}
.xa{left:330.852513pt;}
.x1{left:339.540691pt;}
.x3b{left:368.300532pt;}
.x15{left:378.393712pt;}
.xc{left:415.874686pt;}
.x8{left:422.165354pt;}
.x21{left:457.178395pt;}
.x11{left:465.858295pt;}
.x2b{left:466.816506pt;}
.x16{left:489.310066pt;}
.x2c{left:496.829416pt;}
.xe{left:499.114756pt;}
.xd{left:515.114756pt;}
.x23{left:524.798417pt;}
.x12{left:567.968518pt;}
.x22{left:627.673622pt;}
.x17{left:693.921282pt;}
.x19{left:810.582726pt;}
.x18{left:834.588390pt;}
}




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