
    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_9b583e272f7cf5f672860037.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7fe4d223b5fe8c052b218df8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.698000;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_05eec4f33d9c5f6ec1f0081d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5853c033d043ef3efda94d02.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f815a00ab1a77f6be98fe564.woff')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_c6cf2d671c0dc177b1cd5f6d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_817f027ce56cd9098e53c284.woff')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_d9d54ecc8c47737a72f7cfaa.woff')format("woff");}.ff8{font-family:ff8;line-height:0.968000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v3{vertical-align:-20.172000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.898000px;}
.v1{vertical-align:38.736000px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.315727px;}
.ls5{letter-spacing:2.315861px;}
.ls0{letter-spacing:3.085627px;}
.ls7{letter-spacing:13.449265px;}
.ls6{letter-spacing:13.449720px;}
.ls3{letter-spacing:21.013806px;}
.ls1{letter-spacing:35.861176px;}
.ls2{letter-spacing:35.867176px;}
.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;}
}
.ws45{word-spacing:-86.077200px;}
.ws0{word-spacing:-77.469480px;}
.ws33{word-spacing:-65.454540px;}
.ws15{word-spacing:-64.557900px;}
.ws30{word-spacing:-49.090905px;}
.ws32{word-spacing:-48.698178px;}
.ws9{word-spacing:-40.402508px;}
.ws8{word-spacing:-40.348710px;}
.ws38{word-spacing:-35.865510px;}
.ws2{word-spacing:-31.202994px;}
.ws2f{word-spacing:-28.472725px;}
.ws2c{word-spacing:-17.279999px;}
.ws42{word-spacing:-16.952726px;}
.ws41{word-spacing:-15.774544px;}
.ws43{word-spacing:-13.483635px;}
.ws7{word-spacing:-13.272305px;}
.ws4{word-spacing:-13.271577px;}
.ws1{word-spacing:-13.268340px;}
.ws3{word-spacing:-13.267499px;}
.ws5{word-spacing:-13.265863px;}
.ws16{word-spacing:-12.436363px;}
.ws2b{word-spacing:-12.305454px;}
.ws2d{word-spacing:-12.239999px;}
.ws3e{word-spacing:-12.174544px;}
.ws37{word-spacing:-12.110159px;}
.ws17{word-spacing:-12.109090px;}
.ws19{word-spacing:-12.043635px;}
.wsb{word-spacing:-11.997016px;}
.ws40{word-spacing:-11.978181px;}
.ws18{word-spacing:-11.912726px;}
.ws2a{word-spacing:-11.847272px;}
.ws1a{word-spacing:-11.781817px;}
.ws31{word-spacing:-11.716363px;}
.ws44{word-spacing:-11.650908px;}
.ws3f{word-spacing:-10.669090px;}
.ws10{word-spacing:-10.275471px;}
.wsc{word-spacing:-10.221673px;}
.ws12{word-spacing:-10.167875px;}
.ws11{word-spacing:-10.114077px;}
.ws13{word-spacing:-10.060278px;}
.wsa{word-spacing:-10.006480px;}
.ws1c{word-spacing:-9.956623px;}
.ws23{word-spacing:-9.956488px;}
.ws22{word-spacing:-9.956436px;}
.ws25{word-spacing:-9.954911px;}
.ws1e{word-spacing:-9.954892px;}
.ws24{word-spacing:-9.954611px;}
.ws14{word-spacing:-9.952682px;}
.ws20{word-spacing:-9.952097px;}
.ws27{word-spacing:-9.951576px;}
.ws26{word-spacing:-9.933050px;}
.ws1f{word-spacing:-9.932346px;}
.ws1d{word-spacing:-9.927050px;}
.wsd{word-spacing:-9.683690px;}
.ws3d{word-spacing:-9.621817px;}
.wse{word-spacing:-9.468497px;}
.ws2e{word-spacing:-9.032727px;}
.ws1b{word-spacing:-8.984313px;}
.ws36{word-spacing:-8.901817px;}
.wsf{word-spacing:-8.822918px;}
.ws3a{word-spacing:-8.705454px;}
.ws46{word-spacing:-8.639999px;}
.ws34{word-spacing:-7.854545px;}
.ws3b{word-spacing:-7.069090px;}
.ws39{word-spacing:-6.938181px;}
.ws3c{word-spacing:-6.807272px;}
.ws35{word-spacing:-6.676363px;}
.ws28{word-spacing:-6.635114px;}
.ws47{word-spacing:-6.479999px;}
.ws21{word-spacing:-5.487425px;}
.ws29{word-spacing:0.000000px;}
.ws6{word-spacing:4.667821px;}
._1{margin-left:-8.263411px;}
._11{margin-left:-7.134545px;}
._a{margin-left:-6.025404px;}
._c{margin-left:-4.737503px;}
._3{margin-left:-3.511953px;}
._0{margin-left:-1.652682px;}
._2{width:1.432192px;}
._16{width:2.814545px;}
._15{width:4.710543px;}
._d{width:7.949926px;}
._6{width:12.887918px;}
._8{width:14.256544px;}
._14{width:15.436500px;}
._5{width:17.499505px;}
._4{width:18.584076px;}
._13{width:20.785311px;}
._7{width:22.003497px;}
._f{width:23.056317px;}
._10{width:28.603634px;}
._e{width:30.761456px;}
._b{width:32.731640px;}
._12{width:37.963633px;}
._9{width:43.038600px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887920px;}
.fs3{font-size:35.865480px;}
.fs2{font-size:47.820660px;}
.fs4{font-size:53.798280px;}
.fs5{font-size:65.454540px;}
.fs1{font-size:71.731020px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292640px;}
.y0{bottom:0.000000px;}
.y5b{bottom:111.472500px;}
.y2f{bottom:112.863000px;}
.y2e{bottom:129.924000px;}
.y5a{bottom:131.796000px;}
.y2d{bottom:146.362500px;}
.y59{bottom:162.649500px;}
.y2c{bottom:162.847500px;}
.y84{bottom:168.267000px;}
.y2b{bottom:179.331000px;}
.y2a{bottom:195.769500px;}
.y58{bottom:199.717500px;}
.y29{bottom:212.470500px;}
.y83{bottom:219.666000px;}
.y57{bottom:226.617000px;}
.y28{bottom:228.907500px;}
.y27{bottom:237.313500px;}
.y82{bottom:241.897500px;}
.y26{bottom:245.854500px;}
.y81{bottom:264.130500px;}
.y25{bottom:272.092500px;}
.y56{bottom:277.510500px;}
.y80{bottom:286.362000px;}
.y24{bottom:294.270000px;}
.y55{bottom:297.834000px;}
.y7f{bottom:308.593500px;}
.y23{bottom:314.593500px;}
.y54{bottom:319.159500px;}
.y7e{bottom:330.826500px;}
.y22{bottom:336.772500px;}
.y53{bottom:339.483000px;}
.y7d{bottom:353.058000px;}
.y21{bottom:358.950000px;}
.y52{bottom:360.810000px;}
.y7c{bottom:375.289500px;}
.y20{bottom:379.273500px;}
.y51{bottom:381.133500px;}
.y7b{bottom:397.521000px;}
.y1f{bottom:401.451000px;}
.y50{bottom:402.459000px;}
.y7a{bottom:419.754000px;}
.y4f{bottom:422.782500px;}
.y1e{bottom:428.179500px;}
.y79{bottom:441.985500px;}
.y4e{bottom:444.109500px;}
.y1d{bottom:455.016000px;}
.y78{bottom:464.217000px;}
.y4d{bottom:464.433000px;}
.y1c{bottom:477.193500px;}
.y4c{bottom:485.758500px;}
.y77{bottom:486.450000px;}
.y1b{bottom:499.371000px;}
.y4b{bottom:506.082000px;}
.y76{bottom:508.681500px;}
.y1a{bottom:519.694500px;}
.y75{bottom:530.913000px;}
.y19{bottom:541.872000px;}
.y4a{bottom:541.939500px;}
.y74{bottom:553.146000px;}
.y18{bottom:568.602000px;}
.y73{bottom:575.377500px;}
.y49{bottom:592.833000px;}
.y72{bottom:597.609000px;}
.y17{bottom:598.585500px;}
.y48{bottom:613.156500px;}
.y16{bottom:618.909000px;}
.y71{bottom:619.842000px;}
.y47{bottom:634.482000px;}
.y46{bottom:654.805500px;}
.y15{bottom:655.380000px;}
.y70{bottom:656.238000px;}
.y45{bottom:676.132500px;}
.y44{bottom:701.340000px;}
.y6f{bottom:707.637000px;}
.y43{bottom:727.162500px;}
.y6e{bottom:727.960500px;}
.y14{bottom:736.636500px;}
.y42{bottom:747.486000px;}
.y6d{bottom:748.284000px;}
.y13{bottom:753.075000px;}
.y6c{bottom:768.609000px;}
.y41{bottom:768.813000px;}
.y12{bottom:769.513500px;}
.y11{bottom:785.952000px;}
.y6b{bottom:788.932500px;}
.y40{bottom:790.138500px;}
.y10{bottom:802.390500px;}
.y6a{bottom:809.256000px;}
.y3f{bottom:810.462000px;}
.yf{bottom:818.829000px;}
.y69{bottom:829.579500px;}
.ye{bottom:835.266000px;}
.y3e{bottom:835.671000px;}
.y68{bottom:849.903000px;}
.yd{bottom:851.704500px;}
.y3d{bottom:861.493500px;}
.yc{bottom:868.143000px;}
.y67{bottom:880.758000px;}
.y3c{bottom:882.819000px;}
.yb{bottom:884.581500px;}
.ya{bottom:901.020000px;}
.y3b{bottom:903.142500px;}
.y9{bottom:917.458500px;}
.y66{bottom:924.424500px;}
.y3a{bottom:924.469500px;}
.y65{bottom:944.748000px;}
.y39{bottom:945.795000px;}
.y64{bottom:965.071500px;}
.y8{bottom:967.633500px;}
.y38{bottom:971.004000px;}
.y63{bottom:985.396500px;}
.y7{bottom:987.060000px;}
.y37{bottom:996.826500px;}
.y62{bottom:1005.720000px;}
.y6{bottom:1006.486500px;}
.y36{bottom:1017.150000px;}
.y5{bottom:1025.914500px;}
.y61{bottom:1026.043500px;}
.y35{bottom:1038.475500px;}
.y4{bottom:1045.341000px;}
.y60{bottom:1046.367000px;}
.y34{bottom:1058.799000px;}
.y5f{bottom:1066.690500px;}
.y3{bottom:1074.669000px;}
.y33{bottom:1080.126000px;}
.y5e{bottom:1087.015500px;}
.y32{bottom:1101.451500px;}
.y5d{bottom:1107.339000px;}
.y2{bottom:1113.523500px;}
.y31{bottom:1122.777000px;}
.y5c{bottom:1127.662500px;}
.y1{bottom:1146.400500px;}
.y30{bottom:1147.986000px;}
.h9{height:20.861768px;}
.h5{height:25.392760px;}
.h7{height:38.089182px;}
.hb{height:46.212723px;}
.h6{height:46.341814px;}
.ha{height:47.073495px;}
.hc{height:50.785562px;}
.h4{height:60.755027px;}
.h8{height:60.942658px;}
.h2{height:73.131189px;}
.h3{height:88.804252px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x6{left:112.872000px;}
.xa{left:124.363500px;}
.x3{left:129.517500px;}
.x8{left:134.983500px;}
.x9{left:148.909500px;}
.x4{left:170.983500px;}
.x7{left:172.576500px;}
.x2{left:175.122000px;}
.x5{left:184.909500px;}
@media print{
.v3{vertical-align:-17.930667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.909333pt;}
.v1{vertical-align:34.432000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.058424pt;}
.ls5{letter-spacing:2.058543pt;}
.ls0{letter-spacing:2.742780pt;}
.ls7{letter-spacing:11.954902pt;}
.ls6{letter-spacing:11.955307pt;}
.ls3{letter-spacing:18.678939pt;}
.ls1{letter-spacing:31.876601pt;}
.ls2{letter-spacing:31.881934pt;}
.ws45{word-spacing:-76.513067pt;}
.ws0{word-spacing:-68.861760pt;}
.ws33{word-spacing:-58.181813pt;}
.ws15{word-spacing:-57.384800pt;}
.ws30{word-spacing:-43.636360pt;}
.ws32{word-spacing:-43.287269pt;}
.ws9{word-spacing:-35.913341pt;}
.ws8{word-spacing:-35.865520pt;}
.ws38{word-spacing:-31.880453pt;}
.ws2{word-spacing:-27.735994pt;}
.ws2f{word-spacing:-25.309089pt;}
.ws2c{word-spacing:-15.359999pt;}
.ws42{word-spacing:-15.069090pt;}
.ws41{word-spacing:-14.021817pt;}
.ws43{word-spacing:-11.985454pt;}
.ws7{word-spacing:-11.797605pt;}
.ws4{word-spacing:-11.796957pt;}
.ws1{word-spacing:-11.794080pt;}
.ws3{word-spacing:-11.793332pt;}
.ws5{word-spacing:-11.791878pt;}
.ws16{word-spacing:-11.054545pt;}
.ws2b{word-spacing:-10.938181pt;}
.ws2d{word-spacing:-10.879999pt;}
.ws3e{word-spacing:-10.821817pt;}
.ws37{word-spacing:-10.764586pt;}
.ws17{word-spacing:-10.763635pt;}
.ws19{word-spacing:-10.705454pt;}
.wsb{word-spacing:-10.664015pt;}
.ws40{word-spacing:-10.647272pt;}
.ws18{word-spacing:-10.589090pt;}
.ws2a{word-spacing:-10.530908pt;}
.ws1a{word-spacing:-10.472726pt;}
.ws31{word-spacing:-10.414545pt;}
.ws44{word-spacing:-10.356363pt;}
.ws3f{word-spacing:-9.483636pt;}
.ws10{word-spacing:-9.133752pt;}
.wsc{word-spacing:-9.085932pt;}
.ws12{word-spacing:-9.038111pt;}
.ws11{word-spacing:-8.990290pt;}
.ws13{word-spacing:-8.942470pt;}
.wsa{word-spacing:-8.894649pt;}
.ws1c{word-spacing:-8.850332pt;}
.ws23{word-spacing:-8.850211pt;}
.ws22{word-spacing:-8.850165pt;}
.ws25{word-spacing:-8.848810pt;}
.ws1e{word-spacing:-8.848793pt;}
.ws24{word-spacing:-8.848543pt;}
.ws14{word-spacing:-8.846828pt;}
.ws20{word-spacing:-8.846308pt;}
.ws27{word-spacing:-8.845845pt;}
.ws26{word-spacing:-8.829378pt;}
.ws1f{word-spacing:-8.828752pt;}
.ws1d{word-spacing:-8.824044pt;}
.wsd{word-spacing:-8.607725pt;}
.ws3d{word-spacing:-8.552727pt;}
.wse{word-spacing:-8.416442pt;}
.ws2e{word-spacing:-8.029090pt;}
.ws1b{word-spacing:-7.986056pt;}
.ws36{word-spacing:-7.912727pt;}
.wsf{word-spacing:-7.842594pt;}
.ws3a{word-spacing:-7.738181pt;}
.ws46{word-spacing:-7.679999pt;}
.ws34{word-spacing:-6.981818pt;}
.ws3b{word-spacing:-6.283636pt;}
.ws39{word-spacing:-6.167272pt;}
.ws3c{word-spacing:-6.050909pt;}
.ws35{word-spacing:-5.934545pt;}
.ws28{word-spacing:-5.897879pt;}
.ws47{word-spacing:-5.760000pt;}
.ws21{word-spacing:-4.877711pt;}
.ws29{word-spacing:0.000000pt;}
.ws6{word-spacing:4.149174pt;}
._1{margin-left:-7.345254pt;}
._11{margin-left:-6.341818pt;}
._a{margin-left:-5.355915pt;}
._c{margin-left:-4.211114pt;}
._3{margin-left:-3.121736pt;}
._0{margin-left:-1.469051pt;}
._2{width:1.273060pt;}
._16{width:2.501818pt;}
._15{width:4.187150pt;}
._d{width:7.066601pt;}
._6{width:11.455927pt;}
._8{width:12.672484pt;}
._14{width:13.721334pt;}
._5{width:15.555116pt;}
._4{width:16.519179pt;}
._13{width:18.475832pt;}
._7{width:19.558664pt;}
._f{width:20.494504pt;}
._10{width:25.425452pt;}
._e{width:27.343517pt;}
._b{width:29.094791pt;}
._12{width:33.745452pt;}
._9{width:38.256533pt;}
.fs7{font-size:26.567040pt;}
.fs3{font-size:31.880427pt;}
.fs2{font-size:42.507253pt;}
.fs4{font-size:47.820693pt;}
.fs5{font-size:58.181813pt;}
.fs1{font-size:63.760907pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815680pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:99.086667pt;}
.y2f{bottom:100.322667pt;}
.y2e{bottom:115.488000pt;}
.y5a{bottom:117.152000pt;}
.y2d{bottom:130.100000pt;}
.y59{bottom:144.577333pt;}
.y2c{bottom:144.753333pt;}
.y84{bottom:149.570667pt;}
.y2b{bottom:159.405333pt;}
.y2a{bottom:174.017333pt;}
.y58{bottom:177.526667pt;}
.y29{bottom:188.862667pt;}
.y83{bottom:195.258667pt;}
.y57{bottom:201.437333pt;}
.y28{bottom:203.473333pt;}
.y27{bottom:210.945333pt;}
.y82{bottom:215.020000pt;}
.y26{bottom:218.537333pt;}
.y81{bottom:234.782667pt;}
.y25{bottom:241.860000pt;}
.y56{bottom:246.676000pt;}
.y80{bottom:254.544000pt;}
.y24{bottom:261.573333pt;}
.y55{bottom:264.741333pt;}
.y7f{bottom:274.305333pt;}
.y23{bottom:279.638667pt;}
.y54{bottom:283.697333pt;}
.y7e{bottom:294.068000pt;}
.y22{bottom:299.353333pt;}
.y53{bottom:301.762667pt;}
.y7d{bottom:313.829333pt;}
.y21{bottom:319.066667pt;}
.y52{bottom:320.720000pt;}
.y7c{bottom:333.590667pt;}
.y20{bottom:337.132000pt;}
.y51{bottom:338.785333pt;}
.y7b{bottom:353.352000pt;}
.y1f{bottom:356.845333pt;}
.y50{bottom:357.741333pt;}
.y7a{bottom:373.114667pt;}
.y4f{bottom:375.806667pt;}
.y1e{bottom:380.604000pt;}
.y79{bottom:392.876000pt;}
.y4e{bottom:394.764000pt;}
.y1d{bottom:404.458667pt;}
.y78{bottom:412.637333pt;}
.y4d{bottom:412.829333pt;}
.y1c{bottom:424.172000pt;}
.y4c{bottom:431.785333pt;}
.y77{bottom:432.400000pt;}
.y1b{bottom:443.885333pt;}
.y4b{bottom:449.850667pt;}
.y76{bottom:452.161333pt;}
.y1a{bottom:461.950667pt;}
.y75{bottom:471.922667pt;}
.y19{bottom:481.664000pt;}
.y4a{bottom:481.724000pt;}
.y74{bottom:491.685333pt;}
.y18{bottom:505.424000pt;}
.y73{bottom:511.446667pt;}
.y49{bottom:526.962667pt;}
.y72{bottom:531.208000pt;}
.y17{bottom:532.076000pt;}
.y48{bottom:545.028000pt;}
.y16{bottom:550.141333pt;}
.y71{bottom:550.970667pt;}
.y47{bottom:563.984000pt;}
.y46{bottom:582.049333pt;}
.y15{bottom:582.560000pt;}
.y70{bottom:583.322667pt;}
.y45{bottom:601.006667pt;}
.y44{bottom:623.413333pt;}
.y6f{bottom:629.010667pt;}
.y43{bottom:646.366667pt;}
.y6e{bottom:647.076000pt;}
.y14{bottom:654.788000pt;}
.y42{bottom:664.432000pt;}
.y6d{bottom:665.141333pt;}
.y13{bottom:669.400000pt;}
.y6c{bottom:683.208000pt;}
.y41{bottom:683.389333pt;}
.y12{bottom:684.012000pt;}
.y11{bottom:698.624000pt;}
.y6b{bottom:701.273333pt;}
.y40{bottom:702.345333pt;}
.y10{bottom:713.236000pt;}
.y6a{bottom:719.338667pt;}
.y3f{bottom:720.410667pt;}
.yf{bottom:727.848000pt;}
.y69{bottom:737.404000pt;}
.ye{bottom:742.458667pt;}
.y3e{bottom:742.818667pt;}
.y68{bottom:755.469333pt;}
.yd{bottom:757.070667pt;}
.y3d{bottom:765.772000pt;}
.yc{bottom:771.682667pt;}
.y67{bottom:782.896000pt;}
.y3c{bottom:784.728000pt;}
.yb{bottom:786.294667pt;}
.ya{bottom:800.906667pt;}
.y3b{bottom:802.793333pt;}
.y9{bottom:815.518667pt;}
.y66{bottom:821.710667pt;}
.y3a{bottom:821.750667pt;}
.y65{bottom:839.776000pt;}
.y39{bottom:840.706667pt;}
.y64{bottom:857.841333pt;}
.y8{bottom:860.118667pt;}
.y38{bottom:863.114667pt;}
.y63{bottom:875.908000pt;}
.y7{bottom:877.386667pt;}
.y37{bottom:886.068000pt;}
.y62{bottom:893.973333pt;}
.y6{bottom:894.654667pt;}
.y36{bottom:904.133333pt;}
.y5{bottom:911.924000pt;}
.y61{bottom:912.038667pt;}
.y35{bottom:923.089333pt;}
.y4{bottom:929.192000pt;}
.y60{bottom:930.104000pt;}
.y34{bottom:941.154667pt;}
.y5f{bottom:948.169333pt;}
.y3{bottom:955.261333pt;}
.y33{bottom:960.112000pt;}
.y5e{bottom:966.236000pt;}
.y32{bottom:979.068000pt;}
.y5d{bottom:984.301333pt;}
.y2{bottom:989.798667pt;}
.y31{bottom:998.024000pt;}
.y5c{bottom:1002.366667pt;}
.y1{bottom:1019.022667pt;}
.y30{bottom:1020.432000pt;}
.h9{height:18.543794pt;}
.h5{height:22.571342pt;}
.h7{height:33.857051pt;}
.hb{height:41.077976pt;}
.h6{height:41.192724pt;}
.ha{height:41.843107pt;}
.hc{height:45.142722pt;}
.h4{height:54.004469pt;}
.h8{height:54.171251pt;}
.h2{height:65.005501pt;}
.h3{height:78.937113pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x6{left:100.330667pt;}
.xa{left:110.545333pt;}
.x3{left:115.126667pt;}
.x8{left:119.985333pt;}
.x9{left:132.364000pt;}
.x4{left:151.985333pt;}
.x7{left:153.401333pt;}
.x2{left:155.664000pt;}
.x5{left:164.364000pt;}
}




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