
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7afcf7f20011bb853ff96c40.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_32e0c86e9aedbe5954f13da6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.676758;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_6e8cd796c07733479f0db649.woff')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_6e8cd796c07733479f0db649.woff')format("woff");}.ff5{font-family:ff5;line-height:0.825000;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_c39fbfac93c1e7eb80a40a93.woff')format("woff");}.ff6{font-family:ff6;line-height:0.720000;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_f5b1d74d5267bbca48b40278.woff')format("woff");}.ff7{font-family:ff7;line-height:0.754000;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_89b34a1d211e337cddacc38f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.724000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6e8cd796c07733479f0db649.woff')format("woff");}.ffa{font-family:ffa;line-height:0.825000;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bd34c649725d1dc4c6218276.woff')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_c39fbfac93c1e7eb80a40a93.woff')format("woff");}.ffd{font-family:ffd;line-height:0.720000;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_bf1b1b4cf18fe51b7ee2bb66.woff')format("woff");}.ffe{font-family:ffe;line-height:0.946000;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_04a9d8a4f48f94e84a3d5dd1.woff')format("woff");}.fff{font-family:fff;line-height:0.875000;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_80de86bc539139bde0550bea.woff')format("woff");}.ff10{font-family:ff10;line-height:0.902000;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_de64e48f8b3718b3df5698df.woff')format("woff");}.ff11{font-family:ff11;line-height:1.020000;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_f1ce792a4dc32908fe891f1b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.966000;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_b660d4125562de8894d57f92.woff')format("woff");}.ff13{font-family:ff13;line-height:0.944000;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_7e0fb0299156232c1305c2e8.woff')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_99bfcb07c2e9ad924a000a4e.woff')format("woff");}.ff15{font-family:ff15;line-height:0.855000;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:ff16;src:url('chunks/assets/font_7553186632ecedb279bc8cde.woff')format("woff");}.ff16{font-family:ff16;line-height:0.885773;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:ff17;src:url('chunks/assets/font_fad61aaf48f1b68f77bde5cf.woff')format("woff");}.ff17{font-family:ff17;line-height:0.901000;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:ff18;src:url('chunks/assets/font_f12a000a46801a41c91c6c70.woff')format("woff");}.ff18{font-family:ff18;line-height:0.725000;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:ff19;src:url('chunks/assets/font_2693cc8a7ef0b46eb41fb74f.woff')format("woff");}.ff19{font-family:ff19;line-height:0.966000;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);}
.v1{vertical-align:-19.200778px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:96.668226px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws6{word-spacing:-73.318905px;}
.ws1{word-spacing:-40.751100px;}
.ws7{word-spacing:-36.665998px;}
.ws3{word-spacing:-27.386743px;}
.ws5{word-spacing:-22.161598px;}
.ws4{word-spacing:-14.128559px;}
.ws8{word-spacing:-12.647963px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:26.078880px;}
._0{margin-left:-1.170675px;}
._1{width:1.658315px;}
._2{width:2.694175px;}
._4{width:3.766905px;}
._5{width:9.552437px;}
._6{width:14.626520px;}
._3{width:373.262037px;}
.fc7{color:rgb(2,146,183);}
.fc6{color:rgb(0,0,96);}
.fc5{color:transparent;}
.fc3{color:rgb(1,33,114);}
.fc1{color:rgb(32,84,54);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(249,250,253);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:23.095347px;}
.fs9{font-size:37.125102px;}
.fs12{font-size:50.999849px;}
.fsc{font-size:53.999998px;}
.fse{font-size:56.969997px;}
.fs2{font-size:58.589009px;}
.fsa{font-size:59.984997px;}
.fsf{font-size:64.799996px;}
.fs3{font-size:73.754994px;}
.fs8{font-size:80.078195px;}
.fs6{font-size:83.969997px;}
.fs4{font-size:95.984996px;}
.fs1{font-size:119.155263px;}
.fs11{font-size:125.999995px;}
.fs7{font-size:133.379990px;}
.fsb{font-size:173.699984px;}
.fs5{font-size:206.864996px;}
.fs10{font-size:251.954999px;}
.fs0{font-size:1408.544986px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y17{bottom:1.697103px;}
.yf{bottom:2.553186px;}
.y7{bottom:3.988789px;}
.y32{bottom:5.333599px;}
.y38{bottom:5.597828px;}
.y16{bottom:7.337758px;}
.yd{bottom:8.606265px;}
.y4{bottom:9.700104px;}
.y5{bottom:11.016618px;}
.y15{bottom:12.978413px;}
.y11{bottom:15.749994px;}
.y31{bottom:20.208555px;}
.y37{bottom:20.472784px;}
.y30{bottom:35.083511px;}
.y36{bottom:35.347741px;}
.y2a{bottom:38.242618px;}
.y14{bottom:45.720008px;}
.y2f{bottom:49.958467px;}
.y35{bottom:50.222697px;}
.y29{bottom:57.367618px;}
.y34{bottom:79.972609px;}
.y2b{bottom:82.194333px;}
.y33{bottom:327.959996px;}
.y28{bottom:469.300408px;}
.y27{bottom:485.050408px;}
.y26{bottom:500.800407px;}
.y25{bottom:516.550406px;}
.y24{bottom:532.300406px;}
.y23{bottom:548.050405px;}
.y22{bottom:563.800405px;}
.y21{bottom:579.550404px;}
.y20{bottom:595.300403px;}
.y1f{bottom:611.050403px;}
.y1e{bottom:626.800402px;}
.y1d{bottom:642.550401px;}
.y1c{bottom:658.300401px;}
.y1b{bottom:674.050400px;}
.y8{bottom:676.792851px;}
.y1a{bottom:689.800399px;}
.ya{bottom:699.701454px;}
.y19{bottom:705.550399px;}
.y18{bottom:721.300398px;}
.yb{bottom:766.806473px;}
.y2e{bottom:771.839978px;}
.y2{bottom:807.951775px;}
.y2d{bottom:893.060909px;}
.y2c{bottom:933.560907px;}
.y10{bottom:1078.881972px;}
.y9{bottom:1082.562701px;}
.y6{bottom:1085.759965px;}
.y3{bottom:1101.959964px;}
.ye{bottom:1113.119964px;}
.y12{bottom:1116.569515px;}
.yc{bottom:1117.799963px;}
.y13{bottom:1122.736572px;}
.h11{height:11.880000px;}
.h19{height:18.476278px;}
.h8{height:18.719999px;}
.h13{height:25.987571px;}
.h14{height:26.358823px;}
.he{height:26.639999px;}
.h12{height:35.268847px;}
.h24{height:36.260893px;}
.h21{height:37.739889px;}
.h6{height:37.799998px;}
.h18{height:38.231998px;}
.h22{height:38.402887px;}
.h15{height:40.499993px;}
.h9{height:41.598196px;}
.h1a{height:42.898408px;}
.h1c{height:44.388898px;}
.h16{height:44.808793px;}
.h1b{height:48.887773px;}
.h1d{height:54.431996px;}
.ha{height:55.094981px;}
.hc{height:62.725587px;}
.h20{height:64.079997px;}
.h10{height:66.064511px;}
.hf{height:76.074285px;}
.h23{height:93.959996px;}
.hd{height:94.966553px;}
.h7{height:98.303092px;}
.h1f{height:101.996996px;}
.hb{height:135.327374px;}
.h17{height:150.597886px;}
.h1e{height:203.957571px;}
.h4{height:938.800736px;}
.h5{height:943.615098px;}
.h2{height:1187.999951px;}
.h0{height:1187.999991px;}
.h1{height:1188.000000px;}
.h3{height:1338.117737px;}
.w7{width:60.479997px;}
.w5{width:104.039996px;}
.w4{width:106.559996px;}
.w2{width:154.079994px;}
.w3{width:160.199993px;}
.w8{width:263.879989px;}
.w6{width:305.999987px;}
.w9{width:735.479969px;}
.w1{width:917.999962px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:1.624576px;}
.xc{left:2.973677px;}
.x11{left:18.275153px;}
.xe{left:54.783576px;}
.xf{left:59.895529px;}
.x1{left:85.011550px;}
.x2c{left:91.799996px;}
.x10{left:98.141569px;}
.xa{left:100.646780px;}
.x12{left:113.984665px;}
.x24{left:122.174995px;}
.x23{left:126.270698px;}
.x1b{left:133.178901px;}
.x20{left:158.034368px;}
.x6{left:160.919993px;}
.x4{left:165.599993px;}
.x1c{left:169.635930px;}
.x16{left:172.008977px;}
.x1a{left:179.092961px;}
.x21{left:188.374211px;}
.x1e{left:189.376164px;}
.x1d{left:198.182804px;}
.x19{left:245.942568px;}
.x29{left:248.190458px;}
.x15{left:253.729677px;}
.x17{left:259.969911px;}
.x22{left:277.987488px;}
.x18{left:284.385926px;}
.x1f{left:299.731634px;}
.x2a{left:370.481475px;}
.x25{left:419.262879px;}
.x2b{left:435.239982px;}
.x13{left:479.091777px;}
.x14{left:497.159979px;}
.x2{left:581.593560px;}
.x7{left:618.615226px;}
.x3{left:642.818173px;}
.x26{left:655.293035px;}
.x27{left:664.714910px;}
.x8{left:687.805100px;}
.x28{left:740.710282px;}
.xb{left:752.399969px;}
.xd{left:755.999969px;}
.x9{left:765.313166px;}
@media print{
.v1{vertical-align:-17.067358pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:85.927312pt;}
.ls0{letter-spacing:0.000000pt;}
.ws6{word-spacing:-65.172360pt;}
.ws1{word-spacing:-36.223200pt;}
.ws7{word-spacing:-32.591999pt;}
.ws3{word-spacing:-24.343771pt;}
.ws5{word-spacing:-19.699199pt;}
.ws4{word-spacing:-12.558719pt;}
.ws8{word-spacing:-11.242633pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:23.181227pt;}
._0{margin-left:-1.040600pt;}
._1{width:1.474058pt;}
._2{width:2.394822pt;}
._4{width:3.348360pt;}
._5{width:8.491055pt;}
._6{width:13.001351pt;}
._3{width:331.788478pt;}
.fsd{font-size:20.529197pt;}
.fs9{font-size:33.000091pt;}
.fs12{font-size:45.333200pt;}
.fsc{font-size:47.999998pt;}
.fse{font-size:50.639997pt;}
.fs2{font-size:52.079119pt;}
.fsa{font-size:53.319997pt;}
.fsf{font-size:57.599996pt;}
.fs3{font-size:65.559995pt;}
.fs8{font-size:71.180618pt;}
.fs6{font-size:74.639997pt;}
.fs4{font-size:85.319996pt;}
.fs1{font-size:105.915790pt;}
.fs11{font-size:111.999995pt;}
.fs7{font-size:118.559991pt;}
.fsb{font-size:154.399986pt;}
.fs5{font-size:183.879996pt;}
.fs10{font-size:223.959999pt;}
.fs0{font-size:1252.039988pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y17{bottom:1.508536pt;}
.yf{bottom:2.269498pt;}
.y7{bottom:3.545591pt;}
.y32{bottom:4.740977pt;}
.y38{bottom:4.975847pt;}
.y16{bottom:6.522452pt;}
.yd{bottom:7.650014pt;}
.y4{bottom:8.622315pt;}
.y5{bottom:9.792549pt;}
.y15{bottom:11.536367pt;}
.y11{bottom:13.999995pt;}
.y31{bottom:17.963160pt;}
.y37{bottom:18.198031pt;}
.y30{bottom:31.185343pt;}
.y36{bottom:31.420214pt;}
.y2a{bottom:33.993439pt;}
.y14{bottom:40.640007pt;}
.y2f{bottom:44.407526pt;}
.y35{bottom:44.642397pt;}
.y29{bottom:50.993438pt;}
.y34{bottom:71.086763pt;}
.y2b{bottom:73.061629pt;}
.y33{bottom:291.519997pt;}
.y28{bottom:417.155919pt;}
.y27{bottom:431.155918pt;}
.y26{bottom:445.155917pt;}
.y25{bottom:459.155917pt;}
.y24{bottom:473.155916pt;}
.y23{bottom:487.155916pt;}
.y22{bottom:501.155915pt;}
.y21{bottom:515.155915pt;}
.y20{bottom:529.155914pt;}
.y1f{bottom:543.155913pt;}
.y1e{bottom:557.155913pt;}
.y1d{bottom:571.155912pt;}
.y1c{bottom:585.155912pt;}
.y1b{bottom:599.155911pt;}
.y8{bottom:601.593645pt;}
.y1a{bottom:613.155910pt;}
.ya{bottom:621.956848pt;}
.y19{bottom:627.155910pt;}
.y18{bottom:641.155909pt;}
.yb{bottom:681.605754pt;}
.y2e{bottom:686.079980pt;}
.y2{bottom:718.179356pt;}
.y2d{bottom:793.831919pt;}
.y2c{bottom:829.831917pt;}
.y10{bottom:959.006198pt;}
.y9{bottom:962.277957pt;}
.y6{bottom:965.119969pt;}
.y3{bottom:979.519968pt;}
.ye{bottom:989.439968pt;}
.y12{bottom:992.506235pt;}
.yc{bottom:993.599968pt;}
.y13{bottom:997.988064pt;}
.h11{height:10.560000pt;}
.h19{height:16.423358pt;}
.h8{height:16.639999pt;}
.h13{height:23.100064pt;}
.h14{height:23.430064pt;}
.he{height:23.679999pt;}
.h12{height:31.350086pt;}
.h24{height:32.231905pt;}
.h21{height:33.546568pt;}
.h6{height:33.599999pt;}
.h18{height:33.983999pt;}
.h22{height:34.135899pt;}
.h15{height:35.999994pt;}
.h9{height:36.976175pt;}
.h1a{height:38.131918pt;}
.h1c{height:39.456798pt;}
.h16{height:39.830038pt;}
.h1b{height:43.455798pt;}
.h1d{height:48.383997pt;}
.ha{height:48.973316pt;}
.hc{height:55.756078pt;}
.h20{height:56.959998pt;}
.h10{height:58.724010pt;}
.hf{height:67.621587pt;}
.h23{height:83.519997pt;}
.hd{height:84.414714pt;}
.h7{height:87.380527pt;}
.h1f{height:90.663996pt;}
.hb{height:120.290999pt;}
.h17{height:133.864787pt;}
.h1e{height:181.295619pt;}
.h4{height:834.489543pt;}
.h5{height:838.768976pt;}
.h2{height:1055.999956pt;}
.h0{height:1055.999992pt;}
.h1{height:1056.000000pt;}
.h3{height:1189.437988pt;}
.w7{width:53.759998pt;}
.w5{width:92.479996pt;}
.w4{width:94.719996pt;}
.w2{width:136.959994pt;}
.w3{width:142.399994pt;}
.w8{width:234.559990pt;}
.w6{width:271.999989pt;}
.w9{width:653.759973pt;}
.w1{width:815.999966pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.444068pt;}
.xc{left:2.643269pt;}
.x11{left:16.244581pt;}
.xe{left:48.696512pt;}
.xf{left:53.240470pt;}
.x1{left:75.565822pt;}
.x2c{left:81.599997pt;}
.x10{left:87.236950pt;}
.xa{left:89.463805pt;}
.x12{left:101.319702pt;}
.x24{left:108.599995pt;}
.x23{left:112.240620pt;}
.x1b{left:118.381245pt;}
.x20{left:140.474994pt;}
.x6{left:143.039994pt;}
.x4{left:147.199994pt;}
.x1c{left:150.787494pt;}
.x16{left:152.896869pt;}
.x1a{left:159.193743pt;}
.x21{left:167.443743pt;}
.x1e{left:168.334368pt;}
.x1d{left:176.162493pt;}
.x19{left:218.615616pt;}
.x29{left:220.613741pt;}
.x15{left:225.537491pt;}
.x17{left:231.084365pt;}
.x22{left:247.099990pt;}
.x18{left:252.787489pt;}
.x1f{left:266.428119pt;}
.x2a{left:329.316866pt;}
.x25{left:372.678114pt;}
.x2b{left:386.879984pt;}
.x13{left:425.859357pt;}
.x14{left:441.919982pt;}
.x2{left:516.972054pt;}
.x7{left:549.880201pt;}
.x3{left:571.393931pt;}
.x26{left:582.482698pt;}
.x27{left:590.857697pt;}
.x8{left:611.382312pt;}
.x28{left:658.409140pt;}
.xb{left:668.799972pt;}
.xd{left:671.999972pt;}
.x9{left:680.278370pt;}
}




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