
    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_08df154c93eb73eb4394f298.woff')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_10a492ab4b5868366e29508f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6370f26c1aa228288b5dec11.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_02768854a5d386be1f3a48b9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.955078;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_177448eb244d781a8a77779f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cbf4e7c4eb9d46b3e69374d1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_a8ad26a46172af88e09113cb.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_d38ebc1be159025d04c66121.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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;}
.ls9{letter-spacing:-0.690000px;}
.ls7{letter-spacing:-0.378600px;}
.ls4{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.037440px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:191.484000px;}
.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:-108.072000px;}
.ws9{word-spacing:-54.543744px;}
.ws12{word-spacing:-21.088080px;}
.ws1{word-spacing:-21.060000px;}
.ws14{word-spacing:-21.022560px;}
.ws13{word-spacing:-20.681400px;}
.ws15{word-spacing:-20.370000px;}
.wsa{word-spacing:-18.036000px;}
.ws4{word-spacing:-18.000000px;}
.ws2{word-spacing:-1.296000px;}
.ws8{word-spacing:-1.036992px;}
.ws11{word-spacing:0.000000px;}
.wsc{word-spacing:2.280000px;}
.wsb{word-spacing:2.736000px;}
.wse{word-spacing:2.880000px;}
.ws10{word-spacing:3.024000px;}
.wsf{word-spacing:3.096000px;}
.wsd{word-spacing:3.456000px;}
.ws3{word-spacing:9.504000px;}
.ws6{word-spacing:23.304000px;}
.ws5{word-spacing:23.616000px;}
.ws7{word-spacing:23.976000px;}
._4{margin-left:-11.372400px;}
._f{margin-left:-9.460800px;}
._5{margin-left:-8.424000px;}
._0{margin-left:-7.308000px;}
._1b{margin-left:-6.149520px;}
._3{margin-left:-5.075280px;}
._6{margin-left:-4.043520px;}
._2{margin-left:-2.948400px;}
._1{margin-left:-1.095120px;}
._9{width:1.005600px;}
._15{width:2.415840px;}
._c{width:4.464720px;}
._7{width:6.233760px;}
._8{width:7.752720px;}
._a{width:8.839920px;}
._d{width:10.114080px;}
._16{width:11.223840px;}
._12{width:12.888720px;}
._11{width:14.236560px;}
._10{width:15.921360px;}
._1a{width:18.242400px;}
._22{width:19.375200px;}
._20{width:22.744800px;}
._b{width:23.839920px;}
._19{width:25.608960px;}
._21{width:26.783040px;}
._2e{width:28.641600px;}
._1e{width:29.820960px;}
._2b{width:30.831840px;}
._13{width:32.600880px;}
._14{width:33.696000px;}
._30{width:35.296560px;}
._2f{width:36.644400px;}
._28{width:38.666160px;}
._26{width:40.105920px;}
._23{width:41.526480px;}
._1f{width:42.541200px;}
._2c{width:43.725840px;}
._2d{width:44.794560px;}
._27{width:47.595600px;}
._31{width:50.291280px;}
._1c{width:51.377040px;}
._1d{width:53.687760px;}
._e{width:56.440800px;}
._25{width:58.631040px;}
._24{width:59.810400px;}
._29{width:83.397600px;}
._2a{width:84.492720px;}
._17{width:93.674880px;}
._18{width:94.691040px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.y5{bottom:-39.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.436000px;}
.y4{bottom:6.300000px;}
.y32{bottom:10.260000px;}
.y6{bottom:16.740000px;}
.y31{bottom:28.800000px;}
.y30{bottom:56.520000px;}
.y2{bottom:56.916000px;}
.y2f{bottom:84.675000px;}
.y57{bottom:100.476000px;}
.y2e{bottom:103.215000px;}
.y28{bottom:115.956000px;}
.y56{bottom:128.196000px;}
.y2d{bottom:130.935000px;}
.y27{bottom:143.856000px;}
.y55{bottom:155.910000px;}
.y2c{bottom:159.090000px;}
.y26{bottom:166.350000px;}
.y2b{bottom:177.630000px;}
.y25{bottom:177.870000px;}
.y54{bottom:183.810000px;}
.y5f{bottom:187.770000px;}
.y24{bottom:197.490000px;}
.y29{bottom:197.640000px;}
.y2a{bottom:205.350000px;}
.y5e{bottom:209.010000px;}
.y53{bottom:211.530000px;}
.y5d{bottom:233.310000px;}
.y52{bottom:239.250000px;}
.y5c{bottom:257.430000px;}
.y51{bottom:266.970000px;}
.y5b{bottom:281.595000px;}
.y50{bottom:294.915000px;}
.y5a{bottom:305.715000px;}
.y4f{bottom:322.635000px;}
.y59{bottom:329.835000px;}
.y4e{bottom:350.355000px;}
.y58{bottom:353.955000px;}
.y4d{bottom:378.255000px;}
.y4c{bottom:405.975000px;}
.y23{bottom:429.915000px;}
.y4b{bottom:433.695000px;}
.y22{bottom:445.035000px;}
.y4a{bottom:461.415000px;}
.y21{bottom:472.935000px;}
.y49{bottom:489.315000px;}
.y20{bottom:500.655000px;}
.y48{bottom:517.035000px;}
.y1f{bottom:528.375000px;}
.y47{bottom:544.755000px;}
.y1e{bottom:556.095000px;}
.y46{bottom:572.505000px;}
.y1d{bottom:584.025000px;}
.y45{bottom:600.405000px;}
.y1c{bottom:611.745000px;}
.y44{bottom:628.125000px;}
.y1b{bottom:639.465000px;}
.y43{bottom:655.845000px;}
.y1a{bottom:667.365000px;}
.y42{bottom:683.745000px;}
.y19{bottom:695.085000px;}
.y41{bottom:711.465000px;}
.y18{bottom:722.805000px;}
.y40{bottom:739.185000px;}
.y17{bottom:750.525000px;}
.y3f{bottom:766.905000px;}
.y16{bottom:778.425000px;}
.y3e{bottom:794.805000px;}
.y15{bottom:806.145000px;}
.y3d{bottom:822.525000px;}
.y14{bottom:833.865000px;}
.y3c{bottom:850.290000px;}
.y13{bottom:861.630000px;}
.y3b{bottom:878.190000px;}
.y12{bottom:889.530000px;}
.y3a{bottom:905.910000px;}
.y11{bottom:917.250000px;}
.y39{bottom:933.630000px;}
.y10{bottom:944.970000px;}
.y38{bottom:961.350000px;}
.yf{bottom:972.870000px;}
.y37{bottom:989.250000px;}
.ye{bottom:995.730000px;}
.yd{bottom:1014.270000px;}
.y36{bottom:1016.970000px;}
.yc{bottom:1038.390000px;}
.y35{bottom:1044.690000px;}
.yb{bottom:1062.510000px;}
.y34{bottom:1072.410000px;}
.ya{bottom:1085.370000px;}
.y33{bottom:1100.310000px;}
.y9{bottom:1103.910000px;}
.y8{bottom:1128.030000px;}
.y1{bottom:1151.640000px;}
.y3{bottom:1225.080000px;}
.hd{height:29.678906px;}
.h3{height:31.680000px;}
.h5{height:51.660000px;}
.h9{height:58.651172px;}
.hb{height:59.066719px;}
.h7{height:59.436914px;}
.hf{height:70.628906px;}
.h2{height:70.664062px;}
.h10{height:70.770164px;}
.ha{height:82.635820px;}
.hc{height:82.676953px;}
.h8{height:84.898125px;}
.h6{height:106.084617px;}
.h4{height:108.843750px;}
.he{height:229.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:49.500000px;}
.w3{width:281.910000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:16.170000px;}
.x3{left:46.440000px;}
.x1{left:63.899987px;}
.xf{left:75.347987px;}
.x7{left:86.579987px;}
.x10{left:90.359987px;}
.x11{left:103.859987px;}
.xc{left:117.035987px;}
.x4{left:140.940000px;}
.xe{left:217.649987px;}
.x8{left:352.694987px;}
.xa{left:425.954987px;}
.x2{left:498.705000px;}
.xb{left:634.424987px;}
.x9{left:694.949987px;}
.xd{left:763.709987px;}
.x5{left:836.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.613333pt;}
.ls7{letter-spacing:-0.336533pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:170.208000pt;}
.ws0{word-spacing:-96.064000pt;}
.ws9{word-spacing:-48.483328pt;}
.ws12{word-spacing:-18.744960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws14{word-spacing:-18.686720pt;}
.ws13{word-spacing:-18.383467pt;}
.ws15{word-spacing:-18.106667pt;}
.wsa{word-spacing:-16.032000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws2{word-spacing:-1.152000pt;}
.ws8{word-spacing:-0.921771pt;}
.ws11{word-spacing:0.000000pt;}
.wsc{word-spacing:2.026667pt;}
.wsb{word-spacing:2.432000pt;}
.wse{word-spacing:2.560000pt;}
.ws10{word-spacing:2.688000pt;}
.wsf{word-spacing:2.752000pt;}
.wsd{word-spacing:3.072000pt;}
.ws3{word-spacing:8.448000pt;}
.ws6{word-spacing:20.714667pt;}
.ws5{word-spacing:20.992000pt;}
.ws7{word-spacing:21.312000pt;}
._4{margin-left:-10.108800pt;}
._f{margin-left:-8.409600pt;}
._5{margin-left:-7.488000pt;}
._0{margin-left:-6.496000pt;}
._1b{margin-left:-5.466240pt;}
._3{margin-left:-4.511360pt;}
._6{margin-left:-3.594240pt;}
._2{margin-left:-2.620800pt;}
._1{margin-left:-0.973440pt;}
._9{width:0.893867pt;}
._15{width:2.147413pt;}
._c{width:3.968640pt;}
._7{width:5.541120pt;}
._8{width:6.891307pt;}
._a{width:7.857707pt;}
._d{width:8.990293pt;}
._16{width:9.976747pt;}
._12{width:11.456640pt;}
._11{width:12.654720pt;}
._10{width:14.152320pt;}
._1a{width:16.215467pt;}
._22{width:17.222400pt;}
._20{width:20.217600pt;}
._b{width:21.191040pt;}
._19{width:22.763520pt;}
._21{width:23.807147pt;}
._2e{width:25.459200pt;}
._1e{width:26.507520pt;}
._2b{width:27.406080pt;}
._13{width:28.978560pt;}
._14{width:29.952000pt;}
._30{width:31.374720pt;}
._2f{width:32.572800pt;}
._28{width:34.369920pt;}
._26{width:35.649707pt;}
._23{width:36.912427pt;}
._1f{width:37.814400pt;}
._2c{width:38.867413pt;}
._2d{width:39.817387pt;}
._27{width:42.307200pt;}
._31{width:44.703360pt;}
._1c{width:45.668480pt;}
._1d{width:47.722453pt;}
._e{width:50.169600pt;}
._25{width:52.116480pt;}
._24{width:53.164800pt;}
._29{width:74.131200pt;}
._2a{width:75.104640pt;}
._17{width:83.266560pt;}
._18{width:84.169813pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.y5{bottom:-34.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.832000pt;}
.y4{bottom:5.600000pt;}
.y32{bottom:9.120000pt;}
.y6{bottom:14.880000pt;}
.y31{bottom:25.600000pt;}
.y30{bottom:50.240000pt;}
.y2{bottom:50.592000pt;}
.y2f{bottom:75.266667pt;}
.y57{bottom:89.312000pt;}
.y2e{bottom:91.746667pt;}
.y28{bottom:103.072000pt;}
.y56{bottom:113.952000pt;}
.y2d{bottom:116.386667pt;}
.y27{bottom:127.872000pt;}
.y55{bottom:138.586667pt;}
.y2c{bottom:141.413333pt;}
.y26{bottom:147.866667pt;}
.y2b{bottom:157.893333pt;}
.y25{bottom:158.106667pt;}
.y54{bottom:163.386667pt;}
.y5f{bottom:166.906667pt;}
.y24{bottom:175.546667pt;}
.y29{bottom:175.680000pt;}
.y2a{bottom:182.533333pt;}
.y5e{bottom:185.786667pt;}
.y53{bottom:188.026667pt;}
.y5d{bottom:207.386667pt;}
.y52{bottom:212.666667pt;}
.y5c{bottom:228.826667pt;}
.y51{bottom:237.306667pt;}
.y5b{bottom:250.306667pt;}
.y50{bottom:262.146667pt;}
.y5a{bottom:271.746667pt;}
.y4f{bottom:286.786667pt;}
.y59{bottom:293.186667pt;}
.y4e{bottom:311.426667pt;}
.y58{bottom:314.626667pt;}
.y4d{bottom:336.226667pt;}
.y4c{bottom:360.866667pt;}
.y23{bottom:382.146667pt;}
.y4b{bottom:385.506667pt;}
.y22{bottom:395.586667pt;}
.y4a{bottom:410.146667pt;}
.y21{bottom:420.386667pt;}
.y49{bottom:434.946667pt;}
.y20{bottom:445.026667pt;}
.y48{bottom:459.586667pt;}
.y1f{bottom:469.666667pt;}
.y47{bottom:484.226667pt;}
.y1e{bottom:494.306667pt;}
.y46{bottom:508.893333pt;}
.y1d{bottom:519.133333pt;}
.y45{bottom:533.693333pt;}
.y1c{bottom:543.773333pt;}
.y44{bottom:558.333333pt;}
.y1b{bottom:568.413333pt;}
.y43{bottom:582.973333pt;}
.y1a{bottom:593.213333pt;}
.y42{bottom:607.773333pt;}
.y19{bottom:617.853333pt;}
.y41{bottom:632.413333pt;}
.y18{bottom:642.493333pt;}
.y40{bottom:657.053333pt;}
.y17{bottom:667.133333pt;}
.y3f{bottom:681.693333pt;}
.y16{bottom:691.933333pt;}
.y3e{bottom:706.493333pt;}
.y15{bottom:716.573333pt;}
.y3d{bottom:731.133333pt;}
.y14{bottom:741.213333pt;}
.y3c{bottom:755.813333pt;}
.y13{bottom:765.893333pt;}
.y3b{bottom:780.613333pt;}
.y12{bottom:790.693333pt;}
.y3a{bottom:805.253333pt;}
.y11{bottom:815.333333pt;}
.y39{bottom:829.893333pt;}
.y10{bottom:839.973333pt;}
.y38{bottom:854.533333pt;}
.yf{bottom:864.773333pt;}
.y37{bottom:879.333333pt;}
.ye{bottom:885.093333pt;}
.yd{bottom:901.573333pt;}
.y36{bottom:903.973333pt;}
.yc{bottom:923.013333pt;}
.y35{bottom:928.613333pt;}
.yb{bottom:944.453333pt;}
.y34{bottom:953.253333pt;}
.ya{bottom:964.773333pt;}
.y33{bottom:978.053333pt;}
.y9{bottom:981.253333pt;}
.y8{bottom:1002.693333pt;}
.y1{bottom:1023.680000pt;}
.y3{bottom:1088.960000pt;}
.hd{height:26.381250pt;}
.h3{height:28.160000pt;}
.h5{height:45.920000pt;}
.h9{height:52.134375pt;}
.hb{height:52.503750pt;}
.h7{height:52.832812pt;}
.hf{height:62.781250pt;}
.h2{height:62.812500pt;}
.h10{height:62.906812pt;}
.ha{height:73.454062pt;}
.hc{height:73.490625pt;}
.h8{height:75.465000pt;}
.h6{height:94.297438pt;}
.h4{height:96.750000pt;}
.he{height:204.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:44.000000pt;}
.w3{width:250.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:14.373333pt;}
.x3{left:41.280000pt;}
.x1{left:56.799988pt;}
.xf{left:66.975988pt;}
.x7{left:76.959988pt;}
.x10{left:80.319988pt;}
.x11{left:92.319988pt;}
.xc{left:104.031988pt;}
.x4{left:125.280000pt;}
.xe{left:193.466655pt;}
.x8{left:313.506655pt;}
.xa{left:378.626655pt;}
.x2{left:443.293333pt;}
.xb{left:563.933322pt;}
.x9{left:617.733322pt;}
.xd{left:678.853322pt;}
.x5{left:743.360000pt;}
}




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