
    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_c95e89edb5e1fb378db06243.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_87d10ecc7080b9fcb119e175.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976118;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_3b1a1c16815a0593708c7ddd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_830ac3d3456f15a3bc3b6f7b.woff2')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_d770cff89cd37a8fd611a79c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011230;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_b2c0561bc766e17605348957.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953125;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_a9e62a94267e34cd7de338e6.woff2')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_ebfaedba25ae1f0ccdb10ba8.woff2')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_43b83d4f63dfb4f5ea69559d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964860;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_46dc44c867154ddb5291525b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.728027;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c4126ee1b264e2cf399cd1e0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.963379;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:ffd;src:url('chunks/assets/font_f6716c4e902d928aa6568fd3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.732000;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:26.999999px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.035157px;}
.ls0{letter-spacing:0.899986px;}
.ls2{letter-spacing:108.624019px;}
.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;}
}
.ws3{word-spacing:-124.220209px;}
.wsa{word-spacing:-36.100348px;}
.ws9{word-spacing:-16.428075px;}
.ws0{word-spacing:-16.331439px;}
.ws7{word-spacing:-15.596191px;}
.ws1{word-spacing:-13.327602px;}
.ws4{word-spacing:-2.003906px;}
.ws8{word-spacing:-2.003882px;}
.ws5{word-spacing:-1.968750px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:2448.492086px;}
._7{margin-left:-108.623996px;}
._2{margin-left:-16.210967px;}
._4{margin-left:-7.945309px;}
._5{margin-left:-6.868498px;}
._3{margin-left:-5.343749px;}
._6{margin-left:-3.972629px;}
._1{margin-left:-2.351527px;}
._0{margin-left:-1.054688px;}
._9{width:1.610035px;}
._8{width:18.000011px;}
.fc3{color:rgb(109,111,114);}
.fc4{color:transparent;}
.fc2{color:rgb(217,48,37);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(32,33,36);}
.fs4{font-size:47.969997px;}
.fs5{font-size:53.999998px;}
.fs3{font-size:62.999997px;}
.fs1{font-size:65.969996px;}
.fs0{font-size:71.999997px;}
.fs6{font-size:99.449996px;}
.fs2{font-size:143.999994px;}
.y0{bottom:0.000000px;}
.y1a{bottom:2.250000px;}
.yc2{bottom:3.375000px;}
.yc4{bottom:4.500000px;}
.y1b{bottom:22.500049px;}
.y1{bottom:42.187548px;}
.yb7{bottom:74.812497px;}
.y3d{bottom:90.562496px;}
.y6f{bottom:95.062496px;}
.yb6{bottom:108.562495px;}
.y65{bottom:122.062495px;}
.y7b{bottom:126.562495px;}
.y3e{bottom:134.437494px;}
.y70{bottom:138.937494px;}
.yb5{bottom:142.312494px;}
.y8b{bottom:153.562494px;}
.ya3{bottom:160.312493px;}
.y66{bottom:165.937493px;}
.y7{bottom:168.187493px;}
.y7c{bottom:170.437493px;}
.yb4{bottom:176.062493px;}
.y2c{bottom:178.312493px;}
.y53{bottom:180.562492px;}
.y3c{bottom:186.187492px;}
.y6e{bottom:190.687492px;}
.ya2{bottom:194.062492px;}
.y8c{bottom:197.437492px;}
.y98{bottom:198.562492px;}
.yb3{bottom:209.812491px;}
.y64{bottom:217.687491px;}
.y6{bottom:218.812491px;}
.y2d{bottom:222.187491px;}
.y54{bottom:224.437491px;}
.y42{bottom:227.812491px;}
.y73{bottom:232.312490px;}
.y99{bottom:242.437490px;}
.yb2{bottom:243.562490px;}
.y8a{bottom:249.187490px;}
.y3b{bottom:254.812489px;}
.y68{bottom:259.312489px;}
.ya1{bottom:261.562489px;}
.y7d{bottom:263.812489px;}
.y2b{bottom:273.937489px;}
.y52{bottom:276.187488px;}
.yb1{bottom:277.312488px;}
.y63{bottom:286.312488px;}
.y7a{bottom:290.812488px;}
.y97{bottom:294.187488px;}
.ya0{bottom:307.687487px;}
.y5{bottom:308.812487px;}
.yb0{bottom:311.062487px;}
.y2f{bottom:315.562487px;}
.y55{bottom:317.812487px;}
.y93{bottom:327.937486px;}
.yc3{bottom:333.000036px;}
.y89{bottom:335.812486px;}
.y4{bottom:342.562486px;}
.y51{bottom:344.812486px;}
.y9f{bottom:350.437485px;}
.y39{bottom:363.937485px;}
.y6c{bottom:368.437485px;}
.y79{bottom:369.562485px;}
.y94{bottom:371.812485px;}
.yaf{bottom:378.562484px;}
.y3{bottom:388.687484px;}
.yc1{bottom:391.500033px;}
.y78{bottom:392.062484px;}
.y61{bottom:395.437484px;}
.y85{bottom:399.937483px;}
.y3a{bottom:407.812483px;}
.y6d{bottom:412.312483px;}
.y77{bottom:414.562483px;}
.y92{bottom:423.562482px;}
.y9e{bottom:429.187482px;}
.y18{bottom:431.437482px;}
.y76{bottom:437.062482px;}
.y62{bottom:439.312482px;}
.y86{bottom:443.812482px;}
.yae{bottom:446.062481px;}
.y29{bottom:451.687481px;}
.y4f{bottom:453.937481px;}
.y17{bottom:458.437481px;}
.y38{bottom:459.562481px;}
.y6b{bottom:464.062481px;}
.yad{bottom:479.812480px;}
.y88{bottom:482.062480px;}
.y96{bottom:483.187480px;}
.y60{bottom:491.062480px;}
.y2a{bottom:495.562479px;}
.y50{bottom:497.812479px;}
.yc0{bottom:498.937479px;}
.y41{bottom:501.187479px;}
.y75{bottom:504.562479px;}
.y72{bottom:505.687479px;}
.y91{bottom:510.187479px;}
.y16{bottom:512.437479px;}
.y9d{bottom:513.562479px;}
.y37{bottom:528.187478px;}
.y67{bottom:532.687478px;}
.y87{bottom:537.187478px;}
.ybf{bottom:538.312478px;}
.y2{bottom:539.437478px;}
.y28{bottom:547.312477px;}
.y4e{bottom:549.562477px;}
.y74{bottom:555.187477px;}
.y5f{bottom:559.687477px;}
.ybe{bottom:560.812477px;}
.y84{bottom:564.187476px;}
.yac{bottom:581.062476px;}
.y2e{bottom:588.937475px;}
.y4d{bottom:591.187475px;}
.ybd{bottom:599.062475px;}
.y15{bottom:605.812475px;}
.yab{bottom:614.812474px;}
.y27{bottom:615.937474px;}
.y90{bottom:619.312474px;}
.ybc{bottom:621.562474px;}
.y35{bottom:637.312473px;}
.y14{bottom:640.687473px;}
.y69{bottom:641.812473px;}
.y83{bottom:642.937473px;}
.ybb{bottom:644.062473px;}
.y9b{bottom:646.312473px;}
.yaa{bottom:648.562473px;}
.y13{bottom:663.187472px;}
.y82{bottom:665.437472px;}
.y5d{bottom:668.812472px;}
.y4c{bottom:669.937472px;}
.y36{bottom:681.187472px;}
.ya9{bottom:682.312472px;}
.yba{bottom:683.437472px;}
.y6a{bottom:685.687471px;}
.y81{bottom:687.937471px;}
.y9c{bottom:690.187471px;}
.y4b{bottom:692.437471px;}
.y26{bottom:694.687471px;}
.y12{bottom:702.562471px;}
.yb9{bottom:705.937471px;}
.y80{bottom:710.437470px;}
.y5e{bottom:712.687470px;}
.y4a{bottom:714.937470px;}
.ya8{bottom:716.062470px;}
.y25{bottom:717.187470px;}
.y11{bottom:725.062470px;}
.yb8{bottom:728.437470px;}
.y34{bottom:732.937469px;}
.y49{bottom:737.437469px;}
.y24{bottom:739.687469px;}
.y9a{bottom:741.937469px;}
.y10{bottom:747.562469px;}
.ya7{bottom:749.812469px;}
.y95{bottom:756.562468px;}
.y48{bottom:759.937468px;}
.y23{bottom:762.187468px;}
.y5c{bottom:764.437468px;}
.y40{bottom:774.562468px;}
.y7f{bottom:777.937468px;}
.y71{bottom:779.062468px;}
.y8f{bottom:783.562467px;}
.y22{bottom:784.687467px;}
.yf{bottom:786.937467px;}
.y33{bottom:801.562467px;}
.y47{bottom:804.937466px;}
.y5b{bottom:806.062466px;}
.ye{bottom:809.437466px;}
.ya6{bottom:817.312466px;}
.y7e{bottom:828.562465px;}
.y21{bottom:829.687465px;}
.yd{bottom:831.937465px;}
.ya5{bottom:851.062465px;}
.yc{bottom:854.437464px;}
.y46{bottom:855.562464px;}
.y20{bottom:880.312463px;}
.y5a{bottom:884.812463px;}
.yb{bottom:892.687463px;}
.y59{bottom:907.312462px;}
.y31{bottom:910.687462px;}
.ya4{bottom:918.562462px;}
.ya{bottom:923.062462px;}
.y58{bottom:929.812461px;}
.y8e{bottom:936.562461px;}
.y44{bottom:937.687461px;}
.y1f{bottom:952.312460px;}
.y32{bottom:954.562460px;}
.y9{bottom:971.437460px;}
.y57{bottom:974.812459px;}
.y45{bottom:981.562459px;}
.y1e{bottom:986.062459px;}
.y8d{bottom:988.312459px;}
.y30{bottom:1006.312458px;}
.y8{bottom:1019.812458px;}
.y1d{bottom:1032.187457px;}
.y43{bottom:1033.312457px;}
.y3f{bottom:1047.937456px;}
.y56{bottom:1070.437455px;}
.y1c{bottom:1074.937455px;}
.y19{bottom:1152.000002px;}
.ha{height:13.499999px;}
.h12{height:34.919999px;}
.hb{height:34.946892px;}
.h11{height:40.499998px;}
.h7{height:47.249998px;}
.hd{height:50.219686px;}
.he{height:50.541502px;}
.hc{height:52.054450px;}
.h5{height:52.417967px;}
.h8{height:52.453123px;}
.h4{height:52.924172px;}
.h9{height:53.999998px;}
.h3{height:54.810026px;}
.h2{height:57.761716px;}
.h10{height:60.749997px;}
.hf{height:62.671497px;}
.h13{height:98.206196px;}
.h6{height:104.906246px;}
.h1{height:1103.062454px;}
.h0{height:1188.000000px;}
.w5{width:68.624997px;}
.w9{width:74.249997px;}
.w7{width:75.374997px;}
.w2{width:141.749994px;}
.wb{width:155.519994px;}
.wa{width:749.249969px;}
.w3{width:776.249968px;}
.w1{width:833.062465px;}
.w6{width:842.624965px;}
.w8{width:843.749965px;}
.w4{width:849.374965px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:9.263677px;}
.x9{left:35.999999px;}
.x1{left:42.749998px;}
.x2{left:60.749997px;}
.x7{left:62.999997px;}
.x5{left:76.499997px;}
.x19{left:78.749997px;}
.x6{left:82.124997px;}
.x1c{left:83.625465px;}
.x3{left:98.103512px;}
.x18{left:99.144963px;}
.xe{left:103.728511px;}
.x11{left:108.210933px;}
.x12{left:113.835933px;}
.xb{left:133.453119px;}
.xa{left:141.749994px;}
.x4{left:144.808588px;}
.xf{left:152.068353px;}
.x17{left:154.916009px;}
.x13{left:162.175774px;}
.x1a{left:209.162106px;}
.x10{left:319.728508px;}
.x14{left:329.835924px;}
.x1b{left:375.479984px;}
.x8{left:766.019499px;}
.x15{left:842.624965px;}
.x16{left:843.749965px;}
.xc{left:849.374965px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.999999pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.031250pt;}
.ls0{letter-spacing:0.799988pt;}
.ls2{letter-spacing:96.554683pt;}
.ws3{word-spacing:-110.417964pt;}
.wsa{word-spacing:-32.089199pt;}
.ws9{word-spacing:-14.602734pt;}
.ws0{word-spacing:-14.516835pt;}
.ws7{word-spacing:-13.863280pt;}
.ws1{word-spacing:-11.846757pt;}
.ws4{word-spacing:-1.781250pt;}
.ws8{word-spacing:-1.781229pt;}
.ws5{word-spacing:-1.750000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:2176.437409pt;}
._7{margin-left:-96.554663pt;}
._2{margin-left:-14.409748pt;}
._4{margin-left:-7.062497pt;}
._5{margin-left:-6.105332pt;}
._3{margin-left:-4.749999pt;}
._6{margin-left:-3.531226pt;}
._1{margin-left:-2.090246pt;}
._0{margin-left:-0.937501pt;}
._9{width:1.431142pt;}
._8{width:16.000010pt;}
.fs4{font-size:42.639997pt;}
.fs5{font-size:47.999998pt;}
.fs3{font-size:55.999998pt;}
.fs1{font-size:58.639997pt;}
.fs0{font-size:63.999997pt;}
.fs6{font-size:88.399996pt;}
.fs2{font-size:127.999995pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.000000pt;}
.yc2{bottom:3.000000pt;}
.yc4{bottom:4.000000pt;}
.y1b{bottom:20.000043pt;}
.y1{bottom:37.500042pt;}
.yb7{bottom:66.499997pt;}
.y3d{bottom:80.499997pt;}
.y6f{bottom:84.499996pt;}
.yb6{bottom:96.499996pt;}
.y65{bottom:108.499995pt;}
.y7b{bottom:112.499995pt;}
.y3e{bottom:119.499995pt;}
.y70{bottom:123.499995pt;}
.yb5{bottom:126.499995pt;}
.y8b{bottom:136.499994pt;}
.ya3{bottom:142.499994pt;}
.y66{bottom:147.499994pt;}
.y7{bottom:149.499994pt;}
.y7c{bottom:151.499994pt;}
.yb4{bottom:156.499993pt;}
.y2c{bottom:158.499993pt;}
.y53{bottom:160.499993pt;}
.y3c{bottom:165.499993pt;}
.y6e{bottom:169.499993pt;}
.ya2{bottom:172.499993pt;}
.y8c{bottom:175.499993pt;}
.y98{bottom:176.499993pt;}
.yb3{bottom:186.499992pt;}
.y64{bottom:193.499992pt;}
.y6{bottom:194.499992pt;}
.y2d{bottom:197.499992pt;}
.y54{bottom:199.499992pt;}
.y42{bottom:202.499992pt;}
.y73{bottom:206.499991pt;}
.y99{bottom:215.499991pt;}
.yb2{bottom:216.499991pt;}
.y8a{bottom:221.499991pt;}
.y3b{bottom:226.499991pt;}
.y68{bottom:230.499990pt;}
.ya1{bottom:232.499990pt;}
.y7d{bottom:234.499990pt;}
.y2b{bottom:243.499990pt;}
.y52{bottom:245.499990pt;}
.yb1{bottom:246.499990pt;}
.y63{bottom:254.499989pt;}
.y7a{bottom:258.499989pt;}
.y97{bottom:261.499989pt;}
.ya0{bottom:273.499989pt;}
.y5{bottom:274.499989pt;}
.yb0{bottom:276.499988pt;}
.y2f{bottom:280.499988pt;}
.y55{bottom:282.499988pt;}
.y93{bottom:291.499988pt;}
.yc3{bottom:296.000032pt;}
.y89{bottom:298.499988pt;}
.y4{bottom:304.499987pt;}
.y51{bottom:306.499987pt;}
.y9f{bottom:311.499987pt;}
.y39{bottom:323.499987pt;}
.y6c{bottom:327.499986pt;}
.y79{bottom:328.499986pt;}
.y94{bottom:330.499986pt;}
.yaf{bottom:336.499986pt;}
.y3{bottom:345.499986pt;}
.yc1{bottom:348.000029pt;}
.y78{bottom:348.499985pt;}
.y61{bottom:351.499985pt;}
.y85{bottom:355.499985pt;}
.y3a{bottom:362.499985pt;}
.y6d{bottom:366.499985pt;}
.y77{bottom:368.499985pt;}
.y92{bottom:376.499984pt;}
.y9e{bottom:381.499984pt;}
.y18{bottom:383.499984pt;}
.y76{bottom:388.499984pt;}
.y62{bottom:390.499984pt;}
.y86{bottom:394.499984pt;}
.yae{bottom:396.499983pt;}
.y29{bottom:401.499983pt;}
.y4f{bottom:403.499983pt;}
.y17{bottom:407.499983pt;}
.y38{bottom:408.499983pt;}
.y6b{bottom:412.499983pt;}
.yad{bottom:426.499982pt;}
.y88{bottom:428.499982pt;}
.y96{bottom:429.499982pt;}
.y60{bottom:436.499982pt;}
.y2a{bottom:440.499982pt;}
.y50{bottom:442.499982pt;}
.yc0{bottom:443.499982pt;}
.y41{bottom:445.499981pt;}
.y75{bottom:448.499981pt;}
.y72{bottom:449.499981pt;}
.y91{bottom:453.499981pt;}
.y16{bottom:455.499981pt;}
.y9d{bottom:456.499981pt;}
.y37{bottom:469.499980pt;}
.y67{bottom:473.499980pt;}
.y87{bottom:477.499980pt;}
.ybf{bottom:478.499980pt;}
.y2{bottom:479.499980pt;}
.y28{bottom:486.499980pt;}
.y4e{bottom:488.499980pt;}
.y74{bottom:493.499979pt;}
.y5f{bottom:497.499979pt;}
.ybe{bottom:498.499979pt;}
.y84{bottom:501.499979pt;}
.yac{bottom:516.499978pt;}
.y2e{bottom:523.499978pt;}
.y4d{bottom:525.499978pt;}
.ybd{bottom:532.499978pt;}
.y15{bottom:538.499978pt;}
.yab{bottom:546.499977pt;}
.y27{bottom:547.499977pt;}
.y90{bottom:550.499977pt;}
.ybc{bottom:552.499977pt;}
.y35{bottom:566.499976pt;}
.y14{bottom:569.499976pt;}
.y69{bottom:570.499976pt;}
.y83{bottom:571.499976pt;}
.ybb{bottom:572.499976pt;}
.y9b{bottom:574.499976pt;}
.yaa{bottom:576.499976pt;}
.y13{bottom:589.499975pt;}
.y82{bottom:591.499975pt;}
.y5d{bottom:594.499975pt;}
.y4c{bottom:595.499975pt;}
.y36{bottom:605.499975pt;}
.ya9{bottom:606.499975pt;}
.yba{bottom:607.499975pt;}
.y6a{bottom:609.499975pt;}
.y81{bottom:611.499975pt;}
.y9c{bottom:613.499974pt;}
.y4b{bottom:615.499974pt;}
.y26{bottom:617.499974pt;}
.y12{bottom:624.499974pt;}
.yb9{bottom:627.499974pt;}
.y80{bottom:631.499974pt;}
.y5e{bottom:633.499974pt;}
.y4a{bottom:635.499974pt;}
.ya8{bottom:636.499973pt;}
.y25{bottom:637.499973pt;}
.y11{bottom:644.499973pt;}
.yb8{bottom:647.499973pt;}
.y34{bottom:651.499973pt;}
.y49{bottom:655.499973pt;}
.y24{bottom:657.499973pt;}
.y9a{bottom:659.499973pt;}
.y10{bottom:664.499972pt;}
.ya7{bottom:666.499972pt;}
.y95{bottom:672.499972pt;}
.y48{bottom:675.499972pt;}
.y23{bottom:677.499972pt;}
.y5c{bottom:679.499972pt;}
.y40{bottom:688.499971pt;}
.y7f{bottom:691.499971pt;}
.y71{bottom:692.499971pt;}
.y8f{bottom:696.499971pt;}
.y22{bottom:697.499971pt;}
.yf{bottom:699.499971pt;}
.y33{bottom:712.499970pt;}
.y47{bottom:715.499970pt;}
.y5b{bottom:716.499970pt;}
.ye{bottom:719.499970pt;}
.ya6{bottom:726.499970pt;}
.y7e{bottom:736.499969pt;}
.y21{bottom:737.499969pt;}
.yd{bottom:739.499969pt;}
.ya5{bottom:756.499968pt;}
.yc{bottom:759.499968pt;}
.y46{bottom:760.499968pt;}
.y20{bottom:782.499967pt;}
.y5a{bottom:786.499967pt;}
.yb{bottom:793.499967pt;}
.y59{bottom:806.499966pt;}
.y31{bottom:809.499966pt;}
.ya4{bottom:816.499966pt;}
.ya{bottom:820.499966pt;}
.y58{bottom:826.499966pt;}
.y8e{bottom:832.499965pt;}
.y44{bottom:833.499965pt;}
.y1f{bottom:846.499965pt;}
.y32{bottom:848.499965pt;}
.y9{bottom:863.499964pt;}
.y57{bottom:866.499964pt;}
.y45{bottom:872.499964pt;}
.y1e{bottom:876.499963pt;}
.y8d{bottom:878.499963pt;}
.y30{bottom:894.499963pt;}
.y8{bottom:906.499962pt;}
.y1d{bottom:917.499962pt;}
.y43{bottom:918.499962pt;}
.y3f{bottom:931.499961pt;}
.y56{bottom:951.499960pt;}
.y1c{bottom:955.499960pt;}
.y19{bottom:1024.000001pt;}
.ha{height:12.000000pt;}
.h12{height:31.039999pt;}
.hb{height:31.063904pt;}
.h11{height:35.999999pt;}
.h7{height:41.999998pt;}
.hd{height:44.639721pt;}
.he{height:44.925779pt;}
.hc{height:46.270622pt;}
.h5{height:46.593748pt;}
.h8{height:46.624998pt;}
.h4{height:47.043708pt;}
.h9{height:47.999998pt;}
.h3{height:48.720023pt;}
.h2{height:51.343748pt;}
.h10{height:53.999998pt;}
.hf{height:55.707997pt;}
.h13{height:87.294396pt;}
.h6{height:93.249996pt;}
.h1{height:980.499959pt;}
.h0{height:1056.000000pt;}
.w5{width:60.999997pt;}
.w9{width:65.999997pt;}
.w7{width:66.999997pt;}
.w2{width:125.999995pt;}
.wb{width:138.239994pt;}
.wa{width:665.999972pt;}
.w3{width:689.999971pt;}
.w1{width:740.499969pt;}
.w6{width:748.999969pt;}
.w8{width:749.999969pt;}
.w4{width:754.999969pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:8.234380pt;}
.x9{left:31.999999pt;}
.x1{left:37.999998pt;}
.x2{left:53.999998pt;}
.x7{left:55.999998pt;}
.x5{left:67.999997pt;}
.x19{left:69.999997pt;}
.x6{left:72.999997pt;}
.x1c{left:74.333747pt;}
.x3{left:87.203121pt;}
.x18{left:88.128856pt;}
.xe{left:92.203121pt;}
.x11{left:96.187496pt;}
.x12{left:101.187496pt;}
.xb{left:118.624995pt;}
.xa{left:125.999995pt;}
.x4{left:128.718745pt;}
.xf{left:135.171869pt;}
.x17{left:137.703119pt;}
.x13{left:144.156244pt;}
.x1a{left:185.921872pt;}
.x10{left:284.203118pt;}
.x14{left:293.187488pt;}
.x1b{left:333.759986pt;}
.x8{left:680.906222pt;}
.x15{left:748.999969pt;}
.x16{left:749.999969pt;}
.xc{left:754.999969pt;}
}




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