
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a9390ff46ce696bdfd34cfe3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_c7d456c5a2d1e723a043e508.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_cc6e68106de73896dc4970ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_8d2b3513b8513ea76b1a038c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_415d71642ca294780ee5e355.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9bb9827b694a99964d59ab80.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.ls13{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.152400px;}
.ls5{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.034560px;}
.ls7{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:34.865280px;}
.lsc{letter-spacing:38.465280px;}
.ls11{letter-spacing:39.881280px;}
.lsb{letter-spacing:39.905280px;}
.lse{letter-spacing:45.665280px;}
.ls12{letter-spacing:59.345280px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.wsa{word-spacing:-16.822200px;}
.ws9{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.407600px;}
.ws2{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.700000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1e{margin-left:-5.216160px;}
._c{margin-left:-4.123440px;}
._3{margin-left:-3.047760px;}
._0{margin-left:-1.105440px;}
._2{width:1.254960px;}
._8{width:2.427360px;}
._a{width:3.687120px;}
._9{width:5.378400px;}
._6{width:7.171200px;}
._7{width:8.246880px;}
._10{width:9.621360px;}
._11{width:10.794720px;}
._5{width:12.728880px;}
._4{width:13.744800px;}
._12{width:14.910240px;}
._b{width:16.553520px;}
._f{width:18.167040px;}
._19{width:19.474560px;}
._1a{width:20.496480px;}
._1b{width:21.666480px;}
._e{width:22.888080px;}
._d{width:24.083280px;}
._16{width:25.150560px;}
._15{width:26.516640px;}
._14{width:27.733920px;}
._1f{width:28.756080px;}
._17{width:29.874240px;}
._18{width:30.979680px;}
._1c{width:33.848640px;}
._1d{width:34.933440px;}
._13{width:59.400000px;}
._1{width:778.320000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y41{bottom:7.740000px;}
.y4{bottom:7.920000px;}
.y7{bottom:37.080000px;}
.y6{bottom:56.700000px;}
.y72{bottom:113.796000px;}
.y3b{bottom:116.856000px;}
.yd9{bottom:120.096000px;}
.ya5{bottom:132.876000px;}
.y71{bottom:135.576000px;}
.y3a{bottom:138.816000px;}
.yd8{bottom:141.876000px;}
.yc1{bottom:152.670000px;}
.ya4{bottom:154.650000px;}
.y70{bottom:157.350000px;}
.y39{bottom:160.590000px;}
.yd7{bottom:163.830000px;}
.yc0{bottom:174.450000px;}
.ya3{bottom:176.430000px;}
.y6f{bottom:179.130000px;}
.y38{bottom:182.370000px;}
.yd6{bottom:185.610000px;}
.ybf{bottom:196.230000px;}
.ya2{bottom:198.210000px;}
.y6e{bottom:201.090000px;}
.y37{bottom:204.150000px;}
.yd5{bottom:207.390000px;}
.ybe{bottom:218.010000px;}
.ya1{bottom:219.990000px;}
.y6d{bottom:222.870000px;}
.y36{bottom:226.110000px;}
.yd4{bottom:229.170000px;}
.ybd{bottom:239.970000px;}
.ya0{bottom:241.950000px;}
.y6c{bottom:244.650000px;}
.y35{bottom:247.890000px;}
.yd3{bottom:251.130000px;}
.ybc{bottom:261.750000px;}
.y9f{bottom:263.730000px;}
.y6b{bottom:266.430000px;}
.y34{bottom:269.670000px;}
.yd2{bottom:272.910000px;}
.ybb{bottom:283.530000px;}
.y9e{bottom:285.510000px;}
.y6a{bottom:288.210000px;}
.y33{bottom:291.450000px;}
.yd1{bottom:294.690000px;}
.yba{bottom:305.310000px;}
.y9d{bottom:307.290000px;}
.y69{bottom:310.170000px;}
.y32{bottom:313.230000px;}
.yd0{bottom:316.470000px;}
.yb9{bottom:327.270000px;}
.y9c{bottom:329.070000px;}
.y31{bottom:331.230000px;}
.y68{bottom:331.950000px;}
.ycf{bottom:338.295000px;}
.y30{bottom:345.135000px;}
.yb8{bottom:349.095000px;}
.y9b{bottom:351.075000px;}
.y67{bottom:353.775000px;}
.yce{bottom:360.255000px;}
.y2f{bottom:362.775000px;}
.yb7{bottom:370.875000px;}
.y9a{bottom:372.855000px;}
.y66{bottom:375.555000px;}
.ycd{bottom:382.035000px;}
.y2e{bottom:384.555000px;}
.yb6{bottom:392.655000px;}
.y99{bottom:394.635000px;}
.y65{bottom:397.515000px;}
.ycc{bottom:403.815000px;}
.y2d{bottom:405.795000px;}
.yb5{bottom:414.435000px;}
.y98{bottom:416.415000px;}
.y64{bottom:419.295000px;}
.ycb{bottom:425.595000px;}
.y2c{bottom:425.775000px;}
.yb4{bottom:436.395000px;}
.y97{bottom:438.375000px;}
.y63{bottom:441.075000px;}
.y2b{bottom:445.575000px;}
.yca{bottom:447.555000px;}
.yb3{bottom:458.175000px;}
.y96{bottom:460.155000px;}
.y62{bottom:462.855000px;}
.y2a{bottom:465.375000px;}
.yc9{bottom:469.335000px;}
.yb2{bottom:479.955000px;}
.y95{bottom:481.935000px;}
.y61{bottom:484.635000px;}
.y29{bottom:485.175000px;}
.yc8{bottom:491.115000px;}
.yb1{bottom:501.735000px;}
.y94{bottom:503.715000px;}
.y28{bottom:504.975000px;}
.y60{bottom:506.595000px;}
.yc7{bottom:512.895000px;}
.yb0{bottom:523.695000px;}
.y27{bottom:524.955000px;}
.y93{bottom:525.495000px;}
.y5f{bottom:528.375000px;}
.yc6{bottom:534.675000px;}
.y26{bottom:544.755000px;}
.yaf{bottom:545.475000px;}
.y92{bottom:547.455000px;}
.y5e{bottom:550.155000px;}
.yc5{bottom:556.635000px;}
.y25{bottom:564.555000px;}
.yae{bottom:567.255000px;}
.y91{bottom:569.235000px;}
.y5d{bottom:571.935000px;}
.yc4{bottom:578.415000px;}
.y24{bottom:584.355000px;}
.yad{bottom:589.035000px;}
.y90{bottom:591.015000px;}
.y5c{bottom:593.895000px;}
.y23{bottom:604.185000px;}
.yac{bottom:610.845000px;}
.y8f{bottom:612.825000px;}
.y5b{bottom:615.705000px;}
.y22{bottom:624.165000px;}
.yab{bottom:632.805000px;}
.y8e{bottom:634.785000px;}
.y5a{bottom:637.485000px;}
.y21{bottom:643.965000px;}
.yaa{bottom:655.665000px;}
.y8d{bottom:656.565000px;}
.y59{bottom:659.265000px;}
.y20{bottom:663.765000px;}
.ya9{bottom:677.625000px;}
.y8c{bottom:678.345000px;}
.y58{bottom:681.045000px;}
.y1f{bottom:683.565000px;}
.y8b{bottom:700.125000px;}
.ya8{bottom:700.485000px;}
.y57{bottom:703.005000px;}
.y1e{bottom:703.365000px;}
.y8a{bottom:721.905000px;}
.ya7{bottom:722.445000px;}
.y1d{bottom:723.345000px;}
.y56{bottom:724.785000px;}
.y1c{bottom:743.145000px;}
.y89{bottom:743.865000px;}
.ya6{bottom:745.485000px;}
.y55{bottom:746.565000px;}
.y1b{bottom:762.945000px;}
.y88{bottom:765.645000px;}
.y54{bottom:768.345000px;}
.y1a{bottom:782.745000px;}
.y87{bottom:787.425000px;}
.y53{bottom:790.125000px;}
.y19{bottom:802.545000px;}
.y86{bottom:809.205000px;}
.y52{bottom:812.085000px;}
.y18{bottom:822.525000px;}
.y85{bottom:831.165000px;}
.y51{bottom:833.865000px;}
.y17{bottom:842.325000px;}
.y84{bottom:852.945000px;}
.y50{bottom:855.645000px;}
.yc3{bottom:857.265000px;}
.y16{bottom:862.125000px;}
.y83{bottom:874.770000px;}
.y4f{bottom:877.470000px;}
.yc2{bottom:879.270000px;}
.y15{bottom:882.510000px;}
.y82{bottom:896.550000px;}
.y4e{bottom:899.430000px;}
.y14{bottom:903.750000px;}
.y81{bottom:918.330000px;}
.y4d{bottom:921.210000px;}
.y13{bottom:923.730000px;}
.y80{bottom:940.290000px;}
.y4c{bottom:942.990000px;}
.y12{bottom:948.750000px;}
.y7f{bottom:962.070000px;}
.y11{bottom:963.870000px;}
.y4b{bottom:964.770000px;}
.y7e{bottom:983.850000px;}
.y10{bottom:985.650000px;}
.y4a{bottom:986.550000px;}
.y7d{bottom:1005.630000px;}
.y49{bottom:1008.510000px;}
.yf{bottom:1008.690000px;}
.y7c{bottom:1027.590000px;}
.y48{bottom:1030.290000px;}
.ye{bottom:1034.610000px;}
.y7b{bottom:1049.370000px;}
.y47{bottom:1052.070000px;}
.yd{bottom:1057.290000px;}
.y7a{bottom:1071.150000px;}
.yc{bottom:1071.870000px;}
.y46{bottom:1073.850000px;}
.yb{bottom:1089.150000px;}
.y79{bottom:1092.930000px;}
.y45{bottom:1095.810000px;}
.ya{bottom:1106.430000px;}
.y78{bottom:1114.710000px;}
.y44{bottom:1117.590000px;}
.y9{bottom:1123.530000px;}
.y77{bottom:1136.670000px;}
.y43{bottom:1139.400000px;}
.y8{bottom:1140.840000px;}
.y76{bottom:1156.140000px;}
.y42{bottom:1160.280000px;}
.y40{bottom:1172.880000px;}
.y5{bottom:1173.780000px;}
.y3{bottom:1190.880000px;}
.y3f{bottom:1203.660000px;}
.y75{bottom:1204.740000px;}
.y3e{bottom:1219.320000px;}
.y2{bottom:1223.820000px;}
.y74{bottom:1225.440000px;}
.y3d{bottom:1234.800000px;}
.y1{bottom:1245.780000px;}
.y73{bottom:1246.140000px;}
.y3c{bottom:1250.280000px;}
.ha{height:27.147656px;}
.h12{height:27.900000px;}
.h3{height:28.080000px;}
.hf{height:33.683203px;}
.h7{height:34.036523px;}
.h5{height:36.768867px;}
.h11{height:39.313477px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.hd{height:45.549492px;}
.h10{height:46.251562px;}
.h9{height:46.736719px;}
.hb{height:48.027656px;}
.h13{height:48.224531px;}
.he{height:50.488594px;}
.h14{height:50.800781px;}
.h4{height:54.421875px;}
.h8{height:54.864844px;}
.h2{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:61.200000px;}
.w4{width:619.305000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x2{left:12.420000px;}
.x1{left:108.035987px;}
.x10{left:113.075987px;}
.x8{left:115.955987px;}
.x6{left:124.415987px;}
.xa{left:125.495987px;}
.x13{left:135.035987px;}
.x11{left:140.075987px;}
.x12{left:144.935987px;}
.x7{left:152.669987px;}
.xe{left:162.029987px;}
.x14{left:165.989987px;}
.x16{left:167.069987px;}
.x3{left:169.230000px;}
.x15{left:192.989987px;}
.x17{left:194.069987px;}
.xb{left:347.474987px;}
.x9{left:373.934987px;}
.xd{left:418.574987px;}
.xc{left:420.194987px;}
.x5{left:446.474987px;}
.xf{left:785.129987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.030720pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:30.991360pt;}
.lsc{letter-spacing:34.191360pt;}
.ls11{letter-spacing:35.450027pt;}
.lsb{letter-spacing:35.471360pt;}
.lse{letter-spacing:40.591360pt;}
.ls12{letter-spacing:52.751360pt;}
.wsb{word-spacing:-58.880000pt;}
.wsa{word-spacing:-14.953067pt;}
.ws9{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.584533pt;}
.ws2{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1e{margin-left:-4.636587pt;}
._c{margin-left:-3.665280pt;}
._3{margin-left:-2.709120pt;}
._0{margin-left:-0.982613pt;}
._2{width:1.115520pt;}
._8{width:2.157653pt;}
._a{width:3.277440pt;}
._9{width:4.780800pt;}
._6{width:6.374400pt;}
._7{width:7.330560pt;}
._10{width:8.552320pt;}
._11{width:9.595307pt;}
._5{width:11.314560pt;}
._4{width:12.217600pt;}
._12{width:13.253547pt;}
._b{width:14.714240pt;}
._f{width:16.148480pt;}
._19{width:17.310720pt;}
._1a{width:18.219093pt;}
._1b{width:19.259093pt;}
._e{width:20.344960pt;}
._d{width:21.407360pt;}
._16{width:22.356053pt;}
._15{width:23.570347pt;}
._14{width:24.652373pt;}
._1f{width:25.560960pt;}
._17{width:26.554880pt;}
._18{width:27.537493pt;}
._1c{width:30.087680pt;}
._1d{width:31.051947pt;}
._13{width:52.800000pt;}
._1{width:691.840000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:6.880000pt;}
.y4{bottom:7.040000pt;}
.y7{bottom:32.960000pt;}
.y6{bottom:50.400000pt;}
.y72{bottom:101.152000pt;}
.y3b{bottom:103.872000pt;}
.yd9{bottom:106.752000pt;}
.ya5{bottom:118.112000pt;}
.y71{bottom:120.512000pt;}
.y3a{bottom:123.392000pt;}
.yd8{bottom:126.112000pt;}
.yc1{bottom:135.706667pt;}
.ya4{bottom:137.466667pt;}
.y70{bottom:139.866667pt;}
.y39{bottom:142.746667pt;}
.yd7{bottom:145.626667pt;}
.yc0{bottom:155.066667pt;}
.ya3{bottom:156.826667pt;}
.y6f{bottom:159.226667pt;}
.y38{bottom:162.106667pt;}
.yd6{bottom:164.986667pt;}
.ybf{bottom:174.426667pt;}
.ya2{bottom:176.186667pt;}
.y6e{bottom:178.746667pt;}
.y37{bottom:181.466667pt;}
.yd5{bottom:184.346667pt;}
.ybe{bottom:193.786667pt;}
.ya1{bottom:195.546667pt;}
.y6d{bottom:198.106667pt;}
.y36{bottom:200.986667pt;}
.yd4{bottom:203.706667pt;}
.ybd{bottom:213.306667pt;}
.ya0{bottom:215.066667pt;}
.y6c{bottom:217.466667pt;}
.y35{bottom:220.346667pt;}
.yd3{bottom:223.226667pt;}
.ybc{bottom:232.666667pt;}
.y9f{bottom:234.426667pt;}
.y6b{bottom:236.826667pt;}
.y34{bottom:239.706667pt;}
.yd2{bottom:242.586667pt;}
.ybb{bottom:252.026667pt;}
.y9e{bottom:253.786667pt;}
.y6a{bottom:256.186667pt;}
.y33{bottom:259.066667pt;}
.yd1{bottom:261.946667pt;}
.yba{bottom:271.386667pt;}
.y9d{bottom:273.146667pt;}
.y69{bottom:275.706667pt;}
.y32{bottom:278.426667pt;}
.yd0{bottom:281.306667pt;}
.yb9{bottom:290.906667pt;}
.y9c{bottom:292.506667pt;}
.y31{bottom:294.426667pt;}
.y68{bottom:295.066667pt;}
.ycf{bottom:300.706667pt;}
.y30{bottom:306.786667pt;}
.yb8{bottom:310.306667pt;}
.y9b{bottom:312.066667pt;}
.y67{bottom:314.466667pt;}
.yce{bottom:320.226667pt;}
.y2f{bottom:322.466667pt;}
.yb7{bottom:329.666667pt;}
.y9a{bottom:331.426667pt;}
.y66{bottom:333.826667pt;}
.ycd{bottom:339.586667pt;}
.y2e{bottom:341.826667pt;}
.yb6{bottom:349.026667pt;}
.y99{bottom:350.786667pt;}
.y65{bottom:353.346667pt;}
.ycc{bottom:358.946667pt;}
.y2d{bottom:360.706667pt;}
.yb5{bottom:368.386667pt;}
.y98{bottom:370.146667pt;}
.y64{bottom:372.706667pt;}
.ycb{bottom:378.306667pt;}
.y2c{bottom:378.466667pt;}
.yb4{bottom:387.906667pt;}
.y97{bottom:389.666667pt;}
.y63{bottom:392.066667pt;}
.y2b{bottom:396.066667pt;}
.yca{bottom:397.826667pt;}
.yb3{bottom:407.266667pt;}
.y96{bottom:409.026667pt;}
.y62{bottom:411.426667pt;}
.y2a{bottom:413.666667pt;}
.yc9{bottom:417.186667pt;}
.yb2{bottom:426.626667pt;}
.y95{bottom:428.386667pt;}
.y61{bottom:430.786667pt;}
.y29{bottom:431.266667pt;}
.yc8{bottom:436.546667pt;}
.yb1{bottom:445.986667pt;}
.y94{bottom:447.746667pt;}
.y28{bottom:448.866667pt;}
.y60{bottom:450.306667pt;}
.yc7{bottom:455.906667pt;}
.yb0{bottom:465.506667pt;}
.y27{bottom:466.626667pt;}
.y93{bottom:467.106667pt;}
.y5f{bottom:469.666667pt;}
.yc6{bottom:475.266667pt;}
.y26{bottom:484.226667pt;}
.yaf{bottom:484.866667pt;}
.y92{bottom:486.626667pt;}
.y5e{bottom:489.026667pt;}
.yc5{bottom:494.786667pt;}
.y25{bottom:501.826667pt;}
.yae{bottom:504.226667pt;}
.y91{bottom:505.986667pt;}
.y5d{bottom:508.386667pt;}
.yc4{bottom:514.146667pt;}
.y24{bottom:519.426667pt;}
.yad{bottom:523.586667pt;}
.y90{bottom:525.346667pt;}
.y5c{bottom:527.906667pt;}
.y23{bottom:537.053333pt;}
.yac{bottom:542.973333pt;}
.y8f{bottom:544.733333pt;}
.y5b{bottom:547.293333pt;}
.y22{bottom:554.813333pt;}
.yab{bottom:562.493333pt;}
.y8e{bottom:564.253333pt;}
.y5a{bottom:566.653333pt;}
.y21{bottom:572.413333pt;}
.yaa{bottom:582.813333pt;}
.y8d{bottom:583.613333pt;}
.y59{bottom:586.013333pt;}
.y20{bottom:590.013333pt;}
.ya9{bottom:602.333333pt;}
.y8c{bottom:602.973333pt;}
.y58{bottom:605.373333pt;}
.y1f{bottom:607.613333pt;}
.y8b{bottom:622.333333pt;}
.ya8{bottom:622.653333pt;}
.y57{bottom:624.893333pt;}
.y1e{bottom:625.213333pt;}
.y8a{bottom:641.693333pt;}
.ya7{bottom:642.173333pt;}
.y1d{bottom:642.973333pt;}
.y56{bottom:644.253333pt;}
.y1c{bottom:660.573333pt;}
.y89{bottom:661.213333pt;}
.ya6{bottom:662.653333pt;}
.y55{bottom:663.613333pt;}
.y1b{bottom:678.173333pt;}
.y88{bottom:680.573333pt;}
.y54{bottom:682.973333pt;}
.y1a{bottom:695.773333pt;}
.y87{bottom:699.933333pt;}
.y53{bottom:702.333333pt;}
.y19{bottom:713.373333pt;}
.y86{bottom:719.293333pt;}
.y52{bottom:721.853333pt;}
.y18{bottom:731.133333pt;}
.y85{bottom:738.813333pt;}
.y51{bottom:741.213333pt;}
.y17{bottom:748.733333pt;}
.y84{bottom:758.173333pt;}
.y50{bottom:760.573333pt;}
.yc3{bottom:762.013333pt;}
.y16{bottom:766.333333pt;}
.y83{bottom:777.573333pt;}
.y4f{bottom:779.973333pt;}
.yc2{bottom:781.573333pt;}
.y15{bottom:784.453333pt;}
.y82{bottom:796.933333pt;}
.y4e{bottom:799.493333pt;}
.y14{bottom:803.333333pt;}
.y81{bottom:816.293333pt;}
.y4d{bottom:818.853333pt;}
.y13{bottom:821.093333pt;}
.y80{bottom:835.813333pt;}
.y4c{bottom:838.213333pt;}
.y12{bottom:843.333333pt;}
.y7f{bottom:855.173333pt;}
.y11{bottom:856.773333pt;}
.y4b{bottom:857.573333pt;}
.y7e{bottom:874.533333pt;}
.y10{bottom:876.133333pt;}
.y4a{bottom:876.933333pt;}
.y7d{bottom:893.893333pt;}
.y49{bottom:896.453333pt;}
.yf{bottom:896.613333pt;}
.y7c{bottom:913.413333pt;}
.y48{bottom:915.813333pt;}
.ye{bottom:919.653333pt;}
.y7b{bottom:932.773333pt;}
.y47{bottom:935.173333pt;}
.yd{bottom:939.813333pt;}
.y7a{bottom:952.133333pt;}
.yc{bottom:952.773333pt;}
.y46{bottom:954.533333pt;}
.yb{bottom:968.133333pt;}
.y79{bottom:971.493333pt;}
.y45{bottom:974.053333pt;}
.ya{bottom:983.493333pt;}
.y78{bottom:990.853333pt;}
.y44{bottom:993.413333pt;}
.y9{bottom:998.693333pt;}
.y77{bottom:1010.373333pt;}
.y43{bottom:1012.800000pt;}
.y8{bottom:1014.080000pt;}
.y76{bottom:1027.680000pt;}
.y42{bottom:1031.360000pt;}
.y40{bottom:1042.560000pt;}
.y5{bottom:1043.360000pt;}
.y3{bottom:1058.560000pt;}
.y3f{bottom:1069.920000pt;}
.y75{bottom:1070.880000pt;}
.y3e{bottom:1083.840000pt;}
.y2{bottom:1087.840000pt;}
.y74{bottom:1089.280000pt;}
.y3d{bottom:1097.600000pt;}
.y1{bottom:1107.360000pt;}
.y73{bottom:1107.680000pt;}
.y3c{bottom:1111.360000pt;}
.ha{height:24.131250pt;}
.h12{height:24.800000pt;}
.h3{height:24.960000pt;}
.hf{height:29.940625pt;}
.h7{height:30.254687pt;}
.h5{height:32.683437pt;}
.h11{height:34.945312pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.hd{height:40.488438pt;}
.h10{height:41.112500pt;}
.h9{height:41.543750pt;}
.hb{height:42.691250pt;}
.h13{height:42.866250pt;}
.he{height:44.878750pt;}
.h14{height:45.156250pt;}
.h4{height:48.375000pt;}
.h8{height:48.768750pt;}
.h2{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:54.400000pt;}
.w4{width:550.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x2{left:11.040000pt;}
.x1{left:96.031988pt;}
.x10{left:100.511988pt;}
.x8{left:103.071988pt;}
.x6{left:110.591988pt;}
.xa{left:111.551988pt;}
.x13{left:120.031988pt;}
.x11{left:124.511988pt;}
.x12{left:128.831988pt;}
.x7{left:135.706655pt;}
.xe{left:144.026655pt;}
.x14{left:147.546655pt;}
.x16{left:148.506655pt;}
.x3{left:150.426667pt;}
.x15{left:171.546655pt;}
.x17{left:172.506655pt;}
.xb{left:308.866655pt;}
.x9{left:332.386655pt;}
.xd{left:372.066655pt;}
.xc{left:373.506655pt;}
.x5{left:396.866655pt;}
.xf{left:697.893322pt;}
}




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