
    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_f04ffeb31389480b199ef764.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_6d53b24b22a410c36b393ac1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_d27f2cd177093ef92f2bfd72.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922363;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.009360px;}
.ls5{letter-spacing:0.169080px;}
.ls3{letter-spacing:0.310500px;}
.ls4{letter-spacing:8.654457px;}
.ls1{letter-spacing:196.685321px;}
.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:-15.839994px;}
.ws4{word-spacing:-13.147195px;}
.ws2{word-spacing:-10.612796px;}
.ws3{word-spacing:-8.553597px;}
.ws1{word-spacing:0.000000px;}
._1e{margin-left:-7.540629px;}
._3{margin-left:-1.136921px;}
._0{width:1.296976px;}
._f{width:2.400952px;}
._e{width:3.492505px;}
._d{width:4.717323px;}
._7{width:5.931589px;}
._6{width:7.598744px;}
._5{width:8.754249px;}
._11{width:9.897143px;}
._9{width:10.980283px;}
._8{width:12.197495px;}
._17{width:13.244433px;}
._15{width:14.703199px;}
._2a{width:15.801314px;}
._2{width:17.703249px;}
._4{width:19.452339px;}
._1a{width:21.050456px;}
._14{width:22.715498px;}
._24{width:23.735381px;}
._23{width:24.796363px;}
._19{width:26.322196px;}
._18{width:27.435076px;}
._16{width:28.818118px;}
._22{width:29.917899px;}
._20{width:30.926979px;}
._1f{width:32.182094px;}
._1c{width:34.005584px;}
._26{width:35.127261px;}
._1d{width:36.188422px;}
._1b{width:37.509065px;}
._10{width:39.071110px;}
._c{width:40.166036px;}
._b{width:41.171767px;}
._a{width:43.137962px;}
._27{width:44.455038px;}
._13{width:45.639417px;}
._12{width:46.810317px;}
._28{width:48.469047px;}
._29{width:49.782381px;}
._21{width:51.050651px;}
._2b{width:76.997996px;}
._25{width:180.814616px;}
._1{width:196.670081px;}
._2c{width:199.370635px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y4c{bottom:109.740256px;}
.y4b{bottom:113.520255px;}
.y31{bottom:126.659949px;}
.y4a{bottom:127.379949px;}
.y54{bottom:127.380249px;}
.y78{bottom:127.919949px;}
.y53{bottom:131.160248px;}
.y49{bottom:144.839942px;}
.y6f{bottom:144.840242px;}
.y52{bottom:145.559942px;}
.y30{bottom:147.719941px;}
.y6e{bottom:148.620241px;}
.y48{bottom:162.479935px;}
.y73{bottom:163.019935px;}
.y6d{bottom:166.259933px;}
.y2f{bottom:168.779932px;}
.y47{bottom:180.119928px;}
.y6c{bottom:180.659928px;}
.y46{bottom:183.899926px;}
.y63{bottom:189.299924px;}
.y2e{bottom:190.019924px;}
.y8d{bottom:196.319921px;}
.y45{bottom:197.579921px;}
.y57{bottom:198.299921px;}
.y62{bottom:210.359916px;}
.y2d{bottom:211.079916px;}
.y8c{bottom:213.959914px;}
.y44{bottom:215.219914px;}
.y6b{bottom:215.579914px;}
.y8b{bottom:231.419907px;}
.y2c{bottom:232.139907px;}
.y43{bottom:232.859907px;}
.y8a{bottom:249.059900px;}
.y42{bottom:250.319900px;}
.y2b{bottom:253.199899px;}
.y89{bottom:266.699893px;}
.y41{bottom:267.959893px;}
.y40{bottom:271.739891px;}
.y61{bottom:273.539891px;}
.y2a{bottom:274.259890px;}
.y88{bottom:284.339886px;}
.y3f{bottom:285.599886px;}
.y3e{bottom:289.379884px;}
.y29{bottom:295.499882px;}
.y79{bottom:299.999880px;}
.y87{bottom:301.799879px;}
.y3d{bottom:303.239879px;}
.y3c{bottom:307.019877px;}
.y60{bottom:315.839874px;}
.y28{bottom:316.559873px;}
.y86{bottom:319.439872px;}
.y56{bottom:321.059872px;}
.y3b{bottom:321.419871px;}
.y5f{bottom:336.899865px;}
.y85{bottom:337.079865px;}
.y27{bottom:337.619865px;}
.y6a{bottom:342.119863px;}
.y84{bottom:354.539858px;}
.y51{bottom:357.959857px;}
.y26{bottom:358.679857px;}
.y72{bottom:363.179855px;}
.y83{bottom:372.179851px;}
.y5e{bottom:379.199848px;}
.y25{bottom:379.919848px;}
.y3a{bottom:384.419846px;}
.y82{bottom:389.819844px;}
.y24{bottom:400.979840px;}
.y81{bottom:407.279837px;}
.y66{bottom:421.319831px;}
.y23{bottom:422.039831px;}
.y80{bottom:424.919830px;}
.y71{bottom:426.539829px;}
.y76{bottom:442.379823px;}
.y7f{bottom:442.559823px;}
.y22{bottom:443.099823px;}
.y7e{bottom:460.199816px;}
.y5d{bottom:463.619815px;}
.y21{bottom:464.339814px;}
.y39{bottom:468.839812px;}
.y7d{bottom:477.659809px;}
.y75{bottom:484.679806px;}
.y20{bottom:485.399806px;}
.y7c{bottom:495.299802px;}
.y69{bottom:505.739798px;}
.y1f{bottom:506.459797px;}
.y7b{bottom:512.939795px;}
.y50{bottom:526.799789px;}
.y1e{bottom:527.519789px;}
.y7a{bottom:530.399788px;}
.y38{bottom:532.019787px;}
.y68{bottom:548.039781px;}
.y1d{bottom:548.759780px;}
.y1c{bottom:569.819772px;}
.y55{bottom:574.319770px;}
.y1b{bottom:590.879764px;}
.y5c{bottom:595.379762px;}
.y1a{bottom:611.939755px;}
.y19{bottom:632.999747px;}
.y77{bottom:637.499745px;}
.y18{bottom:654.239738px;}
.y5b{bottom:658.739737px;}
.y5a{bottom:674.579730px;}
.y17{bottom:675.299730px;}
.y4f{bottom:679.799728px;}
.y37{bottom:695.639722px;}
.y16{bottom:696.359721px;}
.y59{bottom:716.699713px;}
.y15{bottom:717.419713px;}
.y36{bottom:737.939705px;}
.y14{bottom:738.659705px;}
.y58{bottom:758.999696px;}
.y13{bottom:759.719696px;}
.y12{bottom:780.779688px;}
.y11{bottom:801.839679px;}
.y10{bottom:823.079671px;}
.y74{bottom:827.579669px;}
.yf{bottom:844.139662px;}
.ye{bottom:865.199654px;}
.y67{bottom:869.699652px;}
.y4e{bottom:885.539646px;}
.yd{bottom:886.259645px;}
.yc{bottom:907.499637px;}
.y35{bottom:927.839629px;}
.yb{bottom:928.559629px;}
.ya{bottom:949.619620px;}
.y34{bottom:969.959612px;}
.y9{bottom:970.679612px;}
.y4d{bottom:975.179610px;}
.y8{bottom:991.919603px;}
.y7{bottom:1012.979595px;}
.y70{bottom:1017.479593px;}
.y6{bottom:1034.039586px;}
.y93{bottom:1054.559578px;}
.y5{bottom:1055.099578px;}
.y92{bottom:1072.019571px;}
.y4{bottom:1076.159570px;}
.y91{bottom:1089.659564px;}
.y65{bottom:1096.679561px;}
.y3{bottom:1097.399561px;}
.y33{bottom:1101.899559px;}
.y90{bottom:1107.299557px;}
.y64{bottom:1117.739553px;}
.y2{bottom:1118.459553px;}
.y32{bottom:1122.959551px;}
.y8f{bottom:1124.759550px;}
.y1{bottom:1139.519544px;}
.y8e{bottom:1142.399543px;}
.h6{height:33.830143px;}
.h5{height:33.965846px;}
.h4{height:41.974436px;}
.h3{height:50.695292px;}
.h1{height:51.855448px;}
.h7{height:51.998182px;}
.h2{height:62.648412px;}
.h8{height:75.093720px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:127.619481px;}
.x13{left:133.019947px;}
.x14{left:134.279946px;}
.x40{left:138.419945px;}
.x62{left:139.679944px;}
.x41{left:144.539942px;}
.x63{left:152.279939px;}
.x19{left:166.319933px;}
.x1a{left:172.619931px;}
.x57{left:180.179369px;}
.x64{left:181.259927px;}
.xb{left:192.779923px;}
.x15{left:194.039922px;}
.xc{left:199.079920px;}
.x16{left:200.699920px;}
.x3b{left:205.379918px;}
.x34{left:206.639917px;}
.x1b{left:209.159916px;}
.x1d{left:213.479915px;}
.x1c{left:215.459914px;}
.x1e{left:219.779912px;}
.x38{left:221.939911px;}
.x39{left:249.479900px;}
.x3a{left:258.479897px;}
.x21{left:261.719895px;}
.x22{left:268.379893px;}
.x1f{left:271.439891px;}
.x28{left:272.519891px;}
.x20{left:277.739889px;}
.x29{left:278.819888px;}
.x48{left:286.559885px;}
.x6b{left:291.239884px;}
.x46{left:293.579883px;}
.x55{left:298.799880px;}
.x5{left:302.399730px;}
.x1{left:305.450878px;}
.x47{left:306.899877px;}
.x56{left:312.119875px;}
.x2a{left:313.379875px;}
.x30{left:317.519873px;}
.x2b{left:319.679872px;}
.x49{left:321.479871px;}
.x31{left:323.819870px;}
.x25{left:325.439870px;}
.x4a{left:330.479868px;}
.x3{left:332.279779px;}
.x65{left:342.359863px;}
.x66{left:349.019860px;}
.x4d{left:350.819860px;}
.x43{left:352.439859px;}
.x4{left:358.199766px;}
.x26{left:359.999856px;}
.x4e{left:364.139854px;}
.x27{left:366.299853px;}
.x4f{left:379.079848px;}
.x67{left:381.419847px;}
.x68{left:388.079845px;}
.x7{left:403.199839px;}
.x8{left:409.859836px;}
.x3c{left:415.439834px;}
.x4b{left:417.059833px;}
.x3d{left:421.739831px;}
.x4c{left:430.379828px;}
.x69{left:434.879826px;}
.x2{left:446.219669px;}
.x6a{left:448.199821px;}
.x3e{left:452.339819px;}
.x3f{left:458.999816px;}
.x42{left:495.359802px;}
.x32{left:500.759800px;}
.x33{left:514.079794px;}
.xf{left:516.599793px;}
.x6c{left:521.459791px;}
.x10{left:523.259791px;}
.x6d{left:534.779786px;}
.x54{left:539.639784px;}
.x35{left:544.319782px;}
.x2c{left:547.379781px;}
.x36{left:550.619780px;}
.x2d{left:553.679779px;}
.x44{left:575.999770px;}
.x5b{left:578.339769px;}
.x45{left:582.299767px;}
.x9{left:584.099766px;}
.x17{left:585.719766px;}
.xa{left:590.399764px;}
.x18{left:592.379763px;}
.x5e{left:602.999759px;}
.x5c{left:612.179755px;}
.x5f{left:615.599754px;}
.x5d{left:618.479753px;}
.x2e{left:625.499750px;}
.x2f{left:631.799747px;}
.x60{left:648.179741px;}
.x58{left:658.799736px;}
.x61{left:660.959736px;}
.x59{left:671.399731px;}
.x50{left:673.559731px;}
.x51{left:686.879725px;}
.x5a{left:713.339715px;}
.x52{left:723.599711px;}
.xd{left:726.839709px;}
.xe{left:733.499707px;}
.x53{left:736.919705px;}
.x37{left:746.999701px;}
.x11{left:754.559698px;}
.x23{left:758.519697px;}
.x12{left:761.219696px;}
.x24{left:765.179694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.008320pt;}
.ls5{letter-spacing:0.150293pt;}
.ls3{letter-spacing:0.276000pt;}
.ls4{letter-spacing:7.692850pt;}
.ls1{letter-spacing:174.831397pt;}
.ws0{word-spacing:-14.079994pt;}
.ws4{word-spacing:-11.686395pt;}
.ws2{word-spacing:-9.433596pt;}
.ws3{word-spacing:-7.603197pt;}
.ws1{word-spacing:0.000000pt;}
._1e{margin-left:-6.702781pt;}
._3{margin-left:-1.010596pt;}
._0{width:1.152867pt;}
._f{width:2.134179pt;}
._e{width:3.104449pt;}
._d{width:4.193176pt;}
._7{width:5.272524pt;}
._6{width:6.754440pt;}
._5{width:7.781555pt;}
._11{width:8.797461pt;}
._9{width:9.760252pt;}
._8{width:10.842218pt;}
._17{width:11.772830pt;}
._15{width:13.069511pt;}
._2a{width:14.045612pt;}
._2{width:15.736222pt;}
._4{width:17.290968pt;}
._1a{width:18.711516pt;}
._14{width:20.191554pt;}
._24{width:21.098116pt;}
._23{width:22.041211pt;}
._19{width:23.397508pt;}
._18{width:24.386734pt;}
._16{width:25.616105pt;}
._22{width:26.593688pt;}
._20{width:27.490648pt;}
._1f{width:28.606305pt;}
._1c{width:30.227186pt;}
._26{width:31.224232pt;}
._1d{width:32.167486pt;}
._1b{width:33.341391pt;}
._10{width:34.729875pt;}
._c{width:35.703143pt;}
._b{width:36.597127pt;}
._a{width:38.344855pt;}
._27{width:39.515590pt;}
._13{width:40.568370pt;}
._12{width:41.609170pt;}
._28{width:43.083597pt;}
._29{width:44.251006pt;}
._21{width:45.378357pt;}
._2b{width:68.442663pt;}
._25{width:160.724103pt;}
._1{width:174.817850pt;}
._2c{width:177.218342pt;}
.fs2{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:97.546894pt;}
.y4b{bottom:100.906893pt;}
.y31{bottom:112.586622pt;}
.y4a{bottom:113.226621pt;}
.y54{bottom:113.226888pt;}
.y78{bottom:113.706621pt;}
.y53{bottom:116.586887pt;}
.y49{bottom:128.746615pt;}
.y6f{bottom:128.746882pt;}
.y52{bottom:129.386615pt;}
.y30{bottom:131.306614pt;}
.y6e{bottom:132.106880pt;}
.y48{bottom:144.426609pt;}
.y73{bottom:144.906609pt;}
.y6d{bottom:147.786608pt;}
.y2f{bottom:150.026607pt;}
.y47{bottom:160.106603pt;}
.y6c{bottom:160.586602pt;}
.y46{bottom:163.466601pt;}
.y63{bottom:168.266599pt;}
.y2e{bottom:168.906599pt;}
.y8d{bottom:174.506597pt;}
.y45{bottom:175.626596pt;}
.y57{bottom:176.266596pt;}
.y62{bottom:186.986592pt;}
.y2d{bottom:187.626592pt;}
.y8c{bottom:190.186591pt;}
.y44{bottom:191.306590pt;}
.y6b{bottom:191.626590pt;}
.y8b{bottom:205.706584pt;}
.y2c{bottom:206.346584pt;}
.y43{bottom:206.986584pt;}
.y8a{bottom:221.386578pt;}
.y42{bottom:222.506578pt;}
.y2b{bottom:225.066577pt;}
.y89{bottom:237.066572pt;}
.y41{bottom:238.186571pt;}
.y40{bottom:241.546570pt;}
.y61{bottom:243.146569pt;}
.y2a{bottom:243.786569pt;}
.y88{bottom:252.746566pt;}
.y3f{bottom:253.866565pt;}
.y3e{bottom:257.226564pt;}
.y29{bottom:262.666562pt;}
.y79{bottom:266.666560pt;}
.y87{bottom:268.266559pt;}
.y3d{bottom:269.546559pt;}
.y3c{bottom:272.906558pt;}
.y60{bottom:280.746554pt;}
.y28{bottom:281.386554pt;}
.y86{bottom:283.946553pt;}
.y56{bottom:285.386553pt;}
.y3b{bottom:285.706552pt;}
.y5f{bottom:299.466547pt;}
.y85{bottom:299.626547pt;}
.y27{bottom:300.106547pt;}
.y6a{bottom:304.106545pt;}
.y84{bottom:315.146541pt;}
.y51{bottom:318.186539pt;}
.y26{bottom:318.826539pt;}
.y72{bottom:322.826538pt;}
.y83{bottom:330.826534pt;}
.y5e{bottom:337.066532pt;}
.y25{bottom:337.706532pt;}
.y3a{bottom:341.706530pt;}
.y82{bottom:346.506528pt;}
.y24{bottom:356.426524pt;}
.y81{bottom:362.026522pt;}
.y66{bottom:374.506517pt;}
.y23{bottom:375.146517pt;}
.y80{bottom:377.706516pt;}
.y71{bottom:379.146515pt;}
.y76{bottom:393.226509pt;}
.y7f{bottom:393.386509pt;}
.y22{bottom:393.866509pt;}
.y7e{bottom:409.066503pt;}
.y5d{bottom:412.106502pt;}
.y21{bottom:412.746502pt;}
.y39{bottom:416.746500pt;}
.y7d{bottom:424.586497pt;}
.y75{bottom:430.826494pt;}
.y20{bottom:431.466494pt;}
.y7c{bottom:440.266491pt;}
.y69{bottom:449.546487pt;}
.y1f{bottom:450.186487pt;}
.y7b{bottom:455.946484pt;}
.y50{bottom:468.266479pt;}
.y1e{bottom:468.906479pt;}
.y7a{bottom:471.466478pt;}
.y38{bottom:472.906478pt;}
.y68{bottom:487.146472pt;}
.y1d{bottom:487.786472pt;}
.y1c{bottom:506.506464pt;}
.y55{bottom:510.506462pt;}
.y1b{bottom:525.226457pt;}
.y5c{bottom:529.226455pt;}
.y1a{bottom:543.946449pt;}
.y19{bottom:562.666442pt;}
.y77{bottom:566.666440pt;}
.y18{bottom:581.546434pt;}
.y5b{bottom:585.546432pt;}
.y5a{bottom:599.626427pt;}
.y17{bottom:600.266427pt;}
.y4f{bottom:604.266425pt;}
.y37{bottom:618.346419pt;}
.y16{bottom:618.986419pt;}
.y59{bottom:637.066412pt;}
.y15{bottom:637.706412pt;}
.y36{bottom:655.946404pt;}
.y14{bottom:656.586404pt;}
.y58{bottom:674.666397pt;}
.y13{bottom:675.306397pt;}
.y12{bottom:694.026389pt;}
.y11{bottom:712.746382pt;}
.y10{bottom:731.626374pt;}
.y74{bottom:735.626372pt;}
.yf{bottom:750.346367pt;}
.ye{bottom:769.066359pt;}
.y67{bottom:773.066357pt;}
.y4e{bottom:787.146352pt;}
.yd{bottom:787.786352pt;}
.yc{bottom:806.666344pt;}
.y35{bottom:824.746337pt;}
.yb{bottom:825.386337pt;}
.ya{bottom:844.106329pt;}
.y34{bottom:862.186322pt;}
.y9{bottom:862.826322pt;}
.y4d{bottom:866.826320pt;}
.y8{bottom:881.706314pt;}
.y7{bottom:900.426306pt;}
.y70{bottom:904.426305pt;}
.y6{bottom:919.146299pt;}
.y93{bottom:937.386292pt;}
.y5{bottom:937.866292pt;}
.y92{bottom:952.906286pt;}
.y4{bottom:956.586284pt;}
.y91{bottom:968.586279pt;}
.y65{bottom:974.826277pt;}
.y3{bottom:975.466276pt;}
.y33{bottom:979.466275pt;}
.y90{bottom:984.266273pt;}
.y64{bottom:993.546269pt;}
.y2{bottom:994.186269pt;}
.y32{bottom:998.186267pt;}
.y8f{bottom:999.786267pt;}
.y1{bottom:1012.906262pt;}
.y8e{bottom:1015.466260pt;}
.h6{height:30.071238pt;}
.h5{height:30.191863pt;}
.h4{height:37.310610pt;}
.h3{height:45.062482pt;}
.h1{height:46.093732pt;}
.h7{height:46.220607pt;}
.h2{height:55.687478pt;}
.h8{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:113.439539pt;}
.x13{left:118.239953pt;}
.x14{left:119.359952pt;}
.x40{left:123.039951pt;}
.x62{left:124.159950pt;}
.x41{left:128.479949pt;}
.x63{left:135.359946pt;}
.x19{left:147.839941pt;}
.x1a{left:153.439939pt;}
.x57{left:160.159439pt;}
.x64{left:161.119936pt;}
.xb{left:171.359931pt;}
.x15{left:172.479931pt;}
.xc{left:176.959929pt;}
.x16{left:178.399929pt;}
.x3b{left:182.559927pt;}
.x34{left:183.679927pt;}
.x1b{left:185.919926pt;}
.x1d{left:189.759924pt;}
.x1c{left:191.519923pt;}
.x1e{left:195.359922pt;}
.x38{left:197.279921pt;}
.x39{left:221.759911pt;}
.x3a{left:229.759908pt;}
.x21{left:232.639907pt;}
.x22{left:238.559905pt;}
.x1f{left:241.279903pt;}
.x28{left:242.239903pt;}
.x20{left:246.879901pt;}
.x29{left:247.839901pt;}
.x48{left:254.719898pt;}
.x6b{left:258.879896pt;}
.x46{left:260.959896pt;}
.x55{left:265.599894pt;}
.x5{left:268.799760pt;}
.x1{left:271.511891pt;}
.x47{left:272.799891pt;}
.x56{left:277.439889pt;}
.x2a{left:278.559889pt;}
.x30{left:282.239887pt;}
.x2b{left:284.159886pt;}
.x49{left:285.759886pt;}
.x31{left:287.839885pt;}
.x25{left:289.279884pt;}
.x4a{left:293.759882pt;}
.x3{left:295.359803pt;}
.x65{left:304.319878pt;}
.x66{left:310.239876pt;}
.x4d{left:311.839875pt;}
.x43{left:313.279875pt;}
.x4{left:318.399792pt;}
.x26{left:319.999872pt;}
.x4e{left:323.679871pt;}
.x27{left:325.599870pt;}
.x4f{left:336.959865pt;}
.x67{left:339.039864pt;}
.x68{left:344.959862pt;}
.x7{left:358.399857pt;}
.x8{left:364.319854pt;}
.x3c{left:369.279852pt;}
.x4b{left:370.719852pt;}
.x3d{left:374.879850pt;}
.x4c{left:382.559847pt;}
.x69{left:386.559845pt;}
.x2{left:396.639706pt;}
.x6a{left:398.399841pt;}
.x3e{left:402.079839pt;}
.x3f{left:407.999837pt;}
.x42{left:440.319824pt;}
.x32{left:445.119822pt;}
.x33{left:456.959817pt;}
.xf{left:459.199816pt;}
.x6c{left:463.519815pt;}
.x10{left:465.119814pt;}
.x6d{left:475.359810pt;}
.x54{left:479.679808pt;}
.x35{left:483.839806pt;}
.x2c{left:486.559805pt;}
.x36{left:489.439804pt;}
.x2d{left:492.159803pt;}
.x44{left:511.999795pt;}
.x5b{left:514.079794pt;}
.x45{left:517.599793pt;}
.x9{left:519.199792pt;}
.x17{left:520.639792pt;}
.xa{left:524.799790pt;}
.x18{left:526.559789pt;}
.x5e{left:535.999786pt;}
.x5c{left:544.159782pt;}
.x5f{left:547.199781pt;}
.x5d{left:549.759780pt;}
.x2e{left:555.999778pt;}
.x2f{left:561.599775pt;}
.x60{left:576.159770pt;}
.x58{left:585.599766pt;}
.x61{left:587.519765pt;}
.x59{left:596.799761pt;}
.x50{left:598.719761pt;}
.x51{left:610.559756pt;}
.x5a{left:634.079746pt;}
.x52{left:643.199743pt;}
.xd{left:646.079742pt;}
.xe{left:651.999739pt;}
.x53{left:655.039738pt;}
.x37{left:663.999734pt;}
.x11{left:670.719732pt;}
.x23{left:674.239730pt;}
.x12{left:676.639729pt;}
.x24{left:680.159728pt;}
}




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