
    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_50b776650acabbec59f6e1b5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_de5fc84b3bddaa3162ad0185.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_223c10179ba7d346f90ccaa7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ac691833210f6756631c5d9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_898024f9d1f6d63819d0912c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932617;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_aaf16d99839ee31c1097f853.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_4a1ead2ea9bc76db1dcf0553.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_1a43484e0a0c73c529712c27.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3364701b69e16ed2ca007ae6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.ls8{letter-spacing:-0.684000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.252720px;}
.ls4{letter-spacing:0.350640px;}
.lsa{letter-spacing:0.360000px;}
.ls0{letter-spacing:4.320000px;}
.ls7{letter-spacing:4.500000px;}
.lsd{letter-spacing:17.280000px;}
.lsc{letter-spacing:33.984000px;}
.ls6{letter-spacing:163.956000px;}
.ls1{letter-spacing:427.116000px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.312720px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-4.198560px;}
._24{margin-left:-2.835360px;}
._0{margin-left:-1.179360px;}
._4{width:1.080000px;}
._13{width:2.423760px;}
._1{width:4.368000px;}
._16{width:5.981040px;}
._23{width:7.160400px;}
._1e{width:8.171280px;}
._1d{width:9.182160px;}
._9{width:10.260000px;}
._2d{width:11.288160px;}
._d{width:12.383280px;}
._11{width:13.394160px;}
._2{width:15.192000px;}
._8{width:16.968000px;}
._b{width:18.259440px;}
._12{width:19.648560px;}
._17{width:22.492080px;}
._19{width:23.565360px;}
._18{width:24.598080px;}
._2f{width:25.804560px;}
._21{width:27.226800px;}
._3{width:28.296000px;}
._5{width:29.316000px;}
._f{width:30.831840px;}
._1f{width:32.011200px;}
._e{width:33.780240px;}
._14{width:35.817120px;}
._2e{width:36.866880px;}
._7{width:38.115360px;}
._6{width:39.168000px;}
._2c{width:41.446080px;}
._22{width:43.215120px;}
._27{width:46.416240px;}
._20{width:47.427120px;}
._15{width:49.738320px;}
._10{width:52.481520px;}
._c{width:53.659440px;}
._a{width:54.840240px;}
._2a{width:66.802320px;}
._2b{width:67.813200px;}
._1b{width:71.856720px;}
._1a{width:73.625760px;}
._29{width:98.308080px;}
._28{width:99.571680px;}
._26{width:115.577280px;}
._25{width:164.083440px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y2{bottom:31.176000px;}
.y2e{bottom:77.616000px;}
.y2d{bottom:82.836000px;}
.y2c{bottom:96.156000px;}
.y52{bottom:106.776000px;}
.y55{bottom:111.996000px;}
.y51{bottom:124.056000px;}
.y54{bottom:125.316000px;}
.y50{bottom:129.276000px;}
.y4f{bottom:142.596000px;}
.y2b{bottom:147.996000px;}
.y2a{bottom:175.710000px;}
.y4e{bottom:180.210000px;}
.y29{bottom:203.430000px;}
.y4d{bottom:207.930000px;}
.y28{bottom:231.330000px;}
.y4c{bottom:235.650000px;}
.y26{bottom:259.050000px;}
.y4b{bottom:263.550000px;}
.y27{bottom:266.610000px;}
.y25{bottom:286.815000px;}
.y4a{bottom:291.315000px;}
.y24{bottom:314.535000px;}
.y49{bottom:319.035000px;}
.y23{bottom:342.435000px;}
.y48{bottom:346.935000px;}
.y53{bottom:354.495000px;}
.y22{bottom:370.155000px;}
.y47{bottom:374.655000px;}
.y21{bottom:397.875000px;}
.y46{bottom:402.375000px;}
.y20{bottom:425.595000px;}
.y45{bottom:430.095000px;}
.y1f{bottom:453.495000px;}
.y44{bottom:457.995000px;}
.y1e{bottom:481.215000px;}
.y43{bottom:485.715000px;}
.y1d{bottom:508.935000px;}
.y42{bottom:513.435000px;}
.y1c{bottom:536.835000px;}
.y41{bottom:541.155000px;}
.y1b{bottom:564.585000px;}
.y40{bottom:569.085000px;}
.y1a{bottom:592.305000px;}
.y3f{bottom:596.805000px;}
.y19{bottom:620.025000px;}
.y3e{bottom:624.525000px;}
.y18{bottom:647.925000px;}
.y3d{bottom:652.425000px;}
.y5d{bottom:658.725000px;}
.y17{bottom:670.785000px;}
.y3c{bottom:680.145000px;}
.y16{bottom:688.785000px;}
.y5c{bottom:694.725000px;}
.y3b{bottom:707.865000px;}
.y15{bottom:709.485000px;}
.y5b{bottom:718.305000px;}
.y14{bottom:730.005000px;}
.y3a{bottom:735.585000px;}
.y5a{bottom:739.005000px;}
.y13{bottom:750.705000px;}
.y59{bottom:759.705000px;}
.y39{bottom:763.485000px;}
.y12{bottom:771.405000px;}
.y58{bottom:780.405000px;}
.y38{bottom:791.205000px;}
.y11{bottom:792.105000px;}
.y57{bottom:801.105000px;}
.y10{bottom:812.805000px;}
.y36{bottom:818.925000px;}
.y37{bottom:826.485000px;}
.y56{bottom:827.205000px;}
.yf{bottom:833.505000px;}
.y35{bottom:846.825000px;}
.ye{bottom:854.250000px;}
.y34{bottom:874.590000px;}
.yd{bottom:874.950000px;}
.yc{bottom:895.650000px;}
.y33{bottom:902.310000px;}
.yb{bottom:916.350000px;}
.y32{bottom:930.030000px;}
.ya{bottom:937.050000px;}
.y9{bottom:957.750000px;}
.y31{bottom:957.930000px;}
.y8{bottom:978.450000px;}
.y30{bottom:985.650000px;}
.y7{bottom:998.430000px;}
.y2f{bottom:1013.370000px;}
.y6{bottom:1016.970000px;}
.y5{bottom:1041.270000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.hc{height:38.158594px;}
.he{height:47.344922px;}
.h9{height:51.609375px;}
.hb{height:52.998047px;}
.hd{height:58.651172px;}
.ha{height:58.819922px;}
.h5{height:60.226875px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.hf{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.x11{left:89.855987px;}
.x18{left:117.035987px;}
.xd{left:127.475987px;}
.x16{left:132.335987px;}
.x4{left:143.855987px;}
.x9{left:250.949987px;}
.x5{left:263.729987px;}
.x10{left:301.034987px;}
.xa{left:341.174987px;}
.x7{left:345.674987px;}
.x8{left:351.074987px;}
.x17{left:362.954987px;}
.x2{left:409.035000px;}
.xe{left:430.454973px;}
.xf{left:437.294987px;}
.x6{left:446.474987px;}
.xc{left:461.774987px;}
.xb{left:467.714987px;}
.x12{left:517.784973px;}
.x13{left:524.624987px;}
.x14{left:753.449973px;}
.x15{left:760.289987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.608000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.224640pt;}
.ls4{letter-spacing:0.311680pt;}
.lsa{letter-spacing:0.320000pt;}
.ls0{letter-spacing:3.840000pt;}
.ls7{letter-spacing:4.000000pt;}
.lsd{letter-spacing:15.360000pt;}
.lsc{letter-spacing:30.208000pt;}
.ls6{letter-spacing:145.738667pt;}
.ls1{letter-spacing:379.658667pt;}
.ws4{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.944640pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-3.732053pt;}
._24{margin-left:-2.520320pt;}
._0{margin-left:-1.048320pt;}
._4{width:0.960000pt;}
._13{width:2.154453pt;}
._1{width:3.882667pt;}
._16{width:5.316480pt;}
._23{width:6.364800pt;}
._1e{width:7.263360pt;}
._1d{width:8.161920pt;}
._9{width:9.120000pt;}
._2d{width:10.033920pt;}
._d{width:11.007360pt;}
._11{width:11.905920pt;}
._2{width:13.504000pt;}
._8{width:15.082667pt;}
._b{width:16.230613pt;}
._12{width:17.465387pt;}
._17{width:19.992960pt;}
._19{width:20.946987pt;}
._18{width:21.864960pt;}
._2f{width:22.937387pt;}
._21{width:24.201600pt;}
._3{width:25.152000pt;}
._5{width:26.058667pt;}
._f{width:27.406080pt;}
._1f{width:28.454400pt;}
._e{width:30.026880pt;}
._14{width:31.837440pt;}
._2e{width:32.770560pt;}
._7{width:33.880320pt;}
._6{width:34.816000pt;}
._2c{width:36.840960pt;}
._22{width:38.413440pt;}
._27{width:41.258880pt;}
._20{width:42.157440pt;}
._15{width:44.211840pt;}
._10{width:46.650240pt;}
._c{width:47.697280pt;}
._a{width:48.746880pt;}
._2a{width:59.379840pt;}
._2b{width:60.278400pt;}
._1b{width:63.872640pt;}
._1a{width:65.445120pt;}
._29{width:87.384960pt;}
._28{width:88.508160pt;}
._26{width:102.735360pt;}
._25{width:145.851947pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y2{bottom:27.712000pt;}
.y2e{bottom:68.992000pt;}
.y2d{bottom:73.632000pt;}
.y2c{bottom:85.472000pt;}
.y52{bottom:94.912000pt;}
.y55{bottom:99.552000pt;}
.y51{bottom:110.272000pt;}
.y54{bottom:111.392000pt;}
.y50{bottom:114.912000pt;}
.y4f{bottom:126.752000pt;}
.y2b{bottom:131.552000pt;}
.y2a{bottom:156.186667pt;}
.y4e{bottom:160.186667pt;}
.y29{bottom:180.826667pt;}
.y4d{bottom:184.826667pt;}
.y28{bottom:205.626667pt;}
.y4c{bottom:209.466667pt;}
.y26{bottom:230.266667pt;}
.y4b{bottom:234.266667pt;}
.y27{bottom:236.986667pt;}
.y25{bottom:254.946667pt;}
.y4a{bottom:258.946667pt;}
.y24{bottom:279.586667pt;}
.y49{bottom:283.586667pt;}
.y23{bottom:304.386667pt;}
.y48{bottom:308.386667pt;}
.y53{bottom:315.106667pt;}
.y22{bottom:329.026667pt;}
.y47{bottom:333.026667pt;}
.y21{bottom:353.666667pt;}
.y46{bottom:357.666667pt;}
.y20{bottom:378.306667pt;}
.y45{bottom:382.306667pt;}
.y1f{bottom:403.106667pt;}
.y44{bottom:407.106667pt;}
.y1e{bottom:427.746667pt;}
.y43{bottom:431.746667pt;}
.y1d{bottom:452.386667pt;}
.y42{bottom:456.386667pt;}
.y1c{bottom:477.186667pt;}
.y41{bottom:481.026667pt;}
.y1b{bottom:501.853333pt;}
.y40{bottom:505.853333pt;}
.y1a{bottom:526.493333pt;}
.y3f{bottom:530.493333pt;}
.y19{bottom:551.133333pt;}
.y3e{bottom:555.133333pt;}
.y18{bottom:575.933333pt;}
.y3d{bottom:579.933333pt;}
.y5d{bottom:585.533333pt;}
.y17{bottom:596.253333pt;}
.y3c{bottom:604.573333pt;}
.y16{bottom:612.253333pt;}
.y5c{bottom:617.533333pt;}
.y3b{bottom:629.213333pt;}
.y15{bottom:630.653333pt;}
.y5b{bottom:638.493333pt;}
.y14{bottom:648.893333pt;}
.y3a{bottom:653.853333pt;}
.y5a{bottom:656.893333pt;}
.y13{bottom:667.293333pt;}
.y59{bottom:675.293333pt;}
.y39{bottom:678.653333pt;}
.y12{bottom:685.693333pt;}
.y58{bottom:693.693333pt;}
.y38{bottom:703.293333pt;}
.y11{bottom:704.093333pt;}
.y57{bottom:712.093333pt;}
.y10{bottom:722.493333pt;}
.y36{bottom:727.933333pt;}
.y37{bottom:734.653333pt;}
.y56{bottom:735.293333pt;}
.yf{bottom:740.893333pt;}
.y35{bottom:752.733333pt;}
.ye{bottom:759.333333pt;}
.y34{bottom:777.413333pt;}
.yd{bottom:777.733333pt;}
.yc{bottom:796.133333pt;}
.y33{bottom:802.053333pt;}
.yb{bottom:814.533333pt;}
.y32{bottom:826.693333pt;}
.ya{bottom:832.933333pt;}
.y9{bottom:851.333333pt;}
.y31{bottom:851.493333pt;}
.y8{bottom:869.733333pt;}
.y30{bottom:876.133333pt;}
.y7{bottom:887.493333pt;}
.y2f{bottom:900.773333pt;}
.y6{bottom:903.973333pt;}
.y5{bottom:925.573333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.hc{height:33.918750pt;}
.he{height:42.084375pt;}
.h9{height:45.875000pt;}
.hb{height:47.109375pt;}
.hd{height:52.134375pt;}
.ha{height:52.284375pt;}
.h5{height:53.535000pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.hf{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.x11{left:79.871988pt;}
.x18{left:104.031988pt;}
.xd{left:113.311988pt;}
.x16{left:117.631988pt;}
.x4{left:127.871988pt;}
.x9{left:223.066655pt;}
.x5{left:234.426655pt;}
.x10{left:267.586655pt;}
.xa{left:303.266655pt;}
.x7{left:307.266655pt;}
.x8{left:312.066655pt;}
.x17{left:322.626655pt;}
.x2{left:363.586667pt;}
.xe{left:382.626643pt;}
.xf{left:388.706655pt;}
.x6{left:396.866655pt;}
.xc{left:410.466655pt;}
.xb{left:415.746655pt;}
.x12{left:460.253310pt;}
.x13{left:466.333322pt;}
.x14{left:669.733310pt;}
.x15{left:675.813322pt;}
}




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