
    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_e46df56ef535d068045ca3ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_8a11d46be1b50a89334fbd67.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_fb31a75e0824b77bf401967d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_434680d71aa32d7cfdc01af8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_17595d382ca2ea7d253cce1f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.692383;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_700d4c573c647ecda917bfa1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;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;}
.m2{transform:matrix(0.000000,-0.250423,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250423,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250423,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249577,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-87.840000px;}
.v4{vertical-align:-76.320000px;}
.v2{vertical-align:-30.240000px;}
.v5{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.304568px;}
.v8{vertical-align:24.219481px;}
.v7{vertical-align:26.530214px;}
.v1{vertical-align:30.240000px;}
.v9{vertical-align:34.021369px;}
.lsa{letter-spacing:-0.414600px;}
.ls10{letter-spacing:-0.187855px;}
.ls6{letter-spacing:-0.178800px;}
.lsc{letter-spacing:-0.141179px;}
.ls9{letter-spacing:-0.109200px;}
.ls12{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.003965px;}
.lse{letter-spacing:0.231833px;}
.ls11{letter-spacing:0.302400px;}
.ls8{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.368467px;}
.lsf{letter-spacing:0.387731px;}
.ls0{letter-spacing:0.541440px;}
.lsb{letter-spacing:0.567600px;}
.ls4{letter-spacing:0.939571px;}
.ls1{letter-spacing:151.481280px;}
.ls2{letter-spacing:348.693986px;}
.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;}
}
.ws14{word-spacing:-59.760000px;}
.wsd{word-spacing:-39.948393px;}
.ws6{word-spacing:-18.982320px;}
.ws3{word-spacing:-18.720120px;}
.ws11{word-spacing:-18.717120px;}
.ws1{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.ws12{word-spacing:-16.613280px;}
.ws13{word-spacing:-16.506480px;}
.ws8{word-spacing:-13.463308px;}
.wse{word-spacing:-12.160837px;}
.wsa{word-spacing:-12.040244px;}
.ws0{word-spacing:-11.609280px;}
.ws5{word-spacing:-11.430480px;}
.ws2{word-spacing:-10.808640px;}
.wsf{word-spacing:-7.749706px;}
.ws10{word-spacing:-7.186583px;}
.ws15{word-spacing:0.000000px;}
.ws9{word-spacing:63.122625px;}
.wsb{word-spacing:65.423531px;}
.wsc{word-spacing:69.240176px;}
.ws7{word-spacing:382.838544px;}
._0{margin-left:-1.010880px;}
._1{width:1.010880px;}
._2{width:2.072640px;}
._a{width:3.444000px;}
._9{width:4.902240px;}
._6{width:8.167440px;}
._5{width:9.246720px;}
._7{width:10.595040px;}
._8{width:16.193280px;}
._3{width:17.256960px;}
._4{width:20.107680px;}
._14{width:25.966080px;}
._b{width:27.696960px;}
._11{width:34.643520px;}
._13{width:41.201280px;}
._d{width:53.274240px;}
._10{width:54.449280px;}
._e{width:58.953600px;}
._f{width:60.060960px;}
._c{width:94.481520px;}
._12{width:96.315360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:25.950514px;}
.fsc{font-size:26.481925px;}
.fse{font-size:26.526756px;}
.fs7{font-size:28.256061px;}
.fs4{font-size:38.880000px;}
.fsb{font-size:39.716560px;}
.fs3{font-size:41.760000px;}
.fsa{font-size:43.744017px;}
.fs8{font-size:43.818071px;}
.fsd{font-size:48.347318px;}
.fs6{font-size:48.429165px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y44{bottom:6.480000px;}
.y30{bottom:11.880000px;}
.y43{bottom:25.560000px;}
.y28{bottom:28.109119px;}
.y42{bottom:44.460000px;}
.y1b{bottom:51.171792px;}
.y1{bottom:58.356000px;}
.y41{bottom:63.405000px;}
.y1c{bottom:66.596368px;}
.y40{bottom:82.665000px;}
.y3f{bottom:104.265000px;}
.y2a{bottom:116.764057px;}
.y2e{bottom:120.221514px;}
.y3e{bottom:123.165000px;}
.y49{bottom:123.516000px;}
.y1f{bottom:135.215349px;}
.y48{bottom:140.976000px;}
.y3d{bottom:142.245000px;}
.y20{bottom:144.729115px;}
.y27{bottom:158.713085px;}
.y3c{bottom:161.145000px;}
.y47{bottom:167.250000px;}
.y3b{bottom:180.225000px;}
.y46{bottom:184.530000px;}
.y25{bottom:186.822204px;}
.y21{bottom:190.137040px;}
.y1d{bottom:192.009829px;}
.y3a{bottom:199.125000px;}
.y24{bottom:204.121010px;}
.y45{bottom:204.690000px;}
.y2b{bottom:208.300210px;}
.y39{bottom:218.025000px;}
.y2f{bottom:219.990000px;}
.y1a{bottom:231.915000px;}
.y22{bottom:235.544964px;}
.y38{bottom:237.105000px;}
.y29{bottom:243.906246px;}
.y37{bottom:256.005000px;}
.y36{bottom:275.085000px;}
.y23{bottom:280.955770px;}
.y35{bottom:293.985000px;}
.y2c{bottom:296.809647px;}
.y2d{bottom:305.891232px;}
.y34{bottom:312.885000px;}
.y1e{bottom:319.731141px;}
.y33{bottom:331.965000px;}
.y26{bottom:337.318068px;}
.y32{bottom:350.895000px;}
.y31{bottom:369.975000px;}
.y19{bottom:611.745000px;}
.y18{bottom:633.525000px;}
.y17{bottom:655.305000px;}
.y16{bottom:677.265000px;}
.y15{bottom:699.045000px;}
.y14{bottom:720.825000px;}
.y13{bottom:761.685000px;}
.y12{bottom:780.585000px;}
.y11{bottom:821.445000px;}
.y10{bottom:841.830000px;}
.yf{bottom:864.510000px;}
.ye{bottom:889.170000px;}
.yd{bottom:906.450000px;}
.yc{bottom:916.170000px;}
.yb{bottom:941.010000px;}
.ya{bottom:958.290000px;}
.y9{bottom:969.450000px;}
.y8{bottom:992.130000px;}
.y7{bottom:1020.210000px;}
.y6{bottom:1039.110000px;}
.y5{bottom:1058.190000px;}
.y4{bottom:1078.530000px;}
.y3{bottom:1111.290000px;}
.y2{bottom:1135.440000px;}
.h7{height:40.550625px;}
.h11{height:45.623642px;}
.hc{height:45.700879px;}
.h2{height:49.992188px;}
.h10{height:50.424742px;}
.ha{height:50.510106px;}
.hd{height:51.285055px;}
.hf{height:51.798368px;}
.h12{height:51.891821px;}
.hb{height:56.000402px;}
.h4{height:58.490859px;}
.h8{height:62.327813px;}
.h6{height:69.086250px;}
.h5{height:73.794375px;}
.h14{height:73.914375px;}
.he{height:79.722247px;}
.h3{height:87.859687px;}
.h9{height:373.350000px;}
.h13{height:385.275000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:274.350000px;}
.w2{width:401.769185px;}
.w3{width:418.395000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x21{left:8.100000px;}
.x16{left:36.838777px;}
.x10{left:50.796237px;}
.xf{left:74.398079px;}
.xe{left:90.944248px;}
.x1e{left:99.936000px;}
.x1{left:108.036000px;}
.x5{left:111.276000px;}
.x9{left:116.316000px;}
.xc{left:118.296000px;}
.x2{left:122.976000px;}
.x4{left:131.976000px;}
.x22{left:150.510000px;}
.x1b{left:180.309384px;}
.x13{left:181.891373px;}
.x8{left:185.250000px;}
.x12{left:191.532879px;}
.x17{left:198.729492px;}
.xb{left:212.430000px;}
.x11{left:220.169761px;}
.x15{left:225.347180px;}
.x3{left:235.110000px;}
.x1c{left:238.156979px;}
.x6{left:250.770000px;}
.x1d{left:252.689707px;}
.x19{left:277.298269px;}
.x18{left:278.736441px;}
.x1a{left:364.214198px;}
.x14{left:373.424252px;}
.x7{left:374.655000px;}
.xa{left:399.135000px;}
.x1f{left:409.929000px;}
.xd{left:416.595000px;}
.x20{left:518.325000px;}
@media print{
.v3{vertical-align:-78.080000pt;}
.v4{vertical-align:-67.840000pt;}
.v2{vertical-align:-26.880000pt;}
.v5{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.381838pt;}
.v8{vertical-align:21.528427pt;}
.v7{vertical-align:23.582412pt;}
.v1{vertical-align:26.880000pt;}
.v9{vertical-align:30.241217pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls10{letter-spacing:-0.166982pt;}
.ls6{letter-spacing:-0.158933pt;}
.lsc{letter-spacing:-0.125493pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.003524pt;}
.lse{letter-spacing:0.206074pt;}
.ls11{letter-spacing:0.268800pt;}
.ls8{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.327526pt;}
.lsf{letter-spacing:0.344650pt;}
.ls0{letter-spacing:0.481280pt;}
.lsb{letter-spacing:0.504533pt;}
.ls4{letter-spacing:0.835174pt;}
.ls1{letter-spacing:134.650027pt;}
.ls2{letter-spacing:309.950210pt;}
.ws14{word-spacing:-53.120000pt;}
.wsd{word-spacing:-35.509683pt;}
.ws6{word-spacing:-16.873173pt;}
.ws3{word-spacing:-16.640107pt;}
.ws11{word-spacing:-16.637440pt;}
.ws1{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.ws12{word-spacing:-14.767360pt;}
.ws13{word-spacing:-14.672427pt;}
.ws8{word-spacing:-11.967385pt;}
.wse{word-spacing:-10.809633pt;}
.wsa{word-spacing:-10.702439pt;}
.ws0{word-spacing:-10.319360pt;}
.ws5{word-spacing:-10.160427pt;}
.ws2{word-spacing:-9.607680pt;}
.wsf{word-spacing:-6.888628pt;}
.ws10{word-spacing:-6.388074pt;}
.ws15{word-spacing:0.000000pt;}
.ws9{word-spacing:56.109000pt;}
.wsb{word-spacing:58.154250pt;}
.wsc{word-spacing:61.546823pt;}
.ws7{word-spacing:340.300928pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.898560pt;}
._2{width:1.842347pt;}
._a{width:3.061333pt;}
._9{width:4.357547pt;}
._6{width:7.259947pt;}
._5{width:8.219307pt;}
._7{width:9.417813pt;}
._8{width:14.394027pt;}
._3{width:15.339520pt;}
._4{width:17.873493pt;}
._14{width:23.080960pt;}
._b{width:24.619520pt;}
._11{width:30.794240pt;}
._13{width:36.623360pt;}
._d{width:47.354880pt;}
._10{width:48.399360pt;}
._e{width:52.403200pt;}
._f{width:53.387520pt;}
._c{width:83.983573pt;}
._12{width:85.613653pt;}
.fs9{font-size:23.067123pt;}
.fsc{font-size:23.539489pt;}
.fse{font-size:23.579339pt;}
.fs7{font-size:25.116498pt;}
.fs4{font-size:34.560000pt;}
.fsb{font-size:35.303609pt;}
.fs3{font-size:37.120000pt;}
.fsa{font-size:38.883570pt;}
.fs8{font-size:38.949396pt;}
.fsd{font-size:42.975394pt;}
.fs6{font-size:43.048147pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:5.760000pt;}
.y30{bottom:10.560000pt;}
.y43{bottom:22.720000pt;}
.y28{bottom:24.985883pt;}
.y42{bottom:39.520000pt;}
.y1b{bottom:45.486037pt;}
.y1{bottom:51.872000pt;}
.y41{bottom:56.360000pt;}
.y1c{bottom:59.196772pt;}
.y40{bottom:73.480000pt;}
.y3f{bottom:92.680000pt;}
.y2a{bottom:103.790273pt;}
.y2e{bottom:106.863568pt;}
.y3e{bottom:109.480000pt;}
.y49{bottom:109.792000pt;}
.y1f{bottom:120.191421pt;}
.y48{bottom:125.312000pt;}
.y3d{bottom:126.440000pt;}
.y20{bottom:128.648103pt;}
.y27{bottom:141.078298pt;}
.y3c{bottom:143.240000pt;}
.y47{bottom:148.666667pt;}
.y3b{bottom:160.200000pt;}
.y46{bottom:164.026667pt;}
.y25{bottom:166.064181pt;}
.y21{bottom:169.010702pt;}
.y1d{bottom:170.675403pt;}
.y3a{bottom:177.000000pt;}
.y24{bottom:181.440897pt;}
.y45{bottom:181.946667pt;}
.y2b{bottom:185.155742pt;}
.y39{bottom:193.800000pt;}
.y2f{bottom:195.546667pt;}
.y1a{bottom:206.146667pt;}
.y22{bottom:209.373302pt;}
.y38{bottom:210.760000pt;}
.y29{bottom:216.805552pt;}
.y37{bottom:227.560000pt;}
.y36{bottom:244.520000pt;}
.y23{bottom:249.738462pt;}
.y35{bottom:261.320000pt;}
.y2c{bottom:263.830797pt;}
.y2d{bottom:271.903317pt;}
.y34{bottom:278.120000pt;}
.y1e{bottom:284.205459pt;}
.y33{bottom:295.080000pt;}
.y26{bottom:299.838283pt;}
.y32{bottom:311.906667pt;}
.y31{bottom:328.866667pt;}
.y19{bottom:543.773333pt;}
.y18{bottom:563.133333pt;}
.y17{bottom:582.493333pt;}
.y16{bottom:602.013333pt;}
.y15{bottom:621.373333pt;}
.y14{bottom:640.733333pt;}
.y13{bottom:677.053333pt;}
.y12{bottom:693.853333pt;}
.y11{bottom:730.173333pt;}
.y10{bottom:748.293333pt;}
.yf{bottom:768.453333pt;}
.ye{bottom:790.373333pt;}
.yd{bottom:805.733333pt;}
.yc{bottom:814.373333pt;}
.yb{bottom:836.453333pt;}
.ya{bottom:851.813333pt;}
.y9{bottom:861.733333pt;}
.y8{bottom:881.893333pt;}
.y7{bottom:906.853333pt;}
.y6{bottom:923.653333pt;}
.y5{bottom:940.613333pt;}
.y4{bottom:958.693333pt;}
.y3{bottom:987.813333pt;}
.y2{bottom:1009.280000pt;}
.h7{height:36.045000pt;}
.h11{height:40.554349pt;}
.hc{height:40.623003pt;}
.h2{height:44.437500pt;}
.h10{height:44.821993pt;}
.ha{height:44.897872pt;}
.hd{height:45.586716pt;}
.hf{height:46.042994pt;}
.h12{height:46.126063pt;}
.hb{height:49.778135pt;}
.h4{height:51.991875pt;}
.h8{height:55.402500pt;}
.h6{height:61.410000pt;}
.h5{height:65.595000pt;}
.h14{height:65.701667pt;}
.he{height:70.864220pt;}
.h3{height:78.097500pt;}
.h9{height:331.866667pt;}
.h13{height:342.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:243.866667pt;}
.w2{width:357.128164pt;}
.w3{width:371.906667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x21{left:7.200000pt;}
.x16{left:32.745580pt;}
.x10{left:45.152211pt;}
.xf{left:66.131626pt;}
.xe{left:80.839332pt;}
.x1e{left:88.832000pt;}
.x1{left:96.032000pt;}
.x5{left:98.912000pt;}
.x9{left:103.392000pt;}
.xc{left:105.152000pt;}
.x2{left:109.312000pt;}
.x4{left:117.312000pt;}
.x22{left:133.786667pt;}
.x1b{left:160.275008pt;}
.x13{left:161.681220pt;}
.x8{left:164.666667pt;}
.x12{left:170.251448pt;}
.x17{left:176.648437pt;}
.xb{left:188.826667pt;}
.x11{left:195.706454pt;}
.x15{left:200.308604pt;}
.x3{left:208.986667pt;}
.x1c{left:211.695092pt;}
.x6{left:222.906667pt;}
.x1d{left:224.613073pt;}
.x19{left:246.487350pt;}
.x18{left:247.765726pt;}
.x1a{left:323.745954pt;}
.x14{left:331.932668pt;}
.x7{left:333.026667pt;}
.xa{left:354.786667pt;}
.x1f{left:364.381333pt;}
.xd{left:370.306667pt;}
.x20{left:460.733333pt;}
}




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