
    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_27cb5b4dce707422df2af144.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_96aa43b366ab6857c9cef93c.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_7f7bcddd32eb35222d623fef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_5d112f8c93fc6a6dca07fc21.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_d3bd8045d46aed14be01eafa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_7d576dcdeb863606c84ba07c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsc{letter-spacing:-0.014400px;}
.ls9{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.011400px;}
.lsd{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.016704px;}
.ls5{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.060540px;}
.ls0{letter-spacing:0.119640px;}
.ls1c{letter-spacing:0.239940px;}
.ls14{letter-spacing:0.242064px;}
.ls1{letter-spacing:0.242208px;}
.ls2{letter-spacing:0.254400px;}
.lsa{letter-spacing:0.317376px;}
.ls1f{letter-spacing:0.318816px;}
.ls1b{letter-spacing:0.320280px;}
.ls15{letter-spacing:0.383760px;}
.lsb{letter-spacing:0.400896px;}
.ls11{letter-spacing:0.419184px;}
.ls10{letter-spacing:0.478224px;}
.ls16{letter-spacing:0.513000px;}
.lsf{letter-spacing:0.543168px;}
.ls12{letter-spacing:0.578592px;}
.ls3{letter-spacing:0.589200px;}
.ls20{letter-spacing:0.637632px;}
.lse{letter-spacing:0.702576px;}
.ls13{letter-spacing:0.738000px;}
.ls18{letter-spacing:0.807000px;}
.ls1e{letter-spacing:0.861984px;}
.ls1d{letter-spacing:5.062260px;}
.ls6{letter-spacing:7.688400px;}
.ls7{letter-spacing:7.689000px;}
.ls8{letter-spacing:11.041800px;}
.ls17{letter-spacing:12.199200px;}
.ls1a{letter-spacing:15.770220px;}
.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;}
}
.ws3{word-spacing:-18.014400px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws1{word-spacing:-15.462576px;}
.ws7{word-spacing:-15.078816px;}
.ws6{word-spacing:-11.880000px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:13.055616px;}
._a{margin-left:-13.537728px;}
._0{margin-left:-1.016136px;}
._6{width:1.267200px;}
._3{width:2.512800px;}
._8{width:3.568320px;}
._1{width:4.838400px;}
._b{width:6.730560px;}
._4{width:8.208000px;}
._7{width:9.259920px;}
._c{width:10.468800px;}
._2{width:12.420000px;}
._11{width:14.369112px;}
._17{width:15.626088px;}
._5{width:16.932720px;}
._e{width:19.180800px;}
._f{width:21.096000px;}
._9{width:22.219200px;}
._13{width:23.529600px;}
._14{width:26.647200px;}
._16{width:30.425520px;}
._18{width:37.029600px;}
._10{width:38.037600px;}
._15{width:39.232920px;}
._12{width:53.373600px;}
._d{width:72.855360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:59.040000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.000000px;}
.y24{bottom:78.524985px;}
.y6e{bottom:86.084985px;}
.y23{bottom:95.804985px;}
.y43{bottom:102.645000px;}
.y59{bottom:104.805000px;}
.y22{bottom:113.085000px;}
.y6d{bottom:117.045000px;}
.y42{bottom:119.925000px;}
.y21{bottom:130.365000px;}
.y58{bottom:136.125000px;}
.y20{bottom:147.645000px;}
.y41{bottom:154.485000px;}
.y6c{bottom:157.005000px;}
.y40{bottom:166.005000px;}
.y57{bottom:167.085000px;}
.y1f{bottom:171.765000px;}
.y1e{bottom:182.205000px;}
.y6b{bottom:188.325000px;}
.y56{bottom:198.045000px;}
.y1d{bottom:199.485000px;}
.y3f{bottom:220.005000px;}
.y1c{bottom:223.605000px;}
.y6a{bottom:228.285000px;}
.y55{bottom:229.005000px;}
.y1b{bottom:235.125000px;}
.y3e{bottom:251.325000px;}
.y69{bottom:259.245000px;}
.y54{bottom:260.325000px;}
.y3d{bottom:282.285000px;}
.y1a{bottom:283.005000px;}
.y53{bottom:291.285000px;}
.y68{bottom:299.205000px;}
.y3c{bottom:313.245000px;}
.y52{bottom:322.245000px;}
.y19{bottom:322.965000px;}
.y67{bottom:330.525000px;}
.y3b{bottom:353.205000px;}
.y18{bottom:354.285000px;}
.y66{bottom:370.485000px;}
.y3a{bottom:384.525000px;}
.y17{bottom:385.245000px;}
.y65{bottom:401.445000px;}
.y39{bottom:415.485000px;}
.y16{bottom:416.205000px;}
.y64{bottom:432.405000px;}
.y38{bottom:446.445000px;}
.y15{bottom:447.165000px;}
.y63{bottom:472.365000px;}
.y51{bottom:477.405000px;}
.y14{bottom:478.485000px;}
.y7e{bottom:485.685000px;}
.y37{bottom:486.405000px;}
.y62{bottom:503.685000px;}
.y50{bottom:508.365000px;}
.y13{bottom:509.445000px;}
.y36{bottom:517.365000px;}
.y7d{bottom:525.645000px;}
.y4f{bottom:539.685000px;}
.y12{bottom:540.405000px;}
.y61{bottom:543.645000px;}
.y35{bottom:548.685000px;}
.y7c{bottom:556.605000px;}
.y60{bottom:574.605000px;}
.y34{bottom:579.645000px;}
.y11{bottom:580.365000px;}
.y7b{bottom:596.565000px;}
.y4e{bottom:610.605000px;}
.y10{bottom:611.685000px;}
.y5f{bottom:614.565000px;}
.y33{bottom:619.605000px;}
.y7a{bottom:636.885000px;}
.y4d{bottom:641.565000px;}
.yf{bottom:642.645000px;}
.y5e{bottom:645.885000px;}
.y32{bottom:650.565000px;}
.y79{bottom:667.845000px;}
.y4c{bottom:672.885000px;}
.ye{bottom:673.605000px;}
.y31{bottom:681.885000px;}
.y5d{bottom:685.845000px;}
.y4b{bottom:703.845000px;}
.yd{bottom:704.565000px;}
.y78{bottom:707.805000px;}
.y30{bottom:712.845000px;}
.y5c{bottom:716.805000px;}
.y77{bottom:738.765000px;}
.y2f{bottom:743.805000px;}
.yc{bottom:744.525000px;}
.y5b{bottom:756.765000px;}
.y2e{bottom:774.765000px;}
.yb{bottom:775.845000px;}
.y76{bottom:779.085000px;}
.y5a{bottom:797.085000px;}
.ya{bottom:805.365000px;}
.y4a{bottom:806.085000px;}
.y75{bottom:810.045000px;}
.y2d{bottom:815.085000px;}
.y9{bottom:835.245000px;}
.y49{bottom:837.045000px;}
.y74{bottom:841.005000px;}
.y2c{bottom:846.045000px;}
.y8{bottom:864.764850px;}
.y48{bottom:868.005000px;}
.y2b{bottom:877.005000px;}
.y73{bottom:880.965000px;}
.y7{bottom:894.645000px;}
.y47{bottom:898.965000px;}
.y2a{bottom:907.965000px;}
.y72{bottom:912.285000px;}
.y6{bottom:924.165000px;}
.y46{bottom:930.285000px;}
.y29{bottom:939.285000px;}
.y71{bottom:952.245000px;}
.y5{bottom:954.045000px;}
.y45{bottom:961.245000px;}
.y28{bottom:970.245000px;}
.y70{bottom:983.205000px;}
.y4{bottom:983.565000px;}
.y44{bottom:992.205000px;}
.y27{bottom:1001.205000px;}
.y6f{bottom:1023.165000px;}
.y3{bottom:1030.725000px;}
.y26{bottom:1032.165000px;}
.y2{bottom:1060.245000px;}
.y25{bottom:1063.485000px;}
.h8{height:34.114922px;}
.h5{height:49.992188px;}
.h9{height:51.804141px;}
.h7{height:55.666406px;}
.h4{height:63.175781px;}
.h3{height:71.982422px;}
.h6{height:74.816016px;}
.h2{height:1201.365000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:13.500000px;}
.x9{left:113.760135px;}
.x3{left:135.359970px;}
.xa{left:167.760000px;}
.x8{left:189.360000px;}
.x2{left:229.708050px;}
.x7{left:581.968500px;}
.x6{left:636.425550px;}
.x5{left:644.449950px;}
.x4{left:749.909850px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls9{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.010133pt;}
.lsd{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.014848pt;}
.ls5{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.053813pt;}
.ls0{letter-spacing:0.106347pt;}
.ls1c{letter-spacing:0.213280pt;}
.ls14{letter-spacing:0.215168pt;}
.ls1{letter-spacing:0.215296pt;}
.ls2{letter-spacing:0.226133pt;}
.lsa{letter-spacing:0.282112pt;}
.ls1f{letter-spacing:0.283392pt;}
.ls1b{letter-spacing:0.284693pt;}
.ls15{letter-spacing:0.341120pt;}
.lsb{letter-spacing:0.356352pt;}
.ls11{letter-spacing:0.372608pt;}
.ls10{letter-spacing:0.425088pt;}
.ls16{letter-spacing:0.456000pt;}
.lsf{letter-spacing:0.482816pt;}
.ls12{letter-spacing:0.514304pt;}
.ls3{letter-spacing:0.523733pt;}
.ls20{letter-spacing:0.566784pt;}
.lse{letter-spacing:0.624512pt;}
.ls13{letter-spacing:0.656000pt;}
.ls18{letter-spacing:0.717333pt;}
.ls1e{letter-spacing:0.766208pt;}
.ls1d{letter-spacing:4.499787pt;}
.ls6{letter-spacing:6.834133pt;}
.ls7{letter-spacing:6.834667pt;}
.ls8{letter-spacing:9.814933pt;}
.ls17{letter-spacing:10.843733pt;}
.ls1a{letter-spacing:14.017973pt;}
.ws3{word-spacing:-16.012800pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws1{word-spacing:-13.744512pt;}
.ws7{word-spacing:-13.403392pt;}
.ws6{word-spacing:-10.560000pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:11.604992pt;}
._a{margin-left:-12.033536pt;}
._0{margin-left:-0.903232pt;}
._6{width:1.126400pt;}
._3{width:2.233600pt;}
._8{width:3.171840pt;}
._1{width:4.300800pt;}
._b{width:5.982720pt;}
._4{width:7.296000pt;}
._7{width:8.231040pt;}
._c{width:9.305600pt;}
._2{width:11.040000pt;}
._11{width:12.772544pt;}
._17{width:13.889856pt;}
._5{width:15.051307pt;}
._e{width:17.049600pt;}
._f{width:18.752000pt;}
._9{width:19.750400pt;}
._13{width:20.915200pt;}
._14{width:23.686400pt;}
._16{width:27.044907pt;}
._18{width:32.915200pt;}
._10{width:33.811200pt;}
._15{width:34.873707pt;}
._12{width:47.443200pt;}
._d{width:64.760320pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:52.480000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.000000pt;}
.y24{bottom:69.799987pt;}
.y6e{bottom:76.519987pt;}
.y23{bottom:85.159987pt;}
.y43{bottom:91.240000pt;}
.y59{bottom:93.160000pt;}
.y22{bottom:100.520000pt;}
.y6d{bottom:104.040000pt;}
.y42{bottom:106.600000pt;}
.y21{bottom:115.880000pt;}
.y58{bottom:121.000000pt;}
.y20{bottom:131.240000pt;}
.y41{bottom:137.320000pt;}
.y6c{bottom:139.560000pt;}
.y40{bottom:147.560000pt;}
.y57{bottom:148.520000pt;}
.y1f{bottom:152.680000pt;}
.y1e{bottom:161.960000pt;}
.y6b{bottom:167.400000pt;}
.y56{bottom:176.040000pt;}
.y1d{bottom:177.320000pt;}
.y3f{bottom:195.560000pt;}
.y1c{bottom:198.760000pt;}
.y6a{bottom:202.920000pt;}
.y55{bottom:203.560000pt;}
.y1b{bottom:209.000000pt;}
.y3e{bottom:223.400000pt;}
.y69{bottom:230.440000pt;}
.y54{bottom:231.400000pt;}
.y3d{bottom:250.920000pt;}
.y1a{bottom:251.560000pt;}
.y53{bottom:258.920000pt;}
.y68{bottom:265.960000pt;}
.y3c{bottom:278.440000pt;}
.y52{bottom:286.440000pt;}
.y19{bottom:287.080000pt;}
.y67{bottom:293.800000pt;}
.y3b{bottom:313.960000pt;}
.y18{bottom:314.920000pt;}
.y66{bottom:329.320000pt;}
.y3a{bottom:341.800000pt;}
.y17{bottom:342.440000pt;}
.y65{bottom:356.840000pt;}
.y39{bottom:369.320000pt;}
.y16{bottom:369.960000pt;}
.y64{bottom:384.360000pt;}
.y38{bottom:396.840000pt;}
.y15{bottom:397.480000pt;}
.y63{bottom:419.880000pt;}
.y51{bottom:424.360000pt;}
.y14{bottom:425.320000pt;}
.y7e{bottom:431.720000pt;}
.y37{bottom:432.360000pt;}
.y62{bottom:447.720000pt;}
.y50{bottom:451.880000pt;}
.y13{bottom:452.840000pt;}
.y36{bottom:459.880000pt;}
.y7d{bottom:467.240000pt;}
.y4f{bottom:479.720000pt;}
.y12{bottom:480.360000pt;}
.y61{bottom:483.240000pt;}
.y35{bottom:487.720000pt;}
.y7c{bottom:494.760000pt;}
.y60{bottom:510.760000pt;}
.y34{bottom:515.240000pt;}
.y11{bottom:515.880000pt;}
.y7b{bottom:530.280000pt;}
.y4e{bottom:542.760000pt;}
.y10{bottom:543.720000pt;}
.y5f{bottom:546.280000pt;}
.y33{bottom:550.760000pt;}
.y7a{bottom:566.120000pt;}
.y4d{bottom:570.280000pt;}
.yf{bottom:571.240000pt;}
.y5e{bottom:574.120000pt;}
.y32{bottom:578.280000pt;}
.y79{bottom:593.640000pt;}
.y4c{bottom:598.120000pt;}
.ye{bottom:598.760000pt;}
.y31{bottom:606.120000pt;}
.y5d{bottom:609.640000pt;}
.y4b{bottom:625.640000pt;}
.yd{bottom:626.280000pt;}
.y78{bottom:629.160000pt;}
.y30{bottom:633.640000pt;}
.y5c{bottom:637.160000pt;}
.y77{bottom:656.680000pt;}
.y2f{bottom:661.160000pt;}
.yc{bottom:661.800000pt;}
.y5b{bottom:672.680000pt;}
.y2e{bottom:688.680000pt;}
.yb{bottom:689.640000pt;}
.y76{bottom:692.520000pt;}
.y5a{bottom:708.520000pt;}
.ya{bottom:715.880000pt;}
.y4a{bottom:716.520000pt;}
.y75{bottom:720.040000pt;}
.y2d{bottom:724.520000pt;}
.y9{bottom:742.440000pt;}
.y49{bottom:744.040000pt;}
.y74{bottom:747.560000pt;}
.y2c{bottom:752.040000pt;}
.y8{bottom:768.679867pt;}
.y48{bottom:771.560000pt;}
.y2b{bottom:779.560000pt;}
.y73{bottom:783.080000pt;}
.y7{bottom:795.240000pt;}
.y47{bottom:799.080000pt;}
.y2a{bottom:807.080000pt;}
.y72{bottom:810.920000pt;}
.y6{bottom:821.480000pt;}
.y46{bottom:826.920000pt;}
.y29{bottom:834.920000pt;}
.y71{bottom:846.440000pt;}
.y5{bottom:848.040000pt;}
.y45{bottom:854.440000pt;}
.y28{bottom:862.440000pt;}
.y70{bottom:873.960000pt;}
.y4{bottom:874.280000pt;}
.y44{bottom:881.960000pt;}
.y27{bottom:889.960000pt;}
.y6f{bottom:909.480000pt;}
.y3{bottom:916.200000pt;}
.y26{bottom:917.480000pt;}
.y2{bottom:942.440000pt;}
.y25{bottom:945.320000pt;}
.h8{height:30.324375pt;}
.h5{height:44.437500pt;}
.h9{height:46.048125pt;}
.h7{height:49.481250pt;}
.h4{height:56.156250pt;}
.h3{height:63.984375pt;}
.h6{height:66.503125pt;}
.h2{height:1067.880000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:12.000000pt;}
.x9{left:101.120120pt;}
.x3{left:120.319973pt;}
.xa{left:149.120000pt;}
.x8{left:168.320000pt;}
.x2{left:204.184933pt;}
.x7{left:517.305333pt;}
.x6{left:565.711600pt;}
.x5{left:572.844400pt;}
.x4{left:666.586533pt;}
}




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