
    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_825f78d52bd4f307fb8e2e7b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.980000;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_75301e1738ec238a1f8b1716.woff')format("woff");}.ff2{font-family:ff2;line-height:0.940000;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_8132328a50a4e05d7f958ce1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_45d5cd5b9d09b12524657082.woff')format("woff");}.ff4{font-family:ff4;line-height:1.033691;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_32be71cbd02a3f7a604efb2b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.970787;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_0a8c544c6d1888668d77dfd4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.963867;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_3f33ed6c61a2c55fe83ba680.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_931062fba54ce47b74ac1080.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_339cd6401d474ab4fefe8cc4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7ba740fb1a68335111326c66.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:154.923575px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006941px;}
.ls2{letter-spacing:0.176731px;}
.ls6{letter-spacing:107.986681px;}
.ls3{letter-spacing:206.713087px;}
.ls5{letter-spacing:214.861882px;}
.ls4{letter-spacing:218.841383px;}
.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;}
}
.ws2{word-spacing:-60.623446px;}
.ws4{word-spacing:-56.544003px;}
.ws3{word-spacing:-56.508000px;}
.ws1{word-spacing:-46.620435px;}
.ws0{word-spacing:0.000000px;}
._1e{margin-left:-25.278798px;}
._1b{margin-left:-24.173722px;}
._16{margin-left:-22.298969px;}
._1{margin-left:-16.320000px;}
._15{margin-left:-13.054489px;}
._18{margin-left:-11.378589px;}
._1d{margin-left:-9.900000px;}
._1c{margin-left:-8.097717px;}
._17{margin-left:-6.227278px;}
._0{margin-left:-3.840000px;}
._3{margin-left:-2.808000px;}
._2{margin-left:-1.680000px;}
._13{width:1.698000px;}
._1a{width:2.809799px;}
._d{width:4.362000px;}
._20{width:7.459989px;}
._f{width:9.396000px;}
._6{width:10.854000px;}
._c{width:12.690000px;}
._b{width:14.052000px;}
._12{width:18.144001px;}
._e{width:22.194001px;}
._8{width:27.702001px;}
._7{width:37.098001px;}
._11{width:59.898002px;}
._5{width:62.586002px;}
._4{width:63.726002px;}
._10{width:71.280002px;}
._a{width:94.122003px;}
._9{width:95.154003px;}
._1f{width:107.973861px;}
._19{width:212.905334px;}
._14{width:1062.317201px;}
.fc0{color:rgb(8,122,192);}
.fc1{color:rgb(30,57,108);}
.fc2{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc7{color:rgb(237,125,49);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(255,0,0);}
.fcd{color:rgb(0,151,167);}
.fc6{color:rgb(255,192,0);}
.fc9{color:rgb(240,90,20);}
.fc8{color:rgb(68,84,106);}
.fca{color:rgb(0,0,255);}
.fcb{color:rgb(255,171,64);}
.fcc{color:rgb(0,100,155);}
.fs5{font-size:96.000006px;}
.fs6{font-size:156.360002px;}
.fs4{font-size:162.000005px;}
.fsf{font-size:168.304820px;}
.fs13{font-size:180.000006px;}
.fs12{font-size:189.249000px;}
.fs16{font-size:190.923095px;}
.fs9{font-size:196.666814px;}
.fs1c{font-size:204.000001px;}
.fs1e{font-size:207.652192px;}
.fse{font-size:208.618207px;}
.fsc{font-size:211.694398px;}
.fs1{font-size:216.000007px;}
.fs7{font-size:218.343598px;}
.fs18{font-size:218.857206px;}
.fs15{font-size:224.615419px;}
.fs1a{font-size:227.490609px;}
.fs10{font-size:228.000013px;}
.fs0{font-size:240.000002px;}
.fsa{font-size:242.555543px;}
.fs19{font-size:255.333608px;}
.fs1b{font-size:265.405801px;}
.fs3{font-size:270.000009px;}
.fs8{font-size:284.074200px;}
.fs14{font-size:288.000009px;}
.fsd{font-size:301.337425px;}
.fs11{font-size:307.529443px;}
.fs17{font-size:316.127413px;}
.fs1d{font-size:335.999999px;}
.fsb{font-size:352.824014px;}
.fs2{font-size:480.000003px;}
.y0{bottom:0.000000px;}
.y20{bottom:12.023966px;}
.y1e{bottom:14.839279px;}
.y18{bottom:26.269448px;}
.y16{bottom:29.084817px;}
.y1f{bottom:52.343963px;}
.y1d{bottom:55.159275px;}
.y17{bottom:66.589445px;}
.y15{bottom:69.404813px;}
.y8c{bottom:99.568655px;}
.y4e{bottom:119.535062px;}
.y6c{bottom:132.400709px;}
.y4d{bottom:159.628900px;}
.y26{bottom:171.478362px;}
.y47{bottom:177.997804px;}
.y14{bottom:178.724959px;}
.y6{bottom:178.824792px;}
.y89{bottom:183.257404px;}
.y2d{bottom:187.018370px;}
.y57{bottom:187.602650px;}
.y93{bottom:188.508868px;}
.y6b{bottom:193.823180px;}
.y4c{bottom:199.722748px;}
.y25{bottom:222.415031px;}
.y7c{bottom:236.043666px;}
.y13{bottom:237.045006px;}
.y88{bottom:238.337327px;}
.y2c{bottom:244.175853px;}
.y5{bottom:269.544797px;}
.y7b{bottom:288.569389px;}
.y46{bottom:291.547163px;}
.y87{bottom:293.417363px;}
.y12{bottom:295.365008px;}
.y2b{bottom:301.333336px;}
.y56{bottom:305.785523px;}
.y38{bottom:311.199879px;}
.y6a{bottom:316.668099px;}
.y3c{bottom:326.818187px;}
.y7a{bottom:341.095101px;}
.y11{bottom:353.684999px;}
.y60{bottom:361.559729px;}
.y37{bottom:361.691309px;}
.y3b{bottom:377.309639px;}
.y69{bottom:378.090558px;}
.y79{bottom:393.620801px;}
.y45{bottom:397.444721px;}
.y86{bottom:403.577277px;}
.y4{bottom:408.536333px;}
.y5f{bottom:410.159753px;}
.y10{bottom:412.005001px;}
.y36{bottom:412.182762px;}
.y3a{bottom:427.801075px;}
.y68{bottom:439.513015px;}
.y78{bottom:446.146502px;}
.y44{bottom:451.444723px;}
.y85{bottom:458.657267px;}
.y5e{bottom:458.759755px;}
.y35{bottom:462.674198px;}
.yf{bottom:470.324991px;}
.y55{bottom:470.640025px;}
.y3{bottom:480.536335px;}
.y92{bottom:497.638800px;}
.y77{bottom:498.672225px;}
.y43{bottom:505.444725px;}
.y5d{bottom:507.359767px;}
.y84{bottom:513.737258px;}
.ye{bottom:528.644993px;}
.y76{bottom:551.197914px;}
.y5c{bottom:555.959769px;}
.y42{bottom:559.444727px;}
.y2{bottom:567.536334px;}
.y83{bottom:568.817248px;}
.y54{bottom:584.445805px;}
.yd{bottom:586.964995px;}
.y67{bottom:590.267894px;}
.y75{bottom:603.723625px;}
.y5b{bottom:604.559770px;}
.y2a{bottom:611.670603px;}
.y82{bottom:623.897239px;}
.y91{bottom:631.558736px;}
.y1{bottom:639.536340px;}
.y53{bottom:643.975008px;}
.yc{bottom:645.284986px;}
.y5a{bottom:653.159766px;}
.y66{bottom:653.737763px;}
.y74{bottom:656.249326px;}
.y41{bottom:667.444730px;}
.y81{bottom:678.977229px;}
.y52{bottom:698.251596px;}
.y90{bottom:699.958727px;}
.y59{bottom:701.759765px;}
.yb{bottom:703.604987px;}
.y73{bottom:708.775026px;}
.y7{bottom:719.851187px;}
.y65{bottom:723.349931px;}
.y34{bottom:751.220400px;}
.y72{bottom:761.300738px;}
.ya{bottom:761.924985px;}
.y8f{bottom:768.358718px;}
.y29{bottom:770.938546px;}
.y40{bottom:775.444733px;}
.y24{bottom:775.940712px;}
.y1b{bottom:785.557854px;}
.y64{bottom:786.819800px;}
.y80{bottom:789.137221px;}
.y33{bottom:801.711853px;}
.y1a{bottom:812.330038px;}
.y71{bottom:813.826461px;}
.y9{bottom:820.244982px;}
.y23{bottom:829.040736px;}
.y31{bottom:835.794235px;}
.y8e{bottom:836.758720px;}
.y7f{bottom:844.217212px;}
.y1c{bottom:852.050560px;}
.y32{bottom:852.203289px;}
.y63{bottom:856.431934px;}
.y51{bottom:860.146852px;}
.y70{bottom:866.352184px;}
.y3f{bottom:879.677517px;}
.y28{bottom:886.694367px;}
.y4b{bottom:891.605606px;}
.y30{bottom:892.121148px;}
.y7e{bottom:899.297208px;}
.y8{bottom:917.004669px;}
.y62{bottom:917.854391px;}
.y6f{bottom:918.877907px;}
.y50{bottom:919.238289px;}
.y22{bottom:935.240802px;}
.y8d{bottom:941.878713px;}
.y2f{bottom:948.448060px;}
.y4a{bottom:952.251757px;}
.y6e{bottom:971.403625px;}
.y8b{bottom:999.423893px;}
.y19{bottom:1018.491069px;}
.y3e{bottom:1030.284503px;}
.y4f{bottom:1038.480711px;}
.y61{bottom:1043.519755px;}
.y49{bottom:1045.330388px;}
.y7d{bottom:1051.217594px;}
.y39{bottom:1057.432557px;}
.y27{bottom:1065.990150px;}
.y58{bottom:1079.442986px;}
.y21{bottom:1079.726204px;}
.y2e{bottom:1082.205120px;}
.y8a{bottom:1085.823896px;}
.y6d{bottom:1104.582304px;}
.y3d{bottom:1122.543326px;}
.y48{bottom:1131.730391px;}
.h6{height:78.000005px;}
.h7{height:117.270002px;}
.h13{height:122.530511px;}
.h17{height:131.132817px;}
.h5{height:131.625004px;}
.h16{height:137.778447px;}
.h1a{height:138.997233px;}
.hb{height:143.178818px;}
.hc{height:143.274847px;}
.h21{height:148.617188px;}
.h12{height:151.981623px;}
.h10{height:154.119310px;}
.hf{height:154.222677px;}
.h2{height:155.088005px;}
.h27{height:155.739144px;}
.h9{height:158.960110px;}
.h1c{height:159.334030px;}
.h1e{height:159.440894px;}
.h19{height:163.635842px;}
.h26{height:164.533499px;}
.h1f{height:165.730463px;}
.h14{height:165.990244px;}
.h24{height:171.111338px;}
.hd{height:176.587068px;}
.h1{height:180.000001px;}
.h22{height:180.117189px;}
.h25{height:185.250011px;}
.h1d{height:186.014523px;}
.h20{height:193.352273px;}
.ha{height:206.813785px;}
.h18{height:209.671882px;}
.h4{height:212.915046px;}
.h11{height:219.381885px;}
.h15{height:223.889843px;}
.h1b{height:230.149401px;}
.h23{height:252.164062px;}
.he{height:256.865530px;}
.h8{height:313.883685px;}
.h3{height:360.000003px;}
.h0{height:1215.000000px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x1{left:60.165714px;}
.x28{left:85.520169px;}
.x1c{left:100.360038px;}
.x34{left:113.358736px;}
.x32{left:117.159405px;}
.x4{left:121.500004px;}
.x1d{left:126.406163px;}
.x16{left:130.042017px;}
.x18{left:157.672405px;}
.x10{left:167.342287px;}
.x12{left:169.918987px;}
.x33{left:171.159407px;}
.x11{left:173.048906px;}
.x25{left:181.216957px;}
.x2{left:187.830715px;}
.x24{left:202.674579px;}
.x2a{left:205.114709px;}
.x7{left:211.502842px;}
.x2b{left:213.485288px;}
.x3{left:219.144573px;}
.x2d{left:223.631445px;}
.xd{left:232.546286px;}
.xe{left:240.740791px;}
.x22{left:255.123553px;}
.x23{left:264.482506px;}
.x17{left:278.722393px;}
.x2c{left:290.423766px;}
.x1e{left:313.265114px;}
.x37{left:352.275593px;}
.x31{left:355.635833px;}
.x1b{left:366.513762px;}
.x29{left:367.638762px;}
.x19{left:371.028567px;}
.x15{left:383.928335px;}
.xf{left:393.572859px;}
.x35{left:400.674219px;}
.x27{left:410.108278px;}
.x1f{left:489.062007px;}
.x2e{left:549.709150px;}
.x30{left:555.750052px;}
.x13{left:565.934862px;}
.x14{left:574.755465px;}
.xa{left:588.487215px;}
.x2f{left:609.750053px;}
.x26{left:663.963024px;}
.x36{left:665.122848px;}
.x38{left:674.279009px;}
.x20{left:683.130840px;}
.x21{left:692.489793px;}
.xb{left:853.109873px;}
.xc{left:861.304378px;}
.x8{left:879.594026px;}
.x1a{left:1278.366453px;}
.x5{left:1435.922202px;}
.x9{left:1581.090654px;}
.x6{left:1856.920503px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:137.709844pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006170pt;}
.ls2{letter-spacing:0.157094pt;}
.ls6{letter-spacing:95.988161pt;}
.ls3{letter-spacing:183.744966pt;}
.ls5{letter-spacing:190.988339pt;}
.ls4{letter-spacing:194.525673pt;}
.ws2{word-spacing:-53.887507pt;}
.ws4{word-spacing:-50.261336pt;}
.ws3{word-spacing:-50.229333pt;}
.ws1{word-spacing:-41.440387pt;}
.ws0{word-spacing:0.000000pt;}
._1e{margin-left:-22.470043pt;}
._1b{margin-left:-21.487753pt;}
._16{margin-left:-19.821306pt;}
._1{margin-left:-14.506667pt;}
._15{margin-left:-11.603990pt;}
._18{margin-left:-10.114302pt;}
._1d{margin-left:-8.800000pt;}
._1c{margin-left:-7.197970pt;}
._17{margin-left:-5.535359pt;}
._0{margin-left:-3.413333pt;}
._3{margin-left:-2.496000pt;}
._2{margin-left:-1.493333pt;}
._13{width:1.509333pt;}
._1a{width:2.497599pt;}
._d{width:3.877334pt;}
._20{width:6.631102pt;}
._f{width:8.352000pt;}
._6{width:9.648000pt;}
._c{width:11.280000pt;}
._b{width:12.490667pt;}
._12{width:16.128001pt;}
._e{width:19.728001pt;}
._8{width:24.624001pt;}
._7{width:32.976001pt;}
._11{width:53.242668pt;}
._5{width:55.632002pt;}
._4{width:56.645335pt;}
._10{width:63.360002pt;}
._a{width:83.664003pt;}
._9{width:84.581336pt;}
._1f{width:95.976765pt;}
._19{width:189.249186pt;}
._14{width:944.281956pt;}
.fs5{font-size:85.333339pt;}
.fs6{font-size:138.986668pt;}
.fs4{font-size:144.000005pt;}
.fsf{font-size:149.604285pt;}
.fs13{font-size:160.000005pt;}
.fs12{font-size:168.221333pt;}
.fs16{font-size:169.709417pt;}
.fs9{font-size:174.814946pt;}
.fs1c{font-size:181.333334pt;}
.fs1e{font-size:184.579726pt;}
.fse{font-size:185.438406pt;}
.fsc{font-size:188.172798pt;}
.fs1{font-size:192.000006pt;}
.fs7{font-size:194.083198pt;}
.fs18{font-size:194.539738pt;}
.fs15{font-size:199.658150pt;}
.fs1a{font-size:202.213874pt;}
.fs10{font-size:202.666678pt;}
.fs0{font-size:213.333335pt;}
.fsa{font-size:215.604927pt;}
.fs19{font-size:226.963207pt;}
.fs1b{font-size:235.916268pt;}
.fs3{font-size:240.000008pt;}
.fs8{font-size:252.510400pt;}
.fs14{font-size:256.000008pt;}
.fsd{font-size:267.855489pt;}
.fs11{font-size:273.359505pt;}
.fs17{font-size:281.002145pt;}
.fs1d{font-size:298.666666pt;}
.fsb{font-size:313.621346pt;}
.fs2{font-size:426.666670pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:10.687970pt;}
.y1e{bottom:13.190470pt;}
.y18{bottom:23.350620pt;}
.y16{bottom:25.853170pt;}
.y1f{bottom:46.527967pt;}
.y1d{bottom:49.030467pt;}
.y17{bottom:59.190617pt;}
.y15{bottom:61.693167pt;}
.y8c{bottom:88.505471pt;}
.y4e{bottom:106.253389pt;}
.y6c{bottom:117.689519pt;}
.y4d{bottom:141.892356pt;}
.y26{bottom:152.425210pt;}
.y47{bottom:158.220271pt;}
.y14{bottom:158.866631pt;}
.y6{bottom:158.955371pt;}
.y89{bottom:162.895471pt;}
.y2d{bottom:166.238551pt;}
.y57{bottom:166.757911pt;}
.y93{bottom:167.563438pt;}
.y6b{bottom:172.287271pt;}
.y4c{bottom:177.531331pt;}
.y25{bottom:197.702250pt;}
.y7c{bottom:209.816592pt;}
.y13{bottom:210.706672pt;}
.y88{bottom:211.855402pt;}
.y2c{bottom:217.045202pt;}
.y5{bottom:239.595375pt;}
.y7b{bottom:256.506124pt;}
.y46{bottom:259.153034pt;}
.y87{bottom:260.815434pt;}
.y12{bottom:262.546674pt;}
.y2b{bottom:267.851854pt;}
.y56{bottom:271.809354pt;}
.y38{bottom:276.622114pt;}
.y6a{bottom:281.482754pt;}
.y3c{bottom:290.505055pt;}
.y7a{bottom:303.195645pt;}
.y11{bottom:314.386666pt;}
.y60{bottom:321.386426pt;}
.y37{bottom:321.503386pt;}
.y3b{bottom:335.386346pt;}
.y69{bottom:336.080496pt;}
.y79{bottom:349.885157pt;}
.y45{bottom:353.284197pt;}
.y86{bottom:358.735357pt;}
.y4{bottom:363.143407pt;}
.y5f{bottom:364.586447pt;}
.y10{bottom:366.226667pt;}
.y36{bottom:366.384677pt;}
.y3a{bottom:380.267623pt;}
.y68{bottom:390.678236pt;}
.y78{bottom:396.574668pt;}
.y44{bottom:401.284198pt;}
.y85{bottom:407.695348pt;}
.y5e{bottom:407.786448pt;}
.y35{bottom:411.265954pt;}
.yf{bottom:418.066659pt;}
.y55{bottom:418.346689pt;}
.y3{bottom:427.143409pt;}
.y92{bottom:442.345600pt;}
.y77{bottom:443.264200pt;}
.y43{bottom:449.284200pt;}
.y5d{bottom:450.986460pt;}
.y84{bottom:456.655340pt;}
.ye{bottom:469.906660pt;}
.y76{bottom:489.953701pt;}
.y5c{bottom:494.186461pt;}
.y42{bottom:497.284201pt;}
.y2{bottom:504.476742pt;}
.y83{bottom:505.615332pt;}
.y54{bottom:519.507382pt;}
.yd{bottom:521.746662pt;}
.y67{bottom:524.682572pt;}
.y75{bottom:536.643223pt;}
.y5b{bottom:537.386463pt;}
.y2a{bottom:543.707203pt;}
.y82{bottom:554.575323pt;}
.y91{bottom:561.385543pt;}
.y1{bottom:568.476747pt;}
.y53{bottom:572.422230pt;}
.yc{bottom:573.586654pt;}
.y5a{bottom:580.586459pt;}
.y66{bottom:581.100234pt;}
.y74{bottom:583.332734pt;}
.y41{bottom:593.284204pt;}
.y81{bottom:603.535315pt;}
.y52{bottom:620.668085pt;}
.y90{bottom:622.185535pt;}
.y59{bottom:623.786457pt;}
.yb{bottom:625.426655pt;}
.y73{bottom:630.022246pt;}
.y7{bottom:639.867722pt;}
.y65{bottom:642.977716pt;}
.y34{bottom:667.751467pt;}
.y72{bottom:676.711767pt;}
.ya{bottom:677.266653pt;}
.y8f{bottom:682.985527pt;}
.y29{bottom:685.278707pt;}
.y40{bottom:689.284207pt;}
.y24{bottom:689.725078pt;}
.y1b{bottom:698.273648pt;}
.y64{bottom:699.395378pt;}
.y80{bottom:701.455308pt;}
.y33{bottom:712.632758pt;}
.y1a{bottom:722.071145pt;}
.y71{bottom:723.401299pt;}
.y9{bottom:729.106651pt;}
.y23{bottom:736.925099pt;}
.y31{bottom:742.928209pt;}
.y8e{bottom:743.785529pt;}
.y7f{bottom:750.415299pt;}
.y1c{bottom:757.378276pt;}
.y32{bottom:757.514035pt;}
.y63{bottom:761.272830pt;}
.y51{bottom:764.574980pt;}
.y70{bottom:770.090830pt;}
.y3f{bottom:781.935570pt;}
.y28{bottom:788.172771pt;}
.y4b{bottom:792.538317pt;}
.y30{bottom:792.996576pt;}
.y7e{bottom:799.375296pt;}
.y8{bottom:815.115262pt;}
.y62{bottom:815.870570pt;}
.y6f{bottom:816.780362pt;}
.y50{bottom:817.100702pt;}
.y22{bottom:831.325157pt;}
.y8d{bottom:837.225522pt;}
.y2f{bottom:843.064942pt;}
.y4a{bottom:846.446007pt;}
.y6e{bottom:863.469889pt;}
.y8b{bottom:888.376794pt;}
.y19{bottom:905.325394pt;}
.y3e{bottom:915.808447pt;}
.y4f{bottom:923.093965pt;}
.y61{bottom:927.573115pt;}
.y49{bottom:929.182567pt;}
.y7d{bottom:934.415639pt;}
.y39{bottom:939.940051pt;}
.y27{bottom:947.546800pt;}
.y58{bottom:959.504876pt;}
.y21{bottom:959.756626pt;}
.y2e{bottom:961.960106pt;}
.y8a{bottom:965.176796pt;}
.y6d{bottom:981.850937pt;}
.y3d{bottom:997.816289pt;}
.y48{bottom:1005.982570pt;}
.h6{height:69.333338pt;}
.h7{height:104.240001pt;}
.h13{height:108.916010pt;}
.h17{height:116.562504pt;}
.h5{height:117.000004pt;}
.h16{height:122.469731pt;}
.h1a{height:123.553096pt;}
.hb{height:127.270060pt;}
.hc{height:127.355419pt;}
.h21{height:132.104167pt;}
.h12{height:135.094776pt;}
.h10{height:136.994942pt;}
.hf{height:137.086824pt;}
.h2{height:137.856004pt;}
.h27{height:138.434794pt;}
.h9{height:141.297875pt;}
.h1c{height:141.630249pt;}
.h1e{height:141.725239pt;}
.h19{height:145.454082pt;}
.h26{height:146.251999pt;}
.h1f{height:147.315967pt;}
.h14{height:147.546884pt;}
.h24{height:152.098967pt;}
.hd{height:156.966282pt;}
.h1{height:160.000001pt;}
.h22{height:160.104168pt;}
.h25{height:164.666676pt;}
.h1d{height:165.346243pt;}
.h20{height:171.868687pt;}
.ha{height:183.834476pt;}
.h18{height:186.375006pt;}
.h4{height:189.257819pt;}
.h11{height:195.006120pt;}
.h15{height:199.013194pt;}
.h1b{height:204.577245pt;}
.h23{height:224.145833pt;}
.he{height:228.324915pt;}
.h8{height:279.007720pt;}
.h3{height:320.000002pt;}
.h0{height:1080.000000pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x1{left:53.480635pt;}
.x28{left:76.017928pt;}
.x1c{left:89.208923pt;}
.x34{left:100.763321pt;}
.x32{left:104.141693pt;}
.x4{left:108.000003pt;}
.x1d{left:112.361034pt;}
.x16{left:115.592904pt;}
.x18{left:140.153248pt;}
.x10{left:148.748700pt;}
.x12{left:151.039100pt;}
.x33{left:152.141695pt;}
.x11{left:153.821250pt;}
.x25{left:161.081739pt;}
.x2{left:166.960635pt;}
.x24{left:180.155182pt;}
.x2a{left:182.324186pt;}
.x7{left:188.002526pt;}
.x2b{left:189.764700pt;}
.x3{left:194.795176pt;}
.x2d{left:198.783506pt;}
.xd{left:206.707810pt;}
.xe{left:213.991814pt;}
.x22{left:226.776491pt;}
.x23{left:235.095561pt;}
.x17{left:247.753238pt;}
.x2c{left:258.154458pt;}
.x1e{left:278.457879pt;}
.x37{left:313.133860pt;}
.x31{left:316.120740pt;}
.x1b{left:325.790010pt;}
.x29{left:326.790010pt;}
.x19{left:329.803171pt;}
.x15{left:341.269631pt;}
.xf{left:349.842541pt;}
.x35{left:356.154861pt;}
.x27{left:364.540692pt;}
.x1f{left:434.721784pt;}
.x2e{left:488.630356pt;}
.x30{left:494.000046pt;}
.x13{left:503.053211pt;}
.x14{left:510.893746pt;}
.xa{left:523.099747pt;}
.x2f{left:542.000047pt;}
.x26{left:590.189355pt;}
.x36{left:591.220309pt;}
.x38{left:599.359119pt;}
.x20{left:607.227413pt;}
.x21{left:615.546483pt;}
.xb{left:758.319887pt;}
.xc{left:765.603891pt;}
.x8{left:781.861356pt;}
.x1a{left:1136.325736pt;}
.x5{left:1276.375291pt;}
.x9{left:1405.413915pt;}
.x6{left:1650.596003pt;}
}




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