
    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_e89d608d43265558dc3e3bfa.woff')format("woff");}.ff1{font-family:ff1;line-height:0.731934;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_242934df8706a832652191f6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.885254;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_f5fd33511ec51950cad6a864.woff')format("woff");}.ff3{font-family:ff3;line-height:0.808105;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_62fd9ab2383efc4e6fef2d7d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_a41b33bf42511044ae670236.woff')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_71bb4541e6826d6f1bf5d370.woff')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_f2fb94dd7635160851302001.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_c6c2d8c2aadaee5452925522.woff')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_c5ed137370a500c0ed815b64.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_683574bc00ea8adeebbb1503.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_50eeff977298a00d8663e627.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_fe67752cf6708b8e43723c71.woff')format("woff");}.ffc{font-family:ffc;line-height:0.675781;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_2877ae1762b7aaeba68cba3f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v2{vertical-align:27.360000px;}
.ls15{letter-spacing:-0.443808px;}
.ls14{letter-spacing:-0.430560px;}
.ls16{letter-spacing:-0.410688px;}
.ls18{letter-spacing:-0.397440px;}
.ls17{letter-spacing:-0.390816px;}
.ls1d{letter-spacing:-0.178848px;}
.ls1c{letter-spacing:-0.165600px;}
.ls25{letter-spacing:-0.158976px;}
.ls24{letter-spacing:-0.139104px;}
.ls20{letter-spacing:-0.132480px;}
.ls1e{letter-spacing:-0.112608px;}
.ls22{letter-spacing:-0.099360px;}
.ls1f{letter-spacing:-0.092736px;}
.ls23{letter-spacing:-0.072864px;}
.ls21{letter-spacing:-0.066240px;}
.ls12{letter-spacing:-0.036000px;}
.ls13{letter-spacing:-0.028800px;}
.ls1a{letter-spacing:-0.021600px;}
.ls11{letter-spacing:-0.014400px;}
.ls19{letter-spacing:-0.007200px;}
.ls10{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.004320px;}
.ls29{letter-spacing:0.005328px;}
.ls4{letter-spacing:0.005760px;}
.ls6{letter-spacing:0.007200px;}
.ls3a{letter-spacing:0.010080px;}
.ls28{letter-spacing:0.011520px;}
.ls8{letter-spacing:0.014400px;}
.ls27{letter-spacing:0.021600px;}
.ls5{letter-spacing:0.023040px;}
.ls32{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.028800px;}
.ls3b{letter-spacing:0.031680px;}
.ls3c{letter-spacing:0.033984px;}
.ls9{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.050400px;}
.ls1b{letter-spacing:0.091872px;}
.lsd{letter-spacing:0.114768px;}
.ls1{letter-spacing:0.234720px;}
.lsc{letter-spacing:0.235440px;}
.ls2{letter-spacing:0.236160px;}
.lse{letter-spacing:0.250560px;}
.ls3{letter-spacing:0.285120px;}
.ls0{letter-spacing:0.285264px;}
.lsf{letter-spacing:0.292320px;}
.lsa{letter-spacing:3.187152px;}
.ls33{letter-spacing:3.672000px;}
.ls30{letter-spacing:8.226720px;}
.ls35{letter-spacing:9.537120px;}
.ls2e{letter-spacing:10.326528px;}
.ls31{letter-spacing:10.627200px;}
.ls2b{letter-spacing:14.829120px;}
.ls2a{letter-spacing:14.829552px;}
.ls2f{letter-spacing:16.369056px;}
.ls26{letter-spacing:17.992800px;}
.ls2d{letter-spacing:24.396480px;}
.ls38{letter-spacing:24.454944px;}
.ls39{letter-spacing:24.455520px;}
.ls37{letter-spacing:29.383200px;}
.ls36{letter-spacing:31.920480px;}
.ls3d{letter-spacing:36.632160px;}
.ls34{letter-spacing:46.096560px;}
.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;}
}
.ws18{word-spacing:-16.308000px;}
.ws9{word-spacing:-16.300800px;}
.ws14{word-spacing:-16.293600px;}
.ws13{word-spacing:-16.286400px;}
.ws16{word-spacing:-16.279200px;}
.ws2{word-spacing:-16.272000px;}
.ws8{word-spacing:-16.264800px;}
.ws0{word-spacing:-16.257600px;}
.ws15{word-spacing:-16.250400px;}
.ws3{word-spacing:-16.243200px;}
.ws17{word-spacing:-16.236000px;}
.ws6{word-spacing:-14.970240px;}
.wsf{word-spacing:-14.904000px;}
.wse{word-spacing:-14.870880px;}
.wsc{word-spacing:-14.857632px;}
.ws10{word-spacing:-14.831136px;}
.ws11{word-spacing:-14.811264px;}
.wsa{word-spacing:-14.804640px;}
.wsb{word-spacing:-14.791392px;}
.ws7{word-spacing:-14.572800px;}
.ws5{word-spacing:-14.559552px;}
.ws1{word-spacing:-10.739520px;}
.wsd{word-spacing:-0.066240px;}
.ws4{word-spacing:-0.041760px;}
.ws12{word-spacing:0.000000px;}
._15{margin-left:-3.591360px;}
._e{margin-left:-2.243520px;}
._0{margin-left:-1.002240px;}
._1{width:1.004400px;}
._3{width:2.458800px;}
._2{width:3.672000px;}
._4{width:4.823280px;}
._10{width:6.193440px;}
._14{width:7.833600px;}
._5{width:9.396000px;}
._b{width:11.419200px;}
._c{width:12.492000px;}
._11{width:14.371200px;}
._f{width:17.812800px;}
._a{width:19.656000px;}
._9{width:21.168000px;}
._1e{width:22.510080px;}
._18{width:23.772960px;}
._13{width:24.789600px;}
._12{width:25.819200px;}
._6{width:27.432000px;}
._7{width:28.440000px;}
._17{width:30.326112px;}
._16{width:31.435200px;}
._1d{width:32.472000px;}
._d{width:34.488000px;}
._1f{width:35.934768px;}
._27{width:37.001232px;}
._1c{width:43.545600px;}
._8{width:44.871552px;}
._1a{width:46.008000px;}
._1b{width:47.098800px;}
._25{width:48.384000px;}
._24{width:55.756800px;}
._23{width:57.002400px;}
._22{width:62.546400px;}
._19{width:68.544000px;}
._20{width:70.124688px;}
._26{width:143.693136px;}
._21{width:455.036256px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs2{font-size:47.520000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:132.120000px;}
.y2f{bottom:133.560000px;}
.y5c{bottom:153.720000px;}
.y83{bottom:154.080000px;}
.y2e{bottom:155.160000px;}
.y5b{bottom:174.240000px;}
.y2d{bottom:175.320000px;}
.y82{bottom:176.040000px;}
.y5a{bottom:196.200000px;}
.y81{bottom:198.000000px;}
.y2c{bottom:201.600000px;}
.y2b{bottom:215.640000px;}
.y59{bottom:218.160000px;}
.y80{bottom:219.960000px;}
.y58{bottom:240.120000px;}
.y2a{bottom:241.920000px;}
.y29{bottom:255.960000px;}
.y57{bottom:262.080000px;}
.y7f{bottom:263.880000px;}
.y28{bottom:282.240000px;}
.y56{bottom:284.040000px;}
.y7e{bottom:285.840000px;}
.y27{bottom:296.640000px;}
.y55{bottom:306.000000px;}
.y7d{bottom:307.800000px;}
.y26{bottom:318.600000px;}
.y54{bottom:327.960000px;}
.y7c{bottom:329.760000px;}
.y25{bottom:341.640000px;}
.y53{bottom:349.560000px;}
.y7b{bottom:351.720000px;}
.y24{bottom:367.200000px;}
.y52{bottom:370.080000px;}
.y7a{bottom:374.040000px;}
.y23{bottom:391.680000px;}
.y51{bottom:392.040000px;}
.y79{bottom:396.000000px;}
.y22{bottom:413.640000px;}
.y50{bottom:414.000000px;}
.y78{bottom:417.960000px;}
.y21{bottom:435.600000px;}
.y4f{bottom:435.960000px;}
.y77{bottom:439.920000px;}
.y20{bottom:457.560000px;}
.y4e{bottom:457.920000px;}
.y76{bottom:461.880000px;}
.y1f{bottom:479.520000px;}
.y4d{bottom:480.240000px;}
.y75{bottom:483.840000px;}
.y1e{bottom:501.480000px;}
.y4c{bottom:502.200000px;}
.y74{bottom:505.800000px;}
.y1d{bottom:523.440000px;}
.y4b{bottom:524.160000px;}
.y73{bottom:527.400000px;}
.y1c{bottom:545.400000px;}
.y4a{bottom:546.120000px;}
.y72{bottom:547.920000px;}
.y1b{bottom:567.360000px;}
.y49{bottom:568.080000px;}
.y71{bottom:569.880000px;}
.y1a{bottom:589.320000px;}
.y48{bottom:590.040000px;}
.y70{bottom:591.840000px;}
.y19{bottom:611.280000px;}
.y47{bottom:612.000000px;}
.y6f{bottom:613.800000px;}
.y18{bottom:633.240000px;}
.y46{bottom:633.960000px;}
.y6e{bottom:635.760000px;}
.y17{bottom:655.560000px;}
.y45{bottom:655.920000px;}
.y6d{bottom:657.720000px;}
.y16{bottom:677.520000px;}
.y44{bottom:677.880000px;}
.y6c{bottom:679.680000px;}
.y15{bottom:699.480000px;}
.y43{bottom:699.840000px;}
.y6b{bottom:701.640000px;}
.y14{bottom:721.440000px;}
.y42{bottom:721.800000px;}
.y6a{bottom:723.600000px;}
.y13{bottom:743.400000px;}
.y41{bottom:743.760000px;}
.y69{bottom:745.560000px;}
.y12{bottom:765.360000px;}
.y40{bottom:765.720000px;}
.y68{bottom:767.520000px;}
.y11{bottom:787.320000px;}
.y3f{bottom:787.680000px;}
.y67{bottom:789.480000px;}
.y10{bottom:809.280000px;}
.y3e{bottom:809.640000px;}
.y66{bottom:811.440000px;}
.yf{bottom:831.240000px;}
.y3d{bottom:831.600000px;}
.y65{bottom:833.400000px;}
.ye{bottom:853.200000px;}
.y3c{bottom:853.560000px;}
.y64{bottom:855.360000px;}
.yd{bottom:875.160000px;}
.y3b{bottom:875.520000px;}
.y63{bottom:877.320000px;}
.yc{bottom:896.760000px;}
.y3a{bottom:897.480000px;}
.y62{bottom:899.280000px;}
.y39{bottom:919.440000px;}
.y61{bottom:921.240000px;}
.yb{bottom:923.040000px;}
.ya{bottom:937.080000px;}
.y38{bottom:941.400000px;}
.y60{bottom:943.200000px;}
.y9{bottom:963.360000px;}
.y5f{bottom:965.160000px;}
.y8{bottom:977.400000px;}
.y37{bottom:985.320000px;}
.y5e{bottom:986.760000px;}
.y7{bottom:1004.040000px;}
.y36{bottom:1007.280000px;}
.y6{bottom:1018.440000px;}
.y35{bottom:1029.240000px;}
.y5{bottom:1040.400000px;}
.y34{bottom:1051.200000px;}
.y4{bottom:1062.360000px;}
.y33{bottom:1073.160000px;}
.y3{bottom:1085.400000px;}
.y32{bottom:1095.480000px;}
.y2{bottom:1110.960000px;}
.y31{bottom:1117.440000px;}
.y1{bottom:1136.880000px;}
.y30{bottom:1139.400000px;}
.h6{height:27.833203px;}
.hc{height:44.149219px;}
.h8{height:45.895781px;}
.ha{height:47.868750px;}
.hb{height:47.988281px;}
.h3{height:50.906250px;}
.h9{height:51.679688px;}
.h7{height:52.031250px;}
.h5{height:56.152266px;}
.h2{height:56.726719px;}
.h4{height:57.538125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:106.200072px;}
.xf{left:108.248652px;}
.x2{left:113.924196px;}
.x11{left:115.330068px;}
.x8{left:116.995608px;}
.x10{left:121.571784px;}
.x14{left:127.500012px;}
.x15{left:131.700096px;}
.xe{left:137.169792px;}
.x6{left:138.227796px;}
.x4{left:139.552344px;}
.x7{left:142.008192px;}
.x13{left:154.539540px;}
.x1{left:169.151724px;}
.x12{left:178.925184px;}
.xa{left:195.830568px;}
.x9{left:200.964096px;}
.x5{left:384.243480px;}
.xc{left:408.373920px;}
.x3{left:446.325120px;}
.xd{left:456.975000px;}
@media print{
.v3{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v2{vertical-align:24.320000pt;}
.ls15{letter-spacing:-0.394496pt;}
.ls14{letter-spacing:-0.382720pt;}
.ls16{letter-spacing:-0.365056pt;}
.ls18{letter-spacing:-0.353280pt;}
.ls17{letter-spacing:-0.347392pt;}
.ls1d{letter-spacing:-0.158976pt;}
.ls1c{letter-spacing:-0.147200pt;}
.ls25{letter-spacing:-0.141312pt;}
.ls24{letter-spacing:-0.123648pt;}
.ls20{letter-spacing:-0.117760pt;}
.ls1e{letter-spacing:-0.100096pt;}
.ls22{letter-spacing:-0.088320pt;}
.ls1f{letter-spacing:-0.082432pt;}
.ls23{letter-spacing:-0.064768pt;}
.ls21{letter-spacing:-0.058880pt;}
.ls12{letter-spacing:-0.032000pt;}
.ls13{letter-spacing:-0.025600pt;}
.ls1a{letter-spacing:-0.019200pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls19{letter-spacing:-0.006400pt;}
.ls10{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.003840pt;}
.ls29{letter-spacing:0.004736pt;}
.ls4{letter-spacing:0.005120pt;}
.ls6{letter-spacing:0.006400pt;}
.ls3a{letter-spacing:0.008960pt;}
.ls28{letter-spacing:0.010240pt;}
.ls8{letter-spacing:0.012800pt;}
.ls27{letter-spacing:0.019200pt;}
.ls5{letter-spacing:0.020480pt;}
.ls32{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.025600pt;}
.ls3b{letter-spacing:0.028160pt;}
.ls3c{letter-spacing:0.030208pt;}
.ls9{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.044800pt;}
.ls1b{letter-spacing:0.081664pt;}
.lsd{letter-spacing:0.102016pt;}
.ls1{letter-spacing:0.208640pt;}
.lsc{letter-spacing:0.209280pt;}
.ls2{letter-spacing:0.209920pt;}
.lse{letter-spacing:0.222720pt;}
.ls3{letter-spacing:0.253440pt;}
.ls0{letter-spacing:0.253568pt;}
.lsf{letter-spacing:0.259840pt;}
.lsa{letter-spacing:2.833024pt;}
.ls33{letter-spacing:3.264000pt;}
.ls30{letter-spacing:7.312640pt;}
.ls35{letter-spacing:8.477440pt;}
.ls2e{letter-spacing:9.179136pt;}
.ls31{letter-spacing:9.446400pt;}
.ls2b{letter-spacing:13.181440pt;}
.ls2a{letter-spacing:13.181824pt;}
.ls2f{letter-spacing:14.550272pt;}
.ls26{letter-spacing:15.993600pt;}
.ls2d{letter-spacing:21.685760pt;}
.ls38{letter-spacing:21.737728pt;}
.ls39{letter-spacing:21.738240pt;}
.ls37{letter-spacing:26.118400pt;}
.ls36{letter-spacing:28.373760pt;}
.ls3d{letter-spacing:32.561920pt;}
.ls34{letter-spacing:40.974720pt;}
.ws18{word-spacing:-14.496000pt;}
.ws9{word-spacing:-14.489600pt;}
.ws14{word-spacing:-14.483200pt;}
.ws13{word-spacing:-14.476800pt;}
.ws16{word-spacing:-14.470400pt;}
.ws2{word-spacing:-14.464000pt;}
.ws8{word-spacing:-14.457600pt;}
.ws0{word-spacing:-14.451200pt;}
.ws15{word-spacing:-14.444800pt;}
.ws3{word-spacing:-14.438400pt;}
.ws17{word-spacing:-14.432000pt;}
.ws6{word-spacing:-13.306880pt;}
.wsf{word-spacing:-13.248000pt;}
.wse{word-spacing:-13.218560pt;}
.wsc{word-spacing:-13.206784pt;}
.ws10{word-spacing:-13.183232pt;}
.ws11{word-spacing:-13.165568pt;}
.wsa{word-spacing:-13.159680pt;}
.wsb{word-spacing:-13.147904pt;}
.ws7{word-spacing:-12.953600pt;}
.ws5{word-spacing:-12.941824pt;}
.ws1{word-spacing:-9.546240pt;}
.wsd{word-spacing:-0.058880pt;}
.ws4{word-spacing:-0.037120pt;}
.ws12{word-spacing:0.000000pt;}
._15{margin-left:-3.192320pt;}
._e{margin-left:-1.994240pt;}
._0{margin-left:-0.890880pt;}
._1{width:0.892800pt;}
._3{width:2.185600pt;}
._2{width:3.264000pt;}
._4{width:4.287360pt;}
._10{width:5.505280pt;}
._14{width:6.963200pt;}
._5{width:8.352000pt;}
._b{width:10.150400pt;}
._c{width:11.104000pt;}
._11{width:12.774400pt;}
._f{width:15.833600pt;}
._a{width:17.472000pt;}
._9{width:18.816000pt;}
._1e{width:20.008960pt;}
._18{width:21.131520pt;}
._13{width:22.035200pt;}
._12{width:22.950400pt;}
._6{width:24.384000pt;}
._7{width:25.280000pt;}
._17{width:26.956544pt;}
._16{width:27.942400pt;}
._1d{width:28.864000pt;}
._d{width:30.656000pt;}
._1f{width:31.942016pt;}
._27{width:32.889984pt;}
._1c{width:38.707200pt;}
._8{width:39.885824pt;}
._1a{width:40.896000pt;}
._1b{width:41.865600pt;}
._25{width:43.008000pt;}
._24{width:49.561600pt;}
._23{width:50.668800pt;}
._22{width:55.596800pt;}
._19{width:60.928000pt;}
._20{width:62.333056pt;}
._26{width:127.727232pt;}
._21{width:404.476672pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:117.440000pt;}
.y2f{bottom:118.720000pt;}
.y5c{bottom:136.640000pt;}
.y83{bottom:136.960000pt;}
.y2e{bottom:137.920000pt;}
.y5b{bottom:154.880000pt;}
.y2d{bottom:155.840000pt;}
.y82{bottom:156.480000pt;}
.y5a{bottom:174.400000pt;}
.y81{bottom:176.000000pt;}
.y2c{bottom:179.200000pt;}
.y2b{bottom:191.680000pt;}
.y59{bottom:193.920000pt;}
.y80{bottom:195.520000pt;}
.y58{bottom:213.440000pt;}
.y2a{bottom:215.040000pt;}
.y29{bottom:227.520000pt;}
.y57{bottom:232.960000pt;}
.y7f{bottom:234.560000pt;}
.y28{bottom:250.880000pt;}
.y56{bottom:252.480000pt;}
.y7e{bottom:254.080000pt;}
.y27{bottom:263.680000pt;}
.y55{bottom:272.000000pt;}
.y7d{bottom:273.600000pt;}
.y26{bottom:283.200000pt;}
.y54{bottom:291.520000pt;}
.y7c{bottom:293.120000pt;}
.y25{bottom:303.680000pt;}
.y53{bottom:310.720000pt;}
.y7b{bottom:312.640000pt;}
.y24{bottom:326.400000pt;}
.y52{bottom:328.960000pt;}
.y7a{bottom:332.480000pt;}
.y23{bottom:348.160000pt;}
.y51{bottom:348.480000pt;}
.y79{bottom:352.000000pt;}
.y22{bottom:367.680000pt;}
.y50{bottom:368.000000pt;}
.y78{bottom:371.520000pt;}
.y21{bottom:387.200000pt;}
.y4f{bottom:387.520000pt;}
.y77{bottom:391.040000pt;}
.y20{bottom:406.720000pt;}
.y4e{bottom:407.040000pt;}
.y76{bottom:410.560000pt;}
.y1f{bottom:426.240000pt;}
.y4d{bottom:426.880000pt;}
.y75{bottom:430.080000pt;}
.y1e{bottom:445.760000pt;}
.y4c{bottom:446.400000pt;}
.y74{bottom:449.600000pt;}
.y1d{bottom:465.280000pt;}
.y4b{bottom:465.920000pt;}
.y73{bottom:468.800000pt;}
.y1c{bottom:484.800000pt;}
.y4a{bottom:485.440000pt;}
.y72{bottom:487.040000pt;}
.y1b{bottom:504.320000pt;}
.y49{bottom:504.960000pt;}
.y71{bottom:506.560000pt;}
.y1a{bottom:523.840000pt;}
.y48{bottom:524.480000pt;}
.y70{bottom:526.080000pt;}
.y19{bottom:543.360000pt;}
.y47{bottom:544.000000pt;}
.y6f{bottom:545.600000pt;}
.y18{bottom:562.880000pt;}
.y46{bottom:563.520000pt;}
.y6e{bottom:565.120000pt;}
.y17{bottom:582.720000pt;}
.y45{bottom:583.040000pt;}
.y6d{bottom:584.640000pt;}
.y16{bottom:602.240000pt;}
.y44{bottom:602.560000pt;}
.y6c{bottom:604.160000pt;}
.y15{bottom:621.760000pt;}
.y43{bottom:622.080000pt;}
.y6b{bottom:623.680000pt;}
.y14{bottom:641.280000pt;}
.y42{bottom:641.600000pt;}
.y6a{bottom:643.200000pt;}
.y13{bottom:660.800000pt;}
.y41{bottom:661.120000pt;}
.y69{bottom:662.720000pt;}
.y12{bottom:680.320000pt;}
.y40{bottom:680.640000pt;}
.y68{bottom:682.240000pt;}
.y11{bottom:699.840000pt;}
.y3f{bottom:700.160000pt;}
.y67{bottom:701.760000pt;}
.y10{bottom:719.360000pt;}
.y3e{bottom:719.680000pt;}
.y66{bottom:721.280000pt;}
.yf{bottom:738.880000pt;}
.y3d{bottom:739.200000pt;}
.y65{bottom:740.800000pt;}
.ye{bottom:758.400000pt;}
.y3c{bottom:758.720000pt;}
.y64{bottom:760.320000pt;}
.yd{bottom:777.920000pt;}
.y3b{bottom:778.240000pt;}
.y63{bottom:779.840000pt;}
.yc{bottom:797.120000pt;}
.y3a{bottom:797.760000pt;}
.y62{bottom:799.360000pt;}
.y39{bottom:817.280000pt;}
.y61{bottom:818.880000pt;}
.yb{bottom:820.480000pt;}
.ya{bottom:832.960000pt;}
.y38{bottom:836.800000pt;}
.y60{bottom:838.400000pt;}
.y9{bottom:856.320000pt;}
.y5f{bottom:857.920000pt;}
.y8{bottom:868.800000pt;}
.y37{bottom:875.840000pt;}
.y5e{bottom:877.120000pt;}
.y7{bottom:892.480000pt;}
.y36{bottom:895.360000pt;}
.y6{bottom:905.280000pt;}
.y35{bottom:914.880000pt;}
.y5{bottom:924.800000pt;}
.y34{bottom:934.400000pt;}
.y4{bottom:944.320000pt;}
.y33{bottom:953.920000pt;}
.y3{bottom:964.800000pt;}
.y32{bottom:973.760000pt;}
.y2{bottom:987.520000pt;}
.y31{bottom:993.280000pt;}
.y1{bottom:1010.560000pt;}
.y30{bottom:1012.800000pt;}
.h6{height:24.740625pt;}
.hc{height:39.243750pt;}
.h8{height:40.796250pt;}
.ha{height:42.550000pt;}
.hb{height:42.656250pt;}
.h3{height:45.250000pt;}
.h9{height:45.937500pt;}
.h7{height:46.250000pt;}
.h5{height:49.913125pt;}
.h2{height:50.423750pt;}
.h4{height:51.145000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:94.400064pt;}
.xf{left:96.221024pt;}
.x2{left:101.265952pt;}
.x11{left:102.515616pt;}
.x8{left:103.996096pt;}
.x10{left:108.063808pt;}
.x14{left:113.333344pt;}
.x15{left:117.066752pt;}
.xe{left:121.928704pt;}
.x6{left:122.869152pt;}
.x4{left:124.046528pt;}
.x7{left:126.229504pt;}
.x13{left:137.368480pt;}
.x1{left:150.357088pt;}
.x12{left:159.044608pt;}
.xa{left:174.071616pt;}
.x9{left:178.634752pt;}
.x5{left:341.549760pt;}
.xc{left:362.999040pt;}
.x3{left:396.733440pt;}
.xd{left:406.200000pt;}
}




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