
    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_90c314b86d9bbdecd80f1ef9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_c393edab39bc1f3aef95c857.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_98144e1ffd4fec08f2f875d8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_88f73715da87137a980b799e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_71557e663e4190ed39195edb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_dc747d879d1175f92bc8137f.woff')format("woff");}.ff6{font-family:ff6;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-7.380000px;}
.lse{letter-spacing:-3.864000px;}
.ls3{letter-spacing:-3.258000px;}
.lsc{letter-spacing:-1.332000px;}
.ls10{letter-spacing:-1.134000px;}
.lsd{letter-spacing:-1.026000px;}
.ls15{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.414600px;}
.ls14{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.178800px;}
.lsf{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.109200px;}
.ls16{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.089400px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.209280px;}
.ls4{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.541440px;}
.lsb{letter-spacing:3.185280px;}
.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:-66.240000px;}
.ws1{word-spacing:-20.160720px;}
.wsa{word-spacing:-18.720120px;}
.ws2{word-spacing:-18.676920px;}
.ws5{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.305520px;}
.wsb{word-spacing:-18.262320px;}
.wsd{word-spacing:-18.152520px;}
.wsf{word-spacing:-18.109320px;}
.wsc{word-spacing:-18.000120px;}
.ws9{word-spacing:-17.388720px;}
.ws8{word-spacing:-17.082720px;}
.ws11{word-spacing:-16.613280px;}
.ws10{word-spacing:-16.506480px;}
.ws3{word-spacing:-11.609280px;}
.ws4{word-spacing:-11.430480px;}
.wse{word-spacing:-11.034720px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-7.352640px;}
._3{margin-left:-5.699040px;}
._1{margin-left:-4.127760px;}
._a{margin-left:-2.186880px;}
._0{margin-left:-1.179360px;}
._2{width:1.649760px;}
._9{width:2.752800px;}
._12{width:4.057920px;}
._d{width:5.137440px;}
._8{width:6.331200px;}
._b{width:8.015040px;}
._c{width:9.142080px;}
._11{width:10.460640px;}
._5{width:11.592000px;}
._6{width:12.878880px;}
._e{width:14.771520px;}
._f{width:16.460880px;}
._7{width:19.874400px;}
._10{width:21.258240px;}
._4{width:845.705280px;}
._14{width:847.506720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:17.820000px;}
.y7a{bottom:33.480000px;}
.y2{bottom:57.420000px;}
.y1{bottom:77.616000px;}
.y4e{bottom:106.236000px;}
.y21{bottom:108.936000px;}
.y4d{bottom:128.196000px;}
.y20{bottom:137.196000px;}
.y4c{bottom:149.976000px;}
.y1f{bottom:165.090000px;}
.y4b{bottom:171.750000px;}
.y1e{bottom:193.170000px;}
.y4a{bottom:193.710000px;}
.y49{bottom:215.490000px;}
.y1d{bottom:221.070000px;}
.y48{bottom:237.270000px;}
.y1c{bottom:248.970000px;}
.y73{bottom:270.210000px;}
.y47{bottom:273.990000px;}
.y1b{bottom:277.050000px;}
.y46{bottom:295.950000px;}
.y72{bottom:299.010000px;}
.y1a{bottom:304.950000px;}
.y45{bottom:317.730000px;}
.y71{bottom:318.810000px;}
.y70{bottom:338.655000px;}
.y44{bottom:339.555000px;}
.y19{bottom:347.655000px;}
.y43{bottom:361.515000px;}
.y6f{bottom:367.455000px;}
.y42{bottom:383.295000px;}
.y18{bottom:385.275000px;}
.y6e{bottom:387.435000px;}
.y41{bottom:405.075000px;}
.y6d{bottom:416.235000px;}
.y40{bottom:426.855000px;}
.y17{bottom:428.835000px;}
.y6c{bottom:445.035000px;}
.y3f{bottom:463.575000px;}
.y6b{bottom:464.835000px;}
.y16{bottom:465.375000px;}
.y6a{bottom:493.635000px;}
.y3e{bottom:500.295000px;}
.y15{bottom:502.275000px;}
.y69{bottom:513.615000px;}
.y3d{bottom:522.435000px;}
.y68{bottom:542.415000px;}
.y3c{bottom:544.215000px;}
.y14{bottom:545.835000px;}
.y67{bottom:562.215000px;}
.y3b{bottom:565.995000px;}
.y3a{bottom:587.775000px;}
.y13{bottom:589.395000px;}
.y66{bottom:591.015000px;}
.y39{bottom:609.585000px;}
.y65{bottom:619.845000px;}
.y38{bottom:631.545000px;}
.y12{bottom:632.805000px;}
.y64{bottom:639.645000px;}
.y37{bottom:653.325000px;}
.y63{bottom:674.925000px;}
.y11{bottom:676.365000px;}
.y36{bottom:689.865000px;}
.y35{bottom:712.005000px;}
.y10{bottom:719.745000px;}
.y34{bottom:733.785000px;}
.y62{bottom:748.545000px;}
.y33{bottom:755.565000px;}
.yf{bottom:756.465000px;}
.y61{bottom:770.505000px;}
.y32{bottom:777.345000px;}
.y79{bottom:778.065000px;}
.y60{bottom:792.465000px;}
.ye{bottom:793.185000px;}
.y31{bottom:799.125000px;}
.y5f{bottom:814.245000px;}
.yd{bottom:830.085000px;}
.y30{bottom:835.845000px;}
.y5e{bottom:836.025000px;}
.y2f{bottom:857.805000px;}
.yc{bottom:866.805000px;}
.y5d{bottom:872.790000px;}
.y2e{bottom:879.630000px;}
.y5c{bottom:894.750000px;}
.y2d{bottom:901.590000px;}
.yb{bottom:912.750000px;}
.y5b{bottom:916.530000px;}
.y2c{bottom:923.370000px;}
.y5a{bottom:938.310000px;}
.y2b{bottom:945.150000px;}
.ya{bottom:946.770000px;}
.y59{bottom:960.090000px;}
.y2a{bottom:966.930000px;}
.y9{bottom:974.490000px;}
.y58{bottom:982.050000px;}
.y29{bottom:988.890000px;}
.y8{bottom:1008.330000px;}
.y28{bottom:1010.670000px;}
.y57{bottom:1018.590000px;}
.y27{bottom:1032.450000px;}
.y7{bottom:1036.050000px;}
.y56{bottom:1040.550000px;}
.y26{bottom:1054.230000px;}
.y78{bottom:1061.790000px;}
.y55{bottom:1062.510000px;}
.y6{bottom:1076.010000px;}
.y54{bottom:1084.290000px;}
.y77{bottom:1098.690000px;}
.y53{bottom:1106.070000px;}
.y5{bottom:1109.850000px;}
.y25{bottom:1112.730000px;}
.y52{bottom:1127.850000px;}
.y24{bottom:1134.690000px;}
.y76{bottom:1135.590000px;}
.y4{bottom:1147.680000px;}
.y51{bottom:1149.840000px;}
.y23{bottom:1156.500000px;}
.y75{bottom:1166.040000px;}
.y50{bottom:1171.620000px;}
.y3{bottom:1189.080000px;}
.y22{bottom:1193.220000px;}
.y4f{bottom:1193.400000px;}
.y74{bottom:1194.840000px;}
.h7{height:30.524766px;}
.hf{height:40.605469px;}
.h6{height:42.922699px;}
.hc{height:43.681992px;}
.h8{height:44.324282px;}
.he{height:46.080000px;}
.ha{height:48.418594px;}
.hb{height:54.284766px;}
.hd{height:61.423863px;}
.h2{height:65.884219px;}
.h5{height:68.084282px;}
.h9{height:68.956875px;}
.h4{height:80.949375px;}
.h3{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:643.245000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:53.999987px;}
.x3{left:108.035987px;}
.x1{left:830.849987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-6.560000pt;}
.lse{letter-spacing:-3.434667pt;}
.ls3{letter-spacing:-2.896000pt;}
.lsc{letter-spacing:-1.184000pt;}
.ls10{letter-spacing:-1.008000pt;}
.lsd{letter-spacing:-0.912000pt;}
.ls15{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.368533pt;}
.ls14{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.158933pt;}
.lsf{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.186027pt;}
.ls4{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.481280pt;}
.lsb{letter-spacing:2.831360pt;}
.ws0{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.920640pt;}
.wsa{word-spacing:-16.640107pt;}
.ws2{word-spacing:-16.601707pt;}
.ws5{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.271573pt;}
.wsb{word-spacing:-16.233173pt;}
.wsd{word-spacing:-16.135573pt;}
.wsf{word-spacing:-16.097173pt;}
.wsc{word-spacing:-16.000107pt;}
.ws9{word-spacing:-15.456640pt;}
.ws8{word-spacing:-15.184640pt;}
.ws11{word-spacing:-14.767360pt;}
.ws10{word-spacing:-14.672427pt;}
.ws3{word-spacing:-10.319360pt;}
.ws4{word-spacing:-10.160427pt;}
.wse{word-spacing:-9.808640pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-6.535680pt;}
._3{margin-left:-5.065813pt;}
._1{margin-left:-3.669120pt;}
._a{margin-left:-1.943893pt;}
._0{margin-left:-1.048320pt;}
._2{width:1.466453pt;}
._9{width:2.446933pt;}
._12{width:3.607040pt;}
._d{width:4.566613pt;}
._8{width:5.627733pt;}
._b{width:7.124480pt;}
._c{width:8.126293pt;}
._11{width:9.298347pt;}
._5{width:10.304000pt;}
._6{width:11.447893pt;}
._e{width:13.130240pt;}
._f{width:14.631893pt;}
._7{width:17.666133pt;}
._10{width:18.896213pt;}
._4{width:751.738027pt;}
._14{width:753.339307pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:15.840000pt;}
.y7a{bottom:29.760000pt;}
.y2{bottom:51.040000pt;}
.y1{bottom:68.992000pt;}
.y4e{bottom:94.432000pt;}
.y21{bottom:96.832000pt;}
.y4d{bottom:113.952000pt;}
.y20{bottom:121.952000pt;}
.y4c{bottom:133.312000pt;}
.y1f{bottom:146.746667pt;}
.y4b{bottom:152.666667pt;}
.y1e{bottom:171.706667pt;}
.y4a{bottom:172.186667pt;}
.y49{bottom:191.546667pt;}
.y1d{bottom:196.506667pt;}
.y48{bottom:210.906667pt;}
.y1c{bottom:221.306667pt;}
.y73{bottom:240.186667pt;}
.y47{bottom:243.546667pt;}
.y1b{bottom:246.266667pt;}
.y46{bottom:263.066667pt;}
.y72{bottom:265.786667pt;}
.y1a{bottom:271.066667pt;}
.y45{bottom:282.426667pt;}
.y71{bottom:283.386667pt;}
.y70{bottom:301.026667pt;}
.y44{bottom:301.826667pt;}
.y19{bottom:309.026667pt;}
.y43{bottom:321.346667pt;}
.y6f{bottom:326.626667pt;}
.y42{bottom:340.706667pt;}
.y18{bottom:342.466667pt;}
.y6e{bottom:344.386667pt;}
.y41{bottom:360.066667pt;}
.y6d{bottom:369.986667pt;}
.y40{bottom:379.426667pt;}
.y17{bottom:381.186667pt;}
.y6c{bottom:395.586667pt;}
.y3f{bottom:412.066667pt;}
.y6b{bottom:413.186667pt;}
.y16{bottom:413.666667pt;}
.y6a{bottom:438.786667pt;}
.y3e{bottom:444.706667pt;}
.y15{bottom:446.466667pt;}
.y69{bottom:456.546667pt;}
.y3d{bottom:464.386667pt;}
.y68{bottom:482.146667pt;}
.y3c{bottom:483.746667pt;}
.y14{bottom:485.186667pt;}
.y67{bottom:499.746667pt;}
.y3b{bottom:503.106667pt;}
.y3a{bottom:522.466667pt;}
.y13{bottom:523.906667pt;}
.y66{bottom:525.346667pt;}
.y39{bottom:541.853333pt;}
.y65{bottom:550.973333pt;}
.y38{bottom:561.373333pt;}
.y12{bottom:562.493333pt;}
.y64{bottom:568.573333pt;}
.y37{bottom:580.733333pt;}
.y63{bottom:599.933333pt;}
.y11{bottom:601.213333pt;}
.y36{bottom:613.213333pt;}
.y35{bottom:632.893333pt;}
.y10{bottom:639.773333pt;}
.y34{bottom:652.253333pt;}
.y62{bottom:665.373333pt;}
.y33{bottom:671.613333pt;}
.yf{bottom:672.413333pt;}
.y61{bottom:684.893333pt;}
.y32{bottom:690.973333pt;}
.y79{bottom:691.613333pt;}
.y60{bottom:704.413333pt;}
.ye{bottom:705.053333pt;}
.y31{bottom:710.333333pt;}
.y5f{bottom:723.773333pt;}
.yd{bottom:737.853333pt;}
.y30{bottom:742.973333pt;}
.y5e{bottom:743.133333pt;}
.y2f{bottom:762.493333pt;}
.yc{bottom:770.493333pt;}
.y5d{bottom:775.813333pt;}
.y2e{bottom:781.893333pt;}
.y5c{bottom:795.333333pt;}
.y2d{bottom:801.413333pt;}
.yb{bottom:811.333333pt;}
.y5b{bottom:814.693333pt;}
.y2c{bottom:820.773333pt;}
.y5a{bottom:834.053333pt;}
.y2b{bottom:840.133333pt;}
.ya{bottom:841.573333pt;}
.y59{bottom:853.413333pt;}
.y2a{bottom:859.493333pt;}
.y9{bottom:866.213333pt;}
.y58{bottom:872.933333pt;}
.y29{bottom:879.013333pt;}
.y8{bottom:896.293333pt;}
.y28{bottom:898.373333pt;}
.y57{bottom:905.413333pt;}
.y27{bottom:917.733333pt;}
.y7{bottom:920.933333pt;}
.y56{bottom:924.933333pt;}
.y26{bottom:937.093333pt;}
.y78{bottom:943.813333pt;}
.y55{bottom:944.453333pt;}
.y6{bottom:956.453333pt;}
.y54{bottom:963.813333pt;}
.y77{bottom:976.613333pt;}
.y53{bottom:983.173333pt;}
.y5{bottom:986.533333pt;}
.y25{bottom:989.093333pt;}
.y52{bottom:1002.533333pt;}
.y24{bottom:1008.613333pt;}
.y76{bottom:1009.413333pt;}
.y4{bottom:1020.160000pt;}
.y51{bottom:1022.080000pt;}
.y23{bottom:1028.000000pt;}
.y75{bottom:1036.480000pt;}
.y50{bottom:1041.440000pt;}
.y3{bottom:1056.960000pt;}
.y22{bottom:1060.640000pt;}
.y4f{bottom:1060.800000pt;}
.y74{bottom:1062.080000pt;}
.h7{height:27.133125pt;}
.hf{height:36.093750pt;}
.h6{height:38.153511pt;}
.hc{height:38.828437pt;}
.h8{height:39.399362pt;}
.he{height:40.960000pt;}
.ha{height:43.038750pt;}
.hb{height:48.253125pt;}
.hd{height:54.598989pt;}
.h2{height:58.563750pt;}
.h5{height:60.519362pt;}
.h9{height:61.295000pt;}
.h4{height:71.955000pt;}
.h3{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:571.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:47.999988pt;}
.x3{left:96.031988pt;}
.x1{left:738.533322pt;}
}




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