
    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_c07a676139c2b32399dbd5bb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.951000;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_56d1ea0162c20f490467669d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941895;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_4ed5c9a28ac81ca97861e6c9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b6ee969c24dfe7072470e1ee.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933462;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_f6663b596aaa4af7460500e7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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_ddf6d37b0e28c83ace8f98d7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_802a0f04025e637f9557417d.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7368ae411166ea283ddef0eb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.936000;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_393ec6d6712075280b818beb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.913574;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_2938aebda2b6aeba5b56d3bf.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_49970f4f756bdfb6a97c3be2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.926270;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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:51.237047px;}
.v1{vertical-align:91.429293px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:107.972439px;}
.ls4{letter-spacing:107.972508px;}
.lsa{letter-spacing:107.978155px;}
.ls9{letter-spacing:107.986681px;}
.ls6{letter-spacing:107.986821px;}
.ls1{letter-spacing:107.998953px;}
.ls7{letter-spacing:108.000849px;}
.ls8{letter-spacing:108.000989px;}
.ls2{letter-spacing:108.029532px;}
.ls3{letter-spacing:144.000990px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-114.240000px;}
.ws3{word-spacing:-104.160000px;}
.ws5{word-spacing:-69.804002px;}
.wsc{word-spacing:-66.480000px;}
.wsb{word-spacing:-66.355196px;}
.ws6{word-spacing:-63.156004px;}
.wsd{word-spacing:-59.832002px;}
.ws7{word-spacing:-58.170004px;}
.ws8{word-spacing:-56.508000px;}
.ws10{word-spacing:-56.258698px;}
.ws1{word-spacing:-48.198003px;}
.wsa{word-spacing:-41.550000px;}
.wse{word-spacing:-0.408000px;}
.ws2{word-spacing:-0.372000px;}
.ws9{word-spacing:-0.120000px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:370.605837px;}
._7{margin-left:-26.469600px;}
._12{margin-left:-25.401599px;}
._16{margin-left:-24.192001px;}
._15{margin-left:-23.040000px;}
._e{margin-left:-21.966001px;}
._17{margin-left:-19.685098px;}
._14{margin-left:-17.658000px;}
._10{margin-left:-16.329601px;}
._8{margin-left:-14.212800px;}
._6{margin-left:-12.912000px;}
._a{margin-left:-11.844000px;}
._18{margin-left:-10.214999px;}
._5{margin-left:-9.072000px;}
._0{margin-left:-7.308000px;}
._4{margin-left:-5.796000px;}
._2{margin-left:-4.002000px;}
._3{margin-left:-2.262000px;}
._9{margin-left:-1.215019px;}
._f{width:1.002000px;}
._1{width:2.088000px;}
._19{width:3.353101px;}
._13{width:108.029361px;}
._b{width:1031.995473px;}
._d{width:1069.011484px;}
._c{width:1106.062505px;}
._11{width:1669.351328px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(63,84,208);}
.fc5{color:rgb(25,25,25);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:114.000007px;}
.fs6{font-size:120.000001px;}
.fs14{font-size:144.000005px;}
.fs12{font-size:149.999999px;}
.fs1{font-size:174.000012px;}
.fsa{font-size:180.000006px;}
.fsd{font-size:192.000012px;}
.fs1a{font-size:203.099991px;}
.fse{font-size:204.000001px;}
.fsc{font-size:210.000013px;}
.fs15{font-size:216.000007px;}
.fs7{font-size:228.000013px;}
.fs3{font-size:234.000007px;}
.fs5{font-size:240.000002px;}
.fs0{font-size:252.000008px;}
.fs13{font-size:259.199986px;}
.fs11{font-size:260.399888px;}
.fs9{font-size:274.800006px;}
.fs16{font-size:276.000003px;}
.fs10{font-size:299.999998px;}
.fs4{font-size:302.400010px;}
.fs8{font-size:322.799995px;}
.fsb{font-size:335.999999px;}
.fs2{font-size:372.000000px;}
.fs19{font-size:408.000001px;}
.fsf{font-size:420.000025px;}
.fs18{font-size:504.000016px;}
.y0{bottom:0.000000px;}
.y2{bottom:30.295998px;}
.y4c{bottom:37.052962px;}
.y11{bottom:56.164422px;}
.y8{bottom:74.704925px;}
.y1{bottom:105.895990px;}
.y53{bottom:128.380094px;}
.y7{bottom:144.904916px;}
.y65{bottom:180.280137px;}
.y66{bottom:186.040250px;}
.y2a{bottom:199.375100px;}
.y4a{bottom:201.386893px;}
.y83{bottom:227.639511px;}
.y8f{bottom:245.063894px;}
.y64{bottom:248.680139px;}
.y1a{bottom:253.466778px;}
.y29{bottom:262.375102px;}
.y77{bottom:268.633556px;}
.y5a{bottom:268.840218px;}
.y68{bottom:282.880230px;}
.y49{bottom:284.186895px;}
.y20{bottom:304.709810px;}
.y82{bottom:307.019513px;}
.y63{bottom:317.080164px;}
.y19{bottom:321.866746px;}
.y28{bottom:325.375104px;}
.y14{bottom:332.437337px;}
.y8e{bottom:336.458897px;}
.y76{bottom:344.233547px;}
.y41{bottom:350.613130px;}
.y59{bottom:351.640199px;}
.y30{bottom:352.940170px;}
.y67{bottom:357.400221px;}
.y33{bottom:358.272783px;}
.y2d{bottom:363.020159px;}
.y48{bottom:366.986864px;}
.y6c{bottom:368.200233px;}
.y8d{bottom:382.156342px;}
.y62{bottom:385.480143px;}
.y81{bottom:386.399516px;}
.y1f{bottom:387.149857px;}
.y27{bottom:388.375106px;}
.y18{bottom:390.266749px;}
.y6{bottom:401.646394px;}
.y10{bottom:407.306764px;}
.y2f{bottom:414.140161px;}
.y32{bottom:419.472773px;}
.y2c{bottom:420.620154px;}
.y75{bottom:426.206821px;}
.y58{bottom:434.440168px;}
.y13{bottom:444.037340px;}
.y47{bottom:449.786844px;}
.y6b{bottom:451.000213px;}
.y61{bottom:452.512146px;}
.y71{bottom:459.326822px;}
.y80{bottom:465.779519px;}
.y8c{bottom:473.551334px;}
.y2e{bottom:475.340155px;}
.y2b{bottom:478.220151px;}
.y31{bottom:480.672767px;}
.yf{bottom:482.906789px;}
.y40{bottom:488.092994px;}
.y74{bottom:513.146824px;}
.y5{bottom:513.246375px;}
.y60{bottom:514.072148px;}
.y57{bottom:517.240181px;}
.y17{bottom:528.506776px;}
.y25{bottom:530.647403px;}
.y6a{bottom:531.280193px;}
.y46{bottom:532.586813px;}
.y4e{bottom:540.866791px;}
.y7f{bottom:545.159521px;}
.y70{bottom:546.266825px;}
.y3f{bottom:554.333019px;}
.y12{bottom:555.637333px;}
.ye{bottom:558.506791px;}
.y8b{bottom:564.946325px;}
.y1e{bottom:569.309773px;}
.y52{bottom:569.486837px;}
.y5f{bottom:575.632138px;}
.y24{bottom:584.647412px;}
.y56{bottom:600.040173px;}
.y73{bottom:600.086815px;}
.y16{bottom:604.106789px;}
.y69{bottom:605.800173px;}
.y8a{bottom:610.643827px;}
.y45{bottom:615.386827px;}
.y3e{bottom:620.573021px;}
.y4d{bottom:621.146827px;}
.y7e{bottom:624.539501px;}
.y4{bottom:624.846379px;}
.y79{bottom:625.164169px;}
.y6f{bottom:628.166850px;}
.yd{bottom:634.106794px;}
.y5e{bottom:637.192152px;}
.y23{bottom:638.647409px;}
.y89{bottom:656.341317px;}
.y51{bottom:664.706829px;}
.y1d{bottom:666.149776px;}
.y15{bottom:679.706803px;}
.y55{bottom:682.840164px;}
.y3d{bottom:686.813034px;}
.y72{bottom:687.026841px;}
.y44{bottom:698.186818px;}
.y6e{bottom:698.546841px;}
.y5d{bottom:700.120154px;}
.y7d{bottom:703.919504px;}
.yc{bottom:709.706808px;}
.y84{bottom:727.806371px;}
.y22{bottom:731.168591px;}
.y3{bottom:736.446371px;}
.y88{bottom:747.736309px;}
.y3c{bottom:753.053014px;}
.y50{bottom:759.926809px;}
.y1c{bottom:762.989779px;}
.y54{bottom:765.640156px;}
.y5c{bottom:768.520156px;}
.y6d{bottom:773.966821px;}
.y78{bottom:776.364162px;}
.y43{bottom:780.986810px;}
.y7c{bottom:783.299529px;}
.yb{bottom:785.306810px;}
.y87{bottom:793.433799px;}
.y3b{bottom:819.293005px;}
.y38{bottom:819.588565px;}
.y86{bottom:839.131312px;}
.y4f{bottom:855.146801px;}
.y1b{bottom:859.829782px;}
.ya{bottom:860.906807px;}
.y7b{bottom:862.679509px;}
.y42{bottom:863.786801px;}
.y5b{bottom:866.669749px;}
.y85{bottom:884.828808px;}
.y37{bottom:928.964331px;}
.y7a{bottom:942.059489px;}
.y3a{bottom:942.171089px;}
.y34{bottom:987.700976px;}
.y26{bottom:1007.860988px;}
.y9{bottom:1015.924989px;}
.y35{bottom:1016.500977px;}
.y39{bottom:1019.931069px;}
.y36{bottom:1045.901368px;}
.y21{bottom:1084.440738px;}
.y4b{bottom:1113.445864px;}
.h1a{height:79.154301px;}
.h7{height:86.250001px;}
.h17{height:105.398441px;}
.h15{height:109.790038px;}
.hb{height:131.748051px;}
.he{height:137.812509px;}
.h14{height:140.531259px;}
.hf{height:146.425782px;}
.h1f{height:148.655707px;}
.h1b{height:149.314454px;}
.hd{height:153.706064px;}
.h18{height:158.097661px;}
.h8{height:166.880869px;}
.h4{height:168.530279px;}
.h16{height:175.664064px;}
.h1c{height:180.386725px;}
.h6{height:184.447272px;}
.h1{height:189.504006px;}
.h13{height:194.918389px;}
.h12{height:195.820716px;}
.h19{height:202.013674px;}
.ha{height:206.649604px;}
.h2{height:218.785747px;}
.h11{height:225.599998px;}
.h5{height:227.404807px;}
.h9{height:242.745596px;}
.hc{height:252.671999px;}
.h3{height:268.755692px;}
.h1e{height:294.764308px;}
.h10{height:303.433865px;}
.h1d{height:379.008012px;}
.h0{height:1215.000000px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x36{left:64.464872px;}
.x40{left:83.952679px;}
.x2e{left:85.768222px;}
.x48{left:91.342290px;}
.x2b{left:93.019816px;}
.x8{left:95.004926px;}
.xb{left:97.562543px;}
.x32{left:98.657587px;}
.x9{left:101.305190px;}
.x10{left:104.202679px;}
.x11{left:132.731428px;}
.x41{left:145.204259px;}
.x2c{left:149.004927px;}
.x33{left:154.990276px;}
.x16{left:165.180122px;}
.x43{left:170.497119px;}
.x15{left:181.378941px;}
.x29{left:184.465052px;}
.xa{left:203.004929px;}
.x1{left:217.433516px;}
.x44{left:221.590076px;}
.x2a{left:287.147270px;}
.x2d{left:300.150984px;}
.x1e{left:344.298184px;}
.x1d{left:350.706820px;}
.x28{left:360.684945px;}
.x1c{left:375.181268px;}
.x39{left:393.261493px;}
.x42{left:414.311481px;}
.x3{left:516.627012px;}
.x13{left:523.246104px;}
.x47{left:537.922018px;}
.x26{left:579.677419px;}
.x3f{left:591.819296px;}
.x17{left:613.635815px;}
.x4{left:638.999672px;}
.xe{left:644.872037px;}
.x2{left:669.958908px;}
.x1f{left:719.428394px;}
.x31{left:728.748158px;}
.x5{left:738.491311px;}
.x20{left:770.273181px;}
.x14{left:867.070085px;}
.xf{left:902.077229px;}
.x18{left:1062.091564px;}
.x23{left:1128.969245px;}
.x37{left:1132.346834px;}
.x3a{left:1133.577325px;}
.x21{left:1145.228599px;}
.x22{left:1149.897291px;}
.x34{left:1166.539549px;}
.x45{left:1177.133866px;}
.x3d{left:1191.197819px;}
.x3b{left:1196.814031px;}
.x35{left:1216.886889px;}
.x46{left:1242.186115px;}
.x3e{left:1250.814033px;}
.x6{left:1262.466440px;}
.xd{left:1287.677741px;}
.x1a{left:1293.056752px;}
.x3c{left:1316.556335px;}
.x12{left:1418.159318px;}
.x2f{left:1441.153059px;}
.x19{left:1510.547223px;}
.x7{left:1584.787742px;}
.x25{left:1593.710848px;}
.x38{left:1614.888839px;}
.x24{left:1663.255088px;}
.x1b{left:2076.251163px;}
.x27{left:2078.477729px;}
.x30{left:2089.483773px;}
.xc{left:2092.929215px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:45.544041pt;}
.v1{vertical-align:81.270483pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:95.975501pt;}
.ls4{letter-spacing:95.975562pt;}
.lsa{letter-spacing:95.980582pt;}
.ls9{letter-spacing:95.988161pt;}
.ls6{letter-spacing:95.988285pt;}
.ls1{letter-spacing:95.999070pt;}
.ls7{letter-spacing:96.000755pt;}
.ls8{letter-spacing:96.000879pt;}
.ls2{letter-spacing:96.026251pt;}
.ls3{letter-spacing:128.000880pt;}
.wsf{word-spacing:-101.546667pt;}
.ws3{word-spacing:-92.586667pt;}
.ws5{word-spacing:-62.048002pt;}
.wsc{word-spacing:-59.093334pt;}
.wsb{word-spacing:-58.982397pt;}
.ws6{word-spacing:-56.138670pt;}
.wsd{word-spacing:-53.184002pt;}
.ws7{word-spacing:-51.706670pt;}
.ws8{word-spacing:-50.229333pt;}
.ws10{word-spacing:-50.007731pt;}
.ws1{word-spacing:-42.842670pt;}
.wsa{word-spacing:-36.933333pt;}
.wse{word-spacing:-0.362667pt;}
.ws2{word-spacing:-0.330667pt;}
.ws9{word-spacing:-0.106667pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:329.427411pt;}
._7{margin-left:-23.528533pt;}
._12{margin-left:-22.579199pt;}
._16{margin-left:-21.504001pt;}
._15{margin-left:-20.480000pt;}
._e{margin-left:-19.525334pt;}
._17{margin-left:-17.497865pt;}
._14{margin-left:-15.696000pt;}
._10{margin-left:-14.515200pt;}
._8{margin-left:-12.633600pt;}
._6{margin-left:-11.477333pt;}
._a{margin-left:-10.528000pt;}
._18{margin-left:-9.079999pt;}
._5{margin-left:-8.064000pt;}
._0{margin-left:-6.496000pt;}
._4{margin-left:-5.152000pt;}
._2{margin-left:-3.557334pt;}
._3{margin-left:-2.010667pt;}
._9{margin-left:-1.080017pt;}
._f{width:0.890667pt;}
._1{width:1.856000pt;}
._19{width:2.980534pt;}
._13{width:96.026098pt;}
._b{width:917.329309pt;}
._d{width:950.232430pt;}
._c{width:983.166671pt;}
._11{width:1483.867847pt;}
.fs17{font-size:101.333339pt;}
.fs6{font-size:106.666667pt;}
.fs14{font-size:128.000004pt;}
.fs12{font-size:133.333332pt;}
.fs1{font-size:154.666677pt;}
.fsa{font-size:160.000005pt;}
.fsd{font-size:170.666677pt;}
.fs1a{font-size:180.533326pt;}
.fse{font-size:181.333334pt;}
.fsc{font-size:186.666678pt;}
.fs15{font-size:192.000006pt;}
.fs7{font-size:202.666678pt;}
.fs3{font-size:208.000007pt;}
.fs5{font-size:213.333335pt;}
.fs0{font-size:224.000007pt;}
.fs13{font-size:230.399987pt;}
.fs11{font-size:231.466567pt;}
.fs9{font-size:244.266672pt;}
.fs16{font-size:245.333336pt;}
.fs10{font-size:266.666665pt;}
.fs4{font-size:268.800009pt;}
.fs8{font-size:286.933329pt;}
.fsb{font-size:298.666666pt;}
.fs2{font-size:330.666667pt;}
.fs19{font-size:362.666668pt;}
.fsf{font-size:373.333356pt;}
.fs18{font-size:448.000014pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.929776pt;}
.y4c{bottom:32.935966pt;}
.y11{bottom:49.923931pt;}
.y8{bottom:66.404378pt;}
.y1{bottom:94.129768pt;}
.y53{bottom:114.115639pt;}
.y7{bottom:128.804370pt;}
.y65{bottom:160.249011pt;}
.y66{bottom:165.369111pt;}
.y2a{bottom:177.222311pt;}
.y4a{bottom:179.010571pt;}
.y83{bottom:202.346232pt;}
.y8f{bottom:217.834572pt;}
.y64{bottom:221.049013pt;}
.y1a{bottom:225.303803pt;}
.y29{bottom:233.222313pt;}
.y77{bottom:238.785383pt;}
.y5a{bottom:238.969083pt;}
.y68{bottom:251.449093pt;}
.y49{bottom:252.610574pt;}
.y20{bottom:270.853164pt;}
.y82{bottom:272.906234pt;}
.y63{bottom:281.849034pt;}
.y19{bottom:286.103775pt;}
.y28{bottom:289.222315pt;}
.y14{bottom:295.499855pt;}
.y8e{bottom:299.074575pt;}
.y76{bottom:305.985375pt;}
.y41{bottom:311.656115pt;}
.y59{bottom:312.569065pt;}
.y30{bottom:313.724595pt;}
.y67{bottom:317.689086pt;}
.y33{bottom:318.464696pt;}
.y2d{bottom:322.684586pt;}
.y48{bottom:326.210546pt;}
.y6c{bottom:327.289096pt;}
.y8d{bottom:339.694526pt;}
.y62{bottom:342.649016pt;}
.y81{bottom:343.466236pt;}
.y1f{bottom:344.133206pt;}
.y27{bottom:345.222316pt;}
.y18{bottom:346.903777pt;}
.y6{bottom:357.019017pt;}
.y10{bottom:362.050457pt;}
.y2f{bottom:368.124587pt;}
.y32{bottom:372.864687pt;}
.y2c{bottom:373.884581pt;}
.y75{bottom:378.850508pt;}
.y58{bottom:386.169038pt;}
.y13{bottom:394.699858pt;}
.y47{bottom:399.810528pt;}
.y6b{bottom:400.889078pt;}
.y61{bottom:402.233018pt;}
.y71{bottom:408.290509pt;}
.y80{bottom:414.026239pt;}
.y8c{bottom:420.934519pt;}
.y2e{bottom:422.524582pt;}
.y2b{bottom:425.084579pt;}
.y31{bottom:427.264682pt;}
.yf{bottom:429.250479pt;}
.y40{bottom:433.860439pt;}
.y74{bottom:456.130510pt;}
.y5{bottom:456.219000pt;}
.y60{bottom:456.953020pt;}
.y57{bottom:459.769050pt;}
.y17{bottom:469.783800pt;}
.y25{bottom:471.686581pt;}
.y6a{bottom:472.249061pt;}
.y46{bottom:473.410501pt;}
.y4e{bottom:480.770481pt;}
.y7f{bottom:484.586241pt;}
.y70{bottom:485.570511pt;}
.y3f{bottom:492.740461pt;}
.y12{bottom:493.899851pt;}
.ye{bottom:496.450481pt;}
.y8b{bottom:502.174512pt;}
.y1e{bottom:506.053132pt;}
.y52{bottom:506.210522pt;}
.y5f{bottom:511.673012pt;}
.y24{bottom:519.686588pt;}
.y56{bottom:533.369043pt;}
.y73{bottom:533.410503pt;}
.y16{bottom:536.983813pt;}
.y69{bottom:538.489043pt;}
.y8a{bottom:542.794513pt;}
.y45{bottom:547.010513pt;}
.y3e{bottom:551.620463pt;}
.y4d{bottom:552.130513pt;}
.y7e{bottom:555.146223pt;}
.y4{bottom:555.419003pt;}
.y79{bottom:555.701483pt;}
.y6f{bottom:558.370533pt;}
.yd{bottom:563.650483pt;}
.y5e{bottom:566.393024pt;}
.y23{bottom:567.686586pt;}
.y89{bottom:583.414504pt;}
.y51{bottom:590.850514pt;}
.y1d{bottom:592.133134pt;}
.y15{bottom:604.183825pt;}
.y55{bottom:606.969035pt;}
.y3d{bottom:610.500475pt;}
.y72{bottom:610.690525pt;}
.y44{bottom:620.610505pt;}
.y6e{bottom:620.930525pt;}
.y5d{bottom:622.329025pt;}
.y7d{bottom:625.706225pt;}
.yc{bottom:630.850496pt;}
.y84{bottom:646.938996pt;}
.y22{bottom:649.927636pt;}
.y3{bottom:654.618996pt;}
.y88{bottom:664.654497pt;}
.y3c{bottom:669.380457pt;}
.y50{bottom:675.490497pt;}
.y1c{bottom:678.213137pt;}
.y54{bottom:680.569027pt;}
.y5c{bottom:683.129027pt;}
.y6d{bottom:687.970507pt;}
.y78{bottom:690.101478pt;}
.y43{bottom:694.210498pt;}
.y7c{bottom:696.266248pt;}
.yb{bottom:698.050498pt;}
.y87{bottom:705.274488pt;}
.y3b{bottom:728.260449pt;}
.y38{bottom:728.523169pt;}
.y86{bottom:745.894499pt;}
.y4f{bottom:760.130490pt;}
.y1b{bottom:764.293140pt;}
.ya{bottom:765.250495pt;}
.y7b{bottom:766.826230pt;}
.y42{bottom:767.810490pt;}
.y5b{bottom:770.373110pt;}
.y85{bottom:786.514496pt;}
.y37{bottom:825.746072pt;}
.y7a{bottom:837.386212pt;}
.y3a{bottom:837.485412pt;}
.y34{bottom:877.956424pt;}
.y26{bottom:895.876434pt;}
.y9{bottom:903.044434pt;}
.y35{bottom:903.556424pt;}
.y39{bottom:906.605394pt;}
.y36{bottom:929.690105pt;}
.y21{bottom:963.947322pt;}
.y4b{bottom:989.729657pt;}
.h1a{height:70.359379pt;}
.h7{height:76.666667pt;}
.h17{height:93.687503pt;}
.h15{height:97.591145pt;}
.hb{height:117.109379pt;}
.he{height:122.500008pt;}
.h14{height:124.916675pt;}
.hf{height:130.156250pt;}
.h1f{height:132.138406pt;}
.h1b{height:132.723959pt;}
.hd{height:136.627612pt;}
.h18{height:140.531254pt;}
.h8{height:148.338550pt;}
.h4{height:149.804692pt;}
.h16{height:156.145834pt;}
.h1c{height:160.343755pt;}
.h6{height:163.953130pt;}
.h1{height:168.448005pt;}
.h13{height:173.260791pt;}
.h12{height:174.062859pt;}
.h19{height:179.567710pt;}
.ha{height:183.688537pt;}
.h2{height:194.476219pt;}
.h11{height:200.533332pt;}
.h5{height:202.137606pt;}
.h9{height:215.773864pt;}
.hc{height:224.597332pt;}
.h3{height:238.893949pt;}
.h1e{height:262.012719pt;}
.h10{height:269.718991pt;}
.h1d{height:336.896011pt;}
.h0{height:1080.000000pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x36{left:57.302109pt;}
.x40{left:74.624603pt;}
.x2e{left:76.238419pt;}
.x48{left:81.193147pt;}
.x2b{left:82.684281pt;}
.x8{left:84.448823pt;}
.xb{left:86.722261pt;}
.x32{left:87.695633pt;}
.x9{left:90.049058pt;}
.x10{left:92.624604pt;}
.x11{left:117.983492pt;}
.x41{left:129.070452pt;}
.x2c{left:132.448824pt;}
.x33{left:137.769134pt;}
.x16{left:146.826775pt;}
.x43{left:151.552995pt;}
.x15{left:161.225725pt;}
.x29{left:163.968935pt;}
.xa{left:180.448826pt;}
.x1{left:193.274236pt;}
.x44{left:196.968956pt;}
.x2a{left:255.242018pt;}
.x2d{left:266.800875pt;}
.x1e{left:306.042830pt;}
.x1d{left:311.739396pt;}
.x28{left:320.608840pt;}
.x1c{left:333.494461pt;}
.x39{left:349.565771pt;}
.x42{left:368.276872pt;}
.x3{left:459.224011pt;}
.x13{left:465.107648pt;}
.x47{left:478.152905pt;}
.x26{left:515.268816pt;}
.x3f{left:526.061597pt;}
.x17{left:545.454057pt;}
.x4{left:567.999708pt;}
.xe{left:573.219588pt;}
.x2{left:595.519029pt;}
.x1f{left:639.491905pt;}
.x31{left:647.776141pt;}
.x5{left:656.436721pt;}
.x20{left:684.687272pt;}
.x14{left:770.728965pt;}
.xf{left:801.846426pt;}
.x18{left:944.081390pt;}
.x23{left:1003.528218pt;}
.x37{left:1006.530519pt;}
.x3a{left:1007.624289pt;}
.x21{left:1017.980977pt;}
.x22{left:1022.130926pt;}
.x34{left:1036.924043pt;}
.x45{left:1046.341214pt;}
.x3d{left:1058.842506pt;}
.x3b{left:1063.834694pt;}
.x35{left:1081.677235pt;}
.x46{left:1104.165435pt;}
.x3e{left:1111.834696pt;}
.x6{left:1122.192391pt;}
.xd{left:1144.602437pt;}
.x1a{left:1149.383779pt;}
.x3c{left:1170.272297pt;}
.x12{left:1260.586060pt;}
.x2f{left:1281.024941pt;}
.x19{left:1342.708643pt;}
.x7{left:1408.700215pt;}
.x25{left:1416.631865pt;}
.x38{left:1435.456746pt;}
.x24{left:1478.448967pt;}
.x1b{left:1845.556589pt;}
.x27{left:1847.535759pt;}
.x30{left:1857.318909pt;}
.xc{left:1860.381525pt;}
}




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