
    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_3e95a96375895b1b10fa2509.woff2')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_19fad86b1d43d4168c24827d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_a9ed977a102f5d5735eb965b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e203d0239ad429fbfdc86e90.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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);}
.v2{vertical-align:-64.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:64.800000px;}
.lsb{letter-spacing:-25.200000px;}
.lse{letter-spacing:-10.380000px;}
.ls9{letter-spacing:-2.886000px;}
.lsc{letter-spacing:-2.532000px;}
.ls12{letter-spacing:-0.421200px;}
.ls10{letter-spacing:-0.417000px;}
.ls14{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.115200px;}
.ls8{letter-spacing:-0.097200px;}
.lsd{letter-spacing:-0.005040px;}
.ls7{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.112800px;}
.lsf{letter-spacing:0.118800px;}
.ls6{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.277200px;}
.ls5{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.364800px;}
.ls3{letter-spacing:48.672000px;}
.ls1{letter-spacing:62.111520px;}
.ls4{letter-spacing:97.632000px;}
.ls0{letter-spacing:227.484000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-275.760000px;}
.ws1e{word-spacing:-65.232000px;}
.wsf{word-spacing:-65.088000px;}
.ws1a{word-spacing:-62.321760px;}
.ws10{word-spacing:-54.185760px;}
.ws0{word-spacing:-48.816000px;}
.ws1c{word-spacing:-48.600000px;}
.ws1{word-spacing:-32.544000px;}
.ws1d{word-spacing:-0.960000px;}
.ws11{word-spacing:-0.856800px;}
.ws18{word-spacing:-0.755280px;}
.ws13{word-spacing:-0.603360px;}
.ws4{word-spacing:-0.520560px;}
.ws15{word-spacing:-0.450720px;}
.ws14{word-spacing:-0.435600px;}
.ws9{word-spacing:-0.318240px;}
.ws12{word-spacing:-0.126720px;}
.wsd{word-spacing:-0.085680px;}
.wse{word-spacing:-0.072000px;}
.wsa{word-spacing:-0.041760px;}
.ws1f{word-spacing:0.000000px;}
.ws16{word-spacing:0.210000px;}
.ws6{word-spacing:0.254160px;}
.ws3{word-spacing:0.317520px;}
.ws19{word-spacing:0.419040px;}
.ws2{word-spacing:0.675360px;}
.ws17{word-spacing:0.869760px;}
.wsb{word-spacing:1.049040px;}
.ws8{word-spacing:5.212560px;}
.ws5{word-spacing:6.420240px;}
.wsc{word-spacing:21.108240px;}
.ws7{word-spacing:51.055200px;}
._6{margin-left:-38.256000px;}
._5{margin-left:-27.648000px;}
._a{margin-left:-25.560000px;}
._8{margin-left:-23.328000px;}
._13{margin-left:-19.180800px;}
._15{margin-left:-17.640000px;}
._e{margin-left:-16.524000px;}
._18{margin-left:-15.372000px;}
._0{margin-left:-13.608000px;}
._7{margin-left:-8.640000px;}
._14{margin-left:-7.596000px;}
._9{margin-left:-6.516000px;}
._c{margin-left:-5.515200px;}
._4{margin-left:-4.068000px;}
._2{margin-left:-2.880000px;}
._3{margin-left:-1.476000px;}
._1{width:1.296000px;}
._11{width:2.430000px;}
._16{width:49.248000px;}
._17{width:50.395200px;}
._10{width:52.742880px;}
._12{width:55.239120px;}
._d{width:62.803680px;}
._b{width:63.937200px;}
._f{width:74.268000px;}
.fc3{color:transparent;}
.fc2{color:rgb(34,105,170);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:144.000000px;}
.fs0{font-size:216.000000px;}
.fs6{font-size:239.760000px;}
.fs4{font-size:275.760000px;}
.fs7{font-size:275.904000px;}
.fs5{font-size:288.000000px;}
.fs2{font-size:324.000000px;}
.fs3{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y48{bottom:61.200000px;}
.y1{bottom:111.240000px;}
.y28{bottom:130.500000px;}
.y47{bottom:185.220000px;}
.y22{bottom:231.690000px;}
.y20{bottom:231.765000px;}
.ye{bottom:231.840000px;}
.yc{bottom:278.355000px;}
.y24{bottom:308.700000px;}
.y46{bottom:309.270000px;}
.y45{bottom:436.530000px;}
.y26{bottom:447.690000px;}
.y17{bottom:447.765000px;}
.y2b{bottom:447.810000px;}
.y12{bottom:447.840000px;}
.y1c{bottom:486.720000px;}
.y25{bottom:519.690000px;}
.y15{bottom:519.765000px;}
.y29{bottom:519.810000px;}
.y11{bottom:519.840000px;}
.y2c{bottom:578.310000px;}
.y21{bottom:596.700000px;}
.y44{bottom:609.765000px;}
.y2a{bottom:650.310000px;}
.y1b{bottom:664.740000px;}
.y43{bottom:684.285000px;}
.y27{bottom:756.390000px;}
.y42{bottom:758.805000px;}
.y1f{bottom:774.720000px;}
.y23{bottom:828.390000px;}
.y14{bottom:925.740000px;}
.y1e{bottom:934.485000px;}
.y19{bottom:952.740000px;}
.y41{bottom:957.390000px;}
.y1d{bottom:1006.485000px;}
.y40{bottom:1031.910000px;}
.y10{bottom:1103.760000px;}
.y3f{bottom:1106.430000px;}
.y3e{bottom:1180.950000px;}
.y1a{bottom:1184.580000px;}
.y3d{bottom:1304.970000px;}
.y18{bottom:1373.505000px;}
.y3c{bottom:1379.490000px;}
.yd{bottom:1391.760000px;}
.y16{bottom:1445.505000px;}
.yb{bottom:1458.360000px;}
.y3b{bottom:1503.510000px;}
.y13{bottom:1551.600000px;}
.y3a{bottom:1578.030000px;}
.yf{bottom:1623.600000px;}
.y39{bottom:1702.050000px;}
.y38{bottom:1776.570000px;}
.y4e{bottom:1841.865000px;}
.y37{bottom:1851.120000px;}
.y36{bottom:1925.640000px;}
.y4d{bottom:1928.265000px;}
.y35{bottom:2000.160000px;}
.y4c{bottom:2014.665000px;}
.y34{bottom:2074.680000px;}
.y33{bottom:2149.200000px;}
.y32{bottom:2273.220000px;}
.y31{bottom:2347.740000px;}
.y30{bottom:2471.760000px;}
.y2f{bottom:2546.280000px;}
.y2e{bottom:2620.800000px;}
.y2d{bottom:2744.820000px;}
.y3{bottom:2929.530000px;}
.y9{bottom:3155.220000px;}
.y8{bottom:3238.020000px;}
.y7{bottom:3370.320000px;}
.y6{bottom:3502.620000px;}
.ya{bottom:3605.790000px;}
.y4b{bottom:3785.370000px;}
.y4a{bottom:3850.170000px;}
.y49{bottom:3914.970000px;}
.y2{bottom:3966.195000px;}
.y5{bottom:4096.515000px;}
.y4{bottom:4213.155000px;}
.hd{height:140.864062px;}
.h3{height:205.664062px;}
.h2{height:214.839844px;}
.ha{height:228.287109px;}
.h6{height:262.564453px;}
.hc{height:262.701563px;}
.h8{height:274.218750px;}
.hf{height:286.453125px;}
.he{height:294.890625px;}
.h4{height:331.751953px;}
.h5{height:442.335938px;}
.h9{height:504.180000px;}
.h7{height:604.980000px;}
.hb{height:1008.180000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w3{width:945.180000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x8{left:10.980000px;}
.x1f{left:260.999947px;}
.x2{left:268.484947px;}
.x4{left:271.514947px;}
.x1c{left:273.314947px;}
.x5{left:277.409947px;}
.x3{left:282.449947px;}
.x1d{left:327.314947px;}
.x1e{left:354.314947px;}
.x6{left:358.409947px;}
.x7{left:1658.880000px;}
.x20{left:1665.719947px;}
.x14{left:1787.759947px;}
.x19{left:1794.599947px;}
.x13{left:1846.079947px;}
.xe{left:1857.239947px;}
.x16{left:1866.419947px;}
.x1a{left:1890.359947px;}
.xd{left:1895.579947px;}
.x11{left:1974.419947px;}
.xa{left:2053.079947px;}
.x9{left:2603.880000px;}
.x10{left:2677.754947px;}
.x12{left:2719.334947px;}
.xc{left:2734.454947px;}
.x18{left:2738.414947px;}
.x17{left:2828.594947px;}
.xf{left:2875.394947px;}
.x15{left:2909.414947px;}
.x1b{left:2940.374947px;}
.xb{left:2983.394947px;}
.x1{left:3035.054947px;}
@media print{
.v2{vertical-align:-57.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:57.600000pt;}
.lsb{letter-spacing:-22.400000pt;}
.lse{letter-spacing:-9.226667pt;}
.ls9{letter-spacing:-2.565333pt;}
.lsc{letter-spacing:-2.250667pt;}
.ls12{letter-spacing:-0.374400pt;}
.ls10{letter-spacing:-0.370667pt;}
.ls14{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.102400pt;}
.ls8{letter-spacing:-0.086400pt;}
.lsd{letter-spacing:-0.004480pt;}
.ls7{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.100267pt;}
.lsf{letter-spacing:0.105600pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.246400pt;}
.ls5{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.324267pt;}
.ls3{letter-spacing:43.264000pt;}
.ls1{letter-spacing:55.210240pt;}
.ls4{letter-spacing:86.784000pt;}
.ls0{letter-spacing:202.208000pt;}
.ws1b{word-spacing:-245.120000pt;}
.ws1e{word-spacing:-57.984000pt;}
.wsf{word-spacing:-57.856000pt;}
.ws1a{word-spacing:-55.397120pt;}
.ws10{word-spacing:-48.165120pt;}
.ws0{word-spacing:-43.392000pt;}
.ws1c{word-spacing:-43.200000pt;}
.ws1{word-spacing:-28.928000pt;}
.ws1d{word-spacing:-0.853333pt;}
.ws11{word-spacing:-0.761600pt;}
.ws18{word-spacing:-0.671360pt;}
.ws13{word-spacing:-0.536320pt;}
.ws4{word-spacing:-0.462720pt;}
.ws15{word-spacing:-0.400640pt;}
.ws14{word-spacing:-0.387200pt;}
.ws9{word-spacing:-0.282880pt;}
.ws12{word-spacing:-0.112640pt;}
.wsd{word-spacing:-0.076160pt;}
.wse{word-spacing:-0.064000pt;}
.wsa{word-spacing:-0.037120pt;}
.ws1f{word-spacing:0.000000pt;}
.ws16{word-spacing:0.186667pt;}
.ws6{word-spacing:0.225920pt;}
.ws3{word-spacing:0.282240pt;}
.ws19{word-spacing:0.372480pt;}
.ws2{word-spacing:0.600320pt;}
.ws17{word-spacing:0.773120pt;}
.wsb{word-spacing:0.932480pt;}
.ws8{word-spacing:4.633387pt;}
.ws5{word-spacing:5.706880pt;}
.wsc{word-spacing:18.762880pt;}
.ws7{word-spacing:45.382400pt;}
._6{margin-left:-34.005333pt;}
._5{margin-left:-24.576000pt;}
._a{margin-left:-22.720000pt;}
._8{margin-left:-20.736000pt;}
._13{margin-left:-17.049600pt;}
._15{margin-left:-15.680000pt;}
._e{margin-left:-14.688000pt;}
._18{margin-left:-13.664000pt;}
._0{margin-left:-12.096000pt;}
._7{margin-left:-7.680000pt;}
._14{margin-left:-6.752000pt;}
._9{margin-left:-5.792000pt;}
._c{margin-left:-4.902400pt;}
._4{margin-left:-3.616000pt;}
._2{margin-left:-2.560000pt;}
._3{margin-left:-1.312000pt;}
._1{width:1.152000pt;}
._11{width:2.160000pt;}
._16{width:43.776000pt;}
._17{width:44.795733pt;}
._10{width:46.882560pt;}
._12{width:49.101440pt;}
._d{width:55.825493pt;}
._b{width:56.833067pt;}
._f{width:66.016000pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:192.000000pt;}
.fs6{font-size:213.120000pt;}
.fs4{font-size:245.120000pt;}
.fs7{font-size:245.248000pt;}
.fs5{font-size:256.000000pt;}
.fs2{font-size:288.000000pt;}
.fs3{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:54.400000pt;}
.y1{bottom:98.880000pt;}
.y28{bottom:116.000000pt;}
.y47{bottom:164.640000pt;}
.y22{bottom:205.946667pt;}
.y20{bottom:206.013333pt;}
.ye{bottom:206.080000pt;}
.yc{bottom:247.426667pt;}
.y24{bottom:274.400000pt;}
.y46{bottom:274.906667pt;}
.y45{bottom:388.026667pt;}
.y26{bottom:397.946667pt;}
.y17{bottom:398.013333pt;}
.y2b{bottom:398.053333pt;}
.y12{bottom:398.080000pt;}
.y1c{bottom:432.640000pt;}
.y25{bottom:461.946667pt;}
.y15{bottom:462.013333pt;}
.y29{bottom:462.053333pt;}
.y11{bottom:462.080000pt;}
.y2c{bottom:514.053333pt;}
.y21{bottom:530.400000pt;}
.y44{bottom:542.013333pt;}
.y2a{bottom:578.053333pt;}
.y1b{bottom:590.880000pt;}
.y43{bottom:608.253333pt;}
.y27{bottom:672.346667pt;}
.y42{bottom:674.493333pt;}
.y1f{bottom:688.640000pt;}
.y23{bottom:736.346667pt;}
.y14{bottom:822.880000pt;}
.y1e{bottom:830.653333pt;}
.y19{bottom:846.880000pt;}
.y41{bottom:851.013333pt;}
.y1d{bottom:894.653333pt;}
.y40{bottom:917.253333pt;}
.y10{bottom:981.120000pt;}
.y3f{bottom:983.493333pt;}
.y3e{bottom:1049.733333pt;}
.y1a{bottom:1052.960000pt;}
.y3d{bottom:1159.973333pt;}
.y18{bottom:1220.893333pt;}
.y3c{bottom:1226.213333pt;}
.yd{bottom:1237.120000pt;}
.y16{bottom:1284.893333pt;}
.yb{bottom:1296.320000pt;}
.y3b{bottom:1336.453333pt;}
.y13{bottom:1379.200000pt;}
.y3a{bottom:1402.693333pt;}
.yf{bottom:1443.200000pt;}
.y39{bottom:1512.933333pt;}
.y38{bottom:1579.173333pt;}
.y4e{bottom:1637.213333pt;}
.y37{bottom:1645.440000pt;}
.y36{bottom:1711.680000pt;}
.y4d{bottom:1714.013333pt;}
.y35{bottom:1777.920000pt;}
.y4c{bottom:1790.813333pt;}
.y34{bottom:1844.160000pt;}
.y33{bottom:1910.400000pt;}
.y32{bottom:2020.640000pt;}
.y31{bottom:2086.880000pt;}
.y30{bottom:2197.120000pt;}
.y2f{bottom:2263.360000pt;}
.y2e{bottom:2329.600000pt;}
.y2d{bottom:2439.840000pt;}
.y3{bottom:2604.026667pt;}
.y9{bottom:2804.640000pt;}
.y8{bottom:2878.240000pt;}
.y7{bottom:2995.840000pt;}
.y6{bottom:3113.440000pt;}
.ya{bottom:3205.146667pt;}
.y4b{bottom:3364.773333pt;}
.y4a{bottom:3422.373333pt;}
.y49{bottom:3479.973333pt;}
.y2{bottom:3525.506667pt;}
.y5{bottom:3641.346667pt;}
.y4{bottom:3745.026667pt;}
.hd{height:125.212500pt;}
.h3{height:182.812500pt;}
.h2{height:190.968750pt;}
.ha{height:202.921875pt;}
.h6{height:233.390625pt;}
.hc{height:233.512500pt;}
.h8{height:243.750000pt;}
.hf{height:254.625000pt;}
.he{height:262.125000pt;}
.h4{height:294.890625pt;}
.h5{height:393.187500pt;}
.h9{height:448.160000pt;}
.h7{height:537.760000pt;}
.hb{height:896.160000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w3{width:840.160000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x8{left:9.760000pt;}
.x1f{left:231.999953pt;}
.x2{left:238.653286pt;}
.x4{left:241.346619pt;}
.x1c{left:242.946619pt;}
.x5{left:246.586619pt;}
.x3{left:251.066619pt;}
.x1d{left:290.946619pt;}
.x1e{left:314.946619pt;}
.x6{left:318.586619pt;}
.x7{left:1474.560000pt;}
.x20{left:1480.639953pt;}
.x14{left:1589.119953pt;}
.x19{left:1595.199953pt;}
.x13{left:1640.959953pt;}
.xe{left:1650.879953pt;}
.x16{left:1659.039953pt;}
.x1a{left:1680.319953pt;}
.xd{left:1684.959953pt;}
.x11{left:1755.039953pt;}
.xa{left:1824.959953pt;}
.x9{left:2314.560000pt;}
.x10{left:2380.226619pt;}
.x12{left:2417.186619pt;}
.xc{left:2430.626619pt;}
.x18{left:2434.146619pt;}
.x17{left:2514.306619pt;}
.xf{left:2555.906619pt;}
.x15{left:2586.146619pt;}
.x1b{left:2613.666619pt;}
.xb{left:2651.906619pt;}
.x1{left:2697.826619pt;}
}




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