
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_b58ca1c6f6951a5e6a58ee83.woff2')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_2d83c48630e192bab3d13460.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1c7063fb9cba6f03fd118fa6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a1474195b7dae51cfeeff063.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_fdb007b3ce12cdfec6866390.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.414000px;}
.lsd{letter-spacing:-0.240600px;}
.lse{letter-spacing:-0.214800px;}
.lsb{letter-spacing:-0.115800px;}
.ls11{letter-spacing:-0.107400px;}
.ls9{letter-spacing:-0.067200px;}
.lsf{letter-spacing:-0.064800px;}
.ls5{letter-spacing:-0.058320px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.023760px;}
.ls12{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.140400px;}
.ls17{letter-spacing:0.174000px;}
.ls1a{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.269760px;}
.ls10{letter-spacing:0.288600px;}
.ls13{letter-spacing:0.306000px;}
.ls15{letter-spacing:0.314400px;}
.ls1b{letter-spacing:0.471600px;}
.ls6{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.678240px;}
.lsa{letter-spacing:0.858000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls19{letter-spacing:12.186720px;}
.ls18{letter-spacing:42.426720px;}
.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:-41.040000px;}
.ws4{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.363760px;}
.ws3{word-spacing:-14.165760px;}
.wse{word-spacing:-13.977360px;}
.wsc{word-spacing:-13.820160px;}
.wsd{word-spacing:-13.811760px;}
.ws5{word-spacing:-13.646160px;}
.ws2{word-spacing:-13.505760px;}
.ws1{word-spacing:-13.447440px;}
.ws6{word-spacing:-13.438560px;}
.ws8{word-spacing:-13.389960px;}
.wsb{word-spacing:-13.290960px;}
.wsa{word-spacing:-13.265160px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-1315.229280px;}
._1{margin-left:-1207.355760px;}
._3{margin-left:-908.540160px;}
._5{margin-left:-525.454320px;}
._12{margin-left:-3.406320px;}
._2{margin-left:-2.211120px;}
._6{margin-left:-1.059840px;}
._0{width:1.394400px;}
._b{width:3.076560px;}
._10{width:4.462080px;}
._11{width:5.557680px;}
._15{width:6.672000px;}
._14{width:8.353440px;}
._16{width:9.740880px;}
._1a{width:11.015760px;}
._d{width:12.191040px;}
._c{width:14.623200px;}
._f{width:15.819120px;}
._e{width:17.330400px;}
._13{width:18.338400px;}
._19{width:19.533360px;}
._18{width:21.433920px;}
._17{width:22.529520px;}
._7{width:23.556960px;}
._8{width:24.598560px;}
._1b{width:27.429840px;}
._1c{width:28.521600px;}
._9{width:468.468480px;}
._a{width:721.074240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.416000px;}
.y32{bottom:90.756000px;}
.y73{bottom:96.156000px;}
.y72{bottom:100.296000px;}
.y66{bottom:109.296000px;}
.y31{bottom:111.816000px;}
.y71{bottom:121.356000px;}
.y65{bottom:130.356000px;}
.y30{bottom:132.696000px;}
.y70{bottom:142.416000px;}
.y64{bottom:151.410000px;}
.y2f{bottom:153.750000px;}
.y6f{bottom:163.470000px;}
.y63{bottom:172.470000px;}
.y2e{bottom:174.810000px;}
.y6e{bottom:184.530000px;}
.y62{bottom:193.530000px;}
.y2d{bottom:195.870000px;}
.y6d{bottom:205.590000px;}
.y61{bottom:214.590000px;}
.y2c{bottom:216.930000px;}
.y6c{bottom:226.650000px;}
.y60{bottom:235.650000px;}
.y2b{bottom:237.990000px;}
.y6b{bottom:247.710000px;}
.y5f{bottom:256.710000px;}
.y2a{bottom:259.050000px;}
.y6a{bottom:268.770000px;}
.y5e{bottom:277.770000px;}
.y29{bottom:280.110000px;}
.y69{bottom:289.875000px;}
.y5d{bottom:298.875000px;}
.y28{bottom:301.215000px;}
.y68{bottom:310.935000px;}
.y5c{bottom:319.935000px;}
.y27{bottom:322.275000px;}
.y67{bottom:331.995000px;}
.y5b{bottom:340.995000px;}
.y26{bottom:343.335000px;}
.y5a{bottom:362.055000px;}
.y25{bottom:364.395000px;}
.y59{bottom:383.115000px;}
.y24{bottom:385.455000px;}
.y58{bottom:404.175000px;}
.y23{bottom:406.515000px;}
.y57{bottom:425.235000px;}
.y22{bottom:427.575000px;}
.y56{bottom:446.295000px;}
.y21{bottom:451.155000px;}
.y55{bottom:467.355000px;}
.y20{bottom:472.035000px;}
.y54{bottom:488.415000px;}
.y1f{bottom:493.095000px;}
.y53{bottom:509.475000px;}
.y1e{bottom:514.155000px;}
.y52{bottom:530.535000px;}
.y1d{bottom:535.215000px;}
.y51{bottom:551.595000px;}
.y1c{bottom:556.275000px;}
.y50{bottom:572.685000px;}
.y1b{bottom:577.365000px;}
.y4f{bottom:593.745000px;}
.y1a{bottom:598.425000px;}
.y4e{bottom:614.805000px;}
.y19{bottom:619.485000px;}
.y4d{bottom:635.865000px;}
.y18{bottom:640.545000px;}
.y4c{bottom:656.925000px;}
.y17{bottom:661.605000px;}
.y4b{bottom:677.985000px;}
.y16{bottom:682.665000px;}
.y4a{bottom:699.045000px;}
.y15{bottom:703.725000px;}
.y49{bottom:720.105000px;}
.y14{bottom:724.785000px;}
.y48{bottom:741.165000px;}
.y13{bottom:745.845000px;}
.y47{bottom:762.225000px;}
.y12{bottom:766.905000px;}
.y46{bottom:783.285000px;}
.y11{bottom:787.785000px;}
.y45{bottom:804.345000px;}
.y10{bottom:808.845000px;}
.y44{bottom:825.405000px;}
.yf{bottom:829.905000px;}
.y43{bottom:846.465000px;}
.ye{bottom:851.010000px;}
.y42{bottom:867.570000px;}
.yd{bottom:872.070000px;}
.y41{bottom:888.630000px;}
.yc{bottom:895.650000px;}
.y40{bottom:909.690000px;}
.yb{bottom:916.530000px;}
.y3f{bottom:930.570000px;}
.ya{bottom:938.490000px;}
.y3e{bottom:951.630000px;}
.y9{bottom:960.810000px;}
.y3d{bottom:972.690000px;}
.y8{bottom:986.010000px;}
.y3c{bottom:993.750000px;}
.y3b{bottom:1014.810000px;}
.y7{bottom:1019.670000px;}
.y3a{bottom:1035.870000px;}
.y39{bottom:1056.930000px;}
.y5{bottom:1058.910000px;}
.y38{bottom:1077.990000px;}
.y4{bottom:1088.970000px;}
.y37{bottom:1099.050000px;}
.y3{bottom:1119.030000px;}
.y36{bottom:1120.110000px;}
.y35{bottom:1141.200000px;}
.y2{bottom:1149.120000px;}
.y34{bottom:1162.260000px;}
.y1{bottom:1182.420000px;}
.y33{bottom:1193.220000px;}
.h2{height:56.146289px;}
.h3{height:59.439023px;}
.h6{height:61.189805px;}
.h8{height:61.423863px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:51.839987px;}
.x2{left:52.919987px;}
.x1{left:53.999987px;}
.x6{left:68.399987px;}
.x7{left:70.199987px;}
.x4{left:74.519987px;}
.x5{left:75.599987px;}
.x8{left:80.999987px;}
.x9{left:108.035987px;}
.xa{left:839.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.368000pt;}
.lsd{letter-spacing:-0.213867pt;}
.lse{letter-spacing:-0.190933pt;}
.lsb{letter-spacing:-0.102933pt;}
.ls11{letter-spacing:-0.095467pt;}
.ls9{letter-spacing:-0.059733pt;}
.lsf{letter-spacing:-0.057600pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.021120pt;}
.ls12{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.124800pt;}
.ls17{letter-spacing:0.154667pt;}
.ls1a{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.239787pt;}
.ls10{letter-spacing:0.256533pt;}
.ls13{letter-spacing:0.272000pt;}
.ls15{letter-spacing:0.279467pt;}
.ls1b{letter-spacing:0.419200pt;}
.ls6{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.602880pt;}
.lsa{letter-spacing:0.762667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls19{letter-spacing:10.832640pt;}
.ls18{letter-spacing:37.712640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws7{word-spacing:-12.767787pt;}
.ws3{word-spacing:-12.591787pt;}
.wse{word-spacing:-12.424320pt;}
.wsc{word-spacing:-12.284587pt;}
.wsd{word-spacing:-12.277120pt;}
.ws5{word-spacing:-12.129920pt;}
.ws2{word-spacing:-12.005120pt;}
.ws1{word-spacing:-11.953280pt;}
.ws6{word-spacing:-11.945387pt;}
.ws8{word-spacing:-11.902187pt;}
.wsb{word-spacing:-11.814187pt;}
.wsa{word-spacing:-11.791253pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-1169.092693pt;}
._1{margin-left:-1073.205120pt;}
._3{margin-left:-807.591253pt;}
._5{margin-left:-467.070507pt;}
._12{margin-left:-3.027840pt;}
._2{margin-left:-1.965440pt;}
._6{margin-left:-0.942080pt;}
._0{width:1.239467pt;}
._b{width:2.734720pt;}
._10{width:3.966293pt;}
._11{width:4.940160pt;}
._15{width:5.930667pt;}
._14{width:7.425280pt;}
._16{width:8.658560pt;}
._1a{width:9.791787pt;}
._d{width:10.836480pt;}
._c{width:12.998400pt;}
._f{width:14.061440pt;}
._e{width:15.404800pt;}
._13{width:16.300800pt;}
._19{width:17.362987pt;}
._18{width:19.052373pt;}
._17{width:20.026240pt;}
._7{width:20.939520pt;}
._8{width:21.865387pt;}
._1b{width:24.382080pt;}
._1c{width:25.352533pt;}
._9{width:416.416427pt;}
._a{width:640.954880pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.592000pt;}
.y32{bottom:80.672000pt;}
.y73{bottom:85.472000pt;}
.y72{bottom:89.152000pt;}
.y66{bottom:97.152000pt;}
.y31{bottom:99.392000pt;}
.y71{bottom:107.872000pt;}
.y65{bottom:115.872000pt;}
.y30{bottom:117.952000pt;}
.y70{bottom:126.592000pt;}
.y64{bottom:134.586667pt;}
.y2f{bottom:136.666667pt;}
.y6f{bottom:145.306667pt;}
.y63{bottom:153.306667pt;}
.y2e{bottom:155.386667pt;}
.y6e{bottom:164.026667pt;}
.y62{bottom:172.026667pt;}
.y2d{bottom:174.106667pt;}
.y6d{bottom:182.746667pt;}
.y61{bottom:190.746667pt;}
.y2c{bottom:192.826667pt;}
.y6c{bottom:201.466667pt;}
.y60{bottom:209.466667pt;}
.y2b{bottom:211.546667pt;}
.y6b{bottom:220.186667pt;}
.y5f{bottom:228.186667pt;}
.y2a{bottom:230.266667pt;}
.y6a{bottom:238.906667pt;}
.y5e{bottom:246.906667pt;}
.y29{bottom:248.986667pt;}
.y69{bottom:257.666667pt;}
.y5d{bottom:265.666667pt;}
.y28{bottom:267.746667pt;}
.y68{bottom:276.386667pt;}
.y5c{bottom:284.386667pt;}
.y27{bottom:286.466667pt;}
.y67{bottom:295.106667pt;}
.y5b{bottom:303.106667pt;}
.y26{bottom:305.186667pt;}
.y5a{bottom:321.826667pt;}
.y25{bottom:323.906667pt;}
.y59{bottom:340.546667pt;}
.y24{bottom:342.626667pt;}
.y58{bottom:359.266667pt;}
.y23{bottom:361.346667pt;}
.y57{bottom:377.986667pt;}
.y22{bottom:380.066667pt;}
.y56{bottom:396.706667pt;}
.y21{bottom:401.026667pt;}
.y55{bottom:415.426667pt;}
.y20{bottom:419.586667pt;}
.y54{bottom:434.146667pt;}
.y1f{bottom:438.306667pt;}
.y53{bottom:452.866667pt;}
.y1e{bottom:457.026667pt;}
.y52{bottom:471.586667pt;}
.y1d{bottom:475.746667pt;}
.y51{bottom:490.306667pt;}
.y1c{bottom:494.466667pt;}
.y50{bottom:509.053333pt;}
.y1b{bottom:513.213333pt;}
.y4f{bottom:527.773333pt;}
.y1a{bottom:531.933333pt;}
.y4e{bottom:546.493333pt;}
.y19{bottom:550.653333pt;}
.y4d{bottom:565.213333pt;}
.y18{bottom:569.373333pt;}
.y4c{bottom:583.933333pt;}
.y17{bottom:588.093333pt;}
.y4b{bottom:602.653333pt;}
.y16{bottom:606.813333pt;}
.y4a{bottom:621.373333pt;}
.y15{bottom:625.533333pt;}
.y49{bottom:640.093333pt;}
.y14{bottom:644.253333pt;}
.y48{bottom:658.813333pt;}
.y13{bottom:662.973333pt;}
.y47{bottom:677.533333pt;}
.y12{bottom:681.693333pt;}
.y46{bottom:696.253333pt;}
.y11{bottom:700.253333pt;}
.y45{bottom:714.973333pt;}
.y10{bottom:718.973333pt;}
.y44{bottom:733.693333pt;}
.yf{bottom:737.693333pt;}
.y43{bottom:752.413333pt;}
.ye{bottom:756.453333pt;}
.y42{bottom:771.173333pt;}
.yd{bottom:775.173333pt;}
.y41{bottom:789.893333pt;}
.yc{bottom:796.133333pt;}
.y40{bottom:808.613333pt;}
.yb{bottom:814.693333pt;}
.y3f{bottom:827.173333pt;}
.ya{bottom:834.213333pt;}
.y3e{bottom:845.893333pt;}
.y9{bottom:854.053333pt;}
.y3d{bottom:864.613333pt;}
.y8{bottom:876.453333pt;}
.y3c{bottom:883.333333pt;}
.y3b{bottom:902.053333pt;}
.y7{bottom:906.373333pt;}
.y3a{bottom:920.773333pt;}
.y39{bottom:939.493333pt;}
.y5{bottom:941.253333pt;}
.y38{bottom:958.213333pt;}
.y4{bottom:967.973333pt;}
.y37{bottom:976.933333pt;}
.y3{bottom:994.693333pt;}
.y36{bottom:995.653333pt;}
.y35{bottom:1014.400000pt;}
.y2{bottom:1021.440000pt;}
.y34{bottom:1033.120000pt;}
.y1{bottom:1051.040000pt;}
.y33{bottom:1060.640000pt;}
.h2{height:49.907812pt;}
.h3{height:52.834688pt;}
.h6{height:54.390938pt;}
.h8{height:54.598989pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:46.079988pt;}
.x2{left:47.039988pt;}
.x1{left:47.999988pt;}
.x6{left:60.799988pt;}
.x7{left:62.399988pt;}
.x4{left:66.239988pt;}
.x5{left:67.199988pt;}
.x8{left:71.999988pt;}
.x9{left:96.031988pt;}
.xa{left:746.079988pt;}
}




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