
    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_4bf213659e6517c82e1089c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_b4f5127294278237d92d783e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_a4e6aa183329110b763bb8d1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9b01eeeb022c715ad561d87a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_e28e82d2822966866dedf61b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_1ddba95b4e862f6145e9cb5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.680176;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_3c27a05e805d2a91af1efbfc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8e7081704397a726c44e5262.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.746094;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:57.042966px;}
.ls2{letter-spacing:64.675472px;}
.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:-0.143451px;}
.ws4{word-spacing:-0.084383px;}
.wsf{word-spacing:-0.071782px;}
.wsb{word-spacing:0.000000px;}
.wse{word-spacing:17.945470px;}
.ws10{word-spacing:18.017251px;}
.wsc{word-spacing:18.089033px;}
.wsd{word-spacing:18.160815px;}
.ws8{word-spacing:18.292416px;}
.ws9{word-spacing:18.358216px;}
.wsa{word-spacing:18.424016px;}
.ws7{word-spacing:22.783433px;}
.ws2{word-spacing:22.867816px;}
.ws6{word-spacing:22.952199px;}
.ws5{word-spacing:23.036582px;}
.ws3{word-spacing:23.120966px;}
.ws0{word-spacing:40.166349px;}
._a{margin-left:-8.900953px;}
._6{margin-left:-6.666264px;}
._0{margin-left:-5.020794px;}
._1{margin-left:-4.016635px;}
._7{margin-left:-2.697802px;}
._3{margin-left:-1.096980px;}
._2{width:1.291061px;}
._8{width:19.476817px;}
._4{width:22.023985px;}
._5{width:37.634856px;}
._9{width:48.237422px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.800058px;}
.fs3{font-size:71.781878px;}
.fs1{font-size:84.383086px;}
.fs0{font-size:143.451248px;}
.y0{bottom:0.000000px;}
.y7e{bottom:112.510664px;}
.y5c{bottom:114.114110px;}
.y36{bottom:123.762056px;}
.yb6{bottom:128.618105px;}
.ycb{bottom:132.800674px;}
.y7d{bottom:136.315922px;}
.y13{bottom:137.623087px;}
.y98{bottom:144.286840px;}
.y35{bottom:145.583527px;}
.yb5{bottom:152.423363px;}
.yca{bottom:156.605931px;}
.y7c{bottom:160.121180px;}
.y5b{bottom:160.421533px;}
.y12{bottom:165.395839px;}
.y34{bottom:167.404997px;}
.y97{bottom:168.092098px;}
.y7b{bottom:183.926437px;}
.y5a{bottom:184.226790px;}
.y33{bottom:189.226550px;}
.y96{bottom:191.897356px;}
.y11{bottom:193.168591px;}
.yb4{bottom:198.730786px;}
.y59{bottom:208.032048px;}
.y95{bottom:215.702613px;}
.y10{bottom:220.941448px;}
.yb3{bottom:222.536043px;}
.y58{bottom:231.837305px;}
.y94{bottom:239.507871px;}
.y7a{bottom:245.038245px;}
.yb2{bottom:246.341301px;}
.yf{bottom:248.714306px;}
.yc9{bottom:249.220759px;}
.y57{bottom:255.642563px;}
.y32{bottom:257.101757px;}
.y93{bottom:263.313129px;}
.y79{bottom:268.843502px;}
.yb1{bottom:270.146559px;}
.yc8{bottom:273.026017px;}
.ye{bottom:276.487058px;}
.y31{bottom:284.874509px;}
.y92{bottom:287.118386px;}
.y78{bottom:292.661250px;}
.yc7{bottom:296.831275px;}
.y56{bottom:301.949986px;}
.yd{bottom:304.259810px;}
.y30{bottom:312.647366px;}
.yb0{bottom:316.453982px;}
.y77{bottom:316.545611px;}
.yc{bottom:332.032667px;}
.y91{bottom:333.425809px;}
.yaf{bottom:340.259239px;}
.y76{bottom:340.362210px;}
.y2f{bottom:340.420224px;}
.y75{bottom:364.258613px;}
.y2e{bottom:368.192975px;}
.yb{bottom:368.806373px;}
.y90{bottom:379.733232px;}
.y55{bottom:382.366632px;}
.yae{bottom:386.566662px;}
.y2d{bottom:395.965727px;}
.y8f{bottom:403.538490px;}
.y54{bottom:406.171890px;}
.yad{bottom:410.371920px;}
.y74{bottom:410.645140px;}
.y2c{bottom:423.738564px;}
.y8e{bottom:427.343747px;}
.y53{bottom:429.977148px;}
.yac{bottom:434.177178px;}
.y73{bottom:434.450397px;}
.yc6{bottom:435.753526px;}
.y8d{bottom:451.149005px;}
.y52{bottom:453.782405px;}
.ya{bottom:458.855256px;}
.yc5{bottom:459.558783px;}
.y2b{bottom:474.013563px;}
.y51{bottom:477.587663px;}
.y72{bottom:480.757820px;}
.yc4{bottom:483.364041px;}
.y8c{bottom:497.456428px;}
.y50{bottom:501.392920px;}
.y8b{bottom:521.261775px;}
.y2a{bottom:524.288479px;}
.y4f{bottom:525.198088px;}
.yab{bottom:526.792005px;}
.y71{bottom:527.065279px;}
.yc3{bottom:529.671500px;}
.y9{bottom:532.402625px;}
.y8a{bottom:545.066997px;}
.y4e{bottom:549.003400px;}
.yaa{bottom:550.597263px;}
.y70{bottom:550.870537px;}
.y29{bottom:552.061336px;}
.y4d{bottom:572.808657px;}
.yc2{bottom:575.978923px;}
.y28{bottom:579.834130px;}
.y4c{bottom:596.613915px;}
.ya9{bottom:596.904686px;}
.y6f{bottom:597.177960px;}
.yc1{bottom:599.784180px;}
.y8{bottom:605.949953px;}
.y27{bottom:607.606924px;}
.y4b{bottom:620.419173px;}
.ya8{bottom:620.709944px;}
.yc0{bottom:623.589438px;}
.y26{bottom:635.379718px;}
.y89{bottom:637.681825px;}
.y6e{bottom:643.485329px;}
.y4a{bottom:644.224430px;}
.ya7{bottom:644.515201px;}
.ybf{bottom:647.394695px;}
.y88{bottom:661.487083px;}
.y25{bottom:663.152512px;}
.y6d{bottom:667.290586px;}
.y49{bottom:668.029688px;}
.ya6{bottom:668.320459px;}
.y7{bottom:670.496368px;}
.y24{bottom:690.925307px;}
.y6c{bottom:691.095844px;}
.y48{bottom:691.834946px;}
.ybe{bottom:693.702065px;}
.y87{bottom:709.097562px;}
.ya5{bottom:714.627882px;}
.y6b{bottom:714.901102px;}
.y47{bottom:715.640203px;}
.y23{bottom:718.698101px;}
.y6{bottom:735.042826px;}
.ya4{bottom:738.433140px;}
.y46{bottom:739.445281px;}
.y22{bottom:746.470895px;}
.y86{bottom:756.708077px;}
.y6a{bottom:761.208525px;}
.y45{bottom:763.250539px;}
.y21{bottom:774.243689px;}
.ya3{bottom:784.740562px;}
.ybd{bottom:786.316893px;}
.y44{bottom:787.055797px;}
.y20{bottom:802.016483px;}
.y69{bottom:807.515948px;}
.ya2{bottom:808.545820px;}
.ybc{bottom:810.122150px;}
.y43{bottom:810.861054px;}
.y85{bottom:822.320321px;}
.y1f{bottom:829.789277px;}
.y68{bottom:831.321205px;}
.y5{bottom:845.363817px;}
.ya1{bottom:854.853243px;}
.y67{bottom:855.126463px;}
.y42{bottom:855.832032px;}
.y1e{bottom:857.562071px;}
.y4{bottom:873.136611px;}
.y41{bottom:877.653503px;}
.ya0{bottom:878.658501px;}
.y66{bottom:878.931720px;}
.y1d{bottom:885.334865px;}
.y84{bottom:887.932565px;}
.y40{bottom:899.475006px;}
.y9f{bottom:902.463740px;}
.y65{bottom:902.736996px;}
.y83{bottom:911.737841px;}
.y1c{bottom:913.107659px;}
.y3f{bottom:921.296493px;}
.y9e{bottom:926.268998px;}
.ybb{bottom:926.542254px;}
.y1b{bottom:940.880432px;}
.y3e{bottom:943.117980px;}
.y64{bottom:949.044419px;}
.yba{bottom:950.347511px;}
.y3d{bottom:964.939467px;}
.y1a{bottom:968.653227px;}
.y9d{bottom:972.576439px;}
.yb9{bottom:974.152751px;}
.y82{bottom:977.350067px;}
.y3{bottom:983.457581px;}
.y3c{bottom:986.760954px;}
.y63{bottom:995.351806px;}
.y9c{bottom:996.381679px;}
.y19{bottom:996.426021px;}
.yb8{bottom:997.958009px;}
.y3b{bottom:1008.582441px;}
.y62{bottom:1019.157064px;}
.y9b{bottom:1020.199390px;}
.yb7{bottom:1021.763266px;}
.y18{bottom:1024.198836px;}
.y81{bottom:1042.962311px;}
.y61{bottom:1042.962321px;}
.y9a{bottom:1044.094752px;}
.y17{bottom:1051.971630px;}
.y80{bottom:1066.767568px;}
.y60{bottom:1066.767579px;}
.y99{bottom:1067.991568px;}
.y2{bottom:1073.608299px;}
.y3a{bottom:1074.046919px;}
.y16{bottom:1079.744424px;}
.y5f{bottom:1090.572837px;}
.y7f{bottom:1090.572844px;}
.y39{bottom:1095.868406px;}
.y15{bottom:1107.517218px;}
.y5e{bottom:1114.378094px;}
.y38{bottom:1117.689877px;}
.y1{bottom:1121.218836px;}
.y14{bottom:1135.290012px;}
.y5d{bottom:1138.183352px;}
.y37{bottom:1139.511364px;}
.h3{height:47.904241px;}
.h4{height:48.649047px;}
.h5{height:49.875788px;}
.h2{height:61.433194px;}
.h1{height:104.436431px;}
.h0{height:1263.000000px;}
.w1{width:893.605629px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.010350px;}
.x4{left:135.012938px;}
.x5{left:162.015525px;}
.x2{left:172.918474px;}
.x6{left:189.018113px;}
.x7{left:216.020700px;}
.x3{left:364.239654px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:50.704859pt;}
.ls2{letter-spacing:57.489309pt;}
.ws1{word-spacing:-0.127512pt;}
.ws4{word-spacing:-0.075007pt;}
.wsf{word-spacing:-0.063806pt;}
.wsb{word-spacing:0.000000pt;}
.wse{word-spacing:15.951529pt;}
.ws10{word-spacing:16.015335pt;}
.wsc{word-spacing:16.079141pt;}
.wsd{word-spacing:16.142947pt;}
.ws8{word-spacing:16.259925pt;}
.ws9{word-spacing:16.318414pt;}
.wsa{word-spacing:16.376903pt;}
.ws7{word-spacing:20.251941pt;}
.ws2{word-spacing:20.326948pt;}
.ws6{word-spacing:20.401955pt;}
.ws5{word-spacing:20.476962pt;}
.ws3{word-spacing:20.551969pt;}
.ws0{word-spacing:35.703422pt;}
._a{margin-left:-7.911958pt;}
._6{margin-left:-5.925568pt;}
._0{margin-left:-4.462928pt;}
._1{margin-left:-3.570342pt;}
._7{margin-left:-2.398047pt;}
._3{margin-left:-0.975093pt;}
._2{width:1.147610pt;}
._8{width:17.312726pt;}
._4{width:19.576876pt;}
._5{width:33.453206pt;}
._9{width:42.877709pt;}
.fs2{font-size:58.488940pt;}
.fs3{font-size:63.806114pt;}
.fs1{font-size:75.007188pt;}
.fs0{font-size:127.512220pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:100.009480pt;}
.y5c{bottom:101.434764pt;}
.y36{bottom:110.010717pt;}
.yb6{bottom:114.327205pt;}
.ycb{bottom:118.045043pt;}
.y7d{bottom:121.169709pt;}
.y13{bottom:122.331633pt;}
.y98{bottom:128.254969pt;}
.y35{bottom:129.407579pt;}
.yb5{bottom:135.487434pt;}
.yca{bottom:139.205272pt;}
.y7c{bottom:142.329938pt;}
.y5b{bottom:142.596918pt;}
.y12{bottom:147.018524pt;}
.y34{bottom:148.804442pt;}
.y97{bottom:149.415198pt;}
.y7b{bottom:163.490167pt;}
.y5a{bottom:163.757147pt;}
.y33{bottom:168.201378pt;}
.y96{bottom:170.575427pt;}
.y11{bottom:171.705414pt;}
.yb4{bottom:176.649587pt;}
.y59{bottom:184.917376pt;}
.y95{bottom:191.735656pt;}
.y10{bottom:196.392399pt;}
.yb3{bottom:197.809816pt;}
.y58{bottom:206.077605pt;}
.y94{bottom:212.895885pt;}
.y7a{bottom:217.811773pt;}
.yb2{bottom:218.970045pt;}
.yf{bottom:221.079383pt;}
.yc9{bottom:221.529564pt;}
.y57{bottom:227.237834pt;}
.y32{bottom:228.534895pt;}
.y93{bottom:234.056114pt;}
.y79{bottom:238.972002pt;}
.yb1{bottom:240.130274pt;}
.yc8{bottom:242.689793pt;}
.ye{bottom:245.766274pt;}
.y31{bottom:253.221786pt;}
.y92{bottom:255.216343pt;}
.y78{bottom:260.143333pt;}
.yc7{bottom:263.850022pt;}
.y56{bottom:268.399988pt;}
.yd{bottom:270.453164pt;}
.y30{bottom:277.908770pt;}
.yb0{bottom:281.292428pt;}
.y77{bottom:281.373877pt;}
.yc{bottom:295.140149pt;}
.y91{bottom:296.378497pt;}
.yaf{bottom:302.452657pt;}
.y76{bottom:302.544187pt;}
.y2f{bottom:302.595754pt;}
.y75{bottom:323.785434pt;}
.y2e{bottom:327.282645pt;}
.yb{bottom:327.827887pt;}
.y90{bottom:337.540651pt;}
.y55{bottom:339.881451pt;}
.yae{bottom:343.614811pt;}
.y2d{bottom:351.969535pt;}
.y8f{bottom:358.700880pt;}
.y54{bottom:361.041680pt;}
.yad{bottom:364.775040pt;}
.y74{bottom:365.017902pt;}
.y2c{bottom:376.656501pt;}
.y8e{bottom:379.861109pt;}
.y53{bottom:382.201909pt;}
.yac{bottom:385.935269pt;}
.y73{bottom:386.178131pt;}
.yc6{bottom:387.336467pt;}
.y8d{bottom:401.021338pt;}
.y52{bottom:403.362138pt;}
.ya{bottom:407.871338pt;}
.yc5{bottom:408.496696pt;}
.y2b{bottom:421.345390pt;}
.y51{bottom:424.522367pt;}
.y72{bottom:427.340285pt;}
.yc4{bottom:429.656925pt;}
.y8c{bottom:442.183492pt;}
.y50{bottom:445.682596pt;}
.y8b{bottom:463.343800pt;}
.y2a{bottom:466.034203pt;}
.y4f{bottom:466.842745pt;}
.yab{bottom:468.259560pt;}
.y71{bottom:468.502470pt;}
.yc3{bottom:470.819111pt;}
.y9{bottom:473.246778pt;}
.y8a{bottom:484.503997pt;}
.y4e{bottom:488.003022pt;}
.yaa{bottom:489.419789pt;}
.y70{bottom:489.662699pt;}
.y29{bottom:490.721187pt;}
.y4d{bottom:509.163251pt;}
.yc2{bottom:511.981264pt;}
.y28{bottom:515.408116pt;}
.y4c{bottom:530.323480pt;}
.ya9{bottom:530.581943pt;}
.y6f{bottom:530.824853pt;}
.yc1{bottom:533.141494pt;}
.y8{bottom:538.622180pt;}
.y27{bottom:540.095044pt;}
.y4b{bottom:551.483709pt;}
.ya8{bottom:551.742172pt;}
.yc0{bottom:554.301723pt;}
.y26{bottom:564.781972pt;}
.y89{bottom:566.828289pt;}
.y6e{bottom:571.986959pt;}
.y4a{bottom:572.643938pt;}
.ya7{bottom:572.902401pt;}
.ybf{bottom:575.461952pt;}
.y88{bottom:587.988518pt;}
.y25{bottom:589.468900pt;}
.y6d{bottom:593.147188pt;}
.y49{bottom:593.804167pt;}
.ya6{bottom:594.062630pt;}
.y7{bottom:595.996772pt;}
.y24{bottom:614.155828pt;}
.y6c{bottom:614.307417pt;}
.y48{bottom:614.964396pt;}
.ybe{bottom:616.624057pt;}
.y87{bottom:630.308944pt;}
.ya5{bottom:635.224784pt;}
.y6b{bottom:635.467646pt;}
.y47{bottom:636.124625pt;}
.y23{bottom:638.842756pt;}
.y6{bottom:653.371401pt;}
.ya4{bottom:656.385013pt;}
.y46{bottom:657.284695pt;}
.y22{bottom:663.529684pt;}
.y86{bottom:672.629402pt;}
.y6a{bottom:676.629800pt;}
.y45{bottom:678.444924pt;}
.y21{bottom:688.216612pt;}
.ya3{bottom:697.547167pt;}
.ybd{bottom:698.948349pt;}
.y44{bottom:699.605153pt;}
.y20{bottom:712.903540pt;}
.y69{bottom:717.791953pt;}
.ya2{bottom:718.707396pt;}
.ybc{bottom:720.108578pt;}
.y43{bottom:720.765382pt;}
.y85{bottom:730.951397pt;}
.y1f{bottom:737.590469pt;}
.y68{bottom:738.952182pt;}
.y5{bottom:751.434504pt;}
.ya1{bottom:759.869549pt;}
.y67{bottom:760.112411pt;}
.y42{bottom:760.739584pt;}
.y1e{bottom:762.277397pt;}
.y4{bottom:776.121432pt;}
.y41{bottom:780.136447pt;}
.ya0{bottom:781.029778pt;}
.y66{bottom:781.272640pt;}
.y1d{bottom:786.964325pt;}
.y84{bottom:789.273391pt;}
.y40{bottom:799.533339pt;}
.y9f{bottom:802.189991pt;}
.y65{bottom:802.432885pt;}
.y83{bottom:810.433636pt;}
.y1c{bottom:811.651253pt;}
.y3f{bottom:818.930216pt;}
.y9e{bottom:823.350220pt;}
.ybb{bottom:823.593114pt;}
.y1b{bottom:836.338162pt;}
.y3e{bottom:838.327094pt;}
.y64{bottom:843.595039pt;}
.yba{bottom:844.753343pt;}
.y3d{bottom:857.723971pt;}
.y1a{bottom:861.025090pt;}
.y9d{bottom:864.512390pt;}
.yb9{bottom:865.913556pt;}
.y82{bottom:868.755615pt;}
.y3{bottom:874.184516pt;}
.y3c{bottom:877.120848pt;}
.y63{bottom:884.757161pt;}
.y9c{bottom:885.672603pt;}
.y19{bottom:885.712018pt;}
.yb8{bottom:887.073785pt;}
.y3b{bottom:896.517726pt;}
.y62{bottom:905.917390pt;}
.y9b{bottom:906.843903pt;}
.yb7{bottom:908.234014pt;}
.y18{bottom:910.398965pt;}
.y81{bottom:927.077610pt;}
.y61{bottom:927.077619pt;}
.y9a{bottom:928.084224pt;}
.y17{bottom:935.085893pt;}
.y80{bottom:948.237839pt;}
.y60{bottom:948.237848pt;}
.y99{bottom:949.325838pt;}
.y2{bottom:954.318488pt;}
.y3a{bottom:954.708372pt;}
.y16{bottom:959.772821pt;}
.y5f{bottom:969.398077pt;}
.y7f{bottom:969.398084pt;}
.y39{bottom:974.105250pt;}
.y15{bottom:984.459750pt;}
.y5e{bottom:990.558306pt;}
.y38{bottom:993.502113pt;}
.y1{bottom:996.638965pt;}
.y14{bottom:1009.146678pt;}
.y5d{bottom:1011.718535pt;}
.y37{bottom:1012.898990pt;}
.h3{height:42.581548pt;}
.h4{height:43.243597pt;}
.h5{height:44.334033pt;}
.h2{height:54.607283pt;}
.h1{height:92.832383pt;}
.h0{height:1122.666667pt;}
.w1{width:794.316115pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.009200pt;}
.x4{left:120.011500pt;}
.x5{left:144.013800pt;}
.x2{left:153.705310pt;}
.x6{left:168.016100pt;}
.x7{left:192.018400pt;}
.x3{left:323.768581pt;}
}




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