
    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_36e188fa9bc616c44ed273e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_5b04c35a6458debf8e7a5d93.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_cdbd8cfbe253351162d83926.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.878418;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_cc83b46db835122a70ca1b0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.122070;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_781778313373b2e9dff1ff84.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_fa78bfdef7bc0b5680a942d8.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_693585aa0f2d93203ee13a90.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933000;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_e053d746419c33d242d65a71.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675293;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_c945bf68a458b8838351c2d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_e541c8c12c370c1a7477971e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.721000;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_a4bff616b0c4a64ae65c9814.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.721000;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);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls5{letter-spacing:-3.072000px;}
.ls6{letter-spacing:-1.518000px;}
.lsa{letter-spacing:-1.386000px;}
.ls2{letter-spacing:-1.188000px;}
.ls7{letter-spacing:-0.924000px;}
.lsb{letter-spacing:-0.726000px;}
.ls4{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.528000px;}
.lse{letter-spacing:-0.462000px;}
.ls10{letter-spacing:-0.324000px;}
.ls3{letter-spacing:-0.264000px;}
.lsd{letter-spacing:-0.198000px;}
.ls13{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.132000px;}
.ls11{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.594000px;}
.ls1{letter-spacing:2.640000px;}
.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:-18.984000px;}
.ws13{word-spacing:-13.992000px;}
.ws4{word-spacing:-13.794000px;}
.ws12{word-spacing:-13.728000px;}
.ws15{word-spacing:-13.464000px;}
.ws2{word-spacing:-13.266000px;}
.ws16{word-spacing:-13.140000px;}
.ws18{word-spacing:-12.150000px;}
.ws17{word-spacing:-12.096000px;}
.wsd{word-spacing:-10.956000px;}
.ws19{word-spacing:-10.800000px;}
.ws3{word-spacing:-8.426682px;}
.ws7{word-spacing:-2.640000px;}
.wsb{word-spacing:-0.066000px;}
.ws1c{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws1b{word-spacing:0.108000px;}
.ws14{word-spacing:0.198000px;}
.ws5{word-spacing:0.264000px;}
.ws1a{word-spacing:0.324000px;}
.wse{word-spacing:0.528000px;}
.ws9{word-spacing:0.660000px;}
.ws11{word-spacing:0.726000px;}
.wsc{word-spacing:0.858000px;}
.wsf{word-spacing:0.924000px;}
.ws10{word-spacing:1.386000px;}
.wsa{word-spacing:1.518000px;}
.ws8{word-spacing:2.640000px;}
.ws6{word-spacing:3.072000px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-5.359200px;}
._3{margin-left:-4.284000px;}
._7{margin-left:-3.000600px;}
._1{margin-left:-1.996800px;}
._4{width:1.577400px;}
._6{width:2.674800px;}
._0{width:5.587200px;}
.fc4{color:rgb(33,94,158);}
.fc3{color:rgb(0,92,103);}
.fc2{color:rgb(142,144,146);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:38.478000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y18{bottom:41.625000px;}
.y2f{bottom:74.020500px;}
.y6d{bottom:74.377500px;}
.y4f{bottom:85.482000px;}
.y13{bottom:99.795000px;}
.y2e{bottom:107.020500px;}
.y6c{bottom:107.377500px;}
.y4e{bottom:127.474500px;}
.y16{bottom:135.750000px;}
.y6b{bottom:140.377500px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y15{bottom:157.830000px;}
.y2d{bottom:158.022000px;}
.y4d{bottom:160.474500px;}
.y6a{bottom:173.377500px;}
.y2c{bottom:209.023500px;}
.y4c{bottom:211.476000px;}
.y69{bottom:224.379000px;}
.y2b{bottom:242.023500px;}
.y4b{bottom:244.476000px;}
.y68{bottom:257.379000px;}
.y2a{bottom:275.023500px;}
.y4a{bottom:277.476000px;}
.y67{bottom:290.379000px;}
.y29{bottom:308.023500px;}
.y49{bottom:310.476000px;}
.y66{bottom:323.379000px;}
.y28{bottom:341.023500px;}
.y48{bottom:343.476000px;}
.ya{bottom:344.680500px;}
.y65{bottom:356.379000px;}
.y27{bottom:374.023500px;}
.y47{bottom:376.476000px;}
.yd{bottom:386.490000px;}
.y64{bottom:389.379000px;}
.y9{bottom:395.689500px;}
.y26{bottom:407.023500px;}
.y46{bottom:409.476000px;}
.y63{bottom:422.379000px;}
.yb{bottom:434.850000px;}
.y96{bottom:437.037150px;}
.y25{bottom:440.023500px;}
.y45{bottom:442.476000px;}
.y8{bottom:446.698500px;}
.y95{bottom:455.032650px;}
.y62{bottom:455.377500px;}
.y24{bottom:473.023500px;}
.y44{bottom:475.476000px;}
.y10{bottom:488.055000px;}
.y61{bottom:488.377500px;}
.y94{bottom:491.037150px;}
.y7{bottom:497.707500px;}
.y43{bottom:508.476000px;}
.y93{bottom:509.032650px;}
.y60{bottom:521.377500px;}
.y23{bottom:524.025000px;}
.y7c{bottom:536.379000px;}
.y11{bottom:538.230000px;}
.y42{bottom:541.476000px;}
.y92{bottom:545.032650px;}
.y6{bottom:548.716500px;}
.y5f{bottom:554.377500px;}
.y22{bottom:557.025000px;}
.y7b{bottom:569.379000px;}
.y41{bottom:574.476000px;}
.y17{bottom:589.605000px;}
.y21{bottom:590.025000px;}
.y5{bottom:599.725500px;}
.y7a{bottom:602.379000px;}
.y5e{bottom:605.379000px;}
.y20{bottom:623.025000px;}
.y91{bottom:625.285350px;}
.y40{bottom:625.477500px;}
.ye{bottom:631.920000px;}
.y79{bottom:635.379000px;}
.y90{bottom:643.280850px;}
.y1f{bottom:656.025000px;}
.y5d{bottom:656.379000px;}
.y3f{bottom:658.477500px;}
.y8f{bottom:661.276350px;}
.y78{bottom:668.379000px;}
.y8e{bottom:679.271850px;}
.y1e{bottom:689.025000px;}
.y5c{bottom:689.379000px;}
.y3e{bottom:691.477500px;}
.y8d{bottom:697.267350px;}
.y77{bottom:701.379000px;}
.y8c{bottom:715.262850px;}
.y1d{bottom:722.025000px;}
.y5b{bottom:722.379000px;}
.y3d{bottom:724.477500px;}
.y76{bottom:734.377500px;}
.y8b{bottom:751.267350px;}
.y1c{bottom:755.025000px;}
.y5a{bottom:755.379000px;}
.y3c{bottom:757.477500px;}
.y75{bottom:767.377500px;}
.y4{bottom:778.225500px;}
.y8a{bottom:787.267350px;}
.y1b{bottom:788.025000px;}
.y59{bottom:788.379000px;}
.y3b{bottom:790.477500px;}
.y88{bottom:791.379000px;}
.y74{bottom:800.377500px;}
.y87{bottom:809.379000px;}
.y12{bottom:815.670000px;}
.y1a{bottom:821.025000px;}
.y58{bottom:821.379000px;}
.y3a{bottom:823.477500px;}
.y73{bottom:833.377500px;}
.y86{bottom:845.379000px;}
.y57{bottom:854.379000px;}
.y30{bottom:860.733150px;}
.y85{bottom:863.379000px;}
.y39{bottom:874.479000px;}
.y9f{bottom:875.250000px;}
.y72{bottom:884.379000px;}
.y56{bottom:887.379000px;}
.y9e{bottom:893.250000px;}
.y84{bottom:899.379000px;}
.y32{bottom:901.673400px;}
.y3{bottom:905.716500px;}
.y38{bottom:907.479000px;}
.y9d{bottom:911.250000px;}
.y83{bottom:917.379000px;}
.y55{bottom:920.379000px;}
.y9c{bottom:929.250000px;}
.y82{bottom:935.379000px;}
.y71{bottom:935.380500px;}
.y19{bottom:936.185100px;}
.y37{bottom:940.479000px;}
.y9b{bottom:947.250000px;}
.y2{bottom:964.228500px;}
.y9a{bottom:965.250000px;}
.y70{bottom:968.380500px;}
.y54{bottom:971.350500px;}
.y81{bottom:971.379000px;}
.y36{bottom:973.479000px;}
.y99{bottom:983.250000px;}
.y80{bottom:989.379000px;}
.y1{bottom:989.716500px;}
.y53{bottom:995.358000px;}
.y98{bottom:1001.250000px;}
.y6f{bottom:1001.380500px;}
.y31{bottom:1005.252150px;}
.y35{bottom:1006.479000px;}
.y97{bottom:1019.250000px;}
.y52{bottom:1019.365500px;}
.y7f{bottom:1025.379000px;}
.y6e{bottom:1034.380500px;}
.y34{bottom:1039.479000px;}
.y7e{bottom:1043.371500px;}
.y51{bottom:1043.373000px;}
.y89{bottom:1055.550000px;}
.y7d{bottom:1067.379000px;}
.y50{bottom:1067.380500px;}
.y33{bottom:1072.479000px;}
.h4{height:33.000000px;}
.h16{height:38.934000px;}
.h14{height:43.260000px;}
.ha{height:46.212891px;}
.h13{height:46.860000px;}
.hc{height:47.586000px;}
.hd{height:49.720638px;}
.h12{height:49.726638px;}
.h11{height:49.834638px;}
.he{height:58.044000px;}
.h3{height:58.406250px;}
.h15{height:59.640000px;}
.hf{height:66.336000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h10{height:84.375000px;}
.h7{height:115.215000px;}
.hb{height:126.562500px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w9{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:54.000000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xc{left:145.500000px;}
.x10{left:149.521500px;}
.xf{left:158.179650px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x11{left:280.021500px;}
.xb{left:311.862300px;}
.xd{left:410.112750px;}
.xe{left:764.557950px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls5{letter-spacing:-2.730667pt;}
.ls6{letter-spacing:-1.349333pt;}
.lsa{letter-spacing:-1.232000pt;}
.ls2{letter-spacing:-1.056000pt;}
.ls7{letter-spacing:-0.821333pt;}
.lsb{letter-spacing:-0.645333pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.469333pt;}
.lse{letter-spacing:-0.410667pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls3{letter-spacing:-0.234667pt;}
.lsd{letter-spacing:-0.176000pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.117333pt;}
.ls11{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.528000pt;}
.ls1{letter-spacing:2.346667pt;}
.ws0{word-spacing:-16.874667pt;}
.ws13{word-spacing:-12.437333pt;}
.ws4{word-spacing:-12.261333pt;}
.ws12{word-spacing:-12.202667pt;}
.ws15{word-spacing:-11.968000pt;}
.ws2{word-spacing:-11.792000pt;}
.ws16{word-spacing:-11.680000pt;}
.ws18{word-spacing:-10.800000pt;}
.ws17{word-spacing:-10.752000pt;}
.wsd{word-spacing:-9.738667pt;}
.ws19{word-spacing:-9.600000pt;}
.ws3{word-spacing:-7.490384pt;}
.ws7{word-spacing:-2.346667pt;}
.wsb{word-spacing:-0.058667pt;}
.ws1c{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.096000pt;}
.ws14{word-spacing:0.176000pt;}
.ws5{word-spacing:0.234667pt;}
.ws1a{word-spacing:0.288000pt;}
.wse{word-spacing:0.469333pt;}
.ws9{word-spacing:0.586667pt;}
.ws11{word-spacing:0.645333pt;}
.wsc{word-spacing:0.762667pt;}
.wsf{word-spacing:0.821333pt;}
.ws10{word-spacing:1.232000pt;}
.wsa{word-spacing:1.349333pt;}
.ws8{word-spacing:2.346667pt;}
.ws6{word-spacing:2.730667pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-4.763733pt;}
._3{margin-left:-3.808000pt;}
._7{margin-left:-2.667200pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.402133pt;}
._6{width:2.377600pt;}
._0{width:4.966400pt;}
.fs4{font-size:34.202667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y18{bottom:37.000000pt;}
.y2f{bottom:65.796000pt;}
.y6d{bottom:66.113333pt;}
.y4f{bottom:75.984000pt;}
.y13{bottom:88.706667pt;}
.y2e{bottom:95.129333pt;}
.y6c{bottom:95.446667pt;}
.y4e{bottom:113.310667pt;}
.y16{bottom:120.666667pt;}
.y6b{bottom:124.780000pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y15{bottom:140.293333pt;}
.y2d{bottom:140.464000pt;}
.y4d{bottom:142.644000pt;}
.y6a{bottom:154.113333pt;}
.y2c{bottom:185.798667pt;}
.y4c{bottom:187.978667pt;}
.y69{bottom:199.448000pt;}
.y2b{bottom:215.132000pt;}
.y4b{bottom:217.312000pt;}
.y68{bottom:228.781333pt;}
.y2a{bottom:244.465333pt;}
.y4a{bottom:246.645333pt;}
.y67{bottom:258.114667pt;}
.y29{bottom:273.798667pt;}
.y49{bottom:275.978667pt;}
.y66{bottom:287.448000pt;}
.y28{bottom:303.132000pt;}
.y48{bottom:305.312000pt;}
.ya{bottom:306.382667pt;}
.y65{bottom:316.781333pt;}
.y27{bottom:332.465333pt;}
.y47{bottom:334.645333pt;}
.yd{bottom:343.546667pt;}
.y64{bottom:346.114667pt;}
.y9{bottom:351.724000pt;}
.y26{bottom:361.798667pt;}
.y46{bottom:363.978667pt;}
.y63{bottom:375.448000pt;}
.yb{bottom:386.533333pt;}
.y96{bottom:388.477467pt;}
.y25{bottom:391.132000pt;}
.y45{bottom:393.312000pt;}
.y8{bottom:397.065333pt;}
.y95{bottom:404.473467pt;}
.y62{bottom:404.780000pt;}
.y24{bottom:420.465333pt;}
.y44{bottom:422.645333pt;}
.y10{bottom:433.826667pt;}
.y61{bottom:434.113333pt;}
.y94{bottom:436.477467pt;}
.y7{bottom:442.406667pt;}
.y43{bottom:451.978667pt;}
.y93{bottom:452.473467pt;}
.y60{bottom:463.446667pt;}
.y23{bottom:465.800000pt;}
.y7c{bottom:476.781333pt;}
.y11{bottom:478.426667pt;}
.y42{bottom:481.312000pt;}
.y92{bottom:484.473467pt;}
.y6{bottom:487.748000pt;}
.y5f{bottom:492.780000pt;}
.y22{bottom:495.133333pt;}
.y7b{bottom:506.114667pt;}
.y41{bottom:510.645333pt;}
.y17{bottom:524.093333pt;}
.y21{bottom:524.466667pt;}
.y5{bottom:533.089333pt;}
.y7a{bottom:535.448000pt;}
.y5e{bottom:538.114667pt;}
.y20{bottom:553.800000pt;}
.y91{bottom:555.809200pt;}
.y40{bottom:555.980000pt;}
.ye{bottom:561.706667pt;}
.y79{bottom:564.781333pt;}
.y90{bottom:571.805200pt;}
.y1f{bottom:583.133333pt;}
.y5d{bottom:583.448000pt;}
.y3f{bottom:585.313333pt;}
.y8f{bottom:587.801200pt;}
.y78{bottom:594.114667pt;}
.y8e{bottom:603.797200pt;}
.y1e{bottom:612.466667pt;}
.y5c{bottom:612.781333pt;}
.y3e{bottom:614.646667pt;}
.y8d{bottom:619.793200pt;}
.y77{bottom:623.448000pt;}
.y8c{bottom:635.789200pt;}
.y1d{bottom:641.800000pt;}
.y5b{bottom:642.114667pt;}
.y3d{bottom:643.980000pt;}
.y76{bottom:652.780000pt;}
.y8b{bottom:667.793200pt;}
.y1c{bottom:671.133333pt;}
.y5a{bottom:671.448000pt;}
.y3c{bottom:673.313333pt;}
.y75{bottom:682.113333pt;}
.y4{bottom:691.756000pt;}
.y8a{bottom:699.793200pt;}
.y1b{bottom:700.466667pt;}
.y59{bottom:700.781333pt;}
.y3b{bottom:702.646667pt;}
.y88{bottom:703.448000pt;}
.y74{bottom:711.446667pt;}
.y87{bottom:719.448000pt;}
.y12{bottom:725.040000pt;}
.y1a{bottom:729.800000pt;}
.y58{bottom:730.114667pt;}
.y3a{bottom:731.980000pt;}
.y73{bottom:740.780000pt;}
.y86{bottom:751.448000pt;}
.y57{bottom:759.448000pt;}
.y30{bottom:765.096133pt;}
.y85{bottom:767.448000pt;}
.y39{bottom:777.314667pt;}
.y9f{bottom:778.000000pt;}
.y72{bottom:786.114667pt;}
.y56{bottom:788.781333pt;}
.y9e{bottom:794.000000pt;}
.y84{bottom:799.448000pt;}
.y32{bottom:801.487467pt;}
.y3{bottom:805.081333pt;}
.y38{bottom:806.648000pt;}
.y9d{bottom:810.000000pt;}
.y83{bottom:815.448000pt;}
.y55{bottom:818.114667pt;}
.y9c{bottom:826.000000pt;}
.y82{bottom:831.448000pt;}
.y71{bottom:831.449333pt;}
.y19{bottom:832.164533pt;}
.y37{bottom:835.981333pt;}
.y9b{bottom:842.000000pt;}
.y2{bottom:857.092000pt;}
.y9a{bottom:858.000000pt;}
.y70{bottom:860.782667pt;}
.y54{bottom:863.422667pt;}
.y81{bottom:863.448000pt;}
.y36{bottom:865.314667pt;}
.y99{bottom:874.000000pt;}
.y80{bottom:879.448000pt;}
.y1{bottom:879.748000pt;}
.y53{bottom:884.762667pt;}
.y98{bottom:890.000000pt;}
.y6f{bottom:890.116000pt;}
.y31{bottom:893.557467pt;}
.y35{bottom:894.648000pt;}
.y97{bottom:906.000000pt;}
.y52{bottom:906.102667pt;}
.y7f{bottom:911.448000pt;}
.y6e{bottom:919.449333pt;}
.y34{bottom:923.981333pt;}
.y7e{bottom:927.441333pt;}
.y51{bottom:927.442667pt;}
.y89{bottom:938.266667pt;}
.y7d{bottom:948.781333pt;}
.y50{bottom:948.782667pt;}
.y33{bottom:953.314667pt;}
.h4{height:29.333333pt;}
.h16{height:34.608000pt;}
.h14{height:38.453333pt;}
.ha{height:41.078125pt;}
.h13{height:41.653333pt;}
.hc{height:42.298667pt;}
.hd{height:44.196123pt;}
.h12{height:44.201456pt;}
.h11{height:44.297456pt;}
.he{height:51.594667pt;}
.h3{height:51.916667pt;}
.h15{height:53.013333pt;}
.hf{height:58.965333pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h10{height:75.000000pt;}
.h7{height:102.413333pt;}
.hb{height:112.500000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w9{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:48.000000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xc{left:129.333333pt;}
.x10{left:132.908000pt;}
.xf{left:140.604133pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x11{left:248.908000pt;}
.xb{left:277.210933pt;}
.xd{left:364.544667pt;}
.xe{left:679.607067pt;}
}




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