
    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_163d29141fda107bd7a27bef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_214b42ac095d751255f99c05.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_24559a3c9cb110a5ad5258a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_8d78ed51530f3ed1d34cbb5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_148317e99c55428596fe3611.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_c9983a099fbf2fa381e076b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_3d5695484299bc9d49fa0e4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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_fed8b2875e08ebb291d62d46.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.261626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261626,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-7.866392px;}
.v3{vertical-align:-5.760000px;}
.v6{vertical-align:-2.856000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.587629px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.v8{vertical-align:28.567423px;}
.ls20{letter-spacing:-1.552577px;}
.ls10{letter-spacing:-1.386000px;}
.ls21{letter-spacing:-1.380069px;}
.ls1d{letter-spacing:-0.731436px;}
.ls1f{letter-spacing:-0.576179px;}
.ls26{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.342600px;}
.lse{letter-spacing:-0.259800px;}
.ls18{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.086254px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.012960px;}
.lsf{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.173199px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls25{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.666000px;}
.ls9{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.734887px;}
.ls1b{letter-spacing:0.841842px;}
.ls24{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.034707px;}
.ls1e{letter-spacing:1.035052px;}
.ls12{letter-spacing:1.250687px;}
.ls1{letter-spacing:3.060000px;}
.ls15{letter-spacing:86.858421px;}
.ls16{letter-spacing:94.498136px;}
.ls17{letter-spacing:112.611539px;}
.ls14{letter-spacing:405.036028px;}
.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;}
}
.ws0{word-spacing:-19.431360px;}
.ws7{word-spacing:-15.606000px;}
.ws2{word-spacing:-15.300000px;}
.ws22{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.146400px;}
.ws23{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.680200px;}
.ws8{word-spacing:-13.860000px;}
.wse{word-spacing:-13.554000px;}
.ws11{word-spacing:-13.500000px;}
.ws24{word-spacing:-12.374400px;}
.ws1{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.700000px;}
.ws18{word-spacing:-11.428694px;}
.ws15{word-spacing:-11.128529px;}
.ws16{word-spacing:-10.566841px;}
.ws21{word-spacing:-10.440000px;}
.ws14{word-spacing:-10.393643px;}
.ws20{word-spacing:-9.746735px;}
.ws3{word-spacing:-9.720000px;}
.ws17{word-spacing:-9.662206px;}
.ws10{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
.ws1a{word-spacing:17.467530px;}
.ws12{word-spacing:18.134103px;}
.ws13{word-spacing:28.734756px;}
.ws19{word-spacing:33.007794px;}
.ws1e{word-spacing:35.546430px;}
.ws1d{word-spacing:40.771716px;}
.ws1c{word-spacing:45.931448px;}
.ws1f{word-spacing:58.835090px;}
.ws1b{word-spacing:77.067523px;}
._13{margin-left:-4.082383px;}
._10{margin-left:-2.731680px;}
._0{margin-left:-1.332000px;}
._1{width:1.080000px;}
._2{width:2.201280px;}
._3{width:3.240000px;}
._8{width:4.246560px;}
._4{width:5.400000px;}
._6{width:6.407280px;}
._7{width:7.649280px;}
._5{width:8.724960px;}
._c{width:10.317600px;}
._a{width:12.390480px;}
._9{width:13.399200px;}
._b{width:16.196160px;}
._2f{width:21.214800px;}
._30{width:22.434720px;}
._e{width:23.852880px;}
._d{width:24.860160px;}
._27{width:26.362997px;}
._f{width:27.749760px;}
._28{width:37.511148px;}
._26{width:41.927774px;}
._14{width:45.773897px;}
._1d{width:47.029526px;}
._1f{width:50.730123px;}
._20{width:54.799780px;}
._2c{width:56.172481px;}
._2d{width:57.414543px;}
._1b{width:58.794612px;}
._1c{width:60.071175px;}
._24{width:61.347739px;}
._25{width:62.658804px;}
._21{width:65.198364px;}
._18{width:66.495863px;}
._1e{width:67.789555px;}
._15{width:69.145127px;}
._19{width:74.272316px;}
._22{width:75.596949px;}
._17{width:76.949883px;}
._23{width:79.495643px;}
._2e{width:80.643761px;}
._2b{width:83.359835px;}
._1a{width:84.691835px;}
._16{width:85.899395px;}
._2a{width:93.566522px;}
._29{width:95.079490px;}
._12{width:544.102320px;}
._11{width:569.820000px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:28.550172px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fsc{font-size:38.986942px;}
.fsa{font-size:41.574571px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.230460px;}
.y5d{bottom:3.251791px;}
.y75{bottom:3.881450px;}
.y5a{bottom:3.898698px;}
.y7a{bottom:3.902979px;}
.y73{bottom:3.907326px;}
.y56{bottom:5.192512px;}
.y51{bottom:5.192514px;}
.y7d{bottom:10.376394px;}
.y82{bottom:10.393438px;}
.y7f{bottom:10.393645px;}
.y53{bottom:10.393705px;}
.y6f{bottom:16.880030px;}
.y79{bottom:16.884078px;}
.y77{bottom:16.884285px;}
.y72{bottom:16.888597px;}
.y59{bottom:17.526876px;}
.y5c{bottom:18.199660px;}
.y38{bottom:18.360000px;}
.y63{bottom:18.846566px;}
.y55{bottom:18.846567px;}
.y50{bottom:18.846569px;}
.y6e{bottom:30.508209px;}
.y47{bottom:41.760000px;}
.y6d{bottom:44.157951px;}
.y6c{bottom:57.786130px;}
.y6b{bottom:71.435886px;}
.y6a{bottom:85.064051px;}
.y2a{bottom:98.496000px;}
.y69{bottom:98.692230px;}
.y45{bottom:102.096000px;}
.y68{bottom:112.346285px;}
.ya5{bottom:112.896000px;}
.y29{bottom:113.616000px;}
.y44{bottom:120.096000px;}
.y67{bottom:125.974477px;}
.ya4{bottom:127.836000px;}
.y28{bottom:129.456000px;}
.y4c{bottom:132.156000px;}
.y43{bottom:138.096000px;}
.ya3{bottom:142.776000px;}
.y4e{bottom:148.702487px;}
.y4b{bottom:150.150000px;}
.y42{bottom:156.090000px;}
.ya2{bottom:157.890000px;}
.y27{bottom:160.770000px;}
.ya1{bottom:172.830000px;}
.y26{bottom:178.770000px;}
.ya0{bottom:187.770000px;}
.y41{bottom:192.090000px;}
.y25{bottom:196.770000px;}
.y9f{bottom:202.890000px;}
.y24{bottom:214.770000px;}
.y9e{bottom:217.830000px;}
.y40{bottom:228.090000px;}
.y23{bottom:232.770000px;}
.y3f{bottom:246.090000px;}
.y9d{bottom:247.890000px;}
.y22{bottom:250.770000px;}
.y9c{bottom:262.830000px;}
.y3e{bottom:264.090000px;}
.y21{bottom:268.770000px;}
.y3d{bottom:282.090000px;}
.y20{bottom:286.770000px;}
.y9b{bottom:296.490000px;}
.y3c{bottom:300.090000px;}
.y1f{bottom:304.770000px;}
.y3b{bottom:318.135000px;}
.y1e{bottom:322.815000px;}
.y9a{bottom:332.535000px;}
.y3a{bottom:336.135000px;}
.y1d{bottom:340.815000px;}
.y99{bottom:350.535000px;}
.y1c{bottom:358.815000px;}
.y36{bottom:367.815000px;}
.y39{bottom:372.135000px;}
.y1b{bottom:376.815000px;}
.y98{bottom:386.535000px;}
.y1a{bottom:394.815000px;}
.y37{bottom:404.535000px;}
.y19{bottom:412.815000px;}
.y97{bottom:422.535000px;}
.y18{bottom:430.815000px;}
.y35{bottom:434.955000px;}
.y96{bottom:440.535000px;}
.y17{bottom:448.815000px;}
.y95{bottom:458.535000px;}
.y16{bottom:466.815000px;}
.y94{bottom:476.535000px;}
.y15{bottom:484.815000px;}
.y93{bottom:494.535000px;}
.y14{bottom:502.815000px;}
.y92{bottom:512.535000px;}
.y13{bottom:520.815000px;}
.y91{bottom:530.535000px;}
.y12{bottom:538.815000px;}
.y90{bottom:548.565000px;}
.y11{bottom:574.845000px;}
.y8f{bottom:584.565000px;}
.y8e{bottom:620.565000px;}
.y10{bottom:625.785000px;}
.y8d{bottom:638.565000px;}
.y8c{bottom:656.565000px;}
.yf{bottom:657.825000px;}
.ye{bottom:674.385000px;}
.y8b{bottom:674.565000px;}
.yd{bottom:691.125000px;}
.y8a{bottom:692.565000px;}
.yc{bottom:708.045000px;}
.y89{bottom:710.565000px;}
.yb{bottom:724.605000px;}
.y88{bottom:728.565000px;}
.y4d{bottom:736.919919px;}
.y81{bottom:737.562785px;}
.y78{bottom:737.562791px;}
.ya{bottom:740.985000px;}
.y87{bottom:746.565000px;}
.y9{bottom:757.545000px;}
.y86{bottom:764.565000px;}
.y80{bottom:764.840500px;}
.y76{bottom:764.840505px;}
.y8{bottom:774.150000px;}
.y85{bottom:782.610000px;}
.y7{bottom:790.530000px;}
.y83{bottom:792.118421px;}
.y7b{bottom:792.118426px;}
.y84{bottom:800.610000px;}
.y34{bottom:818.610000px;}
.y7c{bottom:819.396342px;}
.y74{bottom:819.396347px;}
.y6{bottom:823.650000px;}
.y33{bottom:836.610000px;}
.y7e{bottom:846.652699px;}
.y71{bottom:846.652704px;}
.y32{bottom:854.610000px;}
.y5{bottom:870.450000px;}
.y31{bottom:872.610000px;}
.y52{bottom:873.934868px;}
.y66{bottom:873.934871px;}
.y65{bottom:873.934876px;}
.y64{bottom:873.934880px;}
.y62{bottom:873.934884px;}
.y61{bottom:873.934888px;}
.y60{bottom:873.934892px;}
.y5f{bottom:873.934896px;}
.y5e{bottom:873.934900px;}
.y5b{bottom:873.934905px;}
.y58{bottom:873.934909px;}
.y57{bottom:873.934914px;}
.y54{bottom:873.934918px;}
.y4f{bottom:873.934933px;}
.y30{bottom:890.610000px;}
.y4{bottom:899.250000px;}
.y2f{bottom:908.610000px;}
.y4a{bottom:916.890000px;}
.y2e{bottom:926.610000px;}
.y49{bottom:932.010000px;}
.y3{bottom:941.010000px;}
.y2d{bottom:944.610000px;}
.y2c{bottom:962.610000px;}
.y2{bottom:971.070000px;}
.y2b{bottom:980.610000px;}
.y48{bottom:998.610000px;}
.y1{bottom:1016.640000px;}
.y46{bottom:1050.300000px;}
.h1f{height:26.609456px;}
.h1e{height:26.609457px;}
.h20{height:26.631019px;}
.h1c{height:26.631020px;}
.h10{height:30.405000px;}
.h17{height:31.180932px;}
.h14{height:31.180933px;}
.h15{height:31.181009px;}
.h1d{height:38.263551px;}
.h13{height:40.803167px;}
.h1a{height:40.851180px;}
.h1b{height:40.954685px;}
.h7{height:47.321367px;}
.hb{height:47.344922px;}
.h19{height:48.721463px;}
.h16{height:48.790467px;}
.h18{height:48.824969px;}
.h9{height:52.998047px;}
.h11{height:53.332031px;}
.h8{height:54.421875px;}
.ha{height:58.651172px;}
.hd{height:59.038594px;}
.h21{height:60.226875px;}
.hc{height:62.211094px;}
.he{height:65.010937px;}
.h2{height:70.664062px;}
.h4{height:76.317188px;}
.h6{height:77.531484px;}
.h3{height:100.342969px;}
.h12{height:168.191852px;}
.hf{height:380.040000px;}
.h5{height:1114.184910px;}
.h0{height:1114.200000px;}
.h1{height:1114.500000px;}
.w11{width:31.164153px;}
.wd{width:31.841144px;}
.wf{width:32.518135px;}
.we{width:32.540701px;}
.w10{width:33.217692px;}
.wb{width:33.894683px;}
.w8{width:34.571674px;}
.wc{width:35.903089px;}
.wa{width:36.580080px;}
.w7{width:39.288044px;}
.w9{width:39.310611px;}
.w5{width:43.372557px;}
.w12{width:53.527421px;}
.w3{width:350.535000px;}
.w6{width:670.898067px;}
.w4{width:670.898071px;}
.w2{width:816.457500px;}
.w0{width:816.480000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.xd{left:1.353983px;}
.xf{left:2.707964px;}
.x17{left:4.738938px;}
.x14{left:6.796990px;}
.xb{left:8.100000px;}
.x11{left:9.477874px;}
.x12{left:11.508848px;}
.x16{left:13.557873px;}
.x22{left:27.102207px;}
.x8{left:55.260000px;}
.x2{left:57.060000px;}
.x4{left:64.080000px;}
.x9{left:73.080000px;}
.x25{left:76.500000px;}
.x24{left:97.571669px;}
.x7{left:101.916000px;}
.x23{left:138.918552px;}
.xe{left:151.776079px;}
.x10{left:155.861378px;}
.x1{left:180.210000px;}
.x3{left:256.935000px;}
.x5{left:267.712500px;}
.xa{left:271.335000px;}
.x6{left:276.735000px;}
.x13{left:316.438340px;}
.x15{left:351.696030px;}
.x18{left:391.683631px;}
.xc{left:405.795000px;}
.x19{left:428.936189px;}
.x1a{left:464.184852px;}
.x1b{left:498.756525px;}
.x1c{left:535.341118px;}
.x1d{left:569.912791px;}
.x1e{left:602.426412px;}
.x1f{left:635.644103px;}
.x20{left:668.834714px;}
.x21{left:702.738422px;}
@media print{
.v7{vertical-align:-6.992348pt;}
.v3{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.538667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.300115pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.v8{vertical-align:25.393265pt;}
.ls20{letter-spacing:-1.380069pt;}
.ls10{letter-spacing:-1.232000pt;}
.ls21{letter-spacing:-1.226728pt;}
.ls1d{letter-spacing:-0.650166pt;}
.ls1f{letter-spacing:-0.512159pt;}
.ls26{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.304533pt;}
.lse{letter-spacing:-0.230933pt;}
.ls18{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.076670pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.011520pt;}
.lsf{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.153954pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls25{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.653233pt;}
.ls1b{letter-spacing:0.748304pt;}
.ls24{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.919739pt;}
.ls1e{letter-spacing:0.920046pt;}
.ls12{letter-spacing:1.111722pt;}
.ls1{letter-spacing:2.720000pt;}
.ls15{letter-spacing:77.207485pt;}
.ls16{letter-spacing:83.998343pt;}
.ls17{letter-spacing:100.099145pt;}
.ls14{letter-spacing:360.032025pt;}
.ws0{word-spacing:-17.272320pt;}
.ws7{word-spacing:-13.872000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws22{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.463467pt;}
.ws23{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.048000pt;}
.ws11{word-spacing:-12.000000pt;}
.ws24{word-spacing:-10.999467pt;}
.ws1{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.400000pt;}
.ws18{word-spacing:-10.158839pt;}
.ws15{word-spacing:-9.892026pt;}
.ws16{word-spacing:-9.392748pt;}
.ws21{word-spacing:-9.280000pt;}
.ws14{word-spacing:-9.238793pt;}
.ws20{word-spacing:-8.663765pt;}
.ws3{word-spacing:-8.640000pt;}
.ws17{word-spacing:-8.588628pt;}
.ws10{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
.ws1a{word-spacing:15.526693pt;}
.ws12{word-spacing:16.119203pt;}
.ws13{word-spacing:25.542005pt;}
.ws19{word-spacing:29.340261pt;}
.ws1e{word-spacing:31.596827pt;}
.ws1d{word-spacing:36.241525pt;}
.ws1c{word-spacing:40.827953pt;}
.ws1f{word-spacing:52.297858pt;}
.ws1b{word-spacing:68.504465pt;}
._13{margin-left:-3.628785pt;}
._10{margin-left:-2.428160pt;}
._0{margin-left:-1.184000pt;}
._1{width:0.960000pt;}
._2{width:1.956693pt;}
._3{width:2.880000pt;}
._8{width:3.774720pt;}
._4{width:4.800000pt;}
._6{width:5.695360pt;}
._7{width:6.799360pt;}
._5{width:7.755520pt;}
._c{width:9.171200pt;}
._a{width:11.013760pt;}
._9{width:11.910400pt;}
._b{width:14.396587pt;}
._2f{width:18.857600pt;}
._30{width:19.941973pt;}
._e{width:21.202560pt;}
._d{width:22.097920pt;}
._27{width:23.433775pt;}
._f{width:24.666453pt;}
._28{width:33.343242pt;}
._26{width:37.269132pt;}
._14{width:40.687909pt;}
._1d{width:41.804023pt;}
._1f{width:45.093443pt;}
._20{width:48.710916pt;}
._2c{width:49.931094pt;}
._2d{width:51.035149pt;}
._1b{width:52.261877pt;}
._1c{width:53.396600pt;}
._24{width:54.531324pt;}
._25{width:55.696715pt;}
._21{width:57.954102pt;}
._18{width:59.107434pt;}
._1e{width:60.257382pt;}
._15{width:61.462335pt;}
._19{width:66.019837pt;}
._22{width:67.197288pt;}
._17{width:68.399896pt;}
._23{width:70.662794pt;}
._2e{width:71.683343pt;}
._2b{width:74.097631pt;}
._1a{width:75.281631pt;}
._16{width:76.355018pt;}
._2a{width:83.170242pt;}
._29{width:84.515103pt;}
._12{width:483.646507pt;}
._11{width:506.506667pt;}
.fsb{font-size:25.377931pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fsc{font-size:34.655059pt;}
.fsa{font-size:36.955174pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.871520pt;}
.y5d{bottom:2.890481pt;}
.y75{bottom:3.450177pt;}
.y5a{bottom:3.465510pt;}
.y7a{bottom:3.469314pt;}
.y73{bottom:3.473179pt;}
.y56{bottom:4.615566pt;}
.y51{bottom:4.615568pt;}
.y7d{bottom:9.223461pt;}
.y82{bottom:9.238611pt;}
.y7f{bottom:9.238795pt;}
.y53{bottom:9.238849pt;}
.y6f{bottom:15.004471pt;}
.y79{bottom:15.008069pt;}
.y77{bottom:15.008253pt;}
.y72{bottom:15.012087pt;}
.y59{bottom:15.579445pt;}
.y5c{bottom:16.177476pt;}
.y38{bottom:16.320000pt;}
.y63{bottom:16.752503pt;}
.y55{bottom:16.752504pt;}
.y50{bottom:16.752505pt;}
.y6e{bottom:27.118408pt;}
.y47{bottom:37.120000pt;}
.y6d{bottom:39.251512pt;}
.y6c{bottom:51.365449pt;}
.y6b{bottom:63.498565pt;}
.y6a{bottom:75.612490pt;}
.y2a{bottom:87.552000pt;}
.y69{bottom:87.726427pt;}
.y45{bottom:90.752000pt;}
.y68{bottom:99.863364pt;}
.ya5{bottom:100.352000pt;}
.y29{bottom:100.992000pt;}
.y44{bottom:106.752000pt;}
.y67{bottom:111.977313pt;}
.ya4{bottom:113.632000pt;}
.y28{bottom:115.072000pt;}
.y4c{bottom:117.472000pt;}
.y43{bottom:122.752000pt;}
.ya3{bottom:126.912000pt;}
.y4e{bottom:132.179989pt;}
.y4b{bottom:133.466667pt;}
.y42{bottom:138.746667pt;}
.ya2{bottom:140.346667pt;}
.y27{bottom:142.906667pt;}
.ya1{bottom:153.626667pt;}
.y26{bottom:158.906667pt;}
.ya0{bottom:166.906667pt;}
.y41{bottom:170.746667pt;}
.y25{bottom:174.906667pt;}
.y9f{bottom:180.346667pt;}
.y24{bottom:190.906667pt;}
.y9e{bottom:193.626667pt;}
.y40{bottom:202.746667pt;}
.y23{bottom:206.906667pt;}
.y3f{bottom:218.746667pt;}
.y9d{bottom:220.346667pt;}
.y22{bottom:222.906667pt;}
.y9c{bottom:233.626667pt;}
.y3e{bottom:234.746667pt;}
.y21{bottom:238.906667pt;}
.y3d{bottom:250.746667pt;}
.y20{bottom:254.906667pt;}
.y9b{bottom:263.546667pt;}
.y3c{bottom:266.746667pt;}
.y1f{bottom:270.906667pt;}
.y3b{bottom:282.786667pt;}
.y1e{bottom:286.946667pt;}
.y9a{bottom:295.586667pt;}
.y3a{bottom:298.786667pt;}
.y1d{bottom:302.946667pt;}
.y99{bottom:311.586667pt;}
.y1c{bottom:318.946667pt;}
.y36{bottom:326.946667pt;}
.y39{bottom:330.786667pt;}
.y1b{bottom:334.946667pt;}
.y98{bottom:343.586667pt;}
.y1a{bottom:350.946667pt;}
.y37{bottom:359.586667pt;}
.y19{bottom:366.946667pt;}
.y97{bottom:375.586667pt;}
.y18{bottom:382.946667pt;}
.y35{bottom:386.626667pt;}
.y96{bottom:391.586667pt;}
.y17{bottom:398.946667pt;}
.y95{bottom:407.586667pt;}
.y16{bottom:414.946667pt;}
.y94{bottom:423.586667pt;}
.y15{bottom:430.946667pt;}
.y93{bottom:439.586667pt;}
.y14{bottom:446.946667pt;}
.y92{bottom:455.586667pt;}
.y13{bottom:462.946667pt;}
.y91{bottom:471.586667pt;}
.y12{bottom:478.946667pt;}
.y90{bottom:487.613333pt;}
.y11{bottom:510.973333pt;}
.y8f{bottom:519.613333pt;}
.y8e{bottom:551.613333pt;}
.y10{bottom:556.253333pt;}
.y8d{bottom:567.613333pt;}
.y8c{bottom:583.613333pt;}
.yf{bottom:584.733333pt;}
.ye{bottom:599.453333pt;}
.y8b{bottom:599.613333pt;}
.yd{bottom:614.333333pt;}
.y8a{bottom:615.613333pt;}
.yc{bottom:629.373333pt;}
.y89{bottom:631.613333pt;}
.yb{bottom:644.093333pt;}
.y88{bottom:647.613333pt;}
.y4d{bottom:655.039928pt;}
.y81{bottom:655.611365pt;}
.y78{bottom:655.611370pt;}
.ya{bottom:658.653333pt;}
.y87{bottom:663.613333pt;}
.y9{bottom:673.373333pt;}
.y86{bottom:679.613333pt;}
.y80{bottom:679.858222pt;}
.y76{bottom:679.858227pt;}
.y8{bottom:688.133333pt;}
.y85{bottom:695.653333pt;}
.y7{bottom:702.693333pt;}
.y83{bottom:704.105263pt;}
.y7b{bottom:704.105268pt;}
.y84{bottom:711.653333pt;}
.y34{bottom:727.653333pt;}
.y7c{bottom:728.352304pt;}
.y74{bottom:728.352308pt;}
.y6{bottom:732.133333pt;}
.y33{bottom:743.653333pt;}
.y7e{bottom:752.580177pt;}
.y71{bottom:752.580182pt;}
.y32{bottom:759.653333pt;}
.y5{bottom:773.733333pt;}
.y31{bottom:775.653333pt;}
.y52{bottom:776.830993pt;}
.y66{bottom:776.830997pt;}
.y65{bottom:776.831001pt;}
.y64{bottom:776.831004pt;}
.y62{bottom:776.831008pt;}
.y61{bottom:776.831011pt;}
.y60{bottom:776.831015pt;}
.y5f{bottom:776.831019pt;}
.y5e{bottom:776.831023pt;}
.y5b{bottom:776.831026pt;}
.y58{bottom:776.831030pt;}
.y57{bottom:776.831035pt;}
.y54{bottom:776.831038pt;}
.y4f{bottom:776.831051pt;}
.y30{bottom:791.653333pt;}
.y4{bottom:799.333333pt;}
.y2f{bottom:807.653333pt;}
.y4a{bottom:815.013333pt;}
.y2e{bottom:823.653333pt;}
.y49{bottom:828.453333pt;}
.y3{bottom:836.453333pt;}
.y2d{bottom:839.653333pt;}
.y2c{bottom:855.653333pt;}
.y2{bottom:863.173333pt;}
.y2b{bottom:871.653333pt;}
.y48{bottom:887.653333pt;}
.y1{bottom:903.680000pt;}
.y46{bottom:933.600000pt;}
.h1f{height:23.652849pt;}
.h1e{height:23.652850pt;}
.h20{height:23.672017pt;}
.h1c{height:23.672018pt;}
.h10{height:27.026667pt;}
.h17{height:27.716384pt;}
.h14{height:27.716385pt;}
.h15{height:27.716453pt;}
.h1d{height:34.012046pt;}
.h13{height:36.269482pt;}
.h1a{height:36.312160pt;}
.h1b{height:36.404165pt;}
.h7{height:42.063437pt;}
.hb{height:42.084375pt;}
.h19{height:43.307967pt;}
.h16{height:43.369304pt;}
.h18{height:43.399972pt;}
.h9{height:47.109375pt;}
.h11{height:47.406250pt;}
.h8{height:48.375000pt;}
.ha{height:52.134375pt;}
.hd{height:52.478750pt;}
.h21{height:53.535000pt;}
.hc{height:55.298750pt;}
.he{height:57.787500pt;}
.h2{height:62.812500pt;}
.h4{height:67.837500pt;}
.h6{height:68.916875pt;}
.h3{height:89.193750pt;}
.h12{height:149.503868pt;}
.hf{height:337.813333pt;}
.h5{height:990.386587pt;}
.h0{height:990.400000pt;}
.h1{height:990.666667pt;}
.w11{width:27.701469pt;}
.wd{width:28.303239pt;}
.wf{width:28.905009pt;}
.we{width:28.925067pt;}
.w10{width:29.526837pt;}
.wb{width:30.128607pt;}
.w8{width:30.730377pt;}
.wc{width:31.913857pt;}
.wa{width:32.515627pt;}
.w7{width:34.922706pt;}
.w9{width:34.942765pt;}
.w5{width:38.553384pt;}
.w12{width:47.579930pt;}
.w3{width:311.586667pt;}
.w6{width:596.353837pt;}
.w4{width:596.353841pt;}
.w2{width:725.740000pt;}
.w0{width:725.760000pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.xd{left:1.203540pt;}
.xf{left:2.407079pt;}
.x17{left:4.212389pt;}
.x14{left:6.041769pt;}
.xb{left:7.200000pt;}
.x11{left:8.424777pt;}
.x12{left:10.230087pt;}
.x16{left:12.051443pt;}
.x22{left:24.090851pt;}
.x8{left:49.120000pt;}
.x2{left:50.720000pt;}
.x4{left:56.960000pt;}
.x9{left:64.960000pt;}
.x25{left:68.000000pt;}
.x24{left:86.730372pt;}
.x7{left:90.592000pt;}
.x23{left:123.483157pt;}
.xe{left:134.912071pt;}
.x10{left:138.543447pt;}
.x1{left:160.186667pt;}
.x3{left:228.386667pt;}
.x5{left:237.966667pt;}
.xa{left:241.186667pt;}
.x6{left:245.986667pt;}
.x13{left:281.278524pt;}
.x15{left:312.618694pt;}
.x18{left:348.163228pt;}
.xc{left:360.706667pt;}
.x19{left:381.276612pt;}
.x1a{left:412.608758pt;}
.x1b{left:443.339134pt;}
.x1c{left:475.858772pt;}
.x1d{left:506.589148pt;}
.x1e{left:535.490144pt;}
.x1f{left:565.016980pt;}
.x20{left:594.519746pt;}
.x21{left:624.656375pt;}
}




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