
    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_538f830545bdc35bd8e74c68.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943848;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_d5f88fdd087857ca00852feb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_f42a25f88d9e5b675e36dca4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.924805;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_eb4a8661e66ae83bb6ff6bac.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_caf6350e4ed29e731dffb8a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8b9bde793b82ef14e9bf36f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_6529259686bb1c4351d8767b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_70d126d230bacf61ed85d298.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963867;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-118.884000px;}
.v3{vertical-align:-73.500000px;}
.v2{vertical-align:-45.384000px;}
.v5{vertical-align:-34.866000px;}
.v4{vertical-align:-23.814000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.063042px;}
.ls0{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.244632px;}
.ls2{letter-spacing:50.590800px;}
.ls3{letter-spacing:50.596800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-73.118028px;}
.ws1{word-spacing:-66.475014px;}
.ws0{word-spacing:-59.832000px;}
.ws4{word-spacing:-39.902958px;}
.ws3{word-spacing:-33.261606px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:332.044470px;}
.ws6{word-spacing:488.054952px;}
.ws7{word-spacing:713.355408px;}
._2b{margin-left:-3385.009848px;}
._2f{margin-left:-3319.033290px;}
._30{margin-left:-1063.157088px;}
._2a{margin-left:-681.055746px;}
._2e{margin-left:-271.099674px;}
._29{margin-left:-238.546338px;}
._11{margin-left:-29.300004px;}
._31{margin-left:-11.380266px;}
._f{margin-left:-10.371888px;}
._14{margin-left:-9.166632px;}
._15{margin-left:-7.786938px;}
._12{margin-left:-6.731082px;}
._16{margin-left:-5.320080px;}
._27{margin-left:-3.840360px;}
._1f{margin-left:-2.304864px;}
._2{margin-left:-1.008378px;}
._c{width:1.584594px;}
._18{width:3.025134px;}
._26{width:4.177566px;}
._17{width:5.774808px;}
._a{width:7.634862px;}
._b{width:8.643240px;}
._6{width:10.083780px;}
._8{width:11.092158px;}
._7{width:12.244590px;}
._25{width:13.541076px;}
._4{width:15.125670px;}
._5{width:18.582966px;}
._1d{width:19.591344px;}
._1{width:20.599722px;}
._9{width:23.480802px;}
._d{width:24.921342px;}
._24{width:26.649990px;}
._1b{width:28.522692px;}
._0{width:30.683502px;}
._3{width:38.462418px;}
._1c{width:40.911336px;}
._22{width:42.351876px;}
._10{width:43.648362px;}
._e{width:46.097280px;}
._1a{width:55.748898px;}
._19{width:56.757276px;}
._20{width:58.774032px;}
._23{width:67.993488px;}
._1e{width:83.695374px;}
._21{width:95.939964px;}
._28{width:111.217710px;}
._2c{width:740.437560px;}
._13{width:1194.105030px;}
._2d{width:1586.322648px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:64.800000px;}
.fs9{font-size:95.922000px;}
.fsc{font-size:108.000000px;}
.fsa{font-size:120.078000px;}
.fs4{font-size:125.448000px;}
.fs8{font-size:131.982000px;}
.fs0{font-size:144.054000px;}
.fs5{font-size:168.036000px;}
.fsd{font-size:192.018000px;}
.fs3{font-size:216.000000px;}
.fs6{font-size:239.982000px;}
.fs1{font-size:252.054000px;}
.fs7{font-size:263.964000px;}
.fs2{font-size:395.946000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y2b{bottom:116.631000px;}
.y85{bottom:121.690500px;}
.y2a{bottom:150.094500px;}
.y84{bottom:161.829000px;}
.y29{bottom:183.556500px;}
.y83{bottom:201.967500px;}
.y28{bottom:234.877500px;}
.y82{bottom:242.106000px;}
.y27{bottom:268.341000px;}
.y81{bottom:300.103500px;}
.y26{bottom:301.804500px;}
.y25{bottom:335.266500px;}
.y1a{bottom:397.558500px;}
.y80{bottom:496.501500px;}
.y1f{bottom:533.239500px;}
.y7f{bottom:536.640000px;}
.y7e{bottom:576.778500px;}
.y1e{bottom:588.004500px;}
.y7d{bottom:616.917000px;}
.y1d{bottom:639.793500px;}
.y7c{bottom:657.055500px;}
.y1c{bottom:694.558500px;}
.y7b{bottom:697.194000px;}
.y7a{bottom:737.334000px;}
.y19{bottom:763.228500px;}
.y79{bottom:777.472500px;}
.y4e{bottom:864.594000px;}
.y71{bottom:912.174000px;}
.y4d{bottom:922.591500px;}
.y70{bottom:952.312500px;}
.y4c{bottom:962.730000px;}
.y6f{bottom:992.451000px;}
.y4b{bottom:1011.585000px;}
.y6e{bottom:1032.589500px;}
.y4a{bottom:1069.582500px;}
.y49{bottom:1118.862000px;}
.y18{bottom:1126.771500px;}
.y48{bottom:1167.717000px;}
.y1b{bottom:1274.272500px;}
.y6d{bottom:1424.622000px;}
.y6c{bottom:1460.635500px;}
.y6b{bottom:1532.664000px;}
.y78{bottom:1568.083500px;}
.y77{bottom:1604.097000px;}
.y6a{bottom:1604.692500px;}
.y69{bottom:1640.706000px;}
.y47{bottom:1641.472500px;}
.y46{bottom:1677.486000px;}
.y68{bottom:1712.734500px;}
.y45{bottom:1713.501000px;}
.y67{bottom:1748.749500px;}
.y44{bottom:1749.514500px;}
.y66{bottom:1784.763000px;}
.y43{bottom:1791.481500px;}
.y65{bottom:1856.791500px;}
.y42{bottom:1893.273000px;}
.y76{bottom:1928.224500px;}
.y64{bottom:1928.820000px;}
.y41{bottom:1929.288000px;}
.y63{bottom:1964.833500px;}
.y40{bottom:1965.301500px;}
.y3f{bottom:2001.316500px;}
.y62{bottom:2036.862000px;}
.y3e{bottom:2037.330000px;}
.y61{bottom:2072.877000px;}
.y3d{bottom:2079.297000px;}
.y75{bottom:2108.295000px;}
.y60{bottom:2144.905500px;}
.y3c{bottom:2145.372000px;}
.y74{bottom:2180.323500px;}
.y3b{bottom:2181.387000px;}
.y73{bottom:2216.338500px;}
.y3a{bottom:2217.400500px;}
.y72{bottom:2252.352000px;}
.y5f{bottom:2253.075000px;}
.y39{bottom:2259.367500px;}
.y5e{bottom:2293.213500px;}
.y5d{bottom:2353.719000px;}
.y17{bottom:2364.094500px;}
.y5c{bottom:2495.989500px;}
.y56{bottom:2519.758500px;}
.y5b{bottom:2529.453000px;}
.y55{bottom:2553.222000px;}
.y5a{bottom:2562.916500px;}
.y54{bottom:2586.684000px;}
.y38{bottom:2626.101000px;}
.y59{bottom:2626.611000px;}
.y51{bottom:2648.167500px;}
.y58{bottom:2660.073000px;}
.y37{bottom:2662.114500px;}
.y50{bottom:2678.400000px;}
.y4f{bottom:2708.631000px;}
.y57{bottom:2727.000000px;}
.y36{bottom:2769.859500px;}
.y35{bottom:2811.826500px;}
.y34{bottom:2913.618000px;}
.y33{bottom:2949.633000px;}
.y32{bottom:2985.646500px;}
.y31{bottom:3027.613500px;}
.y30{bottom:3117.501000px;}
.y2f{bottom:3225.244500px;}
.y2e{bottom:3332.989500px;}
.y2d{bottom:3434.782500px;}
.y53{bottom:3467.394000px;}
.y2c{bottom:3476.749500px;}
.y16{bottom:3492.991500px;}
.y52{bottom:3500.857500px;}
.y21{bottom:3676.591500px;}
.y23{bottom:3683.862000px;}
.y20{bottom:3703.251000px;}
.y22{bottom:3710.523000px;}
.y10{bottom:3729.018000px;}
.yf{bottom:3769.156500px;}
.ye{bottom:3809.295000px;}
.yd{bottom:3849.433500px;}
.yc{bottom:3889.572000px;}
.yb{bottom:3929.712000px;}
.ya{bottom:3969.850500px;}
.y9{bottom:4009.989000px;}
.y8{bottom:4050.127500px;}
.y7{bottom:4090.266000px;}
.y6{bottom:4130.404500px;}
.y5{bottom:4170.543000px;}
.y4{bottom:4210.681500px;}
.y3{bottom:4250.820000px;}
.y2{bottom:4290.958500px;}
.y11{bottom:4355.376000px;}
.y24{bottom:4432.677000px;}
.y15{bottom:4627.545000px;}
.y14{bottom:4674.358500px;}
.y13{bottom:4820.541000px;}
.y12{bottom:4930.156500px;}
.h10{height:69.516879px;}
.ha{height:69.833839px;}
.h11{height:71.205012px;}
.h12{height:78.626953px;}
.hc{height:82.327351px;}
.he{height:82.333351px;}
.hb{height:88.416809px;}
.h9{height:97.182059px;}
.h15{height:104.382879px;}
.h3{height:106.071012px;}
.hd{height:106.141351px;}
.hf{height:106.844739px;}
.h14{height:111.065071px;}
.h6{height:123.729633px;}
.h13{height:141.388254px;}
.h7{height:173.893207px;}
.h4{height:182.640691px;}
.h8{height:191.270789px;}
.h5{height:278.786197px;}
.h2{height:5055.547500px;}
.h0{height:5055.590551px;}
.h1{height:5055.750000px;}
.w2{width:3575.862000px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:116.929500px;}
.x2{left:121.692000px;}
.x5{left:146.692500px;}
.x17{left:163.701000px;}
.x15{left:170.079000px;}
.x7{left:201.969000px;}
.x1d{left:214.725000px;}
.x19{left:243.978000px;}
.x3{left:444.543000px;}
.x16{left:459.213000px;}
.x18{left:1037.481000px;}
.x1a{left:1084.252500px;}
.x1c{left:1086.378000px;}
.x4{left:1628.503500px;}
.x11{left:1838.976000px;}
.x12{left:1864.488000px;}
.xb{left:1872.991500px;}
.xf{left:1966.536000px;}
.x9{left:1987.795500px;}
.xa{left:1989.921000px;}
.x10{left:1992.046500px;}
.x8{left:1998.424500px;}
.xe{left:2004.802500px;}
.x13{left:2015.433000px;}
.xd{left:2404.488000px;}
.x6{left:2412.991500px;}
.xc{left:2625.591000px;}
.x1b{left:2689.369500px;}
.x14{left:2893.464000px;}
@media print{
.v1{vertical-align:-105.674667pt;}
.v3{vertical-align:-65.333333pt;}
.v2{vertical-align:-40.341333pt;}
.v5{vertical-align:-30.992000pt;}
.v4{vertical-align:-21.168000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.056037pt;}
.ls0{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.217451pt;}
.ls2{letter-spacing:44.969600pt;}
.ls3{letter-spacing:44.974933pt;}
.ws2{word-spacing:-64.993803pt;}
.ws1{word-spacing:-59.088901pt;}
.ws0{word-spacing:-53.184000pt;}
.ws4{word-spacing:-35.469296pt;}
.ws3{word-spacing:-29.565872pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:295.150640pt;}
.ws6{word-spacing:433.826624pt;}
.ws7{word-spacing:634.093696pt;}
._2b{margin-left:-3008.897643pt;}
._2f{margin-left:-2950.251813pt;}
._30{margin-left:-945.028523pt;}
._2a{margin-left:-605.382885pt;}
._2e{margin-left:-240.977488pt;}
._29{margin-left:-212.041189pt;}
._11{margin-left:-26.044448pt;}
._31{margin-left:-10.115792pt;}
._f{margin-left:-9.219456pt;}
._14{margin-left:-8.148117pt;}
._15{margin-left:-6.921723pt;}
._12{margin-left:-5.983184pt;}
._16{margin-left:-4.728960pt;}
._27{margin-left:-3.413653pt;}
._1f{margin-left:-2.048768pt;}
._2{margin-left:-0.896336pt;}
._c{width:1.408528pt;}
._18{width:2.689008pt;}
._26{width:3.713392pt;}
._17{width:5.133163pt;}
._a{width:6.786544pt;}
._b{width:7.682880pt;}
._6{width:8.963360pt;}
._8{width:9.859696pt;}
._7{width:10.884080pt;}
._25{width:12.036512pt;}
._4{width:13.445040pt;}
._5{width:16.518192pt;}
._1d{width:17.414528pt;}
._1{width:18.310864pt;}
._9{width:20.871824pt;}
._d{width:22.152304pt;}
._24{width:23.688880pt;}
._1b{width:25.353504pt;}
._0{width:27.274224pt;}
._3{width:34.188816pt;}
._1c{width:36.365632pt;}
._22{width:37.646112pt;}
._10{width:38.798544pt;}
._e{width:40.975360pt;}
._1a{width:49.554576pt;}
._19{width:50.450912pt;}
._20{width:52.243584pt;}
._23{width:60.438656pt;}
._1e{width:74.395888pt;}
._21{width:85.279968pt;}
._28{width:98.860187pt;}
._2c{width:658.166720pt;}
._13{width:1061.426693pt;}
._2d{width:1410.064576pt;}
.fsb{font-size:57.600000pt;}
.fs9{font-size:85.264000pt;}
.fsc{font-size:96.000000pt;}
.fsa{font-size:106.736000pt;}
.fs4{font-size:111.509333pt;}
.fs8{font-size:117.317333pt;}
.fs0{font-size:128.048000pt;}
.fs5{font-size:149.365333pt;}
.fsd{font-size:170.682667pt;}
.fs3{font-size:192.000000pt;}
.fs6{font-size:213.317333pt;}
.fs1{font-size:224.048000pt;}
.fs7{font-size:234.634667pt;}
.fs2{font-size:351.952000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y2b{bottom:103.672000pt;}
.y85{bottom:108.169333pt;}
.y2a{bottom:133.417333pt;}
.y84{bottom:143.848000pt;}
.y29{bottom:163.161333pt;}
.y83{bottom:179.526667pt;}
.y28{bottom:208.780000pt;}
.y82{bottom:215.205333pt;}
.y27{bottom:238.525333pt;}
.y81{bottom:266.758667pt;}
.y26{bottom:268.270667pt;}
.y25{bottom:298.014667pt;}
.y1a{bottom:353.385333pt;}
.y80{bottom:441.334667pt;}
.y1f{bottom:473.990667pt;}
.y7f{bottom:477.013333pt;}
.y7e{bottom:512.692000pt;}
.y1e{bottom:522.670667pt;}
.y7d{bottom:548.370667pt;}
.y1d{bottom:568.705333pt;}
.y7c{bottom:584.049333pt;}
.y1c{bottom:617.385333pt;}
.y7b{bottom:619.728000pt;}
.y7a{bottom:655.408000pt;}
.y19{bottom:678.425333pt;}
.y79{bottom:691.086667pt;}
.y4e{bottom:768.528000pt;}
.y71{bottom:810.821333pt;}
.y4d{bottom:820.081333pt;}
.y70{bottom:846.500000pt;}
.y4c{bottom:855.760000pt;}
.y6f{bottom:882.178667pt;}
.y4b{bottom:899.186667pt;}
.y6e{bottom:917.857333pt;}
.y4a{bottom:950.740000pt;}
.y49{bottom:994.544000pt;}
.y18{bottom:1001.574667pt;}
.y48{bottom:1037.970667pt;}
.y1b{bottom:1132.686667pt;}
.y6d{bottom:1266.330667pt;}
.y6c{bottom:1298.342667pt;}
.y6b{bottom:1362.368000pt;}
.y78{bottom:1393.852000pt;}
.y77{bottom:1425.864000pt;}
.y6a{bottom:1426.393333pt;}
.y69{bottom:1458.405333pt;}
.y47{bottom:1459.086667pt;}
.y46{bottom:1491.098667pt;}
.y68{bottom:1522.430667pt;}
.y45{bottom:1523.112000pt;}
.y67{bottom:1554.444000pt;}
.y44{bottom:1555.124000pt;}
.y66{bottom:1586.456000pt;}
.y43{bottom:1592.428000pt;}
.y65{bottom:1650.481333pt;}
.y42{bottom:1682.909333pt;}
.y76{bottom:1713.977333pt;}
.y64{bottom:1714.506667pt;}
.y41{bottom:1714.922667pt;}
.y63{bottom:1746.518667pt;}
.y40{bottom:1746.934667pt;}
.y3f{bottom:1778.948000pt;}
.y62{bottom:1810.544000pt;}
.y3e{bottom:1810.960000pt;}
.y61{bottom:1842.557333pt;}
.y3d{bottom:1848.264000pt;}
.y75{bottom:1874.040000pt;}
.y60{bottom:1906.582667pt;}
.y3c{bottom:1906.997333pt;}
.y74{bottom:1938.065333pt;}
.y3b{bottom:1939.010667pt;}
.y73{bottom:1970.078667pt;}
.y3a{bottom:1971.022667pt;}
.y72{bottom:2002.090667pt;}
.y5f{bottom:2002.733333pt;}
.y39{bottom:2008.326667pt;}
.y5e{bottom:2038.412000pt;}
.y5d{bottom:2092.194667pt;}
.y17{bottom:2101.417333pt;}
.y5c{bottom:2218.657333pt;}
.y56{bottom:2239.785333pt;}
.y5b{bottom:2248.402667pt;}
.y55{bottom:2269.530667pt;}
.y5a{bottom:2278.148000pt;}
.y54{bottom:2299.274667pt;}
.y38{bottom:2334.312000pt;}
.y59{bottom:2334.765333pt;}
.y51{bottom:2353.926667pt;}
.y58{bottom:2364.509333pt;}
.y37{bottom:2366.324000pt;}
.y50{bottom:2380.800000pt;}
.y4f{bottom:2407.672000pt;}
.y57{bottom:2424.000000pt;}
.y36{bottom:2462.097333pt;}
.y35{bottom:2499.401333pt;}
.y34{bottom:2589.882667pt;}
.y33{bottom:2621.896000pt;}
.y32{bottom:2653.908000pt;}
.y31{bottom:2691.212000pt;}
.y30{bottom:2771.112000pt;}
.y2f{bottom:2866.884000pt;}
.y2e{bottom:2962.657333pt;}
.y2d{bottom:3053.140000pt;}
.y53{bottom:3082.128000pt;}
.y2c{bottom:3090.444000pt;}
.y16{bottom:3104.881333pt;}
.y52{bottom:3111.873333pt;}
.y21{bottom:3268.081333pt;}
.y23{bottom:3274.544000pt;}
.y20{bottom:3291.778667pt;}
.y22{bottom:3298.242667pt;}
.y10{bottom:3314.682667pt;}
.yf{bottom:3350.361333pt;}
.ye{bottom:3386.040000pt;}
.yd{bottom:3421.718667pt;}
.yc{bottom:3457.397333pt;}
.yb{bottom:3493.077333pt;}
.ya{bottom:3528.756000pt;}
.y9{bottom:3564.434667pt;}
.y8{bottom:3600.113333pt;}
.y7{bottom:3635.792000pt;}
.y6{bottom:3671.470667pt;}
.y5{bottom:3707.149333pt;}
.y4{bottom:3742.828000pt;}
.y3{bottom:3778.506667pt;}
.y2{bottom:3814.185333pt;}
.y11{bottom:3871.445333pt;}
.y24{bottom:3940.157333pt;}
.y15{bottom:4113.373333pt;}
.y14{bottom:4154.985333pt;}
.y13{bottom:4284.925333pt;}
.y12{bottom:4382.361333pt;}
.h10{height:61.792781pt;}
.ha{height:62.074523pt;}
.h11{height:63.293344pt;}
.h12{height:69.890625pt;}
.hc{height:73.179867pt;}
.he{height:73.185201pt;}
.hb{height:78.592719pt;}
.h9{height:86.384052pt;}
.h15{height:92.784781pt;}
.h3{height:94.285344pt;}
.hd{height:94.347867pt;}
.hf{height:94.973102pt;}
.h14{height:98.724508pt;}
.h6{height:109.981896pt;}
.h13{height:125.678448pt;}
.h7{height:154.571740pt;}
.h4{height:162.347281pt;}
.h8{height:170.018479pt;}
.h5{height:247.809953pt;}
.h2{height:4493.820000pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.544000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:103.937333pt;}
.x2{left:108.170667pt;}
.x5{left:130.393333pt;}
.x17{left:145.512000pt;}
.x15{left:151.181333pt;}
.x7{left:179.528000pt;}
.x1d{left:190.866667pt;}
.x19{left:216.869333pt;}
.x3{left:395.149333pt;}
.x16{left:408.189333pt;}
.x18{left:922.205333pt;}
.x1a{left:963.780000pt;}
.x1c{left:965.669333pt;}
.x4{left:1447.558667pt;}
.x11{left:1634.645333pt;}
.x12{left:1657.322667pt;}
.xb{left:1664.881333pt;}
.xf{left:1748.032000pt;}
.x9{left:1766.929333pt;}
.xa{left:1768.818667pt;}
.x10{left:1770.708000pt;}
.x8{left:1776.377333pt;}
.xe{left:1782.046667pt;}
.x13{left:1791.496000pt;}
.xd{left:2137.322667pt;}
.x6{left:2144.881333pt;}
.xc{left:2333.858667pt;}
.x1b{left:2390.550667pt;}
.x14{left:2571.968000pt;}
}




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