
    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_d203c5311404d78f1e9a2701.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_2775df6013d0b117fc8157d8.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_90d47fcaab8c512d37ffaabb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2b84296379ae67714a6e3fc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_dc170d047e9eaf5a65bc1a6f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cd6ea4658dccd593f6e20e6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.389000;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_17a4854a480d0dce3e39a95c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850000;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_aa83f3b8ececed23b5818f8e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_074c6894464751cea8f3e228.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_0be35b3e22a2d16a4966ac4f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866000;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_6b59c167e82ebaae515fd54c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_aa4f98807741808f0567bb10.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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);}
.v2{vertical-align:-26.034000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.754000px;}
.v1{vertical-align:26.028000px;}
.v4{vertical-align:62.178000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.002147px;}
.ls8{letter-spacing:0.023853px;}
.ls10{letter-spacing:0.030431px;}
.ls0{letter-spacing:2.990915px;}
.ls6{letter-spacing:2.993236px;}
.lsa{letter-spacing:3.730912px;}
.ls13{letter-spacing:5.301124px;}
.lsb{letter-spacing:9.098189px;}
.lsd{letter-spacing:10.889835px;}
.lse{letter-spacing:13.903289px;}
.ls3{letter-spacing:18.130924px;}
.ls4{letter-spacing:18.196379px;}
.ls12{letter-spacing:20.552744px;}
.ls9{letter-spacing:21.629236px;}
.ls7{letter-spacing:23.367292px;}
.lsc{letter-spacing:23.498201px;}
.ls11{letter-spacing:24.218202px;}
.ls5{letter-spacing:29.061842px;}
.ls14{letter-spacing:29.362795px;}
.ls2{letter-spacing:32.727300px;}
.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;}
}
.ws3e{word-spacing:-46.800039px;}
.ws30{word-spacing:-42.637126px;}
.ws45{word-spacing:-33.538937px;}
.ws40{word-spacing:-31.771663px;}
.ws3f{word-spacing:-31.706208px;}
.ws39{word-spacing:-18.183288px;}
.ws43{word-spacing:-6.401460px;}
.ws49{word-spacing:-3.390548px;}
.ws36{word-spacing:-2.801457px;}
.ws20{word-spacing:-1.361456px;}
.ws24{word-spacing:-0.445091px;}
.ws4a{word-spacing:-0.065455px;}
.ws44{word-spacing:-0.047821px;}
.ws1d{word-spacing:0.000000px;}
.wsa{word-spacing:0.071731px;}
.ws31{word-spacing:0.471273px;}
.ws11{word-spacing:1.147692px;}
.ws32{word-spacing:1.191274px;}
.ws38{word-spacing:1.780365px;}
.ws4f{word-spacing:1.976729px;}
.ws51{word-spacing:2.304002px;}
.wsb{word-spacing:2.701857px;}
.ws1b{word-spacing:2.762184px;}
.ws1c{word-spacing:2.893093px;}
.ws12{word-spacing:2.940960px;}
.ws8{word-spacing:3.120286px;}
.wsc{word-spacing:3.299613px;}
.ws19{word-spacing:3.613094px;}
.wsd{word-spacing:3.658267px;}
.ws26{word-spacing:3.678549px;}
.ws3d{word-spacing:3.874912px;}
.ws41{word-spacing:3.940367px;}
.ws35{word-spacing:4.071276px;}
.ws33{word-spacing:4.136731px;}
.ws1e{word-spacing:4.483200px;}
.wse{word-spacing:4.674452px;}
.ws3c{word-spacing:5.184004px;}
.ws3{word-spacing:5.212432px;}
.ws21{word-spacing:5.379825px;}
.ws0{word-spacing:6.455775px;}
.ws4c{word-spacing:6.820369px;}
.ws34{word-spacing:7.540370px;}
.ws23{word-spacing:7.802188px;}
.ws2{word-spacing:7.902334px;}
.ws46{word-spacing:8.194916px;}
.ws27{word-spacing:8.260371px;}
.ws18{word-spacing:8.718553px;}
.ws5{word-spacing:9.277173px;}
.ws3a{word-spacing:9.569463px;}
.ws15{word-spacing:9.700372px;}
.wsf{word-spacing:10.114032px;}
.ws1f{word-spacing:10.224009px;}
.ws9{word-spacing:10.711788px;}
.ws4e{word-spacing:10.747645px;}
.ws25{word-spacing:10.878555px;}
.ws10{word-spacing:10.891114px;}
.ws7{word-spacing:11.189992px;}
.ws22{word-spacing:11.729464px;}
.ws4b{word-spacing:11.925828px;}
.ws1a{word-spacing:13.627648px;}
.ws16{word-spacing:13.758557px;}
.ws28{word-spacing:14.085830px;}
.ws6{word-spacing:14.118997px;}
.ws4{word-spacing:14.955855px;}
.ws17{word-spacing:16.311286px;}
.ws42{word-spacing:16.610957px;}
.ws29{word-spacing:16.834923px;}
.ws37{word-spacing:19.780380px;}
.ws3b{word-spacing:20.529412px;}
.ws50{word-spacing:21.861836px;}
.ws1{word-spacing:23.312640px;}
.ws52{word-spacing:23.367292px;}
.ws2a{word-spacing:24.165838px;}
.ws2b{word-spacing:24.673550px;}
.ws4d{word-spacing:26.312749px;}
.ws14{word-spacing:58.281600px;}
.ws13{word-spacing:69.937725px;}
.ws48{word-spacing:323.162451px;}
.ws47{word-spacing:403.147972px;}
.ws2f{word-spacing:648.668177px;}
.ws2e{word-spacing:661.366369px;}
.ws2d{word-spacing:724.988241px;}
.ws2c{word-spacing:779.577377px;}
._2d{margin-left:-30.350255px;}
._17{margin-left:-8.091257px;}
._2{margin-left:-6.507421px;}
._11{margin-left:-5.432732px;}
._5{margin-left:-4.279920px;}
._1{margin-left:-3.202064px;}
._3{margin-left:-1.936742px;}
._4{width:2.008474px;}
._a{width:4.016959px;}
._26{width:5.750777px;}
._2b{width:15.818338px;}
._d{width:17.705572px;}
._18{width:19.478575px;}
._f{width:20.572841px;}
._e{width:25.643744px;}
._8{width:27.640250px;}
._2c{width:28.681308px;}
._b{width:29.708473px;}
._6{width:32.900503px;}
._12{width:34.892689px;}
._9{width:38.890031px;}
._16{width:41.316183px;}
._19{width:43.178527px;}
._7{width:44.616521px;}
._c{width:48.848633px;}
._0{width:51.646200px;}
._1a{width:55.570955px;}
._10{width:59.387941px;}
._25{width:61.396415px;}
._13{width:67.337551px;}
._14{width:80.697600px;}
._28{width:95.575379px;}
._15{width:96.836850px;}
._1d{width:319.129734px;}
._1c{width:392.073054px;}
._1b{width:394.102147px;}
._22{width:408.671627px;}
._2a{width:415.113073px;}
._29{width:416.172010px;}
._1e{width:440.020771px;}
._27{width:443.651279px;}
._23{width:445.353098px;}
._21{width:456.518939px;}
._20{width:458.351668px;}
._24{width:503.208688px;}
._1f{width:577.702300px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:63.168000px;}
.y26{bottom:108.000000px;}
.y78{bottom:122.544000px;}
.y45{bottom:123.157500px;}
.y25{bottom:128.323500px;}
.y65{bottom:140.217000px;}
.y77{bottom:142.867500px;}
.y24{bottom:148.647000px;}
.y44{bottom:156.930000px;}
.y64{bottom:160.540500px;}
.y23{bottom:168.970500px;}
.y76{bottom:179.395500px;}
.y63{bottom:180.865500px;}
.y22{bottom:189.295500px;}
.y43{bottom:190.704000px;}
.y62{bottom:201.189000px;}
.y21{bottom:209.619000px;}
.y61{bottom:221.512500px;}
.y42{bottom:224.478000px;}
.y20{bottom:229.942500px;}
.y75{bottom:230.953500px;}
.y60{bottom:250.051500px;}
.y1f{bottom:250.266000px;}
.y74{bottom:251.278500px;}
.y41{bottom:255.369000px;}
.y1e{bottom:270.589500px;}
.y73{bottom:271.602000px;}
.y5f{bottom:274.843500px;}
.y5e{bottom:295.167000px;}
.y40{bottom:299.188500px;}
.y1d{bottom:301.482000px;}
.y72{bottom:308.130000px;}
.y3f{bottom:319.512000px;}
.y1c{bottom:338.608500px;}
.y3e{bottom:339.835500px;}
.y5d{bottom:342.589500px;}
.y71{bottom:359.688000px;}
.y5c{bottom:362.913000px;}
.y3d{bottom:370.728000px;}
.y70{bottom:380.011500px;}
.y1b{bottom:388.984500px;}
.y5b{bottom:393.805500px;}
.y1a{bottom:406.917000px;}
.y3c{bottom:407.854500px;}
.y6f{bottom:410.904000px;}
.y19{bottom:424.849500px;}
.y18{bottom:442.783500px;}
.y6e{bottom:454.723500px;}
.y3b{bottom:459.412500px;}
.y17{bottom:460.716000px;}
.y5a{bottom:462.600000px;}
.y6d{bottom:475.047000px;}
.y16{bottom:478.648500px;}
.y59{bottom:482.923500px;}
.y7e{bottom:488.209500px;}
.y3a{bottom:493.185000px;}
.y7f{bottom:493.716000px;}
.y15{bottom:496.581000px;}
.y58{bottom:503.247000px;}
.y6c{bottom:505.938000px;}
.y7d{bottom:508.534500px;}
.y14{bottom:514.513500px;}
.y57{bottom:523.570500px;}
.y39{bottom:526.959000px;}
.y13{bottom:532.446000px;}
.y6b{bottom:543.064500px;}
.y56{bottom:543.895500px;}
.y7c{bottom:545.062500px;}
.y12{bottom:550.380000px;}
.y38{bottom:557.851500px;}
.y55{bottom:564.219000px;}
.y11{bottom:568.312500px;}
.y54{bottom:584.542500px;}
.y10{bottom:586.245000px;}
.y7b{bottom:594.570000px;}
.y6a{bottom:594.622500px;}
.y37{bottom:601.669500px;}
.yf{bottom:604.177500px;}
.y53{bottom:613.081500px;}
.y7a{bottom:614.893500px;}
.y69{bottom:614.946000px;}
.y36{bottom:621.994500px;}
.ye{bottom:622.110000px;}
.y79{bottom:635.218500px;}
.y52{bottom:638.328000px;}
.yd{bottom:640.042500px;}
.y35{bottom:642.318000px;}
.y68{bottom:645.838500px;}
.yc{bottom:657.976500px;}
.y51{bottom:658.651500px;}
.y34{bottom:673.209000px;}
.yb{bottom:675.909000px;}
.y50{bottom:678.975000px;}
.ya{bottom:693.841500px;}
.y67{bottom:695.347500px;}
.y33{bottom:710.335500px;}
.y9{bottom:711.774000px;}
.y66{bottom:715.671000px;}
.y4f{bottom:727.306500px;}
.y8{bottom:729.706500px;}
.y4e{bottom:747.630000px;}
.y7{bottom:749.460000px;}
.y32{bottom:761.893500px;}
.y4d{bottom:778.522500px;}
.y31{bottom:795.667500px;}
.y6{bottom:802.351500px;}
.y4c{bottom:815.649000px;}
.y96{bottom:824.094000px;}
.y30{bottom:829.440000px;}
.y89{bottom:830.494500px;}
.y88{bottom:850.818000px;}
.y5{bottom:855.960000px;}
.y95{bottom:857.868000px;}
.y2f{bottom:863.214000px;}
.y4b{bottom:867.207000px;}
.y87{bottom:871.141500px;}
.y94{bottom:878.191500px;}
.y4{bottom:886.737000px;}
.y4a{bottom:887.530500px;}
.y2e{bottom:896.986500px;}
.y86{bottom:897.673500px;}
.y93{bottom:898.515000px;}
.y85{bottom:917.305500px;}
.y49{bottom:918.423000px;}
.y8d{bottom:925.278000px;}
.y2d{bottom:927.879000px;}
.y3{bottom:932.203500px;}
.y92{bottom:932.289000px;}
.y84{bottom:939.163500px;}
.y8c{bottom:945.601500px;}
.y91{bottom:952.612500px;}
.y83{bottom:959.487000px;}
.y48{bottom:962.241000px;}
.y2{bottom:965.080500px;}
.y2c{bottom:971.698500px;}
.y90{bottom:972.936000px;}
.y8b{bottom:974.140500px;}
.y82{bottom:979.810500px;}
.y2b{bottom:992.022000px;}
.y47{bottom:996.015000px;}
.y1{bottom:997.957500px;}
.y8a{bottom:998.932500px;}
.y81{bottom:1000.134000px;}
.y8f{bottom:1006.710000px;}
.y2a{bottom:1012.345500px;}
.y8e{bottom:1027.033500px;}
.y46{bottom:1029.789000px;}
.y29{bottom:1032.669000px;}
.y80{bottom:1036.662000px;}
.y28{bottom:1063.561500px;}
.hb{height:31.657237px;}
.h3{height:35.865450px;}
.h5{height:41.723369px;}
.h6{height:44.831700px;}
.h9{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:53.798400px;}
.hc{height:59.619450px;}
.h7{height:60.254040px;}
.h2{height:61.893450px;}
.ha{height:62.178000px;}
.h1{height:72.304680px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.259500px;}
.xc{left:127.999500px;}
.xa{left:133.405500px;}
.x2{left:138.282000px;}
.x9{left:148.909500px;}
.x8{left:171.325500px;}
.xf{left:175.318500px;}
.x16{left:196.102500px;}
.x17{left:197.464500px;}
.xe{left:260.760000px;}
.x10{left:261.861000px;}
.x5{left:269.197500px;}
.xd{left:275.692500px;}
.x11{left:360.999000px;}
.x6{left:386.449500px;}
.x4{left:401.875500px;}
.x12{left:422.859000px;}
.x7{left:426.123000px;}
.x3{left:428.514000px;}
.x13{left:439.567500px;}
.xb{left:454.909500px;}
.x14{left:465.598500px;}
.x15{left:483.057000px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.114667pt;}
.v1{vertical-align:23.136000pt;}
.v4{vertical-align:55.269333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.001908pt;}
.ls8{letter-spacing:0.021203pt;}
.ls10{letter-spacing:0.027050pt;}
.ls0{letter-spacing:2.658591pt;}
.ls6{letter-spacing:2.660654pt;}
.lsa{letter-spacing:3.316366pt;}
.ls13{letter-spacing:4.712110pt;}
.lsb{letter-spacing:8.087279pt;}
.lsd{letter-spacing:9.679853pt;}
.lse{letter-spacing:12.358479pt;}
.ls3{letter-spacing:16.116377pt;}
.ls4{letter-spacing:16.174559pt;}
.ls12{letter-spacing:18.269106pt;}
.ls9{letter-spacing:19.225987pt;}
.ls7{letter-spacing:20.770926pt;}
.lsc{letter-spacing:20.887290pt;}
.ls11{letter-spacing:21.527291pt;}
.ls5{letter-spacing:25.832749pt;}
.ls14{letter-spacing:26.100263pt;}
.ls2{letter-spacing:29.090933pt;}
.ws3e{word-spacing:-41.600035pt;}
.ws30{word-spacing:-37.899668pt;}
.ws45{word-spacing:-29.812388pt;}
.ws40{word-spacing:-28.241478pt;}
.ws3f{word-spacing:-28.183296pt;}
.ws39{word-spacing:-16.162923pt;}
.ws43{word-spacing:-5.690187pt;}
.ws49{word-spacing:-3.013821pt;}
.ws36{word-spacing:-2.490184pt;}
.ws20{word-spacing:-1.210183pt;}
.ws24{word-spacing:-0.395637pt;}
.ws4a{word-spacing:-0.058182pt;}
.ws44{word-spacing:-0.042507pt;}
.ws1d{word-spacing:0.000000pt;}
.wsa{word-spacing:0.063761pt;}
.ws31{word-spacing:0.418909pt;}
.ws11{word-spacing:1.020170pt;}
.ws32{word-spacing:1.058910pt;}
.ws38{word-spacing:1.582547pt;}
.ws4f{word-spacing:1.757092pt;}
.ws51{word-spacing:2.048002pt;}
.wsb{word-spacing:2.401651pt;}
.ws1b{word-spacing:2.455275pt;}
.ws1c{word-spacing:2.571639pt;}
.ws12{word-spacing:2.614186pt;}
.ws8{word-spacing:2.773588pt;}
.wsc{word-spacing:2.932989pt;}
.ws19{word-spacing:3.211639pt;}
.wsd{word-spacing:3.251793pt;}
.ws26{word-spacing:3.269821pt;}
.ws3d{word-spacing:3.444367pt;}
.ws41{word-spacing:3.502548pt;}
.ws35{word-spacing:3.618912pt;}
.ws33{word-spacing:3.677094pt;}
.ws1e{word-spacing:3.985067pt;}
.wse{word-spacing:4.155068pt;}
.ws3c{word-spacing:4.608004pt;}
.ws3{word-spacing:4.633273pt;}
.ws21{word-spacing:4.782067pt;}
.ws0{word-spacing:5.738467pt;}
.ws4c{word-spacing:6.062551pt;}
.ws34{word-spacing:6.702551pt;}
.ws23{word-spacing:6.935279pt;}
.ws2{word-spacing:7.024297pt;}
.ws46{word-spacing:7.284370pt;}
.ws27{word-spacing:7.342552pt;}
.ws18{word-spacing:7.749825pt;}
.ws5{word-spacing:8.246376pt;}
.ws3a{word-spacing:8.506189pt;}
.ws15{word-spacing:8.622553pt;}
.wsf{word-spacing:8.990250pt;}
.ws1f{word-spacing:9.088008pt;}
.ws9{word-spacing:9.521589pt;}
.ws4e{word-spacing:9.553463pt;}
.ws25{word-spacing:9.669826pt;}
.ws10{word-spacing:9.680991pt;}
.ws7{word-spacing:9.946660pt;}
.ws22{word-spacing:10.426191pt;}
.ws4b{word-spacing:10.600736pt;}
.ws1a{word-spacing:12.113465pt;}
.ws16{word-spacing:12.229828pt;}
.ws28{word-spacing:12.520738pt;}
.ws6{word-spacing:12.550219pt;}
.ws4{word-spacing:13.294093pt;}
.ws17{word-spacing:14.498921pt;}
.ws42{word-spacing:14.765295pt;}
.ws29{word-spacing:14.964376pt;}
.ws37{word-spacing:17.582560pt;}
.ws3b{word-spacing:18.248366pt;}
.ws50{word-spacing:19.432743pt;}
.ws1{word-spacing:20.722347pt;}
.ws52{word-spacing:20.770926pt;}
.ws2a{word-spacing:21.480745pt;}
.ws2b{word-spacing:21.932045pt;}
.ws4d{word-spacing:23.389110pt;}
.ws14{word-spacing:51.805867pt;}
.ws13{word-spacing:62.166867pt;}
.ws48{word-spacing:287.255512pt;}
.ws47{word-spacing:358.353753pt;}
.ws2f{word-spacing:576.593935pt;}
.ws2e{word-spacing:587.881217pt;}
.ws2d{word-spacing:644.433992pt;}
.ws2c{word-spacing:692.957668pt;}
._2d{margin-left:-26.978004pt;}
._17{margin-left:-7.192228pt;}
._2{margin-left:-5.784374pt;}
._11{margin-left:-4.829095pt;}
._5{margin-left:-3.804373pt;}
._1{margin-left:-2.846279pt;}
._3{margin-left:-1.721549pt;}
._4{width:1.785310pt;}
._a{width:3.570630pt;}
._26{width:5.111802pt;}
._2b{width:14.060745pt;}
._d{width:15.738286pt;}
._18{width:17.314289pt;}
._f{width:18.286970pt;}
._e{width:22.794439pt;}
._8{width:24.569111pt;}
._2c{width:25.494496pt;}
._b{width:26.407532pt;}
._6{width:29.244892pt;}
._12{width:31.015723pt;}
._9{width:34.568916pt;}
._16{width:36.725496pt;}
._19{width:38.380913pt;}
._7{width:39.659130pt;}
._c{width:43.421007pt;}
._0{width:45.907733pt;}
._1a{width:49.396405pt;}
._10{width:52.789281pt;}
._25{width:54.574591pt;}
._13{width:59.855601pt;}
._14{width:71.731200pt;}
._28{width:84.955893pt;}
._15{width:86.077200pt;}
._1d{width:283.670875pt;}
._1c{width:348.509381pt;}
._1b{width:350.313019pt;}
._22{width:363.263668pt;}
._2a{width:368.989398pt;}
._29{width:369.930676pt;}
._1e{width:391.129574pt;}
._27{width:394.356692pt;}
._23{width:395.869421pt;}
._21{width:405.794613pt;}
._20{width:407.423705pt;}
._24{width:447.296612pt;}
._1f{width:513.513155pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:56.149333pt;}
.y26{bottom:96.000000pt;}
.y78{bottom:108.928000pt;}
.y45{bottom:109.473333pt;}
.y25{bottom:114.065333pt;}
.y65{bottom:124.637333pt;}
.y77{bottom:126.993333pt;}
.y24{bottom:132.130667pt;}
.y44{bottom:139.493333pt;}
.y64{bottom:142.702667pt;}
.y23{bottom:150.196000pt;}
.y76{bottom:159.462667pt;}
.y63{bottom:160.769333pt;}
.y22{bottom:168.262667pt;}
.y43{bottom:169.514667pt;}
.y62{bottom:178.834667pt;}
.y21{bottom:186.328000pt;}
.y61{bottom:196.900000pt;}
.y42{bottom:199.536000pt;}
.y20{bottom:204.393333pt;}
.y75{bottom:205.292000pt;}
.y60{bottom:222.268000pt;}
.y1f{bottom:222.458667pt;}
.y74{bottom:223.358667pt;}
.y41{bottom:226.994667pt;}
.y1e{bottom:240.524000pt;}
.y73{bottom:241.424000pt;}
.y5f{bottom:244.305333pt;}
.y5e{bottom:262.370667pt;}
.y40{bottom:265.945333pt;}
.y1d{bottom:267.984000pt;}
.y72{bottom:273.893333pt;}
.y3f{bottom:284.010667pt;}
.y1c{bottom:300.985333pt;}
.y3e{bottom:302.076000pt;}
.y5d{bottom:304.524000pt;}
.y71{bottom:319.722667pt;}
.y5c{bottom:322.589333pt;}
.y3d{bottom:329.536000pt;}
.y70{bottom:337.788000pt;}
.y1b{bottom:345.764000pt;}
.y5b{bottom:350.049333pt;}
.y1a{bottom:361.704000pt;}
.y3c{bottom:362.537333pt;}
.y6f{bottom:365.248000pt;}
.y19{bottom:377.644000pt;}
.y18{bottom:393.585333pt;}
.y6e{bottom:404.198667pt;}
.y3b{bottom:408.366667pt;}
.y17{bottom:409.525333pt;}
.y5a{bottom:411.200000pt;}
.y6d{bottom:422.264000pt;}
.y16{bottom:425.465333pt;}
.y59{bottom:429.265333pt;}
.y7e{bottom:433.964000pt;}
.y3a{bottom:438.386667pt;}
.y7f{bottom:438.858667pt;}
.y15{bottom:441.405333pt;}
.y58{bottom:447.330667pt;}
.y6c{bottom:449.722667pt;}
.y7d{bottom:452.030667pt;}
.y14{bottom:457.345333pt;}
.y57{bottom:465.396000pt;}
.y39{bottom:468.408000pt;}
.y13{bottom:473.285333pt;}
.y6b{bottom:482.724000pt;}
.y56{bottom:483.462667pt;}
.y7c{bottom:484.500000pt;}
.y12{bottom:489.226667pt;}
.y38{bottom:495.868000pt;}
.y55{bottom:501.528000pt;}
.y11{bottom:505.166667pt;}
.y54{bottom:519.593333pt;}
.y10{bottom:521.106667pt;}
.y7b{bottom:528.506667pt;}
.y6a{bottom:528.553333pt;}
.y37{bottom:534.817333pt;}
.yf{bottom:537.046667pt;}
.y53{bottom:544.961333pt;}
.y7a{bottom:546.572000pt;}
.y69{bottom:546.618667pt;}
.y36{bottom:552.884000pt;}
.ye{bottom:552.986667pt;}
.y79{bottom:564.638667pt;}
.y52{bottom:567.402667pt;}
.yd{bottom:568.926667pt;}
.y35{bottom:570.949333pt;}
.y68{bottom:574.078667pt;}
.yc{bottom:584.868000pt;}
.y51{bottom:585.468000pt;}
.y34{bottom:598.408000pt;}
.yb{bottom:600.808000pt;}
.y50{bottom:603.533333pt;}
.ya{bottom:616.748000pt;}
.y67{bottom:618.086667pt;}
.y33{bottom:631.409333pt;}
.y9{bottom:632.688000pt;}
.y66{bottom:636.152000pt;}
.y4f{bottom:646.494667pt;}
.y8{bottom:648.628000pt;}
.y4e{bottom:664.560000pt;}
.y7{bottom:666.186667pt;}
.y32{bottom:677.238667pt;}
.y4d{bottom:692.020000pt;}
.y31{bottom:707.260000pt;}
.y6{bottom:713.201333pt;}
.y4c{bottom:725.021333pt;}
.y96{bottom:732.528000pt;}
.y30{bottom:737.280000pt;}
.y89{bottom:738.217333pt;}
.y88{bottom:756.282667pt;}
.y5{bottom:760.853333pt;}
.y95{bottom:762.549333pt;}
.y2f{bottom:767.301333pt;}
.y4b{bottom:770.850667pt;}
.y87{bottom:774.348000pt;}
.y94{bottom:780.614667pt;}
.y4{bottom:788.210667pt;}
.y4a{bottom:788.916000pt;}
.y2e{bottom:797.321333pt;}
.y86{bottom:797.932000pt;}
.y93{bottom:798.680000pt;}
.y85{bottom:815.382667pt;}
.y49{bottom:816.376000pt;}
.y8d{bottom:822.469333pt;}
.y2d{bottom:824.781333pt;}
.y3{bottom:828.625333pt;}
.y92{bottom:828.701333pt;}
.y84{bottom:834.812000pt;}
.y8c{bottom:840.534667pt;}
.y91{bottom:846.766667pt;}
.y83{bottom:852.877333pt;}
.y48{bottom:855.325333pt;}
.y2{bottom:857.849333pt;}
.y2c{bottom:863.732000pt;}
.y90{bottom:864.832000pt;}
.y8b{bottom:865.902667pt;}
.y82{bottom:870.942667pt;}
.y2b{bottom:881.797333pt;}
.y47{bottom:885.346667pt;}
.y1{bottom:887.073333pt;}
.y8a{bottom:887.940000pt;}
.y81{bottom:889.008000pt;}
.y8f{bottom:894.853333pt;}
.y2a{bottom:899.862667pt;}
.y8e{bottom:912.918667pt;}
.y46{bottom:915.368000pt;}
.y29{bottom:917.928000pt;}
.y80{bottom:921.477333pt;}
.y28{bottom:945.388000pt;}
.hb{height:28.139766pt;}
.h3{height:31.880400pt;}
.h5{height:37.087439pt;}
.h6{height:39.850400pt;}
.h9{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:47.820800pt;}
.hc{height:52.995067pt;}
.h7{height:53.559147pt;}
.h2{height:55.016400pt;}
.ha{height:55.269333pt;}
.h1{height:64.270827pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.230667pt;}
.xc{left:113.777333pt;}
.xa{left:118.582667pt;}
.x2{left:122.917333pt;}
.x9{left:132.364000pt;}
.x8{left:152.289333pt;}
.xf{left:155.838667pt;}
.x16{left:174.313333pt;}
.x17{left:175.524000pt;}
.xe{left:231.786667pt;}
.x10{left:232.765333pt;}
.x5{left:239.286667pt;}
.xd{left:245.060000pt;}
.x11{left:320.888000pt;}
.x6{left:343.510667pt;}
.x4{left:357.222667pt;}
.x12{left:375.874667pt;}
.x7{left:378.776000pt;}
.x3{left:380.901333pt;}
.x13{left:390.726667pt;}
.xb{left:404.364000pt;}
.x14{left:413.865333pt;}
.x15{left:429.384000pt;}
}




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