
    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_687a87b6e048acb24380e16f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_e4e9c96a40be05bea1e99a8d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2aa428300f3c3a9292056e18.woff')format("woff");}.ff3{font-family:ff3;line-height:1.171875;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_5c71d8c556afaf4c7ea369a6.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_f4eec3c24c97fb5a020a7fd0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ee167ddfb9772097f4d50e7.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_ba0567b3710781ffe04467c3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58f2bd1e812b8b8915b19cdc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_3a754d82bc1e38224ad244ef.woff')format("woff");}.ff9{font-family:ff9;line-height:0.897461;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_96542e3201db29585eaffa19.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_d18861fe735072766e52e0f0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_9061dd32a96441c13524560c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.305400px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.262080px;}
.ls6{letter-spacing:0.360000px;}
.ls8{letter-spacing:21.546720px;}
.ls3{letter-spacing:39.905280px;}
.ls7{letter-spacing:60.065280px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:0.432000px;}
._7{margin-left:-9.349680px;}
._6{margin-left:-7.816320px;}
._2{margin-left:-5.940000px;}
._4{margin-left:-4.180320px;}
._5{margin-left:-3.179520px;}
._1{margin-left:-1.152000px;}
._3{width:1.008000px;}
._8{width:2.087280px;}
._b{width:3.101760px;}
._14{width:4.191120px;}
._f{width:6.115680px;}
._a{width:7.828560px;}
._9{width:8.964000px;}
._c{width:9.964800px;}
._13{width:10.989360px;}
._18{width:12.430080px;}
._17{width:13.812480px;}
._10{width:16.075440px;}
._0{width:17.856000px;}
._19{width:19.063440px;}
._e{width:20.557440px;}
._d{width:21.633120px;}
._1a{width:22.893840px;}
._12{width:23.925120px;}
._11{width:25.615920px;}
._16{width:28.182960px;}
._15{width:29.648880px;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.780000px;}
.y4{bottom:79.740000px;}
.y3{bottom:101.700000px;}
.y4b{bottom:134.496000px;}
.y5b{bottom:137.196000px;}
.y26{bottom:139.716000px;}
.y79{bottom:152.670000px;}
.y4a{bottom:160.410000px;}
.y5a{bottom:162.930000px;}
.y25{bottom:165.630000px;}
.y78{bottom:178.590000px;}
.y49{bottom:186.330000px;}
.y59{bottom:188.850000px;}
.y24{bottom:192.630000px;}
.y77{bottom:204.330000px;}
.y48{bottom:212.070000px;}
.y58{bottom:214.770000px;}
.y23{bottom:219.990000px;}
.y76{bottom:230.250000px;}
.y47{bottom:237.990000px;}
.y57{bottom:240.690000px;}
.y22{bottom:245.730000px;}
.y75{bottom:256.170000px;}
.y46{bottom:263.910000px;}
.y56{bottom:266.430000px;}
.y21{bottom:271.650000px;}
.y74{bottom:282.090000px;}
.y45{bottom:289.830000px;}
.y55{bottom:292.350000px;}
.y20{bottom:297.570000px;}
.y73{bottom:307.830000px;}
.y44{bottom:315.570000px;}
.y54{bottom:318.270000px;}
.y1f{bottom:323.490000px;}
.y72{bottom:334.830000px;}
.y43{bottom:341.490000px;}
.y53{bottom:344.190000px;}
.y1e{bottom:349.230000px;}
.y71{bottom:363.450000px;}
.y42{bottom:367.455000px;}
.y52{bottom:369.975000px;}
.y1d{bottom:375.195000px;}
.y70{bottom:390.675000px;}
.y41{bottom:393.375000px;}
.y51{bottom:395.895000px;}
.y1c{bottom:401.115000px;}
.y6f{bottom:416.595000px;}
.y40{bottom:419.115000px;}
.y50{bottom:421.815000px;}
.y1b{bottom:426.855000px;}
.y6e{bottom:442.515000px;}
.y3f{bottom:445.035000px;}
.y4f{bottom:447.555000px;}
.y1a{bottom:452.775000px;}
.y6d{bottom:468.255000px;}
.y3e{bottom:470.955000px;}
.y4e{bottom:473.475000px;}
.y19{bottom:478.695000px;}
.y6c{bottom:494.175000px;}
.y3d{bottom:496.875000px;}
.y4d{bottom:499.395000px;}
.y18{bottom:504.615000px;}
.y6b{bottom:520.095000px;}
.y3c{bottom:523.875000px;}
.y4c{bottom:525.315000px;}
.y17{bottom:530.355000px;}
.y6a{bottom:546.015000px;}
.y3b{bottom:551.055000px;}
.y16{bottom:556.275000px;}
.y69{bottom:571.755000px;}
.y3a{bottom:576.975000px;}
.y15{bottom:582.195000px;}
.y68{bottom:597.675000px;}
.y39{bottom:602.895000px;}
.y14{bottom:608.115000px;}
.y67{bottom:623.625000px;}
.y38{bottom:628.845000px;}
.y13{bottom:633.885000px;}
.y66{bottom:649.545000px;}
.y37{bottom:654.585000px;}
.y12{bottom:659.805000px;}
.y65{bottom:676.545000px;}
.y36{bottom:680.505000px;}
.y11{bottom:688.245000px;}
.y64{bottom:703.725000px;}
.y35{bottom:706.425000px;}
.y10{bottom:724.065000px;}
.y63{bottom:729.645000px;}
.y34{bottom:732.345000px;}
.y62{bottom:755.565000px;}
.y33{bottom:758.085000px;}
.yf{bottom:759.345000px;}
.y61{bottom:781.485000px;}
.y32{bottom:784.005000px;}
.ye{bottom:787.785000px;}
.y60{bottom:807.225000px;}
.y31{bottom:809.925000px;}
.yd{bottom:816.225000px;}
.y5f{bottom:833.145000px;}
.y30{bottom:835.845000px;}
.yc{bottom:848.265000px;}
.y5e{bottom:859.065000px;}
.y2f{bottom:861.585000px;}
.yb{bottom:880.845000px;}
.y5d{bottom:885.030000px;}
.y2e{bottom:887.550000px;}
.ya{bottom:909.330000px;}
.y5c{bottom:912.030000px;}
.y2d{bottom:913.470000px;}
.y9{bottom:937.770000px;}
.y2c{bottom:939.210000px;}
.y2b{bottom:965.130000px;}
.y8{bottom:969.990000px;}
.y2a{bottom:991.050000px;}
.y7{bottom:1010.670000px;}
.y29{bottom:1016.970000px;}
.y28{bottom:1042.710000px;}
.y6{bottom:1057.290000px;}
.y27{bottom:1068.630000px;}
.y2{bottom:1087.530000px;}
.y1{bottom:1104.630000px;}
.ha{height:40.472227px;}
.hd{height:42.164648px;}
.hb{height:43.215117px;}
.hf{height:43.506914px;}
.h9{height:45.549492px;}
.he{height:46.736719px;}
.hc{height:48.224531px;}
.h6{height:50.488594px;}
.h8{height:50.800781px;}
.h5{height:59.436914px;}
.h7{height:67.565039px;}
.h2{height:71.613281px;}
.h3{height:73.722656px;}
.h4{height:76.201172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:86.795987px;}
.x2{left:108.035987px;}
.x5{left:116.855987px;}
.xd{left:135.035987px;}
.x4{left:161.129987px;}
.x9{left:217.649987px;}
.x6{left:239.249987px;}
.x8{left:252.209987px;}
.xa{left:300.134987px;}
.xb{left:317.054987px;}
.x7{left:328.754987px;}
.xc{left:446.474987px;}
.x3{left:697.649987px;}
.x1{left:784.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.232960pt;}
.ls6{letter-spacing:0.320000pt;}
.ls8{letter-spacing:19.152640pt;}
.ls3{letter-spacing:35.471360pt;}
.ls7{letter-spacing:53.391360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.448533pt;}
.ws5{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:0.384000pt;}
._7{margin-left:-8.310827pt;}
._6{margin-left:-6.947840pt;}
._2{margin-left:-5.280000pt;}
._4{margin-left:-3.715840pt;}
._5{margin-left:-2.826240pt;}
._1{margin-left:-1.024000pt;}
._3{width:0.896000pt;}
._8{width:1.855360pt;}
._b{width:2.757120pt;}
._14{width:3.725440pt;}
._f{width:5.436160pt;}
._a{width:6.958720pt;}
._9{width:7.968000pt;}
._c{width:8.857600pt;}
._13{width:9.768320pt;}
._18{width:11.048960pt;}
._17{width:12.277760pt;}
._10{width:14.289280pt;}
._0{width:15.872000pt;}
._19{width:16.945280pt;}
._e{width:18.273280pt;}
._d{width:19.229440pt;}
._1a{width:20.350080pt;}
._12{width:21.266773pt;}
._11{width:22.769707pt;}
._16{width:25.051520pt;}
._15{width:26.354560pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:51.360000pt;}
.y4{bottom:70.880000pt;}
.y3{bottom:90.400000pt;}
.y4b{bottom:119.552000pt;}
.y5b{bottom:121.952000pt;}
.y26{bottom:124.192000pt;}
.y79{bottom:135.706667pt;}
.y4a{bottom:142.586667pt;}
.y5a{bottom:144.826667pt;}
.y25{bottom:147.226667pt;}
.y78{bottom:158.746667pt;}
.y49{bottom:165.626667pt;}
.y59{bottom:167.866667pt;}
.y24{bottom:171.226667pt;}
.y77{bottom:181.626667pt;}
.y48{bottom:188.506667pt;}
.y58{bottom:190.906667pt;}
.y23{bottom:195.546667pt;}
.y76{bottom:204.666667pt;}
.y47{bottom:211.546667pt;}
.y57{bottom:213.946667pt;}
.y22{bottom:218.426667pt;}
.y75{bottom:227.706667pt;}
.y46{bottom:234.586667pt;}
.y56{bottom:236.826667pt;}
.y21{bottom:241.466667pt;}
.y74{bottom:250.746667pt;}
.y45{bottom:257.626667pt;}
.y55{bottom:259.866667pt;}
.y20{bottom:264.506667pt;}
.y73{bottom:273.626667pt;}
.y44{bottom:280.506667pt;}
.y54{bottom:282.906667pt;}
.y1f{bottom:287.546667pt;}
.y72{bottom:297.626667pt;}
.y43{bottom:303.546667pt;}
.y53{bottom:305.946667pt;}
.y1e{bottom:310.426667pt;}
.y71{bottom:323.066667pt;}
.y42{bottom:326.626667pt;}
.y52{bottom:328.866667pt;}
.y1d{bottom:333.506667pt;}
.y70{bottom:347.266667pt;}
.y41{bottom:349.666667pt;}
.y51{bottom:351.906667pt;}
.y1c{bottom:356.546667pt;}
.y6f{bottom:370.306667pt;}
.y40{bottom:372.546667pt;}
.y50{bottom:374.946667pt;}
.y1b{bottom:379.426667pt;}
.y6e{bottom:393.346667pt;}
.y3f{bottom:395.586667pt;}
.y4f{bottom:397.826667pt;}
.y1a{bottom:402.466667pt;}
.y6d{bottom:416.226667pt;}
.y3e{bottom:418.626667pt;}
.y4e{bottom:420.866667pt;}
.y19{bottom:425.506667pt;}
.y6c{bottom:439.266667pt;}
.y3d{bottom:441.666667pt;}
.y4d{bottom:443.906667pt;}
.y18{bottom:448.546667pt;}
.y6b{bottom:462.306667pt;}
.y3c{bottom:465.666667pt;}
.y4c{bottom:466.946667pt;}
.y17{bottom:471.426667pt;}
.y6a{bottom:485.346667pt;}
.y3b{bottom:489.826667pt;}
.y16{bottom:494.466667pt;}
.y69{bottom:508.226667pt;}
.y3a{bottom:512.866667pt;}
.y15{bottom:517.506667pt;}
.y68{bottom:531.266667pt;}
.y39{bottom:535.906667pt;}
.y14{bottom:540.546667pt;}
.y67{bottom:554.333333pt;}
.y38{bottom:558.973333pt;}
.y13{bottom:563.453333pt;}
.y66{bottom:577.373333pt;}
.y37{bottom:581.853333pt;}
.y12{bottom:586.493333pt;}
.y65{bottom:601.373333pt;}
.y36{bottom:604.893333pt;}
.y11{bottom:611.773333pt;}
.y64{bottom:625.533333pt;}
.y35{bottom:627.933333pt;}
.y10{bottom:643.613333pt;}
.y63{bottom:648.573333pt;}
.y34{bottom:650.973333pt;}
.y62{bottom:671.613333pt;}
.y33{bottom:673.853333pt;}
.yf{bottom:674.973333pt;}
.y61{bottom:694.653333pt;}
.y32{bottom:696.893333pt;}
.ye{bottom:700.253333pt;}
.y60{bottom:717.533333pt;}
.y31{bottom:719.933333pt;}
.yd{bottom:725.533333pt;}
.y5f{bottom:740.573333pt;}
.y30{bottom:742.973333pt;}
.yc{bottom:754.013333pt;}
.y5e{bottom:763.613333pt;}
.y2f{bottom:765.853333pt;}
.yb{bottom:782.973333pt;}
.y5d{bottom:786.693333pt;}
.y2e{bottom:788.933333pt;}
.ya{bottom:808.293333pt;}
.y5c{bottom:810.693333pt;}
.y2d{bottom:811.973333pt;}
.y9{bottom:833.573333pt;}
.y2c{bottom:834.853333pt;}
.y2b{bottom:857.893333pt;}
.y8{bottom:862.213333pt;}
.y2a{bottom:880.933333pt;}
.y7{bottom:898.373333pt;}
.y29{bottom:903.973333pt;}
.y28{bottom:926.853333pt;}
.y6{bottom:939.813333pt;}
.y27{bottom:949.893333pt;}
.y2{bottom:966.693333pt;}
.y1{bottom:981.893333pt;}
.ha{height:35.975313pt;}
.hd{height:37.479688pt;}
.hb{height:38.413438pt;}
.hf{height:38.672812pt;}
.h9{height:40.488438pt;}
.he{height:41.543750pt;}
.hc{height:42.866250pt;}
.h6{height:44.878750pt;}
.h8{height:45.156250pt;}
.h5{height:52.832812pt;}
.h7{height:60.057813pt;}
.h2{height:63.656250pt;}
.h3{height:65.531250pt;}
.h4{height:67.734375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:77.151988pt;}
.x2{left:96.031988pt;}
.x5{left:103.871988pt;}
.xd{left:120.031988pt;}
.x4{left:143.226655pt;}
.x9{left:193.466655pt;}
.x6{left:212.666655pt;}
.x8{left:224.186655pt;}
.xa{left:266.786655pt;}
.xb{left:281.826655pt;}
.x7{left:292.226655pt;}
.xc{left:396.866655pt;}
.x3{left:620.133322pt;}
.x1{left:697.733322pt;}
}




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