
    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_c10836b4c1dad1175e6c7db1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_c2c7e2d5d426a33452be4eab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_571471627cde5cf57846bbe4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_e0955d055908769a6a038e7a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_2705272fbd62b6fa39bd0aa4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.196289;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_e6f5f81617150a4bf6e8127b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196289;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_ba53db042d1b73bbacda681e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885742;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_9a18d0787a297ab4d3e4502c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_5722eac88a46a76062595c8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls19{letter-spacing:-0.618000px;}
.ls13{letter-spacing:-0.366000px;}
.ls7{letter-spacing:-0.334200px;}
.ls15{letter-spacing:-0.282000px;}
.ls1b{letter-spacing:-0.233400px;}
.ls4{letter-spacing:-0.227400px;}
.ls1d{letter-spacing:-0.207600px;}
.ls1c{letter-spacing:-0.172800px;}
.ls12{letter-spacing:-0.103800px;}
.ls6{letter-spacing:-0.051840px;}
.ls1e{letter-spacing:-0.007200px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.ls11{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.075000px;}
.ls18{letter-spacing:0.089400px;}
.ls16{letter-spacing:0.100800px;}
.lsb{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.144720px;}
.lse{letter-spacing:0.172800px;}
.lsa{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.187200px;}
.ls9{letter-spacing:0.285000px;}
.ls1f{letter-spacing:0.305400px;}
.lsc{letter-spacing:0.313920px;}
.ls5{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.355680px;}
.lsf{letter-spacing:0.547200px;}
.ls8{letter-spacing:1.267200px;}
.ls14{letter-spacing:4.147200px;}
.ls10{letter-spacing:9.187200px;}
.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;}
}
.ws10{word-spacing:-55.906560px;}
.wsb{word-spacing:-54.515520px;}
.wsf{word-spacing:-53.720640px;}
.ws11{word-spacing:-53.588160px;}
.ws9{word-spacing:-52.992000px;}
.ws6{word-spacing:-15.840000px;}
.ws19{word-spacing:-14.878200px;}
.wse{word-spacing:-14.745600px;}
.ws8{word-spacing:-14.679600px;}
.ws17{word-spacing:-14.662200px;}
.ws15{word-spacing:-14.647800px;}
.ws14{word-spacing:-14.644800px;}
.wsa{word-spacing:-14.621760px;}
.ws13{word-spacing:-14.595840px;}
.ws0{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.469000px;}
.ws1{word-spacing:-14.345400px;}
.ws16{word-spacing:-14.339400px;}
.ws12{word-spacing:-14.290800px;}
.ws5{word-spacing:-14.238600px;}
.wsd{word-spacing:-14.206800px;}
.ws3{word-spacing:-12.204000px;}
.ws7{word-spacing:-9.472200px;}
.ws18{word-spacing:-9.180000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:3.047040px;}
._25{margin-left:-15.947520px;}
._26{margin-left:-14.073840px;}
._24{margin-left:-12.983040px;}
._27{margin-left:-11.525760px;}
._23{margin-left:-9.748560px;}
._28{margin-left:-8.718480px;}
._b{margin-left:-7.128000px;}
._a{margin-left:-5.076000px;}
._0{margin-left:-1.126080px;}
._2{width:1.004400px;}
._9{width:2.095200px;}
._3{width:3.568800px;}
._18{width:5.296560px;}
._10{width:6.624000px;}
._4{width:8.519760px;}
._11{width:10.203840px;}
._15{width:11.272320px;}
._16{width:12.505680px;}
._7{width:13.941360px;}
._8{width:15.050880px;}
._17{width:16.847760px;}
._f{width:17.952000px;}
._e{width:18.984000px;}
._19{width:20.521920px;}
._d{width:22.052160px;}
._c{width:23.472000px;}
._1c{width:24.480000px;}
._1d{width:25.640640px;}
._13{width:26.712000px;}
._14{width:27.943200px;}
._1f{width:29.003040px;}
._12{width:30.312000px;}
._20{width:31.507440px;}
._1b{width:33.517440px;}
._21{width:34.643520px;}
._29{width:35.795280px;}
._5{width:40.569840px;}
._6{width:42.425760px;}
._1a{width:43.823760px;}
._1e{width:45.838080px;}
._22{width:47.427840px;}
._2c{width:48.885120px;}
._2d{width:50.209920px;}
._32{width:61.868160px;}
._33{width:68.558400px;}
._2a{width:73.460160px;}
._2b{width:78.720480px;}
._38{width:79.990560px;}
._31{width:92.287920px;}
._2e{width:124.133760px;}
._2f{width:148.642560px;}
._30{width:154.644960px;}
._1{width:201.403200px;}
._34{width:247.406400px;}
._35{width:251.784480px;}
._37{width:310.003200px;}
._36{width:314.134560px;}
.fc2{color:transparent;}
.fc1{color:rgb(23,54,93);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:57.420000px;}
.yd{bottom:58.176000px;}
.yc{bottom:73.656000px;}
.yb{bottom:89.136000px;}
.ya{bottom:104.616000px;}
.yc7{bottom:116.316000px;}
.y9{bottom:120.096000px;}
.y80{bottom:123.156000px;}
.yaa{bottom:129.816000px;}
.y8{bottom:135.576000px;}
.yc6{bottom:138.636000px;}
.y55{bottom:145.116000px;}
.y7f{bottom:145.296000px;}
.ya9{bottom:152.130000px;}
.yc5{bottom:160.770000px;}
.y7e{bottom:167.610000px;}
.y2e{bottom:169.410000px;}
.ya8{bottom:174.450000px;}
.y54{bottom:182.370000px;}
.yc4{bottom:183.090000px;}
.y7d{bottom:189.930000px;}
.y2d{bottom:193.710000px;}
.ya7{bottom:196.590000px;}
.yc3{bottom:205.410000px;}
.y7c{bottom:212.070000px;}
.y2c{bottom:217.830000px;}
.ya6{bottom:218.910000px;}
.y53{bottom:219.450000px;}
.yc2{bottom:227.550000px;}
.y7b{bottom:234.390000px;}
.ya5{bottom:241.050000px;}
.y52{bottom:241.770000px;}
.y2b{bottom:242.130000px;}
.yc1{bottom:249.870000px;}
.y7a{bottom:256.530000px;}
.yae{bottom:256.890000px;}
.ya4{bottom:263.370000px;}
.y2a{bottom:266.430000px;}
.yc0{bottom:272.010000px;}
.y79{bottom:278.850000px;}
.y51{bottom:279.030000px;}
.yad{bottom:279.210000px;}
.ya3{bottom:285.510000px;}
.y29{bottom:290.730000px;}
.ybf{bottom:294.330000px;}
.y78{bottom:300.990000px;}
.y50{bottom:301.350000px;}
.ya2{bottom:307.830000px;}
.y28{bottom:315.075000px;}
.ybe{bottom:316.515000px;}
.y77{bottom:323.355000px;}
.y4f{bottom:323.535000px;}
.ya1{bottom:330.195000px;}
.ybd{bottom:338.835000px;}
.y27{bottom:339.195000px;}
.y76{bottom:345.675000px;}
.y4e{bottom:345.855000px;}
.yac{bottom:346.035000px;}
.ya0{bottom:352.335000px;}
.ybc{bottom:361.155000px;}
.y26{bottom:363.495000px;}
.y75{bottom:367.815000px;}
.y4d{bottom:367.995000px;}
.yab{bottom:368.175000px;}
.y9f{bottom:374.655000px;}
.ybb{bottom:383.295000px;}
.y25{bottom:387.795000px;}
.y74{bottom:390.135000px;}
.y4c{bottom:390.315000px;}
.y9e{bottom:396.795000px;}
.yba{bottom:405.615000px;}
.y24{bottom:412.095000px;}
.y73{bottom:412.275000px;}
.y4b{bottom:412.455000px;}
.y9d{bottom:419.115000px;}
.yb9{bottom:427.755000px;}
.y72{bottom:434.595000px;}
.y4a{bottom:434.775000px;}
.y23{bottom:438.555000px;}
.y9c{bottom:441.435000px;}
.yb8{bottom:450.075000px;}
.y71{bottom:456.915000px;}
.y49{bottom:457.095000px;}
.y9b{bottom:463.575000px;}
.y22{bottom:465.015000px;}
.yb7{bottom:472.395000px;}
.y70{bottom:479.055000px;}
.y48{bottom:479.235000px;}
.y9a{bottom:485.895000px;}
.y21{bottom:487.335000px;}
.yb6{bottom:494.535000px;}
.y6f{bottom:501.375000px;}
.y47{bottom:501.555000px;}
.y99{bottom:508.035000px;}
.y20{bottom:509.475000px;}
.yb5{bottom:516.855000px;}
.y6e{bottom:523.515000px;}
.y46{bottom:523.695000px;}
.y98{bottom:530.355000px;}
.y1f{bottom:531.795000px;}
.yb4{bottom:538.995000px;}
.y6d{bottom:545.835000px;}
.y45{bottom:546.015000px;}
.y97{bottom:552.675000px;}
.y1e{bottom:554.115000px;}
.yb3{bottom:561.345000px;}
.y6c{bottom:568.005000px;}
.y44{bottom:568.365000px;}
.y96{bottom:574.845000px;}
.y1d{bottom:576.285000px;}
.yb2{bottom:583.485000px;}
.y6b{bottom:590.325000px;}
.y43{bottom:590.505000px;}
.y95{bottom:597.165000px;}
.y1c{bottom:598.605000px;}
.yb1{bottom:605.805000px;}
.y6a{bottom:612.645000px;}
.y42{bottom:612.825000px;}
.y94{bottom:619.305000px;}
.y1b{bottom:620.745000px;}
.y69{bottom:634.785000px;}
.y41{bottom:634.965000px;}
.y93{bottom:641.625000px;}
.y1a{bottom:643.065000px;}
.y68{bottom:657.105000px;}
.y40{bottom:657.285000px;}
.y92{bottom:663.765000px;}
.y19{bottom:665.385000px;}
.y67{bottom:679.245000px;}
.y3f{bottom:679.425000px;}
.y91{bottom:686.085000px;}
.y18{bottom:687.525000px;}
.y66{bottom:701.565000px;}
.y3e{bottom:701.745000px;}
.y90{bottom:708.405000px;}
.y17{bottom:709.845000px;}
.y65{bottom:723.885000px;}
.y8f{bottom:730.545000px;}
.y16{bottom:731.985000px;}
.y3d{bottom:739.005000px;}
.y64{bottom:746.025000px;}
.y8e{bottom:752.865000px;}
.y15{bottom:754.305000px;}
.y63{bottom:768.345000px;}
.y8d{bottom:775.005000px;}
.y14{bottom:776.445000px;}
.y3c{bottom:776.805000px;}
.y62{bottom:790.485000px;}
.y8c{bottom:797.325000px;}
.y13{bottom:798.765000px;}
.y3b{bottom:801.285000px;}
.y61{bottom:812.850000px;}
.y8b{bottom:819.690000px;}
.y12{bottom:821.130000px;}
.y3a{bottom:826.710000px;}
.y60{bottom:835.170000px;}
.y8a{bottom:841.830000px;}
.y5f{bottom:857.310000px;}
.y89{bottom:864.150000px;}
.y39{bottom:868.650000px;}
.y11{bottom:873.870000px;}
.y5e{bottom:879.630000px;}
.y88{bottom:886.290000px;}
.y38{bottom:893.130000px;}
.y5d{bottom:901.770000px;}
.y10{bottom:906.990000px;}
.y87{bottom:908.610000px;}
.y37{bottom:917.430000px;}
.y5c{bottom:924.090000px;}
.y86{bottom:930.750000px;}
.yc8{bottom:938.130000px;}
.yf{bottom:939.930000px;}
.y36{bottom:941.730000px;}
.y5b{bottom:946.230000px;}
.y85{bottom:953.070000px;}
.y35{bottom:966.030000px;}
.y5a{bottom:968.550000px;}
.ye{bottom:972.870000px;}
.y84{bottom:975.390000px;}
.y34{bottom:990.330000px;}
.y59{bottom:990.870000px;}
.y83{bottom:997.530000px;}
.yb0{bottom:997.890000px;}
.y7{bottom:1002.210000px;}
.y58{bottom:1013.010000px;}
.y33{bottom:1014.450000px;}
.y82{bottom:1019.850000px;}
.y6{bottom:1021.650000px;}
.y57{bottom:1035.330000px;}
.y32{bottom:1038.750000px;}
.y5{bottom:1040.910000px;}
.y81{bottom:1041.990000px;}
.y4{bottom:1060.350000px;}
.y31{bottom:1063.080000px;}
.y56{bottom:1064.340000px;}
.yaf{bottom:1064.700000px;}
.y3{bottom:1079.640000px;}
.y2{bottom:1099.080000px;}
.y1{bottom:1118.340000px;}
.y2f{bottom:1121.220000px;}
.h3{height:40.843828px;}
.h7{height:46.986328px;}
.h1{height:56.084062px;}
.h2{height:57.636562px;}
.ha{height:58.154062px;}
.h6{height:60.960938px;}
.h9{height:62.648438px;}
.h8{height:71.324297px;}
.h5{height:86.255508px;}
.h4{height:110.583984px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.036000px;}
.x5{left:166.710000px;}
.x14{left:188.130000px;}
.x4{left:190.830000px;}
.x11{left:220.710000px;}
.x8{left:238.350000px;}
.x15{left:243.030000px;}
.x10{left:247.890000px;}
.xd{left:250.950000px;}
.x3{left:262.470000px;}
.x9{left:267.150000px;}
.xf{left:274.530000px;}
.x6{left:305.715000px;}
.xe{left:313.815000px;}
.x12{left:339.915000px;}
.x7{left:353.775000px;}
.xa{left:359.895000px;}
.xc{left:375.735000px;}
.x13{left:412.275000px;}
.xb{left:459.075000px;}
.x2{left:783.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls19{letter-spacing:-0.549333pt;}
.ls13{letter-spacing:-0.325333pt;}
.ls7{letter-spacing:-0.297067pt;}
.ls15{letter-spacing:-0.250667pt;}
.ls1b{letter-spacing:-0.207467pt;}
.ls4{letter-spacing:-0.202133pt;}
.ls1d{letter-spacing:-0.184533pt;}
.ls1c{letter-spacing:-0.153600pt;}
.ls12{letter-spacing:-0.092267pt;}
.ls6{letter-spacing:-0.046080pt;}
.ls1e{letter-spacing:-0.006400pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls11{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.066667pt;}
.ls18{letter-spacing:0.079467pt;}
.ls16{letter-spacing:0.089600pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.128640pt;}
.lse{letter-spacing:0.153600pt;}
.lsa{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.166400pt;}
.ls9{letter-spacing:0.253333pt;}
.ls1f{letter-spacing:0.271467pt;}
.lsc{letter-spacing:0.279040pt;}
.ls5{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.316160pt;}
.lsf{letter-spacing:0.486400pt;}
.ls8{letter-spacing:1.126400pt;}
.ls14{letter-spacing:3.686400pt;}
.ls10{letter-spacing:8.166400pt;}
.ws10{word-spacing:-49.694720pt;}
.wsb{word-spacing:-48.458240pt;}
.wsf{word-spacing:-47.751680pt;}
.ws11{word-spacing:-47.633920pt;}
.ws9{word-spacing:-47.104000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.225067pt;}
.wse{word-spacing:-13.107200pt;}
.ws8{word-spacing:-13.048533pt;}
.ws17{word-spacing:-13.033067pt;}
.ws15{word-spacing:-13.020267pt;}
.ws14{word-spacing:-13.017600pt;}
.wsa{word-spacing:-12.997120pt;}
.ws13{word-spacing:-12.974080pt;}
.ws0{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.861333pt;}
.ws1{word-spacing:-12.751467pt;}
.ws16{word-spacing:-12.746133pt;}
.ws12{word-spacing:-12.702933pt;}
.ws5{word-spacing:-12.656533pt;}
.wsd{word-spacing:-12.628267pt;}
.ws3{word-spacing:-10.848000pt;}
.ws7{word-spacing:-8.419733pt;}
.ws18{word-spacing:-8.160000pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:2.708480pt;}
._25{margin-left:-14.175573pt;}
._26{margin-left:-12.510080pt;}
._24{margin-left:-11.540480pt;}
._27{margin-left:-10.245120pt;}
._23{margin-left:-8.665387pt;}
._28{margin-left:-7.749760pt;}
._b{margin-left:-6.336000pt;}
._a{margin-left:-4.512000pt;}
._0{margin-left:-1.000960pt;}
._2{width:0.892800pt;}
._9{width:1.862400pt;}
._3{width:3.172267pt;}
._18{width:4.708053pt;}
._10{width:5.888000pt;}
._4{width:7.573120pt;}
._11{width:9.070080pt;}
._15{width:10.019840pt;}
._16{width:11.116160pt;}
._7{width:12.392320pt;}
._8{width:13.378560pt;}
._17{width:14.975787pt;}
._f{width:15.957333pt;}
._e{width:16.874667pt;}
._19{width:18.241707pt;}
._d{width:19.601920pt;}
._c{width:20.864000pt;}
._1c{width:21.760000pt;}
._1d{width:22.791680pt;}
._13{width:23.744000pt;}
._14{width:24.838400pt;}
._1f{width:25.780480pt;}
._12{width:26.944000pt;}
._20{width:28.006613pt;}
._1b{width:29.793280pt;}
._21{width:30.794240pt;}
._29{width:31.818027pt;}
._5{width:36.062080pt;}
._6{width:37.711787pt;}
._1a{width:38.954453pt;}
._1e{width:40.744960pt;}
._22{width:42.158080pt;}
._2c{width:43.453440pt;}
._2d{width:44.631040pt;}
._32{width:54.993920pt;}
._33{width:60.940800pt;}
._2a{width:65.297920pt;}
._2b{width:69.973760pt;}
._38{width:71.102720pt;}
._31{width:82.033707pt;}
._2e{width:110.341120pt;}
._2f{width:132.126720pt;}
._30{width:137.462187pt;}
._1{width:179.025067pt;}
._34{width:219.916800pt;}
._35{width:223.808427pt;}
._37{width:275.558400pt;}
._36{width:279.230720pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:51.040000pt;}
.yd{bottom:51.712000pt;}
.yc{bottom:65.472000pt;}
.yb{bottom:79.232000pt;}
.ya{bottom:92.992000pt;}
.yc7{bottom:103.392000pt;}
.y9{bottom:106.752000pt;}
.y80{bottom:109.472000pt;}
.yaa{bottom:115.392000pt;}
.y8{bottom:120.512000pt;}
.yc6{bottom:123.232000pt;}
.y55{bottom:128.992000pt;}
.y7f{bottom:129.152000pt;}
.ya9{bottom:135.226667pt;}
.yc5{bottom:142.906667pt;}
.y7e{bottom:148.986667pt;}
.y2e{bottom:150.586667pt;}
.ya8{bottom:155.066667pt;}
.y54{bottom:162.106667pt;}
.yc4{bottom:162.746667pt;}
.y7d{bottom:168.826667pt;}
.y2d{bottom:172.186667pt;}
.ya7{bottom:174.746667pt;}
.yc3{bottom:182.586667pt;}
.y7c{bottom:188.506667pt;}
.y2c{bottom:193.626667pt;}
.ya6{bottom:194.586667pt;}
.y53{bottom:195.066667pt;}
.yc2{bottom:202.266667pt;}
.y7b{bottom:208.346667pt;}
.ya5{bottom:214.266667pt;}
.y52{bottom:214.906667pt;}
.y2b{bottom:215.226667pt;}
.yc1{bottom:222.106667pt;}
.y7a{bottom:228.026667pt;}
.yae{bottom:228.346667pt;}
.ya4{bottom:234.106667pt;}
.y2a{bottom:236.826667pt;}
.yc0{bottom:241.786667pt;}
.y79{bottom:247.866667pt;}
.y51{bottom:248.026667pt;}
.yad{bottom:248.186667pt;}
.ya3{bottom:253.786667pt;}
.y29{bottom:258.426667pt;}
.ybf{bottom:261.626667pt;}
.y78{bottom:267.546667pt;}
.y50{bottom:267.866667pt;}
.ya2{bottom:273.626667pt;}
.y28{bottom:280.066667pt;}
.ybe{bottom:281.346667pt;}
.y77{bottom:287.426667pt;}
.y4f{bottom:287.586667pt;}
.ya1{bottom:293.506667pt;}
.ybd{bottom:301.186667pt;}
.y27{bottom:301.506667pt;}
.y76{bottom:307.266667pt;}
.y4e{bottom:307.426667pt;}
.yac{bottom:307.586667pt;}
.ya0{bottom:313.186667pt;}
.ybc{bottom:321.026667pt;}
.y26{bottom:323.106667pt;}
.y75{bottom:326.946667pt;}
.y4d{bottom:327.106667pt;}
.yab{bottom:327.266667pt;}
.y9f{bottom:333.026667pt;}
.ybb{bottom:340.706667pt;}
.y25{bottom:344.706667pt;}
.y74{bottom:346.786667pt;}
.y4c{bottom:346.946667pt;}
.y9e{bottom:352.706667pt;}
.yba{bottom:360.546667pt;}
.y24{bottom:366.306667pt;}
.y73{bottom:366.466667pt;}
.y4b{bottom:366.626667pt;}
.y9d{bottom:372.546667pt;}
.yb9{bottom:380.226667pt;}
.y72{bottom:386.306667pt;}
.y4a{bottom:386.466667pt;}
.y23{bottom:389.826667pt;}
.y9c{bottom:392.386667pt;}
.yb8{bottom:400.066667pt;}
.y71{bottom:406.146667pt;}
.y49{bottom:406.306667pt;}
.y9b{bottom:412.066667pt;}
.y22{bottom:413.346667pt;}
.yb7{bottom:419.906667pt;}
.y70{bottom:425.826667pt;}
.y48{bottom:425.986667pt;}
.y9a{bottom:431.906667pt;}
.y21{bottom:433.186667pt;}
.yb6{bottom:439.586667pt;}
.y6f{bottom:445.666667pt;}
.y47{bottom:445.826667pt;}
.y99{bottom:451.586667pt;}
.y20{bottom:452.866667pt;}
.yb5{bottom:459.426667pt;}
.y6e{bottom:465.346667pt;}
.y46{bottom:465.506667pt;}
.y98{bottom:471.426667pt;}
.y1f{bottom:472.706667pt;}
.yb4{bottom:479.106667pt;}
.y6d{bottom:485.186667pt;}
.y45{bottom:485.346667pt;}
.y97{bottom:491.266667pt;}
.y1e{bottom:492.546667pt;}
.yb3{bottom:498.973333pt;}
.y6c{bottom:504.893333pt;}
.y44{bottom:505.213333pt;}
.y96{bottom:510.973333pt;}
.y1d{bottom:512.253333pt;}
.yb2{bottom:518.653333pt;}
.y6b{bottom:524.733333pt;}
.y43{bottom:524.893333pt;}
.y95{bottom:530.813333pt;}
.y1c{bottom:532.093333pt;}
.yb1{bottom:538.493333pt;}
.y6a{bottom:544.573333pt;}
.y42{bottom:544.733333pt;}
.y94{bottom:550.493333pt;}
.y1b{bottom:551.773333pt;}
.y69{bottom:564.253333pt;}
.y41{bottom:564.413333pt;}
.y93{bottom:570.333333pt;}
.y1a{bottom:571.613333pt;}
.y68{bottom:584.093333pt;}
.y40{bottom:584.253333pt;}
.y92{bottom:590.013333pt;}
.y19{bottom:591.453333pt;}
.y67{bottom:603.773333pt;}
.y3f{bottom:603.933333pt;}
.y91{bottom:609.853333pt;}
.y18{bottom:611.133333pt;}
.y66{bottom:623.613333pt;}
.y3e{bottom:623.773333pt;}
.y90{bottom:629.693333pt;}
.y17{bottom:630.973333pt;}
.y65{bottom:643.453333pt;}
.y8f{bottom:649.373333pt;}
.y16{bottom:650.653333pt;}
.y3d{bottom:656.893333pt;}
.y64{bottom:663.133333pt;}
.y8e{bottom:669.213333pt;}
.y15{bottom:670.493333pt;}
.y63{bottom:682.973333pt;}
.y8d{bottom:688.893333pt;}
.y14{bottom:690.173333pt;}
.y3c{bottom:690.493333pt;}
.y62{bottom:702.653333pt;}
.y8c{bottom:708.733333pt;}
.y13{bottom:710.013333pt;}
.y3b{bottom:712.253333pt;}
.y61{bottom:722.533333pt;}
.y8b{bottom:728.613333pt;}
.y12{bottom:729.893333pt;}
.y3a{bottom:734.853333pt;}
.y60{bottom:742.373333pt;}
.y8a{bottom:748.293333pt;}
.y5f{bottom:762.053333pt;}
.y89{bottom:768.133333pt;}
.y39{bottom:772.133333pt;}
.y11{bottom:776.773333pt;}
.y5e{bottom:781.893333pt;}
.y88{bottom:787.813333pt;}
.y38{bottom:793.893333pt;}
.y5d{bottom:801.573333pt;}
.y10{bottom:806.213333pt;}
.y87{bottom:807.653333pt;}
.y37{bottom:815.493333pt;}
.y5c{bottom:821.413333pt;}
.y86{bottom:827.333333pt;}
.yc8{bottom:833.893333pt;}
.yf{bottom:835.493333pt;}
.y36{bottom:837.093333pt;}
.y5b{bottom:841.093333pt;}
.y85{bottom:847.173333pt;}
.y35{bottom:858.693333pt;}
.y5a{bottom:860.933333pt;}
.ye{bottom:864.773333pt;}
.y84{bottom:867.013333pt;}
.y34{bottom:880.293333pt;}
.y59{bottom:880.773333pt;}
.y83{bottom:886.693333pt;}
.yb0{bottom:887.013333pt;}
.y7{bottom:890.853333pt;}
.y58{bottom:900.453333pt;}
.y33{bottom:901.733333pt;}
.y82{bottom:906.533333pt;}
.y6{bottom:908.133333pt;}
.y57{bottom:920.293333pt;}
.y32{bottom:923.333333pt;}
.y5{bottom:925.253333pt;}
.y81{bottom:926.213333pt;}
.y4{bottom:942.533333pt;}
.y31{bottom:944.960000pt;}
.y56{bottom:946.080000pt;}
.yaf{bottom:946.400000pt;}
.y3{bottom:959.680000pt;}
.y2{bottom:976.960000pt;}
.y1{bottom:994.080000pt;}
.y2f{bottom:996.640000pt;}
.h3{height:36.305625pt;}
.h7{height:41.765625pt;}
.h1{height:49.852500pt;}
.h2{height:51.232500pt;}
.ha{height:51.692500pt;}
.h6{height:54.187500pt;}
.h9{height:55.687500pt;}
.h8{height:63.399375pt;}
.h5{height:76.671562pt;}
.h4{height:98.296875pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.032000pt;}
.x5{left:148.186667pt;}
.x14{left:167.226667pt;}
.x4{left:169.626667pt;}
.x11{left:196.186667pt;}
.x8{left:211.866667pt;}
.x15{left:216.026667pt;}
.x10{left:220.346667pt;}
.xd{left:223.066667pt;}
.x3{left:233.306667pt;}
.x9{left:237.466667pt;}
.xf{left:244.026667pt;}
.x6{left:271.746667pt;}
.xe{left:278.946667pt;}
.x12{left:302.146667pt;}
.x7{left:314.466667pt;}
.xa{left:319.906667pt;}
.xc{left:333.986667pt;}
.x13{left:366.466667pt;}
.xb{left:408.066667pt;}
.x2{left:696.133333pt;}
}




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