
    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_c24539c44407c8540694b979.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_26b7408ed5fcf02693497476.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_92613d095aabe9f462617ac5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_740f33845257763d13bd2ff4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_338bc7ed668d0073f2a433f1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_558373c4ed46bd5a6bb1146a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_17e5dc5e8f91dfe554dea0b4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.080566;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_631df8adfafab3e03491d9bb.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f387746252fe775f87e98d35.woff')format("woff");}.ffa{font-family:ffa;line-height:1.097168;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_1d36209cfb382f517d87a4f6.woff')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.440000px;}
.ls31{letter-spacing:-0.816000px;}
.ls6{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.516000px;}
.ls5{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.084000px;}
.ls19{letter-spacing:-0.024000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.384000px;}
.ls2a{letter-spacing:0.444000px;}
.ls0{letter-spacing:0.480000px;}
.ls3c{letter-spacing:0.492000px;}
.lse{letter-spacing:0.600000px;}
.ls26{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.768000px;}
.ls32{letter-spacing:0.780000px;}
.ls3{letter-spacing:0.828000px;}
.ls2d{letter-spacing:0.888000px;}
.ls2{letter-spacing:0.948000px;}
.lsd{letter-spacing:1.140000px;}
.ls30{letter-spacing:1.176000px;}
.ls18{letter-spacing:1.200000px;}
.ls17{letter-spacing:1.260000px;}
.ls46{letter-spacing:1.644000px;}
.ls2c{letter-spacing:1.800000px;}
.ls12{letter-spacing:2.400000px;}
.ls1b{letter-spacing:4.800000px;}
.ls40{letter-spacing:5.340000px;}
.ls3a{letter-spacing:5.400000px;}
.ls3f{letter-spacing:5.580000px;}
.ls16{letter-spacing:6.000000px;}
.ls23{letter-spacing:6.540000px;}
.ls37{letter-spacing:6.600000px;}
.ls1a{letter-spacing:7.800000px;}
.ls2b{letter-spacing:9.000000px;}
.ls3b{letter-spacing:10.200000px;}
.ls29{letter-spacing:10.320000px;}
.ls10{letter-spacing:10.380000px;}
.ls1c{letter-spacing:10.800000px;}
.ls25{letter-spacing:12.600000px;}
.ls39{letter-spacing:15.000000px;}
.ls21{letter-spacing:15.180000px;}
.ls3e{letter-spacing:16.200000px;}
.ls28{letter-spacing:17.400000px;}
.ls2f{letter-spacing:18.600000px;}
.ls42{letter-spacing:19.980000px;}
.ls2e{letter-spacing:22.140000px;}
.ls20{letter-spacing:22.200000px;}
.ls1d{letter-spacing:23.400000px;}
.ls3d{letter-spacing:23.580000px;}
.ls34{letter-spacing:24.600000px;}
.ls27{letter-spacing:25.800000px;}
.ls22{letter-spacing:29.400000px;}
.ls35{letter-spacing:30.600000px;}
.ls41{letter-spacing:31.860000px;}
.ls24{letter-spacing:34.140000px;}
.ls8{letter-spacing:35.400000px;}
.ls11{letter-spacing:37.200000px;}
.ls45{letter-spacing:42.600000px;}
.ls33{letter-spacing:43.800000px;}
.ls44{letter-spacing:54.720000px;}
.ls43{letter-spacing:57.060000px;}
.ls36{letter-spacing:59.400000px;}
.ls38{letter-spacing:73.800000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-24.480000px;}
.ws1{word-spacing:-24.240000px;}
.ws2{word-spacing:-23.760000px;}
.ws4{word-spacing:-23.040000px;}
.ws6{word-spacing:-22.800000px;}
.wse{word-spacing:-22.644000px;}
.wsc{word-spacing:-21.444000px;}
.ws7{word-spacing:-21.000000px;}
.ws9{word-spacing:-20.916000px;}
.wsd{word-spacing:-20.460000px;}
.wsa{word-spacing:-20.352000px;}
.wsb{word-spacing:-18.384000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-4.740000px;}
._9{margin-left:-3.612000px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.152000px;}
._2{width:1.296000px;}
._1{width:2.688000px;}
._a{width:4.524000px;}
._2c{width:5.652000px;}
._25{width:6.960000px;}
._d{width:8.316000px;}
._e{width:9.384000px;}
._1f{width:10.656000px;}
._b{width:11.844000px;}
._5{width:13.080000px;}
._30{width:14.160000px;}
._23{width:16.044000px;}
._28{width:17.376000px;}
._29{width:18.378000px;}
._24{width:19.380000px;}
._4a{width:21.012000px;}
._17{width:22.212000px;}
._16{width:23.580000px;}
._21{width:25.176000px;}
._50{width:26.208000px;}
._10{width:27.216000px;}
._12{width:28.620000px;}
._11{width:29.928000px;}
._41{width:30.996000px;}
._1b{width:32.088000px;}
._1a{width:33.240000px;}
._8{width:35.028000px;}
._6{width:36.168000px;}
._7{width:37.284000px;}
._43{width:38.304000px;}
._c{width:39.804000px;}
._22{width:41.076000px;}
._20{width:42.924000px;}
._14{width:44.100000px;}
._15{width:45.420000px;}
._13{width:46.968000px;}
._2f{width:48.408000px;}
._2e{width:49.452000px;}
._36{width:50.484000px;}
._39{width:51.486000px;}
._57{width:52.704000px;}
._27{width:53.844000px;}
._2d{width:54.954000px;}
._26{width:56.844000px;}
._3b{width:58.800000px;}
._47{width:59.904000px;}
._37{width:61.308000px;}
._38{width:62.448000px;}
._3e{width:63.696000px;}
._3d{width:64.968000px;}
._3c{width:66.180000px;}
._1c{width:68.364000px;}
._4b{width:73.236000px;}
._34{width:74.736000px;}
._35{width:76.326000px;}
._4c{width:78.732000px;}
._2a{width:79.968000px;}
._2b{width:81.180000px;}
._51{width:82.278000px;}
._4f{width:83.700000px;}
._52{width:84.792000px;}
._19{width:86.796000px;}
._18{width:88.080000px;}
._33{width:89.436000px;}
._56{width:90.546000px;}
._42{width:92.016000px;}
._46{width:93.252000px;}
._3f{width:94.572000px;}
._40{width:96.348000px;}
._55{width:99.840000px;}
._3a{width:101.112000px;}
._54{width:102.168000px;}
._4e{width:110.016000px;}
._4d{width:111.684000px;}
._53{width:113.664000px;}
._31{width:122.448000px;}
._32{width:123.648000px;}
._44{width:128.244000px;}
._45{width:129.672000px;}
._49{width:138.984000px;}
._48{width:140.004000px;}
._1e{width:146.268000px;}
._1d{width:147.756000px;}
._4{width:1466.574000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.037500px;}
.y4{bottom:92.137500px;}
.y2a{bottom:134.737500px;}
.y53{bottom:140.737500px;}
.y4f{bottom:141.637500px;}
.y29{bottom:156.930000px;}
.y28{bottom:163.830000px;}
.y44{bottom:168.975000px;}
.y4e{bottom:175.875000px;}
.y20{bottom:176.775000px;}
.y5b{bottom:178.875000px;}
.y5d{bottom:185.775000px;}
.y33{bottom:190.875000px;}
.y27{bottom:192.675000px;}
.y43{bottom:197.775000px;}
.y5a{bottom:201.075000px;}
.y4d{bottom:202.875000px;}
.y59{bottom:207.975000px;}
.y4c{bottom:209.775000px;}
.y1f{bottom:213.075000px;}
.y5c{bottom:214.875000px;}
.y32{bottom:219.975000px;}
.y42{bottom:225.075000px;}
.y52{bottom:231.975000px;}
.y58{bottom:235.275000px;}
.y61{bottom:236.775000px;}
.y4b{bottom:237.075000px;}
.y57{bottom:242.175000px;}
.y31{bottom:247.275000px;}
.y36{bottom:248.775000px;}
.y1e{bottom:249.375000px;}
.y41{bottom:254.175000px;}
.y34{bottom:256.875000px;}
.y4a{bottom:259.275000px;}
.y5f{bottom:260.775000px;}
.y49{bottom:266.175000px;}
.y30{bottom:269.175000px;}
.y56{bottom:270.975000px;}
.y2f{bottom:276.075000px;}
.y40{bottom:281.175000px;}
.y1d{bottom:285.375000px;}
.y48{bottom:294.975000px;}
.y3e{bottom:303.375000px;}
.y2e{bottom:304.875000px;}
.y1c{bottom:321.675000px;}
.y3d{bottom:325.275000px;}
.y55{bottom:329.175000px;}
.y3c{bottom:332.175000px;}
.y1b{bottom:358.005000px;}
.y3b{bottom:361.305000px;}
.y5e{bottom:365.505000px;}
.y1a{bottom:394.320000px;}
.y19{bottom:430.320000px;}
.y3a{bottom:437.820000px;}
.y18{bottom:466.620000px;}
.y2d{bottom:474.120000px;}
.y17{bottom:502.905000px;}
.y35{bottom:510.450000px;}
.y16{bottom:539.250000px;}
.y15{bottom:575.250000px;}
.y39{bottom:582.750000px;}
.y14{bottom:611.550000px;}
.y2c{bottom:619.050000px;}
.y13{bottom:647.850000px;}
.y47{bottom:655.350000px;}
.y12{bottom:684.180000px;}
.y26{bottom:691.695000px;}
.y11{bottom:720.195000px;}
.y51{bottom:727.695000px;}
.y10{bottom:756.480000px;}
.y62{bottom:759.780000px;}
.yf{bottom:792.780000px;}
.y2b{bottom:800.295000px;}
.ye{bottom:829.080000px;}
.y38{bottom:836.580000px;}
.yd{bottom:865.125000px;}
.y46{bottom:872.625000px;}
.yc{bottom:900.825000px;}
.y25{bottom:901.425000px;}
.y3f{bottom:908.925000px;}
.yb{bottom:937.725000px;}
.ya{bottom:974.025000px;}
.y50{bottom:981.525000px;}
.y9{bottom:1009.425000px;}
.y24{bottom:1010.025000px;}
.y54{bottom:1017.570000px;}
.y8{bottom:1045.755000px;}
.y23{bottom:1046.370000px;}
.y60{bottom:1053.855000px;}
.y7{bottom:1082.070000px;}
.y22{bottom:1082.655000px;}
.y45{bottom:1090.155000px;}
.y6{bottom:1118.070000px;}
.y21{bottom:1118.670000px;}
.y37{bottom:1126.155000px;}
.y3{bottom:1155.870000px;}
.y2{bottom:1191.600000px;}
.y1{bottom:1227.900000px;}
.hd{height:47.109375px;}
.h4{height:47.340820px;}
.hb{height:52.998047px;}
.h5{height:55.623047px;}
.hf{height:63.457031px;}
.hc{height:65.645508px;}
.h2{height:68.859375px;}
.he{height:70.664062px;}
.h3{height:72.562500px;}
.h6{height:72.638672px;}
.h9{height:74.033203px;}
.h8{height:82.441406px;}
.h7{height:84.656250px;}
.ha{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.xe{left:148.800000px;}
.xf{left:154.830000px;}
.x1{left:157.830000px;}
.x22{left:160.830000px;}
.x1a{left:162.030000px;}
.x35{left:163.830000px;}
.xa{left:170.130000px;}
.x4{left:200.475000px;}
.x5{left:209.775000px;}
.x41{left:214.837500px;}
.x10{left:217.575000px;}
.x2b{left:229.537500px;}
.x36{left:231.675000px;}
.x2c{left:243.375000px;}
.x31{left:248.437500px;}
.x16{left:253.537500px;}
.x32{left:262.275000px;}
.x33{left:264.037500px;}
.x1d{left:267.037500px;}
.x17{left:274.275000px;}
.x34{left:277.875000px;}
.x43{left:285.937500px;}
.x3c{left:288.975000px;}
.xb{left:296.467500px;}
.x44{left:299.820000px;}
.xc{left:303.420000px;}
.x49{left:319.582500px;}
.x13{left:336.967500px;}
.xd{left:343.620000px;}
.x8{left:348.120000px;}
.x51{left:360.682500px;}
.x52{left:374.520000px;}
.x14{left:382.882500px;}
.x6{left:384.405000px;}
.x3f{left:396.682500px;}
.x15{left:400.905000px;}
.x40{left:410.505000px;}
.x9{left:414.720000px;}
.x29{left:423.412500px;}
.x2a{left:437.250000px;}
.x18{left:453.412500px;}
.x1e{left:460.012500px;}
.x19{left:465.450000px;}
.x1f{left:473.850000px;}
.x3d{left:483.712500px;}
.x4c{left:487.012500px;}
.x3e{left:497.550000px;}
.x7{left:499.650000px;}
.x25{left:506.812500px;}
.x3a{left:508.312500px;}
.x26{left:520.650000px;}
.x3b{left:522.150000px;}
.x2f{left:526.612500px;}
.x4d{left:527.812500px;}
.x30{left:540.480000px;}
.x4e{left:543.195000px;}
.x53{left:544.957500px;}
.x45{left:553.057500px;}
.x54{left:560.595000px;}
.x46{left:566.880000px;}
.x38{left:572.842500px;}
.x39{left:586.695000px;}
.x2{left:614.880000px;}
.x20{left:651.742500px;}
.x21{left:665.625000px;}
.x23{left:670.087500px;}
.x42{left:671.587500px;}
.x24{left:685.125000px;}
.x37{left:718.987500px;}
.x27{left:721.087500px;}
.x28{left:734.925000px;}
.x2d{left:738.787500px;}
.x2e{left:752.625000px;}
.x11{left:767.887500px;}
.x4a{left:773.632500px;}
.x12{left:774.870000px;}
.x4b{left:787.455000px;}
.x47{left:795.832500px;}
.x48{left:809.655000px;}
.x4f{left:815.632500px;}
.x1b{left:817.417500px;}
.x1c{left:824.370000px;}
.x50{left:829.455000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls31{letter-spacing:-0.725333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.458667pt;}
.ls5{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.074667pt;}
.ls19{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.341333pt;}
.ls2a{letter-spacing:0.394667pt;}
.ls0{letter-spacing:0.426667pt;}
.ls3c{letter-spacing:0.437333pt;}
.lse{letter-spacing:0.533333pt;}
.ls26{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.682667pt;}
.ls32{letter-spacing:0.693333pt;}
.ls3{letter-spacing:0.736000pt;}
.ls2d{letter-spacing:0.789333pt;}
.ls2{letter-spacing:0.842667pt;}
.lsd{letter-spacing:1.013333pt;}
.ls30{letter-spacing:1.045333pt;}
.ls18{letter-spacing:1.066667pt;}
.ls17{letter-spacing:1.120000pt;}
.ls46{letter-spacing:1.461333pt;}
.ls2c{letter-spacing:1.600000pt;}
.ls12{letter-spacing:2.133333pt;}
.ls1b{letter-spacing:4.266667pt;}
.ls40{letter-spacing:4.746667pt;}
.ls3a{letter-spacing:4.800000pt;}
.ls3f{letter-spacing:4.960000pt;}
.ls16{letter-spacing:5.333333pt;}
.ls23{letter-spacing:5.813333pt;}
.ls37{letter-spacing:5.866667pt;}
.ls1a{letter-spacing:6.933333pt;}
.ls2b{letter-spacing:8.000000pt;}
.ls3b{letter-spacing:9.066667pt;}
.ls29{letter-spacing:9.173333pt;}
.ls10{letter-spacing:9.226667pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls25{letter-spacing:11.200000pt;}
.ls39{letter-spacing:13.333333pt;}
.ls21{letter-spacing:13.493333pt;}
.ls3e{letter-spacing:14.400000pt;}
.ls28{letter-spacing:15.466667pt;}
.ls2f{letter-spacing:16.533333pt;}
.ls42{letter-spacing:17.760000pt;}
.ls2e{letter-spacing:19.680000pt;}
.ls20{letter-spacing:19.733333pt;}
.ls1d{letter-spacing:20.800000pt;}
.ls3d{letter-spacing:20.960000pt;}
.ls34{letter-spacing:21.866667pt;}
.ls27{letter-spacing:22.933333pt;}
.ls22{letter-spacing:26.133333pt;}
.ls35{letter-spacing:27.200000pt;}
.ls41{letter-spacing:28.320000pt;}
.ls24{letter-spacing:30.346667pt;}
.ls8{letter-spacing:31.466667pt;}
.ls11{letter-spacing:33.066667pt;}
.ls45{letter-spacing:37.866667pt;}
.ls33{letter-spacing:38.933333pt;}
.ls44{letter-spacing:48.640000pt;}
.ls43{letter-spacing:50.720000pt;}
.ls36{letter-spacing:52.800000pt;}
.ls38{letter-spacing:65.600000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-21.760000pt;}
.ws1{word-spacing:-21.546667pt;}
.ws2{word-spacing:-21.120000pt;}
.ws4{word-spacing:-20.480000pt;}
.ws6{word-spacing:-20.266667pt;}
.wse{word-spacing:-20.128000pt;}
.wsc{word-spacing:-19.061333pt;}
.ws7{word-spacing:-18.666667pt;}
.ws9{word-spacing:-18.592000pt;}
.wsd{word-spacing:-18.186667pt;}
.wsa{word-spacing:-18.090667pt;}
.wsb{word-spacing:-16.341333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-4.213333pt;}
._9{margin-left:-3.210667pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.152000pt;}
._1{width:2.389333pt;}
._a{width:4.021333pt;}
._2c{width:5.024000pt;}
._25{width:6.186667pt;}
._d{width:7.392000pt;}
._e{width:8.341333pt;}
._1f{width:9.472000pt;}
._b{width:10.528000pt;}
._5{width:11.626667pt;}
._30{width:12.586667pt;}
._23{width:14.261333pt;}
._28{width:15.445333pt;}
._29{width:16.336000pt;}
._24{width:17.226667pt;}
._4a{width:18.677333pt;}
._17{width:19.744000pt;}
._16{width:20.960000pt;}
._21{width:22.378667pt;}
._50{width:23.296000pt;}
._10{width:24.192000pt;}
._12{width:25.440000pt;}
._11{width:26.602667pt;}
._41{width:27.552000pt;}
._1b{width:28.522667pt;}
._1a{width:29.546667pt;}
._8{width:31.136000pt;}
._6{width:32.149333pt;}
._7{width:33.141333pt;}
._43{width:34.048000pt;}
._c{width:35.381333pt;}
._22{width:36.512000pt;}
._20{width:38.154667pt;}
._14{width:39.200000pt;}
._15{width:40.373333pt;}
._13{width:41.749333pt;}
._2f{width:43.029333pt;}
._2e{width:43.957333pt;}
._36{width:44.874667pt;}
._39{width:45.765333pt;}
._57{width:46.848000pt;}
._27{width:47.861333pt;}
._2d{width:48.848000pt;}
._26{width:50.528000pt;}
._3b{width:52.266667pt;}
._47{width:53.248000pt;}
._37{width:54.496000pt;}
._38{width:55.509333pt;}
._3e{width:56.618667pt;}
._3d{width:57.749333pt;}
._3c{width:58.826667pt;}
._1c{width:60.768000pt;}
._4b{width:65.098667pt;}
._34{width:66.432000pt;}
._35{width:67.845333pt;}
._4c{width:69.984000pt;}
._2a{width:71.082667pt;}
._2b{width:72.160000pt;}
._51{width:73.136000pt;}
._4f{width:74.400000pt;}
._52{width:75.370667pt;}
._19{width:77.152000pt;}
._18{width:78.293333pt;}
._33{width:79.498667pt;}
._56{width:80.485333pt;}
._42{width:81.792000pt;}
._46{width:82.890667pt;}
._3f{width:84.064000pt;}
._40{width:85.642667pt;}
._55{width:88.746667pt;}
._3a{width:89.877333pt;}
._54{width:90.816000pt;}
._4e{width:97.792000pt;}
._4d{width:99.274667pt;}
._53{width:101.034667pt;}
._31{width:108.842667pt;}
._32{width:109.909333pt;}
._44{width:113.994667pt;}
._45{width:115.264000pt;}
._49{width:123.541333pt;}
._48{width:124.448000pt;}
._1e{width:130.016000pt;}
._1d{width:131.338667pt;}
._4{width:1303.621333pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.700000pt;}
.y4{bottom:81.900000pt;}
.y2a{bottom:119.766667pt;}
.y53{bottom:125.100000pt;}
.y4f{bottom:125.900000pt;}
.y29{bottom:139.493333pt;}
.y28{bottom:145.626667pt;}
.y44{bottom:150.200000pt;}
.y4e{bottom:156.333333pt;}
.y20{bottom:157.133333pt;}
.y5b{bottom:159.000000pt;}
.y5d{bottom:165.133333pt;}
.y33{bottom:169.666667pt;}
.y27{bottom:171.266667pt;}
.y43{bottom:175.800000pt;}
.y5a{bottom:178.733333pt;}
.y4d{bottom:180.333333pt;}
.y59{bottom:184.866667pt;}
.y4c{bottom:186.466667pt;}
.y1f{bottom:189.400000pt;}
.y5c{bottom:191.000000pt;}
.y32{bottom:195.533333pt;}
.y42{bottom:200.066667pt;}
.y52{bottom:206.200000pt;}
.y58{bottom:209.133333pt;}
.y61{bottom:210.466667pt;}
.y4b{bottom:210.733333pt;}
.y57{bottom:215.266667pt;}
.y31{bottom:219.800000pt;}
.y36{bottom:221.133333pt;}
.y1e{bottom:221.666667pt;}
.y41{bottom:225.933333pt;}
.y34{bottom:228.333333pt;}
.y4a{bottom:230.466667pt;}
.y5f{bottom:231.800000pt;}
.y49{bottom:236.600000pt;}
.y30{bottom:239.266667pt;}
.y56{bottom:240.866667pt;}
.y2f{bottom:245.400000pt;}
.y40{bottom:249.933333pt;}
.y1d{bottom:253.666667pt;}
.y48{bottom:262.200000pt;}
.y3e{bottom:269.666667pt;}
.y2e{bottom:271.000000pt;}
.y1c{bottom:285.933333pt;}
.y3d{bottom:289.133333pt;}
.y55{bottom:292.600000pt;}
.y3c{bottom:295.266667pt;}
.y1b{bottom:318.226667pt;}
.y3b{bottom:321.160000pt;}
.y5e{bottom:324.893333pt;}
.y1a{bottom:350.506667pt;}
.y19{bottom:382.506667pt;}
.y3a{bottom:389.173333pt;}
.y18{bottom:414.773333pt;}
.y2d{bottom:421.440000pt;}
.y17{bottom:447.026667pt;}
.y35{bottom:453.733333pt;}
.y16{bottom:479.333333pt;}
.y15{bottom:511.333333pt;}
.y39{bottom:518.000000pt;}
.y14{bottom:543.600000pt;}
.y2c{bottom:550.266667pt;}
.y13{bottom:575.866667pt;}
.y47{bottom:582.533333pt;}
.y12{bottom:608.160000pt;}
.y26{bottom:614.840000pt;}
.y11{bottom:640.173333pt;}
.y51{bottom:646.840000pt;}
.y10{bottom:672.426667pt;}
.y62{bottom:675.360000pt;}
.yf{bottom:704.693333pt;}
.y2b{bottom:711.373333pt;}
.ye{bottom:736.960000pt;}
.y38{bottom:743.626667pt;}
.yd{bottom:769.000000pt;}
.y46{bottom:775.666667pt;}
.yc{bottom:800.733333pt;}
.y25{bottom:801.266667pt;}
.y3f{bottom:807.933333pt;}
.yb{bottom:833.533333pt;}
.ya{bottom:865.800000pt;}
.y50{bottom:872.466667pt;}
.y9{bottom:897.266667pt;}
.y24{bottom:897.800000pt;}
.y54{bottom:904.506667pt;}
.y8{bottom:929.560000pt;}
.y23{bottom:930.106667pt;}
.y60{bottom:936.760000pt;}
.y7{bottom:961.840000pt;}
.y22{bottom:962.360000pt;}
.y45{bottom:969.026667pt;}
.y6{bottom:993.840000pt;}
.y21{bottom:994.373333pt;}
.y37{bottom:1001.026667pt;}
.y3{bottom:1027.440000pt;}
.y2{bottom:1059.200000pt;}
.y1{bottom:1091.466667pt;}
.hd{height:41.875000pt;}
.h4{height:42.080729pt;}
.hb{height:47.109375pt;}
.h5{height:49.442708pt;}
.hf{height:56.406250pt;}
.hc{height:58.351562pt;}
.h2{height:61.208333pt;}
.he{height:62.812500pt;}
.h3{height:64.500000pt;}
.h6{height:64.567708pt;}
.h9{height:65.807292pt;}
.h8{height:73.281250pt;}
.h7{height:75.250000pt;}
.ha{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.xe{left:132.266667pt;}
.xf{left:137.626667pt;}
.x1{left:140.293333pt;}
.x22{left:142.960000pt;}
.x1a{left:144.026667pt;}
.x35{left:145.626667pt;}
.xa{left:151.226667pt;}
.x4{left:178.200000pt;}
.x5{left:186.466667pt;}
.x41{left:190.966667pt;}
.x10{left:193.400000pt;}
.x2b{left:204.033333pt;}
.x36{left:205.933333pt;}
.x2c{left:216.333333pt;}
.x31{left:220.833333pt;}
.x16{left:225.366667pt;}
.x32{left:233.133333pt;}
.x33{left:234.700000pt;}
.x1d{left:237.366667pt;}
.x17{left:243.800000pt;}
.x34{left:247.000000pt;}
.x43{left:254.166667pt;}
.x3c{left:256.866667pt;}
.xb{left:263.526667pt;}
.x44{left:266.506667pt;}
.xc{left:269.706667pt;}
.x49{left:284.073333pt;}
.x13{left:299.526667pt;}
.xd{left:305.440000pt;}
.x8{left:309.440000pt;}
.x51{left:320.606667pt;}
.x52{left:332.906667pt;}
.x14{left:340.340000pt;}
.x6{left:341.693333pt;}
.x3f{left:352.606667pt;}
.x15{left:356.360000pt;}
.x40{left:364.893333pt;}
.x9{left:368.640000pt;}
.x29{left:376.366667pt;}
.x2a{left:388.666667pt;}
.x18{left:403.033333pt;}
.x1e{left:408.900000pt;}
.x19{left:413.733333pt;}
.x1f{left:421.200000pt;}
.x3d{left:429.966667pt;}
.x4c{left:432.900000pt;}
.x3e{left:442.266667pt;}
.x7{left:444.133333pt;}
.x25{left:450.500000pt;}
.x3a{left:451.833333pt;}
.x26{left:462.800000pt;}
.x3b{left:464.133333pt;}
.x2f{left:468.100000pt;}
.x4d{left:469.166667pt;}
.x30{left:480.426667pt;}
.x4e{left:482.840000pt;}
.x53{left:484.406667pt;}
.x45{left:491.606667pt;}
.x54{left:498.306667pt;}
.x46{left:503.893333pt;}
.x38{left:509.193333pt;}
.x39{left:521.506667pt;}
.x2{left:546.560000pt;}
.x20{left:579.326667pt;}
.x21{left:591.666667pt;}
.x23{left:595.633333pt;}
.x42{left:596.966667pt;}
.x24{left:609.000000pt;}
.x37{left:639.100000pt;}
.x27{left:640.966667pt;}
.x28{left:653.266667pt;}
.x2d{left:656.700000pt;}
.x2e{left:669.000000pt;}
.x11{left:682.566667pt;}
.x4a{left:687.673333pt;}
.x12{left:688.773333pt;}
.x4b{left:699.960000pt;}
.x47{left:707.406667pt;}
.x48{left:719.693333pt;}
.x4f{left:725.006667pt;}
.x1b{left:726.593333pt;}
.x1c{left:732.773333pt;}
.x50{left:737.293333pt;}
}




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