
    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_13d9fa35ba74579d9a024a0b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_5969b70e70aeb0f0f955ad28.woff')format("woff");}.ff2{font-family:ff2;line-height:1.171387;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_84f22ed1224f765df0bf0d48.woff')format("woff");}.ff3{font-family:ff3;line-height:1.171387;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_6e4c02296eb40fa44bb69447.woff')format("woff");}.ff4{font-family:ff4;line-height:1.171387;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_0b9ad701ccaf090288a82de9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_c34f339508a3d4300bfec8ba.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_e39439b4cd2e03cc8bc0bf73.woff')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_86d5ad04bda28bfc1d2c91d8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_47c2fce986a26d0d6b6e1ed6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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:ffb;src:url('chunks/assets/font_5124bb6aaba74a97c7694806.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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:ffc;src:url('chunks/assets/font_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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:-51.696000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:50.400000px;}
.ls15{letter-spacing:-0.324000px;}
.ls2{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.027936px;}
.ls13{letter-spacing:0.034980px;}
.ls4{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.048240px;}
.ls5{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.153216px;}
.ls6{letter-spacing:0.157680px;}
.lse{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.759456px;}
.lsb{letter-spacing:0.792000px;}
.ls14{letter-spacing:24.660000px;}
.lsc{letter-spacing:70.473600px;}
.lsa{letter-spacing:70.560000px;}
.ls9{letter-spacing:89.856000px;}
.ls11{letter-spacing:97.509600px;}
.lsf{letter-spacing:97.560000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-74.558304px;}
.ws5{word-spacing:-72.000000px;}
.ws7{word-spacing:-40.712544px;}
.wsb{word-spacing:-24.516000px;}
.wse{word-spacing:-24.475524px;}
.ws4{word-spacing:-24.440544px;}
.ws3{word-spacing:-24.408000px;}
.wsc{word-spacing:-24.372000px;}
.wsa{word-spacing:-24.084000px;}
.ws6{word-spacing:-16.272000px;}
.ws2{word-spacing:-16.200000px;}
.ws1{word-spacing:-15.984000px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:0.108000px;}
.ws8{word-spacing:1545.168000px;}
._7{margin-left:-12.675888px;}
._8{margin-left:-9.720000px;}
._9{margin-left:-8.620704px;}
._6{margin-left:-7.591968px;}
._a{margin-left:-6.496800px;}
._2{margin-left:-5.224896px;}
._4{margin-left:-3.400320px;}
._3{margin-left:-2.162016px;}
._0{margin-left:-1.139040px;}
._1{width:1.822464px;}
._5{width:41.112768px;}
.fc4{color:rgb(32,56,100);}
.fc3{color:rgb(0,35,70);}
.fc2{color:transparent;}
.fc5{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:72.000000px;}
.fs12{font-size:84.384000px;}
.fsf{font-size:90.000000px;}
.fs5{font-size:95.904000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs11{font-size:112.320000px;}
.fs1{font-size:113.904000px;}
.fs4{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs3{font-size:131.760000px;}
.fs2{font-size:131.904000px;}
.fs7{font-size:144.000000px;}
.fse{font-size:167.760000px;}
.fsd{font-size:167.904000px;}
.fsb{font-size:180.000000px;}
.fs10{font-size:180.144000px;}
.fs6{font-size:192.384000px;}
.fs0{font-size:216.000000px;}
.fs13{font-size:329.760000px;}
.fs14{font-size:329.904000px;}
.y0{bottom:0.000000px;}
.y9{bottom:46.548000px;}
.y3e{bottom:61.812000px;}
.y6{bottom:110.736000px;}
.y2a{bottom:110.808000px;}
.y17{bottom:115.992000px;}
.y39{bottom:118.044000px;}
.ya{bottom:118.404000px;}
.y1c{bottom:118.692000px;}
.y38{bottom:120.852000px;}
.y30{bottom:123.156000px;}
.y2c{bottom:129.888000px;}
.y3d{bottom:135.288000px;}
.y16{bottom:148.392000px;}
.y1b{bottom:154.515000px;}
.y5{bottom:171.870000px;}
.y15{bottom:180.795000px;}
.y1a{bottom:206.820000px;}
.y3c{bottom:216.720000px;}
.y28{bottom:218.190000px;}
.y4{bottom:221.325000px;}
.y25{bottom:244.650000px;}
.y14{bottom:245.625000px;}
.y3{bottom:253.050000px;}
.y27{bottom:272.340000px;}
.y13{bottom:278.025000px;}
.y2e{bottom:297.435000px;}
.y26{bottom:306.285000px;}
.y3b{bottom:319.065000px;}
.y12{bottom:342.825000px;}
.y24{bottom:350.535000px;}
.y11{bottom:375.225000px;}
.y23{bottom:377.205000px;}
.y10{bottom:407.670000px;}
.y3a{bottom:408.165000px;}
.y22{bottom:424.335000px;}
.y2f{bottom:444.600000px;}
.y2{bottom:456.630000px;}
.yf{bottom:472.470000px;}
.y37{bottom:477.255000px;}
.y1{bottom:500.910000px;}
.ye{bottom:504.870000px;}
.y36{bottom:509.655000px;}
.y46{bottom:513.510000px;}
.y35{bottom:542.055000px;}
.y45{bottom:545.910000px;}
.y8{bottom:568.695000px;}
.yd{bottom:569.700000px;}
.y34{bottom:574.455000px;}
.y44{bottom:578.310000px;}
.y21{bottom:578.445000px;}
.yc{bottom:602.100000px;}
.y33{bottom:606.885000px;}
.y43{bottom:610.740000px;}
.y20{bottom:614.445000px;}
.y1d{bottom:618.270000px;}
.y19{bottom:624.240000px;}
.yb{bottom:634.500000px;}
.y32{bottom:639.285000px;}
.y42{bottom:643.140000px;}
.y41{bottom:675.540000px;}
.y1f{bottom:682.890000px;}
.y40{bottom:707.940000px;}
.y2b{bottom:725.145000px;}
.y18{bottom:733.710000px;}
.y29{bottom:734.790000px;}
.y31{bottom:739.545000px;}
.y3f{bottom:740.340000px;}
.y2d{bottom:740.880000px;}
.y1e{bottom:743.400000px;}
.y7{bottom:756.870000px;}
.h12{height:54.421875px;}
.h9{height:67.042969px;}
.ha{height:68.554688px;}
.h14{height:71.613281px;}
.h16{height:80.346094px;}
.h6{height:89.301234px;}
.h13{height:89.516602px;}
.hb{height:102.832031px;}
.hc{height:102.969141px;}
.h2{height:106.061977px;}
.h1a{height:107.419922px;}
.h1b{height:107.563148px;}
.h5{height:111.961758px;}
.he{height:114.486328px;}
.hf{height:114.623437px;}
.h4{height:122.688633px;}
.h3{height:122.822719px;}
.h19{height:134.085938px;}
.h8{height:143.226562px;}
.h11{height:159.732422px;}
.h10{height:159.869531px;}
.h1{height:165.480469px;}
.hd{height:171.386719px;}
.h15{height:171.523828px;}
.h7{height:183.178125px;}
.h17{height:327.988828px;}
.h18{height:328.132055px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1f{left:32.327979px;}
.x2{left:35.387979px;}
.x1c{left:43.883979px;}
.x3{left:50.579979px;}
.xb{left:69.047979px;}
.x1{left:96.299979px;}
.x21{left:130.067979px;}
.xd{left:146.735979px;}
.xa{left:214.124979px;}
.x4{left:298.079979px;}
.x11{left:314.129979px;}
.x18{left:337.679979px;}
.x8{left:340.169979px;}
.x12{left:346.034979px;}
.x15{left:365.474979px;}
.x16{left:377.639979px;}
.x10{left:379.049979px;}
.x7{left:391.244979px;}
.x14{left:409.349979px;}
.x13{left:425.594979px;}
.x1a{left:438.944979px;}
.x6{left:461.444979px;}
.x22{left:465.449979px;}
.xc{left:474.944979px;}
.xf{left:480.164979px;}
.x20{left:544.139979px;}
.xe{left:566.744979px;}
.x17{left:588.779979px;}
.x1e{left:594.614979px;}
.x23{left:682.949979px;}
.x24{left:716.789979px;}
.x9{left:793.619979px;}
.x19{left:917.429979px;}
.x1b{left:1012.424979px;}
.x1d{left:1211.759979px;}
.x5{left:1262.189979px;}
@media print{
.v2{vertical-align:-45.952000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:44.800000pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.024832pt;}
.ls13{letter-spacing:0.031093pt;}
.ls4{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.042880pt;}
.ls5{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.136192pt;}
.ls6{letter-spacing:0.140160pt;}
.lse{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.675072pt;}
.lsb{letter-spacing:0.704000pt;}
.ls14{letter-spacing:21.920000pt;}
.lsc{letter-spacing:62.643200pt;}
.lsa{letter-spacing:62.720000pt;}
.ls9{letter-spacing:79.872000pt;}
.ls11{letter-spacing:86.675200pt;}
.lsf{letter-spacing:86.720000pt;}
.ws9{word-spacing:-66.274048pt;}
.ws5{word-spacing:-64.000000pt;}
.ws7{word-spacing:-36.188928pt;}
.wsb{word-spacing:-21.792000pt;}
.wse{word-spacing:-21.756021pt;}
.ws4{word-spacing:-21.724928pt;}
.ws3{word-spacing:-21.696000pt;}
.wsc{word-spacing:-21.664000pt;}
.wsa{word-spacing:-21.408000pt;}
.ws6{word-spacing:-14.464000pt;}
.ws2{word-spacing:-14.400000pt;}
.ws1{word-spacing:-14.208000pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:0.096000pt;}
.ws8{word-spacing:1373.482667pt;}
._7{margin-left:-11.267456pt;}
._8{margin-left:-8.640000pt;}
._9{margin-left:-7.662848pt;}
._6{margin-left:-6.748416pt;}
._a{margin-left:-5.774933pt;}
._2{margin-left:-4.644352pt;}
._4{margin-left:-3.022507pt;}
._3{margin-left:-1.921792pt;}
._0{margin-left:-1.012480pt;}
._1{width:1.619968pt;}
._5{width:36.544683pt;}
.fs8{font-size:64.000000pt;}
.fs12{font-size:75.008000pt;}
.fsf{font-size:80.000000pt;}
.fs5{font-size:85.248000pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs11{font-size:99.840000pt;}
.fs1{font-size:101.248000pt;}
.fs4{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs3{font-size:117.120000pt;}
.fs2{font-size:117.248000pt;}
.fs7{font-size:128.000000pt;}
.fse{font-size:149.120000pt;}
.fsd{font-size:149.248000pt;}
.fsb{font-size:160.000000pt;}
.fs10{font-size:160.128000pt;}
.fs6{font-size:171.008000pt;}
.fs0{font-size:192.000000pt;}
.fs13{font-size:293.120000pt;}
.fs14{font-size:293.248000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:41.376000pt;}
.y3e{bottom:54.944000pt;}
.y6{bottom:98.432000pt;}
.y2a{bottom:98.496000pt;}
.y17{bottom:103.104000pt;}
.y39{bottom:104.928000pt;}
.ya{bottom:105.248000pt;}
.y1c{bottom:105.504000pt;}
.y38{bottom:107.424000pt;}
.y30{bottom:109.472000pt;}
.y2c{bottom:115.456000pt;}
.y3d{bottom:120.256000pt;}
.y16{bottom:131.904000pt;}
.y1b{bottom:137.346667pt;}
.y5{bottom:152.773333pt;}
.y15{bottom:160.706667pt;}
.y1a{bottom:183.840000pt;}
.y3c{bottom:192.640000pt;}
.y28{bottom:193.946667pt;}
.y4{bottom:196.733333pt;}
.y25{bottom:217.466667pt;}
.y14{bottom:218.333333pt;}
.y3{bottom:224.933333pt;}
.y27{bottom:242.080000pt;}
.y13{bottom:247.133333pt;}
.y2e{bottom:264.386667pt;}
.y26{bottom:272.253333pt;}
.y3b{bottom:283.613333pt;}
.y12{bottom:304.733333pt;}
.y24{bottom:311.586667pt;}
.y11{bottom:333.533333pt;}
.y23{bottom:335.293333pt;}
.y10{bottom:362.373333pt;}
.y3a{bottom:362.813333pt;}
.y22{bottom:377.186667pt;}
.y2f{bottom:395.200000pt;}
.y2{bottom:405.893333pt;}
.yf{bottom:419.973333pt;}
.y37{bottom:424.226667pt;}
.y1{bottom:445.253333pt;}
.ye{bottom:448.773333pt;}
.y36{bottom:453.026667pt;}
.y46{bottom:456.453333pt;}
.y35{bottom:481.826667pt;}
.y45{bottom:485.253333pt;}
.y8{bottom:505.506667pt;}
.yd{bottom:506.400000pt;}
.y34{bottom:510.626667pt;}
.y44{bottom:514.053333pt;}
.y21{bottom:514.173333pt;}
.yc{bottom:535.200000pt;}
.y33{bottom:539.453333pt;}
.y43{bottom:542.880000pt;}
.y20{bottom:546.173333pt;}
.y1d{bottom:549.573333pt;}
.y19{bottom:554.880000pt;}
.yb{bottom:564.000000pt;}
.y32{bottom:568.253333pt;}
.y42{bottom:571.680000pt;}
.y41{bottom:600.480000pt;}
.y1f{bottom:607.013333pt;}
.y40{bottom:629.280000pt;}
.y2b{bottom:644.573333pt;}
.y18{bottom:652.186667pt;}
.y29{bottom:653.146667pt;}
.y31{bottom:657.373333pt;}
.y3f{bottom:658.080000pt;}
.y2d{bottom:658.560000pt;}
.y1e{bottom:660.800000pt;}
.y7{bottom:672.773333pt;}
.h12{height:48.375000pt;}
.h9{height:59.593750pt;}
.ha{height:60.937500pt;}
.h14{height:63.656250pt;}
.h16{height:71.418750pt;}
.h6{height:79.378875pt;}
.h13{height:79.570312pt;}
.hb{height:91.406250pt;}
.hc{height:91.528125pt;}
.h2{height:94.277312pt;}
.h1a{height:95.484375pt;}
.h1b{height:95.611688pt;}
.h5{height:99.521562pt;}
.he{height:101.765625pt;}
.hf{height:101.887500pt;}
.h4{height:109.056562pt;}
.h3{height:109.175750pt;}
.h19{height:119.187500pt;}
.h8{height:127.312500pt;}
.h11{height:141.984375pt;}
.h10{height:142.106250pt;}
.h1{height:147.093750pt;}
.hd{height:152.343750pt;}
.h15{height:152.465625pt;}
.h7{height:162.825000pt;}
.h17{height:291.545625pt;}
.h18{height:291.672937pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:28.735981pt;}
.x2{left:31.455981pt;}
.x1c{left:39.007981pt;}
.x3{left:44.959981pt;}
.xb{left:61.375981pt;}
.x1{left:85.599981pt;}
.x21{left:115.615981pt;}
.xd{left:130.431981pt;}
.xa{left:190.333314pt;}
.x4{left:264.959981pt;}
.x11{left:279.226648pt;}
.x18{left:300.159981pt;}
.x8{left:302.373314pt;}
.x12{left:307.586648pt;}
.x15{left:324.866648pt;}
.x16{left:335.679981pt;}
.x10{left:336.933314pt;}
.x7{left:347.773314pt;}
.x14{left:363.866648pt;}
.x13{left:378.306648pt;}
.x1a{left:390.173314pt;}
.x6{left:410.173314pt;}
.x22{left:413.733314pt;}
.xc{left:422.173314pt;}
.xf{left:426.813314pt;}
.x20{left:483.679981pt;}
.xe{left:503.773314pt;}
.x17{left:523.359981pt;}
.x1e{left:528.546648pt;}
.x23{left:607.066648pt;}
.x24{left:637.146648pt;}
.x9{left:705.439981pt;}
.x19{left:815.493314pt;}
.x1b{left:899.933314pt;}
.x1d{left:1077.119981pt;}
.x5{left:1121.946648pt;}
}




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