
    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_57c378d2e77ca68028413059.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c44406db3ac842e54fa02a67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_095d429d04e18d1c302d99f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_4abc799d04172654a34d943f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_e5f4414f56fe5fe2bb46c45d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_31201f60a580dcb6ec8baee2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_4f14dcd190ea926c1c2a08a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls30{letter-spacing:-1.602000px;}
.ls38{letter-spacing:-1.380000px;}
.lse{letter-spacing:-1.140000px;}
.ls24{letter-spacing:-1.086000px;}
.ls1e{letter-spacing:-0.882000px;}
.lsd{letter-spacing:-0.852000px;}
.ls10{letter-spacing:-0.834000px;}
.ls1f{letter-spacing:-0.786000px;}
.ls13{letter-spacing:-0.768000px;}
.ls37{letter-spacing:-0.744000px;}
.ls7{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.660000px;}
.ls27{letter-spacing:-0.630000px;}
.ls25{letter-spacing:-0.463800px;}
.ls1c{letter-spacing:-0.460800px;}
.ls16{letter-spacing:-0.406200px;}
.ls3{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.310800px;}
.ls8{letter-spacing:-0.292200px;}
.ls4{letter-spacing:-0.250800px;}
.lsa{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.207600px;}
.ls18{letter-spacing:-0.164400px;}
.ls23{letter-spacing:-0.135600px;}
.lsb{letter-spacing:-0.132600px;}
.ls14{letter-spacing:-0.118200px;}
.ls5{letter-spacing:-0.115200px;}
.ls9{letter-spacing:-0.048960px;}
.ls15{letter-spacing:-0.046080px;}
.ls2f{letter-spacing:-0.040320px;}
.ls20{letter-spacing:-0.025920px;}
.ls2{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.020160px;}
.ls2a{letter-spacing:0.060600px;}
.ls22{letter-spacing:0.069000px;}
.ls1d{letter-spacing:0.069120px;}
.ls17{letter-spacing:0.089280px;}
.ls11{letter-spacing:0.089400px;}
.ls1a{letter-spacing:0.115200px;}
.ls2d{letter-spacing:0.132600px;}
.ls29{letter-spacing:0.141000px;}
.ls0{letter-spacing:0.149760px;}
.ls2b{letter-spacing:0.181440px;}
.ls33{letter-spacing:0.198720px;}
.ls19{letter-spacing:0.244800px;}
.lsc{letter-spacing:0.247800px;}
.ls6{letter-spacing:0.256200px;}
.ls31{letter-spacing:0.256320px;}
.ls2e{letter-spacing:0.259200px;}
.ls12{letter-spacing:0.313800px;}
.lsf{letter-spacing:0.371400px;}
.ls28{letter-spacing:0.427680px;}
.ls21{letter-spacing:0.427800px;}
.ls1{letter-spacing:0.852480px;}
.ls2c{letter-spacing:2.309760px;}
.ls26{letter-spacing:3.029760px;}
.ls35{letter-spacing:4.469760px;}
.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;}
}
.ws27{word-spacing:-66.240000px;}
.wsa{word-spacing:-15.341640px;}
.wsc{word-spacing:-15.284040px;}
.ws24{word-spacing:-15.229440px;}
.ws8{word-spacing:-15.226440px;}
.ws14{word-spacing:-15.215040px;}
.ws28{word-spacing:-15.168960px;}
.ws21{word-spacing:-15.111240px;}
.ws23{word-spacing:-15.102840px;}
.ws17{word-spacing:-15.085440px;}
.ws1f{word-spacing:-15.059640px;}
.ws1c{word-spacing:-15.039240px;}
.ws22{word-spacing:-15.030840px;}
.ws29{word-spacing:-14.990400px;}
.ws3{word-spacing:-14.970240px;}
.ws1a{word-spacing:-14.944320px;}
.ws25{word-spacing:-14.929920px;}
.wsf{word-spacing:-14.924160px;}
.ws6{word-spacing:-14.921280px;}
.ws12{word-spacing:-14.855040px;}
.wse{word-spacing:-14.852040px;}
.ws11{word-spacing:-14.837640px;}
.ws1d{word-spacing:-14.834640px;}
.ws13{word-spacing:-14.805840px;}
.ws7{word-spacing:-14.754240px;}
.ws2{word-spacing:-14.719440px;}
.ws2a{word-spacing:-14.659440px;}
.ws10{word-spacing:-14.564040px;}
.ws16{word-spacing:-14.509440px;}
.ws20{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.310240px;}
.ws2b{word-spacing:-14.226240px;}
.wsd{word-spacing:-14.202240px;}
.ws19{word-spacing:-14.184240px;}
.wsb{word-spacing:-14.136240px;}
.ws18{word-spacing:-14.088240px;}
.ws1e{word-spacing:-13.884240px;}
.ws9{word-spacing:-13.830240px;}
.ws2c{word-spacing:-13.590240px;}
.ws26{word-spacing:-13.368240px;}
.ws1b{word-spacing:-9.865560px;}
.ws0{word-spacing:-9.437760px;}
.ws4{word-spacing:-9.145560px;}
.ws1{word-spacing:-9.077760px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-9.149280px;}
._19{margin-left:-8.140320px;}
._a{margin-left:-6.557760px;}
._c{margin-left:-5.114880px;}
._3{margin-left:-3.935520px;}
._1{margin-left:-2.488800px;}
._0{margin-left:-1.192320px;}
._2{width:1.179360px;}
._4{width:2.758560px;}
._7{width:4.172880px;}
._b{width:5.615760px;}
._17{width:6.672720px;}
._9{width:7.711680px;}
._8{width:8.941920px;}
._f{width:10.334400px;}
._16{width:11.490240px;}
._14{width:12.585600px;}
._15{width:13.618560px;}
._11{width:16.147200px;}
._d{width:17.288640px;}
._e{width:18.878400px;}
._18{width:20.136960px;}
._5{width:21.566880px;}
._6{width:23.418240px;}
._12{width:24.500160px;}
._10{width:26.048640px;}
._13{width:27.407040px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y63{bottom:24.480000px;}
.y66{bottom:24.525000px;}
.y60{bottom:24.660000px;}
.y2{bottom:57.420000px;}
.y46{bottom:114.156000px;}
.ya8{bottom:119.916000px;}
.y89{bottom:126.576000px;}
.y5e{bottom:130.896000px;}
.y26{bottom:131.976000px;}
.y88{bottom:146.736000px;}
.y73{bottom:148.536000px;}
.ya7{bottom:152.130000px;}
.y45{bottom:154.470000px;}
.y87{bottom:166.890000px;}
.y5d{bottom:171.210000px;}
.y25{bottom:172.290000px;}
.y53{bottom:180.750000px;}
.y86{bottom:187.050000px;}
.y72{bottom:188.850000px;}
.ya6{bottom:192.450000px;}
.y44{bottom:194.790000px;}
.y85{bottom:207.210000px;}
.y5c{bottom:211.530000px;}
.y24{bottom:212.610000px;}
.y52{bottom:221.070000px;}
.y84{bottom:227.190000px;}
.y71{bottom:229.170000px;}
.ya5{bottom:232.770000px;}
.y43{bottom:234.930000px;}
.y83{bottom:247.350000px;}
.y5b{bottom:251.850000px;}
.y23{bottom:252.750000px;}
.ya4{bottom:252.930000px;}
.y22{bottom:258.690000px;}
.y51{bottom:261.390000px;}
.y70{bottom:264.810000px;}
.y82{bottom:267.510000px;}
.ya3{bottom:272.910000px;}
.y42{bottom:275.250000px;}
.y81{bottom:287.670000px;}
.y5a{bottom:291.990000px;}
.y21{bottom:293.070000px;}
.y20{bottom:299.010000px;}
.y50{bottom:301.710000px;}
.y80{bottom:307.830000px;}
.y33{bottom:309.090000px;}
.ya2{bottom:313.230000px;}
.y41{bottom:315.570000px;}
.y7f{bottom:327.990000px;}
.y59{bottom:332.310000px;}
.y1f{bottom:333.390000px;}
.y1e{bottom:339.375000px;}
.y4f{bottom:342.075000px;}
.y7e{bottom:348.195000px;}
.y32{bottom:349.455000px;}
.ya1{bottom:353.595000px;}
.y40{bottom:355.935000px;}
.y7d{bottom:368.355000px;}
.y58{bottom:372.675000px;}
.y1d{bottom:373.755000px;}
.y1c{bottom:379.695000px;}
.y4e{bottom:382.215000px;}
.y7c{bottom:388.515000px;}
.y31{bottom:389.595000px;}
.ya0{bottom:393.915000px;}
.y3f{bottom:396.255000px;}
.y7b{bottom:408.495000px;}
.y57{bottom:412.995000px;}
.y1b{bottom:414.075000px;}
.y4d{bottom:422.535000px;}
.y7a{bottom:428.655000px;}
.y30{bottom:429.915000px;}
.y9f{bottom:434.235000px;}
.y3e{bottom:436.395000px;}
.y79{bottom:448.815000px;}
.y56{bottom:453.315000px;}
.y1a{bottom:454.215000px;}
.y9e{bottom:454.395000px;}
.y19{bottom:460.155000px;}
.y4c{bottom:462.855000px;}
.y78{bottom:468.975000px;}
.y2f{bottom:470.235000px;}
.y9d{bottom:474.375000px;}
.y3d{bottom:476.715000px;}
.y77{bottom:489.135000px;}
.y55{bottom:493.455000px;}
.y18{bottom:494.535000px;}
.y17{bottom:500.475000px;}
.y4b{bottom:503.175000px;}
.y76{bottom:509.295000px;}
.y2e{bottom:510.555000px;}
.y6f{bottom:512.355000px;}
.y9c{bottom:514.695000px;}
.y3c{bottom:517.035000px;}
.y54{bottom:529.455000px;}
.y16{bottom:534.855000px;}
.y4a{bottom:543.495000px;}
.y2d{bottom:550.875000px;}
.y6e{bottom:552.675000px;}
.y9b{bottom:555.015000px;}
.y3b{bottom:557.355000px;}
.y75{bottom:569.775000px;}
.y15{bottom:575.175000px;}
.y14{bottom:581.115000px;}
.y49{bottom:583.635000px;}
.y2c{bottom:591.015000px;}
.y6d{bottom:592.995000px;}
.y9a{bottom:595.335000px;}
.y3a{bottom:597.675000px;}
.y74{bottom:603.435000px;}
.y13{bottom:615.525000px;}
.y48{bottom:623.985000px;}
.y2b{bottom:631.365000px;}
.y6c{bottom:633.165000px;}
.y99{bottom:635.685000px;}
.y39{bottom:637.845000px;}
.y12{bottom:655.665000px;}
.y98{bottom:655.845000px;}
.y47{bottom:659.805000px;}
.y11{bottom:661.605000px;}
.y2a{bottom:671.685000px;}
.y6b{bottom:673.485000px;}
.y97{bottom:675.825000px;}
.y38{bottom:678.165000px;}
.y10{bottom:695.985000px;}
.y29{bottom:712.005000px;}
.y6a{bottom:713.805000px;}
.y96{bottom:716.145000px;}
.y37{bottom:718.485000px;}
.yf{bottom:736.305000px;}
.ye{bottom:742.245000px;}
.y28{bottom:752.325000px;}
.y69{bottom:754.125000px;}
.y95{bottom:756.465000px;}
.y36{bottom:758.805000px;}
.yd{bottom:776.625000px;}
.y27{bottom:787.965000px;}
.y68{bottom:794.445000px;}
.y94{bottom:796.785000px;}
.y35{bottom:799.125000px;}
.yc{bottom:816.945000px;}
.yb{bottom:822.885000px;}
.y67{bottom:834.585000px;}
.y34{bottom:834.765000px;}
.y93{bottom:837.105000px;}
.ya{bottom:857.085000px;}
.y92{bottom:857.265000px;}
.y65{bottom:869.145000px;}
.y91{bottom:877.290000px;}
.y9{bottom:897.450000px;}
.y64{bottom:910.230000px;}
.y90{bottom:917.610000px;}
.y8{bottom:937.770000px;}
.y62{bottom:951.270000px;}
.y8f{bottom:957.930000px;}
.y7{bottom:978.090000px;}
.y61{bottom:992.130000px;}
.y8e{bottom:998.250000px;}
.y6{bottom:1018.410000px;}
.y5f{bottom:1033.170000px;}
.y8d{bottom:1038.570000px;}
.y5{bottom:1058.550000px;}
.y8c{bottom:1058.730000px;}
.y8b{bottom:1078.710000px;}
.y4{bottom:1098.870000px;}
.y8a{bottom:1119.030000px;}
.y3{bottom:1139.220000px;}
.y1{bottom:1194.120000px;}
.h8{height:40.140000px;}
.h9{height:40.176000px;}
.h7{height:40.320000px;}
.h5{height:41.944219px;}
.h4{height:42.124219px;}
.h6{height:53.302500px;}
.h2{height:65.884219px;}
.h3{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:165.630000px;}
.w4{width:165.780000px;}
.w6{width:165.810000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.xb{left:55.619973px;}
.xa{left:64.079973px;}
.x3{left:72.539973px;}
.x4{left:80.999987px;}
.x1{left:108.035987px;}
.x10{left:109.475987px;}
.xd{left:111.995987px;}
.x2{left:115.775987px;}
.x6{left:121.715987px;}
.x5{left:139.355987px;}
.x7{left:155.189987px;}
.x11{left:168.509987px;}
.x8{left:260.309987px;}
.x14{left:275.250000px;}
.xe{left:345.314987px;}
.x15{left:441.615000px;}
.x9{left:446.474987px;}
.x16{left:608.145000px;}
.xc{left:709.889987px;}
.x12{left:766.229987px;}
.xf{left:785.309987px;}
.x17{left:806.549987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls30{letter-spacing:-1.424000pt;}
.ls38{letter-spacing:-1.226667pt;}
.lse{letter-spacing:-1.013333pt;}
.ls24{letter-spacing:-0.965333pt;}
.ls1e{letter-spacing:-0.784000pt;}
.lsd{letter-spacing:-0.757333pt;}
.ls10{letter-spacing:-0.741333pt;}
.ls1f{letter-spacing:-0.698667pt;}
.ls13{letter-spacing:-0.682667pt;}
.ls37{letter-spacing:-0.661333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.586667pt;}
.ls27{letter-spacing:-0.560000pt;}
.ls25{letter-spacing:-0.412267pt;}
.ls1c{letter-spacing:-0.409600pt;}
.ls16{letter-spacing:-0.361067pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.276267pt;}
.ls8{letter-spacing:-0.259733pt;}
.ls4{letter-spacing:-0.222933pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.184533pt;}
.ls18{letter-spacing:-0.146133pt;}
.ls23{letter-spacing:-0.120533pt;}
.lsb{letter-spacing:-0.117867pt;}
.ls14{letter-spacing:-0.105067pt;}
.ls5{letter-spacing:-0.102400pt;}
.ls9{letter-spacing:-0.043520pt;}
.ls15{letter-spacing:-0.040960pt;}
.ls2f{letter-spacing:-0.035840pt;}
.ls20{letter-spacing:-0.023040pt;}
.ls2{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.017920pt;}
.ls2a{letter-spacing:0.053867pt;}
.ls22{letter-spacing:0.061333pt;}
.ls1d{letter-spacing:0.061440pt;}
.ls17{letter-spacing:0.079360pt;}
.ls11{letter-spacing:0.079467pt;}
.ls1a{letter-spacing:0.102400pt;}
.ls2d{letter-spacing:0.117867pt;}
.ls29{letter-spacing:0.125333pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2b{letter-spacing:0.161280pt;}
.ls33{letter-spacing:0.176640pt;}
.ls19{letter-spacing:0.217600pt;}
.lsc{letter-spacing:0.220267pt;}
.ls6{letter-spacing:0.227733pt;}
.ls31{letter-spacing:0.227840pt;}
.ls2e{letter-spacing:0.230400pt;}
.ls12{letter-spacing:0.278933pt;}
.lsf{letter-spacing:0.330133pt;}
.ls28{letter-spacing:0.380160pt;}
.ls21{letter-spacing:0.380267pt;}
.ls1{letter-spacing:0.757760pt;}
.ls2c{letter-spacing:2.053120pt;}
.ls26{letter-spacing:2.693120pt;}
.ls35{letter-spacing:3.973120pt;}
.ws27{word-spacing:-58.880000pt;}
.wsa{word-spacing:-13.637013pt;}
.wsc{word-spacing:-13.585813pt;}
.ws24{word-spacing:-13.537280pt;}
.ws8{word-spacing:-13.534613pt;}
.ws14{word-spacing:-13.524480pt;}
.ws28{word-spacing:-13.483520pt;}
.ws21{word-spacing:-13.432213pt;}
.ws23{word-spacing:-13.424747pt;}
.ws17{word-spacing:-13.409280pt;}
.ws1f{word-spacing:-13.386347pt;}
.ws1c{word-spacing:-13.368213pt;}
.ws22{word-spacing:-13.360747pt;}
.ws29{word-spacing:-13.324800pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1a{word-spacing:-13.283840pt;}
.ws25{word-spacing:-13.271040pt;}
.wsf{word-spacing:-13.265920pt;}
.ws6{word-spacing:-13.263360pt;}
.ws12{word-spacing:-13.204480pt;}
.wse{word-spacing:-13.201813pt;}
.ws11{word-spacing:-13.189013pt;}
.ws1d{word-spacing:-13.186347pt;}
.ws13{word-spacing:-13.160747pt;}
.ws7{word-spacing:-13.114880pt;}
.ws2{word-spacing:-13.083947pt;}
.ws2a{word-spacing:-13.030613pt;}
.ws10{word-spacing:-12.945813pt;}
.ws16{word-spacing:-12.897280pt;}
.ws20{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.720213pt;}
.ws2b{word-spacing:-12.645547pt;}
.wsd{word-spacing:-12.624213pt;}
.ws19{word-spacing:-12.608213pt;}
.wsb{word-spacing:-12.565547pt;}
.ws18{word-spacing:-12.522880pt;}
.ws1e{word-spacing:-12.341547pt;}
.ws9{word-spacing:-12.293547pt;}
.ws2c{word-spacing:-12.080213pt;}
.ws26{word-spacing:-11.882880pt;}
.ws1b{word-spacing:-8.769387pt;}
.ws0{word-spacing:-8.389120pt;}
.ws4{word-spacing:-8.129387pt;}
.ws1{word-spacing:-8.069120pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-8.132693pt;}
._19{margin-left:-7.235840pt;}
._a{margin-left:-5.829120pt;}
._c{margin-left:-4.546560pt;}
._3{margin-left:-3.498240pt;}
._1{margin-left:-2.212267pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.048320pt;}
._4{width:2.452053pt;}
._7{width:3.709227pt;}
._b{width:4.991787pt;}
._17{width:5.931307pt;}
._9{width:6.854827pt;}
._8{width:7.948373pt;}
._f{width:9.186133pt;}
._16{width:10.213547pt;}
._14{width:11.187200pt;}
._15{width:12.105387pt;}
._11{width:14.353067pt;}
._d{width:15.367680pt;}
._e{width:16.780800pt;}
._18{width:17.899520pt;}
._5{width:19.170560pt;}
._6{width:20.816213pt;}
._12{width:21.777920pt;}
._10{width:23.154347pt;}
._13{width:24.361813pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:21.760000pt;}
.y66{bottom:21.800000pt;}
.y60{bottom:21.920000pt;}
.y2{bottom:51.040000pt;}
.y46{bottom:101.472000pt;}
.ya8{bottom:106.592000pt;}
.y89{bottom:112.512000pt;}
.y5e{bottom:116.352000pt;}
.y26{bottom:117.312000pt;}
.y88{bottom:130.432000pt;}
.y73{bottom:132.032000pt;}
.ya7{bottom:135.226667pt;}
.y45{bottom:137.306667pt;}
.y87{bottom:148.346667pt;}
.y5d{bottom:152.186667pt;}
.y25{bottom:153.146667pt;}
.y53{bottom:160.666667pt;}
.y86{bottom:166.266667pt;}
.y72{bottom:167.866667pt;}
.ya6{bottom:171.066667pt;}
.y44{bottom:173.146667pt;}
.y85{bottom:184.186667pt;}
.y5c{bottom:188.026667pt;}
.y24{bottom:188.986667pt;}
.y52{bottom:196.506667pt;}
.y84{bottom:201.946667pt;}
.y71{bottom:203.706667pt;}
.ya5{bottom:206.906667pt;}
.y43{bottom:208.826667pt;}
.y83{bottom:219.866667pt;}
.y5b{bottom:223.866667pt;}
.y23{bottom:224.666667pt;}
.ya4{bottom:224.826667pt;}
.y22{bottom:229.946667pt;}
.y51{bottom:232.346667pt;}
.y70{bottom:235.386667pt;}
.y82{bottom:237.786667pt;}
.ya3{bottom:242.586667pt;}
.y42{bottom:244.666667pt;}
.y81{bottom:255.706667pt;}
.y5a{bottom:259.546667pt;}
.y21{bottom:260.506667pt;}
.y20{bottom:265.786667pt;}
.y50{bottom:268.186667pt;}
.y80{bottom:273.626667pt;}
.y33{bottom:274.746667pt;}
.ya2{bottom:278.426667pt;}
.y41{bottom:280.506667pt;}
.y7f{bottom:291.546667pt;}
.y59{bottom:295.386667pt;}
.y1f{bottom:296.346667pt;}
.y1e{bottom:301.666667pt;}
.y4f{bottom:304.066667pt;}
.y7e{bottom:309.506667pt;}
.y32{bottom:310.626667pt;}
.ya1{bottom:314.306667pt;}
.y40{bottom:316.386667pt;}
.y7d{bottom:327.426667pt;}
.y58{bottom:331.266667pt;}
.y1d{bottom:332.226667pt;}
.y1c{bottom:337.506667pt;}
.y4e{bottom:339.746667pt;}
.y7c{bottom:345.346667pt;}
.y31{bottom:346.306667pt;}
.ya0{bottom:350.146667pt;}
.y3f{bottom:352.226667pt;}
.y7b{bottom:363.106667pt;}
.y57{bottom:367.106667pt;}
.y1b{bottom:368.066667pt;}
.y4d{bottom:375.586667pt;}
.y7a{bottom:381.026667pt;}
.y30{bottom:382.146667pt;}
.y9f{bottom:385.986667pt;}
.y3e{bottom:387.906667pt;}
.y79{bottom:398.946667pt;}
.y56{bottom:402.946667pt;}
.y1a{bottom:403.746667pt;}
.y9e{bottom:403.906667pt;}
.y19{bottom:409.026667pt;}
.y4c{bottom:411.426667pt;}
.y78{bottom:416.866667pt;}
.y2f{bottom:417.986667pt;}
.y9d{bottom:421.666667pt;}
.y3d{bottom:423.746667pt;}
.y77{bottom:434.786667pt;}
.y55{bottom:438.626667pt;}
.y18{bottom:439.586667pt;}
.y17{bottom:444.866667pt;}
.y4b{bottom:447.266667pt;}
.y76{bottom:452.706667pt;}
.y2e{bottom:453.826667pt;}
.y6f{bottom:455.426667pt;}
.y9c{bottom:457.506667pt;}
.y3c{bottom:459.586667pt;}
.y54{bottom:470.626667pt;}
.y16{bottom:475.426667pt;}
.y4a{bottom:483.106667pt;}
.y2d{bottom:489.666667pt;}
.y6e{bottom:491.266667pt;}
.y9b{bottom:493.346667pt;}
.y3b{bottom:495.426667pt;}
.y75{bottom:506.466667pt;}
.y15{bottom:511.266667pt;}
.y14{bottom:516.546667pt;}
.y49{bottom:518.786667pt;}
.y2c{bottom:525.346667pt;}
.y6d{bottom:527.106667pt;}
.y9a{bottom:529.186667pt;}
.y3a{bottom:531.266667pt;}
.y74{bottom:536.386667pt;}
.y13{bottom:547.133333pt;}
.y48{bottom:554.653333pt;}
.y2b{bottom:561.213333pt;}
.y6c{bottom:562.813333pt;}
.y99{bottom:565.053333pt;}
.y39{bottom:566.973333pt;}
.y12{bottom:582.813333pt;}
.y98{bottom:582.973333pt;}
.y47{bottom:586.493333pt;}
.y11{bottom:588.093333pt;}
.y2a{bottom:597.053333pt;}
.y6b{bottom:598.653333pt;}
.y97{bottom:600.733333pt;}
.y38{bottom:602.813333pt;}
.y10{bottom:618.653333pt;}
.y29{bottom:632.893333pt;}
.y6a{bottom:634.493333pt;}
.y96{bottom:636.573333pt;}
.y37{bottom:638.653333pt;}
.yf{bottom:654.493333pt;}
.ye{bottom:659.773333pt;}
.y28{bottom:668.733333pt;}
.y69{bottom:670.333333pt;}
.y95{bottom:672.413333pt;}
.y36{bottom:674.493333pt;}
.yd{bottom:690.333333pt;}
.y27{bottom:700.413333pt;}
.y68{bottom:706.173333pt;}
.y94{bottom:708.253333pt;}
.y35{bottom:710.333333pt;}
.yc{bottom:726.173333pt;}
.yb{bottom:731.453333pt;}
.y67{bottom:741.853333pt;}
.y34{bottom:742.013333pt;}
.y93{bottom:744.093333pt;}
.ya{bottom:761.853333pt;}
.y92{bottom:762.013333pt;}
.y65{bottom:772.573333pt;}
.y91{bottom:779.813333pt;}
.y9{bottom:797.733333pt;}
.y64{bottom:809.093333pt;}
.y90{bottom:815.653333pt;}
.y8{bottom:833.573333pt;}
.y62{bottom:845.573333pt;}
.y8f{bottom:851.493333pt;}
.y7{bottom:869.413333pt;}
.y61{bottom:881.893333pt;}
.y8e{bottom:887.333333pt;}
.y6{bottom:905.253333pt;}
.y5f{bottom:918.373333pt;}
.y8d{bottom:923.173333pt;}
.y5{bottom:940.933333pt;}
.y8c{bottom:941.093333pt;}
.y8b{bottom:958.853333pt;}
.y4{bottom:976.773333pt;}
.y8a{bottom:994.693333pt;}
.y3{bottom:1012.640000pt;}
.y1{bottom:1061.440000pt;}
.h8{height:35.680000pt;}
.h9{height:35.712000pt;}
.h7{height:35.840000pt;}
.h5{height:37.283750pt;}
.h4{height:37.443750pt;}
.h6{height:47.380000pt;}
.h2{height:58.563750pt;}
.h3{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:147.226667pt;}
.w4{width:147.360000pt;}
.w6{width:147.386667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.xb{left:49.439976pt;}
.xa{left:56.959976pt;}
.x3{left:64.479976pt;}
.x4{left:71.999988pt;}
.x1{left:96.031988pt;}
.x10{left:97.311988pt;}
.xd{left:99.551988pt;}
.x2{left:102.911988pt;}
.x6{left:108.191988pt;}
.x5{left:123.871988pt;}
.x7{left:137.946655pt;}
.x11{left:149.786655pt;}
.x8{left:231.386655pt;}
.x14{left:244.666667pt;}
.xe{left:306.946655pt;}
.x15{left:392.546667pt;}
.x9{left:396.866655pt;}
.x16{left:540.573333pt;}
.xc{left:631.013322pt;}
.x12{left:681.093322pt;}
.xf{left:698.053322pt;}
.x17{left:716.933322pt;}
}




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