
    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_f01798d8d4da348c36c29848.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_7ed5e0a8536982748a04be08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_bc4d8f64ac608a6355cf516b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_33cd48b3ce90521dd012b5ba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9ee799dc6456af4c9471e663.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.757812;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_d2ecfe0f34ffa33d23da5669.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_ae08ba20f5852b120ddc9c5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935059;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_41c20a8b2da458557d3d56c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_f074ba7f77d561a41db3f572.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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_f799b741866abb515a281e8b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.925293;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_a92ac680fd792c2dc4dc9bbd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_e64a5a19422f38d14372e121.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.877000;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_92966e6f368e739284d37462.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.951172;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_835fa3a3607be3b9ff090214.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_add2d4383f52b750ef58663c.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e09f99ee02a5e74246c6fd3c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_02c023e2eab8f6dfba7ca47c.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_622461c9f1f2bcd6a9d3bbb0.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_4006b1ba42c024de63cb1548.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_175ec929c65213be3690853e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.481536px;}
.ls18{letter-spacing:-0.448704px;}
.ls33{letter-spacing:-0.417312px;}
.ls35{letter-spacing:-0.399168px;}
.ls21{letter-spacing:-0.393984px;}
.ls32{letter-spacing:-0.381024px;}
.ls36{letter-spacing:-0.338688px;}
.lsb{letter-spacing:-0.320544px;}
.ls31{letter-spacing:-0.302400px;}
.ls34{letter-spacing:-0.260064px;}
.ls2f{letter-spacing:-0.241920px;}
.ls37{letter-spacing:-0.223776px;}
.ls11{letter-spacing:-0.207936px;}
.ls2c{letter-spacing:-0.198720px;}
.ls2e{letter-spacing:-0.175392px;}
.lse{letter-spacing:-0.158976px;}
.ls2d{letter-spacing:-0.157248px;}
.ls30{letter-spacing:-0.145152px;}
.lsc{letter-spacing:-0.120960px;}
.lsf{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.042768px;}
.ls1{letter-spacing:0.072576px;}
.lsa{letter-spacing:0.073872px;}
.ls9{letter-spacing:0.097200px;}
.ls15{letter-spacing:0.123552px;}
.ls1e{letter-spacing:0.125280px;}
.ls1a{letter-spacing:0.125424px;}
.ls14{letter-spacing:0.133056px;}
.ls1f{letter-spacing:0.218592px;}
.ls1b{letter-spacing:0.239040px;}
.ls13{letter-spacing:0.240048px;}
.ls1d{letter-spacing:0.261360px;}
.ls17{letter-spacing:0.266112px;}
.ls1c{letter-spacing:0.274032px;}
.ls22{letter-spacing:0.275616px;}
.lsd{letter-spacing:0.318384px;}
.ls16{letter-spacing:0.346896px;}
.ls19{letter-spacing:0.356400px;}
.ls10{letter-spacing:0.365904px;}
.ls3{letter-spacing:1.788192px;}
.ls4{letter-spacing:1.801440px;}
.ls2{letter-spacing:1.814400px;}
.ls6{letter-spacing:5.119776px;}
.ls2b{letter-spacing:6.258240px;}
.ls27{letter-spacing:6.268320px;}
.ls26{letter-spacing:6.269616px;}
.ls2a{letter-spacing:6.508800px;}
.ls29{letter-spacing:7.957008px;}
.ls5{letter-spacing:31.278672px;}
.ls23{letter-spacing:36.216720px;}
.ls20{letter-spacing:54.866880px;}
.ls24{letter-spacing:63.588960px;}
.ls28{letter-spacing:68.787648px;}
.ls25{letter-spacing:102.156768px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.830400px;}
.wsa{word-spacing:-18.255744px;}
.ws4{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.985600px;}
.wsb{word-spacing:-16.656192px;}
.wsd{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.004224px;}
.ws14{word-spacing:-14.974848px;}
.ws12{word-spacing:-14.962752px;}
.ws10{word-spacing:-14.896224px;}
.wsc{word-spacing:-14.878080px;}
.ws13{word-spacing:-14.859936px;}
.ws11{word-spacing:-14.817600px;}
.wsf{word-spacing:-14.781312px;}
.wse{word-spacing:-14.738976px;}
.ws6{word-spacing:-13.528944px;}
.ws7{word-spacing:-13.471920px;}
.ws8{word-spacing:-0.072000px;}
.ws9{word-spacing:-0.060480px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-4.485600px;}
._8{margin-left:-3.151008px;}
._3{margin-left:-2.114784px;}
._1{margin-left:-1.033200px;}
._0{width:1.010880px;}
._a{width:2.210400px;}
._4{width:3.801600px;}
._c{width:4.996800px;}
._5{width:6.048000px;}
._9{width:7.056000px;}
._f{width:8.078400px;}
._2{width:9.532800px;}
._d{width:10.585728px;}
._13{width:11.718144px;}
._b{width:13.075200px;}
._12{width:14.119200px;}
._7{width:15.336000px;}
._14{width:16.416000px;}
._6{width:19.785600px;}
._10{width:24.667200px;}
._e{width:26.251200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:111.960000px;}
.y4{bottom:113.040000px;}
.y3{bottom:127.440000px;}
.y4d{bottom:131.040000px;}
.y2a{bottom:132.840000px;}
.y2{bottom:142.200000px;}
.y29{bottom:151.920000px;}
.y56{bottom:153.720000px;}
.y26{bottom:163.440000px;}
.y76{bottom:165.240000px;}
.y61{bottom:171.000000px;}
.y55{bottom:174.600000px;}
.y25{bottom:183.960000px;}
.y75{bottom:186.120000px;}
.y4c{bottom:187.920000px;}
.y54{bottom:195.120000px;}
.y60{bottom:201.240000px;}
.y24{bottom:204.840000px;}
.y74{bottom:206.640000px;}
.y4b{bottom:208.080000px;}
.y53{bottom:216.000000px;}
.y4a{bottom:219.960000px;}
.y23{bottom:225.360000px;}
.y73{bottom:227.520000px;}
.y52{bottom:236.520000px;}
.y22{bottom:246.240000px;}
.y72{bottom:248.400000px;}
.y51{bottom:257.400000px;}
.y21{bottom:266.760000px;}
.y71{bottom:270.360000px;}
.y50{bottom:277.920000px;}
.y20{bottom:290.880000px;}
.y70{bottom:292.320000px;}
.y6f{bottom:314.280000px;}
.y4f{bottom:316.080000px;}
.y1f{bottom:325.800000px;}
.y9b{bottom:327.240000px;}
.y6e{bottom:336.240000px;}
.y1e{bottom:346.320000px;}
.y9a{bottom:346.680000px;}
.y6d{bottom:358.560000px;}
.y99{bottom:366.120000px;}
.y1d{bottom:367.200000px;}
.y6c{bottom:379.080000px;}
.y98{bottom:385.560000px;}
.y1c{bottom:387.720000px;}
.y6b{bottom:401.040000px;}
.y97{bottom:404.280000px;}
.y1b{bottom:408.600000px;}
.y6a{bottom:421.920000px;}
.y96{bottom:423.360000px;}
.y1a{bottom:429.120000px;}
.y5f{bottom:441.360000px;}
.y95{bottom:442.800000px;}
.y69{bottom:446.400000px;}
.y19{bottom:450.000000px;}
.y5e{bottom:461.880000px;}
.y94{bottom:462.240000px;}
.y18{bottom:470.520000px;}
.y93{bottom:481.680000px;}
.y5d{bottom:482.760000px;}
.y68{bottom:483.480000px;}
.y17{bottom:491.040000px;}
.y49{bottom:491.760000px;}
.y67{bottom:498.960000px;}
.y92{bottom:501.120000px;}
.y5c{bottom:503.280000px;}
.y16{bottom:511.920000px;}
.y48{bottom:515.880000px;}
.y91{bottom:519.840000px;}
.y5b{bottom:524.160000px;}
.y66{bottom:529.200000px;}
.y4e{bottom:529.560000px;}
.y15{bottom:535.680000px;}
.y90{bottom:538.920000px;}
.y5a{bottom:544.680000px;}
.y47{bottom:550.440000px;}
.y8f{bottom:557.640000px;}
.y59{bottom:565.560000px;}
.y14{bottom:569.880000px;}
.y46{bottom:571.320000px;}
.y8e{bottom:577.080000px;}
.y45{bottom:591.840000px;}
.y8d{bottom:595.800000px;}
.y58{bottom:603.720000px;}
.y13{bottom:605.880000px;}
.y44{bottom:612.720000px;}
.y8c{bottom:615.240000px;}
.y12{bottom:620.280000px;}
.y11{bottom:632.160000px;}
.y43{bottom:633.240000px;}
.y57{bottom:633.600000px;}
.y8b{bottom:634.680000px;}
.y8a{bottom:653.760000px;}
.y42{bottom:654.120000px;}
.y89{bottom:672.480000px;}
.y41{bottom:674.640000px;}
.y88{bottom:691.920000px;}
.y40{bottom:695.520000px;}
.y87{bottom:711.360000px;}
.y3f{bottom:716.040000px;}
.y86{bottom:730.800000px;}
.y3e{bottom:736.920000px;}
.y85{bottom:749.520000px;}
.y3d{bottom:757.440000px;}
.y84{bottom:768.600000px;}
.y3c{bottom:778.320000px;}
.y83{bottom:787.320000px;}
.y3b{bottom:798.840000px;}
.y82{bottom:806.760000px;}
.y65{bottom:819.360000px;}
.y3a{bottom:819.720000px;}
.y81{bottom:826.200000px;}
.y39{bottom:840.240000px;}
.y80{bottom:844.920000px;}
.y10{bottom:859.320000px;}
.y38{bottom:861.120000px;}
.y7f{bottom:867.240000px;}
.yf{bottom:879.840000px;}
.y37{bottom:881.640000px;}
.ye{bottom:900.720000px;}
.y7e{bottom:902.160000px;}
.y36{bottom:902.520000px;}
.yd{bottom:921.240000px;}
.y35{bottom:923.040000px;}
.y7d{bottom:926.640000px;}
.yc{bottom:942.120000px;}
.y34{bottom:943.920000px;}
.yb{bottom:962.640000px;}
.y33{bottom:964.440000px;}
.ya{bottom:983.520000px;}
.y7c{bottom:984.960000px;}
.y32{bottom:985.320000px;}
.y9{bottom:1004.040000px;}
.y31{bottom:1005.840000px;}
.y7b{bottom:1009.440000px;}
.y30{bottom:1026.720000px;}
.y8{bottom:1028.520000px;}
.y7a{bottom:1046.160000px;}
.y2f{bottom:1047.240000px;}
.y64{bottom:1050.840000px;}
.y7{bottom:1064.520000px;}
.y79{bottom:1065.240000px;}
.y2e{bottom:1068.120000px;}
.y6{bottom:1080.000000px;}
.y78{bottom:1085.760000px;}
.y63{bottom:1086.840000px;}
.y2d{bottom:1088.640000px;}
.y62{bottom:1109.160000px;}
.y2c{bottom:1109.520000px;}
.y77{bottom:1110.600000px;}
.y5{bottom:1116.720000px;}
.y28{bottom:1128.960000px;}
.y1{bottom:1138.320000px;}
.y27{bottom:1143.000000px;}
.h3{height:28.704375px;}
.hb{height:31.672266px;}
.ha{height:35.013516px;}
.h6{height:35.175938px;}
.h9{height:39.837656px;}
.hc{height:42.022969px;}
.h5{height:44.562656px;}
.h8{height:44.592188px;}
.hd{height:47.988281px;}
.h7{height:48.224531px;}
.h2{height:50.027344px;}
.h4{height:53.402344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:80.640000px;}
.xe{left:88.490844px;}
.x2{left:89.816508px;}
.x6{left:99.406872px;}
.x10{left:107.640000px;}
.x12{left:128.715084px;}
.x11{left:134.640036px;}
.xb{left:291.637188px;}
.xc{left:296.397936px;}
.xa{left:298.073736px;}
.x9{left:309.291516px;}
.x5{left:368.252280px;}
.xf{left:376.710480px;}
.x4{left:446.152680px;}
.xd{left:738.712440px;}
.x8{left:741.052440px;}
.x3{left:743.152680px;}
.x7{left:811.664640px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.428032pt;}
.ls18{letter-spacing:-0.398848pt;}
.ls33{letter-spacing:-0.370944pt;}
.ls35{letter-spacing:-0.354816pt;}
.ls21{letter-spacing:-0.350208pt;}
.ls32{letter-spacing:-0.338688pt;}
.ls36{letter-spacing:-0.301056pt;}
.lsb{letter-spacing:-0.284928pt;}
.ls31{letter-spacing:-0.268800pt;}
.ls34{letter-spacing:-0.231168pt;}
.ls2f{letter-spacing:-0.215040pt;}
.ls37{letter-spacing:-0.198912pt;}
.ls11{letter-spacing:-0.184832pt;}
.ls2c{letter-spacing:-0.176640pt;}
.ls2e{letter-spacing:-0.155904pt;}
.lse{letter-spacing:-0.141312pt;}
.ls2d{letter-spacing:-0.139776pt;}
.ls30{letter-spacing:-0.129024pt;}
.lsc{letter-spacing:-0.107520pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.038016pt;}
.ls1{letter-spacing:0.064512pt;}
.lsa{letter-spacing:0.065664pt;}
.ls9{letter-spacing:0.086400pt;}
.ls15{letter-spacing:0.109824pt;}
.ls1e{letter-spacing:0.111360pt;}
.ls1a{letter-spacing:0.111488pt;}
.ls14{letter-spacing:0.118272pt;}
.ls1f{letter-spacing:0.194304pt;}
.ls1b{letter-spacing:0.212480pt;}
.ls13{letter-spacing:0.213376pt;}
.ls1d{letter-spacing:0.232320pt;}
.ls17{letter-spacing:0.236544pt;}
.ls1c{letter-spacing:0.243584pt;}
.ls22{letter-spacing:0.244992pt;}
.lsd{letter-spacing:0.283008pt;}
.ls16{letter-spacing:0.308352pt;}
.ls19{letter-spacing:0.316800pt;}
.ls10{letter-spacing:0.325248pt;}
.ls3{letter-spacing:1.589504pt;}
.ls4{letter-spacing:1.601280pt;}
.ls2{letter-spacing:1.612800pt;}
.ls6{letter-spacing:4.550912pt;}
.ls2b{letter-spacing:5.562880pt;}
.ls27{letter-spacing:5.571840pt;}
.ls26{letter-spacing:5.572992pt;}
.ls2a{letter-spacing:5.785600pt;}
.ls29{letter-spacing:7.072896pt;}
.ls5{letter-spacing:27.803264pt;}
.ls23{letter-spacing:32.192640pt;}
.ls20{letter-spacing:48.770560pt;}
.ls24{letter-spacing:56.523520pt;}
.ls28{letter-spacing:61.144576pt;}
.ls25{letter-spacing:90.806016pt;}
.ws0{word-spacing:-19.404800pt;}
.wsa{word-spacing:-16.227328pt;}
.ws4{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.987200pt;}
.wsb{word-spacing:-14.805504pt;}
.wsd{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.337088pt;}
.ws14{word-spacing:-13.310976pt;}
.ws12{word-spacing:-13.300224pt;}
.ws10{word-spacing:-13.241088pt;}
.wsc{word-spacing:-13.224960pt;}
.ws13{word-spacing:-13.208832pt;}
.ws11{word-spacing:-13.171200pt;}
.wsf{word-spacing:-13.138944pt;}
.wse{word-spacing:-13.101312pt;}
.ws6{word-spacing:-12.025728pt;}
.ws7{word-spacing:-11.975040pt;}
.ws8{word-spacing:-0.064000pt;}
.ws9{word-spacing:-0.053760pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-3.987200pt;}
._8{margin-left:-2.800896pt;}
._3{margin-left:-1.879808pt;}
._1{margin-left:-0.918400pt;}
._0{width:0.898560pt;}
._a{width:1.964800pt;}
._4{width:3.379200pt;}
._c{width:4.441600pt;}
._5{width:5.376000pt;}
._9{width:6.272000pt;}
._f{width:7.180800pt;}
._2{width:8.473600pt;}
._d{width:9.409536pt;}
._13{width:10.416128pt;}
._b{width:11.622400pt;}
._12{width:12.550400pt;}
._7{width:13.632000pt;}
._14{width:14.592000pt;}
._6{width:17.587200pt;}
._10{width:21.926400pt;}
._e{width:23.334400pt;}
.fs1{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:99.520000pt;}
.y4{bottom:100.480000pt;}
.y3{bottom:113.280000pt;}
.y4d{bottom:116.480000pt;}
.y2a{bottom:118.080000pt;}
.y2{bottom:126.400000pt;}
.y29{bottom:135.040000pt;}
.y56{bottom:136.640000pt;}
.y26{bottom:145.280000pt;}
.y76{bottom:146.880000pt;}
.y61{bottom:152.000000pt;}
.y55{bottom:155.200000pt;}
.y25{bottom:163.520000pt;}
.y75{bottom:165.440000pt;}
.y4c{bottom:167.040000pt;}
.y54{bottom:173.440000pt;}
.y60{bottom:178.880000pt;}
.y24{bottom:182.080000pt;}
.y74{bottom:183.680000pt;}
.y4b{bottom:184.960000pt;}
.y53{bottom:192.000000pt;}
.y4a{bottom:195.520000pt;}
.y23{bottom:200.320000pt;}
.y73{bottom:202.240000pt;}
.y52{bottom:210.240000pt;}
.y22{bottom:218.880000pt;}
.y72{bottom:220.800000pt;}
.y51{bottom:228.800000pt;}
.y21{bottom:237.120000pt;}
.y71{bottom:240.320000pt;}
.y50{bottom:247.040000pt;}
.y20{bottom:258.560000pt;}
.y70{bottom:259.840000pt;}
.y6f{bottom:279.360000pt;}
.y4f{bottom:280.960000pt;}
.y1f{bottom:289.600000pt;}
.y9b{bottom:290.880000pt;}
.y6e{bottom:298.880000pt;}
.y1e{bottom:307.840000pt;}
.y9a{bottom:308.160000pt;}
.y6d{bottom:318.720000pt;}
.y99{bottom:325.440000pt;}
.y1d{bottom:326.400000pt;}
.y6c{bottom:336.960000pt;}
.y98{bottom:342.720000pt;}
.y1c{bottom:344.640000pt;}
.y6b{bottom:356.480000pt;}
.y97{bottom:359.360000pt;}
.y1b{bottom:363.200000pt;}
.y6a{bottom:375.040000pt;}
.y96{bottom:376.320000pt;}
.y1a{bottom:381.440000pt;}
.y5f{bottom:392.320000pt;}
.y95{bottom:393.600000pt;}
.y69{bottom:396.800000pt;}
.y19{bottom:400.000000pt;}
.y5e{bottom:410.560000pt;}
.y94{bottom:410.880000pt;}
.y18{bottom:418.240000pt;}
.y93{bottom:428.160000pt;}
.y5d{bottom:429.120000pt;}
.y68{bottom:429.760000pt;}
.y17{bottom:436.480000pt;}
.y49{bottom:437.120000pt;}
.y67{bottom:443.520000pt;}
.y92{bottom:445.440000pt;}
.y5c{bottom:447.360000pt;}
.y16{bottom:455.040000pt;}
.y48{bottom:458.560000pt;}
.y91{bottom:462.080000pt;}
.y5b{bottom:465.920000pt;}
.y66{bottom:470.400000pt;}
.y4e{bottom:470.720000pt;}
.y15{bottom:476.160000pt;}
.y90{bottom:479.040000pt;}
.y5a{bottom:484.160000pt;}
.y47{bottom:489.280000pt;}
.y8f{bottom:495.680000pt;}
.y59{bottom:502.720000pt;}
.y14{bottom:506.560000pt;}
.y46{bottom:507.840000pt;}
.y8e{bottom:512.960000pt;}
.y45{bottom:526.080000pt;}
.y8d{bottom:529.600000pt;}
.y58{bottom:536.640000pt;}
.y13{bottom:538.560000pt;}
.y44{bottom:544.640000pt;}
.y8c{bottom:546.880000pt;}
.y12{bottom:551.360000pt;}
.y11{bottom:561.920000pt;}
.y43{bottom:562.880000pt;}
.y57{bottom:563.200000pt;}
.y8b{bottom:564.160000pt;}
.y8a{bottom:581.120000pt;}
.y42{bottom:581.440000pt;}
.y89{bottom:597.760000pt;}
.y41{bottom:599.680000pt;}
.y88{bottom:615.040000pt;}
.y40{bottom:618.240000pt;}
.y87{bottom:632.320000pt;}
.y3f{bottom:636.480000pt;}
.y86{bottom:649.600000pt;}
.y3e{bottom:655.040000pt;}
.y85{bottom:666.240000pt;}
.y3d{bottom:673.280000pt;}
.y84{bottom:683.200000pt;}
.y3c{bottom:691.840000pt;}
.y83{bottom:699.840000pt;}
.y3b{bottom:710.080000pt;}
.y82{bottom:717.120000pt;}
.y65{bottom:728.320000pt;}
.y3a{bottom:728.640000pt;}
.y81{bottom:734.400000pt;}
.y39{bottom:746.880000pt;}
.y80{bottom:751.040000pt;}
.y10{bottom:763.840000pt;}
.y38{bottom:765.440000pt;}
.y7f{bottom:770.880000pt;}
.yf{bottom:782.080000pt;}
.y37{bottom:783.680000pt;}
.ye{bottom:800.640000pt;}
.y7e{bottom:801.920000pt;}
.y36{bottom:802.240000pt;}
.yd{bottom:818.880000pt;}
.y35{bottom:820.480000pt;}
.y7d{bottom:823.680000pt;}
.yc{bottom:837.440000pt;}
.y34{bottom:839.040000pt;}
.yb{bottom:855.680000pt;}
.y33{bottom:857.280000pt;}
.ya{bottom:874.240000pt;}
.y7c{bottom:875.520000pt;}
.y32{bottom:875.840000pt;}
.y9{bottom:892.480000pt;}
.y31{bottom:894.080000pt;}
.y7b{bottom:897.280000pt;}
.y30{bottom:912.640000pt;}
.y8{bottom:914.240000pt;}
.y7a{bottom:929.920000pt;}
.y2f{bottom:930.880000pt;}
.y64{bottom:934.080000pt;}
.y7{bottom:946.240000pt;}
.y79{bottom:946.880000pt;}
.y2e{bottom:949.440000pt;}
.y6{bottom:960.000000pt;}
.y78{bottom:965.120000pt;}
.y63{bottom:966.080000pt;}
.y2d{bottom:967.680000pt;}
.y62{bottom:985.920000pt;}
.y2c{bottom:986.240000pt;}
.y77{bottom:987.200000pt;}
.y5{bottom:992.640000pt;}
.y28{bottom:1003.520000pt;}
.y1{bottom:1011.840000pt;}
.y27{bottom:1016.000000pt;}
.h3{height:25.515000pt;}
.hb{height:28.153125pt;}
.ha{height:31.123125pt;}
.h6{height:31.267500pt;}
.h9{height:35.411250pt;}
.hc{height:37.353750pt;}
.h5{height:39.611250pt;}
.h8{height:39.637500pt;}
.hd{height:42.656250pt;}
.h7{height:42.866250pt;}
.h2{height:44.468750pt;}
.h4{height:47.468750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:71.680000pt;}
.xe{left:78.658528pt;}
.x2{left:79.836896pt;}
.x6{left:88.361664pt;}
.x10{left:95.680000pt;}
.x12{left:114.413408pt;}
.x11{left:119.680032pt;}
.xb{left:259.233056pt;}
.xc{left:263.464832pt;}
.xa{left:264.954432pt;}
.x9{left:274.925792pt;}
.x5{left:327.335360pt;}
.xf{left:334.853760pt;}
.x4{left:396.580160pt;}
.xd{left:656.633280pt;}
.x8{left:658.713280pt;}
.x3{left:660.580160pt;}
.x7{left:721.479680pt;}
}




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