
    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_e1dccddf7c7a6a7706f360c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979004;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_1d7cb3c321499ae513a3c318.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_156f97c8cbd5adf1015c112c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.030273;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_f817717b57e7cb1d382516e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c525be17f5c55673955ff11c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_f8966c604d557f887f85d7e7.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-99.000000px;}
.v3{vertical-align:-49.500000px;}
.v5{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:36.000000px;}
.v4{vertical-align:49.500000px;}
.v1{vertical-align:99.000000px;}
.lsc{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.228000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024900px;}
.ls5{letter-spacing:0.045000px;}
.lsa{letter-spacing:0.261000px;}
.ls1{letter-spacing:0.336000px;}
.ls0{letter-spacing:1.092000px;}
.ls9{letter-spacing:1.782000px;}
.ls8{letter-spacing:1.836000px;}
.lsb{letter-spacing:2.214000px;}
.ls3{letter-spacing:157.822500px;}
.ls4{letter-spacing:157.875000px;}
.ls6{letter-spacing:184.875000px;}
.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;}
}
.ws4{word-spacing:-106.909950px;}
.ws5{word-spacing:-106.879500px;}
.ws0{word-spacing:-65.232000px;}
.ws2{word-spacing:-43.848000px;}
.ws7{word-spacing:-35.581500px;}
.ws1{word-spacing:-34.891500px;}
.ws9{word-spacing:-34.060500px;}
.ws6{word-spacing:-33.799500px;}
.ws3{word-spacing:-22.867950px;}
.ws8{word-spacing:-22.837500px;}
.wsd{word-spacing:-12.204000px;}
.ws11{word-spacing:0.000000px;}
.wsa{word-spacing:55.410000px;}
.wsf{word-spacing:79.224000px;}
.wse{word-spacing:79.794000px;}
.ws10{word-spacing:79.974000px;}
.wsb{word-spacing:354.942000px;}
.wsc{word-spacing:377.490000px;}
._6{margin-left:-17.928000px;}
._13{margin-left:-14.454000px;}
._10{margin-left:-13.243500px;}
._d{margin-left:-11.430000px;}
._f{margin-left:-10.116000px;}
._e{margin-left:-8.380500px;}
._2{margin-left:-6.696000px;}
._9{margin-left:-5.619000px;}
._11{margin-left:-4.563000px;}
._5{margin-left:-3.456000px;}
._1{margin-left:-1.944000px;}
._4{width:1.296000px;}
._0{width:2.376000px;}
._3{width:4.320000px;}
._14{width:5.415000px;}
._7{width:6.478350px;}
._12{width:7.938000px;}
._c{width:10.584000px;}
._a{width:12.096000px;}
._8{width:24.641250px;}
._b{width:29.376000px;}
._15{width:79.920000px;}
._17{width:455.808000px;}
._16{width:461.919000px;}
.fc2{color:rgb(0,82,127);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:54.000000px;}
.fsd{font-size:54.150000px;}
.fse{font-size:63.000000px;}
.fsb{font-size:112.500000px;}
.fs5{font-size:112.650000px;}
.fs2{font-size:166.500000px;}
.fs6{font-size:166.650000px;}
.fs0{font-size:216.000000px;}
.fs1{font-size:216.150000px;}
.fsa{font-size:238.500000px;}
.fs9{font-size:238.650000px;}
.fs4{font-size:324.000000px;}
.fs3{font-size:396.000000px;}
.fs8{font-size:526.500000px;}
.fs7{font-size:526.650000px;}
.y12{bottom:-2608.170000px;}
.y9{bottom:-2590.155000px;}
.y11{bottom:-2542.905000px;}
.y8{bottom:-2524.905000px;}
.y10{bottom:-2478.750000px;}
.y7{bottom:-2460.750000px;}
.yf{bottom:-2413.500000px;}
.y6{bottom:-2395.500000px;}
.ye{bottom:-2349.375000px;}
.y5{bottom:-2331.375000px;}
.yd{bottom:-2284.125000px;}
.y4{bottom:-2266.125000px;}
.yc{bottom:-2218.845000px;}
.y3{bottom:-2200.830000px;}
.yb{bottom:-2154.720000px;}
.y2{bottom:-2136.705000px;}
.ya{bottom:-2089.455000px;}
.y1{bottom:-2071.470000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:16.950000px;}
.y16{bottom:38.287500px;}
.y57{bottom:45.705000px;}
.y56{bottom:71.880000px;}
.y15{bottom:88.912500px;}
.y4f{bottom:89.445000px;}
.y50{bottom:138.195000px;}
.y14{bottom:139.537500px;}
.y51{bottom:186.975000px;}
.y13{bottom:190.155000px;}
.y58{bottom:226.575000px;}
.y52{bottom:235.725000px;}
.y19{bottom:276.675000px;}
.y53{bottom:284.505000px;}
.y54{bottom:333.255000px;}
.y55{bottom:382.050000px;}
.y42{bottom:400.980000px;}
.y59{bottom:408.195000px;}
.y41{bottom:451.605000px;}
.y40{bottom:502.275000px;}
.y20{bottom:538.170000px;}
.y3f{bottom:552.900000px;}
.y3e{bottom:602.400000px;}
.y4d{bottom:630.975000px;}
.y3d{bottom:653.025000px;}
.y4c{bottom:681.600000px;}
.y1f{bottom:696.825000px;}
.y3c{bottom:703.650000px;}
.y4b{bottom:736.725000px;}
.y3b{bottom:754.275000px;}
.y3a{bottom:804.945000px;}
.y4e{bottom:833.625000px;}
.y1e{bottom:854.325000px;}
.y39{bottom:854.445000px;}
.y38{bottom:905.070000px;}
.y37{bottom:960.195000px;}
.y1d{bottom:1012.995000px;}
.y36{bottom:1040.100000px;}
.y35{bottom:1089.600000px;}
.y34{bottom:1152.600000px;}
.y1c{bottom:1171.650000px;}
.y33{bottom:1203.225000px;}
.y32{bottom:1253.850000px;}
.y31{bottom:1303.350000px;}
.y4a{bottom:1308.300000px;}
.y1b{bottom:1330.275000px;}
.y30{bottom:1354.020000px;}
.y49{bottom:1358.925000px;}
.y2f{bottom:1404.645000px;}
.y48{bottom:1408.425000px;}
.y2e{bottom:1455.270000px;}
.y47{bottom:1459.095000px;}
.y1a{bottom:1488.945000px;}
.y2d{bottom:1505.895000px;}
.y46{bottom:1509.720000px;}
.y2c{bottom:1555.395000px;}
.y45{bottom:1560.345000px;}
.y2b{bottom:1606.050000px;}
.y44{bottom:1610.970000px;}
.y2a{bottom:1661.175000px;}
.y43{bottom:1666.080000px;}
.y29{bottom:1728.675000px;}
.y28{bottom:1779.300000px;}
.y27{bottom:1829.925000px;}
.y26{bottom:1879.455000px;}
.y25{bottom:1930.080000px;}
.y24{bottom:1980.705000px;}
.y23{bottom:2031.330000px;}
.y22{bottom:2081.955000px;}
.y21{bottom:2137.125000px;}
.y18{bottom:2251.500000px;}
.y17{bottom:2406.330000px;}
.he{height:53.709961px;}
.hf{height:53.859155px;}
.h10{height:62.661621px;}
.h6{height:97.633667px;}
.h3{height:143.898926px;}
.ha{height:144.305420px;}
.hb{height:144.435425px;}
.h1{height:162.000000px;}
.h2{height:162.112500px;}
.hc{height:201.583740px;}
.h9{height:201.710522px;}
.h5{height:286.207031px;}
.h4{height:334.705078px;}
.hd{height:436.500000px;}
.h8{height:456.317139px;}
.h7{height:456.447144px;}
.h0{height:2538.000000px;}
.w3{width:716.625000px;}
.w2{width:3576.374947px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x4{left:32.699947px;}
.xb{left:41.280000px;}
.xc{left:71.775000px;}
.x7{left:86.737447px;}
.x8{left:93.487447px;}
.xd{left:96.795000px;}
.xf{left:104.205000px;}
.x5{left:217.829947px;}
.xe{left:236.655000px;}
.x6{left:811.199947px;}
.x3{left:925.994947px;}
.x1{left:2166.644947px;}
.x2{left:2184.674947px;}
.xa{left:2859.750000px;}
.x9{left:2899.769947px;}
@media print{
.v2{vertical-align:-88.000000pt;}
.v3{vertical-align:-44.000000pt;}
.v5{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:32.000000pt;}
.v4{vertical-align:44.000000pt;}
.v1{vertical-align:88.000000pt;}
.lsc{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.202667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.022133pt;}
.ls5{letter-spacing:0.040000pt;}
.lsa{letter-spacing:0.232000pt;}
.ls1{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.970667pt;}
.ls9{letter-spacing:1.584000pt;}
.ls8{letter-spacing:1.632000pt;}
.lsb{letter-spacing:1.968000pt;}
.ls3{letter-spacing:140.286667pt;}
.ls4{letter-spacing:140.333333pt;}
.ls6{letter-spacing:164.333333pt;}
.ws4{word-spacing:-95.031067pt;}
.ws5{word-spacing:-95.004000pt;}
.ws0{word-spacing:-57.984000pt;}
.ws2{word-spacing:-38.976000pt;}
.ws7{word-spacing:-31.628000pt;}
.ws1{word-spacing:-31.014667pt;}
.ws9{word-spacing:-30.276000pt;}
.ws6{word-spacing:-30.044000pt;}
.ws3{word-spacing:-20.327067pt;}
.ws8{word-spacing:-20.300000pt;}
.wsd{word-spacing:-10.848000pt;}
.ws11{word-spacing:0.000000pt;}
.wsa{word-spacing:49.253333pt;}
.wsf{word-spacing:70.421333pt;}
.wse{word-spacing:70.928000pt;}
.ws10{word-spacing:71.088000pt;}
.wsb{word-spacing:315.504000pt;}
.wsc{word-spacing:335.546667pt;}
._6{margin-left:-15.936000pt;}
._13{margin-left:-12.848000pt;}
._10{margin-left:-11.772000pt;}
._d{margin-left:-10.160000pt;}
._f{margin-left:-8.992000pt;}
._e{margin-left:-7.449333pt;}
._2{margin-left:-5.952000pt;}
._9{margin-left:-4.994667pt;}
._11{margin-left:-4.056000pt;}
._5{margin-left:-3.072000pt;}
._1{margin-left:-1.728000pt;}
._4{width:1.152000pt;}
._0{width:2.112000pt;}
._3{width:3.840000pt;}
._14{width:4.813333pt;}
._7{width:5.758533pt;}
._12{width:7.056000pt;}
._c{width:9.408000pt;}
._a{width:10.752000pt;}
._8{width:21.903333pt;}
._b{width:26.112000pt;}
._15{width:71.040000pt;}
._17{width:405.162667pt;}
._16{width:410.594667pt;}
.fsc{font-size:48.000000pt;}
.fsd{font-size:48.133333pt;}
.fse{font-size:56.000000pt;}
.fsb{font-size:100.000000pt;}
.fs5{font-size:100.133333pt;}
.fs2{font-size:148.000000pt;}
.fs6{font-size:148.133333pt;}
.fs0{font-size:192.000000pt;}
.fs1{font-size:192.133333pt;}
.fsa{font-size:212.000000pt;}
.fs9{font-size:212.133333pt;}
.fs4{font-size:288.000000pt;}
.fs3{font-size:352.000000pt;}
.fs8{font-size:468.000000pt;}
.fs7{font-size:468.133333pt;}
.y12{bottom:-2318.373333pt;}
.y9{bottom:-2302.360000pt;}
.y11{bottom:-2260.360000pt;}
.y8{bottom:-2244.360000pt;}
.y10{bottom:-2203.333333pt;}
.y7{bottom:-2187.333333pt;}
.yf{bottom:-2145.333333pt;}
.y6{bottom:-2129.333333pt;}
.ye{bottom:-2088.333333pt;}
.y5{bottom:-2072.333333pt;}
.yd{bottom:-2030.333333pt;}
.y4{bottom:-2014.333333pt;}
.yc{bottom:-1972.306667pt;}
.y3{bottom:-1956.293333pt;}
.yb{bottom:-1915.306667pt;}
.y2{bottom:-1899.293333pt;}
.ya{bottom:-1857.293333pt;}
.y1{bottom:-1841.306667pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:15.066667pt;}
.y16{bottom:34.033333pt;}
.y57{bottom:40.626667pt;}
.y56{bottom:63.893333pt;}
.y15{bottom:79.033333pt;}
.y4f{bottom:79.506667pt;}
.y50{bottom:122.840000pt;}
.y14{bottom:124.033333pt;}
.y51{bottom:166.200000pt;}
.y13{bottom:169.026667pt;}
.y58{bottom:201.400000pt;}
.y52{bottom:209.533333pt;}
.y19{bottom:245.933333pt;}
.y53{bottom:252.893333pt;}
.y54{bottom:296.226667pt;}
.y55{bottom:339.600000pt;}
.y42{bottom:356.426667pt;}
.y59{bottom:362.840000pt;}
.y41{bottom:401.426667pt;}
.y40{bottom:446.466667pt;}
.y20{bottom:478.373333pt;}
.y3f{bottom:491.466667pt;}
.y3e{bottom:535.466667pt;}
.y4d{bottom:560.866667pt;}
.y3d{bottom:580.466667pt;}
.y4c{bottom:605.866667pt;}
.y1f{bottom:619.400000pt;}
.y3c{bottom:625.466667pt;}
.y4b{bottom:654.866667pt;}
.y3b{bottom:670.466667pt;}
.y3a{bottom:715.506667pt;}
.y4e{bottom:741.000000pt;}
.y1e{bottom:759.400000pt;}
.y39{bottom:759.506667pt;}
.y38{bottom:804.506667pt;}
.y37{bottom:853.506667pt;}
.y1d{bottom:900.440000pt;}
.y36{bottom:924.533333pt;}
.y35{bottom:968.533333pt;}
.y34{bottom:1024.533333pt;}
.y1c{bottom:1041.466667pt;}
.y33{bottom:1069.533333pt;}
.y32{bottom:1114.533333pt;}
.y31{bottom:1158.533333pt;}
.y4a{bottom:1162.933333pt;}
.y1b{bottom:1182.466667pt;}
.y30{bottom:1203.573333pt;}
.y49{bottom:1207.933333pt;}
.y2f{bottom:1248.573333pt;}
.y48{bottom:1251.933333pt;}
.y2e{bottom:1293.573333pt;}
.y47{bottom:1296.973333pt;}
.y1a{bottom:1323.506667pt;}
.y2d{bottom:1338.573333pt;}
.y46{bottom:1341.973333pt;}
.y2c{bottom:1382.573333pt;}
.y45{bottom:1386.973333pt;}
.y2b{bottom:1427.600000pt;}
.y44{bottom:1431.973333pt;}
.y2a{bottom:1476.600000pt;}
.y43{bottom:1480.960000pt;}
.y29{bottom:1536.600000pt;}
.y28{bottom:1581.600000pt;}
.y27{bottom:1626.600000pt;}
.y26{bottom:1670.626667pt;}
.y25{bottom:1715.626667pt;}
.y24{bottom:1760.626667pt;}
.y23{bottom:1805.626667pt;}
.y22{bottom:1850.626667pt;}
.y21{bottom:1899.666667pt;}
.y18{bottom:2001.333333pt;}
.y17{bottom:2138.960000pt;}
.he{height:47.742188pt;}
.hf{height:47.874805pt;}
.h10{height:55.699219pt;}
.h6{height:86.785482pt;}
.h3{height:127.910156pt;}
.ha{height:128.271484pt;}
.hb{height:128.387044pt;}
.h1{height:144.000000pt;}
.h2{height:144.100000pt;}
.hc{height:179.185547pt;}
.h9{height:179.298242pt;}
.h5{height:254.406250pt;}
.h4{height:297.515625pt;}
.hd{height:388.000000pt;}
.h8{height:405.615234pt;}
.h7{height:405.730794pt;}
.h0{height:2256.000000pt;}
.w3{width:637.000000pt;}
.w2{width:3178.999953pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x4{left:29.066619pt;}
.xb{left:36.693333pt;}
.xc{left:63.800000pt;}
.x7{left:77.099953pt;}
.x8{left:83.099953pt;}
.xd{left:86.040000pt;}
.xf{left:92.626667pt;}
.x5{left:193.626619pt;}
.xe{left:210.360000pt;}
.x6{left:721.066619pt;}
.x3{left:823.106619pt;}
.x1{left:1925.906619pt;}
.x2{left:1941.933286pt;}
.xa{left:2542.000000pt;}
.x9{left:2577.573286pt;}
}




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