
    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_2a0261923cb5d8d6ab3fbbdd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c8e99e76eb21f32f2cb64911.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a849c20018611d10119140a6.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_6662ed11f46f36d9cdcac0a2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_631b1b75858fc569a9344623.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_543641992d368dd966408ecb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.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);}
.v2{vertical-align:-28.800000px;}
.v3{vertical-align:-1.740000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.340000px;}
.v1{vertical-align:36.000000px;}
.ls4{letter-spacing:-0.199200px;}
.ls16{letter-spacing:-0.181200px;}
.ls15{letter-spacing:-0.133200px;}
.ls5{letter-spacing:-0.088800px;}
.ls17{letter-spacing:-0.041974px;}
.ls10{letter-spacing:-0.037440px;}
.lsb{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.034560px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.069000px;}
.ls9{letter-spacing:0.126000px;}
.ls13{letter-spacing:0.132480px;}
.ls18{letter-spacing:0.137869px;}
.ls3{letter-spacing:0.180000px;}
.lse{letter-spacing:0.252480px;}
.ls12{letter-spacing:0.256200px;}
.ls0{letter-spacing:14.311440px;}
.lsa{letter-spacing:14.532480px;}
.ls1{letter-spacing:24.318432px;}
.lsd{letter-spacing:97.509600px;}
.lsc{letter-spacing:97.560000px;}
.ls8{letter-spacing:101.844000px;}
.ls14{letter-spacing:119.916000px;}
.ls7{letter-spacing:124.149600px;}
.ls6{letter-spacing:124.200000px;}
.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:-59.718240px;}
.ws9{word-spacing:-32.544000px;}
.ws11{word-spacing:-27.174240px;}
.ws6{word-spacing:-24.440544px;}
.ws5{word-spacing:-24.408000px;}
.wsb{word-spacing:-21.674304px;}
.ws7{word-spacing:-21.641760px;}
.ws0{word-spacing:-18.061920px;}
.ws8{word-spacing:-16.272000px;}
.wse{word-spacing:-15.226440px;}
.ws4{word-spacing:-15.002784px;}
.ws13{word-spacing:-8.193832px;}
.ws12{word-spacing:-8.013988px;}
.ws3{word-spacing:-1.627200px;}
.wsd{word-spacing:-1.332000px;}
.wsc{word-spacing:-1.280064px;}
.wsa{word-spacing:-0.300960px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:8.646480px;}
.ws10{word-spacing:9.354096px;}
._f{margin-left:-11.376000px;}
._a{margin-left:-9.285984px;}
._14{margin-left:-7.989120px;}
._d{margin-left:-6.912000px;}
._2{margin-left:-5.760000px;}
._5{margin-left:-4.034016px;}
._0{margin-left:-2.592000px;}
._3{margin-left:-1.290432px;}
._1{width:1.152000px;}
._4{width:2.303856px;}
._13{width:12.463008px;}
._10{width:13.938720px;}
._7{width:16.404864px;}
._6{width:17.765616px;}
._8{width:18.891360px;}
._9{width:20.746368px;}
._b{width:23.003520px;}
._c{width:26.286432px;}
._e{width:128.952000px;}
._12{width:903.705888px;}
._11{width:904.724640px;}
.fc2{color:transparent;}
.fc3{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:7.200000px;}
.fs15{font-size:35.645851px;}
.fs5{font-size:64.080000px;}
.fs7{font-size:64.224000px;}
.fsd{font-size:66.240000px;}
.fsa{font-size:66.384000px;}
.fse{font-size:72.000000px;}
.fs11{font-size:72.144000px;}
.fs4{font-size:79.920000px;}
.fs14{font-size:80.064000px;}
.fsf{font-size:84.240000px;}
.fs10{font-size:84.384000px;}
.fsc{font-size:95.760000px;}
.fs13{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs3{font-size:120.240000px;}
.fs12{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs8{font-size:264.240000px;}
.fs16{font-size:275.760000px;}
.fs0{font-size:288.000000px;}
.fs1{font-size:288.144000px;}
.y7c{bottom:-16.660561px;}
.y7a{bottom:-15.304469px;}
.y70{bottom:-14.529559px;}
.y75{bottom:-14.432695px;}
.y0{bottom:0.000000px;}
.y57{bottom:0.000366px;}
.y7b{bottom:1.452956px;}
.y6b{bottom:2.131002px;}
.y69{bottom:2.421593px;}
.y79{bottom:2.809048px;}
.y6f{bottom:3.583958px;}
.y74{bottom:3.680822px;}
.y68{bottom:14.045240px;}
.y78{bottom:14.529559px;}
.y6e{bottom:15.304469px;}
.y73{bottom:15.401332px;}
.y67{bottom:25.765751px;}
.y77{bottom:26.153206px;}
.y6d{bottom:27.024979px;}
.y72{bottom:27.121843px;}
.y6a{bottom:41.097850px;}
.y66{bottom:41.388441px;}
.y71{bottom:41.582169px;}
.y6c{bottom:41.775896px;}
.y76{bottom:41.969624px;}
.yb{bottom:48.060000px;}
.y4e{bottom:119.052000px;}
.y39{bottom:120.528000px;}
.y48{bottom:130.572000px;}
.y19{bottom:136.872000px;}
.y17{bottom:137.736000px;}
.y4d{bottom:138.852000px;}
.y38{bottom:142.128000px;}
.y16{bottom:157.530000px;}
.y32{bottom:157.680000px;}
.y37{bottom:163.725000px;}
.y2f{bottom:164.910000px;}
.y4c{bottom:171.000000px;}
.y35{bottom:174.270000px;}
.y15{bottom:177.375000px;}
.y47{bottom:182.370000px;}
.y31{bottom:182.880000px;}
.y81{bottom:187.950000px;}
.y2e{bottom:190.830000px;}
.y34{bottom:199.515000px;}
.y30{bottom:208.080000px;}
.y46{bottom:213.870000px;}
.y8{bottom:214.710000px;}
.y80{bottom:220.350000px;}
.y33{bottom:224.715000px;}
.y14{bottom:227.550000px;}
.y3e{bottom:228.030000px;}
.y88{bottom:242.565000px;}
.y3d{bottom:249.660000px;}
.y56{bottom:250.410000px;}
.y7{bottom:252.330000px;}
.y45{bottom:258.150000px;}
.y7f{bottom:267.690000px;}
.y13{bottom:268.590000px;}
.y3c{bottom:271.260000px;}
.y2d{bottom:272.730000px;}
.y55{bottom:282.810000px;}
.y44{bottom:287.310000px;}
.y21{bottom:290.010000px;}
.y6{bottom:290.130000px;}
.y86{bottom:292.710000px;}
.y2c{bottom:298.650000px;}
.y12{bottom:309.450000px;}
.y54{bottom:315.210000px;}
.y85{bottom:324.930000px;}
.y4b{bottom:327.570000px;}
.y3b{bottom:329.370000px;}
.y43{bottom:332.175000px;}
.y20{bottom:334.335000px;}
.y2b{bottom:339.555000px;}
.y3a{bottom:350.970000px;}
.y11{bottom:351.255000px;}
.y4a{bottom:356.370000px;}
.y5{bottom:360.150000px;}
.y65{bottom:361.387885px;}
.y42{bottom:364.575000px;}
.y2a{bottom:365.475000px;}
.y1f{bottom:378.435000px;}
.y64{bottom:379.517546px;}
.y49{bottom:385.170000px;}
.y29{bottom:391.395000px;}
.y41{bottom:396.975000px;}
.y63{bottom:397.631062px;}
.y87{bottom:408.030000px;}
.y53{bottom:409.935000px;}
.y62{bottom:415.841443px;}
.y84{bottom:420.015000px;}
.y1e{bottom:422.535000px;}
.y40{bottom:429.375000px;}
.y28{bottom:432.255000px;}
.y61{bottom:433.954959px;}
.y10{bottom:439.635000px;}
.y52{bottom:442.335000px;}
.y4{bottom:451.590000px;}
.y1d{bottom:451.695000px;}
.y60{bottom:452.165340px;}
.y83{bottom:452.415000px;}
.y7e{bottom:457.455000px;}
.y27{bottom:458.175000px;}
.y3f{bottom:461.775000px;}
.y5f{bottom:470.303072px;}
.y51{bottom:474.735000px;}
.y1c{bottom:480.885000px;}
.yf{bottom:483.765000px;}
.y82{bottom:484.815000px;}
.y5e{bottom:488.416589px;}
.y7d{bottom:489.885000px;}
.y26{bottom:499.245000px;}
.y3{bottom:500.010000px;}
.y5d{bottom:506.626969px;}
.y1b{bottom:510.045000px;}
.y36{bottom:518.145000px;}
.y50{bottom:522.285000px;}
.y23{bottom:523.005000px;}
.y5c{bottom:524.740486px;}
.y25{bottom:525.165000px;}
.ye{bottom:527.865000px;}
.y1a{bottom:539.205000px;}
.y5b{bottom:542.950866px;}
.y18{bottom:542.985000px;}
.y5a{bottom:561.064383px;}
.y22{bottom:564.765000px;}
.y24{bottom:568.185000px;}
.y4f{bottom:569.625000px;}
.yd{bottom:572.145000px;}
.y2{bottom:577.800000px;}
.y59{bottom:579.290907px;}
.y58{bottom:597.404424px;}
.ya{bottom:621.150000px;}
.yc{bottom:644.430000px;}
.y1{bottom:655.560000px;}
.y9{bottom:712.980000px;}
.h9{height:7.161328px;}
.h24{height:9.880100px;}
.h20{height:10.558146px;}
.h1f{height:34.212268px;}
.h23{height:34.599723px;}
.h1e{height:35.454394px;}
.h21{height:35.471496px;}
.h22{height:35.568360px;}
.h8{height:49.680000px;}
.h17{height:57.937500px;}
.h18{height:58.053375px;}
.h10{height:65.884219px;}
.hf{height:66.027445px;}
.h14{height:67.786875px;}
.h15{height:67.902750px;}
.ha{height:67.972289px;}
.h11{height:71.613281px;}
.h6{height:78.439922px;}
.h5{height:78.619922px;}
.h16{height:86.906250px;}
.he{height:95.245664px;}
.h1a{height:98.051133px;}
.h1b{height:98.198578px;}
.hb{height:107.419922px;}
.h12{height:107.563148px;}
.hc{height:110.583984px;}
.hd{height:110.731430px;}
.h1c{height:114.183984px;}
.h4{height:119.594180px;}
.h19{height:119.737406px;}
.h25{height:123.116836px;}
.h26{height:123.264281px;}
.h3{height:137.109375px;}
.h13{height:143.226562px;}
.h7{height:251.595703px;}
.h1{height:274.218750px;}
.h2{height:274.355859px;}
.h27{height:282.357773px;}
.h1d{height:614.837141px;}
.h0{height:810.000000px;}
.wa{width:40.217406px;}
.we{width:44.576229px;}
.wb{width:93.101231px;}
.wd{width:96.184694px;}
.wc{width:102.093321px;}
.w9{width:102.206327px;}
.w2{width:176.790000px;}
.w5{width:242.670000px;}
.w4{width:248.040000px;}
.w7{width:248.250000px;}
.w6{width:275.970000px;}
.w3{width:288.570000px;}
.w8{width:646.348844px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x24{left:6.005490px;}
.x1e{left:7.458351px;}
.x29{left:9.201962px;}
.x21{left:11.720393px;}
.x26{left:13.657647px;}
.x20{left:16.970351px;}
.x2a{left:20.050589px;}
.x2c{left:22.762745px;}
.x22{left:25.688000px;}
.x18{left:39.743979px;}
.x27{left:46.494116px;}
.x2d{left:48.140783px;}
.x1c{left:52.235979px;}
.x1a{left:53.603979px;}
.xd{left:55.260000px;}
.x19{left:64.043979px;}
.x16{left:68.291979px;}
.x2{left:73.007979px;}
.x1{left:74.303979px;}
.x1b{left:78.011979px;}
.xf{left:83.951979px;}
.x14{left:91.871979px;}
.x17{left:114.767979px;}
.xe{left:120.743979px;}
.x15{left:145.691979px;}
.xb{left:271.110000px;}
.xc{left:320.684979px;}
.x30{left:343.049979px;}
.x2f{left:412.559979px;}
.x9{left:519.195000px;}
.x12{left:548.489979px;}
.x13{left:555.194979px;}
.x31{left:560.339979px;}
.xa{left:606.854979px;}
.x7{left:731.265000px;}
.x1d{left:768.120000px;}
.x8{left:801.284979px;}
.x1f{left:820.522726px;}
.x5{left:945.825000px;}
.x23{left:948.300812px;}
.x11{left:994.709979px;}
.x6{left:1011.059979px;}
.x10{left:1012.829979px;}
.x25{left:1028.817952px;}
.x28{left:1139.257606px;}
.x3{left:1203.990000px;}
.x4{left:1240.739979px;}
.x2e{left:1246.872101px;}
.x2b{left:1295.618266px;}
@media print{
.v2{vertical-align:-25.600000pt;}
.v3{vertical-align:-1.546667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.746667pt;}
.v1{vertical-align:32.000000pt;}
.ls4{letter-spacing:-0.177067pt;}
.ls16{letter-spacing:-0.161067pt;}
.ls15{letter-spacing:-0.118400pt;}
.ls5{letter-spacing:-0.078933pt;}
.ls17{letter-spacing:-0.037310pt;}
.ls10{letter-spacing:-0.033280pt;}
.lsb{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.030720pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.061333pt;}
.ls9{letter-spacing:0.112000pt;}
.ls13{letter-spacing:0.117760pt;}
.ls18{letter-spacing:0.122551pt;}
.ls3{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.224427pt;}
.ls12{letter-spacing:0.227733pt;}
.ls0{letter-spacing:12.721280pt;}
.lsa{letter-spacing:12.917760pt;}
.ls1{letter-spacing:21.616384pt;}
.lsd{letter-spacing:86.675200pt;}
.lsc{letter-spacing:86.720000pt;}
.ls8{letter-spacing:90.528000pt;}
.ls14{letter-spacing:106.592000pt;}
.ls7{letter-spacing:110.355200pt;}
.ls6{letter-spacing:110.400000pt;}
.ws2{word-spacing:-53.082880pt;}
.ws9{word-spacing:-28.928000pt;}
.ws11{word-spacing:-24.154880pt;}
.ws6{word-spacing:-21.724928pt;}
.ws5{word-spacing:-21.696000pt;}
.wsb{word-spacing:-19.266048pt;}
.ws7{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.055040pt;}
.ws8{word-spacing:-14.464000pt;}
.wse{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.335808pt;}
.ws13{word-spacing:-7.283406pt;}
.ws12{word-spacing:-7.123545pt;}
.ws3{word-spacing:-1.446400pt;}
.wsd{word-spacing:-1.184000pt;}
.wsc{word-spacing:-1.137835pt;}
.wsa{word-spacing:-0.267520pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:7.685760pt;}
.ws10{word-spacing:8.314752pt;}
._f{margin-left:-10.112000pt;}
._a{margin-left:-8.254208pt;}
._14{margin-left:-7.101440pt;}
._d{margin-left:-6.144000pt;}
._2{margin-left:-5.120000pt;}
._5{margin-left:-3.585792pt;}
._0{margin-left:-2.304000pt;}
._3{margin-left:-1.147051pt;}
._1{width:1.024000pt;}
._4{width:2.047872pt;}
._13{width:11.078229pt;}
._10{width:12.389973pt;}
._7{width:14.582101pt;}
._6{width:15.791659pt;}
._8{width:16.792320pt;}
._9{width:18.441216pt;}
._b{width:20.447573pt;}
._c{width:23.365717pt;}
._e{width:114.624000pt;}
._12{width:803.294123pt;}
._11{width:804.199680pt;}
.fs9{font-size:6.400000pt;}
.fs15{font-size:31.685201pt;}
.fs5{font-size:56.960000pt;}
.fs7{font-size:57.088000pt;}
.fsd{font-size:58.880000pt;}
.fsa{font-size:59.008000pt;}
.fse{font-size:64.000000pt;}
.fs11{font-size:64.128000pt;}
.fs4{font-size:71.040000pt;}
.fs14{font-size:71.168000pt;}
.fsf{font-size:74.880000pt;}
.fs10{font-size:75.008000pt;}
.fsc{font-size:85.120000pt;}
.fs13{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs3{font-size:106.880000pt;}
.fs12{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs8{font-size:234.880000pt;}
.fs16{font-size:245.120000pt;}
.fs0{font-size:256.000000pt;}
.fs1{font-size:256.128000pt;}
.y7c{bottom:-14.809387pt;}
.y7a{bottom:-13.603972pt;}
.y70{bottom:-12.915163pt;}
.y75{bottom:-12.829062pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:0.000326pt;}
.y7b{bottom:1.291516pt;}
.y6b{bottom:1.894224pt;}
.y69{bottom:2.152527pt;}
.y79{bottom:2.496932pt;}
.y6f{bottom:3.185740pt;}
.y74{bottom:3.271841pt;}
.y68{bottom:12.484658pt;}
.y78{bottom:12.915163pt;}
.y6e{bottom:13.603972pt;}
.y73{bottom:13.690073pt;}
.y67{bottom:22.902890pt;}
.y77{bottom:23.247294pt;}
.y6d{bottom:24.022204pt;}
.y72{bottom:24.108305pt;}
.y6a{bottom:36.531422pt;}
.y66{bottom:36.789726pt;}
.y71{bottom:36.961928pt;}
.y6c{bottom:37.134130pt;}
.y76{bottom:37.306332pt;}
.yb{bottom:42.720000pt;}
.y4e{bottom:105.824000pt;}
.y39{bottom:107.136000pt;}
.y48{bottom:116.064000pt;}
.y19{bottom:121.664000pt;}
.y17{bottom:122.432000pt;}
.y4d{bottom:123.424000pt;}
.y38{bottom:126.336000pt;}
.y16{bottom:140.026667pt;}
.y32{bottom:140.160000pt;}
.y37{bottom:145.533333pt;}
.y2f{bottom:146.586667pt;}
.y4c{bottom:152.000000pt;}
.y35{bottom:154.906667pt;}
.y15{bottom:157.666667pt;}
.y47{bottom:162.106667pt;}
.y31{bottom:162.560000pt;}
.y81{bottom:167.066667pt;}
.y2e{bottom:169.626667pt;}
.y34{bottom:177.346667pt;}
.y30{bottom:184.960000pt;}
.y46{bottom:190.106667pt;}
.y8{bottom:190.853333pt;}
.y80{bottom:195.866667pt;}
.y33{bottom:199.746667pt;}
.y14{bottom:202.266667pt;}
.y3e{bottom:202.693333pt;}
.y88{bottom:215.613333pt;}
.y3d{bottom:221.920000pt;}
.y56{bottom:222.586667pt;}
.y7{bottom:224.293333pt;}
.y45{bottom:229.466667pt;}
.y7f{bottom:237.946667pt;}
.y13{bottom:238.746667pt;}
.y3c{bottom:241.120000pt;}
.y2d{bottom:242.426667pt;}
.y55{bottom:251.386667pt;}
.y44{bottom:255.386667pt;}
.y21{bottom:257.786667pt;}
.y6{bottom:257.893333pt;}
.y86{bottom:260.186667pt;}
.y2c{bottom:265.466667pt;}
.y12{bottom:275.066667pt;}
.y54{bottom:280.186667pt;}
.y85{bottom:288.826667pt;}
.y4b{bottom:291.173333pt;}
.y3b{bottom:292.773333pt;}
.y43{bottom:295.266667pt;}
.y20{bottom:297.186667pt;}
.y2b{bottom:301.826667pt;}
.y3a{bottom:311.973333pt;}
.y11{bottom:312.226667pt;}
.y4a{bottom:316.773333pt;}
.y5{bottom:320.133333pt;}
.y65{bottom:321.233676pt;}
.y42{bottom:324.066667pt;}
.y2a{bottom:324.866667pt;}
.y1f{bottom:336.386667pt;}
.y64{bottom:337.348930pt;}
.y49{bottom:342.373333pt;}
.y29{bottom:347.906667pt;}
.y41{bottom:352.866667pt;}
.y63{bottom:353.449833pt;}
.y87{bottom:362.693333pt;}
.y53{bottom:364.386667pt;}
.y62{bottom:369.636838pt;}
.y84{bottom:373.346667pt;}
.y1e{bottom:375.586667pt;}
.y40{bottom:381.666667pt;}
.y28{bottom:384.226667pt;}
.y61{bottom:385.737742pt;}
.y10{bottom:390.786667pt;}
.y52{bottom:393.186667pt;}
.y4{bottom:401.413333pt;}
.y1d{bottom:401.506667pt;}
.y60{bottom:401.924746pt;}
.y83{bottom:402.146667pt;}
.y7e{bottom:406.626667pt;}
.y27{bottom:407.266667pt;}
.y3f{bottom:410.466667pt;}
.y5f{bottom:418.047175pt;}
.y51{bottom:421.986667pt;}
.y1c{bottom:427.453333pt;}
.yf{bottom:430.013333pt;}
.y82{bottom:430.946667pt;}
.y5e{bottom:434.148079pt;}
.y7d{bottom:435.453333pt;}
.y26{bottom:443.773333pt;}
.y3{bottom:444.453333pt;}
.y5d{bottom:450.335084pt;}
.y1b{bottom:453.373333pt;}
.y36{bottom:460.573333pt;}
.y50{bottom:464.253333pt;}
.y23{bottom:464.893333pt;}
.y5c{bottom:466.435988pt;}
.y25{bottom:466.813333pt;}
.ye{bottom:469.213333pt;}
.y1a{bottom:479.293333pt;}
.y5b{bottom:482.622992pt;}
.y18{bottom:482.653333pt;}
.y5a{bottom:498.723896pt;}
.y22{bottom:502.013333pt;}
.y24{bottom:505.053333pt;}
.y4f{bottom:506.333333pt;}
.yd{bottom:508.573333pt;}
.y2{bottom:513.600000pt;}
.y59{bottom:514.925251pt;}
.y58{bottom:531.026155pt;}
.ya{bottom:552.133333pt;}
.yc{bottom:572.826667pt;}
.y1{bottom:582.720000pt;}
.y9{bottom:633.760000pt;}
.h9{height:6.365625pt;}
.h24{height:8.782311pt;}
.h20{height:9.385019pt;}
.h1f{height:30.410905pt;}
.h23{height:30.755309pt;}
.h1e{height:31.515017pt;}
.h21{height:31.530219pt;}
.h22{height:31.616320pt;}
.h8{height:44.160000pt;}
.h17{height:51.500000pt;}
.h18{height:51.603000pt;}
.h10{height:58.563750pt;}
.hf{height:58.691063pt;}
.h14{height:60.255000pt;}
.h15{height:60.358000pt;}
.ha{height:60.419812pt;}
.h11{height:63.656250pt;}
.h6{height:69.724375pt;}
.h5{height:69.884375pt;}
.h16{height:77.250000pt;}
.he{height:84.662813pt;}
.h1a{height:87.156562pt;}
.h1b{height:87.287625pt;}
.hb{height:95.484375pt;}
.h12{height:95.611688pt;}
.hc{height:98.296875pt;}
.hd{height:98.427937pt;}
.h1c{height:101.496875pt;}
.h4{height:106.305937pt;}
.h19{height:106.433250pt;}
.h25{height:109.437187pt;}
.h26{height:109.568250pt;}
.h3{height:121.875000pt;}
.h13{height:127.312500pt;}
.h7{height:223.640625pt;}
.h1{height:243.750000pt;}
.h2{height:243.871875pt;}
.h27{height:250.984687pt;}
.h1d{height:546.521903pt;}
.h0{height:720.000000pt;}
.wa{width:35.748806pt;}
.we{width:39.623315pt;}
.wb{width:82.756649pt;}
.wd{width:85.497506pt;}
.wc{width:90.749618pt;}
.w9{width:90.850068pt;}
.w2{width:157.146667pt;}
.w5{width:215.706667pt;}
.w4{width:220.480000pt;}
.w7{width:220.666667pt;}
.w6{width:245.306667pt;}
.w3{width:256.506667pt;}
.w8{width:574.532306pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x24{left:5.338214pt;}
.x1e{left:6.629645pt;}
.x29{left:8.179522pt;}
.x21{left:10.418127pt;}
.x26{left:12.140131pt;}
.x20{left:15.084757pt;}
.x2a{left:17.822746pt;}
.x2c{left:20.233551pt;}
.x22{left:22.833778pt;}
.x18{left:35.327981pt;}
.x27{left:41.328103pt;}
.x2d{left:42.791807pt;}
.x1c{left:46.431981pt;}
.x1a{left:47.647981pt;}
.xd{left:49.120000pt;}
.x19{left:56.927981pt;}
.x16{left:60.703981pt;}
.x2{left:64.895981pt;}
.x1{left:66.047981pt;}
.x1b{left:69.343981pt;}
.xf{left:74.623981pt;}
.x14{left:81.663981pt;}
.x17{left:102.015981pt;}
.xe{left:107.327981pt;}
.x15{left:129.503981pt;}
.xb{left:240.986667pt;}
.xc{left:285.053314pt;}
.x30{left:304.933314pt;}
.x2f{left:366.719981pt;}
.x9{left:461.506667pt;}
.x12{left:487.546648pt;}
.x13{left:493.506648pt;}
.x31{left:498.079981pt;}
.xa{left:539.426648pt;}
.x7{left:650.013333pt;}
.x1d{left:682.773333pt;}
.x8{left:712.253314pt;}
.x1f{left:729.353534pt;}
.x5{left:840.733333pt;}
.x23{left:842.934055pt;}
.x11{left:884.186648pt;}
.x6{left:898.719981pt;}
.x10{left:900.293314pt;}
.x25{left:914.504846pt;}
.x28{left:1012.673428pt;}
.x3{left:1070.213333pt;}
.x4{left:1102.879981pt;}
.x2e{left:1108.330756pt;}
.x2b{left:1151.660681pt;}
}




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