
    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_d3ee16ad469cc9a82518c268.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_8ca80693b904076363bf2497.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_b040d2051b0663dc35cf09a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_1e0fe665a026bbb012c89a4a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_48d73e511510bc3e55c4f4d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_fb6439e9f877e6a83036d1b9.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_f2ddd504df1f377223c88652.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.291600px;}
.ls6{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.027360px;}
.ls5{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206640px;}
.ls9{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.590400px;}
.ls16{letter-spacing:0.666000px;}
.lsd{letter-spacing:0.900000px;}
.ls13{letter-spacing:7.380000px;}
.ls8{letter-spacing:15.300000px;}
.lse{letter-spacing:18.180000px;}
.lsf{letter-spacing:21.060000px;}
.ls3{letter-spacing:30.420000px;}
.lsc{letter-spacing:49.860000px;}
.lsb{letter-spacing:59.940000px;}
.ls10{letter-spacing:85.860000px;}
.ls1{letter-spacing:866.520000px;}
.ls0{letter-spacing:1789.650240px;}
.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:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.648400px;}
.ws2{word-spacing:-13.478400px;}
.ws1{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-5.970240px;}
._5{margin-left:-4.960080px;}
._1{margin-left:-3.525120px;}
._3{margin-left:-1.613520px;}
._0{width:1.013040px;}
._6{width:2.382480px;}
._2{width:3.418080px;}
._a{width:4.664160px;}
._d{width:6.095520px;}
._c{width:7.470000px;}
._b{width:8.488800px;}
._9{width:9.800640px;}
._7{width:10.936080px;}
._8{width:12.321120px;}
._23{width:13.326480px;}
._e{width:16.015680px;}
._13{width:17.452800px;}
._f{width:19.362240px;}
._10{width:20.676960px;}
._11{width:21.704400px;}
._2f{width:23.306400px;}
._2e{width:24.561360px;}
._29{width:26.715600px;}
._2c{width:28.087200px;}
._1a{width:29.282400px;}
._12{width:30.656880px;}
._1d{width:32.150880px;}
._21{width:33.169680px;}
._40{width:34.362000px;}
._3f{width:35.377920px;}
._25{width:37.412640px;}
._24{width:38.485440px;}
._28{width:40.158720px;}
._37{width:41.772240px;}
._2d{width:42.847920px;}
._1f{width:44.521200px;}
._1c{width:46.015200px;}
._39{width:47.449440px;}
._4a{width:48.647520px;}
._35{width:49.660560px;}
._3a{width:50.975280px;}
._46{width:52.230240px;}
._38{width:53.598960px;}
._53{width:54.620640px;}
._33{width:55.639440px;}
._27{width:57.372480px;}
._26{width:58.983120px;}
._2a{width:60.716160px;}
._48{width:62.030880px;}
._20{width:63.345600px;}
._4e{width:64.361520px;}
._15{width:66.214080px;}
._16{width:67.230000px;}
._3e{width:69.022800px;}
._22{width:70.872480px;}
._18{width:72.671040px;}
._17{width:74.042640px;}
._43{width:77.209920px;}
._1e{width:80.141040px;}
._45{width:81.154080px;}
._1b{width:82.170000px;}
._14{width:84.201840px;}
._47{width:85.277520px;}
._44{width:86.831280px;}
._41{width:88.564320px;}
._52{width:92.093040px;}
._51{width:93.171600px;}
._50{width:94.241520px;}
._49{width:98.663760px;}
._42{width:99.742320px;}
._4f{width:102.790080px;}
._31{width:107.630640px;}
._32{width:108.942480px;}
._36{width:122.209200px;}
._2b{width:126.335520px;}
._4c{width:130.877280px;}
._4d{width:132.012720px;}
._34{width:138.643200px;}
._4b{width:144.499680px;}
._3d{width:153.398160px;}
._3c{width:158.187600px;}
._3b{width:159.439680px;}
._30{width:187.407360px;}
._54{width:849.216000px;}
._19{width:1790.276640px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:104.760000px;}
.y3e{bottom:122.040000px;}
.y3d{bottom:139.356000px;}
.y3c{bottom:156.630000px;}
.y3b{bottom:173.910000px;}
.y3a{bottom:191.010000px;}
.y39{bottom:208.290000px;}
.y38{bottom:225.570000px;}
.y37{bottom:242.850000px;}
.y36{bottom:260.130000px;}
.y35{bottom:277.410000px;}
.y34{bottom:294.510000px;}
.y33{bottom:311.790000px;}
.y32{bottom:329.070000px;}
.y31{bottom:346.350000px;}
.y30{bottom:363.630000px;}
.y2f{bottom:380.730000px;}
.y2e{bottom:398.055000px;}
.y2d{bottom:415.335000px;}
.y2c{bottom:432.615000px;}
.y2b{bottom:449.895000px;}
.y2a{bottom:467.175000px;}
.y29{bottom:484.275000px;}
.y28{bottom:501.555000px;}
.y27{bottom:518.835000px;}
.y26{bottom:536.115000px;}
.y25{bottom:553.395000px;}
.y24{bottom:570.675000px;}
.y23{bottom:587.775000px;}
.y22{bottom:605.055000px;}
.y21{bottom:622.335000px;}
.y20{bottom:639.615000px;}
.y1f{bottom:656.925000px;}
.y1e{bottom:674.025000px;}
.y1d{bottom:691.305000px;}
.y1c{bottom:708.585000px;}
.y1b{bottom:725.865000px;}
.y1a{bottom:743.145000px;}
.y19{bottom:760.425000px;}
.y18{bottom:777.525000px;}
.y17{bottom:794.805000px;}
.y16{bottom:812.085000px;}
.y15{bottom:829.365000px;}
.y14{bottom:846.645000px;}
.y13{bottom:863.925000px;}
.y12{bottom:881.025000px;}
.y11{bottom:898.350000px;}
.y10{bottom:915.630000px;}
.yf{bottom:932.910000px;}
.ye{bottom:950.190000px;}
.yd{bottom:967.470000px;}
.yc{bottom:984.570000px;}
.yb{bottom:1001.850000px;}
.ya{bottom:1019.130000px;}
.y9{bottom:1036.410000px;}
.y8{bottom:1053.690000px;}
.y7{bottom:1070.790000px;}
.y6{bottom:1088.070000px;}
.y5{bottom:1105.350000px;}
.y40{bottom:1122.630000px;}
.y4{bottom:1139.910000px;}
.y3{bottom:1157.220000px;}
.y2{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.h6{height:53.573906px;}
.h5{height:58.621992px;}
.h4{height:58.651172px;}
.h2{height:59.439023px;}
.h3{height:60.226875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x2{left:113.795987px;}
.x17{left:136.115987px;}
.xd{left:141.695987px;}
.x3{left:359.174987px;}
.x10{left:372.854987px;}
.xf{left:428.294987px;}
.x18{left:457.304987px;}
.x4{left:461.444987px;}
.x19{left:487.004987px;}
.x6{left:508.424987px;}
.x15{left:537.944987px;}
.x8{left:547.304987px;}
.x1a{left:566.024987px;}
.xa{left:577.184987px;}
.x12{left:601.304987px;}
.xc{left:614.264987px;}
.x14{left:635.909987px;}
.x5{left:658.769987px;}
.x11{left:675.869987px;}
.xe{left:695.849987px;}
.x7{left:698.369987px;}
.x9{left:701.789987px;}
.xb{left:708.449987px;}
.x13{left:710.249987px;}
.x16{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.259200pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.024320pt;}
.ls5{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183680pt;}
.ls9{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.524800pt;}
.ls16{letter-spacing:0.592000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls13{letter-spacing:6.560000pt;}
.ls8{letter-spacing:13.600000pt;}
.lse{letter-spacing:16.160000pt;}
.lsf{letter-spacing:18.720000pt;}
.ls3{letter-spacing:27.040000pt;}
.lsc{letter-spacing:44.320000pt;}
.lsb{letter-spacing:53.280000pt;}
.ls10{letter-spacing:76.320000pt;}
.ls1{letter-spacing:770.240000pt;}
.ls0{letter-spacing:1590.800213pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.020800pt;}
.ws2{word-spacing:-11.980800pt;}
.ws1{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-5.306880pt;}
._5{margin-left:-4.408960pt;}
._1{margin-left:-3.133440pt;}
._3{margin-left:-1.434240pt;}
._0{width:0.900480pt;}
._6{width:2.117760pt;}
._2{width:3.038293pt;}
._a{width:4.145920pt;}
._d{width:5.418240pt;}
._c{width:6.640000pt;}
._b{width:7.545600pt;}
._9{width:8.711680pt;}
._7{width:9.720960pt;}
._8{width:10.952107pt;}
._23{width:11.845760pt;}
._e{width:14.236160pt;}
._13{width:15.513600pt;}
._f{width:17.210880pt;}
._10{width:18.379520pt;}
._11{width:19.292800pt;}
._2f{width:20.716800pt;}
._2e{width:21.832320pt;}
._29{width:23.747200pt;}
._2c{width:24.966400pt;}
._1a{width:26.028800pt;}
._12{width:27.250560pt;}
._1d{width:28.578560pt;}
._21{width:29.484160pt;}
._40{width:30.544000pt;}
._3f{width:31.447040pt;}
._25{width:33.255680pt;}
._24{width:34.209280pt;}
._28{width:35.696640pt;}
._37{width:37.130880pt;}
._2d{width:38.087040pt;}
._1f{width:39.574400pt;}
._1c{width:40.902400pt;}
._39{width:42.177280pt;}
._4a{width:43.242240pt;}
._35{width:44.142720pt;}
._3a{width:45.311360pt;}
._46{width:46.426880pt;}
._38{width:47.643520pt;}
._53{width:48.551680pt;}
._33{width:49.457280pt;}
._27{width:50.997760pt;}
._26{width:52.429440pt;}
._2a{width:53.969920pt;}
._48{width:55.138560pt;}
._20{width:56.307200pt;}
._4e{width:57.210240pt;}
._15{width:58.856960pt;}
._16{width:59.760000pt;}
._3e{width:61.353600pt;}
._22{width:62.997760pt;}
._18{width:64.596480pt;}
._17{width:65.815680pt;}
._43{width:68.631040pt;}
._1e{width:71.236480pt;}
._45{width:72.136960pt;}
._1b{width:73.040000pt;}
._14{width:74.846080pt;}
._47{width:75.802240pt;}
._44{width:77.183360pt;}
._41{width:78.723840pt;}
._52{width:81.860480pt;}
._51{width:82.819200pt;}
._50{width:83.770240pt;}
._49{width:87.701120pt;}
._42{width:88.659840pt;}
._4f{width:91.368960pt;}
._31{width:95.671680pt;}
._32{width:96.837760pt;}
._36{width:108.630400pt;}
._2b{width:112.298240pt;}
._4c{width:116.335360pt;}
._4d{width:117.344640pt;}
._34{width:123.238400pt;}
._4b{width:128.444160pt;}
._3d{width:136.353920pt;}
._3c{width:140.611200pt;}
._3b{width:141.724160pt;}
._30{width:166.584320pt;}
._54{width:754.858667pt;}
._19{width:1591.357013pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:93.120000pt;}
.y3e{bottom:108.480000pt;}
.y3d{bottom:123.872000pt;}
.y3c{bottom:139.226667pt;}
.y3b{bottom:154.586667pt;}
.y3a{bottom:169.786667pt;}
.y39{bottom:185.146667pt;}
.y38{bottom:200.506667pt;}
.y37{bottom:215.866667pt;}
.y36{bottom:231.226667pt;}
.y35{bottom:246.586667pt;}
.y34{bottom:261.786667pt;}
.y33{bottom:277.146667pt;}
.y32{bottom:292.506667pt;}
.y31{bottom:307.866667pt;}
.y30{bottom:323.226667pt;}
.y2f{bottom:338.426667pt;}
.y2e{bottom:353.826667pt;}
.y2d{bottom:369.186667pt;}
.y2c{bottom:384.546667pt;}
.y2b{bottom:399.906667pt;}
.y2a{bottom:415.266667pt;}
.y29{bottom:430.466667pt;}
.y28{bottom:445.826667pt;}
.y27{bottom:461.186667pt;}
.y26{bottom:476.546667pt;}
.y25{bottom:491.906667pt;}
.y24{bottom:507.266667pt;}
.y23{bottom:522.466667pt;}
.y22{bottom:537.826667pt;}
.y21{bottom:553.186667pt;}
.y20{bottom:568.546667pt;}
.y1f{bottom:583.933333pt;}
.y1e{bottom:599.133333pt;}
.y1d{bottom:614.493333pt;}
.y1c{bottom:629.853333pt;}
.y1b{bottom:645.213333pt;}
.y1a{bottom:660.573333pt;}
.y19{bottom:675.933333pt;}
.y18{bottom:691.133333pt;}
.y17{bottom:706.493333pt;}
.y16{bottom:721.853333pt;}
.y15{bottom:737.213333pt;}
.y14{bottom:752.573333pt;}
.y13{bottom:767.933333pt;}
.y12{bottom:783.133333pt;}
.y11{bottom:798.533333pt;}
.y10{bottom:813.893333pt;}
.yf{bottom:829.253333pt;}
.ye{bottom:844.613333pt;}
.yd{bottom:859.973333pt;}
.yc{bottom:875.173333pt;}
.yb{bottom:890.533333pt;}
.ya{bottom:905.893333pt;}
.y9{bottom:921.253333pt;}
.y8{bottom:936.613333pt;}
.y7{bottom:951.813333pt;}
.y6{bottom:967.173333pt;}
.y5{bottom:982.533333pt;}
.y40{bottom:997.893333pt;}
.y4{bottom:1013.253333pt;}
.y3{bottom:1028.640000pt;}
.y2{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.h6{height:47.621250pt;}
.h5{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2{height:52.834688pt;}
.h3{height:53.535000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x2{left:101.151988pt;}
.x17{left:120.991988pt;}
.xd{left:125.951988pt;}
.x3{left:319.266655pt;}
.x10{left:331.426655pt;}
.xf{left:380.706655pt;}
.x18{left:406.493322pt;}
.x4{left:410.173322pt;}
.x19{left:432.893322pt;}
.x6{left:451.933322pt;}
.x15{left:478.173322pt;}
.x8{left:486.493322pt;}
.x1a{left:503.133322pt;}
.xa{left:513.053322pt;}
.x12{left:534.493322pt;}
.xc{left:546.013322pt;}
.x14{left:565.253322pt;}
.x5{left:585.573322pt;}
.x11{left:600.773322pt;}
.xe{left:618.533322pt;}
.x7{left:620.773322pt;}
.x9{left:623.813322pt;}
.xb{left:629.733322pt;}
.x13{left:631.333322pt;}
.x16{left:699.333322pt;}
}




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