
    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_9cd42dd59754894e2e31b90c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_9f562e23e2f5784d2059a522.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_82391f37715fedda4aeaa536.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006000;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_d802b8deaff108b1a51b174b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_61dc2a7cb8ec812f936a8ca0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_8ef7bda763114ec3990d202c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_9ada09203e047184bb4ec1ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_684e8a16f5dd70bf8fb713a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.183000;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_82fa94287614605e5f1f0e55.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006000;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_7eeb0e5c3e5c7a0d6464e88a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5cc53257f956a89f65d7cef9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;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_1cba8c69a9e228153305939c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2ce66cf0f7c9b3f04eeefdb9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853000;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_32b21313064780c5aa1828ae.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006000;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_821b793eed8cec36d75493ee.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;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_b9adc912419e10a2f5f110c7.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005371;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_5b315760dc380eef7d7f28b6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.006000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.986000px;}
.ls6{letter-spacing:-4.897200px;}
.lsc{letter-spacing:-1.680000px;}
.lsb{letter-spacing:-0.918000px;}
.lsd{letter-spacing:-0.798000px;}
.ls10{letter-spacing:-0.528000px;}
.ls5{letter-spacing:-0.306000px;}
.ls9{letter-spacing:-0.204000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.192000px;}
.ls8{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.420000px;}
.ls3{letter-spacing:1.101120px;}
.ls2{letter-spacing:1.101162px;}
.lsf{letter-spacing:1.776600px;}
.ls0{letter-spacing:3.240000px;}
.lse{letter-spacing:3.267000px;}
.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;}
}
.ws25{word-spacing:-20.706000px;}
.ws1{word-spacing:-20.604000px;}
.ws1e{word-spacing:-19.992000px;}
.ws3{word-spacing:-12.300000px;}
.ws30{word-spacing:-11.178000px;}
.ws0{word-spacing:-9.936000px;}
.ws20{word-spacing:-7.770000px;}
.ws1f{word-spacing:-6.888000px;}
.ws2{word-spacing:-6.366360px;}
.wsc{word-spacing:-1.836000px;}
.wsf{word-spacing:-1.458000px;}
.wse{word-spacing:-1.404000px;}
.ws24{word-spacing:-0.882000px;}
.ws23{word-spacing:-0.840000px;}
.ws12{word-spacing:-0.594000px;}
.ws13{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.420000px;}
.ws2d{word-spacing:-0.378000px;}
.ws17{word-spacing:-0.240000px;}
.ws22{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.192000px;}
.ws21{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
.ws1c{word-spacing:0.204000px;}
.wsa{word-spacing:0.432000px;}
.ws31{word-spacing:0.528000px;}
.ws2c{word-spacing:0.594000px;}
.ws2f{word-spacing:0.648000px;}
.ws1d{word-spacing:0.756000px;}
.wsd{word-spacing:1.404000px;}
.ws2a{word-spacing:1.836000px;}
.ws29{word-spacing:1.998000px;}
.ws2b{word-spacing:2.214000px;}
.ws18{word-spacing:2.268000px;}
.ws7{word-spacing:2.352000px;}
.ws9{word-spacing:2.430000px;}
.ws8{word-spacing:2.436000px;}
.ws2e{word-spacing:2.484000px;}
.ws34{word-spacing:2.880000px;}
.ws10{word-spacing:2.970000px;}
.ws33{word-spacing:3.024000px;}
.ws11{word-spacing:3.132000px;}
.ws26{word-spacing:3.240000px;}
.ws6{word-spacing:3.360000px;}
.ws5{word-spacing:3.552000px;}
.ws28{word-spacing:4.428000px;}
.ws19{word-spacing:4.644000px;}
.ws15{word-spacing:4.897200px;}
.wsb{word-spacing:5.616000px;}
.ws1b{word-spacing:5.778000px;}
.ws1a{word-spacing:6.048000px;}
.ws27{word-spacing:6.750000px;}
.ws32{word-spacing:10.224000px;}
._9{margin-left:-13.809600px;}
._6{margin-left:-6.210000px;}
._4{margin-left:-5.184000px;}
._a{margin-left:-3.488400px;}
._3{margin-left:-2.193600px;}
._0{margin-left:-1.176000px;}
._5{width:1.430400px;}
._1{width:2.784000px;}
._2{width:4.454400px;}
._7{width:5.470800px;}
._8{width:6.521400px;}
._10{width:8.139600px;}
._14{width:10.953600px;}
._d{width:29.232000px;}
._c{width:30.480000px;}
._e{width:32.496000px;}
._b{width:34.032000px;}
._13{width:37.723800px;}
._f{width:1973.980800px;}
._11{width:1975.708800px;}
._12{width:1981.132800px;}
.fc3{color:rgb(0,103,104);}
.fc2{color:rgb(0,93,145);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.486000px;}
.fs9{font-size:34.980000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:34.158750px;}
.y4{bottom:71.658750px;}
.y55{bottom:93.160050px;}
.y62{bottom:97.377600px;}
.y54{bottom:111.155550px;}
.yc{bottom:114.180450px;}
.y2d{bottom:114.279300px;}
.y61{bottom:115.373100px;}
.yb{bottom:124.980450px;}
.y53{bottom:129.151050px;}
.y2c{bottom:132.274800px;}
.y60{bottom:133.368600px;}
.ya{bottom:135.780450px;}
.y93{bottom:140.659350px;}
.y9{bottom:146.580450px;}
.y52{bottom:147.146550px;}
.y2b{bottom:150.270300px;}
.y5f{bottom:151.364100px;}
.y92{bottom:158.654850px;}
.y51{bottom:165.142050px;}
.y2a{bottom:168.265800px;}
.y5e{bottom:169.359600px;}
.y91{bottom:182.657850px;}
.y50{bottom:183.137550px;}
.y8{bottom:184.380450px;}
.y29{bottom:186.261300px;}
.y7{bottom:196.980450px;}
.y5d{bottom:199.356600px;}
.y90{bottom:200.653350px;}
.y4f{bottom:201.133050px;}
.y28{bottom:204.256800px;}
.y6{bottom:209.580450px;}
.y5c{bottom:217.352100px;}
.y4e{bottom:219.128550px;}
.y5{bottom:222.180450px;}
.y27{bottom:222.252300px;}
.y8f{bottom:224.653350px;}
.y5b{bottom:235.347600px;}
.y4d{bottom:237.124050px;}
.y26{bottom:240.247800px;}
.y4c{bottom:255.119550px;}
.y25{bottom:258.243300px;}
.y5a{bottom:265.347600px;}
.y24{bottom:276.238800px;}
.y4b{bottom:277.619550px;}
.y8e{bottom:280.916850px;}
.y23{bottom:294.234300px;}
.y8d{bottom:298.912350px;}
.y22{bottom:312.229800px;}
.y8c{bottom:316.907850px;}
.y59{bottom:321.602100px;}
.y21{bottom:330.225300px;}
.y4a{bottom:333.919050px;}
.y8b{bottom:334.903350px;}
.y58{bottom:339.597600px;}
.ybb{bottom:347.653350px;}
.y20{bottom:348.220800px;}
.y49{bottom:351.914550px;}
.y8a{bottom:357.403350px;}
.yba{bottom:364.153350px;}
.y1f{bottom:366.216300px;}
.y48{bottom:369.910050px;}
.y64{bottom:376.524300px;}
.yb9{bottom:380.653350px;}
.y1e{bottom:384.211800px;}
.y47{bottom:387.905550px;}
.y63{bottom:391.528800px;}
.yb8{bottom:397.153350px;}
.y1d{bottom:402.207300px;}
.y46{bottom:405.901050px;}
.yb7{bottom:413.653350px;}
.y89{bottom:413.738850px;}
.y1c{bottom:420.202800px;}
.y45{bottom:423.896550px;}
.yb6{bottom:430.153350px;}
.y88{bottom:431.734350px;}
.y1b{bottom:438.198300px;}
.y44{bottom:441.892050px;}
.yb5{bottom:446.653350px;}
.y87{bottom:449.729850px;}
.y1a{bottom:456.193800px;}
.y43{bottom:459.887550px;}
.yb4{bottom:463.153350px;}
.y86{bottom:467.725350px;}
.y19{bottom:474.189300px;}
.y42{bottom:477.883050px;}
.yb3{bottom:479.653350px;}
.y85{bottom:485.720850px;}
.y18{bottom:492.184800px;}
.y41{bottom:495.878550px;}
.yb2{bottom:496.153350px;}
.y84{bottom:503.716350px;}
.y17{bottom:510.180300px;}
.yb1{bottom:512.653350px;}
.y40{bottom:513.874050px;}
.y83{bottom:521.711850px;}
.yb0{bottom:529.153350px;}
.y3f{bottom:531.869550px;}
.y16{bottom:532.680300px;}
.y82{bottom:539.707350px;}
.yaf{bottom:545.653350px;}
.y81{bottom:557.702850px;}
.yae{bottom:562.153350px;}
.y57{bottom:573.296250px;}
.y80{bottom:575.698350px;}
.yad{bottom:578.653350px;}
.y56{bottom:588.300750px;}
.y15{bottom:591.030000px;}
.y7f{bottom:593.693850px;}
.yac{bottom:595.153350px;}
.y14{bottom:607.530000px;}
.yab{bottom:611.653350px;}
.y7e{bottom:611.689350px;}
.y13{bottom:621.930300px;}
.yaa{bottom:628.153350px;}
.y7d{bottom:629.684850px;}
.ya9{bottom:644.653350px;}
.y7c{bottom:647.680350px;}
.y12{bottom:656.430300px;}
.ya8{bottom:661.153350px;}
.y7b{bottom:665.675850px;}
.ya7{bottom:677.653350px;}
.y11{bottom:681.930300px;}
.y7a{bottom:683.671350px;}
.ya6{bottom:694.153350px;}
.y10{bottom:698.430300px;}
.y79{bottom:701.666850px;}
.ya5{bottom:710.653350px;}
.yf{bottom:714.930300px;}
.y78{bottom:719.662350px;}
.ya4{bottom:727.153350px;}
.y2f{bottom:730.155900px;}
.ye{bottom:731.430300px;}
.y77{bottom:737.657850px;}
.ya3{bottom:743.653350px;}
.y2e{bottom:745.031550px;}
.yd{bottom:747.930300px;}
.y76{bottom:755.653350px;}
.ya2{bottom:760.153350px;}
.ya1{bottom:776.653350px;}
.y75{bottom:778.153350px;}
.ya0{bottom:793.153350px;}
.y3c{bottom:796.758150px;}
.y9f{bottom:814.153350px;}
.y3b{bottom:820.758150px;}
.y74{bottom:834.403350px;}
.y3a{bottom:837.258150px;}
.y39{bottom:853.758150px;}
.y73{bottom:856.903350px;}
.y38{bottom:870.258150px;}
.y9e{bottom:870.404850px;}
.y72{bottom:874.934850px;}
.y37{bottom:886.758150px;}
.y9d{bottom:888.400350px;}
.y71{bottom:897.439350px;}
.y36{bottom:903.258150px;}
.y9c{bottom:912.407850px;}
.y70{bottom:915.434850px;}
.y35{bottom:919.758150px;}
.y9b{bottom:930.407850px;}
.y6f{bottom:933.430350px;}
.y9a{bottom:948.428850px;}
.y34{bottom:951.258150px;}
.y6e{bottom:951.425850px;}
.y99{bottom:966.424350px;}
.y6d{bottom:969.421350px;}
.y32{bottom:972.258150px;}
.y33{bottom:980.254650px;}
.y98{bottom:990.427350px;}
.y6c{bottom:991.925850px;}
.y31{bottom:1008.258150px;}
.y97{bottom:1008.422850px;}
.y6b{bottom:1009.921350px;}
.y96{bottom:1026.418350px;}
.y6a{bottom:1027.916850px;}
.y30{bottom:1038.858150px;}
.y95{bottom:1044.413850px;}
.y69{bottom:1045.912350px;}
.y94{bottom:1062.409350px;}
.y68{bottom:1068.416850px;}
.y67{bottom:1086.412350px;}
.y3{bottom:1103.536350px;}
.y66{bottom:1104.407850px;}
.y65{bottom:1122.403350px;}
.y2{bottom:1136.650650px;}
.y1{bottom:1154.470650px;}
.y3e{bottom:1175.538600px;}
.hf{height:17.727864px;}
.h6{height:27.540000px;}
.h5{height:32.130000px;}
.h8{height:36.720000px;}
.h4{height:36.768000px;}
.hd{height:39.606000px;}
.h3{height:41.094000px;}
.hb{height:41.310000px;}
.h11{height:41.364000px;}
.h7{height:45.264000px;}
.h2{height:45.441000px;}
.h10{height:49.713864px;}
.he{height:50.717790px;}
.ha{height:50.922000px;}
.hc{height:63.840000px;}
.h9{height:78.132000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7{left:-337.606350px;}
.x8{left:-270.843300px;}
.x0{left:0.000000px;}
.x4{left:81.000000px;}
.x2{left:93.000000px;}
.x9{left:176.682000px;}
.xa{left:178.959150px;}
.x5{left:288.000000px;}
.x6{left:306.000000px;}
.xb{left:322.306500px;}
.xc{left:526.928400px;}
.xd{left:529.205400px;}
.x1{left:717.106200px;}
.x3{left:790.392000px;}
@media print{
.v2{vertical-align:-10.672000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.432000pt;}
.ls6{letter-spacing:-4.353067pt;}
.lsc{letter-spacing:-1.493333pt;}
.lsb{letter-spacing:-0.816000pt;}
.lsd{letter-spacing:-0.709333pt;}
.ls10{letter-spacing:-0.469333pt;}
.ls5{letter-spacing:-0.272000pt;}
.ls9{letter-spacing:-0.181333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.170667pt;}
.ls8{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.978773pt;}
.ls2{letter-spacing:0.978811pt;}
.lsf{letter-spacing:1.579200pt;}
.ls0{letter-spacing:2.880000pt;}
.lse{letter-spacing:2.904000pt;}
.ws25{word-spacing:-18.405333pt;}
.ws1{word-spacing:-18.314667pt;}
.ws1e{word-spacing:-17.770667pt;}
.ws3{word-spacing:-10.933333pt;}
.ws30{word-spacing:-9.936000pt;}
.ws0{word-spacing:-8.832000pt;}
.ws20{word-spacing:-6.906667pt;}
.ws1f{word-spacing:-6.122667pt;}
.ws2{word-spacing:-5.658987pt;}
.wsc{word-spacing:-1.632000pt;}
.wsf{word-spacing:-1.296000pt;}
.wse{word-spacing:-1.248000pt;}
.ws24{word-spacing:-0.784000pt;}
.ws23{word-spacing:-0.746667pt;}
.ws12{word-spacing:-0.528000pt;}
.ws13{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.373333pt;}
.ws2d{word-spacing:-0.336000pt;}
.ws17{word-spacing:-0.213333pt;}
.ws22{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.170667pt;}
.ws21{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.181333pt;}
.wsa{word-spacing:0.384000pt;}
.ws31{word-spacing:0.469333pt;}
.ws2c{word-spacing:0.528000pt;}
.ws2f{word-spacing:0.576000pt;}
.ws1d{word-spacing:0.672000pt;}
.wsd{word-spacing:1.248000pt;}
.ws2a{word-spacing:1.632000pt;}
.ws29{word-spacing:1.776000pt;}
.ws2b{word-spacing:1.968000pt;}
.ws18{word-spacing:2.016000pt;}
.ws7{word-spacing:2.090667pt;}
.ws9{word-spacing:2.160000pt;}
.ws8{word-spacing:2.165333pt;}
.ws2e{word-spacing:2.208000pt;}
.ws34{word-spacing:2.560000pt;}
.ws10{word-spacing:2.640000pt;}
.ws33{word-spacing:2.688000pt;}
.ws11{word-spacing:2.784000pt;}
.ws26{word-spacing:2.880000pt;}
.ws6{word-spacing:2.986667pt;}
.ws5{word-spacing:3.157333pt;}
.ws28{word-spacing:3.936000pt;}
.ws19{word-spacing:4.128000pt;}
.ws15{word-spacing:4.353067pt;}
.wsb{word-spacing:4.992000pt;}
.ws1b{word-spacing:5.136000pt;}
.ws1a{word-spacing:5.376000pt;}
.ws27{word-spacing:6.000000pt;}
.ws32{word-spacing:9.088000pt;}
._9{margin-left:-12.275200pt;}
._6{margin-left:-5.520000pt;}
._4{margin-left:-4.608000pt;}
._a{margin-left:-3.100800pt;}
._3{margin-left:-1.949867pt;}
._0{margin-left:-1.045333pt;}
._5{width:1.271467pt;}
._1{width:2.474667pt;}
._2{width:3.959467pt;}
._7{width:4.862933pt;}
._8{width:5.796800pt;}
._10{width:7.235200pt;}
._14{width:9.736533pt;}
._d{width:25.984000pt;}
._c{width:27.093333pt;}
._e{width:28.885333pt;}
._b{width:30.250667pt;}
._13{width:33.532267pt;}
._f{width:1754.649600pt;}
._11{width:1756.185600pt;}
._12{width:1761.006933pt;}
.fs8{font-size:21.765333pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:30.363333pt;}
.y4{bottom:63.696667pt;}
.y55{bottom:82.808933pt;}
.y62{bottom:86.557867pt;}
.y54{bottom:98.804933pt;}
.yc{bottom:101.493733pt;}
.y2d{bottom:101.581600pt;}
.y61{bottom:102.553867pt;}
.yb{bottom:111.093733pt;}
.y53{bottom:114.800933pt;}
.y2c{bottom:117.577600pt;}
.y60{bottom:118.549867pt;}
.ya{bottom:120.693733pt;}
.y93{bottom:125.030533pt;}
.y9{bottom:130.293733pt;}
.y52{bottom:130.796933pt;}
.y2b{bottom:133.573600pt;}
.y5f{bottom:134.545867pt;}
.y92{bottom:141.026533pt;}
.y51{bottom:146.792933pt;}
.y2a{bottom:149.569600pt;}
.y5e{bottom:150.541867pt;}
.y91{bottom:162.362533pt;}
.y50{bottom:162.788933pt;}
.y8{bottom:163.893733pt;}
.y29{bottom:165.565600pt;}
.y7{bottom:175.093733pt;}
.y5d{bottom:177.205867pt;}
.y90{bottom:178.358533pt;}
.y4f{bottom:178.784933pt;}
.y28{bottom:181.561600pt;}
.y6{bottom:186.293733pt;}
.y5c{bottom:193.201867pt;}
.y4e{bottom:194.780933pt;}
.y5{bottom:197.493733pt;}
.y27{bottom:197.557600pt;}
.y8f{bottom:199.691867pt;}
.y5b{bottom:209.197867pt;}
.y4d{bottom:210.776933pt;}
.y26{bottom:213.553600pt;}
.y4c{bottom:226.772933pt;}
.y25{bottom:229.549600pt;}
.y5a{bottom:235.864533pt;}
.y24{bottom:245.545600pt;}
.y4b{bottom:246.772933pt;}
.y8e{bottom:249.703867pt;}
.y23{bottom:261.541600pt;}
.y8d{bottom:265.699867pt;}
.y22{bottom:277.537600pt;}
.y8c{bottom:281.695867pt;}
.y59{bottom:285.868533pt;}
.y21{bottom:293.533600pt;}
.y4a{bottom:296.816933pt;}
.y8b{bottom:297.691867pt;}
.y58{bottom:301.864533pt;}
.ybb{bottom:309.025200pt;}
.y20{bottom:309.529600pt;}
.y49{bottom:312.812933pt;}
.y8a{bottom:317.691867pt;}
.yba{bottom:323.691867pt;}
.y1f{bottom:325.525600pt;}
.y48{bottom:328.808933pt;}
.y64{bottom:334.688267pt;}
.yb9{bottom:338.358533pt;}
.y1e{bottom:341.521600pt;}
.y47{bottom:344.804933pt;}
.y63{bottom:348.025600pt;}
.yb8{bottom:353.025200pt;}
.y1d{bottom:357.517600pt;}
.y46{bottom:360.800933pt;}
.yb7{bottom:367.691867pt;}
.y89{bottom:367.767867pt;}
.y1c{bottom:373.513600pt;}
.y45{bottom:376.796933pt;}
.yb6{bottom:382.358533pt;}
.y88{bottom:383.763867pt;}
.y1b{bottom:389.509600pt;}
.y44{bottom:392.792933pt;}
.yb5{bottom:397.025200pt;}
.y87{bottom:399.759867pt;}
.y1a{bottom:405.505600pt;}
.y43{bottom:408.788933pt;}
.yb4{bottom:411.691867pt;}
.y86{bottom:415.755867pt;}
.y19{bottom:421.501600pt;}
.y42{bottom:424.784933pt;}
.yb3{bottom:426.358533pt;}
.y85{bottom:431.751867pt;}
.y18{bottom:437.497600pt;}
.y41{bottom:440.780933pt;}
.yb2{bottom:441.025200pt;}
.y84{bottom:447.747867pt;}
.y17{bottom:453.493600pt;}
.yb1{bottom:455.691867pt;}
.y40{bottom:456.776933pt;}
.y83{bottom:463.743867pt;}
.yb0{bottom:470.358533pt;}
.y3f{bottom:472.772933pt;}
.y16{bottom:473.493600pt;}
.y82{bottom:479.739867pt;}
.yaf{bottom:485.025200pt;}
.y81{bottom:495.735867pt;}
.yae{bottom:499.691867pt;}
.y57{bottom:509.596667pt;}
.y80{bottom:511.731867pt;}
.yad{bottom:514.358533pt;}
.y56{bottom:522.934000pt;}
.y15{bottom:525.360000pt;}
.y7f{bottom:527.727867pt;}
.yac{bottom:529.025200pt;}
.y14{bottom:540.026667pt;}
.yab{bottom:543.691867pt;}
.y7e{bottom:543.723867pt;}
.y13{bottom:552.826933pt;}
.yaa{bottom:558.358533pt;}
.y7d{bottom:559.719867pt;}
.ya9{bottom:573.025200pt;}
.y7c{bottom:575.715867pt;}
.y12{bottom:583.493600pt;}
.ya8{bottom:587.691867pt;}
.y7b{bottom:591.711867pt;}
.ya7{bottom:602.358533pt;}
.y11{bottom:606.160267pt;}
.y7a{bottom:607.707867pt;}
.ya6{bottom:617.025200pt;}
.y10{bottom:620.826933pt;}
.y79{bottom:623.703867pt;}
.ya5{bottom:631.691867pt;}
.yf{bottom:635.493600pt;}
.y78{bottom:639.699867pt;}
.ya4{bottom:646.358533pt;}
.y2f{bottom:649.027467pt;}
.ye{bottom:650.160267pt;}
.y77{bottom:655.695867pt;}
.ya3{bottom:661.025200pt;}
.y2e{bottom:662.250267pt;}
.yd{bottom:664.826933pt;}
.y76{bottom:671.691867pt;}
.ya2{bottom:675.691867pt;}
.ya1{bottom:690.358533pt;}
.y75{bottom:691.691867pt;}
.ya0{bottom:705.025200pt;}
.y3c{bottom:708.229467pt;}
.y9f{bottom:723.691867pt;}
.y3b{bottom:729.562800pt;}
.y74{bottom:741.691867pt;}
.y3a{bottom:744.229467pt;}
.y39{bottom:758.896133pt;}
.y73{bottom:761.691867pt;}
.y38{bottom:773.562800pt;}
.y9e{bottom:773.693200pt;}
.y72{bottom:777.719867pt;}
.y37{bottom:788.229467pt;}
.y9d{bottom:789.689200pt;}
.y71{bottom:797.723867pt;}
.y36{bottom:802.896133pt;}
.y9c{bottom:811.029200pt;}
.y70{bottom:813.719867pt;}
.y35{bottom:817.562800pt;}
.y9b{bottom:827.029200pt;}
.y6f{bottom:829.715867pt;}
.y9a{bottom:843.047867pt;}
.y34{bottom:845.562800pt;}
.y6e{bottom:845.711867pt;}
.y99{bottom:859.043867pt;}
.y6d{bottom:861.707867pt;}
.y32{bottom:864.229467pt;}
.y33{bottom:871.337467pt;}
.y98{bottom:880.379867pt;}
.y6c{bottom:881.711867pt;}
.y31{bottom:896.229467pt;}
.y97{bottom:896.375867pt;}
.y6b{bottom:897.707867pt;}
.y96{bottom:912.371867pt;}
.y6a{bottom:913.703867pt;}
.y30{bottom:923.429467pt;}
.y95{bottom:928.367867pt;}
.y69{bottom:929.699867pt;}
.y94{bottom:944.363867pt;}
.y68{bottom:949.703867pt;}
.y67{bottom:965.699867pt;}
.y3{bottom:980.921200pt;}
.y66{bottom:981.695867pt;}
.y65{bottom:997.691867pt;}
.y2{bottom:1010.356133pt;}
.y1{bottom:1026.196133pt;}
.y3e{bottom:1044.923200pt;}
.hf{height:15.758101pt;}
.h6{height:24.480000pt;}
.h5{height:28.560000pt;}
.h8{height:32.640000pt;}
.h4{height:32.682667pt;}
.hd{height:35.205333pt;}
.h3{height:36.528000pt;}
.hb{height:36.720000pt;}
.h11{height:36.768000pt;}
.h7{height:40.234667pt;}
.h2{height:40.392000pt;}
.h10{height:44.190101pt;}
.he{height:45.082480pt;}
.ha{height:45.264000pt;}
.hc{height:56.746667pt;}
.h9{height:69.450667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7{left:-300.094533pt;}
.x8{left:-240.749600pt;}
.x0{left:0.000000pt;}
.x4{left:72.000000pt;}
.x2{left:82.666667pt;}
.x9{left:157.050667pt;}
.xa{left:159.074800pt;}
.x5{left:256.000000pt;}
.x6{left:272.000000pt;}
.xb{left:286.494667pt;}
.xc{left:468.380800pt;}
.xd{left:470.404800pt;}
.x1{left:637.427733pt;}
.x3{left:702.570667pt;}
}




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