
    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_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_43e772e7e6de58fa898b11ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.271494;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_65eae66f5c757bf61cdde0d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.271494;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_1f116c66b95cf5ccf454f575.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.271494;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_5b804eaee3e828c49c64e6ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.271494;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_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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:-79.200000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.lsf{letter-spacing:-0.519000px;}
.lse{letter-spacing:-0.517200px;}
.ls14{letter-spacing:-0.409200px;}
.lsb{letter-spacing:-0.331200px;}
.ls10{letter-spacing:-0.328200px;}
.ls8{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.265200px;}
.ls9{letter-spacing:-0.234000px;}
.ls16{letter-spacing:-0.198600px;}
.ls7{letter-spacing:-0.190200px;}
.ls6{letter-spacing:-0.061200px;}
.ls13{letter-spacing:-0.046080px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.149760px;}
.ls11{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.202800px;}
.lsc{letter-spacing:0.219000px;}
.ls4{letter-spacing:0.298080px;}
.lsa{letter-spacing:0.308400px;}
.ls0{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.396000px;}
.ls12{letter-spacing:59.345280px;}
.ls1{letter-spacing:1561.699920px;}
.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;}
}
.wsf{word-spacing:-66.240000px;}
.ws4{word-spacing:-20.386080px;}
.ws5{word-spacing:-16.030080px;}
.ws2{word-spacing:-14.374080px;}
.ws11{word-spacing:-14.175480px;}
.ws10{word-spacing:-14.108880px;}
.wse{word-spacing:-13.964880px;}
.ws3{word-spacing:-11.718000px;}
.ws7{word-spacing:-11.674080px;}
.ws0{word-spacing:-11.430000px;}
.ws8{word-spacing:-10.687080px;}
.ws9{word-spacing:-10.670880px;}
.ws6{word-spacing:-10.468080px;}
.wsa{word-spacing:-9.950880px;}
.wsb{word-spacing:-9.949080px;}
.wsc{word-spacing:-9.061920px;}
.ws1{word-spacing:-7.187040px;}
.wsd{word-spacing:0.000000px;}
._4{margin-left:-5.200080px;}
._1{margin-left:-3.807360px;}
._2{margin-left:-2.782080px;}
._0{margin-left:-1.722240px;}
._3{width:1.336080px;}
._f{width:2.891280px;}
._e{width:4.028640px;}
._d{width:5.030400px;}
._13{width:6.230400px;}
._6{width:7.617600px;}
._7{width:8.629200px;}
._11{width:11.527680px;}
._10{width:12.850560px;}
._8{width:15.831360px;}
._5{width:17.222400px;}
._12{width:18.812160px;}
._9{width:21.263040px;}
._a{width:22.455360px;}
._b{width:23.513760px;}
._c{width:24.896400px;}
.fc5{color:transparent;}
.fc4{color:rgb(56,86,35);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.120000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:69.822393px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y37{bottom:9.216000px;}
.y34{bottom:15.840000px;}
.y36{bottom:22.896000px;}
.y33{bottom:31.500000px;}
.y32{bottom:47.160000px;}
.y4{bottom:57.420000px;}
.y31{bottom:62.820000px;}
.y35{bottom:65.880000px;}
.y3{bottom:76.356000px;}
.y30{bottom:78.300000px;}
.y2f{bottom:93.960000px;}
.y2e{bottom:109.470000px;}
.y2d{bottom:125.130000px;}
.y25{bottom:139.356000px;}
.y2c{bottom:140.790000px;}
.y2b{bottom:156.270000px;}
.y24{bottom:171.570000px;}
.y2a{bottom:171.930000px;}
.y29{bottom:187.950000px;}
.y23{bottom:203.790000px;}
.y28{bottom:205.050000px;}
.y22{bottom:235.830000px;}
.y21{bottom:268.050000px;}
.y20{bottom:300.090000px;}
.y1f{bottom:332.310000px;}
.y1e{bottom:364.575000px;}
.y1d{bottom:396.615000px;}
.y1c{bottom:428.835000px;}
.y1b{bottom:460.875000px;}
.y1a{bottom:493.095000px;}
.y27{bottom:498.675000px;}
.y19{bottom:525.135000px;}
.y18{bottom:557.355000px;}
.y49{bottom:588.135000px;}
.y17{bottom:589.575000px;}
.y48{bottom:617.505000px;}
.y16{bottom:621.645000px;}
.y47{bottom:646.665000px;}
.y15{bottom:653.865000px;}
.y46{bottom:675.825000px;}
.y14{bottom:685.905000px;}
.y45{bottom:695.445000px;}
.y44{bottom:714.885000px;}
.y13{bottom:718.125000px;}
.y43{bottom:734.325000px;}
.y12{bottom:750.345000px;}
.y42{bottom:764.925000px;}
.y11{bottom:786.705000px;}
.y41{bottom:796.965000px;}
.y10{bottom:823.245000px;}
.y40{bottom:829.185000px;}
.yf{bottom:852.765000px;}
.y3f{bottom:861.405000px;}
.ye{bottom:870.225000px;}
.yd{bottom:892.230000px;}
.y3e{bottom:893.490000px;}
.yc{bottom:905.370000px;}
.yb{bottom:923.730000px;}
.y3d{bottom:925.710000px;}
.y3c{bottom:957.750000px;}
.ya{bottom:972.870000px;}
.y3b{bottom:989.970000px;}
.y9{bottom:1000.230000px;}
.y3a{bottom:1022.010000px;}
.y8{bottom:1027.410000px;}
.y39{bottom:1054.230000px;}
.y7{bottom:1054.770000px;}
.y6{bottom:1081.950000px;}
.y38{bottom:1086.450000px;}
.y5{bottom:1118.490000px;}
.y2{bottom:1173.960000px;}
.y26{bottom:1189.800000px;}
.y1{bottom:1194.480000px;}
.h7{height:38.373047px;}
.ha{height:39.636000px;}
.hb{height:43.595156px;}
.h2{height:44.860781px;}
.h9{height:50.359922px;}
.h4{height:56.373047px;}
.h5{height:62.386172px;}
.hc{height:65.884219px;}
.h3{height:69.150937px;}
.hd{height:72.890759px;}
.h6{height:87.941953px;}
.h8{height:229.710000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:241.815000px;}
.w4{width:505.875000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:10.800000px;}
.x6{left:127.655987px;}
.x7{left:180.749987px;}
.x12{left:191.549987px;}
.xc{left:207.749987px;}
.xd{left:234.749987px;}
.xe{left:262.649987px;}
.xf{left:288.434987px;}
.x4{left:340.814987px;}
.x2{left:361.874987px;}
.x11{left:434.954987px;}
.x10{left:438.374987px;}
.x1{left:467.924987px;}
.x9{left:620.025000px;}
.x8{left:678.209987px;}
.xb{left:801.329987px;}
.x3{left:803.309987px;}
.x5{left:808.169987px;}
@media print{
.v1{vertical-align:-70.400000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.lsf{letter-spacing:-0.461333pt;}
.lse{letter-spacing:-0.459733pt;}
.ls14{letter-spacing:-0.363733pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls10{letter-spacing:-0.291733pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.235733pt;}
.ls9{letter-spacing:-0.208000pt;}
.ls16{letter-spacing:-0.176533pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls6{letter-spacing:-0.054400pt;}
.ls13{letter-spacing:-0.040960pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.133120pt;}
.ls11{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.180267pt;}
.lsc{letter-spacing:0.194667pt;}
.ls4{letter-spacing:0.264960pt;}
.lsa{letter-spacing:0.274133pt;}
.ls0{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.352000pt;}
.ls12{letter-spacing:52.751360pt;}
.ls1{letter-spacing:1388.177707pt;}
.wsf{word-spacing:-58.880000pt;}
.ws4{word-spacing:-18.120960pt;}
.ws5{word-spacing:-14.248960pt;}
.ws2{word-spacing:-12.776960pt;}
.ws11{word-spacing:-12.600427pt;}
.ws10{word-spacing:-12.541227pt;}
.wse{word-spacing:-12.413227pt;}
.ws3{word-spacing:-10.416000pt;}
.ws7{word-spacing:-10.376960pt;}
.ws0{word-spacing:-10.160000pt;}
.ws8{word-spacing:-9.499627pt;}
.ws9{word-spacing:-9.485227pt;}
.ws6{word-spacing:-9.304960pt;}
.wsa{word-spacing:-8.845227pt;}
.wsb{word-spacing:-8.843627pt;}
.wsc{word-spacing:-8.055040pt;}
.ws1{word-spacing:-6.388480pt;}
.wsd{word-spacing:0.000000pt;}
._4{margin-left:-4.622293pt;}
._1{margin-left:-3.384320pt;}
._2{margin-left:-2.472960pt;}
._0{margin-left:-1.530880pt;}
._3{width:1.187627pt;}
._f{width:2.570027pt;}
._e{width:3.581013pt;}
._d{width:4.471467pt;}
._13{width:5.538133pt;}
._6{width:6.771200pt;}
._7{width:7.670400pt;}
._11{width:10.246827pt;}
._10{width:11.422720pt;}
._8{width:14.072320pt;}
._5{width:15.308800pt;}
._12{width:16.721920pt;}
._9{width:18.900480pt;}
._a{width:19.960320pt;}
._b{width:20.901120pt;}
._c{width:22.130133pt;}
.fs4{font-size:29.440000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:62.064349pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:8.192000pt;}
.y34{bottom:14.080000pt;}
.y36{bottom:20.352000pt;}
.y33{bottom:28.000000pt;}
.y32{bottom:41.920000pt;}
.y4{bottom:51.040000pt;}
.y31{bottom:55.840000pt;}
.y35{bottom:58.560000pt;}
.y3{bottom:67.872000pt;}
.y30{bottom:69.600000pt;}
.y2f{bottom:83.520000pt;}
.y2e{bottom:97.306667pt;}
.y2d{bottom:111.226667pt;}
.y25{bottom:123.872000pt;}
.y2c{bottom:125.146667pt;}
.y2b{bottom:138.906667pt;}
.y24{bottom:152.506667pt;}
.y2a{bottom:152.826667pt;}
.y29{bottom:167.066667pt;}
.y23{bottom:181.146667pt;}
.y28{bottom:182.266667pt;}
.y22{bottom:209.626667pt;}
.y21{bottom:238.266667pt;}
.y20{bottom:266.746667pt;}
.y1f{bottom:295.386667pt;}
.y1e{bottom:324.066667pt;}
.y1d{bottom:352.546667pt;}
.y1c{bottom:381.186667pt;}
.y1b{bottom:409.666667pt;}
.y1a{bottom:438.306667pt;}
.y27{bottom:443.266667pt;}
.y19{bottom:466.786667pt;}
.y18{bottom:495.426667pt;}
.y49{bottom:522.786667pt;}
.y17{bottom:524.066667pt;}
.y48{bottom:548.893333pt;}
.y16{bottom:552.573333pt;}
.y47{bottom:574.813333pt;}
.y15{bottom:581.213333pt;}
.y46{bottom:600.733333pt;}
.y14{bottom:609.693333pt;}
.y45{bottom:618.173333pt;}
.y44{bottom:635.453333pt;}
.y13{bottom:638.333333pt;}
.y43{bottom:652.733333pt;}
.y12{bottom:666.973333pt;}
.y42{bottom:679.933333pt;}
.y11{bottom:699.293333pt;}
.y41{bottom:708.413333pt;}
.y10{bottom:731.773333pt;}
.y40{bottom:737.053333pt;}
.yf{bottom:758.013333pt;}
.y3f{bottom:765.693333pt;}
.ye{bottom:773.533333pt;}
.yd{bottom:793.093333pt;}
.y3e{bottom:794.213333pt;}
.yc{bottom:804.773333pt;}
.yb{bottom:821.093333pt;}
.y3d{bottom:822.853333pt;}
.y3c{bottom:851.333333pt;}
.ya{bottom:864.773333pt;}
.y3b{bottom:879.973333pt;}
.y9{bottom:889.093333pt;}
.y3a{bottom:908.453333pt;}
.y8{bottom:913.253333pt;}
.y39{bottom:937.093333pt;}
.y7{bottom:937.573333pt;}
.y6{bottom:961.733333pt;}
.y38{bottom:965.733333pt;}
.y5{bottom:994.213333pt;}
.y2{bottom:1043.520000pt;}
.y26{bottom:1057.600000pt;}
.y1{bottom:1061.760000pt;}
.h7{height:34.109375pt;}
.ha{height:35.232000pt;}
.hb{height:38.751250pt;}
.h2{height:39.876250pt;}
.h9{height:44.764375pt;}
.h4{height:50.109375pt;}
.h5{height:55.454375pt;}
.hc{height:58.563750pt;}
.h3{height:61.467500pt;}
.hd{height:64.791786pt;}
.h6{height:78.170625pt;}
.h8{height:204.186667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:214.946667pt;}
.w4{width:449.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:9.600000pt;}
.x6{left:113.471988pt;}
.x7{left:160.666655pt;}
.x12{left:170.266655pt;}
.xc{left:184.666655pt;}
.xd{left:208.666655pt;}
.xe{left:233.466655pt;}
.xf{left:256.386655pt;}
.x4{left:302.946655pt;}
.x2{left:321.666655pt;}
.x11{left:386.626655pt;}
.x10{left:389.666655pt;}
.x1{left:415.933322pt;}
.x9{left:551.133333pt;}
.x8{left:602.853322pt;}
.xb{left:712.293322pt;}
.x3{left:714.053322pt;}
.x5{left:718.373322pt;}
}




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