
    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_0c439f971754bcfe6b3cea34.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_238625e0c8797796a6be5ca5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8f991e0f04c99554cf0074e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_c58826ac4ea1819d250754ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927500;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_ecae6be1d3462814e83819c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_c9a1a2f822d58dfdb3e38f29.woff2')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_3d7f035de70330e46fb199ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972000;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_3fa64df11db0fa510fb4e473.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_39edc091dee595bfb8e44214.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_85272ad244b84af1cfbd1967.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_e607927a009cba5409a8e37b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_b7444b83c8ddb80c2eaf4675.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_0c439f971754bcfe6b3cea34.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;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_238625e0c8797796a6be5ca5.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_48b57b5904c07e21d24b7140.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_f705618bbb2acc349296adfe.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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;}
.ma{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.md{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m1{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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls4{letter-spacing:-13.176000px;}
.ls5{letter-spacing:-3.744000px;}
.ls3{letter-spacing:-3.168000px;}
.ls1{letter-spacing:-0.768000px;}
.ls2{letter-spacing:-0.144000px;}
.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;}
}
.wsa{word-spacing:-18.720000px;}
.wsc{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.wse{word-spacing:-5.400000px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:0.144000px;}
.ws6{word-spacing:0.720000px;}
.ws8{word-spacing:3.168000px;}
.wsd{word-spacing:3.744000px;}
.wsb{word-spacing:13.176000px;}
.ws0{word-spacing:33.621000px;}
.ws9{word-spacing:117.450000px;}
.ws1{word-spacing:386.314800px;}
.ws5{word-spacing:1699.977600px;}
._13{margin-left:-18.720000px;}
._18{margin-left:-15.300000px;}
._1c{margin-left:-13.968000px;}
._c{margin-left:-12.607200px;}
._6{margin-left:-10.807200px;}
._8{margin-left:-9.201600px;}
._3{margin-left:-8.200800px;}
._a{margin-left:-7.192800px;}
._1{margin-left:-6.112800px;}
._f{margin-left:-4.867200px;}
._5{margin-left:-2.959200px;}
._b{margin-left:-1.728000px;}
._0{width:2.037600px;}
._11{width:3.426000px;}
._27{width:4.874400px;}
._20{width:6.170400px;}
._19{width:7.178400px;}
._22{width:8.215200px;}
._1d{width:10.274400px;}
._2{width:11.592000px;}
._1b{width:12.780000px;}
._1f{width:14.306400px;}
._2a{width:16.430400px;}
._7{width:17.568000px;}
._28{width:20.584800px;}
._9{width:22.003200px;}
._25{width:25.869600px;}
._4{width:27.554400px;}
._e{width:32.796000px;}
._17{width:33.912000px;}
._26{width:35.215200px;}
._29{width:38.592000px;}
._10{width:39.888000px;}
._16{width:41.140800px;}
._12{width:57.844800px;}
._1a{width:59.666400px;}
._2b{width:60.890400px;}
._31{width:64.152000px;}
._d{width:66.312000px;}
._21{width:68.686800px;}
._23{width:72.972000px;}
._30{width:74.052000px;}
._1e{width:85.050000px;}
._2c{width:89.604000px;}
._24{width:91.555200px;}
._2f{width:110.160000px;}
._14{width:112.240800px;}
._15{width:197.280000px;}
._2d{width:244.807200px;}
._2e{width:288.223200px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y33{bottom:64.760550px;}
.y32{bottom:65.586600px;}
.y28{bottom:91.993050px;}
.y5e{bottom:94.478850px;}
.y87{bottom:105.960150px;}
.y27{bottom:114.493050px;}
.y5d{bottom:116.978850px;}
.y99{bottom:129.960150px;}
.y98{bottom:129.966150px;}
.y86{bottom:129.972150px;}
.y26{bottom:136.993050px;}
.y5c{bottom:139.478850px;}
.y97{bottom:153.960150px;}
.y85{bottom:153.966150px;}
.y25{bottom:159.493050px;}
.y5b{bottom:161.978850px;}
.y84{bottom:177.960150px;}
.y24{bottom:181.993050px;}
.y5a{bottom:184.478850px;}
.y83{bottom:201.960150px;}
.y96{bottom:201.966150px;}
.y23{bottom:204.493050px;}
.y5f{bottom:206.974350px;}
.y59{bottom:206.978850px;}
.y82{bottom:225.960150px;}
.y22{bottom:226.993050px;}
.y58{bottom:229.478850px;}
.y21{bottom:249.493050px;}
.y81{bottom:249.960150px;}
.y57{bottom:251.978850px;}
.y20{bottom:271.993050px;}
.y80{bottom:273.960150px;}
.y56{bottom:274.478850px;}
.y1f{bottom:294.493050px;}
.y55{bottom:296.978850px;}
.y7f{bottom:297.960150px;}
.y7e{bottom:297.966150px;}
.y1e{bottom:316.993050px;}
.y54{bottom:319.478850px;}
.y7d{bottom:321.960150px;}
.y1d{bottom:339.493050px;}
.y53{bottom:341.978850px;}
.y7c{bottom:345.960150px;}
.y1c{bottom:361.993050px;}
.y52{bottom:364.478850px;}
.y7b{bottom:369.960150px;}
.y1b{bottom:384.493050px;}
.y51{bottom:386.978850px;}
.y7a{bottom:393.960150px;}
.y95{bottom:393.978150px;}
.y1a{bottom:406.993050px;}
.y50{bottom:409.478850px;}
.y79{bottom:417.960150px;}
.y94{bottom:417.972150px;}
.y19{bottom:429.493050px;}
.y4f{bottom:431.978850px;}
.y78{bottom:441.966150px;}
.y18{bottom:451.993050px;}
.y4e{bottom:454.478850px;}
.y31{bottom:456.139950px;}
.y77{bottom:465.960150px;}
.y17{bottom:474.493050px;}
.y4d{bottom:476.978850px;}
.y30{bottom:478.639950px;}
.y76{bottom:489.960150px;}
.y93{bottom:489.978150px;}
.y16{bottom:496.993050px;}
.y4c{bottom:499.478850px;}
.y2f{bottom:501.139950px;}
.y75{bottom:513.960150px;}
.y92{bottom:513.972150px;}
.y15{bottom:519.493050px;}
.y4b{bottom:521.978850px;}
.y74{bottom:537.960150px;}
.y91{bottom:537.966150px;}
.y2e{bottom:541.639950px;}
.y14{bottom:541.993050px;}
.y4a{bottom:544.478850px;}
.y73{bottom:561.960150px;}
.y90{bottom:561.972150px;}
.y13{bottom:564.493050px;}
.y49{bottom:566.978850px;}
.y72{bottom:585.960150px;}
.y8f{bottom:585.966150px;}
.y2d{bottom:586.639950px;}
.y12{bottom:586.993050px;}
.y48{bottom:589.478850px;}
.y11{bottom:609.493050px;}
.y71{bottom:609.960150px;}
.y70{bottom:609.972150px;}
.y47{bottom:611.978850px;}
.y2c{bottom:627.139950px;}
.y10{bottom:631.993050px;}
.y8e{bottom:633.960150px;}
.y6f{bottom:633.966150px;}
.y46{bottom:634.478850px;}
.yf{bottom:654.493050px;}
.y45{bottom:656.978850px;}
.y6e{bottom:657.960150px;}
.y2b{bottom:663.139950px;}
.ye{bottom:676.993050px;}
.y44{bottom:679.478850px;}
.y6d{bottom:681.960150px;}
.y2a{bottom:699.139950px;}
.yd{bottom:699.493050px;}
.y43{bottom:701.978850px;}
.y6c{bottom:705.960150px;}
.yc{bottom:721.993050px;}
.y42{bottom:724.478850px;}
.y6b{bottom:729.960150px;}
.y29{bottom:735.139950px;}
.yb{bottom:744.493050px;}
.y41{bottom:746.978850px;}
.y6a{bottom:753.960150px;}
.y8d{bottom:753.978150px;}
.ya{bottom:766.993050px;}
.y40{bottom:769.478850px;}
.y69{bottom:777.960150px;}
.y8c{bottom:777.972150px;}
.y9{bottom:789.493050px;}
.y3f{bottom:791.978850px;}
.y68{bottom:801.960150px;}
.y8b{bottom:801.966150px;}
.y9c{bottom:803.454150px;}
.y8{bottom:811.993050px;}
.y3e{bottom:814.478850px;}
.y67{bottom:825.960150px;}
.y7{bottom:834.493050px;}
.y3d{bottom:836.978850px;}
.y66{bottom:849.960150px;}
.y3c{bottom:859.478850px;}
.y8a{bottom:873.960150px;}
.y65{bottom:873.972150px;}
.y6{bottom:877.988550px;}
.y3b{bottom:881.978850px;}
.y89{bottom:897.960150px;}
.y64{bottom:897.966150px;}
.y5{bottom:898.993050px;}
.y3a{bottom:904.478850px;}
.y4{bottom:919.993050px;}
.y63{bottom:921.960150px;}
.y9b{bottom:921.978150px;}
.y39{bottom:926.978850px;}
.y62{bottom:945.960150px;}
.y9a{bottom:945.972150px;}
.y38{bottom:949.478850px;}
.y3{bottom:969.493050px;}
.y88{bottom:969.960150px;}
.y61{bottom:969.966150px;}
.y37{bottom:971.978850px;}
.y60{bottom:993.960150px;}
.y36{bottom:994.478850px;}
.y35{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y34{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.he{height:37.494141px;}
.h8{height:40.634766px;}
.h9{height:41.660156px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.hf{height:50.418000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xd{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.xc{left:73.559100px;}
.x11{left:85.039350px;}
.x7{left:224.187900px;}
.x8{left:245.447700px;}
.x3{left:248.164350px;}
.x12{left:374.424150px;}
.x13{left:399.929550px;}
.x10{left:412.272150px;}
.x6{left:415.948650px;}
.x14{left:421.195650px;}
.x5{left:498.547650px;}
.x4{left:586.037550px;}
.xf{left:614.196150px;}
.xe{left:632.875800px;}
.x17{left:638.391450px;}
.xa{left:642.156150px;}
.xb{left:652.542000px;}
.x15{left:671.761050px;}
.x16{left:685.668600px;}
.x9{left:710.503950px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls4{letter-spacing:-11.712000pt;}
.ls5{letter-spacing:-3.328000pt;}
.ls3{letter-spacing:-2.816000pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsa{word-spacing:-16.640000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.wse{word-spacing:-4.800000pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:0.128000pt;}
.ws6{word-spacing:0.640000pt;}
.ws8{word-spacing:2.816000pt;}
.wsd{word-spacing:3.328000pt;}
.wsb{word-spacing:11.712000pt;}
.ws0{word-spacing:29.885333pt;}
.ws9{word-spacing:104.400000pt;}
.ws1{word-spacing:343.390933pt;}
.ws5{word-spacing:1511.091200pt;}
._13{margin-left:-16.640000pt;}
._18{margin-left:-13.600000pt;}
._1c{margin-left:-12.416000pt;}
._c{margin-left:-11.206400pt;}
._6{margin-left:-9.606400pt;}
._8{margin-left:-8.179200pt;}
._3{margin-left:-7.289600pt;}
._a{margin-left:-6.393600pt;}
._1{margin-left:-5.433600pt;}
._f{margin-left:-4.326400pt;}
._5{margin-left:-2.630400pt;}
._b{margin-left:-1.536000pt;}
._0{width:1.811200pt;}
._11{width:3.045333pt;}
._27{width:4.332800pt;}
._20{width:5.484800pt;}
._19{width:6.380800pt;}
._22{width:7.302400pt;}
._1d{width:9.132800pt;}
._2{width:10.304000pt;}
._1b{width:11.360000pt;}
._1f{width:12.716800pt;}
._2a{width:14.604800pt;}
._7{width:15.616000pt;}
._28{width:18.297600pt;}
._9{width:19.558400pt;}
._25{width:22.995200pt;}
._4{width:24.492800pt;}
._e{width:29.152000pt;}
._17{width:30.144000pt;}
._26{width:31.302400pt;}
._29{width:34.304000pt;}
._10{width:35.456000pt;}
._16{width:36.569600pt;}
._12{width:51.417600pt;}
._1a{width:53.036800pt;}
._2b{width:54.124800pt;}
._31{width:57.024000pt;}
._d{width:58.944000pt;}
._21{width:61.054933pt;}
._23{width:64.864000pt;}
._30{width:65.824000pt;}
._1e{width:75.600000pt;}
._2c{width:79.648000pt;}
._24{width:81.382400pt;}
._2f{width:97.920000pt;}
._14{width:99.769600pt;}
._15{width:175.360000pt;}
._2d{width:217.606400pt;}
._2e{width:256.198400pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y33{bottom:57.564933pt;}
.y32{bottom:58.299200pt;}
.y28{bottom:81.771600pt;}
.y5e{bottom:83.981200pt;}
.y87{bottom:94.186800pt;}
.y27{bottom:101.771600pt;}
.y5d{bottom:103.981200pt;}
.y99{bottom:115.520133pt;}
.y98{bottom:115.525467pt;}
.y86{bottom:115.530800pt;}
.y26{bottom:121.771600pt;}
.y5c{bottom:123.981200pt;}
.y97{bottom:136.853467pt;}
.y85{bottom:136.858800pt;}
.y25{bottom:141.771600pt;}
.y5b{bottom:143.981200pt;}
.y84{bottom:158.186800pt;}
.y24{bottom:161.771600pt;}
.y5a{bottom:163.981200pt;}
.y83{bottom:179.520133pt;}
.y96{bottom:179.525467pt;}
.y23{bottom:181.771600pt;}
.y5f{bottom:183.977200pt;}
.y59{bottom:183.981200pt;}
.y82{bottom:200.853467pt;}
.y22{bottom:201.771600pt;}
.y58{bottom:203.981200pt;}
.y21{bottom:221.771600pt;}
.y81{bottom:222.186800pt;}
.y57{bottom:223.981200pt;}
.y20{bottom:241.771600pt;}
.y80{bottom:243.520133pt;}
.y56{bottom:243.981200pt;}
.y1f{bottom:261.771600pt;}
.y55{bottom:263.981200pt;}
.y7f{bottom:264.853467pt;}
.y7e{bottom:264.858800pt;}
.y1e{bottom:281.771600pt;}
.y54{bottom:283.981200pt;}
.y7d{bottom:286.186800pt;}
.y1d{bottom:301.771600pt;}
.y53{bottom:303.981200pt;}
.y7c{bottom:307.520133pt;}
.y1c{bottom:321.771600pt;}
.y52{bottom:323.981200pt;}
.y7b{bottom:328.853467pt;}
.y1b{bottom:341.771600pt;}
.y51{bottom:343.981200pt;}
.y7a{bottom:350.186800pt;}
.y95{bottom:350.202800pt;}
.y1a{bottom:361.771600pt;}
.y50{bottom:363.981200pt;}
.y79{bottom:371.520133pt;}
.y94{bottom:371.530800pt;}
.y19{bottom:381.771600pt;}
.y4f{bottom:383.981200pt;}
.y78{bottom:392.858800pt;}
.y18{bottom:401.771600pt;}
.y4e{bottom:403.981200pt;}
.y31{bottom:405.457733pt;}
.y77{bottom:414.186800pt;}
.y17{bottom:421.771600pt;}
.y4d{bottom:423.981200pt;}
.y30{bottom:425.457733pt;}
.y76{bottom:435.520133pt;}
.y93{bottom:435.536133pt;}
.y16{bottom:441.771600pt;}
.y4c{bottom:443.981200pt;}
.y2f{bottom:445.457733pt;}
.y75{bottom:456.853467pt;}
.y92{bottom:456.864133pt;}
.y15{bottom:461.771600pt;}
.y4b{bottom:463.981200pt;}
.y74{bottom:478.186800pt;}
.y91{bottom:478.192133pt;}
.y2e{bottom:481.457733pt;}
.y14{bottom:481.771600pt;}
.y4a{bottom:483.981200pt;}
.y73{bottom:499.520133pt;}
.y90{bottom:499.530800pt;}
.y13{bottom:501.771600pt;}
.y49{bottom:503.981200pt;}
.y72{bottom:520.853467pt;}
.y8f{bottom:520.858800pt;}
.y2d{bottom:521.457733pt;}
.y12{bottom:521.771600pt;}
.y48{bottom:523.981200pt;}
.y11{bottom:541.771600pt;}
.y71{bottom:542.186800pt;}
.y70{bottom:542.197467pt;}
.y47{bottom:543.981200pt;}
.y2c{bottom:557.457733pt;}
.y10{bottom:561.771600pt;}
.y8e{bottom:563.520133pt;}
.y6f{bottom:563.525467pt;}
.y46{bottom:563.981200pt;}
.yf{bottom:581.771600pt;}
.y45{bottom:583.981200pt;}
.y6e{bottom:584.853467pt;}
.y2b{bottom:589.457733pt;}
.ye{bottom:601.771600pt;}
.y44{bottom:603.981200pt;}
.y6d{bottom:606.186800pt;}
.y2a{bottom:621.457733pt;}
.yd{bottom:621.771600pt;}
.y43{bottom:623.981200pt;}
.y6c{bottom:627.520133pt;}
.yc{bottom:641.771600pt;}
.y42{bottom:643.981200pt;}
.y6b{bottom:648.853467pt;}
.y29{bottom:653.457733pt;}
.yb{bottom:661.771600pt;}
.y41{bottom:663.981200pt;}
.y6a{bottom:670.186800pt;}
.y8d{bottom:670.202800pt;}
.ya{bottom:681.771600pt;}
.y40{bottom:683.981200pt;}
.y69{bottom:691.520133pt;}
.y8c{bottom:691.530800pt;}
.y9{bottom:701.771600pt;}
.y3f{bottom:703.981200pt;}
.y68{bottom:712.853467pt;}
.y8b{bottom:712.858800pt;}
.y9c{bottom:714.181467pt;}
.y8{bottom:721.771600pt;}
.y3e{bottom:723.981200pt;}
.y67{bottom:734.186800pt;}
.y7{bottom:741.771600pt;}
.y3d{bottom:743.981200pt;}
.y66{bottom:755.520133pt;}
.y3c{bottom:763.981200pt;}
.y8a{bottom:776.853467pt;}
.y65{bottom:776.864133pt;}
.y6{bottom:780.434267pt;}
.y3b{bottom:783.981200pt;}
.y89{bottom:798.186800pt;}
.y64{bottom:798.192133pt;}
.y5{bottom:799.104933pt;}
.y3a{bottom:803.981200pt;}
.y4{bottom:817.771600pt;}
.y63{bottom:819.520133pt;}
.y9b{bottom:819.536133pt;}
.y39{bottom:823.981200pt;}
.y62{bottom:840.853467pt;}
.y9a{bottom:840.864133pt;}
.y38{bottom:843.981200pt;}
.y3{bottom:861.771600pt;}
.y88{bottom:862.186800pt;}
.y61{bottom:862.192133pt;}
.y37{bottom:863.981200pt;}
.y60{bottom:883.520133pt;}
.y36{bottom:883.981200pt;}
.y35{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y34{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.he{height:33.328125pt;}
.h8{height:36.119792pt;}
.h9{height:37.031250pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.hf{height:44.816000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xd{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.xc{left:65.385867pt;}
.x11{left:75.590533pt;}
.x7{left:199.278133pt;}
.x8{left:218.175733pt;}
.x3{left:220.590533pt;}
.x12{left:332.821467pt;}
.x13{left:355.492933pt;}
.x10{left:366.464133pt;}
.x6{left:369.732133pt;}
.x14{left:374.396133pt;}
.x5{left:443.153467pt;}
.x4{left:520.922267pt;}
.xf{left:545.952133pt;}
.xe{left:562.556267pt;}
.x17{left:567.459067pt;}
.xa{left:570.805467pt;}
.xb{left:580.037333pt;}
.x15{left:597.120933pt;}
.x16{left:609.483200pt;}
.x9{left:631.559067pt;}
}




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