
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aaf0a81f1043dae310468198.woff')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_6701883849b9fba40471d386.woff')format("woff");}.ff3{font-family:ff3;line-height:0.936035;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_da805a824cea58575d711f3a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c1dc24c0c743735ff8cd0716.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_87b866c8415256f39ba4d626.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0d99bee1757f64846a4e4584.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_23c37c605fedd512ede219e7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_be711815c87236d84d3e3a45.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_657bc3c53f6d988ae99b478e.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9a5419799730efbfb0b07506.woff')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.174000px;}
.ls11{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.773280px;}
.lse{letter-spacing:2.160000px;}
.ls7{letter-spacing:13.680000px;}
.ls1{letter-spacing:17.280000px;}
.ls9{letter-spacing:24.480000px;}
.ls0{letter-spacing:25.200000px;}
.ls8{letter-spacing:26.640000px;}
.ls2{letter-spacing:41.760000px;}
.ls10{letter-spacing:53.424000px;}
.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;}
}
.ws0{word-spacing:-21.222960px;}
.ws5{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws4{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-2.196000px;}
._0{margin-left:-1.152000px;}
._1{width:1.344000px;}
._19{width:2.628000px;}
._12{width:3.744000px;}
._13{width:5.076000px;}
._1b{width:6.120000px;}
._1d{width:7.632000px;}
._14{width:9.000000px;}
._15{width:10.068000px;}
._9{width:11.088000px;}
._a{width:12.732000px;}
._e{width:13.776000px;}
._6{width:14.904000px;}
._5{width:15.984000px;}
._22{width:19.032000px;}
._10{width:20.376000px;}
._f{width:22.056000px;}
._21{width:23.088000px;}
._b{width:24.264000px;}
._c{width:25.632000px;}
._4{width:26.640000px;}
._3{width:27.828000px;}
._1e{width:29.952000px;}
._11{width:31.320000px;}
._1a{width:32.436000px;}
._1f{width:33.780000px;}
._1c{width:34.872000px;}
._20{width:36.852000px;}
._8{width:38.232000px;}
._7{width:39.312000px;}
._18{width:41.040000px;}
._16{width:42.192000px;}
._17{width:43.200000px;}
._24{width:44.232000px;}
._23{width:45.432000px;}
._d{width:49.896000px;}
._25{width:76.584000px;}
._26{width:77.808000px;}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(33,37,41);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(204,0,102);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:48.240000px;}
.y6{bottom:68.580000px;}
.y5{bottom:92.340000px;}
.y34{bottom:111.600000px;}
.y33{bottom:116.820000px;}
.y4a{bottom:128.880000px;}
.y32{bottom:132.660000px;}
.y49{bottom:146.016000px;}
.y54{bottom:149.796000px;}
.y48{bottom:151.230000px;}
.y31{bottom:158.790000px;}
.y47{bottom:163.290000px;}
.y53{bottom:167.070000px;}
.y46{bottom:168.510000px;}
.y52{bottom:172.470000px;}
.y45{bottom:180.570000px;}
.y30{bottom:182.550000px;}
.y51{bottom:205.230000px;}
.y2f{bottom:206.490000px;}
.y50{bottom:210.450000px;}
.y44{bottom:218.730000px;}
.y4f{bottom:226.470000px;}
.y2e{bottom:230.250000px;}
.y43{bottom:236.010000px;}
.y42{bottom:241.410000px;}
.y2d{bottom:254.010000px;}
.y2c{bottom:277.770000px;}
.y41{bottom:278.310000px;}
.y4e{bottom:284.610000px;}
.y2b{bottom:301.710000px;}
.y2a{bottom:325.470000px;}
.y29{bottom:349.230000px;}
.y28{bottom:372.990000px;}
.y27{bottom:396.975000px;}
.y26{bottom:420.735000px;}
.y4d{bottom:444.135000px;}
.y25{bottom:444.495000px;}
.y4c{bottom:467.895000px;}
.y24{bottom:468.255000px;}
.y23{bottom:492.195000px;}
.y22{bottom:515.955000px;}
.y20{bottom:539.715000px;}
.y40{bottom:546.195000px;}
.y21{bottom:546.555000px;}
.y1f{bottom:563.475000px;}
.y1e{bottom:587.235000px;}
.y1d{bottom:611.175000px;}
.y1c{bottom:634.935000px;}
.y1b{bottom:658.725000px;}
.y1a{bottom:682.485000px;}
.y57{bottom:704.265000px;}
.y19{bottom:706.425000px;}
.y56{bottom:729.465000px;}
.y3f{bottom:730.005000px;}
.y18{bottom:730.185000px;}
.y3e{bottom:753.585000px;}
.y17{bottom:753.945000px;}
.y3d{bottom:777.345000px;}
.y16{bottom:777.705000px;}
.y3c{bottom:801.285000px;}
.y15{bottom:801.645000px;}
.y14{bottom:825.405000px;}
.y4b{bottom:832.245000px;}
.y13{bottom:849.165000px;}
.y12{bottom:872.925000px;}
.y3b{bottom:879.765000px;}
.y11{bottom:896.910000px;}
.y10{bottom:920.670000px;}
.y55{bottom:944.070000px;}
.yf{bottom:944.430000px;}
.ye{bottom:967.830000px;}
.y3a{bottom:968.190000px;}
.yd{bottom:992.130000px;}
.yc{bottom:1015.890000px;}
.yb{bottom:1039.290000px;}
.y38{bottom:1039.650000px;}
.y39{bottom:1045.590000px;}
.ya{bottom:1063.050000px;}
.y37{bottom:1063.410000px;}
.y9{bottom:1086.810000px;}
.y36{bottom:1087.170000px;}
.y8{bottom:1110.750000px;}
.y35{bottom:1111.110000px;}
.y4{bottom:1131.630000px;}
.y3{bottom:1152.360000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1194.300000px;}
.hb{height:38.158594px;}
.hd{height:47.321367px;}
.ha{height:47.344922px;}
.h9{height:50.273438px;}
.h5{height:50.800781px;}
.h8{height:51.609375px;}
.hc{height:58.651172px;}
.h4{height:63.673594px;}
.h2{height:65.884219px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.hf{height:71.613281px;}
.h3{height:72.562500px;}
.he{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:117.035987px;}
.xf{left:121.895987px;}
.x1a{left:138.275987px;}
.x8{left:141.515987px;}
.x5{left:155.369987px;}
.x6{left:159.689987px;}
.xb{left:170.129987px;}
.x2{left:185.249987px;}
.x15{left:246.449973px;}
.x16{left:252.569987px;}
.xa{left:322.454987px;}
.x17{left:328.574987px;}
.xe{left:333.074987px;}
.x7{left:336.314987px;}
.x9{left:407.954987px;}
.x10{left:428.114987px;}
.x4{left:429.554987px;}
.x11{left:452.084973px;}
.x12{left:458.204987px;}
.x3{left:473.144987px;}
.x13{left:728.069973px;}
.x14{left:734.189987px;}
.xc{left:736.889973px;}
.xd{left:743.009987px;}
.x18{left:771.809973px;}
.x19{left:777.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.154667pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.687360pt;}
.lse{letter-spacing:1.920000pt;}
.ls7{letter-spacing:12.160000pt;}
.ls1{letter-spacing:15.360000pt;}
.ls9{letter-spacing:21.760000pt;}
.ls0{letter-spacing:22.400000pt;}
.ls8{letter-spacing:23.680000pt;}
.ls2{letter-spacing:37.120000pt;}
.ls10{letter-spacing:47.488000pt;}
.ws0{word-spacing:-18.864853pt;}
.ws5{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-1.952000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.194667pt;}
._19{width:2.336000pt;}
._12{width:3.328000pt;}
._13{width:4.512000pt;}
._1b{width:5.440000pt;}
._1d{width:6.784000pt;}
._14{width:8.000000pt;}
._15{width:8.949333pt;}
._9{width:9.856000pt;}
._a{width:11.317333pt;}
._e{width:12.245333pt;}
._6{width:13.248000pt;}
._5{width:14.208000pt;}
._22{width:16.917333pt;}
._10{width:18.112000pt;}
._f{width:19.605333pt;}
._21{width:20.522667pt;}
._b{width:21.568000pt;}
._c{width:22.784000pt;}
._4{width:23.680000pt;}
._3{width:24.736000pt;}
._1e{width:26.624000pt;}
._11{width:27.840000pt;}
._1a{width:28.832000pt;}
._1f{width:30.026667pt;}
._1c{width:30.997333pt;}
._20{width:32.757333pt;}
._8{width:33.984000pt;}
._7{width:34.944000pt;}
._18{width:36.480000pt;}
._16{width:37.504000pt;}
._17{width:38.400000pt;}
._24{width:39.317333pt;}
._23{width:40.384000pt;}
._d{width:44.352000pt;}
._25{width:68.074667pt;}
._26{width:69.162667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:42.880000pt;}
.y6{bottom:60.960000pt;}
.y5{bottom:82.080000pt;}
.y34{bottom:99.200000pt;}
.y33{bottom:103.840000pt;}
.y4a{bottom:114.560000pt;}
.y32{bottom:117.920000pt;}
.y49{bottom:129.792000pt;}
.y54{bottom:133.152000pt;}
.y48{bottom:134.426667pt;}
.y31{bottom:141.146667pt;}
.y47{bottom:145.146667pt;}
.y53{bottom:148.506667pt;}
.y46{bottom:149.786667pt;}
.y52{bottom:153.306667pt;}
.y45{bottom:160.506667pt;}
.y30{bottom:162.266667pt;}
.y51{bottom:182.426667pt;}
.y2f{bottom:183.546667pt;}
.y50{bottom:187.066667pt;}
.y44{bottom:194.426667pt;}
.y4f{bottom:201.306667pt;}
.y2e{bottom:204.666667pt;}
.y43{bottom:209.786667pt;}
.y42{bottom:214.586667pt;}
.y2d{bottom:225.786667pt;}
.y2c{bottom:246.906667pt;}
.y41{bottom:247.386667pt;}
.y4e{bottom:252.986667pt;}
.y2b{bottom:268.186667pt;}
.y2a{bottom:289.306667pt;}
.y29{bottom:310.426667pt;}
.y28{bottom:331.546667pt;}
.y27{bottom:352.866667pt;}
.y26{bottom:373.986667pt;}
.y4d{bottom:394.786667pt;}
.y25{bottom:395.106667pt;}
.y4c{bottom:415.906667pt;}
.y24{bottom:416.226667pt;}
.y23{bottom:437.506667pt;}
.y22{bottom:458.626667pt;}
.y20{bottom:479.746667pt;}
.y40{bottom:485.506667pt;}
.y21{bottom:485.826667pt;}
.y1f{bottom:500.866667pt;}
.y1e{bottom:521.986667pt;}
.y1d{bottom:543.266667pt;}
.y1c{bottom:564.386667pt;}
.y1b{bottom:585.533333pt;}
.y1a{bottom:606.653333pt;}
.y57{bottom:626.013333pt;}
.y19{bottom:627.933333pt;}
.y56{bottom:648.413333pt;}
.y3f{bottom:648.893333pt;}
.y18{bottom:649.053333pt;}
.y3e{bottom:669.853333pt;}
.y17{bottom:670.173333pt;}
.y3d{bottom:690.973333pt;}
.y16{bottom:691.293333pt;}
.y3c{bottom:712.253333pt;}
.y15{bottom:712.573333pt;}
.y14{bottom:733.693333pt;}
.y4b{bottom:739.773333pt;}
.y13{bottom:754.813333pt;}
.y12{bottom:775.933333pt;}
.y3b{bottom:782.013333pt;}
.y11{bottom:797.253333pt;}
.y10{bottom:818.373333pt;}
.y55{bottom:839.173333pt;}
.yf{bottom:839.493333pt;}
.ye{bottom:860.293333pt;}
.y3a{bottom:860.613333pt;}
.yd{bottom:881.893333pt;}
.yc{bottom:903.013333pt;}
.yb{bottom:923.813333pt;}
.y38{bottom:924.133333pt;}
.y39{bottom:929.413333pt;}
.ya{bottom:944.933333pt;}
.y37{bottom:945.253333pt;}
.y9{bottom:966.053333pt;}
.y36{bottom:966.373333pt;}
.y8{bottom:987.333333pt;}
.y35{bottom:987.653333pt;}
.y4{bottom:1005.893333pt;}
.y3{bottom:1024.320000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1061.600000pt;}
.hb{height:33.918750pt;}
.hd{height:42.063437pt;}
.ha{height:42.084375pt;}
.h9{height:44.687500pt;}
.h5{height:45.156250pt;}
.h8{height:45.875000pt;}
.hc{height:52.134375pt;}
.h4{height:56.598750pt;}
.h2{height:58.563750pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.hf{height:63.656250pt;}
.h3{height:64.500000pt;}
.he{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:104.031988pt;}
.xf{left:108.351988pt;}
.x1a{left:122.911988pt;}
.x8{left:125.791988pt;}
.x5{left:138.106655pt;}
.x6{left:141.946655pt;}
.xb{left:151.226655pt;}
.x2{left:164.666655pt;}
.x15{left:219.066643pt;}
.x16{left:224.506655pt;}
.xa{left:286.626655pt;}
.x17{left:292.066655pt;}
.xe{left:296.066655pt;}
.x7{left:298.946655pt;}
.x9{left:362.626655pt;}
.x10{left:380.546655pt;}
.x4{left:381.826655pt;}
.x11{left:401.853310pt;}
.x12{left:407.293322pt;}
.x3{left:420.573322pt;}
.x13{left:647.173310pt;}
.x14{left:652.613322pt;}
.xc{left:655.013310pt;}
.xd{left:660.453322pt;}
.x18{left:686.053310pt;}
.x19{left:691.493322pt;}
}




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