
    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_fc85766d91455b879d64bf41.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e5578870e5ef27e0784eaf52.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_1db3d776c25fe3eb14868357.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_113efbcbfda3572f4531875c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7e643503964efb086016660f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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:-29.880000px;}
.v3{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.880000px;}
.ls1d{letter-spacing:-0.144288px;}
.ls13{letter-spacing:-0.105732px;}
.ls19{letter-spacing:-0.076896px;}
.lsa{letter-spacing:-0.067284px;}
.ls10{letter-spacing:-0.048096px;}
.lsb{letter-spacing:-0.048060px;}
.ls1c{letter-spacing:-0.042084px;}
.lsc{letter-spacing:-0.036072px;}
.ls1b{letter-spacing:-0.032940px;}
.ls11{letter-spacing:-0.024048px;}
.lsd{letter-spacing:-0.018036px;}
.ls12{letter-spacing:-0.012024px;}
.lsf{letter-spacing:-0.006012px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006012px;}
.ls1a{letter-spacing:0.006588px;}
.ls25{letter-spacing:0.008388px;}
.ls8{letter-spacing:0.012024px;}
.ls7{letter-spacing:0.024048px;}
.ls1f{letter-spacing:0.025164px;}
.ls6{letter-spacing:0.030060px;}
.ls24{letter-spacing:0.033552px;}
.ls21{letter-spacing:0.041940px;}
.ls14{letter-spacing:0.046116px;}
.ls22{letter-spacing:0.050328px;}
.ls17{letter-spacing:0.052704px;}
.ls23{letter-spacing:0.058716px;}
.ls4{letter-spacing:0.059292px;}
.ls1{letter-spacing:0.065880px;}
.ls26{letter-spacing:0.067104px;}
.ls3{letter-spacing:0.072468px;}
.ls20{letter-spacing:0.075492px;}
.ls5{letter-spacing:0.079056px;}
.ls15{letter-spacing:0.092232px;}
.ls28{letter-spacing:0.100656px;}
.ls16{letter-spacing:0.118584px;}
.ls18{letter-spacing:0.120240px;}
.ls27{letter-spacing:0.125172px;}
.ls1e{letter-spacing:0.125820px;}
.lse{letter-spacing:0.138276px;}
.ls2{letter-spacing:3.221280px;}
.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;}
}
.ws5{word-spacing:-18.387108px;}
.ws21{word-spacing:-18.360756px;}
.ws23{word-spacing:-16.737408px;}
.ws7{word-spacing:-16.719372px;}
.ws1{word-spacing:-16.707348px;}
.ws4{word-spacing:-16.701336px;}
.ws0{word-spacing:-16.695324px;}
.ws3{word-spacing:-16.689312px;}
.ws22{word-spacing:-16.677288px;}
.ws2{word-spacing:-16.665264px;}
.ws6{word-spacing:-10.808640px;}
.ws24{word-spacing:-9.720000px;}
.wsc{word-spacing:-0.511020px;}
.ws42{word-spacing:-0.375516px;}
.ws1c{word-spacing:-0.174348px;}
.ws1e{word-spacing:-0.168336px;}
.ws1f{word-spacing:-0.156312px;}
.ws20{word-spacing:-0.150300px;}
.ws8{word-spacing:-0.144288px;}
.ws1d{word-spacing:-0.138276px;}
.ws3b{word-spacing:-0.132264px;}
.wsb{word-spacing:-0.108216px;}
.ws37{word-spacing:-0.102204px;}
.ws45{word-spacing:-0.032940px;}
.ws16{word-spacing:-0.019764px;}
.wsa{word-spacing:-0.019224px;}
.ws1a{word-spacing:-0.013176px;}
.ws3d{word-spacing:-0.006588px;}
.ws9{word-spacing:0.000000px;}
.ws40{word-spacing:0.006588px;}
.ws25{word-spacing:0.009612px;}
.ws3e{word-spacing:0.016776px;}
.ws47{word-spacing:0.025164px;}
.ws43{word-spacing:0.033552px;}
.ws13{word-spacing:0.038448px;}
.ws41{word-spacing:0.041940px;}
.ws3f{word-spacing:0.050328px;}
.ws44{word-spacing:0.058716px;}
.ws3c{word-spacing:0.067104px;}
.ws46{word-spacing:0.218088px;}
.ws30{word-spacing:0.685152px;}
.ws29{word-spacing:1.429596px;}
.ws2a{word-spacing:1.436184px;}
.ws27{word-spacing:1.449360px;}
.ws28{word-spacing:1.488888px;}
.ws19{word-spacing:1.798524px;}
.ws3a{word-spacing:2.014020px;}
.ws18{word-spacing:2.510028px;}
.ws38{word-spacing:3.072132px;}
.ws39{word-spacing:3.090168px;}
.ws36{word-spacing:3.214944px;}
.ws10{word-spacing:3.234708px;}
.ws26{word-spacing:3.577284px;}
.ws2c{word-spacing:3.583872px;}
.ws2b{word-spacing:3.597048px;}
.ws31{word-spacing:3.952800px;}
.ws32{word-spacing:3.959388px;}
.ws14{word-spacing:5.020056px;}
.ws12{word-spacing:7.536672px;}
.ws15{word-spacing:8.261352px;}
.ws33{word-spacing:10.738440px;}
.ws34{word-spacing:10.791144px;}
.ws35{word-spacing:10.804320px;}
.ws17{word-spacing:14.025852px;}
.wse{word-spacing:14.381604px;}
.wsd{word-spacing:14.388192px;}
.ws1b{word-spacing:15.824376px;}
.ws11{word-spacing:19.059084px;}
.ws2e{word-spacing:20.139516px;}
.ws2f{word-spacing:20.146104px;}
.ws2d{word-spacing:20.251512px;}
.wsf{word-spacing:28.420632px;}
._a{margin-left:-10.350792px;}
._4{margin-left:-7.209000px;}
._3{margin-left:-2.403000px;}
._0{margin-left:-1.142280px;}
._6{width:1.033452px;}
._5{width:2.695392px;}
._7{width:3.838788px;}
._8{width:35.942580px;}
._b{width:69.108120px;}
._2{width:83.506680px;}
._9{width:105.803280px;}
._1{width:1194.572376px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs5{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:56.730600px;}
.y8e{bottom:56.736570px;}
.y44{bottom:97.041630px;}
.y2c{bottom:97.045950px;}
.y68{bottom:109.304040px;}
.y8d{bottom:113.653290px;}
.y2b{bottom:114.326130px;}
.y67{bottom:128.293950px;}
.y8c{bottom:132.643200px;}
.y2a{bottom:138.990450px;}
.y66{bottom:147.283860px;}
.y29{bottom:149.520450px;}
.y43{bottom:156.270450px;}
.y42{bottom:166.075950px;}
.y8b{bottom:169.536000px;}
.y65{bottom:184.275480px;}
.y28{bottom:187.140450px;}
.y8a{bottom:188.427090px;}
.y41{bottom:190.110450px;}
.y40{bottom:200.636130px;}
.y64{bottom:203.265390px;}
.y89{bottom:207.417000px;}
.y27{bottom:207.840450px;}
.y3f{bottom:225.300450px;}
.y26{bottom:228.540450px;}
.y3e{bottom:235.830450px;}
.y63{bottom:240.158190px;}
.y88{bottom:244.490970px;}
.y25{bottom:249.240450px;}
.y62{bottom:259.148100px;}
.y87{bottom:263.480880px;}
.y24{bottom:269.940450px;}
.y61{bottom:278.138010px;}
.y23{bottom:290.640450px;}
.y60{bottom:297.127920px;}
.y86{bottom:300.373680px;}
.y22{bottom:310.809810px;}
.y5f{bottom:316.117830px;}
.y85{bottom:319.363590px;}
.y21{bottom:329.799720px;}
.y5e{bottom:335.008920px;}
.y20{bottom:348.789630px;}
.y84{bottom:356.355210px;}
.y1f{bottom:367.779540px;}
.y5d{bottom:372.000540px;}
.y83{bottom:375.345120px;}
.y1e{bottom:386.769450px;}
.y3d{bottom:388.119540px;}
.y5c{bottom:390.990450px;}
.y1d{bottom:405.660540px;}
.y3c{bottom:407.010630px;}
.y82{bottom:412.336740px;}
.y1c{bottom:424.650450px;}
.y3b{bottom:426.000540px;}
.y5b{bottom:428.880450px;}
.y81{bottom:431.326650px;}
.y3a{bottom:444.999780px;}
.y1b{bottom:449.670450px;}
.y80{bottom:450.316560px;}
.y39{bottom:463.989690px;}
.y7f{bottom:469.207650px;}
.y5a{bottom:470.106300px;}
.y38{bottom:482.979600px;}
.y59{bottom:489.096210px;}
.y1a{bottom:494.130450px;}
.y37{bottom:501.870690px;}
.y7e{bottom:506.100450px;}
.y19{bottom:514.479450px;}
.y36{bottom:520.860630px;}
.y58{bottom:526.087830px;}
.y18{bottom:533.469360px;}
.y35{bottom:539.850540px;}
.y7d{bottom:544.080450px;}
.y57{bottom:545.077740px;}
.y17{bottom:552.360450px;}
.y34{bottom:558.840630px;}
.y16{bottom:577.380450px;}
.y33{bottom:577.830540px;}
.y56{bottom:581.970540px;}
.y7c{bottom:585.328530px;}
.y32{bottom:596.820450px;}
.y55{bottom:600.960450px;}
.y7b{bottom:604.318440px;}
.y31{bottom:616.260450px;}
.y9e{bottom:617.163600px;}
.y15{bottom:621.930450px;}
.y7a{bottom:623.308350px;}
.y30{bottom:632.820450px;}
.y54{bottom:638.940450px;}
.y14{bottom:642.189720px;}
.y79{bottom:660.201150px;}
.y13{bottom:661.179630px;}
.y9d{bottom:662.700450px;}
.y12{bottom:680.070720px;}
.y53{bottom:680.164500px;}
.y78{bottom:697.192770px;}
.y11{bottom:699.060630px;}
.y9c{bottom:706.798830px;}
.y77{bottom:716.083860px;}
.y52{bottom:717.057300px;}
.y10{bottom:718.050540px;}
.y76{bottom:735.073770px;}
.y51{bottom:736.047210px;}
.yf{bottom:737.040450px;}
.y9b{bottom:743.790450px;}
.ye{bottom:761.967480px;}
.y75{bottom:772.147740px;}
.y50{bottom:773.038830px;}
.y9a{bottom:781.590450px;}
.y74{bottom:791.137650px;}
.yd{bottom:807.600450px;}
.y4f{bottom:810.030450px;}
.y99{bottom:822.900450px;}
.y73{bottom:828.030450px;}
.y4e{bottom:847.920450px;}
.y9{bottom:852.600450px;}
.y98{bottom:860.790600px;}
.y72{bottom:865.920450px;}
.yc{bottom:872.391630px;}
.y4d{bottom:889.258350px;}
.yb{bottom:889.585950px;}
.y97{bottom:902.008830px;}
.ya{bottom:906.870450px;}
.y71{bottom:907.244940px;}
.y4c{bottom:926.151150px;}
.y96{bottom:939.000450px;}
.y70{bottom:944.137740px;}
.y8{bottom:945.026130px;}
.y4b{bottom:945.042240px;}
.y7{bottom:962.215950px;}
.y6f{bottom:963.028830px;}
.y95{bottom:976.800450px;}
.y6{bottom:979.495950px;}
.y4a{bottom:982.033860px;}
.y5{bottom:996.780450px;}
.y6e{bottom:1000.020450px;}
.y49{bottom:1001.023770px;}
.y94{bottom:1018.109100px;}
.y48{bottom:1020.013680px;}
.y4{bottom:1020.267480px;}
.y93{bottom:1037.099010px;}
.y6d{bottom:1038.000450px;}
.y47{bottom:1057.087650px;}
.y3{bottom:1065.900450px;}
.y92{bottom:1074.090630px;}
.y6c{bottom:1079.219010px;}
.y91{bottom:1093.080540px;}
.y46{bottom:1093.980450px;}
.y6b{bottom:1098.208920px;}
.y2{bottom:1106.310450px;}
.y90{bottom:1112.070450px;}
.y2f{bottom:1120.800450px;}
.y45{bottom:1131.870450px;}
.y6a{bottom:1135.200540px;}
.y2e{bottom:1147.080450px;}
.y8f{bottom:1149.870450px;}
.y69{bottom:1154.190450px;}
.y1{bottom:1195.950450px;}
.hd{height:38.158594px;}
.h9{height:40.550625px;}
.h1{height:62.703281px;}
.ha{height:62.720561px;}
.h4{height:62.721281px;}
.h5{height:62.738561px;}
.h7{height:68.710781px;}
.h2{height:70.664062px;}
.hc{height:73.773124px;}
.hb{height:73.809124px;}
.h6{height:73.809844px;}
.h8{height:75.093750px;}
.he{height:87.484219px;}
.h3{height:100.250156px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x12{left:95.040000px;}
.x13{left:122.040000px;}
.x14{left:175.221630px;}
.x3{left:210.060000px;}
.x6{left:218.785500px;}
.x7{left:228.786030px;}
.x4{left:268.116480px;}
.x10{left:327.150000px;}
.x8{left:332.820000px;}
.xd{left:363.870000px;}
.xb{left:365.659380px;}
.x9{left:370.980000px;}
.xc{left:376.466580px;}
.xe{left:386.100000px;}
.xf{left:408.869250px;}
.xa{left:442.793340px;}
.x5{left:446.490000px;}
.x2{left:591.390000px;}
.x11{left:716.490000px;}
@media print{
.v2{vertical-align:-26.560000pt;}
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls1d{letter-spacing:-0.128256pt;}
.ls13{letter-spacing:-0.093984pt;}
.ls19{letter-spacing:-0.068352pt;}
.lsa{letter-spacing:-0.059808pt;}
.ls10{letter-spacing:-0.042752pt;}
.lsb{letter-spacing:-0.042720pt;}
.ls1c{letter-spacing:-0.037408pt;}
.lsc{letter-spacing:-0.032064pt;}
.ls1b{letter-spacing:-0.029280pt;}
.ls11{letter-spacing:-0.021376pt;}
.lsd{letter-spacing:-0.016032pt;}
.ls12{letter-spacing:-0.010688pt;}
.lsf{letter-spacing:-0.005344pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005344pt;}
.ls1a{letter-spacing:0.005856pt;}
.ls25{letter-spacing:0.007456pt;}
.ls8{letter-spacing:0.010688pt;}
.ls7{letter-spacing:0.021376pt;}
.ls1f{letter-spacing:0.022368pt;}
.ls6{letter-spacing:0.026720pt;}
.ls24{letter-spacing:0.029824pt;}
.ls21{letter-spacing:0.037280pt;}
.ls14{letter-spacing:0.040992pt;}
.ls22{letter-spacing:0.044736pt;}
.ls17{letter-spacing:0.046848pt;}
.ls23{letter-spacing:0.052192pt;}
.ls4{letter-spacing:0.052704pt;}
.ls1{letter-spacing:0.058560pt;}
.ls26{letter-spacing:0.059648pt;}
.ls3{letter-spacing:0.064416pt;}
.ls20{letter-spacing:0.067104pt;}
.ls5{letter-spacing:0.070272pt;}
.ls15{letter-spacing:0.081984pt;}
.ls28{letter-spacing:0.089472pt;}
.ls16{letter-spacing:0.105408pt;}
.ls18{letter-spacing:0.106880pt;}
.ls27{letter-spacing:0.111264pt;}
.ls1e{letter-spacing:0.111840pt;}
.lse{letter-spacing:0.122912pt;}
.ls2{letter-spacing:2.863360pt;}
.ws5{word-spacing:-16.344096pt;}
.ws21{word-spacing:-16.320672pt;}
.ws23{word-spacing:-14.877696pt;}
.ws7{word-spacing:-14.861664pt;}
.ws1{word-spacing:-14.850976pt;}
.ws4{word-spacing:-14.845632pt;}
.ws0{word-spacing:-14.840288pt;}
.ws3{word-spacing:-14.834944pt;}
.ws22{word-spacing:-14.824256pt;}
.ws2{word-spacing:-14.813568pt;}
.ws6{word-spacing:-9.607680pt;}
.ws24{word-spacing:-8.640000pt;}
.wsc{word-spacing:-0.454240pt;}
.ws42{word-spacing:-0.333792pt;}
.ws1c{word-spacing:-0.154976pt;}
.ws1e{word-spacing:-0.149632pt;}
.ws1f{word-spacing:-0.138944pt;}
.ws20{word-spacing:-0.133600pt;}
.ws8{word-spacing:-0.128256pt;}
.ws1d{word-spacing:-0.122912pt;}
.ws3b{word-spacing:-0.117568pt;}
.wsb{word-spacing:-0.096192pt;}
.ws37{word-spacing:-0.090848pt;}
.ws45{word-spacing:-0.029280pt;}
.ws16{word-spacing:-0.017568pt;}
.wsa{word-spacing:-0.017088pt;}
.ws1a{word-spacing:-0.011712pt;}
.ws3d{word-spacing:-0.005856pt;}
.ws9{word-spacing:0.000000pt;}
.ws40{word-spacing:0.005856pt;}
.ws25{word-spacing:0.008544pt;}
.ws3e{word-spacing:0.014912pt;}
.ws47{word-spacing:0.022368pt;}
.ws43{word-spacing:0.029824pt;}
.ws13{word-spacing:0.034176pt;}
.ws41{word-spacing:0.037280pt;}
.ws3f{word-spacing:0.044736pt;}
.ws44{word-spacing:0.052192pt;}
.ws3c{word-spacing:0.059648pt;}
.ws46{word-spacing:0.193856pt;}
.ws30{word-spacing:0.609024pt;}
.ws29{word-spacing:1.270752pt;}
.ws2a{word-spacing:1.276608pt;}
.ws27{word-spacing:1.288320pt;}
.ws28{word-spacing:1.323456pt;}
.ws19{word-spacing:1.598688pt;}
.ws3a{word-spacing:1.790240pt;}
.ws18{word-spacing:2.231136pt;}
.ws38{word-spacing:2.730784pt;}
.ws39{word-spacing:2.746816pt;}
.ws36{word-spacing:2.857728pt;}
.ws10{word-spacing:2.875296pt;}
.ws26{word-spacing:3.179808pt;}
.ws2c{word-spacing:3.185664pt;}
.ws2b{word-spacing:3.197376pt;}
.ws31{word-spacing:3.513600pt;}
.ws32{word-spacing:3.519456pt;}
.ws14{word-spacing:4.462272pt;}
.ws12{word-spacing:6.699264pt;}
.ws15{word-spacing:7.343424pt;}
.ws33{word-spacing:9.545280pt;}
.ws34{word-spacing:9.592128pt;}
.ws35{word-spacing:9.603840pt;}
.ws17{word-spacing:12.467424pt;}
.wse{word-spacing:12.783648pt;}
.wsd{word-spacing:12.789504pt;}
.ws1b{word-spacing:14.066112pt;}
.ws11{word-spacing:16.941408pt;}
.ws2e{word-spacing:17.901792pt;}
.ws2f{word-spacing:17.907648pt;}
.ws2d{word-spacing:18.001344pt;}
.wsf{word-spacing:25.262784pt;}
._a{margin-left:-9.200704pt;}
._4{margin-left:-6.408000pt;}
._3{margin-left:-2.136000pt;}
._0{margin-left:-1.015360pt;}
._6{width:0.918624pt;}
._5{width:2.395904pt;}
._7{width:3.412256pt;}
._8{width:31.948960pt;}
._b{width:61.429440pt;}
._2{width:74.228160pt;}
._9{width:94.047360pt;}
._1{width:1061.842112pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:50.427200pt;}
.y8e{bottom:50.432507pt;}
.y44{bottom:86.259227pt;}
.y2c{bottom:86.263067pt;}
.y68{bottom:97.159147pt;}
.y8d{bottom:101.025147pt;}
.y2b{bottom:101.623227pt;}
.y67{bottom:114.039067pt;}
.y8c{bottom:117.905067pt;}
.y2a{bottom:123.547067pt;}
.y66{bottom:130.918987pt;}
.y29{bottom:132.907067pt;}
.y43{bottom:138.907067pt;}
.y42{bottom:147.623067pt;}
.y8b{bottom:150.698667pt;}
.y65{bottom:163.800427pt;}
.y28{bottom:166.347067pt;}
.y8a{bottom:167.490747pt;}
.y41{bottom:168.987067pt;}
.y40{bottom:178.343227pt;}
.y64{bottom:180.680347pt;}
.y89{bottom:184.370667pt;}
.y27{bottom:184.747067pt;}
.y3f{bottom:200.267067pt;}
.y26{bottom:203.147067pt;}
.y3e{bottom:209.627067pt;}
.y63{bottom:213.473947pt;}
.y88{bottom:217.325307pt;}
.y25{bottom:221.547067pt;}
.y62{bottom:230.353867pt;}
.y87{bottom:234.205227pt;}
.y24{bottom:239.947067pt;}
.y61{bottom:247.233787pt;}
.y23{bottom:258.347067pt;}
.y60{bottom:264.113707pt;}
.y86{bottom:266.998827pt;}
.y22{bottom:276.275387pt;}
.y5f{bottom:280.993627pt;}
.y85{bottom:283.878747pt;}
.y21{bottom:293.155307pt;}
.y5e{bottom:297.785707pt;}
.y20{bottom:310.035227pt;}
.y84{bottom:316.760187pt;}
.y1f{bottom:326.915147pt;}
.y5d{bottom:330.667147pt;}
.y83{bottom:333.640107pt;}
.y1e{bottom:343.795067pt;}
.y3d{bottom:344.995147pt;}
.y5c{bottom:347.547067pt;}
.y1d{bottom:360.587147pt;}
.y3c{bottom:361.787227pt;}
.y82{bottom:366.521547pt;}
.y1c{bottom:377.467067pt;}
.y3b{bottom:378.667147pt;}
.y5b{bottom:381.227067pt;}
.y81{bottom:383.401467pt;}
.y3a{bottom:395.555360pt;}
.y1b{bottom:399.707067pt;}
.y80{bottom:400.281387pt;}
.y39{bottom:412.435280pt;}
.y7f{bottom:417.073467pt;}
.y5a{bottom:417.872267pt;}
.y38{bottom:429.315200pt;}
.y59{bottom:434.752187pt;}
.y1a{bottom:439.227067pt;}
.y37{bottom:446.107280pt;}
.y7e{bottom:449.867067pt;}
.y19{bottom:457.315067pt;}
.y36{bottom:462.987227pt;}
.y58{bottom:467.633627pt;}
.y18{bottom:474.194987pt;}
.y35{bottom:479.867147pt;}
.y7d{bottom:483.627067pt;}
.y57{bottom:484.513547pt;}
.y17{bottom:490.987067pt;}
.y34{bottom:496.747227pt;}
.y16{bottom:513.227067pt;}
.y33{bottom:513.627147pt;}
.y56{bottom:517.307147pt;}
.y7c{bottom:520.292027pt;}
.y32{bottom:530.507067pt;}
.y55{bottom:534.187067pt;}
.y7b{bottom:537.171947pt;}
.y31{bottom:547.787067pt;}
.y9e{bottom:548.589867pt;}
.y15{bottom:552.827067pt;}
.y7a{bottom:554.051867pt;}
.y30{bottom:562.507067pt;}
.y54{bottom:567.947067pt;}
.y14{bottom:570.835307pt;}
.y79{bottom:586.845467pt;}
.y13{bottom:587.715227pt;}
.y9d{bottom:589.067067pt;}
.y12{bottom:604.507307pt;}
.y53{bottom:604.590667pt;}
.y78{bottom:619.726907pt;}
.y11{bottom:621.387227pt;}
.y9c{bottom:628.265627pt;}
.y77{bottom:636.518987pt;}
.y52{bottom:637.384267pt;}
.y10{bottom:638.267147pt;}
.y76{bottom:653.398907pt;}
.y51{bottom:654.264187pt;}
.yf{bottom:655.147067pt;}
.y9b{bottom:661.147067pt;}
.ye{bottom:677.304427pt;}
.y75{bottom:686.353547pt;}
.y50{bottom:687.145627pt;}
.y9a{bottom:694.747067pt;}
.y74{bottom:703.233467pt;}
.yd{bottom:717.867067pt;}
.y4f{bottom:720.027067pt;}
.y99{bottom:731.467067pt;}
.y73{bottom:736.027067pt;}
.y4e{bottom:753.707067pt;}
.y9{bottom:757.867067pt;}
.y98{bottom:765.147200pt;}
.y72{bottom:769.707067pt;}
.yc{bottom:775.459227pt;}
.y4d{bottom:790.451867pt;}
.yb{bottom:790.743067pt;}
.y97{bottom:801.785627pt;}
.ya{bottom:806.107067pt;}
.y71{bottom:806.439947pt;}
.y4c{bottom:823.245467pt;}
.y96{bottom:834.667067pt;}
.y70{bottom:839.233547pt;}
.y8{bottom:840.023227pt;}
.y4b{bottom:840.037547pt;}
.y7{bottom:855.303067pt;}
.y6f{bottom:856.025627pt;}
.y95{bottom:868.267067pt;}
.y6{bottom:870.663067pt;}
.y4a{bottom:872.918987pt;}
.y5{bottom:886.027067pt;}
.y6e{bottom:888.907067pt;}
.y49{bottom:889.798907pt;}
.y94{bottom:904.985867pt;}
.y48{bottom:906.678827pt;}
.y4{bottom:906.904427pt;}
.y93{bottom:921.865787pt;}
.y6d{bottom:922.667067pt;}
.y47{bottom:939.633467pt;}
.y3{bottom:947.467067pt;}
.y92{bottom:954.747227pt;}
.y6c{bottom:959.305787pt;}
.y91{bottom:971.627147pt;}
.y46{bottom:972.427067pt;}
.y6b{bottom:976.185707pt;}
.y2{bottom:983.387067pt;}
.y90{bottom:988.507067pt;}
.y2f{bottom:996.267067pt;}
.y45{bottom:1006.107067pt;}
.y6a{bottom:1009.067147pt;}
.y2e{bottom:1019.627067pt;}
.y8f{bottom:1022.107067pt;}
.y69{bottom:1025.947067pt;}
.y1{bottom:1063.067067pt;}
.hd{height:33.918750pt;}
.h9{height:36.045000pt;}
.h1{height:55.736250pt;}
.ha{height:55.751610pt;}
.h4{height:55.752250pt;}
.h5{height:55.767610pt;}
.h7{height:61.076250pt;}
.h2{height:62.812500pt;}
.hc{height:65.576110pt;}
.hb{height:65.608110pt;}
.h6{height:65.608750pt;}
.h8{height:66.750000pt;}
.he{height:77.763750pt;}
.h3{height:89.111250pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x12{left:84.480000pt;}
.x13{left:108.480000pt;}
.x14{left:155.752560pt;}
.x3{left:186.720000pt;}
.x6{left:194.476000pt;}
.x7{left:203.365360pt;}
.x4{left:238.325760pt;}
.x10{left:290.800000pt;}
.x8{left:295.840000pt;}
.xd{left:323.440000pt;}
.xb{left:325.030560pt;}
.x9{left:329.760000pt;}
.xc{left:334.636960pt;}
.xe{left:343.200000pt;}
.xf{left:363.439333pt;}
.xa{left:393.594080pt;}
.x5{left:396.880000pt;}
.x2{left:525.680000pt;}
.x11{left:636.880000pt;}
}




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