
    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_d18f70b730f275e322678828.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_3d54e98fa7adebe25ec03769.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_f8f254401c0bfca36be36c7a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_8c82d6f38bfe6c724fed2214.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_bd465463c14c7133b64f2325.woff')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_027f98da32ce70b24346489b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_df0f0b1299fa356c643a22d5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944824;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_afe7b9f1e6d1c87da163174a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_54355f201d7948406b447de0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.035156;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_e6f0ea3a2f47bd71fce106e0.woff')format("woff");}.fff{font-family:fff;line-height:1.284180;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_6e95522170c4527578cdc58d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.976562;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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_04317f07e73763b2d5baf1be.woff')format("woff");}.ff12{font-family:ff12;line-height:0.914062;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_fc30f005f5dfb7df72b542fe.woff')format("woff");}.ff13{font-family:ff13;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);}
.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;}
.ls15{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.190200px;}
.lsb{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.114000px;}
.lse{letter-spacing:-0.106800px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.078000px;}
.ls12{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.152640px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls5{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.lsf{letter-spacing:5.904000px;}
.ls13{letter-spacing:53.400000px;}
.ls14{letter-spacing:53.424000px;}
.ls10{letter-spacing:82.224000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws7{word-spacing:-18.288000px;}
.wse{word-spacing:-18.072000px;}
.wsd{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.wsa{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws8{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.833200px;}
.ws3{word-spacing:-14.650800px;}
.wsb{word-spacing:0.000000px;}
._16{margin-left:-2.124000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.063280px;}
._4{width:3.510720px;}
._7{width:4.615200px;}
._3{width:5.630400px;}
._5{width:7.087680px;}
._6{width:8.116560px;}
._2b{width:9.131760px;}
._12{width:11.061360px;}
._c{width:12.744000px;}
._15{width:13.752000px;}
._14{width:14.904000px;}
._2e{width:16.236000px;}
._a{width:19.224000px;}
._d{width:20.880000px;}
._e{width:22.248000px;}
._2f{width:23.544000px;}
._2a{width:24.639120px;}
._17{width:26.136000px;}
._8{width:27.290880px;}
._9{width:28.503360px;}
._28{width:30.365280px;}
._37{width:31.752000px;}
._23{width:33.351120px;}
._21{width:34.632000px;}
._22{width:36.216000px;}
._30{width:38.016000px;}
._f{width:39.672000px;}
._31{width:40.752000px;}
._35{width:42.264000px;}
._13{width:43.848000px;}
._b{width:45.288000px;}
._34{width:46.440000px;}
._3b{width:47.736000px;}
._54{width:49.044000px;}
._25{width:50.112000px;}
._26{width:51.120000px;}
._4d{width:52.704000px;}
._11{width:54.504000px;}
._56{width:56.304000px;}
._3a{width:57.471120px;}
._27{width:58.752000px;}
._58{width:59.832000px;}
._3e{width:61.056000px;}
._3f{width:62.136000px;}
._45{width:63.648000px;}
._46{width:64.776000px;}
._5b{width:65.952000px;}
._10{width:67.032000px;}
._36{width:68.256000px;}
._18{width:69.480000px;}
._32{width:70.992000px;}
._4e{width:72.144000px;}
._55{width:73.200000px;}
._49{width:74.520000px;}
._4c{width:76.176000px;}
._41{width:77.184000px;}
._2c{width:79.272000px;}
._2d{width:80.352000px;}
._47{width:82.260000px;}
._48{width:83.664000px;}
._50{width:87.840000px;}
._20{width:88.992000px;}
._1f{width:90.015120px;}
._38{width:91.368000px;}
._39{width:92.520000px;}
._60{width:93.816000px;}
._51{width:95.616000px;}
._40{width:97.560000px;}
._52{width:98.568000px;}
._53{width:99.720000px;}
._4b{width:101.448000px;}
._29{width:103.680000px;}
._33{width:105.408000px;}
._42{width:107.280000px;}
._4a{width:108.900000px;}
._4f{width:111.456000px;}
._61{width:112.896000px;}
._24{width:114.336000px;}
._1c{width:115.776000px;}
._1d{width:117.504000px;}
._3c{width:121.968000px;}
._3d{width:123.012000px;}
._59{width:132.840000px;}
._57{width:135.360000px;}
._1e{width:147.168000px;}
._1b{width:152.893440px;}
._5f{width:166.248000px;}
._5c{width:171.144000px;}
._5d{width:172.368000px;}
._43{width:178.344000px;}
._44{width:179.712000px;}
._19{width:189.617520px;}
._1a{width:197.647200px;}
._5a{width:215.856000px;}
._5e{width:314.280000px;}
._62{width:847.596000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs7{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y16{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y13{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.y1{bottom:51.480000px;}
.y3d{bottom:75.240000px;}
.y12{bottom:93.285000px;}
.y38{bottom:118.260000px;}
.y66{bottom:119.160000px;}
.y37{bottom:145.080000px;}
.y64{bottom:146.160000px;}
.y36{bottom:172.080000px;}
.y6c{bottom:172.620000px;}
.y63{bottom:172.980000px;}
.y35{bottom:198.900000px;}
.y6b{bottom:199.620000px;}
.y62{bottom:199.980000px;}
.y34{bottom:225.930000px;}
.y61{bottom:226.830000px;}
.y33{bottom:252.750000px;}
.y60{bottom:253.830000px;}
.y73{bottom:254.910000px;}
.y32{bottom:279.750000px;}
.y69{bottom:280.290000px;}
.y5f{bottom:280.650000px;}
.y31{bottom:306.570000px;}
.y68{bottom:307.290000px;}
.y5e{bottom:307.650000px;}
.y30{bottom:333.570000px;}
.y5d{bottom:334.470000px;}
.y2f{bottom:360.390000px;}
.y5c{bottom:361.470000px;}
.y2e{bottom:387.390000px;}
.y5b{bottom:388.290000px;}
.y2d{bottom:411.150000px;}
.y5a{bottom:415.290000px;}
.y2c{bottom:436.170000px;}
.y59{bottom:442.155000px;}
.y2b{bottom:460.695000px;}
.y58{bottom:469.155000px;}
.y2a{bottom:482.475000px;}
.y57{bottom:495.975000px;}
.y29{bottom:504.435000px;}
.y70{bottom:522.615000px;}
.y56{bottom:522.975000px;}
.y28{bottom:526.215000px;}
.y27{bottom:547.995000px;}
.y55{bottom:549.795000px;}
.y26{bottom:569.775000px;}
.y67{bottom:576.435000px;}
.y54{bottom:576.795000px;}
.y25{bottom:591.735000px;}
.y6a{bottom:603.255000px;}
.y53{bottom:603.615000px;}
.y24{bottom:613.515000px;}
.y52{bottom:630.615000px;}
.y23{bottom:635.295000px;}
.y22{bottom:657.075000px;}
.y51{bottom:657.435000px;}
.y21{bottom:678.885000px;}
.y6f{bottom:684.105000px;}
.y50{bottom:684.465000px;}
.y20{bottom:700.845000px;}
.y6e{bottom:710.925000px;}
.y4f{bottom:711.285000px;}
.y1f{bottom:722.625000px;}
.y6d{bottom:737.925000px;}
.y4e{bottom:738.285000px;}
.y1e{bottom:744.405000px;}
.y4d{bottom:765.105000px;}
.y1d{bottom:766.185000px;}
.y1c{bottom:788.145000px;}
.y4c{bottom:792.105000px;}
.y1b{bottom:809.925000px;}
.y4b{bottom:818.925000px;}
.y1a{bottom:831.705000px;}
.y65{bottom:845.565000px;}
.y4a{bottom:845.925000px;}
.y19{bottom:853.485000px;}
.y49{bottom:872.745000px;}
.y18{bottom:874.905000px;}
.y17{bottom:894.345000px;}
.y48{bottom:899.565000px;}
.y15{bottom:902.985000px;}
.y11{bottom:910.185000px;}
.y14{bottom:914.694626px;}
.y47{bottom:926.610000px;}
.y46{bottom:953.430000px;}
.y3a{bottom:960.377503px;}
.y45{bottom:980.430000px;}
.y39{bottom:983.057503px;}
.y44{bottom:1007.250000px;}
.yf{bottom:1029.210000px;}
.y43{bottom:1034.250000px;}
.yd{bottom:1035.510000px;}
.y72{bottom:1060.710000px;}
.y42{bottom:1061.070000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y71{bottom:1087.710000px;}
.y41{bottom:1088.070000px;}
.y2{bottom:1106.250000px;}
.y40{bottom:1114.890000px;}
.y7{bottom:1128.570000px;}
.y3f{bottom:1141.890000px;}
.y4{bottom:1156.860000px;}
.y3e{bottom:1168.740000px;}
.y3c{bottom:1187.280000px;}
.y3b{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h15{height:7.200000px;}
.hd{height:13.324219px;}
.h16{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1e{height:30.480469px;}
.h17{height:36.861328px;}
.he{height:41.025000px;}
.h1c{height:50.273438px;}
.h19{height:50.391562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h14{height:63.492188px;}
.h18{height:64.978594px;}
.h1a{height:65.884219px;}
.h1d{height:67.803750px;}
.h1b{height:70.664062px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h1f{height:74.004654px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.530000px;}
.h12{height:119.002500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x20{left:118.656000px;}
.x21{left:150.510000px;}
.x18{left:162.030000px;}
.x13{left:165.988500px;}
.x4{left:168.885000px;}
.x15{left:199.108500px;}
.x6{left:209.010000px;}
.x1b{left:237.809990px;}
.x14{left:262.108500px;}
.x16{left:324.965515px;}
.x12{left:335.578500px;}
.x1a{left:408.224990px;}
.xa{left:445.620000px;}
.x19{left:473.505000px;}
.x1c{left:484.125000px;}
.x1d{left:505.545000px;}
.x1f{left:515.985000px;}
.x1e{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.169067pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.101333pt;}
.lse{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.069333pt;}
.ls12{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.135680pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls5{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.lsf{letter-spacing:5.248000pt;}
.ls13{letter-spacing:47.466667pt;}
.ls14{letter-spacing:47.488000pt;}
.ls10{letter-spacing:73.088000pt;}
.wsc{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws7{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.064000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws8{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.185067pt;}
.ws3{word-spacing:-13.022933pt;}
.wsb{word-spacing:0.000000pt;}
._16{margin-left:-1.888000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:1.834027pt;}
._4{width:3.120640pt;}
._7{width:4.102400pt;}
._3{width:5.004800pt;}
._5{width:6.300160pt;}
._6{width:7.214720pt;}
._2b{width:8.117120pt;}
._12{width:9.832320pt;}
._c{width:11.328000pt;}
._15{width:12.224000pt;}
._14{width:13.248000pt;}
._2e{width:14.432000pt;}
._a{width:17.088000pt;}
._d{width:18.560000pt;}
._e{width:19.776000pt;}
._2f{width:20.928000pt;}
._2a{width:21.901440pt;}
._17{width:23.232000pt;}
._8{width:24.258560pt;}
._9{width:25.336320pt;}
._28{width:26.991360pt;}
._37{width:28.224000pt;}
._23{width:29.645440pt;}
._21{width:30.784000pt;}
._22{width:32.192000pt;}
._30{width:33.792000pt;}
._f{width:35.264000pt;}
._31{width:36.224000pt;}
._35{width:37.568000pt;}
._13{width:38.976000pt;}
._b{width:40.256000pt;}
._34{width:41.280000pt;}
._3b{width:42.432000pt;}
._54{width:43.594667pt;}
._25{width:44.544000pt;}
._26{width:45.440000pt;}
._4d{width:46.848000pt;}
._11{width:48.448000pt;}
._56{width:50.048000pt;}
._3a{width:51.085440pt;}
._27{width:52.224000pt;}
._58{width:53.184000pt;}
._3e{width:54.272000pt;}
._3f{width:55.232000pt;}
._45{width:56.576000pt;}
._46{width:57.578667pt;}
._5b{width:58.624000pt;}
._10{width:59.584000pt;}
._36{width:60.672000pt;}
._18{width:61.760000pt;}
._32{width:63.104000pt;}
._4e{width:64.128000pt;}
._55{width:65.066667pt;}
._49{width:66.240000pt;}
._4c{width:67.712000pt;}
._41{width:68.608000pt;}
._2c{width:70.464000pt;}
._2d{width:71.424000pt;}
._47{width:73.120000pt;}
._48{width:74.368000pt;}
._50{width:78.080000pt;}
._20{width:79.104000pt;}
._1f{width:80.013440pt;}
._38{width:81.216000pt;}
._39{width:82.240000pt;}
._60{width:83.392000pt;}
._51{width:84.992000pt;}
._40{width:86.720000pt;}
._52{width:87.616000pt;}
._53{width:88.640000pt;}
._4b{width:90.176000pt;}
._29{width:92.160000pt;}
._33{width:93.696000pt;}
._42{width:95.360000pt;}
._4a{width:96.800000pt;}
._4f{width:99.072000pt;}
._61{width:100.352000pt;}
._24{width:101.632000pt;}
._1c{width:102.912000pt;}
._1d{width:104.448000pt;}
._3c{width:108.416000pt;}
._3d{width:109.344000pt;}
._59{width:118.080000pt;}
._57{width:120.320000pt;}
._1e{width:130.816000pt;}
._1b{width:135.905280pt;}
._5f{width:147.776000pt;}
._5c{width:152.128000pt;}
._5d{width:153.216000pt;}
._43{width:158.528000pt;}
._44{width:159.744000pt;}
._19{width:168.548907pt;}
._1a{width:175.686400pt;}
._5a{width:191.872000pt;}
._5e{width:279.360000pt;}
._62{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs7{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y16{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y13{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.y1{bottom:45.760000pt;}
.y3d{bottom:66.880000pt;}
.y12{bottom:82.920000pt;}
.y38{bottom:105.120000pt;}
.y66{bottom:105.920000pt;}
.y37{bottom:128.960000pt;}
.y64{bottom:129.920000pt;}
.y36{bottom:152.960000pt;}
.y6c{bottom:153.440000pt;}
.y63{bottom:153.760000pt;}
.y35{bottom:176.800000pt;}
.y6b{bottom:177.440000pt;}
.y62{bottom:177.760000pt;}
.y34{bottom:200.826667pt;}
.y61{bottom:201.626667pt;}
.y33{bottom:224.666667pt;}
.y60{bottom:225.626667pt;}
.y73{bottom:226.586667pt;}
.y32{bottom:248.666667pt;}
.y69{bottom:249.146667pt;}
.y5f{bottom:249.466667pt;}
.y31{bottom:272.506667pt;}
.y68{bottom:273.146667pt;}
.y5e{bottom:273.466667pt;}
.y30{bottom:296.506667pt;}
.y5d{bottom:297.306667pt;}
.y2f{bottom:320.346667pt;}
.y5c{bottom:321.306667pt;}
.y2e{bottom:344.346667pt;}
.y5b{bottom:345.146667pt;}
.y2d{bottom:365.466667pt;}
.y5a{bottom:369.146667pt;}
.y2c{bottom:387.706667pt;}
.y59{bottom:393.026667pt;}
.y2b{bottom:409.506667pt;}
.y58{bottom:417.026667pt;}
.y2a{bottom:428.866667pt;}
.y57{bottom:440.866667pt;}
.y29{bottom:448.386667pt;}
.y70{bottom:464.546667pt;}
.y56{bottom:464.866667pt;}
.y28{bottom:467.746667pt;}
.y27{bottom:487.106667pt;}
.y55{bottom:488.706667pt;}
.y26{bottom:506.466667pt;}
.y67{bottom:512.386667pt;}
.y54{bottom:512.706667pt;}
.y25{bottom:525.986667pt;}
.y6a{bottom:536.226667pt;}
.y53{bottom:536.546667pt;}
.y24{bottom:545.346667pt;}
.y52{bottom:560.546667pt;}
.y23{bottom:564.706667pt;}
.y22{bottom:584.066667pt;}
.y51{bottom:584.386667pt;}
.y21{bottom:603.453333pt;}
.y6f{bottom:608.093333pt;}
.y50{bottom:608.413333pt;}
.y20{bottom:622.973333pt;}
.y6e{bottom:631.933333pt;}
.y4f{bottom:632.253333pt;}
.y1f{bottom:642.333333pt;}
.y6d{bottom:655.933333pt;}
.y4e{bottom:656.253333pt;}
.y1e{bottom:661.693333pt;}
.y4d{bottom:680.093333pt;}
.y1d{bottom:681.053333pt;}
.y1c{bottom:700.573333pt;}
.y4c{bottom:704.093333pt;}
.y1b{bottom:719.933333pt;}
.y4b{bottom:727.933333pt;}
.y1a{bottom:739.293333pt;}
.y65{bottom:751.613333pt;}
.y4a{bottom:751.933333pt;}
.y19{bottom:758.653333pt;}
.y49{bottom:775.773333pt;}
.y18{bottom:777.693333pt;}
.y17{bottom:794.973333pt;}
.y48{bottom:799.613333pt;}
.y15{bottom:802.653333pt;}
.y11{bottom:809.053333pt;}
.y14{bottom:813.061890pt;}
.y47{bottom:823.653333pt;}
.y46{bottom:847.493333pt;}
.y3a{bottom:853.668892pt;}
.y45{bottom:871.493333pt;}
.y39{bottom:873.828892pt;}
.y44{bottom:895.333333pt;}
.yf{bottom:914.853333pt;}
.y43{bottom:919.333333pt;}
.yd{bottom:920.453333pt;}
.y72{bottom:942.853333pt;}
.y42{bottom:943.173333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y71{bottom:966.853333pt;}
.y41{bottom:967.173333pt;}
.y2{bottom:983.333333pt;}
.y40{bottom:991.013333pt;}
.y7{bottom:1003.173333pt;}
.y3f{bottom:1015.013333pt;}
.y4{bottom:1028.320000pt;}
.y3e{bottom:1038.880000pt;}
.y3c{bottom:1055.360000pt;}
.y3b{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h15{height:6.400000pt;}
.hd{height:11.843750pt;}
.h16{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1e{height:27.093750pt;}
.h17{height:32.765625pt;}
.he{height:36.466667pt;}
.h1c{height:44.687500pt;}
.h19{height:44.792500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h14{height:56.437500pt;}
.h18{height:57.758750pt;}
.h1a{height:58.563750pt;}
.h1d{height:60.270000pt;}
.h1b{height:62.812500pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h1f{height:65.781915pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:92.026667pt;}
.h12{height:105.780000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x20{left:105.472000pt;}
.x21{left:133.786667pt;}
.x18{left:144.026667pt;}
.x13{left:147.545333pt;}
.x4{left:150.120000pt;}
.x15{left:176.985333pt;}
.x6{left:185.786667pt;}
.x1b{left:211.386658pt;}
.x14{left:232.985333pt;}
.x16{left:288.858236pt;}
.x12{left:298.292000pt;}
.x1a{left:362.866658pt;}
.xa{left:396.106667pt;}
.x19{left:420.893333pt;}
.x1c{left:430.333333pt;}
.x1d{left:449.373333pt;}
.x1f{left:458.653333pt;}
.x1e{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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