
    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_c22d4de30b19cbaa571b8035.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_2d7e13cc50fd2e4ff650fe84.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f461db12af1dd0217de765dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_3b6d9cdbb6ceb00bd32dafe2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_14f11056005e5f411154ccb2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_72784ffd59a9d72f988086cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_e5379279ff8d14ac78f695e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;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_ee0a5f6ecd675f5189c550ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c1f2484998b72ce0a7bdd4a6.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls5{letter-spacing:7.740000px;}
.lsa{letter-spacing:9.360000px;}
.ls3{letter-spacing:10.620000px;}
.ls7{letter-spacing:11.340000px;}
.ls1{letter-spacing:32.220000px;}
.lsb{letter-spacing:36.000000px;}
.ls0{letter-spacing:43.200000px;}
.ls9{letter-spacing:54.144000px;}
.ls6{letter-spacing:63.900000px;}
.ls8{letter-spacing:64.620000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.684800px;}
._1{width:1.135920px;}
._29{width:2.527200px;}
._5{width:3.556800px;}
._4{width:4.608000px;}
._33{width:5.887680px;}
._19{width:7.160400px;}
._22{width:8.255520px;}
._34{width:9.284640px;}
._1d{width:10.530000px;}
._16{width:12.467520px;}
._2a{width:13.646880px;}
._30{width:14.832000px;}
._6{width:16.200000px;}
._f{width:18.027360px;}
._10{width:19.492080px;}
._2c{width:22.576320px;}
._2b{width:23.587200px;}
._25{width:25.187760px;}
._1c{width:26.367120px;}
._8{width:27.883440px;}
._9{width:29.338560px;}
._e{width:30.923520px;}
._d{width:32.030400px;}
._2{width:35.832000px;}
._28{width:37.073280px;}
._7{width:39.508560px;}
._15{width:41.277600px;}
._14{width:42.541200px;}
._1f{width:43.973280px;}
._1e{width:45.236880px;}
._26{width:46.530000px;}
._32{width:49.535280px;}
._21{width:51.912720px;}
._3{width:53.640000px;}
._13{width:55.261440px;}
._12{width:56.356560px;}
._18{width:57.451680px;}
._17{width:58.799520px;}
._1a{width:60.147360px;}
._1b{width:61.158240px;}
._11{width:62.337600px;}
._23{width:64.022400px;}
._24{width:65.286000px;}
._2f{width:70.845840px;}
._a{width:72.446400px;}
._2d{width:79.691040px;}
._2e{width:80.786160px;}
._27{width:84.913920px;}
._c{width:85.924800px;}
._b{width:87.272640px;}
._20{width:88.620480px;}
._31{width:89.906640px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:29.376000px;}
.y2{bottom:31.176000px;}
.y4f{bottom:83.916000px;}
.y2b{bottom:106.776000px;}
.y4e{bottom:111.636000px;}
.y2a{bottom:134.496000px;}
.y4d{bottom:139.356000px;}
.y29{bottom:162.390000px;}
.y4c{bottom:167.250000px;}
.y28{bottom:190.110000px;}
.y4b{bottom:194.970000px;}
.y27{bottom:217.830000px;}
.y4a{bottom:222.690000px;}
.y26{bottom:245.730000px;}
.y49{bottom:250.410000px;}
.y25{bottom:273.450000px;}
.y48{bottom:278.310000px;}
.y24{bottom:301.215000px;}
.y47{bottom:306.075000px;}
.y23{bottom:328.935000px;}
.y46{bottom:333.795000px;}
.y22{bottom:356.835000px;}
.y45{bottom:361.695000px;}
.y21{bottom:384.555000px;}
.y44{bottom:389.415000px;}
.y20{bottom:412.275000px;}
.y43{bottom:417.135000px;}
.y1f{bottom:440.175000px;}
.y42{bottom:444.855000px;}
.y1e{bottom:467.895000px;}
.y41{bottom:472.755000px;}
.y1d{bottom:495.615000px;}
.y40{bottom:500.475000px;}
.y1c{bottom:523.335000px;}
.y3f{bottom:528.195000px;}
.y1b{bottom:551.235000px;}
.y3e{bottom:555.915000px;}
.y1a{bottom:578.985000px;}
.y3d{bottom:583.845000px;}
.y65{bottom:593.385000px;}
.y19{bottom:606.705000px;}
.y3c{bottom:611.565000px;}
.y64{bottom:616.965000px;}
.y18{bottom:634.425000px;}
.y63{bottom:637.665000px;}
.y3b{bottom:639.285000px;}
.y62{bottom:658.365000px;}
.y17{bottom:662.325000px;}
.y3a{bottom:667.185000px;}
.y61{bottom:679.065000px;}
.y16{bottom:690.045000px;}
.y39{bottom:694.905000px;}
.y60{bottom:699.765000px;}
.y15{bottom:717.765000px;}
.y5f{bottom:720.465000px;}
.y38{bottom:722.625000px;}
.y5e{bottom:741.165000px;}
.y14{bottom:745.665000px;}
.y37{bottom:750.345000px;}
.y5d{bottom:761.865000px;}
.y13{bottom:769.245000px;}
.y36{bottom:778.245000px;}
.y5c{bottom:782.565000px;}
.y12{bottom:789.945000px;}
.y5b{bottom:803.265000px;}
.y35{bottom:805.965000px;}
.y11{bottom:810.645000px;}
.y5a{bottom:823.965000px;}
.y10{bottom:831.345000px;}
.y34{bottom:833.685000px;}
.y59{bottom:844.665000px;}
.yf{bottom:852.090000px;}
.y33{bottom:861.630000px;}
.y58{bottom:865.410000px;}
.ye{bottom:872.790000px;}
.y57{bottom:886.110000px;}
.y32{bottom:889.350000px;}
.yd{bottom:893.490000px;}
.y56{bottom:906.810000px;}
.yc{bottom:914.190000px;}
.y31{bottom:917.070000px;}
.y55{bottom:927.510000px;}
.yb{bottom:934.710000px;}
.y30{bottom:944.790000px;}
.y54{bottom:948.210000px;}
.y53{bottom:968.910000px;}
.y2f{bottom:972.690000px;}
.ya{bottom:976.110000px;}
.y52{bottom:989.610000px;}
.y9{bottom:996.810000px;}
.y2e{bottom:1000.410000px;}
.y51{bottom:1010.310000px;}
.y8{bottom:1017.510000px;}
.y2d{bottom:1028.130000px;}
.y50{bottom:1031.010000px;}
.y7{bottom:1038.210000px;}
.y2c{bottom:1055.850000px;}
.y6{bottom:1059.630000px;}
.y5{bottom:1083.750000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.hc{height:50.484375px;}
.h5{height:58.038398px;}
.ha{height:59.066719px;}
.h9{height:59.343750px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.hb{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.996000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.xb{left:117.035987px;}
.x9{left:138.995987px;}
.x4{left:149.255987px;}
.x8{left:201.989987px;}
.x5{left:245.549987px;}
.x7{left:328.754987px;}
.xa{left:354.854987px;}
.x2{left:409.755000px;}
.x6{left:446.474987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls5{letter-spacing:6.880000pt;}
.lsa{letter-spacing:8.320000pt;}
.ls3{letter-spacing:9.440000pt;}
.ls7{letter-spacing:10.080000pt;}
.ls1{letter-spacing:28.640000pt;}
.lsb{letter-spacing:32.000000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls9{letter-spacing:48.128000pt;}
.ls6{letter-spacing:56.800000pt;}
.ls8{letter-spacing:57.440000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.497600pt;}
._1{width:1.009707pt;}
._29{width:2.246400pt;}
._5{width:3.161600pt;}
._4{width:4.096000pt;}
._33{width:5.233493pt;}
._19{width:6.364800pt;}
._22{width:7.338240pt;}
._34{width:8.253013pt;}
._1d{width:9.360000pt;}
._16{width:11.082240pt;}
._2a{width:12.130560pt;}
._30{width:13.184000pt;}
._6{width:14.400000pt;}
._f{width:16.024320pt;}
._10{width:17.326293pt;}
._2c{width:20.067840pt;}
._2b{width:20.966400pt;}
._25{width:22.389120pt;}
._1c{width:23.437440pt;}
._8{width:24.785280pt;}
._9{width:26.078720pt;}
._e{width:27.487573pt;}
._d{width:28.471467pt;}
._2{width:31.850667pt;}
._28{width:32.954027pt;}
._7{width:35.118720pt;}
._15{width:36.691200pt;}
._14{width:37.814400pt;}
._1f{width:39.087360pt;}
._1e{width:40.210560pt;}
._26{width:41.360000pt;}
._32{width:44.031360pt;}
._21{width:46.144640pt;}
._3{width:47.680000pt;}
._13{width:49.121280pt;}
._12{width:50.094720pt;}
._18{width:51.068160pt;}
._17{width:52.266240pt;}
._1a{width:53.464320pt;}
._1b{width:54.362880pt;}
._11{width:55.411200pt;}
._23{width:56.908800pt;}
._24{width:58.032000pt;}
._2f{width:62.974080pt;}
._a{width:64.396800pt;}
._2d{width:70.836480pt;}
._2e{width:71.809920pt;}
._27{width:75.479040pt;}
._c{width:76.377600pt;}
._b{width:77.575680pt;}
._20{width:78.773760pt;}
._31{width:79.917013pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:26.112000pt;}
.y2{bottom:27.712000pt;}
.y4f{bottom:74.592000pt;}
.y2b{bottom:94.912000pt;}
.y4e{bottom:99.232000pt;}
.y2a{bottom:119.552000pt;}
.y4d{bottom:123.872000pt;}
.y29{bottom:144.346667pt;}
.y4c{bottom:148.666667pt;}
.y28{bottom:168.986667pt;}
.y4b{bottom:173.306667pt;}
.y27{bottom:193.626667pt;}
.y4a{bottom:197.946667pt;}
.y26{bottom:218.426667pt;}
.y49{bottom:222.586667pt;}
.y25{bottom:243.066667pt;}
.y48{bottom:247.386667pt;}
.y24{bottom:267.746667pt;}
.y47{bottom:272.066667pt;}
.y23{bottom:292.386667pt;}
.y46{bottom:296.706667pt;}
.y22{bottom:317.186667pt;}
.y45{bottom:321.506667pt;}
.y21{bottom:341.826667pt;}
.y44{bottom:346.146667pt;}
.y20{bottom:366.466667pt;}
.y43{bottom:370.786667pt;}
.y1f{bottom:391.266667pt;}
.y42{bottom:395.426667pt;}
.y1e{bottom:415.906667pt;}
.y41{bottom:420.226667pt;}
.y1d{bottom:440.546667pt;}
.y40{bottom:444.866667pt;}
.y1c{bottom:465.186667pt;}
.y3f{bottom:469.506667pt;}
.y1b{bottom:489.986667pt;}
.y3e{bottom:494.146667pt;}
.y1a{bottom:514.653333pt;}
.y3d{bottom:518.973333pt;}
.y65{bottom:527.453333pt;}
.y19{bottom:539.293333pt;}
.y3c{bottom:543.613333pt;}
.y64{bottom:548.413333pt;}
.y18{bottom:563.933333pt;}
.y63{bottom:566.813333pt;}
.y3b{bottom:568.253333pt;}
.y62{bottom:585.213333pt;}
.y17{bottom:588.733333pt;}
.y3a{bottom:593.053333pt;}
.y61{bottom:603.613333pt;}
.y16{bottom:613.373333pt;}
.y39{bottom:617.693333pt;}
.y60{bottom:622.013333pt;}
.y15{bottom:638.013333pt;}
.y5f{bottom:640.413333pt;}
.y38{bottom:642.333333pt;}
.y5e{bottom:658.813333pt;}
.y14{bottom:662.813333pt;}
.y37{bottom:666.973333pt;}
.y5d{bottom:677.213333pt;}
.y13{bottom:683.773333pt;}
.y36{bottom:691.773333pt;}
.y5c{bottom:695.613333pt;}
.y12{bottom:702.173333pt;}
.y5b{bottom:714.013333pt;}
.y35{bottom:716.413333pt;}
.y11{bottom:720.573333pt;}
.y5a{bottom:732.413333pt;}
.y10{bottom:738.973333pt;}
.y34{bottom:741.053333pt;}
.y59{bottom:750.813333pt;}
.yf{bottom:757.413333pt;}
.y33{bottom:765.893333pt;}
.y58{bottom:769.253333pt;}
.ye{bottom:775.813333pt;}
.y57{bottom:787.653333pt;}
.y32{bottom:790.533333pt;}
.yd{bottom:794.213333pt;}
.y56{bottom:806.053333pt;}
.yc{bottom:812.613333pt;}
.y31{bottom:815.173333pt;}
.y55{bottom:824.453333pt;}
.yb{bottom:830.853333pt;}
.y30{bottom:839.813333pt;}
.y54{bottom:842.853333pt;}
.y53{bottom:861.253333pt;}
.y2f{bottom:864.613333pt;}
.ya{bottom:867.653333pt;}
.y52{bottom:879.653333pt;}
.y9{bottom:886.053333pt;}
.y2e{bottom:889.253333pt;}
.y51{bottom:898.053333pt;}
.y8{bottom:904.453333pt;}
.y2d{bottom:913.893333pt;}
.y50{bottom:916.453333pt;}
.y7{bottom:922.853333pt;}
.y2c{bottom:938.533333pt;}
.y6{bottom:941.893333pt;}
.y5{bottom:963.333333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.hc{height:44.875000pt;}
.h5{height:51.589687pt;}
.ha{height:52.503750pt;}
.h9{height:52.750000pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.hb{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.552000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.xb{left:104.031988pt;}
.x9{left:123.551988pt;}
.x4{left:132.671988pt;}
.x8{left:179.546655pt;}
.x5{left:218.266655pt;}
.x7{left:292.226655pt;}
.xa{left:315.426655pt;}
.x2{left:364.226667pt;}
.x6{left:396.866655pt;}
}




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