
    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_0f422db24838e08e86134c0c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.012207;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_7a5c6c1ec494759bffc6f643.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_5b4f30d02ac72e6b35694431.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187012;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_68b04f79d3c6a662b13fa2c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008301;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_e3d50a0fffd792c4d9c5a995.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_3cf7b8fb90ff96600891140f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.693848;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_826233390eb31ad9047897f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.896973;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_4ea2428c32a2415be3d001fe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.693848;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_056d1b46ced64abcbe6bb218.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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_e2bafc9ca3d870882b356272.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.763672;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);}
.vb{vertical-align:-21.600000px;}
.v7{vertical-align:-8.400000px;}
.ve{vertical-align:-7.200000px;}
.v2{vertical-align:-4.200000px;}
.v5{vertical-align:-3.000000px;}
.v3{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.200000px;}
.v9{vertical-align:14.400000px;}
.v6{vertical-align:17.400000px;}
.vd{vertical-align:19.800000px;}
.vc{vertical-align:25.800000px;}
.va{vertical-align:33.000000px;}
.v8{vertical-align:59.400000px;}
.v4{vertical-align:80.400000px;}
.ls9{letter-spacing:-9.000000px;}
.lsb{letter-spacing:-6.000000px;}
.ls7{letter-spacing:-3.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:4.800000px;}
.lse{letter-spacing:4.860000px;}
.lsa{letter-spacing:6.000000px;}
.ls3{letter-spacing:6.060000px;}
.lsc{letter-spacing:9.000000px;}
.ls8{letter-spacing:15.000000px;}
.ls2{letter-spacing:16.344000px;}
.ls1{letter-spacing:18.780000px;}
.lsd{letter-spacing:20.580000px;}
.ls5{letter-spacing:22.632000px;}
.ls0{letter-spacing:153.300000px;}
.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;}
}
.ws1f{word-spacing:-52.500000px;}
.ws2{word-spacing:-38.364000px;}
.ws23{word-spacing:-31.152000px;}
.ws27{word-spacing:-27.072000px;}
.ws21{word-spacing:-19.500000px;}
.ws4{word-spacing:-18.072000px;}
.ws26{word-spacing:-17.700000px;}
.ws0{word-spacing:-16.992000px;}
.wse{word-spacing:-16.500000px;}
.ws1c{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.250000px;}
.ws12{word-spacing:-13.992000px;}
.ws15{word-spacing:-13.740000px;}
.ws1e{word-spacing:-10.800000px;}
.ws1d{word-spacing:-7.200000px;}
.ws1b{word-spacing:-5.253000px;}
.ws24{word-spacing:-5.247000px;}
.ws18{word-spacing:-3.744000px;}
.ws25{word-spacing:-0.048000px;}
.ws22{word-spacing:0.000000px;}
.ws1{word-spacing:2.088000px;}
.ws14{word-spacing:18.864000px;}
.ws6{word-spacing:30.168000px;}
.ws10{word-spacing:30.192000px;}
.ws16{word-spacing:34.344000px;}
.ws13{word-spacing:40.176000px;}
.ws5{word-spacing:42.312000px;}
.ws20{word-spacing:44.352000px;}
.wsd{word-spacing:48.552000px;}
.ws11{word-spacing:50.904000px;}
.ws9{word-spacing:53.736000px;}
.ws7{word-spacing:53.904000px;}
.ws3{word-spacing:60.240000px;}
.ws8{word-spacing:63.096000px;}
.wsa{word-spacing:68.280000px;}
.ws1a{word-spacing:70.848000px;}
.wsf{word-spacing:72.336000px;}
.ws19{word-spacing:76.272000px;}
.wsb{word-spacing:106.008000px;}
.ws17{word-spacing:108.960000px;}
._34{margin-left:-34.239000px;}
._18{margin-left:-30.930000px;}
._2a{margin-left:-28.584000px;}
._1a{margin-left:-26.628000px;}
._2f{margin-left:-24.264000px;}
._23{margin-left:-23.091000px;}
._6{margin-left:-21.960000px;}
._1d{margin-left:-19.470000px;}
._27{margin-left:-18.048000px;}
._1e{margin-left:-16.440000px;}
._36{margin-left:-15.396000px;}
._24{margin-left:-14.262000px;}
._30{margin-left:-13.179000px;}
._3{margin-left:-12.168000px;}
._16{margin-left:-10.725000px;}
._22{margin-left:-9.528000px;}
._5{margin-left:-8.019000px;}
._11{margin-left:-5.976000px;}
._4{margin-left:-4.851000px;}
._12{margin-left:-3.672000px;}
._2{margin-left:-2.448000px;}
._13{margin-left:-1.197000px;}
._f{width:1.368000px;}
._e{width:3.312000px;}
._1{width:4.944000px;}
._0{width:6.912000px;}
._a{width:7.980000px;}
._9{width:9.960000px;}
._2b{width:10.977000px;}
._20{width:12.126000px;}
._b{width:13.320000px;}
._14{width:14.547000px;}
._8{width:15.840000px;}
._19{width:17.826000px;}
._1b{width:19.206000px;}
._2c{width:20.952000px;}
._15{width:22.524000px;}
._17{width:23.535000px;}
._28{width:24.744000px;}
._2e{width:25.848000px;}
._1c{width:27.738000px;}
._1f{width:29.910000px;}
._d{width:31.680000px;}
._2d{width:33.600000px;}
._c{width:35.220000px;}
._35{width:36.360000px;}
._10{width:38.880000px;}
._7{width:41.772000px;}
._31{width:44.025000px;}
._29{width:52.383000px;}
._25{width:55.173000px;}
._21{width:98.874000px;}
._32{width:109.248000px;}
._38{width:112.017000px;}
._37{width:114.060000px;}
._26{width:121.161000px;}
._33{width:127.170000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.000000px;}
.fsa{font-size:36.000000px;}
.fse{font-size:39.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs8{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fsc{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fsd{font-size:75.000000px;}
.fs9{font-size:84.000000px;}
.fs2{font-size:99.000000px;}
.fs4{font-size:117.000000px;}
.fs0{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:27.435000px;}
.y6d{bottom:34.935000px;}
.y6c{bottom:70.185000px;}
.y6b{bottom:77.835000px;}
.y6a{bottom:165.585000px;}
.y9f{bottom:166.635000px;}
.y38{bottom:169.635000px;}
.y69{bottom:187.185000px;}
.y9e{bottom:187.935000px;}
.y37{bottom:190.785000px;}
.y68{bottom:208.485000px;}
.y9d{bottom:209.535000px;}
.y36{bottom:212.085000px;}
.y67{bottom:229.635000px;}
.y9c{bottom:230.385000px;}
.y35{bottom:232.935000px;}
.y66{bottom:250.635000px;}
.y9b{bottom:251.685000px;}
.y34{bottom:254.535000px;}
.y65{bottom:271.785000px;}
.y9a{bottom:272.535000px;}
.y33{bottom:275.385000px;}
.y64{bottom:292.635000px;}
.y99{bottom:293.835000px;}
.y32{bottom:296.685000px;}
.y3e{bottom:305.685000px;}
.y63{bottom:313.935000px;}
.y98{bottom:314.685000px;}
.y31{bottom:317.535000px;}
.y62{bottom:335.235000px;}
.y97{bottom:335.835000px;}
.y30{bottom:338.835000px;}
.y61{bottom:356.085000px;}
.y96{bottom:357.135000px;}
.y2f{bottom:359.985000px;}
.y60{bottom:377.685000px;}
.y95{bottom:378.435000px;}
.y2e{bottom:380.835000px;}
.y5f{bottom:398.235000px;}
.y94{bottom:399.585000px;}
.y2d{bottom:402.135000px;}
.y3b{bottom:412.935000px;}
.y5e{bottom:419.385000px;}
.y93{bottom:420.435000px;}
.y2c{bottom:422.985000px;}
.y3a{bottom:425.835000px;}
.y39{bottom:431.685000px;}
.y5d{bottom:440.685000px;}
.y92{bottom:441.585000px;}
.y2b{bottom:444.585000px;}
.y5c{bottom:461.835000px;}
.y91{bottom:462.885000px;}
.y2a{bottom:465.435000px;}
.y29{bottom:481.035000px;}
.y5b{bottom:483.135000px;}
.y90{bottom:484.185000px;}
.y5a{bottom:504.435000px;}
.y8f{bottom:505.485000px;}
.y28{bottom:507.585000px;}
.y59{bottom:525.585000px;}
.y8e{bottom:526.335000px;}
.y27{bottom:528.135000px;}
.y26{bottom:529.185000px;}
.y25{bottom:545.385000px;}
.y58{bottom:546.885000px;}
.y8d{bottom:547.635000px;}
.y24{bottom:550.485000px;}
.y57{bottom:568.035000px;}
.y8c{bottom:568.935000px;}
.y23{bottom:570.585000px;}
.y21{bottom:571.635000px;}
.y22{bottom:580.635000px;}
.y56{bottom:589.035000px;}
.y8b{bottom:590.085000px;}
.y20{bottom:592.185000px;}
.y55{bottom:610.635000px;}
.y8a{bottom:611.235000px;}
.y1f{bottom:614.235000px;}
.y54{bottom:631.035000px;}
.y89{bottom:632.235000px;}
.y1e{bottom:635.085000px;}
.y53{bottom:652.635000px;}
.y88{bottom:653.385000px;}
.y1d{bottom:656.235000px;}
.y1c{bottom:672.135000px;}
.y52{bottom:673.635000px;}
.y87{bottom:674.685000px;}
.y51{bottom:694.785000px;}
.y86{bottom:695.535000px;}
.y1b{bottom:698.085000px;}
.y50{bottom:716.085000px;}
.y85{bottom:716.835000px;}
.y1a{bottom:718.935000px;}
.y19{bottom:719.685000px;}
.y3d{bottom:724.635000px;}
.y4f{bottom:737.235000px;}
.y84{bottom:737.685000px;}
.y18{bottom:740.835000px;}
.y4e{bottom:758.535000px;}
.y83{bottom:759.285000px;}
.yb0{bottom:759.585000px;}
.y17{bottom:761.835000px;}
.y4d{bottom:779.085000px;}
.yaf{bottom:779.385000px;}
.y82{bottom:780.135000px;}
.y16{bottom:783.435000px;}
.y4c{bottom:800.985000px;}
.yae{bottom:801.435000px;}
.y81{bottom:801.735000px;}
.y15{bottom:804.585000px;}
.y4b{bottom:822.135000px;}
.yad{bottom:822.585000px;}
.y80{bottom:823.035000px;}
.y14{bottom:826.185000px;}
.y4a{bottom:843.435000px;}
.yac{bottom:843.885000px;}
.y7f{bottom:844.185000px;}
.y13{bottom:847.035000px;}
.y49{bottom:864.735000px;}
.yab{bottom:865.035000px;}
.y7e{bottom:865.485000px;}
.y12{bottom:868.335000px;}
.y48{bottom:886.035000px;}
.yaa{bottom:886.635000px;}
.y7d{bottom:886.785000px;}
.y11{bottom:889.635000px;}
.y47{bottom:907.635000px;}
.y7c{bottom:907.935000px;}
.y10{bottom:910.785000px;}
.y7{bottom:927.735000px;}
.y46{bottom:928.485000px;}
.y7b{bottom:929.085000px;}
.ya9{bottom:929.235000px;}
.yf{bottom:931.635000px;}
.y45{bottom:949.635000px;}
.y7a{bottom:950.385000px;}
.ye{bottom:953.235000px;}
.y4{bottom:957.285000px;}
.y71{bottom:958.335000px;}
.y44{bottom:970.935000px;}
.y79{bottom:971.685000px;}
.yd{bottom:974.535000px;}
.y3{bottom:987.435000px;}
.y70{bottom:988.185000px;}
.y43{bottom:992.235000px;}
.y78{bottom:992.835000px;}
.yc{bottom:995.835000px;}
.y6f{bottom:1010.235000px;}
.y2{bottom:1010.535000px;}
.y42{bottom:1013.385000px;}
.y77{bottom:1014.135000px;}
.yb{bottom:1016.685000px;}
.y1{bottom:1027.785000px;}
.y41{bottom:1033.935000px;}
.y76{bottom:1034.985000px;}
.ya8{bottom:1035.285000px;}
.ya{bottom:1037.835000px;}
.y40{bottom:1055.535000px;}
.y75{bottom:1055.835000px;}
.ya7{bottom:1056.585000px;}
.ya6{bottom:1077.885000px;}
.y74{bottom:1078.935000px;}
.y9{bottom:1079.685000px;}
.y3f{bottom:1097.985000px;}
.y73{bottom:1098.735000px;}
.ya5{bottom:1099.035000px;}
.y8{bottom:1100.535000px;}
.ya4{bottom:1120.035000px;}
.ya3{bottom:1141.185000px;}
.y3c{bottom:1147.335000px;}
.ya2{bottom:1162.485000px;}
.y6{bottom:1171.785000px;}
.y72{bottom:1172.235000px;}
.ya1{bottom:1184.835000px;}
.y5{bottom:1201.035000px;}
.ya0{bottom:1205.235000px;}
.h13{height:21.714844px;}
.h12{height:27.000000px;}
.h15{height:27.098145px;}
.h6{height:43.798828px;}
.h17{height:45.996094px;}
.hc{height:51.572754px;}
.h7{height:55.195312px;}
.h19{height:57.495117px;}
.hd{height:59.715820px;}
.h14{height:60.172852px;}
.h3{height:62.789062px;}
.h4{height:65.144531px;}
.h18{height:65.405273px;}
.h11{height:71.372754px;}
.he{height:74.115820px;}
.h5{height:75.893555px;}
.ha{height:77.115820px;}
.h8{height:81.294434px;}
.hf{height:85.324219px;}
.h10{height:85.515820px;}
.h2{height:101.191406px;}
.hb{height:114.595313px;}
.h16{height:115.113281px;}
.h9{height:143.189062px;}
.h0{height:1310.025000px;}
.h1{height:1310.250000px;}
.w0{width:912.600000px;}
.w1{width:912.750000px;}
.x0{left:0.000000px;}
.x2{left:22.650000px;}
.x3{left:24.750000px;}
.x1{left:39.150000px;}
.x4{left:122.850000px;}
.x6{left:125.550000px;}
.x5{left:157.650000px;}
.x27{left:307.050000px;}
.x7{left:312.150000px;}
.x9{left:313.200000px;}
.x15{left:321.750000px;}
.x14{left:323.550000px;}
.x13{left:324.750000px;}
.xe{left:325.800000px;}
.xc{left:327.150000px;}
.xb{left:328.350000px;}
.xa{left:329.700000px;}
.x8{left:330.750000px;}
.x29{left:333.450000px;}
.x28{left:362.850000px;}
.x10{left:363.900000px;}
.x11{left:364.950000px;}
.xd{left:370.350000px;}
.x12{left:378.000000px;}
.xf{left:389.250000px;}
.x16{left:417.600000px;}
.x19{left:445.650000px;}
.x18{left:468.000000px;}
.x1a{left:479.550000px;}
.x26{left:480.900000px;}
.x17{left:483.750000px;}
.x1b{left:485.250000px;}
.x1c{left:487.350000px;}
.x22{left:488.550000px;}
.x20{left:489.900000px;}
.x1f{left:490.950000px;}
.x21{left:492.150000px;}
.x25{left:493.500000px;}
.x1d{left:502.950000px;}
.x1e{left:511.500000px;}
.x23{left:513.300000px;}
.x24{left:515.850000px;}
@media print{
.vb{vertical-align:-19.200000pt;}
.v7{vertical-align:-7.466667pt;}
.ve{vertical-align:-6.400000pt;}
.v2{vertical-align:-3.733333pt;}
.v5{vertical-align:-2.666667pt;}
.v3{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.066667pt;}
.v9{vertical-align:12.800000pt;}
.v6{vertical-align:15.466667pt;}
.vd{vertical-align:17.600000pt;}
.vc{vertical-align:22.933333pt;}
.va{vertical-align:29.333333pt;}
.v8{vertical-align:52.800000pt;}
.v4{vertical-align:71.466667pt;}
.ls9{letter-spacing:-8.000000pt;}
.lsb{letter-spacing:-5.333333pt;}
.ls7{letter-spacing:-2.666667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:4.266667pt;}
.lse{letter-spacing:4.320000pt;}
.lsa{letter-spacing:5.333333pt;}
.ls3{letter-spacing:5.386667pt;}
.lsc{letter-spacing:8.000000pt;}
.ls8{letter-spacing:13.333333pt;}
.ls2{letter-spacing:14.528000pt;}
.ls1{letter-spacing:16.693333pt;}
.lsd{letter-spacing:18.293333pt;}
.ls5{letter-spacing:20.117333pt;}
.ls0{letter-spacing:136.266667pt;}
.ws1f{word-spacing:-46.666667pt;}
.ws2{word-spacing:-34.101333pt;}
.ws23{word-spacing:-27.690667pt;}
.ws27{word-spacing:-24.064000pt;}
.ws21{word-spacing:-17.333333pt;}
.ws4{word-spacing:-16.064000pt;}
.ws26{word-spacing:-15.733333pt;}
.ws0{word-spacing:-15.104000pt;}
.wse{word-spacing:-14.666667pt;}
.ws1c{word-spacing:-13.333333pt;}
.wsc{word-spacing:-12.666667pt;}
.ws12{word-spacing:-12.437333pt;}
.ws15{word-spacing:-12.213333pt;}
.ws1e{word-spacing:-9.600000pt;}
.ws1d{word-spacing:-6.400000pt;}
.ws1b{word-spacing:-4.669333pt;}
.ws24{word-spacing:-4.664000pt;}
.ws18{word-spacing:-3.328000pt;}
.ws25{word-spacing:-0.042667pt;}
.ws22{word-spacing:0.000000pt;}
.ws1{word-spacing:1.856000pt;}
.ws14{word-spacing:16.768000pt;}
.ws6{word-spacing:26.816000pt;}
.ws10{word-spacing:26.837333pt;}
.ws16{word-spacing:30.528000pt;}
.ws13{word-spacing:35.712000pt;}
.ws5{word-spacing:37.610667pt;}
.ws20{word-spacing:39.424000pt;}
.wsd{word-spacing:43.157333pt;}
.ws11{word-spacing:45.248000pt;}
.ws9{word-spacing:47.765333pt;}
.ws7{word-spacing:47.914667pt;}
.ws3{word-spacing:53.546667pt;}
.ws8{word-spacing:56.085333pt;}
.wsa{word-spacing:60.693333pt;}
.ws1a{word-spacing:62.976000pt;}
.wsf{word-spacing:64.298667pt;}
.ws19{word-spacing:67.797333pt;}
.wsb{word-spacing:94.229333pt;}
.ws17{word-spacing:96.853333pt;}
._34{margin-left:-30.434667pt;}
._18{margin-left:-27.493333pt;}
._2a{margin-left:-25.408000pt;}
._1a{margin-left:-23.669333pt;}
._2f{margin-left:-21.568000pt;}
._23{margin-left:-20.525333pt;}
._6{margin-left:-19.520000pt;}
._1d{margin-left:-17.306667pt;}
._27{margin-left:-16.042667pt;}
._1e{margin-left:-14.613333pt;}
._36{margin-left:-13.685333pt;}
._24{margin-left:-12.677333pt;}
._30{margin-left:-11.714667pt;}
._3{margin-left:-10.816000pt;}
._16{margin-left:-9.533333pt;}
._22{margin-left:-8.469333pt;}
._5{margin-left:-7.128000pt;}
._11{margin-left:-5.312000pt;}
._4{margin-left:-4.312000pt;}
._12{margin-left:-3.264000pt;}
._2{margin-left:-2.176000pt;}
._13{margin-left:-1.064000pt;}
._f{width:1.216000pt;}
._e{width:2.944000pt;}
._1{width:4.394667pt;}
._0{width:6.144000pt;}
._a{width:7.093333pt;}
._9{width:8.853333pt;}
._2b{width:9.757333pt;}
._20{width:10.778667pt;}
._b{width:11.840000pt;}
._14{width:12.930667pt;}
._8{width:14.080000pt;}
._19{width:15.845333pt;}
._1b{width:17.072000pt;}
._2c{width:18.624000pt;}
._15{width:20.021333pt;}
._17{width:20.920000pt;}
._28{width:21.994667pt;}
._2e{width:22.976000pt;}
._1c{width:24.656000pt;}
._1f{width:26.586667pt;}
._d{width:28.160000pt;}
._2d{width:29.866667pt;}
._c{width:31.306667pt;}
._35{width:32.320000pt;}
._10{width:34.560000pt;}
._7{width:37.130667pt;}
._31{width:39.133333pt;}
._29{width:46.562667pt;}
._25{width:49.042667pt;}
._21{width:87.888000pt;}
._32{width:97.109333pt;}
._38{width:99.570667pt;}
._37{width:101.386667pt;}
._26{width:107.698667pt;}
._33{width:113.040000pt;}
.fsb{font-size:21.333333pt;}
.fsa{font-size:32.000000pt;}
.fse{font-size:34.666667pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs8{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fsc{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fsd{font-size:66.666667pt;}
.fs9{font-size:74.666667pt;}
.fs2{font-size:88.000000pt;}
.fs4{font-size:104.000000pt;}
.fs0{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:24.386667pt;}
.y6d{bottom:31.053333pt;}
.y6c{bottom:62.386667pt;}
.y6b{bottom:69.186667pt;}
.y6a{bottom:147.186667pt;}
.y9f{bottom:148.120000pt;}
.y38{bottom:150.786667pt;}
.y69{bottom:166.386667pt;}
.y9e{bottom:167.053333pt;}
.y37{bottom:169.586667pt;}
.y68{bottom:185.320000pt;}
.y9d{bottom:186.253333pt;}
.y36{bottom:188.520000pt;}
.y67{bottom:204.120000pt;}
.y9c{bottom:204.786667pt;}
.y35{bottom:207.053333pt;}
.y66{bottom:222.786667pt;}
.y9b{bottom:223.720000pt;}
.y34{bottom:226.253333pt;}
.y65{bottom:241.586667pt;}
.y9a{bottom:242.253333pt;}
.y33{bottom:244.786667pt;}
.y64{bottom:260.120000pt;}
.y99{bottom:261.186667pt;}
.y32{bottom:263.720000pt;}
.y3e{bottom:271.720000pt;}
.y63{bottom:279.053333pt;}
.y98{bottom:279.720000pt;}
.y31{bottom:282.253333pt;}
.y62{bottom:297.986667pt;}
.y97{bottom:298.520000pt;}
.y30{bottom:301.186667pt;}
.y61{bottom:316.520000pt;}
.y96{bottom:317.453333pt;}
.y2f{bottom:319.986667pt;}
.y60{bottom:335.720000pt;}
.y95{bottom:336.386667pt;}
.y2e{bottom:338.520000pt;}
.y5f{bottom:353.986667pt;}
.y94{bottom:355.186667pt;}
.y2d{bottom:357.453333pt;}
.y3b{bottom:367.053333pt;}
.y5e{bottom:372.786667pt;}
.y93{bottom:373.720000pt;}
.y2c{bottom:375.986667pt;}
.y3a{bottom:378.520000pt;}
.y39{bottom:383.720000pt;}
.y5d{bottom:391.720000pt;}
.y92{bottom:392.520000pt;}
.y2b{bottom:395.186667pt;}
.y5c{bottom:410.520000pt;}
.y91{bottom:411.453333pt;}
.y2a{bottom:413.720000pt;}
.y29{bottom:427.586667pt;}
.y5b{bottom:429.453333pt;}
.y90{bottom:430.386667pt;}
.y5a{bottom:448.386667pt;}
.y8f{bottom:449.320000pt;}
.y28{bottom:451.186667pt;}
.y59{bottom:467.186667pt;}
.y8e{bottom:467.853333pt;}
.y27{bottom:469.453333pt;}
.y26{bottom:470.386667pt;}
.y25{bottom:484.786667pt;}
.y58{bottom:486.120000pt;}
.y8d{bottom:486.786667pt;}
.y24{bottom:489.320000pt;}
.y57{bottom:504.920000pt;}
.y8c{bottom:505.720000pt;}
.y23{bottom:507.186667pt;}
.y21{bottom:508.120000pt;}
.y22{bottom:516.120000pt;}
.y56{bottom:523.586667pt;}
.y8b{bottom:524.520000pt;}
.y20{bottom:526.386667pt;}
.y55{bottom:542.786667pt;}
.y8a{bottom:543.320000pt;}
.y1f{bottom:545.986667pt;}
.y54{bottom:560.920000pt;}
.y89{bottom:561.986667pt;}
.y1e{bottom:564.520000pt;}
.y53{bottom:580.120000pt;}
.y88{bottom:580.786667pt;}
.y1d{bottom:583.320000pt;}
.y1c{bottom:597.453333pt;}
.y52{bottom:598.786667pt;}
.y87{bottom:599.720000pt;}
.y51{bottom:617.586667pt;}
.y86{bottom:618.253333pt;}
.y1b{bottom:620.520000pt;}
.y50{bottom:636.520000pt;}
.y85{bottom:637.186667pt;}
.y1a{bottom:639.053333pt;}
.y19{bottom:639.720000pt;}
.y3d{bottom:644.120000pt;}
.y4f{bottom:655.320000pt;}
.y84{bottom:655.720000pt;}
.y18{bottom:658.520000pt;}
.y4e{bottom:674.253333pt;}
.y83{bottom:674.920000pt;}
.yb0{bottom:675.186667pt;}
.y17{bottom:677.186667pt;}
.y4d{bottom:692.520000pt;}
.yaf{bottom:692.786667pt;}
.y82{bottom:693.453333pt;}
.y16{bottom:696.386667pt;}
.y4c{bottom:711.986667pt;}
.yae{bottom:712.386667pt;}
.y81{bottom:712.653333pt;}
.y15{bottom:715.186667pt;}
.y4b{bottom:730.786667pt;}
.yad{bottom:731.186667pt;}
.y80{bottom:731.586667pt;}
.y14{bottom:734.386667pt;}
.y4a{bottom:749.720000pt;}
.yac{bottom:750.120000pt;}
.y7f{bottom:750.386667pt;}
.y13{bottom:752.920000pt;}
.y49{bottom:768.653333pt;}
.yab{bottom:768.920000pt;}
.y7e{bottom:769.320000pt;}
.y12{bottom:771.853333pt;}
.y48{bottom:787.586667pt;}
.yaa{bottom:788.120000pt;}
.y7d{bottom:788.253333pt;}
.y11{bottom:790.786667pt;}
.y47{bottom:806.786667pt;}
.y7c{bottom:807.053333pt;}
.y10{bottom:809.586667pt;}
.y7{bottom:824.653333pt;}
.y46{bottom:825.320000pt;}
.y7b{bottom:825.853333pt;}
.ya9{bottom:825.986667pt;}
.yf{bottom:828.120000pt;}
.y45{bottom:844.120000pt;}
.y7a{bottom:844.786667pt;}
.ye{bottom:847.320000pt;}
.y4{bottom:850.920000pt;}
.y71{bottom:851.853333pt;}
.y44{bottom:863.053333pt;}
.y79{bottom:863.720000pt;}
.yd{bottom:866.253333pt;}
.y3{bottom:877.720000pt;}
.y70{bottom:878.386667pt;}
.y43{bottom:881.986667pt;}
.y78{bottom:882.520000pt;}
.yc{bottom:885.186667pt;}
.y6f{bottom:897.986667pt;}
.y2{bottom:898.253333pt;}
.y42{bottom:900.786667pt;}
.y77{bottom:901.453333pt;}
.yb{bottom:903.720000pt;}
.y1{bottom:913.586667pt;}
.y41{bottom:919.053333pt;}
.y76{bottom:919.986667pt;}
.ya8{bottom:920.253333pt;}
.ya{bottom:922.520000pt;}
.y40{bottom:938.253333pt;}
.y75{bottom:938.520000pt;}
.ya7{bottom:939.186667pt;}
.ya6{bottom:958.120000pt;}
.y74{bottom:959.053333pt;}
.y9{bottom:959.720000pt;}
.y3f{bottom:975.986667pt;}
.y73{bottom:976.653333pt;}
.ya5{bottom:976.920000pt;}
.y8{bottom:978.253333pt;}
.ya4{bottom:995.586667pt;}
.ya3{bottom:1014.386667pt;}
.y3c{bottom:1019.853333pt;}
.ya2{bottom:1033.320000pt;}
.y6{bottom:1041.586667pt;}
.y72{bottom:1041.986667pt;}
.ya1{bottom:1053.186667pt;}
.y5{bottom:1067.586667pt;}
.ya0{bottom:1071.320000pt;}
.h13{height:19.302083pt;}
.h12{height:24.000000pt;}
.h15{height:24.087240pt;}
.h6{height:38.932292pt;}
.h17{height:40.885417pt;}
.hc{height:45.842448pt;}
.h7{height:49.062500pt;}
.h19{height:51.106771pt;}
.hd{height:53.080729pt;}
.h14{height:53.486979pt;}
.h3{height:55.812500pt;}
.h4{height:57.906250pt;}
.h18{height:58.138021pt;}
.h11{height:63.442448pt;}
.he{height:65.880729pt;}
.h5{height:67.460938pt;}
.ha{height:68.547396pt;}
.h8{height:72.261719pt;}
.hf{height:75.843750pt;}
.h10{height:76.014063pt;}
.h2{height:89.947917pt;}
.hb{height:101.862500pt;}
.h16{height:102.322917pt;}
.h9{height:127.279167pt;}
.h0{height:1164.466667pt;}
.h1{height:1164.666667pt;}
.w0{width:811.200000pt;}
.w1{width:811.333333pt;}
.x0{left:0.000000pt;}
.x2{left:20.133333pt;}
.x3{left:22.000000pt;}
.x1{left:34.800000pt;}
.x4{left:109.200000pt;}
.x6{left:111.600000pt;}
.x5{left:140.133333pt;}
.x27{left:272.933333pt;}
.x7{left:277.466667pt;}
.x9{left:278.400000pt;}
.x15{left:286.000000pt;}
.x14{left:287.600000pt;}
.x13{left:288.666667pt;}
.xe{left:289.600000pt;}
.xc{left:290.800000pt;}
.xb{left:291.866667pt;}
.xa{left:293.066667pt;}
.x8{left:294.000000pt;}
.x29{left:296.400000pt;}
.x28{left:322.533333pt;}
.x10{left:323.466667pt;}
.x11{left:324.400000pt;}
.xd{left:329.200000pt;}
.x12{left:336.000000pt;}
.xf{left:346.000000pt;}
.x16{left:371.200000pt;}
.x19{left:396.133333pt;}
.x18{left:416.000000pt;}
.x1a{left:426.266667pt;}
.x26{left:427.466667pt;}
.x17{left:430.000000pt;}
.x1b{left:431.333333pt;}
.x1c{left:433.200000pt;}
.x22{left:434.266667pt;}
.x20{left:435.466667pt;}
.x1f{left:436.400000pt;}
.x21{left:437.466667pt;}
.x25{left:438.666667pt;}
.x1d{left:447.066667pt;}
.x1e{left:454.666667pt;}
.x23{left:456.266667pt;}
.x24{left:458.533333pt;}
}




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