
    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_181936ea2f4ad9a422ab8b39.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.012695;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_6cd42a310a57b83e86d6afb8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_3fbb26c07ef4c81306486fd0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.021484;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_eadc8d827fa8a7668472268d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.985352;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_4cbc41a487c0293513476c77.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_1376c7cdc1f626703d0a5514.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_151eed2e17d84dedc653e088.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.985352;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_1ecf05bc291b48f83324135e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.917480;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_70f86be214140b9dbe9f588e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989000;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:ffa;src:url('chunks/assets/font_ecc20936cf9284f13cde87f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.975098;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);}
.m2{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:-6.200091px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014054px;}
.ls2{letter-spacing:108.028160px;}
.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;}
}
.ws2{word-spacing:-141.696005px;}
.ws8{word-spacing:-35.712001px;}
.ws7{word-spacing:-33.948000px;}
.wsa{word-spacing:-32.736002px;}
.ws3{word-spacing:-29.760000px;}
.ws5{word-spacing:-24.439147px;}
.ws0{word-spacing:-23.808002px;}
.ws6{word-spacing:-18.439601px;}
.ws4{word-spacing:-17.856001px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:813.734325px;}
._8{margin-left:-54.144002px;}
._7{margin-left:-47.232002px;}
._6{margin-left:-17.280001px;}
._3{margin-left:-8.400000px;}
._b{margin-left:-5.886000px;}
._1{margin-left:-4.452000px;}
._4{margin-left:-3.024000px;}
._0{margin-left:-1.980000px;}
._5{width:1.062000px;}
._2{width:2.178000px;}
._9{width:108.032469px;}
._a{width:431.232512px;}
.fc3{color:rgb(111,168,220);}
.fc2{color:rgb(224,102,102);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.000002px;}
.fs3{font-size:48.000003px;}
.fs8{font-size:51.000000px;}
.fsb{font-size:54.000002px;}
.fs0{font-size:60.000000px;}
.fs10{font-size:65.157599px;}
.fs2{font-size:66.000004px;}
.fse{font-size:72.000002px;}
.fs12{font-size:74.020210px;}
.fs1{font-size:84.000000px;}
.fs11{font-size:86.357410px;}
.fs5{font-size:96.000006px;}
.fs7{font-size:108.000003px;}
.fsa{font-size:114.000007px;}
.fsd{font-size:120.000001px;}
.fs13{font-size:126.000004px;}
.fs15{font-size:132.000007px;}
.fs14{font-size:138.000001px;}
.fs4{font-size:144.000005px;}
.fsc{font-size:156.000011px;}
.fsf{font-size:192.000012px;}
.fs16{font-size:335.999999px;}
.fs9{font-size:576.000018px;}
.y46{bottom:-1.382306px;}
.y0{bottom:0.000000px;}
.y14{bottom:18.541761px;}
.y10{bottom:18.564552px;}
.ya{bottom:19.052812px;}
.y6{bottom:22.635230px;}
.yd{bottom:23.545130px;}
.y45{bottom:27.440864px;}
.y19{bottom:27.967263px;}
.y47{bottom:28.586715px;}
.y13{bottom:34.741760px;}
.y5{bottom:37.035229px;}
.y1f{bottom:42.856969px;}
.y20{bottom:43.873812px;}
.yf{bottom:47.072121px;}
.yc{bottom:52.052698px;}
.y18{bottom:69.367258px;}
.y44{bottom:70.640870px;}
.y42{bottom:74.993474px;}
.y36{bottom:76.152736px;}
.ye{bottom:79.685984px;}
.y4{bottom:80.412290px;}
.y2b{bottom:96.239900px;}
.y4b{bottom:97.182794px;}
.y3{bottom:100.212288px;}
.y41{bottom:101.046359px;}
.y35{bottom:112.152737px;}
.y43{bottom:113.840872px;}
.y4a{bottom:115.182794px;}
.y2a{bottom:118.739900px;}
.y2{bottom:121.092287px;}
.y40{bottom:144.246360px;}
.y1e{bottom:162.816117px;}
.y34{bottom:163.152746px;}
.y4f{bottom:182.627716px;}
.y9{bottom:191.989285px;}
.y33{bottom:199.152747px;}
.y2c{bottom:206.024063px;}
.y12{bottom:213.889004px;}
.y8{bottom:220.789276px;}
.y32{bottom:235.152749px;}
.y1c{bottom:253.975489px;}
.y11{bottom:260.308215px;}
.y7{bottom:261.469283px;}
.y31{bottom:271.152750px;}
.y29{bottom:273.400687px;}
.y4d{bottom:280.990738px;}
.y23{bottom:291.795303px;}
.y28{bottom:292.525687px;}
.y15{bottom:295.664525px;}
.y3f{bottom:301.172516px;}
.y49{bottom:318.120853px;}
.y1{bottom:321.484211px;}
.y30{bottom:322.152748px;}
.y3e{bottom:329.972515px;}
.y27{bottom:334.337580px;}
.y48{bottom:336.120854px;}
.y4c{bottom:338.590735px;}
.y1b{bottom:346.231173px;}
.y2f{bottom:358.152744px;}
.y26{bottom:360.212581px;}
.y3d{bottom:375.418005px;}
.y3a{bottom:398.255128px;}
.y2e{bottom:409.152747px;}
.y25{bottom:410.760439px;}
.y3c{bottom:416.817995px;}
.y4e{bottom:434.101776px;}
.y39{bottom:436.055128px;}
.y24{bottom:436.635440px;}
.y21{bottom:438.498895px;}
.y2d{bottom:445.152748px;}
.y17{bottom:493.617394px;}
.y1d{bottom:502.771176px;}
.y22{bottom:524.457886px;}
.y3b{bottom:528.074761px;}
.y16{bottom:528.475743px;}
.y38{bottom:531.383584px;}
.y37{bottom:535.836963px;}
.y1a{bottom:546.131926px;}
.yb{bottom:551.539370px;}
.h7{height:19.253907px;}
.h4{height:38.179690px;}
.h9{height:40.565918px;}
.hc{height:43.321290px;}
.h1{height:47.402344px;}
.h1b{height:47.929688px;}
.h14{height:51.279030px;}
.h3{height:52.722659px;}
.h12{height:57.515627px;}
.h16{height:58.253905px;}
.h2{height:67.101562px;}
.h15{height:67.963282px;}
.h6{height:75.843755px;}
.h19{height:76.687505px;}
.h8{height:85.904300px;}
.he{height:86.273440px;}
.hb{height:91.066412px;}
.hf{height:94.804688px;}
.h10{height:96.269532px;}
.h17{height:97.268558px;}
.h1a{height:105.896490px;}
.h18{height:106.532228px;}
.h5{height:111.164066px;}
.h11{height:114.539066px;}
.h1e{height:115.031254px;}
.hd{height:120.427743px;}
.h13{height:138.000009px;}
.h1c{height:148.218759px;}
.h1d{height:259.382812px;}
.ha{height:444.656264px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6{left:19.860355px;}
.x3{left:21.791220px;}
.x5{left:23.576339px;}
.x21{left:29.789562px;}
.x7{left:30.875435px;}
.x1f{left:42.248783px;}
.x12{left:47.082995px;}
.x10{left:48.832089px;}
.x4{left:50.232995px;}
.xf{left:53.320929px;}
.xb{left:58.470476px;}
.xc{left:60.720476px;}
.x13{left:72.222969px;}
.x20{left:79.366901px;}
.x9{left:168.566672px;}
.x30{left:172.822642px;}
.x29{left:173.938102px;}
.x28{left:179.388840px;}
.xa{left:336.832042px;}
.x8{left:350.289776px;}
.x2a{left:374.035359px;}
.x31{left:383.561709px;}
.x2b{left:385.650688px;}
.xd{left:412.934897px;}
.xe{left:435.938656px;}
.x2{left:460.185922px;}
.x1{left:462.310777px;}
.x35{left:494.673923px;}
.x11{left:517.605834px;}
.x33{left:549.503192px;}
.x34{left:552.686274px;}
.x25{left:573.696558px;}
.x26{left:575.004866px;}
.x2c{left:577.729281px;}
.x27{left:580.154081px;}
.x2d{left:598.287542px;}
.x32{left:601.786273px;}
.x15{left:655.239874px;}
.x16{left:690.078228px;}
.x18{left:710.574784px;}
.x22{left:746.891394px;}
.x19{left:768.014766px;}
.x17{left:796.658504px;}
.x23{left:807.956981px;}
.x24{left:812.542301px;}
.x2f{left:815.400747px;}
.x2e{left:823.168871px;}
.x1c{left:925.347814px;}
.x1e{left:929.545473px;}
.x1a{left:933.679127px;}
.x1b{left:936.365027px;}
.x1d{left:946.567316px;}
.x14{left:1061.834884px;}
@media print{
.v1{vertical-align:-5.511192pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012493pt;}
.ls2{letter-spacing:96.025031pt;}
.ws2{word-spacing:-125.952004pt;}
.ws8{word-spacing:-31.744001pt;}
.ws7{word-spacing:-30.176000pt;}
.wsa{word-spacing:-29.098668pt;}
.ws3{word-spacing:-26.453334pt;}
.ws5{word-spacing:-21.723686pt;}
.ws0{word-spacing:-21.162668pt;}
.ws6{word-spacing:-16.390756pt;}
.ws4{word-spacing:-15.872001pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:723.319400pt;}
._8{margin-left:-48.128002pt;}
._7{margin-left:-41.984001pt;}
._6{margin-left:-15.360000pt;}
._3{margin-left:-7.466667pt;}
._b{margin-left:-5.232000pt;}
._1{margin-left:-3.957333pt;}
._4{margin-left:-2.688000pt;}
._0{margin-left:-1.760000pt;}
._5{width:0.944000pt;}
._2{width:1.936000pt;}
._9{width:96.028861pt;}
._a{width:383.317788pt;}
.fs6{font-size:21.333335pt;}
.fs3{font-size:42.666669pt;}
.fs8{font-size:45.333333pt;}
.fsb{font-size:48.000002pt;}
.fs0{font-size:53.333334pt;}
.fs10{font-size:57.917866pt;}
.fs2{font-size:58.666670pt;}
.fse{font-size:64.000002pt;}
.fs12{font-size:65.795742pt;}
.fs1{font-size:74.666666pt;}
.fs11{font-size:76.762142pt;}
.fs5{font-size:85.333339pt;}
.fs7{font-size:96.000003pt;}
.fsa{font-size:101.333339pt;}
.fsd{font-size:106.666667pt;}
.fs13{font-size:112.000004pt;}
.fs15{font-size:117.333340pt;}
.fs14{font-size:122.666668pt;}
.fs4{font-size:128.000004pt;}
.fsc{font-size:138.666676pt;}
.fsf{font-size:170.666677pt;}
.fs16{font-size:298.666666pt;}
.fs9{font-size:512.000016pt;}
.y46{bottom:-1.228717pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:16.481565pt;}
.y10{bottom:16.501824pt;}
.ya{bottom:16.935833pt;}
.y6{bottom:20.120204pt;}
.yd{bottom:20.929004pt;}
.y45{bottom:24.391880pt;}
.y19{bottom:24.859790pt;}
.y47{bottom:25.410414pt;}
.y13{bottom:30.881564pt;}
.y5{bottom:32.920204pt;}
.y1f{bottom:38.095084pt;}
.y20{bottom:38.998944pt;}
.yf{bottom:41.841885pt;}
.yc{bottom:46.269065pt;}
.y18{bottom:61.659785pt;}
.y44{bottom:62.791885pt;}
.y42{bottom:66.660865pt;}
.y36{bottom:67.691321pt;}
.ye{bottom:70.831986pt;}
.y4{bottom:71.477591pt;}
.y2b{bottom:85.546577pt;}
.y4b{bottom:86.384705pt;}
.y3{bottom:89.077590pt;}
.y41{bottom:89.818986pt;}
.y35{bottom:99.691322pt;}
.y43{bottom:101.191886pt;}
.y4a{bottom:102.384706pt;}
.y2a{bottom:105.546578pt;}
.y2{bottom:107.637588pt;}
.y40{bottom:128.218987pt;}
.y1e{bottom:144.725437pt;}
.y34{bottom:145.024663pt;}
.y4f{bottom:162.335748pt;}
.y9{bottom:170.657142pt;}
.y33{bottom:177.024664pt;}
.y2c{bottom:183.132501pt;}
.y12{bottom:190.123559pt;}
.y8{bottom:196.257134pt;}
.y32{bottom:209.024665pt;}
.y1c{bottom:225.755990pt;}
.y11{bottom:231.385080pt;}
.y7{bottom:232.417140pt;}
.y31{bottom:241.024666pt;}
.y29{bottom:243.022832pt;}
.y4d{bottom:249.769545pt;}
.y23{bottom:259.373603pt;}
.y28{bottom:260.022833pt;}
.y15{bottom:262.812911pt;}
.y3f{bottom:267.708903pt;}
.y49{bottom:282.774092pt;}
.y1{bottom:285.763743pt;}
.y30{bottom:286.357998pt;}
.y3e{bottom:293.308902pt;}
.y27{bottom:297.188960pt;}
.y48{bottom:298.774092pt;}
.y4c{bottom:300.969542pt;}
.y1b{bottom:307.761043pt;}
.y2f{bottom:318.357995pt;}
.y26{bottom:320.188961pt;}
.y3d{bottom:333.704893pt;}
.y3a{bottom:354.004558pt;}
.y2e{bottom:363.691330pt;}
.y25{bottom:365.120390pt;}
.y3c{bottom:370.504885pt;}
.y4e{bottom:385.868245pt;}
.y39{bottom:387.604558pt;}
.y24{bottom:388.120391pt;}
.y21{bottom:389.776795pt;}
.y2d{bottom:395.691331pt;}
.y17{bottom:438.771017pt;}
.y1d{bottom:446.907712pt;}
.y22{bottom:466.184788pt;}
.y3b{bottom:469.399788pt;}
.y16{bottom:469.756216pt;}
.y38{bottom:472.340964pt;}
.y37{bottom:476.299523pt;}
.y1a{bottom:485.450601pt;}
.yb{bottom:490.257217pt;}
.h7{height:17.114584pt;}
.h4{height:33.937502pt;}
.h9{height:36.058594pt;}
.hc{height:38.507814pt;}
.h1{height:42.135417pt;}
.h1b{height:42.604167pt;}
.h14{height:45.581360pt;}
.h3{height:46.864586pt;}
.h12{height:51.125002pt;}
.h16{height:51.781249pt;}
.h2{height:59.645833pt;}
.h15{height:60.411806pt;}
.h6{height:67.416671pt;}
.h19{height:68.166671pt;}
.h8{height:76.359377pt;}
.he{height:76.687502pt;}
.hb{height:80.947921pt;}
.hf{height:84.270834pt;}
.h10{height:85.572917pt;}
.h17{height:86.460940pt;}
.h1a{height:94.130213pt;}
.h18{height:94.695313pt;}
.h5{height:98.812503pt;}
.h11{height:101.812503pt;}
.h1e{height:102.250003pt;}
.hd{height:107.046883pt;}
.h13{height:122.666674pt;}
.h1c{height:131.750008pt;}
.h1d{height:230.562499pt;}
.ha{height:395.250013pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6{left:17.653649pt;}
.x3{left:19.369974pt;}
.x5{left:20.956746pt;}
.x21{left:26.479611pt;}
.x7{left:27.444831pt;}
.x1f{left:37.554474pt;}
.x12{left:41.851551pt;}
.x10{left:43.406301pt;}
.x4{left:44.651551pt;}
.xf{left:47.396382pt;}
.xb{left:51.973757pt;}
.xc{left:53.973757pt;}
.x13{left:64.198195pt;}
.x20{left:70.548356pt;}
.x9{left:149.837042pt;}
.x30{left:153.620126pt;}
.x29{left:154.611646pt;}
.x28{left:159.456747pt;}
.xa{left:299.406260pt;}
.x8{left:311.368690pt;}
.x2a{left:332.475875pt;}
.x31{left:340.943741pt;}
.x2b{left:342.800612pt;}
.xd{left:367.053242pt;}
.xe{left:387.501027pt;}
.x2{left:409.054153pt;}
.x1{left:410.942913pt;}
.x35{left:439.710154pt;}
.x11{left:460.094075pt;}
.x33{left:488.447282pt;}
.x34{left:491.276688pt;}
.x25{left:509.952496pt;}
.x26{left:511.115436pt;}
.x2c{left:513.537138pt;}
.x27{left:515.692517pt;}
.x2d{left:531.811148pt;}
.x32{left:534.921131pt;}
.x15{left:582.435444pt;}
.x16{left:613.402870pt;}
.x18{left:631.622030pt;}
.x22{left:663.903461pt;}
.x19{left:682.679792pt;}
.x17{left:708.140893pt;}
.x23{left:718.183983pt;}
.x24{left:722.259823pt;}
.x2f{left:724.800664pt;}
.x2e{left:731.705663pt;}
.x1c{left:822.531390pt;}
.x1e{left:826.262642pt;}
.x1a{left:829.937002pt;}
.x1b{left:832.324469pt;}
.x1d{left:841.393170pt;}
.x14{left:943.853230pt;}
}




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