
    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_14abedb73fd466fbd2ec77ac.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_701f3d8b7a7c31a5064edeb8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0a9e97f40090749f07122e3d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.781738;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_43266caca4fea7498ccec9a1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_23bdffb54060f62a18fc3410.woff')format("woff");}.ff5{font-family:ff5;line-height:0.861328;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_ca116ea6352155985603f9e0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.872559;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_de88fa7770ecd0aec6b28f58.woff')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_bcc02259807bc551667982f4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.734375;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:ff9;src:url('chunks/assets/font_9a32fb51712ee475e1f4fe23.woff')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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:ffa;src:url('chunks/assets/font_a65aa2dc7e211fbf090aa476.woff')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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);}
.v1{vertical-align:-36.000001px;}
.v2{vertical-align:-33.750001px;}
.v3{vertical-align:-31.500001px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.689134px;}
.v4{vertical-align:31.500001px;}
.v7{vertical-align:33.750001px;}
.v5{vertical-align:68.849773px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:48.000422px;}
.ls4{letter-spacing:66.017709px;}
.ls1{letter-spacing:86.996184px;}
.ls9{letter-spacing:90.008791px;}
.ls2{letter-spacing:90.009130px;}
.ls8{letter-spacing:90.018636px;}
.lsa{letter-spacing:92.969951px;}
.ls6{letter-spacing:107.986253px;}
.lsd{letter-spacing:107.986262px;}
.ls7{letter-spacing:108.000354px;}
.ls3{letter-spacing:108.000363px;}
.lse{letter-spacing:108.008792px;}
.lsb{letter-spacing:109.500007px;}
.lsc{letter-spacing:110.812504px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,153,0),0 0.015em rgb(255,153,0),0.015em 0 rgb(255,153,0),0 -0.015em  rgb(255,153,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,153,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-24.000002px;}
.ws1{word-spacing:-23.268000px;}
.ws5{word-spacing:-22.500001px;}
.ws4{word-spacing:-21.000000px;}
.ws2{word-spacing:-16.000002px;}
.ws8{word-spacing:-15.000001px;}
.ws7{word-spacing:-0.060000px;}
.ws6{word-spacing:-0.056000px;}
.ws0{word-spacing:0.000000px;}
._9{margin-left:-10.368000px;}
._0{margin-left:-7.920000px;}
._3{margin-left:-6.288001px;}
._2{margin-left:-5.280000px;}
._4{margin-left:-3.300000px;}
._1{margin-left:-2.160000px;}
._5{margin-left:-1.080000px;}
._6{width:1.065270px;}
._7{width:2.725740px;}
._c{width:3.928740px;}
._8{width:5.029440px;}
._e{width:108.008792px;}
._b{width:528.709337px;}
._a{width:887.626288px;}
._d{width:1189.318877px;}
.fcd{color:rgb(255,229,153);}
.fc5{color:rgb(183,183,183);}
.fc7{color:rgb(204,204,204);}
.fc8{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,0);}
.fc2{color:transparent;}
.fc0{color:rgb(255,255,255);}
.fc6{color:rgb(56,86,35);}
.fca{color:rgb(230,0,14);}
.fc3{color:rgb(255,242,204);}
.fcc{color:rgb(197,90,17);}
.fc4{color:rgb(252,229,205);}
.fc9{color:rgb(255,153,0);}
.fcb{color:rgb(23,24,255);}
.fsb{font-size:56.000003px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.000005px;}
.fs6{font-size:63.000002px;}
.fs8{font-size:64.000007px;}
.fsd{font-size:66.000004px;}
.fsc{font-size:72.000002px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:90.000003px;}
.fs2{font-size:96.000006px;}
.fs7{font-size:108.000003px;}
.fs1{font-size:120.000001px;}
.fs9{font-size:126.000004px;}
.fs0{font-size:144.000005px;}
.fse{font-size:288.000009px;}
.y0{bottom:0.000000px;}
.y16{bottom:12.785663px;}
.y62{bottom:33.964947px;}
.y8f{bottom:33.979707px;}
.y4c{bottom:36.294912px;}
.y44{bottom:43.513207px;}
.yc{bottom:50.939343px;}
.y84{bottom:55.284777px;}
.y7c{bottom:60.836900px;}
.y61{bottom:60.964951px;}
.y8e{bottom:60.979708px;}
.y4b{bottom:61.494906px;}
.y69{bottom:62.309503px;}
.y97{bottom:62.613956px;}
.y29{bottom:63.332578px;}
.y53{bottom:66.229467px;}
.y5a{bottom:66.229704px;}
.y15{bottom:68.266155px;}
.y2b{bottom:75.001395px;}
.y75{bottom:79.748241px;}
.y4f{bottom:83.732576px;}
.y4a{bottom:86.694904px;}
.y60{bottom:87.964949px;}
.y8d{bottom:87.979708px;}
.y52{bottom:93.229466px;}
.y59{bottom:93.229702px;}
.y96{bottom:95.733947px;}
.y7b{bottom:98.636901px;}
.y14{bottom:100.407865px;}
.y68{bottom:102.809504px;}
.y28{bottom:103.832579px;}
.y5f{bottom:114.034823px;}
.y8c{bottom:114.979709px;}
.y74{bottom:120.248242px;}
.y43{bottom:123.980950px;}
.y95{bottom:128.853941px;}
.y7a{bottom:136.436914px;}
.y13{bottom:140.907866px;}
.y8b{bottom:141.979713px;}
.y67{bottom:143.309505px;}
.y27{bottom:144.332580px;}
.y1d{bottom:145.020135px;}
.y5e{bottom:148.953870px;}
.y9{bottom:150.912998px;}
.y38{bottom:153.930075px;}
.y55{bottom:156.232676px;}
.y73{bottom:160.748243px;}
.ya8{bottom:161.179152px;}
.y1e{bottom:167.584486px;}
.y8a{bottom:168.979712px;}
.y9d{bottom:170.438150px;}
.y79{bottom:174.236915px;}
.y5d{bottom:175.953869px;}
.y31{bottom:177.364741px;}
.y39{bottom:177.818724px;}
.y12{bottom:181.407868px;}
.y54{bottom:183.232675px;}
.y66{bottom:183.809506px;}
.y26{bottom:184.832585px;}
.yab{bottom:185.410275px;}
.y8{bottom:185.787729px;}
.ya7{bottom:192.229148px;}
.y1c{bottom:193.620148px;}
.y9c{bottom:199.238162px;}
.y72{bottom:201.248248px;}
.y37{bottom:202.530088px;}
.y4e{bottom:209.696797px;}
.y78{bottom:212.036910px;}
.y30{bottom:220.564731px;}
.y51{bottom:221.811356px;}
.y11{bottom:221.907869px;}
.yaa{bottom:223.210274px;}
.ya6{bottom:223.279148px;}
.y65{bottom:224.309508px;}
.y40{bottom:224.508779px;}
.y25{bottom:225.332584px;}
.y9b{bottom:228.038152px;}
.y4d{bottom:234.896795px;}
.y71{bottom:241.748247px;}
.y1b{bottom:242.220150px;}
.y7f{bottom:248.474767px;}
.y77{bottom:249.836909px;}
.y36{bottom:251.130089px;}
.y22{bottom:253.036777px;}
.ya5{bottom:254.329145px;}
.y9a{bottom:256.838144px;}
.ya9{bottom:261.010274px;}
.y10{bottom:262.407870px;}
.y2f{bottom:263.764733px;}
.y64{bottom:264.809510px;}
.y3f{bottom:265.008780px;}
.yae{bottom:266.233332px;}
.y93{bottom:279.058793px;}
.y7{bottom:285.159236px;}
.y99{bottom:285.638142px;}
.y76{bottom:287.636910px;}
.y1a{bottom:290.820129px;}
.y21{bottom:296.236768px;}
.y92{bottom:298.858794px;}
.y35{bottom:299.730068px;}
.yf{bottom:302.907872px;}
.y81{bottom:303.997190px;}
.y3e{bottom:305.508782px;}
.y2e{bottom:306.964723px;}
.y6{bottom:318.279231px;}
.y48{bottom:321.502311px;}
.y19{bottom:339.420119px;}
.y20{bottom:339.436762px;}
.ye{bottom:343.407876px;}
.y3d{bottom:346.008786px;}
.y80{bottom:347.197188px;}
.y34{bottom:348.330058px;}
.y2d{bottom:350.164718px;}
.y7e{bottom:362.135078px;}
.y87{bottom:369.935542px;}
.y47{bottom:376.266491px;}
.y1f{bottom:382.636761px;}
.y82{bottom:383.146880px;}
.yd{bottom:383.907875px;}
.y5{bottom:384.293502px;}
.y3c{bottom:386.508785px;}
.y7d{bottom:387.335076px;}
.y18{bottom:388.020115px;}
.y2c{bottom:393.364717px;}
.y33{bottom:396.930054px;}
.ya4{bottom:410.968574px;}
.y9f{bottom:414.502850px;}
.y4{bottom:420.293503px;}
.y17{bottom:434.100111px;}
.y46{bottom:436.430663px;}
.y70{bottom:440.645428px;}
.y9e{bottom:441.502848px;}
.y89{bottom:441.638140px;}
.y32{bottom:443.010050px;}
.y6c{bottom:446.033699px;}
.ya3{bottom:451.468576px;}
.y3{bottom:456.293504px;}
.y45{bottom:465.230662px;}
.y6f{bottom:481.145433px;}
.y6b{bottom:486.533704px;}
.yad{bottom:486.902125px;}
.y88{bottom:487.267084px;}
.y83{bottom:487.785822px;}
.yb{bottom:489.679484px;}
.y24{bottom:490.832243px;}
.y3b{bottom:491.589625px;}
.ya2{bottom:491.968580px;}
.yac{bottom:515.702123px;}
.y49{bottom:518.147481px;}
.y41{bottom:518.622816px;}
.y2{bottom:519.053974px;}
.y23{bottom:519.632241px;}
.y3a{bottom:520.389624px;}
.y6e{bottom:521.645432px;}
.y6a{bottom:527.033703px;}
.ya1{bottom:532.468579px;}
.y86{bottom:536.760001px;}
.y91{bottom:539.549764px;}
.y50{bottom:543.103461px;}
.y5c{bottom:555.644646px;}
.y57{bottom:555.649487px;}
.y1{bottom:562.253975px;}
.ya{bottom:568.201298px;}
.y90{bottom:568.349763px;}
.y42{bottom:568.436455px;}
.y2a{bottom:569.802283px;}
.y98{bottom:572.912715px;}
.y94{bottom:574.334999px;}
.y58{bottom:577.152993px;}
.y5b{bottom:579.944645px;}
.y56{bottom:579.949486px;}
.y85{bottom:579.959999px;}
.y63{bottom:580.991930px;}
.ya0{bottom:581.400000px;}
.y6d{bottom:582.860788px;}
.h4{height:41.660157px;}
.h1c{height:45.826174px;}
.ha{height:45.896486px;}
.h1a{height:49.992189px;}
.h17{height:56.929687px;}
.h11{height:58.324219px;}
.h15{height:59.964844px;}
.h13{height:60.996096px;}
.h16{height:61.031250px;}
.h18{height:61.154297px;}
.h6{height:61.195312px;}
.h9{height:62.490236px;}
.h7{height:64.248049px;}
.h3{height:65.062504px;}
.h1b{height:65.390627px;}
.h1f{height:65.522463px;}
.h8{height:65.566408px;}
.hb{height:66.656254px;}
.h12{height:66.750004px;}
.h5{height:68.531254px;}
.hd{height:69.937504px;}
.h14{height:70.382815px;}
.h1d{height:72.345388px;}
.he{height:74.830081px;}
.h1e{height:75.410161px;}
.hc{height:77.097659px;}
.h2{height:81.328126px;}
.h10{height:87.301761px;}
.h1{height:97.593753px;}
.hf{height:100.125003px;}
.h19{height:135.506027px;}
.h20{height:221.760007px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:7.809065px;}
.x1c{left:10.597287px;}
.x10{left:13.450512px;}
.xb{left:14.545583px;}
.x12{left:16.768547px;}
.x1{left:18.008859px;}
.x40{left:19.302166px;}
.xd{left:21.200368px;}
.x1f{left:22.786381px;}
.x1d{left:24.479612px;}
.x11{left:26.708977px;}
.x23{left:28.187010px;}
.x13{left:30.650871px;}
.x8{left:31.995433px;}
.x18{left:37.501418px;}
.x17{left:45.345155px;}
.x42{left:53.759231px;}
.xe{left:55.700366px;}
.x27{left:58.263077px;}
.x3e{left:67.263784px;}
.x25{left:70.718507px;}
.x3f{left:74.093507px;}
.x34{left:81.332157px;}
.xc{left:88.610280px;}
.x48{left:93.779913px;}
.x24{left:108.670278px;}
.x3{left:134.277705px;}
.x6{left:140.338591px;}
.x4{left:163.746298px;}
.x5{left:174.198144px;}
.x2{left:185.783912px;}
.x22{left:241.960631px;}
.x1e{left:299.248187px;}
.x14{left:303.029166px;}
.x29{left:317.205573px;}
.x35{left:322.151838px;}
.x36{left:325.524641px;}
.x37{left:383.198502px;}
.x4c{left:415.731110px;}
.x21{left:461.684074px;}
.x43{left:463.121431px;}
.x15{left:484.003682px;}
.x20{left:489.358951px;}
.x47{left:492.407554px;}
.x46{left:509.158479px;}
.x16{left:530.040729px;}
.x44{left:541.915915px;}
.x19{left:546.499289px;}
.x32{left:552.441685px;}
.xa{left:560.623000px;}
.x3c{left:578.462981px;}
.x45{left:583.408481px;}
.x33{left:597.716344px;}
.x2a{left:602.721514px;}
.x2b{left:625.505578px;}
.x1a{left:655.393162px;}
.x26{left:671.616912px;}
.x3a{left:685.928159px;}
.x3d{left:691.355497px;}
.x38{left:699.051847px;}
.x1b{left:701.430210px;}
.x41{left:710.784619px;}
.x39{left:719.301848px;}
.x3b{left:752.070512px;}
.x2e{left:757.685843px;}
.x2d{left:771.803170px;}
.x30{left:793.083693px;}
.x31{left:797.796251px;}
.x28{left:808.049051px;}
.x2f{left:847.408752px;}
.x2c{left:850.828032px;}
.x4a{left:867.968344px;}
.x4b{left:869.620491px;}
.xf{left:873.640940px;}
.x7{left:904.741026px;}
.x49{left:915.569917px;}
@media print{
.v1{vertical-align:-32.000001pt;}
.v2{vertical-align:-30.000001pt;}
.v3{vertical-align:-28.000001pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.057008pt;}
.v4{vertical-align:28.000001pt;}
.v7{vertical-align:30.000001pt;}
.v5{vertical-align:61.199798pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:42.667041pt;}
.ls4{letter-spacing:58.682408pt;}
.ls1{letter-spacing:77.329941pt;}
.ls9{letter-spacing:80.007815pt;}
.ls2{letter-spacing:80.008116pt;}
.ls8{letter-spacing:80.016565pt;}
.lsa{letter-spacing:82.639956pt;}
.ls6{letter-spacing:95.987780pt;}
.lsd{letter-spacing:95.987788pt;}
.ls7{letter-spacing:96.000315pt;}
.ls3{letter-spacing:96.000323pt;}
.lse{letter-spacing:96.007815pt;}
.lsb{letter-spacing:97.333339pt;}
.lsc{letter-spacing:98.500003pt;}
.ws3{word-spacing:-21.333335pt;}
.ws1{word-spacing:-20.682667pt;}
.ws5{word-spacing:-20.000001pt;}
.ws4{word-spacing:-18.666667pt;}
.ws2{word-spacing:-14.222224pt;}
.ws8{word-spacing:-13.333334pt;}
.ws7{word-spacing:-0.053333pt;}
.ws6{word-spacing:-0.049778pt;}
.ws0{word-spacing:0.000000pt;}
._9{margin-left:-9.216000pt;}
._0{margin-left:-7.040000pt;}
._3{margin-left:-5.589334pt;}
._2{margin-left:-4.693334pt;}
._4{margin-left:-2.933333pt;}
._1{margin-left:-1.920000pt;}
._5{margin-left:-0.960000pt;}
._6{width:0.946907pt;}
._7{width:2.422880pt;}
._c{width:3.492213pt;}
._8{width:4.470613pt;}
._e{width:96.007815pt;}
._b{width:469.963855pt;}
._a{width:789.001145pt;}
._d{width:1057.172335pt;}
.fsb{font-size:49.777780pt;}
.fs3{font-size:53.333334pt;}
.fsa{font-size:53.333338pt;}
.fs6{font-size:56.000002pt;}
.fs8{font-size:56.888895pt;}
.fsd{font-size:58.666670pt;}
.fsc{font-size:64.000002pt;}
.fs4{font-size:74.666666pt;}
.fs5{font-size:80.000003pt;}
.fs2{font-size:85.333339pt;}
.fs7{font-size:96.000003pt;}
.fs1{font-size:106.666667pt;}
.fs9{font-size:112.000004pt;}
.fs0{font-size:128.000004pt;}
.fse{font-size:256.000008pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:11.365034pt;}
.y62{bottom:30.191064pt;}
.y8f{bottom:30.204184pt;}
.y4c{bottom:32.262144pt;}
.y44{bottom:38.678406pt;}
.yc{bottom:45.279416pt;}
.y84{bottom:49.142024pt;}
.y7c{bottom:54.077244pt;}
.y61{bottom:54.191067pt;}
.y8e{bottom:54.204184pt;}
.y4b{bottom:54.662138pt;}
.y69{bottom:55.386224pt;}
.y97{bottom:55.656850pt;}
.y29{bottom:56.295625pt;}
.y53{bottom:58.870638pt;}
.y5a{bottom:58.870848pt;}
.y15{bottom:60.681027pt;}
.y2b{bottom:66.667907pt;}
.y75{bottom:70.887325pt;}
.y4f{bottom:74.428956pt;}
.y4a{bottom:77.062137pt;}
.y60{bottom:78.191066pt;}
.y8d{bottom:78.204185pt;}
.y52{bottom:82.870636pt;}
.y59{bottom:82.870846pt;}
.y96{bottom:85.096841pt;}
.y7b{bottom:87.677246pt;}
.y14{bottom:89.251436pt;}
.y68{bottom:91.386226pt;}
.y28{bottom:92.295626pt;}
.y5f{bottom:101.364287pt;}
.y8c{bottom:102.204186pt;}
.y74{bottom:106.887326pt;}
.y43{bottom:110.205289pt;}
.y95{bottom:114.536836pt;}
.y7a{bottom:121.277257pt;}
.y13{bottom:125.251437pt;}
.y8b{bottom:126.204190pt;}
.y67{bottom:127.386227pt;}
.y27{bottom:128.295627pt;}
.y1d{bottom:128.906787pt;}
.y5e{bottom:132.403440pt;}
.y9{bottom:134.144887pt;}
.y38{bottom:136.826733pt;}
.y55{bottom:138.873490pt;}
.y73{bottom:142.887327pt;}
.ya8{bottom:143.270357pt;}
.y1e{bottom:148.963987pt;}
.y8a{bottom:150.204189pt;}
.y9d{bottom:151.500578pt;}
.y79{bottom:154.877258pt;}
.y5d{bottom:156.403439pt;}
.y31{bottom:157.657548pt;}
.y39{bottom:158.061088pt;}
.y12{bottom:161.251438pt;}
.y54{bottom:162.873489pt;}
.y66{bottom:163.386228pt;}
.y26{bottom:164.295631pt;}
.yab{bottom:164.809133pt;}
.y8{bottom:165.144648pt;}
.ya7{bottom:170.870354pt;}
.y1c{bottom:172.106798pt;}
.y9c{bottom:177.100588pt;}
.y72{bottom:178.887331pt;}
.y37{bottom:180.026744pt;}
.y4e{bottom:186.397153pt;}
.y78{bottom:188.477254pt;}
.y30{bottom:196.057539pt;}
.y51{bottom:197.165650pt;}
.y11{bottom:197.251439pt;}
.yaa{bottom:198.409132pt;}
.ya6{bottom:198.470354pt;}
.y65{bottom:199.386229pt;}
.y40{bottom:199.563359pt;}
.y25{bottom:200.295630pt;}
.y9b{bottom:202.700579pt;}
.y4d{bottom:208.797151pt;}
.y71{bottom:214.887331pt;}
.y1b{bottom:215.306800pt;}
.y7f{bottom:220.866460pt;}
.y77{bottom:222.077253pt;}
.y36{bottom:223.226746pt;}
.y22{bottom:224.921580pt;}
.ya5{bottom:226.070351pt;}
.y9a{bottom:228.300572pt;}
.ya9{bottom:232.009132pt;}
.y10{bottom:233.251440pt;}
.y2f{bottom:234.457540pt;}
.y64{bottom:235.386231pt;}
.y3f{bottom:235.563360pt;}
.yae{bottom:236.651850pt;}
.y93{bottom:248.052261pt;}
.y7{bottom:253.474877pt;}
.y99{bottom:253.900571pt;}
.y76{bottom:255.677253pt;}
.y1a{bottom:258.506781pt;}
.y21{bottom:263.321571pt;}
.y92{bottom:265.652261pt;}
.y35{bottom:266.426727pt;}
.yf{bottom:269.251441pt;}
.y81{bottom:270.219724pt;}
.y3e{bottom:271.563361pt;}
.y2e{bottom:272.857531pt;}
.y6{bottom:282.914872pt;}
.y48{bottom:285.779832pt;}
.y19{bottom:301.706772pt;}
.y20{bottom:301.721566pt;}
.ye{bottom:305.251445pt;}
.y3d{bottom:307.563366pt;}
.y80{bottom:308.619723pt;}
.y34{bottom:309.626719pt;}
.y2d{bottom:311.257527pt;}
.y7e{bottom:321.897847pt;}
.y87{bottom:328.831593pt;}
.y47{bottom:334.459103pt;}
.y1f{bottom:340.121566pt;}
.y82{bottom:340.575005pt;}
.yd{bottom:341.251445pt;}
.y5{bottom:341.594224pt;}
.y3c{bottom:343.563365pt;}
.y7d{bottom:344.297846pt;}
.y18{bottom:344.906769pt;}
.y2c{bottom:349.657526pt;}
.y33{bottom:352.826715pt;}
.ya4{bottom:365.305399pt;}
.y9f{bottom:368.446978pt;}
.y4{bottom:373.594225pt;}
.y17{bottom:385.866765pt;}
.y46{bottom:387.938367pt;}
.y70{bottom:391.684825pt;}
.y9e{bottom:392.446976pt;}
.y89{bottom:392.567235pt;}
.y32{bottom:393.786711pt;}
.y6c{bottom:396.474399pt;}
.ya3{bottom:401.305401pt;}
.y3{bottom:405.594226pt;}
.y45{bottom:413.538366pt;}
.y6f{bottom:427.684829pt;}
.y6b{bottom:432.474404pt;}
.yad{bottom:432.801889pt;}
.y88{bottom:433.126297pt;}
.y83{bottom:433.587398pt;}
.yb{bottom:435.270653pt;}
.y24{bottom:436.295327pt;}
.y3b{bottom:436.968556pt;}
.ya2{bottom:437.305405pt;}
.yac{bottom:458.401887pt;}
.y49{bottom:460.575538pt;}
.y41{bottom:460.998058pt;}
.y2{bottom:461.381310pt;}
.y23{bottom:461.895326pt;}
.y3a{bottom:462.568555pt;}
.y6e{bottom:463.684829pt;}
.y6a{bottom:468.474403pt;}
.ya1{bottom:473.305404pt;}
.y86{bottom:477.120001pt;}
.y91{bottom:479.599791pt;}
.y50{bottom:482.758632pt;}
.y5c{bottom:493.906352pt;}
.y57{bottom:493.910655pt;}
.y1{bottom:499.781311pt;}
.ya{bottom:505.067821pt;}
.y90{bottom:505.199789pt;}
.y42{bottom:505.276849pt;}
.y2a{bottom:506.490918pt;}
.y98{bottom:509.255747pt;}
.y94{bottom:510.519999pt;}
.y58{bottom:513.024883pt;}
.y5b{bottom:515.506351pt;}
.y56{bottom:515.510654pt;}
.y85{bottom:515.519999pt;}
.y63{bottom:516.437271pt;}
.ya0{bottom:516.800000pt;}
.y6d{bottom:518.098478pt;}
.h4{height:37.031250pt;}
.h1c{height:40.734377pt;}
.ha{height:40.796876pt;}
.h1a{height:44.437501pt;}
.h17{height:50.604166pt;}
.h11{height:51.843750pt;}
.h15{height:53.302083pt;}
.h13{height:54.218752pt;}
.h16{height:54.250000pt;}
.h18{height:54.359375pt;}
.h6{height:54.395833pt;}
.h9{height:55.546877pt;}
.h7{height:57.109377pt;}
.h3{height:57.833337pt;}
.h1b{height:58.125002pt;}
.h1f{height:58.242189pt;}
.h8{height:58.281252pt;}
.hb{height:59.250004pt;}
.h12{height:59.333337pt;}
.h5{height:60.916671pt;}
.hd{height:62.166671pt;}
.h14{height:62.562502pt;}
.h1d{height:64.307012pt;}
.he{height:66.515627pt;}
.h1e{height:67.031254pt;}
.hc{height:68.531252pt;}
.h2{height:72.291667pt;}
.h10{height:77.601565pt;}
.h1{height:86.750003pt;}
.hf{height:89.000003pt;}
.h19{height:120.449802pt;}
.h20{height:197.120006pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.941392pt;}
.x1c{left:9.419811pt;}
.x10{left:11.956011pt;}
.xb{left:12.929407pt;}
.x12{left:14.905375pt;}
.x1{left:16.007875pt;}
.x40{left:17.157481pt;}
.xd{left:18.844772pt;}
.x1f{left:20.254561pt;}
.x1d{left:21.759655pt;}
.x11{left:23.741313pt;}
.x23{left:25.055120pt;}
.x13{left:27.245219pt;}
.x8{left:28.440385pt;}
.x18{left:33.334594pt;}
.x17{left:40.306804pt;}
.x42{left:47.785984pt;}
.xe{left:49.511437pt;}
.x27{left:51.789402pt;}
.x3e{left:59.790030pt;}
.x25{left:62.860895pt;}
.x3f{left:65.860895pt;}
.x34{left:72.295250pt;}
.xc{left:78.764694pt;}
.x48{left:83.359923pt;}
.x24{left:96.595803pt;}
.x3{left:119.357960pt;}
.x6{left:124.745414pt;}
.x4{left:145.552265pt;}
.x5{left:154.842795pt;}
.x2{left:165.141255pt;}
.x22{left:215.076117pt;}
.x1e{left:265.998389pt;}
.x14{left:269.359259pt;}
.x29{left:281.960509pt;}
.x35{left:286.357189pt;}
.x36{left:289.355236pt;}
.x37{left:340.620891pt;}
.x4c{left:369.538765pt;}
.x21{left:410.385843pt;}
.x43{left:411.663494pt;}
.x15{left:430.225495pt;}
.x20{left:434.985734pt;}
.x47{left:437.695603pt;}
.x46{left:452.585314pt;}
.x16{left:471.147315pt;}
.x44{left:481.703035pt;}
.x19{left:485.777146pt;}
.x32{left:491.059275pt;}
.xa{left:498.331556pt;}
.x3c{left:514.189316pt;}
.x45{left:518.585317pt;}
.x33{left:531.303417pt;}
.x2a{left:535.752457pt;}
.x2b{left:556.004958pt;}
.x1a{left:582.571700pt;}
.x26{left:596.992811pt;}
.x3a{left:609.713920pt;}
.x3d{left:614.538220pt;}
.x38{left:621.379420pt;}
.x1b{left:623.493520pt;}
.x41{left:631.808550pt;}
.x39{left:639.379420pt;}
.x3b{left:668.507121pt;}
.x2e{left:673.498528pt;}
.x2d{left:686.047262pt;}
.x30{left:704.963283pt;}
.x31{left:709.152223pt;}
.x28{left:718.265823pt;}
.x2f{left:753.252224pt;}
.x2c{left:756.291584pt;}
.x4a{left:771.527417pt;}
.x4b{left:772.995992pt;}
.xf{left:776.569725pt;}
.x7{left:804.214246pt;}
.x49{left:813.839926pt;}
}




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