
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_be8e15e565a1b9534a2f239b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_e00213b92207309836f433e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_aad94e4b48d28ec6d202cbf8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_06d98ab5312c1f109ed619fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.813477;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_9525dae4441ac168d38fd5bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_1012c62d0ab88ae8af78cdc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_1e8dc9c82882b15006d447f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_11e39b03c2a4fb06d4a24da9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_8dafdb2885f8ca396a97b7bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_f5d3abb5fedf4699075c96d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.920410;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_e18fba826f8c528eccab68d3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:ffd;src:url('chunks/assets/font_68fb265c0bfa523d3de0bf65.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-4.782000px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.924000px;}
.ls6{letter-spacing:1.080000px;}
.ls1{letter-spacing:12.420000px;}
.lsc{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.864000px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.093600px;}
.ws6{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-7.600320px;}
._18{margin-left:-5.991840px;}
._6{margin-left:-4.309200px;}
._1{margin-left:-3.179520px;}
._7{margin-left:-2.119680px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._3{width:2.246400px;}
._e{width:3.648000px;}
._10{width:4.666560px;}
._f{width:5.916240px;}
._15{width:6.968640px;}
._17{width:8.067600px;}
._19{width:9.110880px;}
._11{width:10.468080px;}
._a{width:12.121200px;}
._b{width:13.772160px;}
._d{width:16.194960px;}
._c{width:17.300160px;}
._1a{width:18.711120px;}
._1b{width:19.759680px;}
._16{width:20.990160px;}
._14{width:22.290480px;}
._1c{width:24.343200px;}
._1d{width:25.539120px;}
._5{width:30.452880px;}
._4{width:31.570560px;}
._8{width:35.688000px;}
._9{width:36.752400px;}
._12{width:38.784240px;}
._13{width:40.021680px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y16{bottom:5.760000px;}
.y8{bottom:14.955000px;}
.y24{bottom:18.000000px;}
.y23{bottom:37.800000px;}
.y7{bottom:44.115000px;}
.y22{bottom:57.630000px;}
.ye{bottom:57.780000px;}
.yc{bottom:58.335000px;}
.y6{bottom:64.275000px;}
.y21{bottom:77.070000px;}
.y2a{bottom:77.430000px;}
.yb{bottom:78.495000px;}
.y4{bottom:86.400000px;}
.y73{bottom:91.296000px;}
.y20{bottom:96.870000px;}
.y29{bottom:97.230000px;}
.y3f{bottom:103.896000px;}
.ya{bottom:107.685000px;}
.y72{bottom:111.096000px;}
.yad{bottom:112.896000px;}
.y1f{bottom:116.850000px;}
.y28{bottom:117.210000px;}
.y3{bottom:122.790000px;}
.y3e{bottom:123.696000px;}
.y71{bottom:130.896000px;}
.yac{bottom:132.876000px;}
.y1e{bottom:136.650000px;}
.y9{bottom:136.830000px;}
.y27{bottom:137.010000px;}
.y3d{bottom:143.676000px;}
.y70{bottom:150.870000px;}
.yab{bottom:152.670000px;}
.y1d{bottom:156.450000px;}
.y26{bottom:156.810000px;}
.y3c{bottom:163.470000px;}
.y6f{bottom:170.670000px;}
.yaa{bottom:172.470000px;}
.y1c{bottom:176.250000px;}
.y25{bottom:176.610000px;}
.y3b{bottom:183.270000px;}
.y6e{bottom:190.470000px;}
.ya9{bottom:192.270000px;}
.y1b{bottom:196.410000px;}
.y3a{bottom:203.070000px;}
.y6d{bottom:210.270000px;}
.ya8{bottom:211.710000px;}
.y1a{bottom:216.390000px;}
.y39{bottom:222.870000px;}
.y6c{bottom:229.710000px;}
.y86{bottom:230.070000px;}
.y19{bottom:236.190000px;}
.ya7{bottom:241.050000px;}
.y38{bottom:242.850000px;}
.y6b{bottom:250.050000px;}
.y18{bottom:255.990000px;}
.yb9{bottom:259.050000px;}
.ya6{bottom:260.850000px;}
.y37{bottom:262.650000px;}
.y6a{bottom:269.850000px;}
.yb8{bottom:278.850000px;}
.ya5{bottom:280.650000px;}
.y36{bottom:282.450000px;}
.y69{bottom:289.650000px;}
.yb7{bottom:298.650000px;}
.ya4{bottom:300.450000px;}
.y35{bottom:302.250000px;}
.y68{bottom:309.450000px;}
.yb6{bottom:318.495000px;}
.ya3{bottom:320.295000px;}
.y34{bottom:322.095000px;}
.y67{bottom:329.295000px;}
.yb5{bottom:338.295000px;}
.ya2{bottom:340.275000px;}
.y33{bottom:342.075000px;}
.y66{bottom:349.275000px;}
.yb4{bottom:358.275000px;}
.ya1{bottom:360.075000px;}
.y32{bottom:361.875000px;}
.y65{bottom:369.075000px;}
.yb3{bottom:378.075000px;}
.ya0{bottom:379.875000px;}
.y31{bottom:381.675000px;}
.y64{bottom:388.875000px;}
.yb2{bottom:397.875000px;}
.y9f{bottom:399.675000px;}
.y30{bottom:401.475000px;}
.y85{bottom:408.315000px;}
.y63{bottom:408.675000px;}
.yb1{bottom:417.675000px;}
.y9e{bottom:419.475000px;}
.y2f{bottom:421.275000px;}
.y62{bottom:428.475000px;}
.y84{bottom:437.475000px;}
.y9d{bottom:439.455000px;}
.y2e{bottom:441.255000px;}
.y61{bottom:448.455000px;}
.y83{bottom:457.455000px;}
.y9c{bottom:459.255000px;}
.y2d{bottom:461.055000px;}
.yb0{bottom:467.895000px;}
.y60{bottom:468.255000px;}
.y82{bottom:477.255000px;}
.y9b{bottom:479.055000px;}
.y2c{bottom:480.495000px;}
.yaf{bottom:487.695000px;}
.y5f{bottom:488.055000px;}
.y81{bottom:497.055000px;}
.y9a{bottom:498.855000px;}
.y2b{bottom:500.295000px;}
.y5e{bottom:507.855000px;}
.y17{bottom:515.055000px;}
.y80{bottom:516.855000px;}
.y99{bottom:518.655000px;}
.y5d{bottom:527.655000px;}
.y7f{bottom:536.655000px;}
.y98{bottom:538.635000px;}
.y5c{bottom:547.635000px;}
.y7e{bottom:556.635000px;}
.y97{bottom:558.435000px;}
.y5b{bottom:567.435000px;}
.y7d{bottom:576.465000px;}
.y96{bottom:577.905000px;}
.y5a{bottom:587.265000px;}
.y7c{bottom:596.265000px;}
.y59{bottom:607.065000px;}
.y7b{bottom:616.065000px;}
.y58{bottom:626.865000px;}
.y7a{bottom:635.865000px;}
.y57{bottom:646.845000px;}
.y79{bottom:655.845000px;}
.y56{bottom:666.645000px;}
.y78{bottom:675.645000px;}
.y95{bottom:686.445000px;}
.y55{bottom:695.445000px;}
.y94{bottom:706.245000px;}
.y54{bottom:715.245000px;}
.y93{bottom:726.045000px;}
.y53{bottom:735.045000px;}
.y92{bottom:746.025000px;}
.y52{bottom:755.025000px;}
.y91{bottom:765.825000px;}
.y51{bottom:774.825000px;}
.y15{bottom:785.445000px;}
.y90{bottom:785.625000px;}
.y50{bottom:794.625000px;}
.y8f{bottom:805.425000px;}
.y14{bottom:811.545000px;}
.y4f{bottom:814.425000px;}
.y8e{bottom:825.270000px;}
.y13{bottom:831.390000px;}
.y4e{bottom:834.270000px;}
.yae{bottom:844.890000px;}
.y8d{bottom:845.250000px;}
.y12{bottom:851.550000px;}
.y77{bottom:853.890000px;}
.y4d{bottom:854.250000px;}
.y8c{bottom:865.050000px;}
.y11{bottom:872.970000px;}
.y4c{bottom:874.050000px;}
.y8b{bottom:884.850000px;}
.y4b{bottom:893.850000px;}
.y10{bottom:896.010000px;}
.y8a{bottom:904.650000px;}
.y4a{bottom:913.650000px;}
.y89{bottom:924.450000px;}
.yf{bottom:927.870000px;}
.y76{bottom:933.090000px;}
.y49{bottom:933.450000px;}
.y88{bottom:944.430000px;}
.y75{bottom:953.070000px;}
.y48{bottom:953.430000px;}
.yd{bottom:955.050000px;}
.y87{bottom:963.870000px;}
.y5{bottom:972.855000px;}
.y1{bottom:972.870000px;}
.y47{bottom:973.230000px;}
.y46{bottom:993.030000px;}
.y45{bottom:1012.830000px;}
.y44{bottom:1032.630000px;}
.y43{bottom:1052.610000px;}
.y42{bottom:1072.440000px;}
.y41{bottom:1091.880000px;}
.y74{bottom:1092.240000px;}
.y40{bottom:1121.040000px;}
.h2{height:2.864531px;}
.hc{height:19.800000px;}
.h9{height:58.621992px;}
.hb{height:58.651172px;}
.hd{height:60.226875px;}
.h10{height:61.423863px;}
.h7{height:65.010937px;}
.ha{height:66.757500px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h8{height:96.508125px;}
.h3{height:105.060586px;}
.h1{height:161.310000px;}
.h4{height:161.325000px;}
.he{height:269.670000px;}
.hf{height:269.685000px;}
.h0{height:1188.000000px;}
.w1{width:153.570000px;}
.w3{width:156.945000px;}
.w4{width:156.960000px;}
.w6{width:297.255000px;}
.w2{width:472.950000px;}
.w7{width:509.295000px;}
.w5{width:806.535000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.xa{left:54.000000px;}
.x4{left:56.145000px;}
.x1{left:67.320000px;}
.xe{left:81.000000px;}
.xd{left:108.036000px;}
.x7{left:109.830000px;}
.x5{left:119.370000px;}
.x2{left:136.290000px;}
.x3{left:220.905000px;}
.x6{left:236.370000px;}
.xc{left:282.270000px;}
.xb{left:353.055000px;}
.x8{left:693.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-4.250667pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.821333pt;}
.ls6{letter-spacing:0.960000pt;}
.ls1{letter-spacing:11.040000pt;}
.lsc{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.101333pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-6.755840pt;}
._18{margin-left:-5.326080pt;}
._6{margin-left:-3.830400pt;}
._1{margin-left:-2.826240pt;}
._7{margin-left:-1.884160pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._3{width:1.996800pt;}
._e{width:3.242667pt;}
._10{width:4.148053pt;}
._f{width:5.258880pt;}
._15{width:6.194347pt;}
._17{width:7.171200pt;}
._19{width:8.098560pt;}
._11{width:9.304960pt;}
._a{width:10.774400pt;}
._b{width:12.241920pt;}
._d{width:14.395520pt;}
._c{width:15.377920pt;}
._1a{width:16.632107pt;}
._1b{width:17.564160pt;}
._16{width:18.657920pt;}
._14{width:19.813760pt;}
._1c{width:21.638400pt;}
._1d{width:22.701440pt;}
._5{width:27.069227pt;}
._4{width:28.062720pt;}
._8{width:31.722667pt;}
._9{width:32.668800pt;}
._12{width:34.474880pt;}
._13{width:35.574827pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y16{bottom:5.120000pt;}
.y8{bottom:13.293333pt;}
.y24{bottom:16.000000pt;}
.y23{bottom:33.600000pt;}
.y7{bottom:39.213333pt;}
.y22{bottom:51.226667pt;}
.ye{bottom:51.360000pt;}
.yc{bottom:51.853333pt;}
.y6{bottom:57.133333pt;}
.y21{bottom:68.506667pt;}
.y2a{bottom:68.826667pt;}
.yb{bottom:69.773333pt;}
.y4{bottom:76.800000pt;}
.y73{bottom:81.152000pt;}
.y20{bottom:86.106667pt;}
.y29{bottom:86.426667pt;}
.y3f{bottom:92.352000pt;}
.ya{bottom:95.720000pt;}
.y72{bottom:98.752000pt;}
.yad{bottom:100.352000pt;}
.y1f{bottom:103.866667pt;}
.y28{bottom:104.186667pt;}
.y3{bottom:109.146667pt;}
.y3e{bottom:109.952000pt;}
.y71{bottom:116.352000pt;}
.yac{bottom:118.112000pt;}
.y1e{bottom:121.466667pt;}
.y9{bottom:121.626667pt;}
.y27{bottom:121.786667pt;}
.y3d{bottom:127.712000pt;}
.y70{bottom:134.106667pt;}
.yab{bottom:135.706667pt;}
.y1d{bottom:139.066667pt;}
.y26{bottom:139.386667pt;}
.y3c{bottom:145.306667pt;}
.y6f{bottom:151.706667pt;}
.yaa{bottom:153.306667pt;}
.y1c{bottom:156.666667pt;}
.y25{bottom:156.986667pt;}
.y3b{bottom:162.906667pt;}
.y6e{bottom:169.306667pt;}
.ya9{bottom:170.906667pt;}
.y1b{bottom:174.586667pt;}
.y3a{bottom:180.506667pt;}
.y6d{bottom:186.906667pt;}
.ya8{bottom:188.186667pt;}
.y1a{bottom:192.346667pt;}
.y39{bottom:198.106667pt;}
.y6c{bottom:204.186667pt;}
.y86{bottom:204.506667pt;}
.y19{bottom:209.946667pt;}
.ya7{bottom:214.266667pt;}
.y38{bottom:215.866667pt;}
.y6b{bottom:222.266667pt;}
.y18{bottom:227.546667pt;}
.yb9{bottom:230.266667pt;}
.ya6{bottom:231.866667pt;}
.y37{bottom:233.466667pt;}
.y6a{bottom:239.866667pt;}
.yb8{bottom:247.866667pt;}
.ya5{bottom:249.466667pt;}
.y36{bottom:251.066667pt;}
.y69{bottom:257.466667pt;}
.yb7{bottom:265.466667pt;}
.ya4{bottom:267.066667pt;}
.y35{bottom:268.666667pt;}
.y68{bottom:275.066667pt;}
.yb6{bottom:283.106667pt;}
.ya3{bottom:284.706667pt;}
.y34{bottom:286.306667pt;}
.y67{bottom:292.706667pt;}
.yb5{bottom:300.706667pt;}
.ya2{bottom:302.466667pt;}
.y33{bottom:304.066667pt;}
.y66{bottom:310.466667pt;}
.yb4{bottom:318.466667pt;}
.ya1{bottom:320.066667pt;}
.y32{bottom:321.666667pt;}
.y65{bottom:328.066667pt;}
.yb3{bottom:336.066667pt;}
.ya0{bottom:337.666667pt;}
.y31{bottom:339.266667pt;}
.y64{bottom:345.666667pt;}
.yb2{bottom:353.666667pt;}
.y9f{bottom:355.266667pt;}
.y30{bottom:356.866667pt;}
.y85{bottom:362.946667pt;}
.y63{bottom:363.266667pt;}
.yb1{bottom:371.266667pt;}
.y9e{bottom:372.866667pt;}
.y2f{bottom:374.466667pt;}
.y62{bottom:380.866667pt;}
.y84{bottom:388.866667pt;}
.y9d{bottom:390.626667pt;}
.y2e{bottom:392.226667pt;}
.y61{bottom:398.626667pt;}
.y83{bottom:406.626667pt;}
.y9c{bottom:408.226667pt;}
.y2d{bottom:409.826667pt;}
.yb0{bottom:415.906667pt;}
.y60{bottom:416.226667pt;}
.y82{bottom:424.226667pt;}
.y9b{bottom:425.826667pt;}
.y2c{bottom:427.106667pt;}
.yaf{bottom:433.506667pt;}
.y5f{bottom:433.826667pt;}
.y81{bottom:441.826667pt;}
.y9a{bottom:443.426667pt;}
.y2b{bottom:444.706667pt;}
.y5e{bottom:451.426667pt;}
.y17{bottom:457.826667pt;}
.y80{bottom:459.426667pt;}
.y99{bottom:461.026667pt;}
.y5d{bottom:469.026667pt;}
.y7f{bottom:477.026667pt;}
.y98{bottom:478.786667pt;}
.y5c{bottom:486.786667pt;}
.y7e{bottom:494.786667pt;}
.y97{bottom:496.386667pt;}
.y5b{bottom:504.386667pt;}
.y7d{bottom:512.413333pt;}
.y96{bottom:513.693333pt;}
.y5a{bottom:522.013333pt;}
.y7c{bottom:530.013333pt;}
.y59{bottom:539.613333pt;}
.y7b{bottom:547.613333pt;}
.y58{bottom:557.213333pt;}
.y7a{bottom:565.213333pt;}
.y57{bottom:574.973333pt;}
.y79{bottom:582.973333pt;}
.y56{bottom:592.573333pt;}
.y78{bottom:600.573333pt;}
.y95{bottom:610.173333pt;}
.y55{bottom:618.173333pt;}
.y94{bottom:627.773333pt;}
.y54{bottom:635.773333pt;}
.y93{bottom:645.373333pt;}
.y53{bottom:653.373333pt;}
.y92{bottom:663.133333pt;}
.y52{bottom:671.133333pt;}
.y91{bottom:680.733333pt;}
.y51{bottom:688.733333pt;}
.y15{bottom:698.173333pt;}
.y90{bottom:698.333333pt;}
.y50{bottom:706.333333pt;}
.y8f{bottom:715.933333pt;}
.y14{bottom:721.373333pt;}
.y4f{bottom:723.933333pt;}
.y8e{bottom:733.573333pt;}
.y13{bottom:739.013333pt;}
.y4e{bottom:741.573333pt;}
.yae{bottom:751.013333pt;}
.y8d{bottom:751.333333pt;}
.y12{bottom:756.933333pt;}
.y77{bottom:759.013333pt;}
.y4d{bottom:759.333333pt;}
.y8c{bottom:768.933333pt;}
.y11{bottom:775.973333pt;}
.y4c{bottom:776.933333pt;}
.y8b{bottom:786.533333pt;}
.y4b{bottom:794.533333pt;}
.y10{bottom:796.453333pt;}
.y8a{bottom:804.133333pt;}
.y4a{bottom:812.133333pt;}
.y89{bottom:821.733333pt;}
.yf{bottom:824.773333pt;}
.y76{bottom:829.413333pt;}
.y49{bottom:829.733333pt;}
.y88{bottom:839.493333pt;}
.y75{bottom:847.173333pt;}
.y48{bottom:847.493333pt;}
.yd{bottom:848.933333pt;}
.y87{bottom:856.773333pt;}
.y5{bottom:864.760000pt;}
.y1{bottom:864.773333pt;}
.y47{bottom:865.093333pt;}
.y46{bottom:882.693333pt;}
.y45{bottom:900.293333pt;}
.y44{bottom:917.893333pt;}
.y43{bottom:935.653333pt;}
.y42{bottom:953.280000pt;}
.y41{bottom:970.560000pt;}
.y74{bottom:970.880000pt;}
.y40{bottom:996.480000pt;}
.h2{height:2.546250pt;}
.hc{height:17.600000pt;}
.h9{height:52.108438pt;}
.hb{height:52.134375pt;}
.hd{height:53.535000pt;}
.h10{height:54.598989pt;}
.h7{height:57.787500pt;}
.ha{height:59.340000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h8{height:85.785000pt;}
.h3{height:93.387187pt;}
.h1{height:143.386667pt;}
.h4{height:143.400000pt;}
.he{height:239.706667pt;}
.hf{height:239.720000pt;}
.h0{height:1056.000000pt;}
.w1{width:136.506667pt;}
.w3{width:139.506667pt;}
.w4{width:139.520000pt;}
.w6{width:264.226667pt;}
.w2{width:420.400000pt;}
.w7{width:452.706667pt;}
.w5{width:716.920000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.xa{left:48.000000pt;}
.x4{left:49.906667pt;}
.x1{left:59.840000pt;}
.xe{left:72.000000pt;}
.xd{left:96.032000pt;}
.x7{left:97.626667pt;}
.x5{left:106.106667pt;}
.x2{left:121.146667pt;}
.x3{left:196.360000pt;}
.x6{left:210.106667pt;}
.xc{left:250.906667pt;}
.xb{left:313.826667pt;}
.x8{left:616.773333pt;}
}




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