
    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_01ea565705062fd9806364cd.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_303c4d417c4843e354403077.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740234;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_92d995085c842c40bfd22c28.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d9dd059dc24981e6bc81cb30.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b78fd0e8c0beb3af498b10d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.985000;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_f61a681a18d45fd422c35602.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_1c44dce0877eeeb01031ea22.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927000;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_7bfd09e4f5a78adf2b3b4072.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107000;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_644ae9a133d5735005b6a726.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.802000;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_2ebb3f363a4af529813386cc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985000;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_c2387f4a8450a7c7aa973584.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.985000;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_0de042308242072185fbc246.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.985000;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_a6c45dcb13e6cae67132ed42.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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_dee9ca7be19930e876c71f2b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.084000;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{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;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:19.980000px;}
.ls8{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-1.140000px;}
.ls3{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.167904px;}
.ls10{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.540000px;}
.lse{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.720000px;}
.ls0{letter-spacing:43.199700px;}
.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;}
}
.ws2{word-spacing:-54.000000px;}
.ws43{word-spacing:-15.984000px;}
.ws32{word-spacing:-15.540000px;}
.ws42{word-spacing:-15.000000px;}
.ws41{word-spacing:-14.460000px;}
.ws1c{word-spacing:-13.800000px;}
.ws1{word-spacing:-12.960000px;}
.ws40{word-spacing:-12.000000px;}
.ws28{word-spacing:-8.760000px;}
.ws5{word-spacing:-8.745000px;}
.ws3f{word-spacing:-7.163904px;}
.ws3e{word-spacing:-6.996000px;}
.ws39{word-spacing:-6.240000px;}
.ws3b{word-spacing:-4.980000px;}
.ws1e{word-spacing:-3.420000px;}
.ws24{word-spacing:-2.820000px;}
.ws18{word-spacing:-2.520000px;}
.ws27{word-spacing:-2.100000px;}
.wsb{word-spacing:-1.560000px;}
.wsf{word-spacing:-0.720000px;}
.ws36{word-spacing:-0.660000px;}
.ws3c{word-spacing:-0.600000px;}
.ws31{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.480000px;}
.ws13{word-spacing:-0.360000px;}
.ws45{word-spacing:-0.288000px;}
.ws3{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.042000px;}
.ws6{word-spacing:0.000000px;}
.ws2f{word-spacing:0.060000px;}
.ws25{word-spacing:0.180000px;}
.ws8{word-spacing:0.240000px;}
.ws22{word-spacing:0.360000px;}
.ws26{word-spacing:0.480000px;}
.ws4{word-spacing:0.486000px;}
.wsc{word-spacing:0.540000px;}
.ws7{word-spacing:0.600000px;}
.ws29{word-spacing:0.702000px;}
.wse{word-spacing:0.907200px;}
.wsd{word-spacing:0.945000px;}
.ws37{word-spacing:1.140000px;}
.ws1d{word-spacing:1.200000px;}
.ws2d{word-spacing:2.280000px;}
.ws15{word-spacing:2.880000px;}
.ws33{word-spacing:3.000000px;}
.ws30{word-spacing:5.040000px;}
.ws1b{word-spacing:5.508000px;}
.ws35{word-spacing:6.300000px;}
.ws17{word-spacing:6.840000px;}
.ws3d{word-spacing:8.280000px;}
.ws19{word-spacing:8.340000px;}
.ws2a{word-spacing:8.520000px;}
.ws23{word-spacing:9.420000px;}
.ws1f{word-spacing:9.900000px;}
.ws21{word-spacing:10.200000px;}
.ws2b{word-spacing:11.220000px;}
.wsa{word-spacing:11.460000px;}
.ws47{word-spacing:11.640000px;}
.ws9{word-spacing:12.480000px;}
.ws3a{word-spacing:12.540000px;}
.ws2e{word-spacing:13.920000px;}
.ws16{word-spacing:14.460000px;}
.ws1a{word-spacing:14.640000px;}
.ws20{word-spacing:16.680000px;}
.ws12{word-spacing:21.660000px;}
.ws44{word-spacing:22.992000px;}
.ws46{word-spacing:25.728000px;}
.ws14{word-spacing:28.020000px;}
.ws38{word-spacing:31.020000px;}
.ws11{word-spacing:35.340000px;}
.ws34{word-spacing:35.460000px;}
.ws2c{word-spacing:38.760000px;}
._15{margin-left:-2823.007800px;}
._28{margin-left:-10.051200px;}
._29{margin-left:-8.237400px;}
._12{margin-left:-7.126800px;}
._9{margin-left:-5.994000px;}
._d{margin-left:-4.915800px;}
._2{margin-left:-3.886200px;}
._7{margin-left:-2.617200px;}
._0{margin-left:-1.530000px;}
._1{width:1.591200px;}
._5{width:3.016800px;}
._6{width:4.093200px;}
._8{width:6.010200px;}
._1e{width:7.022400px;}
._10{width:8.160000px;}
._c{width:9.804000px;}
._a{width:11.226000px;}
._14{width:12.316200px;}
._b{width:13.968000px;}
._f{width:16.284000px;}
._11{width:17.532000px;}
._17{width:19.362000px;}
._1b{width:20.502000px;}
._e{width:21.744000px;}
._13{width:23.154000px;}
._22{width:24.492000px;}
._20{width:25.608000px;}
._4{width:27.540000px;}
._16{width:28.566000px;}
._3{width:29.760000px;}
._23{width:31.332000px;}
._1d{width:32.472000px;}
._26{width:33.624000px;}
._25{width:34.704000px;}
._21{width:35.988000px;}
._27{width:38.244000px;}
._19{width:39.588000px;}
._1f{width:40.836000px;}
._18{width:42.894000px;}
._1c{width:44.910000px;}
._1a{width:46.554000px;}
._24{width:49.398000px;}
._2a{width:53.598000px;}
._2b{width:54.805800px;}
.fc1{color:rgb(39,113,125);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fs2{font-size:34.980000px;}
.fs9{font-size:37.800000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:52.031700px;}
.y29{bottom:64.631700px;}
.y2b{bottom:76.648200px;}
.y28{bottom:77.231700px;}
.y60{bottom:113.731200px;}
.y61{bottom:113.811000px;}
.y7{bottom:127.559250px;}
.y5f{bottom:131.731200px;}
.y52{bottom:131.811000px;}
.y6{bottom:145.559250px;}
.y51{bottom:149.811000px;}
.y50{bottom:167.811000px;}
.y24{bottom:185.811000px;}
.y23{bottom:203.811000px;}
.y22{bottom:221.811000px;}
.y21{bottom:239.811000px;}
.y20{bottom:257.811000px;}
.y1f{bottom:275.811000px;}
.y1e{bottom:293.811000px;}
.y1d{bottom:311.811000px;}
.y1c{bottom:329.811000px;}
.y1b{bottom:347.811000px;}
.y1a{bottom:365.811000px;}
.y19{bottom:383.811000px;}
.y5e{bottom:387.831600px;}
.y18{bottom:401.811000px;}
.y4f{bottom:401.811150px;}
.y5d{bottom:405.831600px;}
.y17{bottom:419.811000px;}
.y4e{bottom:419.811150px;}
.y16{bottom:437.811000px;}
.y4d{bottom:437.811150px;}
.y15{bottom:455.811000px;}
.y4c{bottom:455.811150px;}
.y14{bottom:473.811000px;}
.y4b{bottom:473.811150px;}
.y13{bottom:491.811000px;}
.y4a{bottom:491.811150px;}
.y25{bottom:509.811000px;}
.y49{bottom:509.811150px;}
.y12{bottom:527.811000px;}
.y48{bottom:527.811150px;}
.y47{bottom:545.811150px;}
.y57{bottom:563.811150px;}
.y46{bottom:581.811150px;}
.y11{bottom:599.811000px;}
.y56{bottom:599.811150px;}
.y5b{bottom:617.811000px;}
.y45{bottom:617.811150px;}
.y10{bottom:635.811000px;}
.y55{bottom:635.811150px;}
.y5a{bottom:653.811000px;}
.y54{bottom:653.811150px;}
.y59{bottom:671.811000px;}
.y53{bottom:671.811150px;}
.y58{bottom:689.811000px;}
.y44{bottom:689.811150px;}
.yf{bottom:707.811000px;}
.y43{bottom:707.811150px;}
.ye{bottom:725.811000px;}
.y42{bottom:725.811150px;}
.yd{bottom:743.811000px;}
.y41{bottom:743.811150px;}
.yc{bottom:761.811000px;}
.y40{bottom:761.811150px;}
.yb{bottom:779.811000px;}
.ya{bottom:797.811000px;}
.y3f{bottom:815.811000px;}
.y9{bottom:833.811000px;}
.y3e{bottom:851.811000px;}
.y3d{bottom:869.811000px;}
.y3c{bottom:887.811000px;}
.y8{bottom:902.051250px;}
.y3b{bottom:905.811000px;}
.y3a{bottom:923.811000px;}
.y39{bottom:941.811000px;}
.y5c{bottom:948.063150px;}
.y5{bottom:949.815000px;}
.y38{bottom:959.811000px;}
.y4{bottom:972.067050px;}
.y37{bottom:977.811000px;}
.y36{bottom:995.811000px;}
.y3{bottom:1008.065550px;}
.y35{bottom:1013.811000px;}
.y34{bottom:1031.811000px;}
.y2{bottom:1047.664050px;}
.y33{bottom:1049.811000px;}
.y32{bottom:1067.811000px;}
.y1{bottom:1078.264200px;}
.y31{bottom:1085.811000px;}
.y30{bottom:1103.811000px;}
.y2f{bottom:1121.811000px;}
.y2e{bottom:1139.811000px;}
.y2d{bottom:1157.811000px;}
.y27{bottom:1190.373450px;}
.y2c{bottom:1193.653500px;}
.y26{bottom:1208.373450px;}
.hd{height:30.013200px;}
.h4{height:33.328125px;}
.he{height:33.351562px;}
.hf{height:35.414297px;}
.hc{height:35.550000px;}
.h5{height:35.730000px;}
.h6{height:37.520508px;}
.h7{height:39.258000px;}
.ha{height:41.660156px;}
.h9{height:41.689453px;}
.hb{height:44.267871px;}
.h3{height:50.027344px;}
.h10{height:64.080000px;}
.h2{height:70.872070px;}
.h8{height:74.760000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x2{left:93.543300px;}
.xd{left:110.551200px;}
.xf{left:127.558950px;}
.x3{left:285.772200px;}
.x4{left:337.451850px;}
.xe{left:353.401200px;}
.x5{left:434.245800px;}
.x9{left:440.078700px;}
.xa{left:457.086600px;}
.x10{left:474.094350px;}
.x6{left:489.339750px;}
.x11{left:491.102250px;}
.xb{left:494.771100px;}
.x14{left:508.110150px;}
.x7{left:612.342750px;}
.xc{left:613.693650px;}
.x8{left:669.027600px;}
.x12{left:671.393100px;}
.x13{left:769.402350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:17.760000pt;}
.ls8{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-1.013333pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.149248pt;}
.ls10{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.640000pt;}
.ls0{letter-spacing:38.399733pt;}
.ws2{word-spacing:-48.000000pt;}
.ws43{word-spacing:-14.208000pt;}
.ws32{word-spacing:-13.813333pt;}
.ws42{word-spacing:-13.333333pt;}
.ws41{word-spacing:-12.853333pt;}
.ws1c{word-spacing:-12.266667pt;}
.ws1{word-spacing:-11.520000pt;}
.ws40{word-spacing:-10.666667pt;}
.ws28{word-spacing:-7.786667pt;}
.ws5{word-spacing:-7.773333pt;}
.ws3f{word-spacing:-6.367915pt;}
.ws3e{word-spacing:-6.218667pt;}
.ws39{word-spacing:-5.546667pt;}
.ws3b{word-spacing:-4.426667pt;}
.ws1e{word-spacing:-3.040000pt;}
.ws24{word-spacing:-2.506667pt;}
.ws18{word-spacing:-2.240000pt;}
.ws27{word-spacing:-1.866667pt;}
.wsb{word-spacing:-1.386667pt;}
.wsf{word-spacing:-0.640000pt;}
.ws36{word-spacing:-0.586667pt;}
.ws3c{word-spacing:-0.533333pt;}
.ws31{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.426667pt;}
.ws13{word-spacing:-0.320000pt;}
.ws45{word-spacing:-0.256000pt;}
.ws3{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.037333pt;}
.ws6{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.053333pt;}
.ws25{word-spacing:0.160000pt;}
.ws8{word-spacing:0.213333pt;}
.ws22{word-spacing:0.320000pt;}
.ws26{word-spacing:0.426667pt;}
.ws4{word-spacing:0.432000pt;}
.wsc{word-spacing:0.480000pt;}
.ws7{word-spacing:0.533333pt;}
.ws29{word-spacing:0.624000pt;}
.wse{word-spacing:0.806400pt;}
.wsd{word-spacing:0.840000pt;}
.ws37{word-spacing:1.013333pt;}
.ws1d{word-spacing:1.066667pt;}
.ws2d{word-spacing:2.026667pt;}
.ws15{word-spacing:2.560000pt;}
.ws33{word-spacing:2.666667pt;}
.ws30{word-spacing:4.480000pt;}
.ws1b{word-spacing:4.896000pt;}
.ws35{word-spacing:5.600000pt;}
.ws17{word-spacing:6.080000pt;}
.ws3d{word-spacing:7.360000pt;}
.ws19{word-spacing:7.413333pt;}
.ws2a{word-spacing:7.573333pt;}
.ws23{word-spacing:8.373333pt;}
.ws1f{word-spacing:8.800000pt;}
.ws21{word-spacing:9.066667pt;}
.ws2b{word-spacing:9.973333pt;}
.wsa{word-spacing:10.186667pt;}
.ws47{word-spacing:10.346667pt;}
.ws9{word-spacing:11.093333pt;}
.ws3a{word-spacing:11.146667pt;}
.ws2e{word-spacing:12.373333pt;}
.ws16{word-spacing:12.853333pt;}
.ws1a{word-spacing:13.013333pt;}
.ws20{word-spacing:14.826667pt;}
.ws12{word-spacing:19.253333pt;}
.ws44{word-spacing:20.437333pt;}
.ws46{word-spacing:22.869333pt;}
.ws14{word-spacing:24.906667pt;}
.ws38{word-spacing:27.573333pt;}
.ws11{word-spacing:31.413333pt;}
.ws34{word-spacing:31.520000pt;}
.ws2c{word-spacing:34.453333pt;}
._15{margin-left:-2509.340267pt;}
._28{margin-left:-8.934400pt;}
._29{margin-left:-7.322133pt;}
._12{margin-left:-6.334933pt;}
._9{margin-left:-5.328000pt;}
._d{margin-left:-4.369600pt;}
._2{margin-left:-3.454400pt;}
._7{margin-left:-2.326400pt;}
._0{margin-left:-1.360000pt;}
._1{width:1.414400pt;}
._5{width:2.681600pt;}
._6{width:3.638400pt;}
._8{width:5.342400pt;}
._1e{width:6.242133pt;}
._10{width:7.253333pt;}
._c{width:8.714667pt;}
._a{width:9.978667pt;}
._14{width:10.947733pt;}
._b{width:12.416000pt;}
._f{width:14.474667pt;}
._11{width:15.584000pt;}
._17{width:17.210667pt;}
._1b{width:18.224000pt;}
._e{width:19.328000pt;}
._13{width:20.581333pt;}
._22{width:21.770667pt;}
._20{width:22.762667pt;}
._4{width:24.480000pt;}
._16{width:25.392000pt;}
._3{width:26.453333pt;}
._23{width:27.850667pt;}
._1d{width:28.864000pt;}
._26{width:29.888000pt;}
._25{width:30.848000pt;}
._21{width:31.989333pt;}
._27{width:33.994667pt;}
._19{width:35.189333pt;}
._1f{width:36.298667pt;}
._18{width:38.128000pt;}
._1c{width:39.920000pt;}
._1a{width:41.381333pt;}
._24{width:43.909333pt;}
._2a{width:47.642667pt;}
._2b{width:48.716267pt;}
.fsa{font-size:24.874667pt;}
.fs2{font-size:31.093333pt;}
.fs9{font-size:33.600000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:46.250400pt;}
.y29{bottom:57.450400pt;}
.y2b{bottom:68.131733pt;}
.y28{bottom:68.650400pt;}
.y60{bottom:101.094400pt;}
.y61{bottom:101.165333pt;}
.y7{bottom:113.386000pt;}
.y5f{bottom:117.094400pt;}
.y52{bottom:117.165333pt;}
.y6{bottom:129.386000pt;}
.y51{bottom:133.165333pt;}
.y50{bottom:149.165333pt;}
.y24{bottom:165.165333pt;}
.y23{bottom:181.165333pt;}
.y22{bottom:197.165333pt;}
.y21{bottom:213.165333pt;}
.y20{bottom:229.165333pt;}
.y1f{bottom:245.165333pt;}
.y1e{bottom:261.165333pt;}
.y1d{bottom:277.165333pt;}
.y1c{bottom:293.165333pt;}
.y1b{bottom:309.165333pt;}
.y1a{bottom:325.165333pt;}
.y19{bottom:341.165333pt;}
.y5e{bottom:344.739200pt;}
.y18{bottom:357.165333pt;}
.y4f{bottom:357.165467pt;}
.y5d{bottom:360.739200pt;}
.y17{bottom:373.165333pt;}
.y4e{bottom:373.165467pt;}
.y16{bottom:389.165333pt;}
.y4d{bottom:389.165467pt;}
.y15{bottom:405.165333pt;}
.y4c{bottom:405.165467pt;}
.y14{bottom:421.165333pt;}
.y4b{bottom:421.165467pt;}
.y13{bottom:437.165333pt;}
.y4a{bottom:437.165467pt;}
.y25{bottom:453.165333pt;}
.y49{bottom:453.165467pt;}
.y12{bottom:469.165333pt;}
.y48{bottom:469.165467pt;}
.y47{bottom:485.165467pt;}
.y57{bottom:501.165467pt;}
.y46{bottom:517.165467pt;}
.y11{bottom:533.165333pt;}
.y56{bottom:533.165467pt;}
.y5b{bottom:549.165333pt;}
.y45{bottom:549.165467pt;}
.y10{bottom:565.165333pt;}
.y55{bottom:565.165467pt;}
.y5a{bottom:581.165333pt;}
.y54{bottom:581.165467pt;}
.y59{bottom:597.165333pt;}
.y53{bottom:597.165467pt;}
.y58{bottom:613.165333pt;}
.y44{bottom:613.165467pt;}
.yf{bottom:629.165333pt;}
.y43{bottom:629.165467pt;}
.ye{bottom:645.165333pt;}
.y42{bottom:645.165467pt;}
.yd{bottom:661.165333pt;}
.y41{bottom:661.165467pt;}
.yc{bottom:677.165333pt;}
.y40{bottom:677.165467pt;}
.yb{bottom:693.165333pt;}
.ya{bottom:709.165333pt;}
.y3f{bottom:725.165333pt;}
.y9{bottom:741.165333pt;}
.y3e{bottom:757.165333pt;}
.y3d{bottom:773.165333pt;}
.y3c{bottom:789.165333pt;}
.y8{bottom:801.823333pt;}
.y3b{bottom:805.165333pt;}
.y3a{bottom:821.165333pt;}
.y39{bottom:837.165333pt;}
.y5c{bottom:842.722800pt;}
.y5{bottom:844.280000pt;}
.y38{bottom:853.165333pt;}
.y4{bottom:864.059600pt;}
.y37{bottom:869.165333pt;}
.y36{bottom:885.165333pt;}
.y3{bottom:896.058267pt;}
.y35{bottom:901.165333pt;}
.y34{bottom:917.165333pt;}
.y2{bottom:931.256933pt;}
.y33{bottom:933.165333pt;}
.y32{bottom:949.165333pt;}
.y1{bottom:958.457067pt;}
.y31{bottom:965.165333pt;}
.y30{bottom:981.165333pt;}
.y2f{bottom:997.165333pt;}
.y2e{bottom:1013.165333pt;}
.y2d{bottom:1029.165333pt;}
.y27{bottom:1058.109733pt;}
.y2c{bottom:1061.025333pt;}
.y26{bottom:1074.109733pt;}
.hd{height:26.678400pt;}
.h4{height:29.625000pt;}
.he{height:29.645833pt;}
.hf{height:31.479375pt;}
.hc{height:31.600000pt;}
.h5{height:31.760000pt;}
.h6{height:33.351562pt;}
.h7{height:34.896000pt;}
.ha{height:37.031250pt;}
.h9{height:37.057292pt;}
.hb{height:39.349219pt;}
.h3{height:44.468750pt;}
.h10{height:56.960000pt;}
.h2{height:62.997396pt;}
.h8{height:66.453333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x2{left:83.149600pt;}
.xd{left:98.267733pt;}
.xf{left:113.385733pt;}
.x3{left:254.019733pt;}
.x4{left:299.957200pt;}
.xe{left:314.134400pt;}
.x5{left:385.996267pt;}
.x9{left:391.181067pt;}
.xa{left:406.299200pt;}
.x10{left:421.417200pt;}
.x6{left:434.968667pt;}
.x11{left:436.535333pt;}
.xb{left:439.796533pt;}
.x14{left:451.653467pt;}
.x7{left:544.304667pt;}
.xc{left:545.505467pt;}
.x8{left:594.691200pt;}
.x12{left:596.793867pt;}
.x13{left:683.913200pt;}
}




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