
    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_ef2b619658ea7855e06519d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995117;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_ff10f1067c5ee94c18850069.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_08b31122999722cab04bc62c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051000;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_e017974eaeee38c917de634b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_291cbb2f4ec0c6c11daedefc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937988;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_1f48d5d1caa3d5b1360baa07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.697754;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_f288c1c57dca5d09bddba602.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.697754;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_2aa20648cbb5a7780a2cd117.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.074091;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_9e189fc707076f35ee769984.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.101000;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_5d0b9efc8466bfef5bf137cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.960449;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_ce397c72f743820cf6f5bb9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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_a906ef8d1869c40b13c0647b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_af65b636d43024ddba4fb3a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.790000;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_f186292d68df50b04583ebe0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.081000;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_861f588e10a51dbcecf5656a.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;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_d8f5d9319bde9dff54fd15be.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c39e387bf3085e8fe60aea62.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f6e75ce9cda125f25ea8f782.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.040039;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_57e49e0a8fa3baad279c2971.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.202148;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_91ddef45f4e6939e6729dfa9.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.112305;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_f43842738fec75893f9363f1.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_1cc4eec8e80f289722dc0db6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.372070;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_dbc3a6c2c711cdde2dbf34b6.woff2')format("woff");}.ff17{font-family:ff17;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;}
.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;}
.lsd{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.334200px;}
.ls7{letter-spacing:-0.184200px;}
.lsa{letter-spacing:-0.181200px;}
.ls13{letter-spacing:-0.152400px;}
.ls3{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.057600px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.147000px;}
.ls0{letter-spacing:0.149760px;}
.ls11{letter-spacing:0.152640px;}
.ls1{letter-spacing:0.153360px;}
.ls9{letter-spacing:0.265200px;}
.lse{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.310800px;}
.lsb{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.900000px;}
.ls10{letter-spacing:26.945280px;}
.lsf{letter-spacing:60.065280px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(112,48,160),0 0.015em rgb(112,48,160),0.015em 0 rgb(112,48,160),0 -0.015em  rgb(112,48,160);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(112,48,160);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-66.240000px;}
.ws4{word-spacing:-16.870800px;}
.ws9{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.669200px;}
.ws3{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.407600px;}
.wsc{word-spacing:-16.102200px;}
.wsd{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.713400px;}
.ws6{word-spacing:-15.301440px;}
.ws7{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.428800px;}
.ws2{word-spacing:-14.238600px;}
.ws8{word-spacing:0.000000px;}
._38{margin-left:-5.500800px;}
._21{margin-left:-4.291200px;}
._1d{margin-left:-3.179520px;}
._2{margin-left:-1.166400px;}
._3{width:1.190400px;}
._c{width:2.748960px;}
._b{width:3.824640px;}
._e{width:5.190960px;}
._d{width:6.339360px;}
._11{width:7.768800px;}
._f{width:8.904240px;}
._10{width:10.099440px;}
._19{width:11.168640px;}
._18{width:12.192480px;}
._2f{width:13.204800px;}
._1a{width:14.241600px;}
._1b{width:15.301440px;}
._12{width:17.686080px;}
._13{width:18.720000px;}
._16{width:20.203200px;}
._25{width:21.679200px;}
._a{width:22.908960px;}
._17{width:24.009120px;}
._2c{width:25.604640px;}
._14{width:28.085760px;}
._15{width:29.344320px;}
._29{width:31.331520px;}
._1c{width:33.186240px;}
._1e{width:34.527360px;}
._30{width:36.233280px;}
._26{width:37.359360px;}
._34{width:39.214080px;}
._36{width:40.288320px;}
._35{width:41.333760px;}
._2b{width:42.566400px;}
._22{width:43.585920px;}
._23{width:44.976960px;}
._24{width:46.566720px;}
._33{width:48.378240px;}
._32{width:49.613760px;}
._37{width:51.733440px;}
._1f{width:53.853120px;}
._20{width:54.927360px;}
._2d{width:56.370240px;}
._2e{width:58.338720px;}
._28{width:60.344640px;}
._39{width:61.657920px;}
._2a{width:62.795520px;}
._31{width:66.571200px;}
._9{width:79.611840px;}
._27{width:82.866240px;}
._0{width:183.427200px;}
._6{width:190.676160px;}
._7{width:200.036160px;}
._8{width:431.125080px;}
._4{width:889.327200px;}
._1{width:1141.207200px;}
._5{width:1205.391360px;}
.fc5{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc6{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(112,48,160);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:6.690000px;}
.yc{bottom:8.460000px;}
.y9{bottom:32.250000px;}
.y7{bottom:45.360000px;}
.y5a{bottom:86.616000px;}
.y5e{bottom:109.116000px;}
.y59{bottom:111.276000px;}
.y33{bottom:122.436000px;}
.y5d{bottom:133.776000px;}
.y58{bottom:136.116000px;}
.y32{bottom:147.276000px;}
.y5c{bottom:158.430000px;}
.y57{bottom:160.770000px;}
.y31{bottom:171.930000px;}
.y5b{bottom:184.170000px;}
.y56{bottom:185.430000px;}
.y30{bottom:196.590000px;}
.y55{bottom:210.090000px;}
.y2f{bottom:221.250000px;}
.y54{bottom:234.750000px;}
.y2e{bottom:245.910000px;}
.y53{bottom:259.410000px;}
.y2d{bottom:270.570000px;}
.y52{bottom:284.070000px;}
.y2c{bottom:295.230000px;}
.y51{bottom:308.730000px;}
.y2b{bottom:319.890000px;}
.y50{bottom:333.390000px;}
.y2a{bottom:344.595000px;}
.y4f{bottom:358.095000px;}
.y29{bottom:369.255000px;}
.y4e{bottom:382.755000px;}
.y28{bottom:393.915000px;}
.y4d{bottom:407.415000px;}
.y27{bottom:418.575000px;}
.y4c{bottom:432.075000px;}
.y26{bottom:443.235000px;}
.y4b{bottom:456.735000px;}
.y4a{bottom:481.395000px;}
.y25{bottom:484.635000px;}
.y24{bottom:501.195000px;}
.y49{bottom:506.055000px;}
.y23{bottom:517.755000px;}
.y48{bottom:530.715000px;}
.y22{bottom:539.715000px;}
.y47{bottom:555.375000px;}
.y21{bottom:563.655000px;}
.y46{bottom:580.035000px;}
.y20{bottom:585.975000px;}
.y45{bottom:604.725000px;}
.y1f{bottom:608.505000px;}
.y44{bottom:629.385000px;}
.y1e{bottom:630.825000px;}
.y1d{bottom:653.325000px;}
.y43{bottom:654.045000px;}
.y1c{bottom:675.825000px;}
.y42{bottom:678.705000px;}
.y1b{bottom:698.145000px;}
.y41{bottom:703.365000px;}
.y1a{bottom:720.645000px;}
.y40{bottom:728.025000px;}
.y19{bottom:742.965000px;}
.y3f{bottom:752.685000px;}
.y18{bottom:765.465000px;}
.y3e{bottom:777.345000px;}
.y17{bottom:787.785000px;}
.y3d{bottom:802.005000px;}
.y16{bottom:810.285000px;}
.y3c{bottom:826.665000px;}
.y15{bottom:832.785000px;}
.y3b{bottom:851.325000px;}
.y14{bottom:855.105000px;}
.y3a{bottom:876.030000px;}
.y13{bottom:877.650000px;}
.y12{bottom:899.970000px;}
.y39{bottom:900.690000px;}
.y11{bottom:923.190000px;}
.y38{bottom:925.350000px;}
.y10{bottom:947.490000px;}
.y37{bottom:950.010000px;}
.yf{bottom:972.150000px;}
.y36{bottom:974.850000px;}
.ye{bottom:998.250000px;}
.y35{bottom:999.510000px;}
.yd{bottom:1023.810000px;}
.y34{bottom:1024.170000px;}
.yb{bottom:1059.450000px;}
.y6{bottom:1064.130000px;}
.y5{bottom:1083.570000px;}
.y4{bottom:1102.650000px;}
.y8{bottom:1131.270000px;}
.y3{bottom:1143.540000px;}
.y2{bottom:1196.460000px;}
.y1{bottom:1215.720000px;}
.ha{height:25.200000px;}
.h6{height:45.701719px;}
.h5{height:45.766406px;}
.h18{height:46.736719px;}
.h4{height:48.224531px;}
.h11{height:49.255313px;}
.hd{height:51.402240px;}
.h8{height:51.696000px;}
.hb{height:53.043750px;}
.h15{height:53.709961px;}
.h14{height:55.291992px;}
.h2{height:55.825312px;}
.h10{height:58.621992px;}
.h17{height:59.383125px;}
.h12{height:60.226875px;}
.h7{height:60.675840px;}
.h13{height:64.978594px;}
.h16{height:65.010937px;}
.he{height:65.884219px;}
.h19{height:66.078281px;}
.hf{height:66.757500px;}
.h9{height:67.169883px;}
.hc{height:70.664062px;}
.h3{height:165.024000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:238.170000px;}
.w5{width:238.215000px;}
.w3{width:496.725000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:10.800000px;}
.x8{left:15.120000px;}
.x4{left:60.839987px;}
.xc{left:63.899987px;}
.x13{left:85.139987px;}
.x3{left:149.975987px;}
.x10{left:153.029987px;}
.x9{left:195.149987px;}
.x5{left:351.795000px;}
.x11{left:354.855000px;}
.x2{left:435.854987px;}
.xf{left:438.734987px;}
.xd{left:478.544987px;}
.x1{left:498.884987px;}
.xe{left:501.764987px;}
.x14{left:510.584987px;}
.x7{left:603.285000px;}
.x12{left:606.345000px;}
.xb{left:705.029987px;}
.xa{left:837.329987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.297067pt;}
.ls7{letter-spacing:-0.163733pt;}
.lsa{letter-spacing:-0.161067pt;}
.ls13{letter-spacing:-0.135467pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.051200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.130667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls11{letter-spacing:0.135680pt;}
.ls1{letter-spacing:0.136320pt;}
.ls9{letter-spacing:0.235733pt;}
.lse{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.276267pt;}
.lsb{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls10{letter-spacing:23.951360pt;}
.lsf{letter-spacing:53.391360pt;}
.ws1{word-spacing:-58.880000pt;}
.ws4{word-spacing:-14.996267pt;}
.ws9{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.817067pt;}
.ws3{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.313067pt;}
.wsd{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.967467pt;}
.ws6{word-spacing:-13.601280pt;}
.ws7{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.825600pt;}
.ws2{word-spacing:-12.656533pt;}
.ws8{word-spacing:0.000000pt;}
._38{margin-left:-4.889600pt;}
._21{margin-left:-3.814400pt;}
._1d{margin-left:-2.826240pt;}
._2{margin-left:-1.036800pt;}
._3{width:1.058133pt;}
._c{width:2.443520pt;}
._b{width:3.399680pt;}
._e{width:4.614187pt;}
._d{width:5.634987pt;}
._11{width:6.905600pt;}
._f{width:7.914880pt;}
._10{width:8.977280pt;}
._19{width:9.927680pt;}
._18{width:10.837760pt;}
._2f{width:11.737600pt;}
._1a{width:12.659200pt;}
._1b{width:13.601280pt;}
._12{width:15.720960pt;}
._13{width:16.640000pt;}
._16{width:17.958400pt;}
._25{width:19.270400pt;}
._a{width:20.363520pt;}
._17{width:21.341440pt;}
._2c{width:22.759680pt;}
._14{width:24.965120pt;}
._15{width:26.083840pt;}
._29{width:27.850240pt;}
._1c{width:29.498880pt;}
._1e{width:30.690987pt;}
._30{width:32.207360pt;}
._26{width:33.208320pt;}
._34{width:34.856960pt;}
._36{width:35.811840pt;}
._35{width:36.741120pt;}
._2b{width:37.836800pt;}
._22{width:38.743040pt;}
._23{width:39.979520pt;}
._24{width:41.392640pt;}
._33{width:43.002880pt;}
._32{width:44.101120pt;}
._37{width:45.985280pt;}
._1f{width:47.869440pt;}
._20{width:48.824320pt;}
._2d{width:50.106880pt;}
._2e{width:51.856640pt;}
._28{width:53.639680pt;}
._39{width:54.807040pt;}
._2a{width:55.818240pt;}
._31{width:59.174400pt;}
._9{width:70.766080pt;}
._27{width:73.658880pt;}
._0{width:163.046400pt;}
._6{width:169.489920pt;}
._7{width:177.809920pt;}
._8{width:383.222293pt;}
._4{width:790.513067pt;}
._1{width:1014.406400pt;}
._5{width:1071.458987pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:5.946667pt;}
.yc{bottom:7.520000pt;}
.y9{bottom:28.666667pt;}
.y7{bottom:40.320000pt;}
.y5a{bottom:76.992000pt;}
.y5e{bottom:96.992000pt;}
.y59{bottom:98.912000pt;}
.y33{bottom:108.832000pt;}
.y5d{bottom:118.912000pt;}
.y58{bottom:120.992000pt;}
.y32{bottom:130.912000pt;}
.y5c{bottom:140.826667pt;}
.y57{bottom:142.906667pt;}
.y31{bottom:152.826667pt;}
.y5b{bottom:163.706667pt;}
.y56{bottom:164.826667pt;}
.y30{bottom:174.746667pt;}
.y55{bottom:186.746667pt;}
.y2f{bottom:196.666667pt;}
.y54{bottom:208.666667pt;}
.y2e{bottom:218.586667pt;}
.y53{bottom:230.586667pt;}
.y2d{bottom:240.506667pt;}
.y52{bottom:252.506667pt;}
.y2c{bottom:262.426667pt;}
.y51{bottom:274.426667pt;}
.y2b{bottom:284.346667pt;}
.y50{bottom:296.346667pt;}
.y2a{bottom:306.306667pt;}
.y4f{bottom:318.306667pt;}
.y29{bottom:328.226667pt;}
.y4e{bottom:340.226667pt;}
.y28{bottom:350.146667pt;}
.y4d{bottom:362.146667pt;}
.y27{bottom:372.066667pt;}
.y4c{bottom:384.066667pt;}
.y26{bottom:393.986667pt;}
.y4b{bottom:405.986667pt;}
.y4a{bottom:427.906667pt;}
.y25{bottom:430.786667pt;}
.y24{bottom:445.506667pt;}
.y49{bottom:449.826667pt;}
.y23{bottom:460.226667pt;}
.y48{bottom:471.746667pt;}
.y22{bottom:479.746667pt;}
.y47{bottom:493.666667pt;}
.y21{bottom:501.026667pt;}
.y46{bottom:515.586667pt;}
.y20{bottom:520.866667pt;}
.y45{bottom:537.533333pt;}
.y1f{bottom:540.893333pt;}
.y44{bottom:559.453333pt;}
.y1e{bottom:560.733333pt;}
.y1d{bottom:580.733333pt;}
.y43{bottom:581.373333pt;}
.y1c{bottom:600.733333pt;}
.y42{bottom:603.293333pt;}
.y1b{bottom:620.573333pt;}
.y41{bottom:625.213333pt;}
.y1a{bottom:640.573333pt;}
.y40{bottom:647.133333pt;}
.y19{bottom:660.413333pt;}
.y3f{bottom:669.053333pt;}
.y18{bottom:680.413333pt;}
.y3e{bottom:690.973333pt;}
.y17{bottom:700.253333pt;}
.y3d{bottom:712.893333pt;}
.y16{bottom:720.253333pt;}
.y3c{bottom:734.813333pt;}
.y15{bottom:740.253333pt;}
.y3b{bottom:756.733333pt;}
.y14{bottom:760.093333pt;}
.y3a{bottom:778.693333pt;}
.y13{bottom:780.133333pt;}
.y12{bottom:799.973333pt;}
.y39{bottom:800.613333pt;}
.y11{bottom:820.613333pt;}
.y38{bottom:822.533333pt;}
.y10{bottom:842.213333pt;}
.y37{bottom:844.453333pt;}
.yf{bottom:864.133333pt;}
.y36{bottom:866.533333pt;}
.ye{bottom:887.333333pt;}
.y35{bottom:888.453333pt;}
.yd{bottom:910.053333pt;}
.y34{bottom:910.373333pt;}
.yb{bottom:941.733333pt;}
.y6{bottom:945.893333pt;}
.y5{bottom:963.173333pt;}
.y4{bottom:980.133333pt;}
.y8{bottom:1005.573333pt;}
.y3{bottom:1016.480000pt;}
.y2{bottom:1063.520000pt;}
.y1{bottom:1080.640000pt;}
.ha{height:22.400000pt;}
.h6{height:40.623750pt;}
.h5{height:40.681250pt;}
.h18{height:41.543750pt;}
.h4{height:42.866250pt;}
.h11{height:43.782500pt;}
.hd{height:45.690880pt;}
.h8{height:45.952000pt;}
.hb{height:47.150000pt;}
.h15{height:47.742188pt;}
.h14{height:49.148438pt;}
.h2{height:49.622500pt;}
.h10{height:52.108438pt;}
.h17{height:52.785000pt;}
.h12{height:53.535000pt;}
.h7{height:53.934080pt;}
.h13{height:57.758750pt;}
.h16{height:57.787500pt;}
.he{height:58.563750pt;}
.h19{height:58.736250pt;}
.hf{height:59.340000pt;}
.h9{height:59.706562pt;}
.hc{height:62.812500pt;}
.h3{height:146.688000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:211.706667pt;}
.w5{width:211.746667pt;}
.w3{width:441.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.600000pt;}
.x8{left:13.440000pt;}
.x4{left:54.079988pt;}
.xc{left:56.799988pt;}
.x13{left:75.679988pt;}
.x3{left:133.311988pt;}
.x10{left:136.026655pt;}
.x9{left:173.466655pt;}
.x5{left:312.706667pt;}
.x11{left:315.426667pt;}
.x2{left:387.426655pt;}
.xf{left:389.986655pt;}
.xd{left:425.373322pt;}
.x1{left:443.453322pt;}
.xe{left:446.013322pt;}
.x14{left:453.853322pt;}
.x7{left:536.253333pt;}
.x12{left:538.973333pt;}
.xb{left:626.693322pt;}
.xa{left:744.293322pt;}
}




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