
    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_5a4580ca3f10a655dd381ec1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86ff4f2709fff211b2168023.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_2d5a628c66b1534bf8a45014.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_6c49ddf7db27bae09f1ba8ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_deb234d05a0ac18b07687c1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761230;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_92f0e3dd16e1f389869197cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.771973;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_dfcf9f2dfd89da1cccd426ff.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996094;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_dbbaf3b27f25b9c407c391b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.742188;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_6c6fcbde4fb6df5e4ced1fe1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;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_1a85e0c26f4d05b866ece825.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.867676;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_fae5aa1e9d66b83bb3047696.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_8ac4716e54f4a7d9f0e35d0b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.970215;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;}
.m1{transform:matrix(0.243691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243691,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-5.753088px;}
.ls45{letter-spacing:-3.687552px;}
.ls7{letter-spacing:-2.825856px;}
.ls44{letter-spacing:-2.648448px;}
.ls18{letter-spacing:-2.068416px;}
.ls3{letter-spacing:-1.805760px;}
.ls25{letter-spacing:-1.469952px;}
.ls2e{letter-spacing:-1.419264px;}
.ls1e{letter-spacing:-1.330560px;}
.ls3c{letter-spacing:-1.305216px;}
.ls32{letter-spacing:-1.159488px;}
.ls22{letter-spacing:-1.127808px;}
.ls1f{letter-spacing:-1.083456px;}
.ls35{letter-spacing:-1.070784px;}
.ls43{letter-spacing:-0.994752px;}
.ls2b{letter-spacing:-0.982080px;}
.ls33{letter-spacing:-0.975744px;}
.ls3a{letter-spacing:-0.849024px;}
.ls1c{letter-spacing:-0.842688px;}
.ls2c{letter-spacing:-0.798336px;}
.ls34{letter-spacing:-0.760320px;}
.ls9{letter-spacing:-0.747648px;}
.ls1d{letter-spacing:-0.741312px;}
.ls3f{letter-spacing:-0.709632px;}
.ls2f{letter-spacing:-0.684288px;}
.ls2{letter-spacing:-0.492480px;}
.ls39{letter-spacing:-0.468864px;}
.ls5{letter-spacing:-0.415872px;}
.ls19{letter-spacing:-0.411264px;}
.ls10{letter-spacing:-0.350784px;}
.ls24{letter-spacing:-0.342144px;}
.lsd{letter-spacing:-0.310464px;}
.ls2d{letter-spacing:-0.297792px;}
.ls1a{letter-spacing:-0.272160px;}
.ls20{letter-spacing:-0.266112px;}
.ls37{letter-spacing:-0.259776px;}
.lsf{letter-spacing:-0.253440px;}
.ls21{letter-spacing:-0.234432px;}
.ls3e{letter-spacing:-0.228096px;}
.ls29{letter-spacing:-0.221760px;}
.ls40{letter-spacing:-0.215424px;}
.lse{letter-spacing:-0.209088px;}
.ls1b{letter-spacing:-0.202752px;}
.ls38{letter-spacing:-0.196416px;}
.ls8{letter-spacing:-0.190080px;}
.ls2a{letter-spacing:-0.183744px;}
.ls30{letter-spacing:-0.177408px;}
.ls15{letter-spacing:-0.171072px;}
.ls13{letter-spacing:-0.164736px;}
.ls11{letter-spacing:-0.158400px;}
.ls41{letter-spacing:-0.152064px;}
.ls17{letter-spacing:-0.145728px;}
.ls14{letter-spacing:-0.133056px;}
.ls6{letter-spacing:-0.132480px;}
.ls3d{letter-spacing:-0.126720px;}
.ls16{letter-spacing:-0.120384px;}
.ls23{letter-spacing:-0.101376px;}
.ls28{letter-spacing:-0.095040px;}
.ls12{letter-spacing:-0.050688px;}
.ls4{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.128529px;}
.lsc{letter-spacing:0.242208px;}
.lsb{letter-spacing:0.267264px;}
.ls36{letter-spacing:0.399168px;}
.lsa{letter-spacing:0.467712px;}
.ls26{letter-spacing:1.621152px;}
.ls42{letter-spacing:2.615904px;}
.ls3b{letter-spacing:2.772288px;}
.ls1{letter-spacing:8.458560px;}
.ls0{letter-spacing:11.601072px;}
.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;}
}
.ws5{word-spacing:-21.122208px;}
.wsf{word-spacing:-16.253133px;}
.ws1{word-spacing:-14.837760px;}
.ws6{word-spacing:-14.769216px;}
.ws3{word-spacing:-14.319360px;}
.wsc{word-spacing:-14.268672px;}
.ws12{word-spacing:-14.224320px;}
.ws8{word-spacing:-14.198976px;}
.ws7{word-spacing:-14.186304px;}
.wsd{word-spacing:-14.148288px;}
.ws2{word-spacing:-14.129280px;}
.ws14{word-spacing:-14.110272px;}
.ws13{word-spacing:-14.103936px;}
.wsb{word-spacing:-14.097600px;}
.ws9{word-spacing:-13.578048px;}
.ws4{word-spacing:-13.571712px;}
.ws11{word-spacing:-13.521024px;}
.ws0{word-spacing:-13.264128px;}
.ws10{word-spacing:-13.159872px;}
.ws15{word-spacing:-11.670912px;}
.wse{word-spacing:-0.070389px;}
.wsa{word-spacing:0.000000px;}
._1b{margin-left:-8.080128px;}
._10{margin-left:-6.713280px;}
._f{margin-left:-5.067360px;}
._14{margin-left:-3.639456px;}
._c{margin-left:-2.317248px;}
._2{margin-left:-1.258560px;}
._0{width:1.039680px;}
._1{width:2.134080px;}
._4{width:3.314880px;}
._11{width:4.402368px;}
._a{width:5.448960px;}
._17{width:7.256448px;}
._b{width:8.530848px;}
._9{width:9.884160px;}
._12{width:11.658240px;}
._13{width:12.677472px;}
._19{width:14.950080px;}
._e{width:16.030080px;}
._16{width:17.804160px;}
._d{width:19.261440px;}
._18{width:20.306880px;}
._1a{width:21.616704px;}
._8{width:50.473152px;}
._15{width:85.227984px;}
._5{width:92.584656px;}
._6{width:201.680640px;}
._3{width:253.182816px;}
._7{width:257.458176px;}
._1c{width:847.728000px;}
.fc4{color:rgb(31,56,100);}
.fc2{color:rgb(192,0,0);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.720000px;}
.fs7{font-size:58.422476px;}
.fs5{font-size:60.480000px;}
.fs3{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:70.388525px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y72{bottom:11.262148px;}
.y79{bottom:11.262164px;}
.y7a{bottom:11.262181px;}
.y7c{bottom:11.262231px;}
.y65{bottom:11.262264px;}
.y6d{bottom:11.262265px;}
.y66{bottom:11.262281px;}
.y71{bottom:11.262282px;}
.y6a{bottom:11.262297px;}
.y74{bottom:11.294543px;}
.y6c{bottom:11.482213px;}
.y7d{bottom:22.700307px;}
.y6f{bottom:35.898132px;}
.y77{bottom:35.898164px;}
.y63{bottom:35.898264px;}
.y4{bottom:57.565950px;}
.y68{bottom:60.754197px;}
.y3{bottom:77.725950px;}
.y9d{bottom:99.325950px;}
.y5f{bottom:100.045950px;}
.y3a{bottom:100.405950px;}
.y9c{bottom:118.765950px;}
.y5e{bottom:119.125950px;}
.y39{bottom:119.485950px;}
.y9b{bottom:137.845950px;}
.y5d{bottom:138.565950px;}
.y38{bottom:138.925950px;}
.y9a{bottom:156.925950px;}
.y5c{bottom:157.645950px;}
.y37{bottom:158.005950px;}
.y99{bottom:176.365950px;}
.y5b{bottom:176.725950px;}
.y36{bottom:177.085950px;}
.y98{bottom:195.445950px;}
.y5a{bottom:196.165950px;}
.y35{bottom:196.525950px;}
.y97{bottom:214.885950px;}
.y59{bottom:215.245950px;}
.y34{bottom:215.605950px;}
.y96{bottom:233.965950px;}
.y58{bottom:234.685950px;}
.y33{bottom:235.045950px;}
.y95{bottom:253.045950px;}
.y57{bottom:253.765950px;}
.y32{bottom:254.125950px;}
.y94{bottom:272.485950px;}
.y56{bottom:272.845950px;}
.y31{bottom:273.205950px;}
.y93{bottom:291.565950px;}
.y55{bottom:292.285950px;}
.y30{bottom:292.645950px;}
.y92{bottom:311.005950px;}
.y54{bottom:311.365950px;}
.y2f{bottom:311.725950px;}
.y91{bottom:330.085950px;}
.y53{bottom:330.805950px;}
.y2e{bottom:331.165950px;}
.y52{bottom:345.565950px;}
.y60{bottom:346.004400px;}
.y90{bottom:349.525950px;}
.y2d{bottom:350.245950px;}
.y61{bottom:366.689028px;}
.y8f{bottom:368.605950px;}
.y2c{bottom:369.325950px;}
.y7b{bottom:386.125800px;}
.y8e{bottom:387.685950px;}
.y2b{bottom:388.765950px;}
.y8d{bottom:407.125950px;}
.y2a{bottom:407.845950px;}
.y76{bottom:410.973000px;}
.y8c{bottom:426.205950px;}
.y29{bottom:427.285950px;}
.y78{bottom:435.609000px;}
.y8b{bottom:445.645950px;}
.y28{bottom:446.365950px;}
.y75{bottom:460.245000px;}
.y8a{bottom:464.725950px;}
.y27{bottom:465.445950px;}
.y89{bottom:483.805950px;}
.y73{bottom:484.880850px;}
.y26{bottom:484.885950px;}
.y88{bottom:503.245950px;}
.y25{bottom:503.965950px;}
.y6e{bottom:509.725200px;}
.y87{bottom:522.325950px;}
.y24{bottom:523.405950px;}
.y70{bottom:534.361050px;}
.y86{bottom:541.765950px;}
.y23{bottom:542.485950px;}
.y67{bottom:558.997050px;}
.y85{bottom:560.845950px;}
.y22{bottom:561.565950px;}
.y84{bottom:579.925950px;}
.y21{bottom:581.005950px;}
.y6b{bottom:583.633050px;}
.y83{bottom:599.365950px;}
.y20{bottom:600.085950px;}
.y69{bottom:608.488950px;}
.y1f{bottom:618.445950px;}
.y62{bottom:633.124950px;}
.y1e{bottom:636.805950px;}
.y82{bottom:637.885950px;}
.y1d{bottom:654.805950px;}
.y81{bottom:656.965950px;}
.y64{bottom:657.760950px;}
.y1c{bottom:673.165950px;}
.y80{bottom:676.045950px;}
.y1b{bottom:692.245950px;}
.y7f{bottom:695.485950px;}
.y1a{bottom:711.325950px;}
.y7e{bottom:714.565950px;}
.y19{bottom:730.765950px;}
.y51{bottom:734.005950px;}
.y18{bottom:749.845950px;}
.y50{bottom:753.085950px;}
.y17{bottom:768.925950px;}
.y4f{bottom:772.165950px;}
.y16{bottom:788.365950px;}
.y4e{bottom:791.605950px;}
.y15{bottom:807.445950px;}
.y4d{bottom:810.685950px;}
.y14{bottom:826.885950px;}
.y4c{bottom:830.125950px;}
.y13{bottom:845.965950px;}
.y4b{bottom:849.205950px;}
.y12{bottom:865.045950px;}
.y4a{bottom:868.285950px;}
.y11{bottom:883.405950px;}
.y49{bottom:887.725950px;}
.y10{bottom:902.485950px;}
.y48{bottom:906.805950px;}
.yf{bottom:921.925950px;}
.y47{bottom:926.245950px;}
.ye{bottom:941.005950px;}
.y46{bottom:945.325950px;}
.yd{bottom:960.445950px;}
.y45{bottom:964.765950px;}
.y9f{bottom:978.445950px;}
.y44{bottom:983.845950px;}
.yc{bottom:994.285950px;}
.y9e{bottom:1000.405950px;}
.y43{bottom:1002.925950px;}
.yb{bottom:1013.725950px;}
.y42{bottom:1022.365950px;}
.ya{bottom:1033.885950px;}
.y41{bottom:1041.445950px;}
.y9{bottom:1059.445950px;}
.y40{bottom:1060.885950px;}
.y3f{bottom:1079.965950px;}
.y8{bottom:1085.005950px;}
.y3e{bottom:1099.045950px;}
.y7{bottom:1110.205950px;}
.y3d{bottom:1118.485950px;}
.y6{bottom:1135.045950px;}
.y3c{bottom:1137.565950px;}
.y5{bottom:1154.485950px;}
.y3b{bottom:1157.005950px;}
.y2{bottom:1176.085950px;}
.y1{bottom:1195.165950px;}
.he{height:23.932095px;}
.h11{height:23.967285px;}
.h10{height:24.143265px;}
.h2{height:42.028594px;}
.h9{height:43.374375px;}
.hd{height:43.816857px;}
.h3{height:44.149219px;}
.h8{height:44.887500px;}
.h5{height:45.478125px;}
.h7{height:45.714375px;}
.h4{height:47.988281px;}
.hc{height:48.568080px;}
.h12{height:48.942021px;}
.hb{height:52.791394px;}
.h6{height:61.987500px;}
.hf{height:73.415235px;}
.ha{height:383.321550px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w4{width:110.122725px;}
.w6{width:112.867230px;}
.w7{width:113.759175px;}
.w5{width:116.675205px;}
.w3{width:227.478300px;}
.w2{width:683.550000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.061944px;}
.x1{left:85.668456px;}
.x5{left:98.060664px;}
.x3{left:106.893300px;}
.xc{left:112.668456px;}
.xe{left:116.020680px;}
.x6{left:120.608976px;}
.xa{left:275.748420px;}
.x10{left:344.871300px;}
.x7{left:383.237040px;}
.x2{left:434.549280px;}
.x4{left:447.093480px;}
.x11{left:455.680050px;}
.x12{left:458.596200px;}
.xb{left:553.819080px;}
.x9{left:633.991800px;}
.xd{left:799.345920px;}
.x8{left:808.518360px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-5.113856pt;}
.ls45{letter-spacing:-3.277824pt;}
.ls7{letter-spacing:-2.511872pt;}
.ls44{letter-spacing:-2.354176pt;}
.ls18{letter-spacing:-1.838592pt;}
.ls3{letter-spacing:-1.605120pt;}
.ls25{letter-spacing:-1.306624pt;}
.ls2e{letter-spacing:-1.261568pt;}
.ls1e{letter-spacing:-1.182720pt;}
.ls3c{letter-spacing:-1.160192pt;}
.ls32{letter-spacing:-1.030656pt;}
.ls22{letter-spacing:-1.002496pt;}
.ls1f{letter-spacing:-0.963072pt;}
.ls35{letter-spacing:-0.951808pt;}
.ls43{letter-spacing:-0.884224pt;}
.ls2b{letter-spacing:-0.872960pt;}
.ls33{letter-spacing:-0.867328pt;}
.ls3a{letter-spacing:-0.754688pt;}
.ls1c{letter-spacing:-0.749056pt;}
.ls2c{letter-spacing:-0.709632pt;}
.ls34{letter-spacing:-0.675840pt;}
.ls9{letter-spacing:-0.664576pt;}
.ls1d{letter-spacing:-0.658944pt;}
.ls3f{letter-spacing:-0.630784pt;}
.ls2f{letter-spacing:-0.608256pt;}
.ls2{letter-spacing:-0.437760pt;}
.ls39{letter-spacing:-0.416768pt;}
.ls5{letter-spacing:-0.369664pt;}
.ls19{letter-spacing:-0.365568pt;}
.ls10{letter-spacing:-0.311808pt;}
.ls24{letter-spacing:-0.304128pt;}
.lsd{letter-spacing:-0.275968pt;}
.ls2d{letter-spacing:-0.264704pt;}
.ls1a{letter-spacing:-0.241920pt;}
.ls20{letter-spacing:-0.236544pt;}
.ls37{letter-spacing:-0.230912pt;}
.lsf{letter-spacing:-0.225280pt;}
.ls21{letter-spacing:-0.208384pt;}
.ls3e{letter-spacing:-0.202752pt;}
.ls29{letter-spacing:-0.197120pt;}
.ls40{letter-spacing:-0.191488pt;}
.lse{letter-spacing:-0.185856pt;}
.ls1b{letter-spacing:-0.180224pt;}
.ls38{letter-spacing:-0.174592pt;}
.ls8{letter-spacing:-0.168960pt;}
.ls2a{letter-spacing:-0.163328pt;}
.ls30{letter-spacing:-0.157696pt;}
.ls15{letter-spacing:-0.152064pt;}
.ls13{letter-spacing:-0.146432pt;}
.ls11{letter-spacing:-0.140800pt;}
.ls41{letter-spacing:-0.135168pt;}
.ls17{letter-spacing:-0.129536pt;}
.ls14{letter-spacing:-0.118272pt;}
.ls6{letter-spacing:-0.117760pt;}
.ls3d{letter-spacing:-0.112640pt;}
.ls16{letter-spacing:-0.107008pt;}
.ls23{letter-spacing:-0.090112pt;}
.ls28{letter-spacing:-0.084480pt;}
.ls12{letter-spacing:-0.045056pt;}
.ls4{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.114248pt;}
.lsc{letter-spacing:0.215296pt;}
.lsb{letter-spacing:0.237568pt;}
.ls36{letter-spacing:0.354816pt;}
.lsa{letter-spacing:0.415744pt;}
.ls26{letter-spacing:1.441024pt;}
.ls42{letter-spacing:2.325248pt;}
.ls3b{letter-spacing:2.464256pt;}
.ls1{letter-spacing:7.518720pt;}
.ls0{letter-spacing:10.312064pt;}
.ws5{word-spacing:-18.775296pt;}
.wsf{word-spacing:-14.447229pt;}
.ws1{word-spacing:-13.189120pt;}
.ws6{word-spacing:-13.128192pt;}
.ws3{word-spacing:-12.728320pt;}
.wsc{word-spacing:-12.683264pt;}
.ws12{word-spacing:-12.643840pt;}
.ws8{word-spacing:-12.621312pt;}
.ws7{word-spacing:-12.610048pt;}
.wsd{word-spacing:-12.576256pt;}
.ws2{word-spacing:-12.559360pt;}
.ws14{word-spacing:-12.542464pt;}
.ws13{word-spacing:-12.536832pt;}
.wsb{word-spacing:-12.531200pt;}
.ws9{word-spacing:-12.069376pt;}
.ws4{word-spacing:-12.063744pt;}
.ws11{word-spacing:-12.018688pt;}
.ws0{word-spacing:-11.790336pt;}
.ws10{word-spacing:-11.697664pt;}
.ws15{word-spacing:-10.374144pt;}
.wse{word-spacing:-0.062568pt;}
.wsa{word-spacing:0.000000pt;}
._1b{margin-left:-7.182336pt;}
._10{margin-left:-5.967360pt;}
._f{margin-left:-4.504320pt;}
._14{margin-left:-3.235072pt;}
._c{margin-left:-2.059776pt;}
._2{margin-left:-1.118720pt;}
._0{width:0.924160pt;}
._1{width:1.896960pt;}
._4{width:2.946560pt;}
._11{width:3.913216pt;}
._a{width:4.843520pt;}
._17{width:6.450176pt;}
._b{width:7.582976pt;}
._9{width:8.785920pt;}
._12{width:10.362880pt;}
._13{width:11.268864pt;}
._19{width:13.288960pt;}
._e{width:14.248960pt;}
._16{width:15.825920pt;}
._d{width:17.121280pt;}
._18{width:18.050560pt;}
._1a{width:19.214848pt;}
._8{width:44.865024pt;}
._15{width:75.758208pt;}
._5{width:82.297472pt;}
._6{width:179.271680pt;}
._3{width:225.051392pt;}
._7{width:228.851712pt;}
._1c{width:753.536000pt;}
.fs0{font-size:48.640000pt;}
.fs7{font-size:51.931089pt;}
.fs5{font-size:53.760000pt;}
.fs3{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:62.567578pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:10.010798pt;}
.y79{bottom:10.010813pt;}
.y7a{bottom:10.010827pt;}
.y7c{bottom:10.010872pt;}
.y65{bottom:10.010902pt;}
.y6d{bottom:10.010903pt;}
.y66{bottom:10.010916pt;}
.y71{bottom:10.010917pt;}
.y6a{bottom:10.010931pt;}
.y74{bottom:10.039594pt;}
.y6c{bottom:10.206412pt;}
.y7d{bottom:20.178051pt;}
.y6f{bottom:31.909450pt;}
.y77{bottom:31.909479pt;}
.y63{bottom:31.909568pt;}
.y4{bottom:51.169733pt;}
.y68{bottom:54.003731pt;}
.y3{bottom:69.089733pt;}
.y9d{bottom:88.289733pt;}
.y5f{bottom:88.929733pt;}
.y3a{bottom:89.249733pt;}
.y9c{bottom:105.569733pt;}
.y5e{bottom:105.889733pt;}
.y39{bottom:106.209733pt;}
.y9b{bottom:122.529733pt;}
.y5d{bottom:123.169733pt;}
.y38{bottom:123.489733pt;}
.y9a{bottom:139.489733pt;}
.y5c{bottom:140.129733pt;}
.y37{bottom:140.449733pt;}
.y99{bottom:156.769733pt;}
.y5b{bottom:157.089733pt;}
.y36{bottom:157.409733pt;}
.y98{bottom:173.729733pt;}
.y5a{bottom:174.369733pt;}
.y35{bottom:174.689733pt;}
.y97{bottom:191.009733pt;}
.y59{bottom:191.329733pt;}
.y34{bottom:191.649733pt;}
.y96{bottom:207.969733pt;}
.y58{bottom:208.609733pt;}
.y33{bottom:208.929733pt;}
.y95{bottom:224.929733pt;}
.y57{bottom:225.569733pt;}
.y32{bottom:225.889733pt;}
.y94{bottom:242.209733pt;}
.y56{bottom:242.529733pt;}
.y31{bottom:242.849733pt;}
.y93{bottom:259.169733pt;}
.y55{bottom:259.809733pt;}
.y30{bottom:260.129733pt;}
.y92{bottom:276.449733pt;}
.y54{bottom:276.769733pt;}
.y2f{bottom:277.089733pt;}
.y91{bottom:293.409733pt;}
.y53{bottom:294.049733pt;}
.y2e{bottom:294.369733pt;}
.y52{bottom:307.169733pt;}
.y60{bottom:307.559467pt;}
.y90{bottom:310.689733pt;}
.y2d{bottom:311.329733pt;}
.y61{bottom:325.945803pt;}
.y8f{bottom:327.649733pt;}
.y2c{bottom:328.289733pt;}
.y7b{bottom:343.222933pt;}
.y8e{bottom:344.609733pt;}
.y2b{bottom:345.569733pt;}
.y8d{bottom:361.889733pt;}
.y2a{bottom:362.529733pt;}
.y76{bottom:365.309333pt;}
.y8c{bottom:378.849733pt;}
.y29{bottom:379.809733pt;}
.y78{bottom:387.208000pt;}
.y8b{bottom:396.129733pt;}
.y28{bottom:396.769733pt;}
.y75{bottom:409.106667pt;}
.y8a{bottom:413.089733pt;}
.y27{bottom:413.729733pt;}
.y89{bottom:430.049733pt;}
.y73{bottom:431.005200pt;}
.y26{bottom:431.009733pt;}
.y88{bottom:447.329733pt;}
.y25{bottom:447.969733pt;}
.y6e{bottom:453.089067pt;}
.y87{bottom:464.289733pt;}
.y24{bottom:465.249733pt;}
.y70{bottom:474.987600pt;}
.y86{bottom:481.569733pt;}
.y23{bottom:482.209733pt;}
.y67{bottom:496.886267pt;}
.y85{bottom:498.529733pt;}
.y22{bottom:499.169733pt;}
.y84{bottom:515.489733pt;}
.y21{bottom:516.449733pt;}
.y6b{bottom:518.784933pt;}
.y83{bottom:532.769733pt;}
.y20{bottom:533.409733pt;}
.y69{bottom:540.879067pt;}
.y1f{bottom:549.729733pt;}
.y62{bottom:562.777733pt;}
.y1e{bottom:566.049733pt;}
.y82{bottom:567.009733pt;}
.y1d{bottom:582.049733pt;}
.y81{bottom:583.969733pt;}
.y64{bottom:584.676400pt;}
.y1c{bottom:598.369733pt;}
.y80{bottom:600.929733pt;}
.y1b{bottom:615.329733pt;}
.y7f{bottom:618.209733pt;}
.y1a{bottom:632.289733pt;}
.y7e{bottom:635.169733pt;}
.y19{bottom:649.569733pt;}
.y51{bottom:652.449733pt;}
.y18{bottom:666.529733pt;}
.y50{bottom:669.409733pt;}
.y17{bottom:683.489733pt;}
.y4f{bottom:686.369733pt;}
.y16{bottom:700.769733pt;}
.y4e{bottom:703.649733pt;}
.y15{bottom:717.729733pt;}
.y4d{bottom:720.609733pt;}
.y14{bottom:735.009733pt;}
.y4c{bottom:737.889733pt;}
.y13{bottom:751.969733pt;}
.y4b{bottom:754.849733pt;}
.y12{bottom:768.929733pt;}
.y4a{bottom:771.809733pt;}
.y11{bottom:785.249733pt;}
.y49{bottom:789.089733pt;}
.y10{bottom:802.209733pt;}
.y48{bottom:806.049733pt;}
.yf{bottom:819.489733pt;}
.y47{bottom:823.329733pt;}
.ye{bottom:836.449733pt;}
.y46{bottom:840.289733pt;}
.yd{bottom:853.729733pt;}
.y45{bottom:857.569733pt;}
.y9f{bottom:869.729733pt;}
.y44{bottom:874.529733pt;}
.yc{bottom:883.809733pt;}
.y9e{bottom:889.249733pt;}
.y43{bottom:891.489733pt;}
.yb{bottom:901.089733pt;}
.y42{bottom:908.769733pt;}
.ya{bottom:919.009733pt;}
.y41{bottom:925.729733pt;}
.y9{bottom:941.729733pt;}
.y40{bottom:943.009733pt;}
.y3f{bottom:959.969733pt;}
.y8{bottom:964.449733pt;}
.y3e{bottom:976.929733pt;}
.y7{bottom:986.849733pt;}
.y3d{bottom:994.209733pt;}
.y6{bottom:1008.929733pt;}
.y3c{bottom:1011.169733pt;}
.y5{bottom:1026.209733pt;}
.y3b{bottom:1028.449733pt;}
.y2{bottom:1045.409733pt;}
.y1{bottom:1062.369733pt;}
.he{height:21.272973pt;}
.h11{height:21.304253pt;}
.h10{height:21.460680pt;}
.h2{height:37.358750pt;}
.h9{height:38.555000pt;}
.hd{height:38.948317pt;}
.h3{height:39.243750pt;}
.h8{height:39.900000pt;}
.h5{height:40.425000pt;}
.h7{height:40.635000pt;}
.h4{height:42.656250pt;}
.hc{height:43.171627pt;}
.h12{height:43.504019pt;}
.hb{height:46.925683pt;}
.h6{height:55.100000pt;}
.hf{height:65.257987pt;}
.ha{height:340.730267pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w4{width:97.886867pt;}
.w6{width:100.326427pt;}
.w7{width:101.119267pt;}
.w5{width:103.711293pt;}
.w3{width:202.202933pt;}
.w2{width:607.600000pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.166173pt;}
.x1{left:76.149739pt;}
.x5{left:87.165035pt;}
.x3{left:95.016267pt;}
.xc{left:100.149739pt;}
.xe{left:103.129493pt;}
.x6{left:107.207979pt;}
.xa{left:245.109707pt;}
.x10{left:306.552267pt;}
.x7{left:340.655147pt;}
.x2{left:386.266027pt;}
.x4{left:397.416427pt;}
.x11{left:405.048933pt;}
.x12{left:407.641067pt;}
.xb{left:492.283627pt;}
.x9{left:563.548267pt;}
.xd{left:710.529707pt;}
.x8{left:718.682987pt;}
}




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