
    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_8d9aeae21c9e0c9f927d1048.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_4781b70a6fc65ce1c05a2200.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_bd62f6c3115bae5f1bdd026b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_d4f619950845c7f179d97158.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a63cfc1bef3fbd6956ba5f88.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dc8ae6ed22eb27dd9c853227.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.034000;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_4ae24722606052c8ed68f8ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.034000;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_5e52132b8ca261aeba06b22f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.709961;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_bdd3edb0dad1c3480c5d97a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_b0c7b2dfa0ea83dcdfeff568.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c329b9ebabe7505ce63eb2e8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_69ba22c4b984cd276d656d25.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m6{transform:matrix(0.236424,0.000000,-0.080862,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080862,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080862,0.236562,0,0);}
.m9{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.161460px;}
.ls0{letter-spacing:0.187842px;}
.ls3{letter-spacing:0.189147px;}
.ls2{letter-spacing:0.375684px;}
.ls8{letter-spacing:19.535392px;}
.ls7{letter-spacing:19.607392px;}
.ls6{letter-spacing:47.632181px;}
.ls5{letter-spacing:47.704181px;}
.lse{letter-spacing:48.349520px;}
.lsc{letter-spacing:48.349549px;}
.lsb{letter-spacing:48.352397px;}
.lsf{letter-spacing:48.355992px;}
.lsd{letter-spacing:48.420586px;}
.ls9{letter-spacing:48.424337px;}
.ls10{letter-spacing:48.424375px;}
.lsa{letter-spacing:48.426291px;}
.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;}
}
.ws5{word-spacing:-35.855986px;}
.ws6{word-spacing:-27.287989px;}
.ws2{word-spacing:-14.939994px;}
.ws3{word-spacing:-13.875678px;}
.ws1{word-spacing:-13.499995px;}
.ws0{word-spacing:-12.059995px;}
.ws4{word-spacing:0.000000px;}
._a{margin-left:-5.395006px;}
._9{margin-left:-4.126454px;}
._8{margin-left:-3.013307px;}
._0{margin-left:-1.440826px;}
._2{width:1.002352px;}
._7{width:2.827841px;}
._5{width:4.407135px;}
._6{width:5.964519px;}
._d{width:7.048778px;}
._c{width:8.462548px;}
._b{width:9.601756px;}
._1{width:189.469688px;}
._3{width:232.351807px;}
._4{width:826.507210px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:5.759998px;}
.fs1{font-size:17.999993px;}
.fs4{font-size:23.759990px;}
.fsa{font-size:30.239988px;}
.fsd{font-size:35.999986px;}
.fs7{font-size:41.759983px;}
.fs5{font-size:45.359982px;}
.fs2{font-size:48.239981px;}
.fs6{font-size:50.980346px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fsc{font-size:66.239974px;}
.fs9{font-size:71.999971px;}
.fs8{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.yb{bottom:2.878928px;}
.y9{bottom:68.880272px;}
.y8{bottom:78.600269px;}
.y7{bottom:96.599961px;}
.yaa{bottom:142.679943px;}
.y46{bottom:150.599940px;}
.y7a{bottom:150.779940px;}
.ya9{bottom:161.579935px;}
.y45{bottom:169.499932px;}
.y79{bottom:169.679932px;}
.ya8{bottom:180.479928px;}
.y44{bottom:188.219925px;}
.y78{bottom:188.579925px;}
.ya7{bottom:199.379920px;}
.y43{bottom:207.119917px;}
.y77{bottom:207.479917px;}
.ya5{bottom:218.279913px;}
.ya6{bottom:222.599911px;}
.y42{bottom:226.019910px;}
.y76{bottom:226.379909px;}
.ya4{bottom:236.999905px;}
.y41{bottom:244.919902px;}
.y75{bottom:245.279902px;}
.ya3{bottom:255.899898px;}
.y40{bottom:263.819894px;}
.y74{bottom:263.999894px;}
.ya1{bottom:274.799890px;}
.ya2{bottom:279.299888px;}
.y3f{bottom:282.719887px;}
.y73{bottom:282.899887px;}
.ya0{bottom:293.699883px;}
.y3e{bottom:301.619879px;}
.y72{bottom:301.799879px;}
.y9f{bottom:312.599875px;}
.y3d{bottom:320.519872px;}
.y71{bottom:320.699872px;}
.y9e{bottom:331.499867px;}
.y3c{bottom:339.419864px;}
.y70{bottom:339.599864px;}
.yc8{bottom:344.819862px;}
.y9d{bottom:350.399860px;}
.y3b{bottom:358.319857px;}
.y6f{bottom:358.499857px;}
.yc7{bottom:368.939852px;}
.y9c{bottom:369.299852px;}
.y3a{bottom:377.039849px;}
.y6e{bottom:377.399849px;}
.yc6{bottom:387.479845px;}
.y9b{bottom:388.199845px;}
.y39{bottom:395.939842px;}
.y6d{bottom:396.299841px;}
.yc5{bottom:406.379837px;}
.y9a{bottom:407.099837px;}
.y38{bottom:414.839834px;}
.y6c{bottom:415.199834px;}
.yc4{bottom:425.279830px;}
.y99{bottom:425.819830px;}
.y37{bottom:433.739827px;}
.y6b{bottom:434.099826px;}
.yc3{bottom:444.179822px;}
.y98{bottom:444.719822px;}
.y36{bottom:452.639819px;}
.y6a{bottom:452.819819px;}
.yc2{bottom:463.079815px;}
.y97{bottom:463.619815px;}
.y35{bottom:471.539811px;}
.y69{bottom:471.719811px;}
.yc1{bottom:481.799807px;}
.y96{bottom:482.519807px;}
.y34{bottom:490.439804px;}
.y68{bottom:490.619804px;}
.yc0{bottom:500.519800px;}
.y95{bottom:501.419799px;}
.y33{bottom:509.339796px;}
.y67{bottom:509.519796px;}
.ybf{bottom:519.419792px;}
.y94{bottom:520.319792px;}
.y32{bottom:525.539790px;}
.y66{bottom:529.139788px;}
.y31{bottom:537.779785px;}
.ybe{bottom:538.499785px;}
.y93{bottom:539.219784px;}
.y65{bottom:548.039781px;}
.y30{bottom:556.859777px;}
.ybd{bottom:557.399777px;}
.y92{bottom:558.119777px;}
.y64{bottom:566.939773px;}
.y2f{bottom:572.339771px;}
.ybc{bottom:576.299769px;}
.y91{bottom:577.019769px;}
.y2e{bottom:581.339767px;}
.y63{bottom:585.659766px;}
.ybb{bottom:595.199762px;}
.y90{bottom:595.919762px;}
.y2d{bottom:600.239760px;}
.y62{bottom:604.559758px;}
.yba{bottom:614.099754px;}
.y8f{bottom:614.639754px;}
.y2c{bottom:618.959752px;}
.y61{bottom:623.459751px;}
.yb9{bottom:632.999747px;}
.y8e{bottom:633.539747px;}
.y2b{bottom:637.859745px;}
.y60{bottom:642.359743px;}
.yb8{bottom:651.899739px;}
.y8d{bottom:652.439739px;}
.y2a{bottom:656.759737px;}
.y5f{bottom:661.259735px;}
.yb7{bottom:670.619732px;}
.y8c{bottom:671.339731px;}
.y29{bottom:675.659730px;}
.y5e{bottom:680.159728px;}
.yb6{bottom:689.519724px;}
.y8b{bottom:690.239724px;}
.y28{bottom:694.559722px;}
.y5d{bottom:699.059720px;}
.yb5{bottom:708.419717px;}
.y8a{bottom:709.139716px;}
.y27{bottom:713.459715px;}
.y5c{bottom:717.959713px;}
.yb4{bottom:727.319709px;}
.y89{bottom:728.039709px;}
.y26{bottom:732.359707px;}
.y5b{bottom:736.859705px;}
.yb3{bottom:746.219702px;}
.y88{bottom:746.939701px;}
.y25{bottom:751.259699px;}
.y5a{bottom:755.759698px;}
.yb2{bottom:765.119694px;}
.y87{bottom:765.839694px;}
.y24{bottom:770.159692px;}
.y59{bottom:774.479690px;}
.yb1{bottom:784.019686px;}
.y86{bottom:784.739686px;}
.y23{bottom:789.059684px;}
.y58{bottom:793.379683px;}
.yb0{bottom:802.919679px;}
.y85{bottom:803.459679px;}
.y22{bottom:807.779677px;}
.y57{bottom:812.279675px;}
.yaf{bottom:821.819671px;}
.y84{bottom:822.359671px;}
.y21{bottom:826.679669px;}
.y56{bottom:831.179668px;}
.yae{bottom:840.719664px;}
.y83{bottom:841.259663px;}
.y20{bottom:842.699663px;}
.y55{bottom:850.079660px;}
.y1f{bottom:852.419659px;}
.yad{bottom:859.259656px;}
.yac{bottom:859.439656px;}
.y82{bottom:860.159656px;}
.y54{bottom:868.979652px;}
.y1e{bottom:871.319651px;}
.y81{bottom:879.059648px;}
.y53{bottom:887.879645px;}
.y1d{bottom:890.579644px;}
.y80{bottom:897.959641px;}
.y1c{bottom:906.239638px;}
.y52{bottom:906.779637px;}
.y7f{bottom:916.859633px;}
.y1b{bottom:920.819632px;}
.y51{bottom:925.679630px;}
.y1a{bottom:927.119629px;}
.y7e{bottom:935.759626px;}
.y50{bottom:944.579622px;}
.y19{bottom:946.019622px;}
.y7d{bottom:954.659618px;}
.y18{bottom:961.859615px;}
.y4f{bottom:963.299615px;}
.y17{bottom:972.479611px;}
.y7c{bottom:973.559611px;}
.y4e{bottom:982.019607px;}
.y4d{bottom:982.199607px;}
.y16{bottom:991.379603px;}
.y7b{bottom:992.279603px;}
.y4c{bottom:999.299600px;}
.y4b{bottom:1011.179596px;}
.y15{bottom:1012.439595px;}
.y4a{bottom:1030.079588px;}
.y14{bottom:1040.699584px;}
.y49{bottom:1048.979580px;}
.yab{bottom:1053.299579px;}
.y13{bottom:1065.179574px;}
.y48{bottom:1067.879573px;}
.y12{bottom:1076.519569px;}
.y11{bottom:1086.599565px;}
.y47{bottom:1086.779565px;}
.y6{bottom:1109.999556px;}
.y5{bottom:1122.419551px;}
.y4{bottom:1130.519548px;}
.y3{bottom:1147.259541px;}
.ye{bottom:1156.259537px;}
.yd{bottom:1156.439537px;}
.y2{bottom:1160.399536px;}
.y10{bottom:1163.099535px;}
.yc{bottom:1168.859532px;}
.ya{bottom:1177.860600px;}
.yf{bottom:1178.759528px;}
.y1{bottom:1196.039522px;}
.h14{height:4.193436px;}
.h7{height:11.700000px;}
.he{height:13.078120px;}
.h2{height:13.104487px;}
.h6{height:15.836126px;}
.hf{height:17.263118px;}
.h17{height:17.297923px;}
.h19{height:20.642335px;}
.h13{height:24.222230px;}
.h1a{height:28.835988px;}
.hb{height:28.995457px;}
.h10{height:30.341238px;}
.h3{height:35.049361px;}
.h4{height:35.167134px;}
.h8{height:36.333345px;}
.hc{height:37.494126px;}
.h1e{height:38.640225px;}
.h9{height:38.688465px;}
.hd{height:39.234359px;}
.h1{height:39.313461px;}
.h1b{height:39.830258px;}
.ha{height:40.886237px;}
.h1d{height:41.493499px;}
.h16{height:43.419358px;}
.h5{height:43.506897px;}
.h18{height:43.565256px;}
.h15{height:48.224512px;}
.h12{height:57.671977px;}
.h1c{height:58.391977px;}
.h11{height:86.507965px;}
.h0{height:1263.000000px;}
.w2{width:4.680000px;}
.w1{width:131.580000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.xa{left:109.259956px;}
.x18{left:134.999946px;}
.xb{left:152.639939px;}
.x15{left:155.339938px;}
.x1b{left:161.980853px;}
.x19{left:182.519927px;}
.x1c{left:188.999924px;}
.x4{left:211.499915px;}
.x3{left:214.020630px;}
.xd{left:221.579911px;}
.x16{left:242.279578px;}
.xc{left:249.299900px;}
.x23{left:285.479886px;}
.x12{left:288.719885px;}
.x24{left:289.979884px;}
.x13{left:309.032876px;}
.xe{left:323.819870px;}
.xf{left:358.379857px;}
.x1a{left:374.399850px;}
.x10{left:388.079845px;}
.x14{left:410.219836px;}
.x1d{left:417.779833px;}
.x1e{left:422.279831px;}
.x5{left:428.399829px;}
.x2{left:446.400807px;}
.x17{left:459.899816px;}
.x25{left:511.559358px;}
.x11{left:568.979772px;}
.x1f{left:616.139754px;}
.x20{left:620.639752px;}
.x6{left:653.220000px;}
.x8{left:670.127732px;}
.x9{left:729.359708px;}
.x21{left:740.339704px;}
.x22{left:744.839702px;}
.x7{left:784.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.143520pt;}
.ls0{letter-spacing:0.166971pt;}
.ls3{letter-spacing:0.168131pt;}
.ls2{letter-spacing:0.333941pt;}
.ls8{letter-spacing:17.364793pt;}
.ls7{letter-spacing:17.428793pt;}
.ls6{letter-spacing:42.339716pt;}
.ls5{letter-spacing:42.403716pt;}
.lse{letter-spacing:42.977351pt;}
.lsc{letter-spacing:42.977377pt;}
.lsb{letter-spacing:42.979909pt;}
.lsf{letter-spacing:42.983104pt;}
.lsd{letter-spacing:43.040521pt;}
.ls9{letter-spacing:43.043856pt;}
.ls10{letter-spacing:43.043889pt;}
.lsa{letter-spacing:43.045592pt;}
.ws5{word-spacing:-31.871987pt;}
.ws6{word-spacing:-24.255990pt;}
.ws2{word-spacing:-13.279995pt;}
.ws3{word-spacing:-12.333936pt;}
.ws1{word-spacing:-11.999995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws4{word-spacing:0.000000pt;}
._a{margin-left:-4.795561pt;}
._9{margin-left:-3.667959pt;}
._8{margin-left:-2.678495pt;}
._0{margin-left:-1.280735pt;}
._2{width:0.890980pt;}
._7{width:2.513636pt;}
._5{width:3.917454pt;}
._6{width:5.301794pt;}
._d{width:6.265581pt;}
._c{width:7.522265pt;}
._b{width:8.534894pt;}
._1{width:168.417500pt;}
._3{width:206.534940pt;}
._4{width:734.673076pt;}
.fsb{font-size:5.119998pt;}
.fs1{font-size:15.999994pt;}
.fs4{font-size:21.119992pt;}
.fsa{font-size:26.879989pt;}
.fsd{font-size:31.999987pt;}
.fs7{font-size:37.119985pt;}
.fs5{font-size:40.319984pt;}
.fs2{font-size:42.879983pt;}
.fs6{font-size:45.315863pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fsc{font-size:58.879976pt;}
.fs9{font-size:63.999974pt;}
.fs8{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.559047pt;}
.y9{bottom:61.226909pt;}
.y8{bottom:69.866905pt;}
.y7{bottom:85.866632pt;}
.yaa{bottom:126.826616pt;}
.y46{bottom:133.866613pt;}
.y7a{bottom:134.026613pt;}
.ya9{bottom:143.626609pt;}
.y45{bottom:150.666606pt;}
.y79{bottom:150.826606pt;}
.ya8{bottom:160.426602pt;}
.y44{bottom:167.306600pt;}
.y78{bottom:167.626600pt;}
.ya7{bottom:177.226596pt;}
.y43{bottom:184.106593pt;}
.y77{bottom:184.426593pt;}
.ya5{bottom:194.026589pt;}
.ya6{bottom:197.866588pt;}
.y42{bottom:200.906586pt;}
.y76{bottom:201.226586pt;}
.ya4{bottom:210.666582pt;}
.y41{bottom:217.706580pt;}
.y75{bottom:218.026579pt;}
.ya3{bottom:227.466576pt;}
.y40{bottom:234.506573pt;}
.y74{bottom:234.666573pt;}
.ya1{bottom:244.266569pt;}
.ya2{bottom:248.266567pt;}
.y3f{bottom:251.306566pt;}
.y73{bottom:251.466566pt;}
.ya0{bottom:261.066562pt;}
.y3e{bottom:268.106559pt;}
.y72{bottom:268.266559pt;}
.y9f{bottom:277.866556pt;}
.y3d{bottom:284.906553pt;}
.y71{bottom:285.066553pt;}
.y9e{bottom:294.666549pt;}
.y3c{bottom:301.706546pt;}
.y70{bottom:301.866546pt;}
.yc8{bottom:306.506544pt;}
.y9d{bottom:311.466542pt;}
.y3b{bottom:318.506539pt;}
.y6f{bottom:318.666539pt;}
.yc7{bottom:327.946535pt;}
.y9c{bottom:328.266535pt;}
.y3a{bottom:335.146533pt;}
.y6e{bottom:335.466532pt;}
.yc6{bottom:344.426529pt;}
.y9b{bottom:345.066529pt;}
.y39{bottom:351.946526pt;}
.y6d{bottom:352.266526pt;}
.yc5{bottom:361.226522pt;}
.y9a{bottom:361.866522pt;}
.y38{bottom:368.746519pt;}
.y6c{bottom:369.066519pt;}
.yc4{bottom:378.026515pt;}
.y99{bottom:378.506515pt;}
.y37{bottom:385.546512pt;}
.y6b{bottom:385.866512pt;}
.yc3{bottom:394.826509pt;}
.y98{bottom:395.306509pt;}
.y36{bottom:402.346506pt;}
.y6a{bottom:402.506506pt;}
.yc2{bottom:411.626502pt;}
.y97{bottom:412.106502pt;}
.y35{bottom:419.146499pt;}
.y69{bottom:419.306499pt;}
.yc1{bottom:428.266495pt;}
.y96{bottom:428.906495pt;}
.y34{bottom:435.946492pt;}
.y68{bottom:436.106492pt;}
.yc0{bottom:444.906489pt;}
.y95{bottom:445.706488pt;}
.y33{bottom:452.746486pt;}
.y67{bottom:452.906486pt;}
.ybf{bottom:461.706482pt;}
.y94{bottom:462.506482pt;}
.y32{bottom:467.146480pt;}
.y66{bottom:470.346479pt;}
.y31{bottom:478.026475pt;}
.ybe{bottom:478.666475pt;}
.y93{bottom:479.306475pt;}
.y65{bottom:487.146472pt;}
.y30{bottom:494.986469pt;}
.ybd{bottom:495.466468pt;}
.y92{bottom:496.106468pt;}
.y64{bottom:503.946465pt;}
.y2f{bottom:508.746463pt;}
.ybc{bottom:512.266462pt;}
.y91{bottom:512.906462pt;}
.y2e{bottom:516.746460pt;}
.y63{bottom:520.586458pt;}
.ybb{bottom:529.066455pt;}
.y90{bottom:529.706455pt;}
.y2d{bottom:533.546453pt;}
.y62{bottom:537.386452pt;}
.yba{bottom:545.866448pt;}
.y8f{bottom:546.346448pt;}
.y2c{bottom:550.186447pt;}
.y61{bottom:554.186445pt;}
.yb9{bottom:562.666442pt;}
.y8e{bottom:563.146441pt;}
.y2b{bottom:566.986440pt;}
.y60{bottom:570.986438pt;}
.yb8{bottom:579.466435pt;}
.y8d{bottom:579.946435pt;}
.y2a{bottom:583.786433pt;}
.y5f{bottom:587.786432pt;}
.yb7{bottom:596.106428pt;}
.y8c{bottom:596.746428pt;}
.y29{bottom:600.586426pt;}
.y5e{bottom:604.586425pt;}
.yb6{bottom:612.906422pt;}
.y8b{bottom:613.546421pt;}
.y28{bottom:617.386420pt;}
.y5d{bottom:621.386418pt;}
.yb5{bottom:629.706415pt;}
.y8a{bottom:630.346415pt;}
.y27{bottom:634.186413pt;}
.y5c{bottom:638.186411pt;}
.yb4{bottom:646.506408pt;}
.y89{bottom:647.146408pt;}
.y26{bottom:650.986406pt;}
.y5b{bottom:654.986405pt;}
.yb3{bottom:663.306401pt;}
.y88{bottom:663.946401pt;}
.y25{bottom:667.786400pt;}
.y5a{bottom:671.786398pt;}
.yb2{bottom:680.106395pt;}
.y87{bottom:680.746394pt;}
.y24{bottom:684.586393pt;}
.y59{bottom:688.426391pt;}
.yb1{bottom:696.906388pt;}
.y86{bottom:697.546388pt;}
.y23{bottom:701.386386pt;}
.y58{bottom:705.226385pt;}
.yb0{bottom:713.706381pt;}
.y85{bottom:714.186381pt;}
.y22{bottom:718.026379pt;}
.y57{bottom:722.026378pt;}
.yaf{bottom:730.506374pt;}
.y84{bottom:730.986374pt;}
.y21{bottom:734.826373pt;}
.y56{bottom:738.826371pt;}
.yae{bottom:747.306368pt;}
.y83{bottom:747.786368pt;}
.y20{bottom:749.066367pt;}
.y55{bottom:755.626364pt;}
.y1f{bottom:757.706364pt;}
.yad{bottom:763.786361pt;}
.yac{bottom:763.946361pt;}
.y82{bottom:764.586361pt;}
.y54{bottom:772.426358pt;}
.y1e{bottom:774.506357pt;}
.y81{bottom:781.386354pt;}
.y53{bottom:789.226351pt;}
.y1d{bottom:791.626350pt;}
.y80{bottom:798.186347pt;}
.y1c{bottom:805.546344pt;}
.y52{bottom:806.026344pt;}
.y7f{bottom:814.986341pt;}
.y1b{bottom:818.506339pt;}
.y51{bottom:822.826338pt;}
.y1a{bottom:824.106337pt;}
.y7e{bottom:831.786334pt;}
.y50{bottom:839.626331pt;}
.y19{bottom:840.906330pt;}
.y7d{bottom:848.586327pt;}
.y18{bottom:854.986325pt;}
.y4f{bottom:856.266324pt;}
.y17{bottom:864.426321pt;}
.y7c{bottom:865.386321pt;}
.y4e{bottom:872.906318pt;}
.y4d{bottom:873.066317pt;}
.y16{bottom:881.226314pt;}
.y7b{bottom:882.026314pt;}
.y4c{bottom:888.266311pt;}
.y4b{bottom:898.826307pt;}
.y15{bottom:899.946307pt;}
.y4a{bottom:915.626300pt;}
.y14{bottom:925.066297pt;}
.y49{bottom:932.426294pt;}
.yab{bottom:936.266292pt;}
.y13{bottom:946.826288pt;}
.y48{bottom:949.226287pt;}
.y12{bottom:956.906284pt;}
.y11{bottom:965.866280pt;}
.y47{bottom:966.026280pt;}
.y6{bottom:986.666272pt;}
.y5{bottom:997.706268pt;}
.y4{bottom:1004.906265pt;}
.y3{bottom:1019.786259pt;}
.ye{bottom:1027.786256pt;}
.yd{bottom:1027.946255pt;}
.y2{bottom:1031.466254pt;}
.y10{bottom:1033.866253pt;}
.yc{bottom:1038.986251pt;}
.ya{bottom:1046.987200pt;}
.yf{bottom:1047.786248pt;}
.y1{bottom:1063.146241pt;}
.h14{height:3.727499pt;}
.h7{height:10.400000pt;}
.he{height:11.624995pt;}
.h2{height:11.648433pt;}
.h6{height:14.076557pt;}
.hf{height:15.344994pt;}
.h17{height:15.375931pt;}
.h19{height:18.348743pt;}
.h13{height:21.530871pt;}
.h1a{height:25.631990pt;}
.hb{height:25.773740pt;}
.h10{height:26.969989pt;}
.h3{height:31.154988pt;}
.h4{height:31.259675pt;}
.h8{height:32.296307pt;}
.hc{height:33.328112pt;}
.h1e{height:34.346866pt;}
.h9{height:34.389746pt;}
.hd{height:34.874986pt;}
.h1{height:34.945299pt;}
.h1b{height:35.404673pt;}
.ha{height:36.343322pt;}
.h1d{height:36.883110pt;}
.h16{height:38.594985pt;}
.h5{height:38.672797pt;}
.h18{height:38.724672pt;}
.h15{height:42.866233pt;}
.h12{height:51.263979pt;}
.h1c{height:51.903979pt;}
.h11{height:76.895969pt;}
.h0{height:1122.666667pt;}
.w2{width:4.160000pt;}
.w1{width:116.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.xa{left:97.119961pt;}
.x18{left:119.999952pt;}
.xb{left:135.679946pt;}
.x15{left:138.079945pt;}
.x1b{left:143.982980pt;}
.x19{left:162.239935pt;}
.x1c{left:167.999933pt;}
.x4{left:187.999925pt;}
.x3{left:190.240560pt;}
.xd{left:196.959921pt;}
.x16{left:215.359625pt;}
.xc{left:221.599911pt;}
.x23{left:253.759898pt;}
.x12{left:256.639897pt;}
.x24{left:257.759897pt;}
.x13{left:274.695890pt;}
.xe{left:287.839885pt;}
.xf{left:318.559873pt;}
.x1a{left:332.799867pt;}
.x10{left:344.959862pt;}
.x14{left:364.639854pt;}
.x1d{left:371.359851pt;}
.x1e{left:375.359850pt;}
.x5{left:380.799848pt;}
.x2{left:396.800717pt;}
.x17{left:408.799836pt;}
.x25{left:454.719429pt;}
.x11{left:505.759798pt;}
.x1f{left:547.679781pt;}
.x20{left:551.679779pt;}
.x6{left:580.640000pt;}
.x8{left:595.669095pt;}
.x9{left:648.319741pt;}
.x21{left:658.079737pt;}
.x22{left:662.079735pt;}
.x7{left:697.280000pt;}
}




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