
    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_af64e0bc9c2a2e3a86a60f82.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c0b4faac56df7d8d9fd4c308.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919434;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_b6e4205b0309bce16a240fb0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_969c13d2ff7e470e27d8a36d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912598;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_c8652f71b8b73ea62f350628.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912598;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_42f3ea5b05fa11de016959f3.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e09ada621193a2cf17bc5325.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_28549515e7ed90bc3eaee31d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.110352;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_c6f3b5b86365488d696f3bba.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.110352;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_751773d1024ea8460fff5203.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919922;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_b49fa9ff3592ef9502cd1710.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_451f93b266e3b966b2798561.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_086de18dce9403fecccb6a9d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912598;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:ffe;src:url('chunks/assets/font_d55f9ddab85813fa6d45cbc4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912598;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:fff;src:url('chunks/assets/font_c8544ee3294801ce677be978.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e09ada621193a2cf17bc5325.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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:ff11;src:url('chunks/assets/font_46ddf0cc5ee76775d9936e17.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.087402;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:ff12;src:url('chunks/assets/font_a4824371dc08017a98d19168.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.037598;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:ff13;src:url('chunks/assets/font_71fa66652f882fffeb007b6a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.919922;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:ff14;src:url('chunks/assets/font_c5bee8d3e8c83fc5813757cd.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.037598;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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls1c{letter-spacing:-1.236000px;}
.ls1d{letter-spacing:-1.170000px;}
.ls10{letter-spacing:-0.340800px;}
.ls15{letter-spacing:-0.262800px;}
.ls1b{letter-spacing:-0.226200px;}
.ls3{letter-spacing:-0.175200px;}
.ls12{letter-spacing:-0.172800px;}
.ls5{letter-spacing:-0.157200px;}
.lsf{letter-spacing:-0.085200px;}
.ls1a{letter-spacing:-0.010800px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.020880px;}
.lsa{letter-spacing:0.060480px;}
.ls14{letter-spacing:0.063600px;}
.ls18{letter-spacing:0.078000px;}
.ls11{letter-spacing:0.190800px;}
.ls1e{letter-spacing:0.195000px;}
.ls13{letter-spacing:0.211800px;}
.ls16{letter-spacing:0.258000px;}
.ls7{letter-spacing:0.319680px;}
.ls8{letter-spacing:0.425400px;}
.lsd{letter-spacing:0.471360px;}
.ls1{letter-spacing:0.540000px;}
.lse{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.696000px;}
.lsc{letter-spacing:0.708000px;}
.ls19{letter-spacing:0.709200px;}
.ls17{letter-spacing:0.744000px;}
.lsb{letter-spacing:0.780480px;}
.ls9{letter-spacing:0.786000px;}
.ls1f{letter-spacing:0.918000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws2{word-spacing:-13.147200px;}
.ws3{word-spacing:-12.990000px;}
.ws1{word-spacing:-12.972000px;}
.ws10{word-spacing:-11.977200px;}
.ws5{word-spacing:-10.612800px;}
.ws4{word-spacing:-10.527600px;}
.ws6{word-spacing:-10.272000px;}
.ws12{word-spacing:-0.977760px;}
.wsc{word-spacing:-0.317760px;}
.ws8{word-spacing:-0.271560px;}
.ws11{word-spacing:-0.254760px;}
.wsd{word-spacing:-0.137760px;}
.ws9{word-spacing:-0.072720px;}
.ws7{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.166440px;}
.wsa{word-spacing:0.203040px;}
.wsf{word-spacing:1.176240px;}
._6{margin-left:-9.640080px;}
._9{margin-left:-7.750080px;}
._d{margin-left:-6.702480px;}
._8{margin-left:-5.378400px;}
._a{margin-left:-3.962880px;}
._5{margin-left:-2.748960px;}
._0{margin-left:-1.126080px;}
._1{width:1.195200px;}
._4{width:3.132960px;}
._2{width:4.582800px;}
._3{width:5.885280px;}
._e{width:7.252320px;}
._11{width:8.656560px;}
._17{width:10.697040px;}
._18{width:11.892240px;}
._1b{width:13.615920px;}
._7{width:15.059520px;}
._b{width:16.075440px;}
._1a{width:17.082000px;}
._10{width:18.465840px;}
._f{width:19.780560px;}
._1c{width:21.274560px;}
._1d{width:22.558800px;}
._c{width:23.844240px;}
._3f{width:24.938640px;}
._1e{width:26.892000px;}
._2d{width:28.000080px;}
._21{width:29.120880px;}
._35{width:30.776400px;}
._13{width:32.141520px;}
._14{width:33.685920px;}
._12{width:35.368560px;}
._36{width:36.802800px;}
._25{width:40.338000px;}
._3a{width:41.537520px;}
._27{width:42.691680px;}
._28{width:43.745040px;}
._37{width:45.348480px;}
._2f{width:47.108880px;}
._47{width:48.405600px;}
._34{width:49.443840px;}
._33{width:50.592000px;}
._19{width:52.110720px;}
._39{width:53.485200px;}
._2c{width:54.491760px;}
._4e{width:55.815840px;}
._40{width:57.070800px;}
._46{width:58.146480px;}
._16{width:59.479920px;}
._15{width:61.014960px;}
._29{width:62.021520px;}
._2a{width:63.226080px;}
._43{width:66.959760px;}
._42{width:68.047680px;}
._41{width:69.441120px;}
._3c{width:71.224560px;}
._4a{width:73.008000px;}
._44{width:74.356320px;}
._22{width:75.536640px;}
._23{width:77.081040px;}
._3d{width:78.156720px;}
._3e{width:79.237200px;}
._50{width:80.695680px;}
._4f{width:84.132720px;}
._48{width:86.045040px;}
._4d{width:87.667920px;}
._4c{width:90.655920px;}
._26{width:97.789680px;}
._2e{width:99.515520px;}
._24{width:102.010320px;}
._30{width:103.384800px;}
._31{width:104.753280px;}
._2b{width:112.587840px;}
._32{width:113.723280px;}
._38{width:115.580640px;}
._3b{width:118.470000px;}
._49{width:133.623360px;}
._45{width:155.136960px;}
._20{width:164.589120px;}
._1f{width:165.764160px;}
._4b{width:200.793600px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs4{font-size:23.760000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.260000px;}
.yd{bottom:2.700000px;}
.y6{bottom:3.420000px;}
.y3{bottom:15.120000px;}
.yc{bottom:16.776000px;}
.y18{bottom:20.880000px;}
.y11{bottom:21.060000px;}
.y5{bottom:21.600000px;}
.y17{bottom:38.520000px;}
.y25{bottom:38.565000px;}
.y10{bottom:38.700000px;}
.y4{bottom:42.300000px;}
.ye{bottom:54.180000px;}
.yb{bottom:55.620000px;}
.y2a{bottom:56.154000px;}
.y16{bottom:56.160000px;}
.y14{bottom:56.340000px;}
.ya{bottom:83.736000px;}
.y7e{bottom:97.956000px;}
.y29{bottom:98.316000px;}
.y61{bottom:101.736000px;}
.y7d{bottom:115.596000px;}
.y60{bottom:119.376000px;}
.y7c{bottom:133.236000px;}
.y5f{bottom:136.836000px;}
.y7b{bottom:150.690000px;}
.y5e{bottom:154.470000px;}
.y7a{bottom:168.330000px;}
.y28{bottom:168.690000px;}
.y5d{bottom:172.110000px;}
.y79{bottom:185.970000px;}
.y5c{bottom:189.750000px;}
.y78{bottom:203.430000px;}
.y27{bottom:203.790000px;}
.y5b{bottom:207.210000px;}
.y77{bottom:221.070000px;}
.y5a{bottom:224.850000px;}
.y76{bottom:238.710000px;}
.y59{bottom:242.490000px;}
.y75{bottom:256.350000px;}
.y26{bottom:256.530000px;}
.y58{bottom:259.950000px;}
.y74{bottom:273.810000px;}
.y57{bottom:277.590000px;}
.y73{bottom:291.450000px;}
.y24{bottom:291.810000px;}
.y56{bottom:295.230000px;}
.y72{bottom:309.090000px;}
.y55{bottom:312.690000px;}
.y71{bottom:326.595000px;}
.y54{bottom:330.375000px;}
.y70{bottom:344.235000px;}
.y23{bottom:344.595000px;}
.y53{bottom:348.015000px;}
.y6f{bottom:361.875000px;}
.y52{bottom:365.655000px;}
.y6e{bottom:379.335000px;}
.y51{bottom:383.115000px;}
.y6d{bottom:396.975000px;}
.y22{bottom:397.335000px;}
.y50{bottom:400.755000px;}
.y6c{bottom:414.615000px;}
.y4f{bottom:418.395000px;}
.y89{bottom:432.075000px;}
.y21{bottom:432.435000px;}
.y4e{bottom:435.855000px;}
.y6b{bottom:449.715000px;}
.y4d{bottom:453.495000px;}
.y88{bottom:467.355000px;}
.y4c{bottom:471.135000px;}
.y6a{bottom:484.995000px;}
.y20{bottom:485.175000px;}
.y4b{bottom:488.595000px;}
.y87{bottom:502.455000px;}
.y4a{bottom:506.235000px;}
.y69{bottom:520.095000px;}
.y49{bottom:523.875000px;}
.y68{bottom:537.735000px;}
.y1f{bottom:538.095000px;}
.y48{bottom:541.515000px;}
.y67{bottom:555.195000px;}
.y47{bottom:558.975000px;}
.y66{bottom:572.865000px;}
.y1e{bottom:573.225000px;}
.y46{bottom:576.645000px;}
.y65{bottom:590.505000px;}
.y45{bottom:594.285000px;}
.y64{bottom:607.965000px;}
.y1d{bottom:608.325000px;}
.y44{bottom:611.745000px;}
.y63{bottom:625.605000px;}
.y43{bottom:629.385000px;}
.y86{bottom:643.245000px;}
.y1c{bottom:643.605000px;}
.y62{bottom:646.845000px;}
.y42{bottom:647.025000px;}
.y85{bottom:660.885000px;}
.y41{bottom:664.485000px;}
.y84{bottom:678.345000px;}
.y1b{bottom:678.705000px;}
.y40{bottom:682.125000px;}
.y83{bottom:695.985000px;}
.y3f{bottom:699.765000px;}
.y82{bottom:713.625000px;}
.y3e{bottom:717.225000px;}
.y81{bottom:731.085000px;}
.y1a{bottom:731.445000px;}
.y3d{bottom:734.865000px;}
.y80{bottom:748.725000px;}
.y3c{bottom:752.505000px;}
.y7f{bottom:766.365000px;}
.y3b{bottom:770.145000px;}
.y19{bottom:784.185000px;}
.y3a{bottom:787.605000px;}
.y39{bottom:805.245000px;}
.y15{bottom:819.510000px;}
.y38{bottom:822.930000px;}
.y37{bottom:840.390000px;}
.y36{bottom:858.030000px;}
.y35{bottom:875.670000px;}
.y13{bottom:889.710000px;}
.y34{bottom:893.130000px;}
.y33{bottom:910.770000px;}
.y32{bottom:928.410000px;}
.y31{bottom:946.050000px;}
.y12{bottom:960.090000px;}
.y30{bottom:963.510000px;}
.y2f{bottom:981.150000px;}
.y2e{bottom:998.790000px;}
.yf{bottom:1012.830000px;}
.y2d{bottom:1016.250000px;}
.y2c{bottom:1033.890000px;}
.y2b{bottom:1051.530000px;}
.y9{bottom:1065.930000px;}
.y7{bottom:1068.090000px;}
.y2{bottom:1076.040000px;}
.y1{bottom:1229.400000px;}
.ha{height:4.038750px;}
.h1e{height:5.006250px;}
.h10{height:5.920372px;}
.hb{height:6.840000px;}
.h8{height:7.056000px;}
.h9{height:16.659844px;}
.h1d{height:20.650781px;}
.hd{height:24.421536px;}
.hc{height:24.734531px;}
.he{height:28.116000px;}
.hf{height:33.824531px;}
.h21{height:33.843516px;}
.h17{height:35.100000px;}
.h19{height:35.136000px;}
.h18{height:35.280000px;}
.h16{height:35.316000px;}
.h12{height:41.902031px;}
.h1f{height:41.927344px;}
.h2{height:45.184219px;}
.h5{height:46.445625px;}
.h22{height:48.963516px;}
.h20{height:51.939844px;}
.h11{height:52.740000px;}
.h1b{height:52.776000px;}
.h1a{height:52.920000px;}
.h13{height:53.311289px;}
.h1c{height:57.571875px;}
.h4{height:57.960000px;}
.h7{height:58.902187px;}
.h6{height:59.066719px;}
.h15{height:70.200000px;}
.h14{height:70.380000px;}
.h3{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:50.760000px;}
.w6{width:112.176000px;}
.w4{width:112.896000px;}
.w7{width:735.810000px;}
.w5{width:736.530000px;}
.wb{width:798.660000px;}
.w9{width:849.420000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w8{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:8.094000px;}
.x2{left:34.380000px;}
.x6{left:42.479986px;}
.x1{left:78.659987px;}
.x7{left:85.140000px;}
.x3{left:87.876000px;}
.x4{left:147.276000px;}
.x8{left:469.694986px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls1c{letter-spacing:-1.098667pt;}
.ls1d{letter-spacing:-1.040000pt;}
.ls10{letter-spacing:-0.302933pt;}
.ls15{letter-spacing:-0.233600pt;}
.ls1b{letter-spacing:-0.201067pt;}
.ls3{letter-spacing:-0.155733pt;}
.ls12{letter-spacing:-0.153600pt;}
.ls5{letter-spacing:-0.139733pt;}
.lsf{letter-spacing:-0.075733pt;}
.ls1a{letter-spacing:-0.009600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.018560pt;}
.lsa{letter-spacing:0.053760pt;}
.ls14{letter-spacing:0.056533pt;}
.ls18{letter-spacing:0.069333pt;}
.ls11{letter-spacing:0.169600pt;}
.ls1e{letter-spacing:0.173333pt;}
.ls13{letter-spacing:0.188267pt;}
.ls16{letter-spacing:0.229333pt;}
.ls7{letter-spacing:0.284160pt;}
.ls8{letter-spacing:0.378133pt;}
.lsd{letter-spacing:0.418987pt;}
.ls1{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.618667pt;}
.lsc{letter-spacing:0.629333pt;}
.ls19{letter-spacing:0.630400pt;}
.ls17{letter-spacing:0.661333pt;}
.lsb{letter-spacing:0.693760pt;}
.ls9{letter-spacing:0.698667pt;}
.ls1f{letter-spacing:0.816000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws2{word-spacing:-11.686400pt;}
.ws3{word-spacing:-11.546667pt;}
.ws1{word-spacing:-11.530667pt;}
.ws10{word-spacing:-10.646400pt;}
.ws5{word-spacing:-9.433600pt;}
.ws4{word-spacing:-9.357867pt;}
.ws6{word-spacing:-9.130667pt;}
.ws12{word-spacing:-0.869120pt;}
.wsc{word-spacing:-0.282453pt;}
.ws8{word-spacing:-0.241387pt;}
.ws11{word-spacing:-0.226453pt;}
.wsd{word-spacing:-0.122453pt;}
.ws9{word-spacing:-0.064640pt;}
.ws7{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.147947pt;}
.wsa{word-spacing:0.180480pt;}
.wsf{word-spacing:1.045547pt;}
._6{margin-left:-8.568960pt;}
._9{margin-left:-6.888960pt;}
._d{margin-left:-5.957760pt;}
._8{margin-left:-4.780800pt;}
._a{margin-left:-3.522560pt;}
._5{margin-left:-2.443520pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.062400pt;}
._4{width:2.784853pt;}
._2{width:4.073600pt;}
._3{width:5.231360pt;}
._e{width:6.446507pt;}
._11{width:7.694720pt;}
._17{width:9.508480pt;}
._18{width:10.570880pt;}
._1b{width:12.103040pt;}
._7{width:13.386240pt;}
._b{width:14.289280pt;}
._1a{width:15.184000pt;}
._10{width:16.414080pt;}
._f{width:17.582720pt;}
._1c{width:18.910720pt;}
._1d{width:20.052267pt;}
._c{width:21.194880pt;}
._3f{width:22.167680pt;}
._1e{width:23.904000pt;}
._2d{width:24.888960pt;}
._21{width:25.885227pt;}
._35{width:27.356800pt;}
._13{width:28.570240pt;}
._14{width:29.943040pt;}
._12{width:31.438720pt;}
._36{width:32.713600pt;}
._25{width:35.856000pt;}
._3a{width:36.922240pt;}
._27{width:37.948160pt;}
._28{width:38.884480pt;}
._37{width:40.309760pt;}
._2f{width:41.874560pt;}
._47{width:43.027200pt;}
._34{width:43.950080pt;}
._33{width:44.970667pt;}
._19{width:46.320640pt;}
._39{width:47.542400pt;}
._2c{width:48.437120pt;}
._4e{width:49.614080pt;}
._40{width:50.729600pt;}
._46{width:51.685760pt;}
._16{width:52.871040pt;}
._15{width:54.235520pt;}
._29{width:55.130240pt;}
._2a{width:56.200960pt;}
._43{width:59.519787pt;}
._42{width:60.486827pt;}
._41{width:61.725440pt;}
._3c{width:63.310720pt;}
._4a{width:64.896000pt;}
._44{width:66.094507pt;}
._22{width:67.143680pt;}
._23{width:68.516480pt;}
._3d{width:69.472640pt;}
._3e{width:70.433067pt;}
._50{width:71.729493pt;}
._4f{width:74.784640pt;}
._48{width:76.484480pt;}
._4d{width:77.927040pt;}
._4c{width:80.583040pt;}
._26{width:86.924160pt;}
._2e{width:88.458240pt;}
._24{width:90.675840pt;}
._30{width:91.897600pt;}
._31{width:93.114027pt;}
._2b{width:100.078080pt;}
._32{width:101.087360pt;}
._38{width:102.738347pt;}
._3b{width:105.306667pt;}
._49{width:118.776320pt;}
._45{width:137.899520pt;}
._20{width:146.301440pt;}
._1f{width:147.345920pt;}
._4b{width:178.483200pt;}
.fs5{font-size:5.120000pt;}
.fs4{font-size:21.120000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.120000pt;}
.yd{bottom:2.400000pt;}
.y6{bottom:3.040000pt;}
.y3{bottom:13.440000pt;}
.yc{bottom:14.912000pt;}
.y18{bottom:18.560000pt;}
.y11{bottom:18.720000pt;}
.y5{bottom:19.200000pt;}
.y17{bottom:34.240000pt;}
.y25{bottom:34.280000pt;}
.y10{bottom:34.400000pt;}
.y4{bottom:37.600000pt;}
.ye{bottom:48.160000pt;}
.yb{bottom:49.440000pt;}
.y2a{bottom:49.914667pt;}
.y16{bottom:49.920000pt;}
.y14{bottom:50.080000pt;}
.ya{bottom:74.432000pt;}
.y7e{bottom:87.072000pt;}
.y29{bottom:87.392000pt;}
.y61{bottom:90.432000pt;}
.y7d{bottom:102.752000pt;}
.y60{bottom:106.112000pt;}
.y7c{bottom:118.432000pt;}
.y5f{bottom:121.632000pt;}
.y7b{bottom:133.946667pt;}
.y5e{bottom:137.306667pt;}
.y7a{bottom:149.626667pt;}
.y28{bottom:149.946667pt;}
.y5d{bottom:152.986667pt;}
.y79{bottom:165.306667pt;}
.y5c{bottom:168.666667pt;}
.y78{bottom:180.826667pt;}
.y27{bottom:181.146667pt;}
.y5b{bottom:184.186667pt;}
.y77{bottom:196.506667pt;}
.y5a{bottom:199.866667pt;}
.y76{bottom:212.186667pt;}
.y59{bottom:215.546667pt;}
.y75{bottom:227.866667pt;}
.y26{bottom:228.026667pt;}
.y58{bottom:231.066667pt;}
.y74{bottom:243.386667pt;}
.y57{bottom:246.746667pt;}
.y73{bottom:259.066667pt;}
.y24{bottom:259.386667pt;}
.y56{bottom:262.426667pt;}
.y72{bottom:274.746667pt;}
.y55{bottom:277.946667pt;}
.y71{bottom:290.306667pt;}
.y54{bottom:293.666667pt;}
.y70{bottom:305.986667pt;}
.y23{bottom:306.306667pt;}
.y53{bottom:309.346667pt;}
.y6f{bottom:321.666667pt;}
.y52{bottom:325.026667pt;}
.y6e{bottom:337.186667pt;}
.y51{bottom:340.546667pt;}
.y6d{bottom:352.866667pt;}
.y22{bottom:353.186667pt;}
.y50{bottom:356.226667pt;}
.y6c{bottom:368.546667pt;}
.y4f{bottom:371.906667pt;}
.y89{bottom:384.066667pt;}
.y21{bottom:384.386667pt;}
.y4e{bottom:387.426667pt;}
.y6b{bottom:399.746667pt;}
.y4d{bottom:403.106667pt;}
.y88{bottom:415.426667pt;}
.y4c{bottom:418.786667pt;}
.y6a{bottom:431.106667pt;}
.y20{bottom:431.266667pt;}
.y4b{bottom:434.306667pt;}
.y87{bottom:446.626667pt;}
.y4a{bottom:449.986667pt;}
.y69{bottom:462.306667pt;}
.y49{bottom:465.666667pt;}
.y68{bottom:477.986667pt;}
.y1f{bottom:478.306667pt;}
.y48{bottom:481.346667pt;}
.y67{bottom:493.506667pt;}
.y47{bottom:496.866667pt;}
.y66{bottom:509.213333pt;}
.y1e{bottom:509.533333pt;}
.y46{bottom:512.573333pt;}
.y65{bottom:524.893333pt;}
.y45{bottom:528.253333pt;}
.y64{bottom:540.413333pt;}
.y1d{bottom:540.733333pt;}
.y44{bottom:543.773333pt;}
.y63{bottom:556.093333pt;}
.y43{bottom:559.453333pt;}
.y86{bottom:571.773333pt;}
.y1c{bottom:572.093333pt;}
.y62{bottom:574.973333pt;}
.y42{bottom:575.133333pt;}
.y85{bottom:587.453333pt;}
.y41{bottom:590.653333pt;}
.y84{bottom:602.973333pt;}
.y1b{bottom:603.293333pt;}
.y40{bottom:606.333333pt;}
.y83{bottom:618.653333pt;}
.y3f{bottom:622.013333pt;}
.y82{bottom:634.333333pt;}
.y3e{bottom:637.533333pt;}
.y81{bottom:649.853333pt;}
.y1a{bottom:650.173333pt;}
.y3d{bottom:653.213333pt;}
.y80{bottom:665.533333pt;}
.y3c{bottom:668.893333pt;}
.y7f{bottom:681.213333pt;}
.y3b{bottom:684.573333pt;}
.y19{bottom:697.053333pt;}
.y3a{bottom:700.093333pt;}
.y39{bottom:715.773333pt;}
.y15{bottom:728.453333pt;}
.y38{bottom:731.493333pt;}
.y37{bottom:747.013333pt;}
.y36{bottom:762.693333pt;}
.y35{bottom:778.373333pt;}
.y13{bottom:790.853333pt;}
.y34{bottom:793.893333pt;}
.y33{bottom:809.573333pt;}
.y32{bottom:825.253333pt;}
.y31{bottom:840.933333pt;}
.y12{bottom:853.413333pt;}
.y30{bottom:856.453333pt;}
.y2f{bottom:872.133333pt;}
.y2e{bottom:887.813333pt;}
.yf{bottom:900.293333pt;}
.y2d{bottom:903.333333pt;}
.y2c{bottom:919.013333pt;}
.y2b{bottom:934.693333pt;}
.y9{bottom:947.493333pt;}
.y7{bottom:949.413333pt;}
.y2{bottom:956.480000pt;}
.y1{bottom:1092.800000pt;}
.ha{height:3.590000pt;}
.h1e{height:4.450000pt;}
.h10{height:5.262553pt;}
.hb{height:6.080000pt;}
.h8{height:6.272000pt;}
.h9{height:14.808750pt;}
.h1d{height:18.356250pt;}
.hd{height:21.708032pt;}
.hc{height:21.986250pt;}
.he{height:24.992000pt;}
.hf{height:30.066250pt;}
.h21{height:30.083125pt;}
.h17{height:31.200000pt;}
.h19{height:31.232000pt;}
.h18{height:31.360000pt;}
.h16{height:31.392000pt;}
.h12{height:37.246250pt;}
.h1f{height:37.268750pt;}
.h2{height:40.163750pt;}
.h5{height:41.285000pt;}
.h22{height:43.523125pt;}
.h20{height:46.168750pt;}
.h11{height:46.880000pt;}
.h1b{height:46.912000pt;}
.h1a{height:47.040000pt;}
.h13{height:47.387813pt;}
.h1c{height:51.175000pt;}
.h4{height:51.520000pt;}
.h7{height:52.357500pt;}
.h6{height:52.503750pt;}
.h15{height:62.400000pt;}
.h14{height:62.560000pt;}
.h3{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:45.120000pt;}
.w6{width:99.712000pt;}
.w4{width:100.352000pt;}
.w7{width:654.053333pt;}
.w5{width:654.693333pt;}
.wb{width:709.920000pt;}
.w9{width:755.040000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w8{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.194667pt;}
.x2{left:30.560000pt;}
.x6{left:37.759988pt;}
.x1{left:69.919988pt;}
.x7{left:75.680000pt;}
.x3{left:78.112000pt;}
.x4{left:130.912000pt;}
.x8{left:417.506655pt;}
}




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