
    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_950b1688252d2419f760e2c5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_4dc5bee6f13ee85dba03d32b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_fe955cb517cf327554081908.woff')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_f8ae543d311c77343e45101e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.773926;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_0ba36e2f53afc7cca77c5222.woff')format("woff");}.ff5{font-family:ff5;line-height:1.081543;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_f118443f619dd3976295b782.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_9b66e77910f17a1790e0348a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_bfc039dc3b4b0b64b77083f6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_546909654fc90c281ac572b1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_65010f118e4109ac9673ac83.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-43.200000px;}
.v3{vertical-align:-10.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:41.640000px;}
.v1{vertical-align:64.800000px;}
.v4{vertical-align:135.060000px;}
.ls18{letter-spacing:-15.240000px;}
.ls17{letter-spacing:-3.960000px;}
.lsc{letter-spacing:-2.592000px;}
.lsd{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.445800px;}
.ls14{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.291600px;}
.ls10{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.085200px;}
.ls16{letter-spacing:-0.076200px;}
.ls19{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.000011px;}
.lsb{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.111600px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls2{letter-spacing:4.320000px;}
.ls7{letter-spacing:10.080000px;}
.ls5{letter-spacing:47.520000px;}
.ls8{letter-spacing:68.076000px;}
.ls9{letter-spacing:81.548640px;}
.ls6{letter-spacing:84.960000px;}
.lsa{letter-spacing:100.224000px;}
.ls3{letter-spacing:156.240000px;}
.ls4{letter-spacing:156.960000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(44,111,113),0 0.015em rgb(44,111,113),0.015em 0 rgb(44,111,113),0 -0.015em  rgb(44,111,113);}
.sc5{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc4{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(87,189,131),0 0.015em rgb(87,189,131),0.015em 0 rgb(87,189,131),0 -0.015em  rgb(87,189,131);}
.sc1{text-shadow:-0.015em 0 rgb(58,58,58),0 0.015em rgb(58,58,58),0.015em 0 rgb(58,58,58),0 -0.015em  rgb(58,58,58);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(44,111,113);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(87,189,131);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(58,58,58);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-216.000000px;}
.ws0{word-spacing:-120.240000px;}
.ws20{word-spacing:-62.337600px;}
.ws10{word-spacing:-56.520000px;}
.wsf{word-spacing:-56.448000px;}
.wsc{word-spacing:-56.309040px;}
.wsa{word-spacing:-56.304000px;}
.ws9{word-spacing:-56.160000px;}
.ws8{word-spacing:-56.159989px;}
.ws14{word-spacing:-56.121240px;}
.wsd{word-spacing:-56.112240px;}
.ws17{word-spacing:-56.088000px;}
.wsb{word-spacing:-55.944000px;}
.ws11{word-spacing:-55.800000px;}
.ws13{word-spacing:-55.751640px;}
.wse{word-spacing:-55.584000px;}
.ws15{word-spacing:-52.200000px;}
.ws1c{word-spacing:-49.982400px;}
.ws22{word-spacing:-43.617600px;}
.ws16{word-spacing:-40.920000px;}
.ws2{word-spacing:-37.728000px;}
.ws3{word-spacing:-37.584000px;}
.ws5{word-spacing:-37.296000px;}
.ws4{word-spacing:-36.864000px;}
.ws1{word-spacing:-34.848000px;}
.ws6{word-spacing:-19.439280px;}
.ws1a{word-spacing:-1.370880px;}
.ws1b{word-spacing:-1.294560px;}
.ws1d{word-spacing:-1.128960px;}
.ws21{word-spacing:-0.808560px;}
.ws18{word-spacing:-0.504000px;}
.ws1f{word-spacing:0.000000px;}
.ws1e{word-spacing:1.504800px;}
.ws19{word-spacing:779.736000px;}
.ws7{word-spacing:4717.224000px;}
._9{margin-left:-18.496800px;}
._37{margin-left:-16.303680px;}
._36{margin-left:-14.880960px;}
._c{margin-left:-13.686480px;}
._e{margin-left:-10.246320px;}
._13{margin-left:-7.776000px;}
._b{margin-left:-6.322320px;}
._a{margin-left:-5.019120px;}
._4{margin-left:-3.456000px;}
._1{margin-left:-2.404800px;}
._0{margin-left:-1.322640px;}
._6{width:1.008000px;}
._3{width:2.736000px;}
._5{width:3.888000px;}
._2{width:4.896000px;}
._10{width:8.644834px;}
._f{width:9.840000px;}
._7{width:11.232000px;}
._8{width:12.504000px;}
._2c{width:15.360000px;}
._19{width:16.392000px;}
._17{width:18.480000px;}
._2e{width:21.684000px;}
._24{width:22.788000px;}
._25{width:24.014640px;}
._2a{width:26.608800px;}
._29{width:28.125360px;}
._d{width:29.150640px;}
._14{width:31.296000px;}
._15{width:32.343120px;}
._30{width:44.436000px;}
._2b{width:45.972000px;}
._2d{width:47.520000px;}
._31{width:49.872240px;}
._32{width:51.229440px;}
._33{width:52.781760px;}
._16{width:62.760000px;}
._1a{width:67.752000px;}
._1b{width:68.796000px;}
._12{width:70.319424px;}
._11{width:71.562144px;}
._20{width:75.420000px;}
._21{width:76.780800px;}
._18{width:84.216000px;}
._2f{width:85.236000px;}
._27{width:89.172000px;}
._28{width:90.387120px;}
._1d{width:92.418480px;}
._1c{width:93.730320px;}
._23{width:104.876784px;}
._22{width:106.173648px;}
._1f{width:139.687200px;}
._1e{width:141.256800px;}
._26{width:156.446640px;}
._34{width:182.212800px;}
._35{width:1405.220640px;}
.fc8{color:transparent;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(44,111,113);}
.fc1{color:rgb(98,192,132);}
.fc7{color:rgb(68,84,106);}
.fc4{color:rgb(58,58,58);}
.fc3{color:rgb(87,189,131);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:95.760000px;}
.fsd{font-size:108.000000px;}
.fs0{font-size:120.240000px;}
.fs1{font-size:144.000000px;}
.fs4{font-size:167.760000px;}
.fsa{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs5{font-size:216.000000px;}
.fs8{font-size:216.144000px;}
.fsc{font-size:239.760000px;}
.fs2{font-size:264.240000px;}
.fs7{font-size:324.000000px;}
.fs9{font-size:324.144000px;}
.fs3{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:60.336000px;}
.y56{bottom:157.395000px;}
.y29{bottom:174.165000px;}
.y28{bottom:231.765000px;}
.y58{bottom:254.415000px;}
.ya{bottom:348.630000px;}
.y57{bottom:351.465000px;}
.y2e{bottom:509.730000px;}
.y2d{bottom:574.530000px;}
.y2c{bottom:639.330000px;}
.y2b{bottom:704.130000px;}
.y2a{bottom:768.930000px;}
.y4b{bottom:917.790000px;}
.y4a{bottom:989.790000px;}
.y30{bottom:1024.845000px;}
.y2f{bottom:1089.645000px;}
.y54{bottom:1125.540000px;}
.y31{bottom:1154.490000px;}
.y50{bottom:1246.650000px;}
.y43{bottom:1264.935000px;}
.y42{bottom:1420.455000px;}
.y3f{bottom:1458.255000px;}
.y41{bottom:1472.295000px;}
.y40{bottom:1532.805000px;}
.y53{bottom:1598.685000px;}
.y2{bottom:1635.735000px;}
.y3e{bottom:1639.590000px;}
.y3b{bottom:1662.330000px;}
.y1{bottom:1671.735000px;}
.y51{bottom:1680.120000px;}
.y3d{bottom:1696.470000px;}
.y3c{bottom:1756.950000px;}
.y3a{bottom:1855.875000px;}
.y36{bottom:1890.075000px;}
.y39{bottom:1907.715000px;}
.y4f{bottom:1948.425000px;}
.y38{bottom:1959.555000px;}
.y4e{bottom:2006.745000px;}
.y37{bottom:2020.035000px;}
.y4d{bottom:2065.065000px;}
.y4c{bottom:2123.385000px;}
.y33{bottom:2128.425000px;}
.y35{bottom:2133.390000px;}
.y52{bottom:2147.865000px;}
.y34{bottom:2193.870000px;}
.y47{bottom:2286.285000px;}
.y49{bottom:2291.940000px;}
.y45{bottom:2295.900000px;}
.y46{bottom:2358.285000px;}
.y48{bottom:2371.170000px;}
.y44{bottom:2376.900000px;}
.y1a{bottom:2552.865000px;}
.y32{bottom:2554.560000px;}
.y27{bottom:2714.325000px;}
.y26{bottom:2779.125000px;}
.y19{bottom:2779.275000px;}
.y25{bottom:2843.925000px;}
.y18{bottom:2844.075000px;}
.y24{bottom:2908.725000px;}
.y17{bottom:2908.875000px;}
.y23{bottom:2973.525000px;}
.y16{bottom:2973.675000px;}
.y22{bottom:3038.325000px;}
.y15{bottom:3038.475000px;}
.y21{bottom:3103.125000px;}
.y14{bottom:3103.275000px;}
.y20{bottom:3167.970000px;}
.y13{bottom:3168.075000px;}
.y1f{bottom:3232.770000px;}
.y12{bottom:3232.905000px;}
.y1e{bottom:3297.570000px;}
.y11{bottom:3297.705000px;}
.y1d{bottom:3362.370000px;}
.y10{bottom:3362.505000px;}
.y1c{bottom:3427.170000px;}
.yf{bottom:3427.305000px;}
.y1b{bottom:3491.970000px;}
.ye{bottom:3653.310000px;}
.yd{bottom:3807.210000px;}
.yc{bottom:3879.750000px;}
.yb{bottom:3966.630000px;}
.y9{bottom:4042.290000px;}
.y8{bottom:4191.330000px;}
.y5{bottom:4381.890000px;}
.y4{bottom:4425.090000px;}
.y3{bottom:4468.290000px;}
.y7{bottom:4687.845000px;}
.y6{bottom:4767.045000px;}
.h8{height:82.714570px;}
.h3{height:110.179688px;}
.h2{height:119.594180px;}
.h9{height:124.382812px;}
.h6{height:128.359336px;}
.he{height:147.089883px;}
.h10{height:147.200063px;}
.hb{height:165.269531px;}
.h16{height:165.375000px;}
.hc{height:165.379711px;}
.h15{height:183.449180px;}
.h12{height:183.566250px;}
.h7{height:189.182812px;}
.hf{height:191.207461px;}
.h4{height:200.760469px;}
.h13{height:202.179727px;}
.h14{height:225.089180px;}
.ha{height:246.164062px;}
.hd{height:246.273469px;}
.h11{height:349.899844px;}
.h5{height:373.148438px;}
.h1{height:5059.500000px;}
.h0{height:5059.800000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x12{left:101.051947px;}
.x6{left:138.419947px;}
.x2{left:143.387947px;}
.xc{left:154.949947px;}
.xe{left:162.824947px;}
.x17{left:168.299947px;}
.xd{left:175.214947px;}
.x10{left:239.969947px;}
.x11{left:324.389947px;}
.x19{left:334.184947px;}
.x18{left:335.804947px;}
.x1c{left:347.144947px;}
.x1a{left:368.024947px;}
.x1b{left:369.644947px;}
.x7{left:378.539947px;}
.x1d{left:438.044947px;}
.x15{left:473.969947px;}
.xa{left:843.914947px;}
.x1e{left:876.599947px;}
.x9{left:900.209947px;}
.x3{left:928.334947px;}
.x5{left:1006.454947px;}
.x13{left:1176.194947px;}
.x14{left:1265.114947px;}
.xb{left:1376.204947px;}
.x4{left:1551.884947px;}
.x1f{left:1638.464947px;}
.x20{left:1647.824947px;}
.x1{left:1653.404947px;}
.x24{left:1802.669947px;}
.xf{left:1847.009947px;}
.x16{left:1857.209947px;}
.x8{left:1935.254947px;}
.x25{left:1941.449947px;}
.x26{left:1984.649947px;}
.x23{left:2026.769947px;}
.x22{left:2355.119947px;}
.x2b{left:2480.939947px;}
.x21{left:2483.999947px;}
.x28{left:2710.589947px;}
.x29{left:2817.104947px;}
.x2a{left:2839.679947px;}
.x27{left:2873.519947px;}
@media print{
.v2{vertical-align:-38.400000pt;}
.v3{vertical-align:-9.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:37.013333pt;}
.v1{vertical-align:57.600000pt;}
.v4{vertical-align:120.053333pt;}
.ls18{letter-spacing:-13.546667pt;}
.ls17{letter-spacing:-3.520000pt;}
.lsc{letter-spacing:-2.304000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.396267pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.259200pt;}
.ls10{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.075733pt;}
.ls16{letter-spacing:-0.067733pt;}
.ls19{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.000010pt;}
.lsb{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.099200pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls2{letter-spacing:3.840000pt;}
.ls7{letter-spacing:8.960000pt;}
.ls5{letter-spacing:42.240000pt;}
.ls8{letter-spacing:60.512000pt;}
.ls9{letter-spacing:72.487680pt;}
.ls6{letter-spacing:75.520000pt;}
.lsa{letter-spacing:89.088000pt;}
.ls3{letter-spacing:138.880000pt;}
.ls4{letter-spacing:139.520000pt;}
.ws12{word-spacing:-192.000000pt;}
.ws0{word-spacing:-106.880000pt;}
.ws20{word-spacing:-55.411200pt;}
.ws10{word-spacing:-50.240000pt;}
.wsf{word-spacing:-50.176000pt;}
.wsc{word-spacing:-50.052480pt;}
.wsa{word-spacing:-50.048000pt;}
.ws9{word-spacing:-49.920000pt;}
.ws8{word-spacing:-49.919990pt;}
.ws14{word-spacing:-49.885547pt;}
.wsd{word-spacing:-49.877547pt;}
.ws17{word-spacing:-49.856000pt;}
.wsb{word-spacing:-49.728000pt;}
.ws11{word-spacing:-49.600000pt;}
.ws13{word-spacing:-49.557013pt;}
.wse{word-spacing:-49.408000pt;}
.ws15{word-spacing:-46.400000pt;}
.ws1c{word-spacing:-44.428800pt;}
.ws22{word-spacing:-38.771200pt;}
.ws16{word-spacing:-36.373333pt;}
.ws2{word-spacing:-33.536000pt;}
.ws3{word-spacing:-33.408000pt;}
.ws5{word-spacing:-33.152000pt;}
.ws4{word-spacing:-32.768000pt;}
.ws1{word-spacing:-30.976000pt;}
.ws6{word-spacing:-17.279360pt;}
.ws1a{word-spacing:-1.218560pt;}
.ws1b{word-spacing:-1.150720pt;}
.ws1d{word-spacing:-1.003520pt;}
.ws21{word-spacing:-0.718720pt;}
.ws18{word-spacing:-0.448000pt;}
.ws1f{word-spacing:0.000000pt;}
.ws1e{word-spacing:1.337600pt;}
.ws19{word-spacing:693.098667pt;}
.ws7{word-spacing:4193.088000pt;}
._9{margin-left:-16.441600pt;}
._37{margin-left:-14.492160pt;}
._36{margin-left:-13.227520pt;}
._c{margin-left:-12.165760pt;}
._e{margin-left:-9.107840pt;}
._13{margin-left:-6.912000pt;}
._b{margin-left:-5.619840pt;}
._a{margin-left:-4.461440pt;}
._4{margin-left:-3.072000pt;}
._1{margin-left:-2.137600pt;}
._0{margin-left:-1.175680pt;}
._6{width:0.896000pt;}
._3{width:2.432000pt;}
._5{width:3.456000pt;}
._2{width:4.352000pt;}
._10{width:7.684297pt;}
._f{width:8.746667pt;}
._7{width:9.984000pt;}
._8{width:11.114667pt;}
._2c{width:13.653333pt;}
._19{width:14.570667pt;}
._17{width:16.426667pt;}
._2e{width:19.274667pt;}
._24{width:20.256000pt;}
._25{width:21.346347pt;}
._2a{width:23.652267pt;}
._29{width:25.000320pt;}
._d{width:25.911680pt;}
._14{width:27.818667pt;}
._15{width:28.749440pt;}
._30{width:39.498667pt;}
._2b{width:40.864000pt;}
._2d{width:42.240000pt;}
._31{width:44.330880pt;}
._32{width:45.537280pt;}
._33{width:46.917120pt;}
._16{width:55.786667pt;}
._1a{width:60.224000pt;}
._1b{width:61.152000pt;}
._12{width:62.506155pt;}
._11{width:63.610795pt;}
._20{width:67.040000pt;}
._21{width:68.249600pt;}
._18{width:74.858667pt;}
._2f{width:75.765333pt;}
._27{width:79.264000pt;}
._28{width:80.344107pt;}
._1d{width:82.149760pt;}
._1c{width:83.315840pt;}
._23{width:93.223808pt;}
._22{width:94.376576pt;}
._1f{width:124.166400pt;}
._1e{width:125.561600pt;}
._26{width:139.063680pt;}
._34{width:161.966933pt;}
._35{width:1249.085013pt;}
.fs6{font-size:85.120000pt;}
.fsd{font-size:96.000000pt;}
.fs0{font-size:106.880000pt;}
.fs1{font-size:128.000000pt;}
.fs4{font-size:149.120000pt;}
.fsa{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs5{font-size:192.000000pt;}
.fs8{font-size:192.128000pt;}
.fsc{font-size:213.120000pt;}
.fs2{font-size:234.880000pt;}
.fs7{font-size:288.000000pt;}
.fs9{font-size:288.128000pt;}
.fs3{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:53.632000pt;}
.y56{bottom:139.906667pt;}
.y29{bottom:154.813333pt;}
.y28{bottom:206.013333pt;}
.y58{bottom:226.146667pt;}
.ya{bottom:309.893333pt;}
.y57{bottom:312.413333pt;}
.y2e{bottom:453.093333pt;}
.y2d{bottom:510.693333pt;}
.y2c{bottom:568.293333pt;}
.y2b{bottom:625.893333pt;}
.y2a{bottom:683.493333pt;}
.y4b{bottom:815.813333pt;}
.y4a{bottom:879.813333pt;}
.y30{bottom:910.973333pt;}
.y2f{bottom:968.573333pt;}
.y54{bottom:1000.480000pt;}
.y31{bottom:1026.213333pt;}
.y50{bottom:1108.133333pt;}
.y43{bottom:1124.386667pt;}
.y42{bottom:1262.626667pt;}
.y3f{bottom:1296.226667pt;}
.y41{bottom:1308.706667pt;}
.y40{bottom:1362.493333pt;}
.y53{bottom:1421.053333pt;}
.y2{bottom:1453.986667pt;}
.y3e{bottom:1457.413333pt;}
.y3b{bottom:1477.626667pt;}
.y1{bottom:1485.986667pt;}
.y51{bottom:1493.440000pt;}
.y3d{bottom:1507.973333pt;}
.y3c{bottom:1561.733333pt;}
.y3a{bottom:1649.666667pt;}
.y36{bottom:1680.066667pt;}
.y39{bottom:1695.746667pt;}
.y4f{bottom:1731.933333pt;}
.y38{bottom:1741.826667pt;}
.y4e{bottom:1783.773333pt;}
.y37{bottom:1795.586667pt;}
.y4d{bottom:1835.613333pt;}
.y4c{bottom:1887.453333pt;}
.y33{bottom:1891.933333pt;}
.y35{bottom:1896.346667pt;}
.y52{bottom:1909.213333pt;}
.y34{bottom:1950.106667pt;}
.y47{bottom:2032.253333pt;}
.y49{bottom:2037.280000pt;}
.y45{bottom:2040.800000pt;}
.y46{bottom:2096.253333pt;}
.y48{bottom:2107.706667pt;}
.y44{bottom:2112.800000pt;}
.y1a{bottom:2269.213333pt;}
.y32{bottom:2270.720000pt;}
.y27{bottom:2412.733333pt;}
.y26{bottom:2470.333333pt;}
.y19{bottom:2470.466667pt;}
.y25{bottom:2527.933333pt;}
.y18{bottom:2528.066667pt;}
.y24{bottom:2585.533333pt;}
.y17{bottom:2585.666667pt;}
.y23{bottom:2643.133333pt;}
.y16{bottom:2643.266667pt;}
.y22{bottom:2700.733333pt;}
.y15{bottom:2700.866667pt;}
.y21{bottom:2758.333333pt;}
.y14{bottom:2758.466667pt;}
.y20{bottom:2815.973333pt;}
.y13{bottom:2816.066667pt;}
.y1f{bottom:2873.573333pt;}
.y12{bottom:2873.693333pt;}
.y1e{bottom:2931.173333pt;}
.y11{bottom:2931.293333pt;}
.y1d{bottom:2988.773333pt;}
.y10{bottom:2988.893333pt;}
.y1c{bottom:3046.373333pt;}
.yf{bottom:3046.493333pt;}
.y1b{bottom:3103.973333pt;}
.ye{bottom:3247.386667pt;}
.yd{bottom:3384.186667pt;}
.yc{bottom:3448.666667pt;}
.yb{bottom:3525.893333pt;}
.y9{bottom:3593.146667pt;}
.y8{bottom:3725.626667pt;}
.y5{bottom:3895.013333pt;}
.y4{bottom:3933.413333pt;}
.y3{bottom:3971.813333pt;}
.y7{bottom:4166.973333pt;}
.y6{bottom:4237.373333pt;}
.h8{height:73.524062pt;}
.h3{height:97.937500pt;}
.h2{height:106.305937pt;}
.h9{height:110.562500pt;}
.h6{height:114.097187pt;}
.he{height:130.746563pt;}
.h10{height:130.844500pt;}
.hb{height:146.906250pt;}
.h16{height:147.000000pt;}
.hc{height:147.004187pt;}
.h15{height:163.065937pt;}
.h12{height:163.170000pt;}
.h7{height:168.162500pt;}
.hf{height:169.962187pt;}
.h4{height:178.453750pt;}
.h13{height:179.715313pt;}
.h14{height:200.079271pt;}
.ha{height:218.812500pt;}
.hd{height:218.909750pt;}
.h11{height:311.022083pt;}
.h5{height:331.687500pt;}
.h1{height:4497.333333pt;}
.h0{height:4497.600000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x12{left:89.823953pt;}
.x6{left:123.039953pt;}
.x2{left:127.455953pt;}
.xc{left:137.733286pt;}
.xe{left:144.733286pt;}
.x17{left:149.599953pt;}
.xd{left:155.746619pt;}
.x10{left:213.306619pt;}
.x11{left:288.346619pt;}
.x19{left:297.053286pt;}
.x18{left:298.493286pt;}
.x1c{left:308.573286pt;}
.x1a{left:327.133286pt;}
.x1b{left:328.573286pt;}
.x7{left:336.479953pt;}
.x1d{left:389.373286pt;}
.x15{left:421.306619pt;}
.xa{left:750.146619pt;}
.x1e{left:779.199953pt;}
.x9{left:800.186619pt;}
.x3{left:825.186619pt;}
.x5{left:894.626619pt;}
.x13{left:1045.506619pt;}
.x14{left:1124.546619pt;}
.xb{left:1223.293286pt;}
.x4{left:1379.453286pt;}
.x1f{left:1456.413286pt;}
.x20{left:1464.733286pt;}
.x1{left:1469.693286pt;}
.x24{left:1602.373286pt;}
.xf{left:1641.786619pt;}
.x16{left:1650.853286pt;}
.x8{left:1720.226619pt;}
.x25{left:1725.733286pt;}
.x26{left:1764.133286pt;}
.x23{left:1801.573286pt;}
.x22{left:2093.439953pt;}
.x2b{left:2205.279953pt;}
.x21{left:2207.999953pt;}
.x28{left:2409.413286pt;}
.x29{left:2504.093286pt;}
.x2a{left:2524.159953pt;}
.x27{left:2554.239953pt;}
}




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