
    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_eeafe7e4d61d1f01f2a28ed4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_1287aebf673234cceb217491.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_e1b37cb0d5f327066acda412.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.665000;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_f3fb9ee828cb5da7cab9aa11.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.664000;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_d4e0864af16d1df3c2b909e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.888000;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_885f023fb19fcb261f90d50a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.388000;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_0f56a68d0bd9dcf3bed842e1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.003791px;}
.ls0{letter-spacing:2.984915px;}
.ls4{letter-spacing:16.384332px;}
.ls5{letter-spacing:23.518332px;}
.ls7{letter-spacing:32.726700px;}
.ls2{letter-spacing:32.870525px;}
.ls1{letter-spacing:32.876525px;}
.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;}
}
.wse{word-spacing:-42.637126px;}
.ws4d{word-spacing:-21.519300px;}
.ws1{word-spacing:-16.363650px;}
.ws19{word-spacing:-3.338185px;}
.ws54{word-spacing:-3.141821px;}
.ws32{word-spacing:-2.814548px;}
.ws56{word-spacing:-2.487275px;}
.ws21{word-spacing:-2.356366px;}
.ws18{word-spacing:-2.225456px;}
.ws16{word-spacing:-2.198941px;}
.ws17{word-spacing:-2.160002px;}
.ws2b{word-spacing:-2.029093px;}
.ws1c{word-spacing:-1.767274px;}
.ws2c{word-spacing:-1.636365px;}
.ws4b{word-spacing:-1.440001px;}
.ws3e{word-spacing:-1.374547px;}
.ws39{word-spacing:-1.243637px;}
.ws26{word-spacing:-1.178183px;}
.ws3{word-spacing:-1.112728px;}
.ws25{word-spacing:-0.981819px;}
.ws31{word-spacing:-0.785455px;}
.ws13{word-spacing:-0.589091px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.065455px;}
.ws27{word-spacing:0.196364px;}
.ws4{word-spacing:0.261818px;}
.ws15{word-spacing:0.392728px;}
.ws1e{word-spacing:0.523637px;}
.ws2d{word-spacing:0.654546px;}
.ws2f{word-spacing:0.720001px;}
.ws40{word-spacing:0.981819px;}
.ws33{word-spacing:1.243637px;}
.ws45{word-spacing:1.309092px;}
.ws2a{word-spacing:1.374547px;}
.ws1f{word-spacing:1.505456px;}
.ws3d{word-spacing:1.570910px;}
.ws42{word-spacing:1.832729px;}
.ws24{word-spacing:2.029093px;}
.ws8{word-spacing:2.421820px;}
.ws20{word-spacing:2.487275px;}
.ws22{word-spacing:2.749093px;}
.ws11{word-spacing:3.076366px;}
.ws3a{word-spacing:3.141821px;}
.ws46{word-spacing:3.207275px;}
.ws3f{word-spacing:3.272730px;}
.ws4e{word-spacing:3.730912px;}
.ws44{word-spacing:3.861821px;}
.ws9{word-spacing:3.922097px;}
.wsf{word-spacing:4.051348px;}
.wsd{word-spacing:4.058185px;}
.ws1d{word-spacing:4.123640px;}
.wsc{word-spacing:4.385458px;}
.ws43{word-spacing:4.450913px;}
.ws30{word-spacing:4.516367px;}
.ws48{word-spacing:4.712731px;}
.ws10{word-spacing:4.778186px;}
.ws4a{word-spacing:4.909095px;}
.ws23{word-spacing:4.974550px;}
.ws7{word-spacing:5.040004px;}
.ws50{word-spacing:5.170913px;}
.ws29{word-spacing:5.236368px;}
.ws37{word-spacing:5.301823px;}
.ws53{word-spacing:5.694550px;}
.ws34{word-spacing:5.760005px;}
.ws4c{word-spacing:5.825459px;}
.ws35{word-spacing:5.890914px;}
.ws6{word-spacing:5.956369px;}
.ws5{word-spacing:6.087278px;}
.ws41{word-spacing:6.349096px;}
.wsb{word-spacing:6.414551px;}
.ws3c{word-spacing:6.741824px;}
.ws36{word-spacing:6.807278px;}
.ws49{word-spacing:7.069097px;}
.ws1b{word-spacing:7.134551px;}
.ws1a{word-spacing:7.148008px;}
.ws47{word-spacing:7.330915px;}
.ws12{word-spacing:7.789097px;}
.ws38{word-spacing:8.509098px;}
.ws28{word-spacing:9.163644px;}
.ws3b{word-spacing:9.425462px;}
.ws55{word-spacing:13.156375px;}
.ws51{word-spacing:16.036377px;}
.ws4f{word-spacing:20.029108px;}
.ws2{word-spacing:23.464133px;}
.ws52{word-spacing:32.334572px;}
.ws2e{word-spacing:53.798400px;}
.wsa{word-spacing:64.557900px;}
._5{margin-left:-7.711979px;}
._1e{margin-left:-6.670987px;}
._b{margin-left:-5.033723px;}
._12{margin-left:-3.730912px;}
._0{margin-left:-2.689920px;}
._1{margin-left:-1.183565px;}
._2{width:3.291163px;}
._19{width:14.530921px;}
._3{width:15.578195px;}
._a{width:18.392743px;}
._d{width:19.963653px;}
._4{width:21.076381px;}
._10{width:22.248283px;}
._6{width:23.890929px;}
._18{width:25.032366px;}
._14{width:26.063494px;}
._11{width:28.275488px;}
._17{width:29.971026px;}
._f{width:32.339954px;}
._1c{width:33.512755px;}
._8{width:34.756393px;}
._16{width:36.065485px;}
._7{width:37.701850px;}
._9{width:39.474506px;}
._e{width:42.211936px;}
._c{width:43.592764px;}
._1b{width:46.145493px;}
._15{width:47.667994px;}
._1a{width:71.731200px;}
._1d{width:74.818073px;}
._13{width:86.077200px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y2a{bottom:106.299000px;}
.y29{bottom:126.622500px;}
.y79{bottom:134.733000px;}
.y28{bottom:146.947500px;}
.y78{bottom:155.056500px;}
.y27{bottom:167.271000px;}
.y77{bottom:175.381500px;}
.y50{bottom:181.156500px;}
.y26{bottom:187.594500px;}
.y25{bottom:207.918000px;}
.y76{bottom:209.154000px;}
.y24{bottom:228.241500px;}
.y75{bottom:229.477500px;}
.y4f{bottom:234.490500px;}
.y23{bottom:248.566500px;}
.y74{bottom:249.802500px;}
.y4e{bottom:254.815500px;}
.y22{bottom:271.126500px;}
.y4d{bottom:275.139000px;}
.y73{bottom:283.575000px;}
.y21{bottom:291.450000px;}
.y4c{bottom:296.893500px;}
.y72{bottom:303.898500px;}
.y20{bottom:311.773500px;}
.y4b{bottom:317.217000px;}
.y71{bottom:324.223500px;}
.y1f{bottom:332.098500px;}
.y4a{bottom:337.540500px;}
.y1e{bottom:352.422000px;}
.y49{bottom:357.864000px;}
.y70{bottom:361.483500px;}
.y1d{bottom:372.745500px;}
.y48{bottom:392.074500px;}
.y1c{bottom:393.069000px;}
.y1b{bottom:413.392500px;}
.y6f{bottom:414.154500px;}
.y1a{bottom:433.717500px;}
.y6e{bottom:434.478000px;}
.y47{bottom:445.408500px;}
.y19{bottom:454.041000px;}
.y6d{bottom:454.803000px;}
.y46{bottom:465.732000px;}
.y18{bottom:474.364500px;}
.y45{bottom:486.057000px;}
.y6c{bottom:492.063000px;}
.y17{bottom:494.688000px;}
.y44{bottom:506.380500px;}
.y16{bottom:515.011500px;}
.y43{bottom:526.704000px;}
.y15{bottom:535.335000px;}
.y6b{bottom:544.734000px;}
.y14{bottom:555.660000px;}
.y6a{bottom:565.057500px;}
.y42{bottom:566.200500px;}
.y13{bottom:575.983500px;}
.y69{bottom:585.382500px;}
.y41{bottom:605.697000px;}
.y68{bottom:605.706000px;}
.y12{bottom:617.685000px;}
.y67{bottom:626.029500px;}
.y40{bottom:645.193500px;}
.y66{bottom:646.353000px;}
.y3f{bottom:665.517000px;}
.y65{bottom:666.676500px;}
.y11{bottom:683.616000px;}
.y3e{bottom:685.840500px;}
.y64{bottom:698.046000px;}
.y3d{bottom:706.164000px;}
.y10{bottom:733.056000px;}
.y3c{bottom:740.374500px;}
.y63{bottom:742.899000px;}
.yf{bottom:753.379500px;}
.y62{bottom:763.224000px;}
.ye{bottom:773.704500px;}
.y61{bottom:783.547500px;}
.y3b{bottom:793.708500px;}
.yd{bottom:794.028000px;}
.y60{bottom:803.871000px;}
.y3a{bottom:814.032000px;}
.yc{bottom:814.351500px;}
.y5f{bottom:824.194500px;}
.yb{bottom:834.675000px;}
.y39{bottom:835.786500px;}
.y5e{bottom:844.518000px;}
.ya{bottom:854.998500px;}
.y38{bottom:856.110000px;}
.y5d{bottom:864.843000px;}
.y37{bottom:876.435000px;}
.y5c{bottom:885.166500px;}
.y36{bottom:896.758500px;}
.y5b{bottom:905.490000px;}
.y35{bottom:917.082000px;}
.y5a{bottom:925.813500px;}
.y9{bottom:931.320000px;}
.y34{bottom:937.405500px;}
.y59{bottom:946.137000px;}
.y8{bottom:949.252500px;}
.y33{bottom:957.729000px;}
.y58{bottom:966.462000px;}
.y7{bottom:972.609000px;}
.y32{bottom:978.054000px;}
.y57{bottom:986.785500px;}
.y6{bottom:993.622500px;}
.y31{bottom:998.377500px;}
.y56{bottom:1007.109000px;}
.y5{bottom:1011.555000px;}
.y30{bottom:1018.701000px;}
.y55{bottom:1027.432500px;}
.y4{bottom:1034.910000px;}
.y2f{bottom:1039.024500px;}
.y54{bottom:1047.756000px;}
.y2e{bottom:1059.348000px;}
.y53{bottom:1068.081000px;}
.y3{bottom:1068.679500px;}
.y2d{bottom:1079.673000px;}
.y52{bottom:1088.404500px;}
.y2c{bottom:1099.996500px;}
.y51{bottom:1108.728000px;}
.y2{bottom:1112.500500px;}
.y1{bottom:1138.002000px;}
.y2b{bottom:1140.097500px;}
.h5{height:27.783619px;}
.h7{height:41.125613px;}
.h6{height:41.425613px;}
.h9{height:45.032765px;}
.h8{height:45.294583px;}
.hd{height:45.356765px;}
.h3{height:45.362765px;}
.hb{height:45.425492px;}
.hc{height:49.637990px;}
.h4{height:55.554699px;}
.ha{height:59.565422px;}
.h2{height:74.456986px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:106.299000px;}
.xd{left:131.703000px;}
.xf{left:133.561500px;}
.x1{left:138.370500px;}
.x12{left:217.231500px;}
.x10{left:221.418000px;}
.x2{left:231.508500px;}
.xa{left:286.225500px;}
.x11{left:297.753000px;}
.x3{left:321.655500px;}
.x6{left:337.272000px;}
.x7{left:359.013000px;}
.x9{left:381.892500px;}
.xb{left:401.184000px;}
.x4{left:410.280000px;}
.xe{left:413.400000px;}
.x8{left:454.713000px;}
.x5{left:551.428500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003370pt;}
.ls0{letter-spacing:2.653258pt;}
.ls4{letter-spacing:14.563851pt;}
.ls5{letter-spacing:20.905184pt;}
.ls7{letter-spacing:29.090400pt;}
.ls2{letter-spacing:29.218245pt;}
.ls1{letter-spacing:29.223578pt;}
.wse{word-spacing:-37.899668pt;}
.ws4d{word-spacing:-19.128267pt;}
.ws1{word-spacing:-14.545467pt;}
.ws19{word-spacing:-2.967275pt;}
.ws54{word-spacing:-2.792730pt;}
.ws32{word-spacing:-2.501820pt;}
.ws56{word-spacing:-2.210911pt;}
.ws21{word-spacing:-2.094547pt;}
.ws18{word-spacing:-1.978183pt;}
.ws16{word-spacing:-1.954614pt;}
.ws17{word-spacing:-1.920002pt;}
.ws2b{word-spacing:-1.803638pt;}
.ws1c{word-spacing:-1.570910pt;}
.ws2c{word-spacing:-1.454547pt;}
.ws4b{word-spacing:-1.280001pt;}
.ws3e{word-spacing:-1.221819pt;}
.ws39{word-spacing:-1.105455pt;}
.ws26{word-spacing:-1.047274pt;}
.ws3{word-spacing:-0.989092pt;}
.ws25{word-spacing:-0.872728pt;}
.ws31{word-spacing:-0.698182pt;}
.ws13{word-spacing:-0.523637pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.058182pt;}
.ws27{word-spacing:0.174546pt;}
.ws4{word-spacing:0.232727pt;}
.ws15{word-spacing:0.349091pt;}
.ws1e{word-spacing:0.465455pt;}
.ws2d{word-spacing:0.581819pt;}
.ws2f{word-spacing:0.640001pt;}
.ws40{word-spacing:0.872728pt;}
.ws33{word-spacing:1.105455pt;}
.ws45{word-spacing:1.163637pt;}
.ws2a{word-spacing:1.221819pt;}
.ws1f{word-spacing:1.338183pt;}
.ws3d{word-spacing:1.396365pt;}
.ws42{word-spacing:1.629092pt;}
.ws24{word-spacing:1.803638pt;}
.ws8{word-spacing:2.152729pt;}
.ws20{word-spacing:2.210911pt;}
.ws22{word-spacing:2.443638pt;}
.ws11{word-spacing:2.734548pt;}
.ws3a{word-spacing:2.792730pt;}
.ws46{word-spacing:2.850911pt;}
.ws3f{word-spacing:2.909093pt;}
.ws4e{word-spacing:3.316366pt;}
.ws44{word-spacing:3.432730pt;}
.ws9{word-spacing:3.486309pt;}
.wsf{word-spacing:3.601198pt;}
.wsd{word-spacing:3.607276pt;}
.ws1d{word-spacing:3.665458pt;}
.wsc{word-spacing:3.898185pt;}
.ws43{word-spacing:3.956367pt;}
.ws30{word-spacing:4.014549pt;}
.ws48{word-spacing:4.189094pt;}
.ws10{word-spacing:4.247276pt;}
.ws4a{word-spacing:4.363640pt;}
.ws23{word-spacing:4.421822pt;}
.ws7{word-spacing:4.480004pt;}
.ws50{word-spacing:4.596367pt;}
.ws29{word-spacing:4.654549pt;}
.ws37{word-spacing:4.712731pt;}
.ws53{word-spacing:5.061822pt;}
.ws34{word-spacing:5.120004pt;}
.ws4c{word-spacing:5.178186pt;}
.ws35{word-spacing:5.236368pt;}
.ws6{word-spacing:5.294550pt;}
.ws5{word-spacing:5.410914pt;}
.ws41{word-spacing:5.643641pt;}
.wsb{word-spacing:5.701823pt;}
.ws3c{word-spacing:5.992732pt;}
.ws36{word-spacing:6.050914pt;}
.ws49{word-spacing:6.283642pt;}
.ws1b{word-spacing:6.341823pt;}
.ws1a{word-spacing:6.353785pt;}
.ws47{word-spacing:6.516369pt;}
.ws12{word-spacing:6.923642pt;}
.ws38{word-spacing:7.563643pt;}
.ws28{word-spacing:8.145461pt;}
.ws3b{word-spacing:8.378189pt;}
.ws55{word-spacing:11.694555pt;}
.ws51{word-spacing:14.254557pt;}
.ws4f{word-spacing:17.803651pt;}
.ws2{word-spacing:20.857007pt;}
.ws52{word-spacing:28.741842pt;}
.ws2e{word-spacing:47.820800pt;}
.wsa{word-spacing:57.384800pt;}
._5{margin-left:-6.855093pt;}
._1e{margin-left:-5.929766pt;}
._b{margin-left:-4.474420pt;}
._12{margin-left:-3.316366pt;}
._0{margin-left:-2.391040pt;}
._1{margin-left:-1.052058pt;}
._2{width:2.925478pt;}
._19{width:12.916374pt;}
._3{width:13.847284pt;}
._a{width:16.349105pt;}
._d{width:17.745469pt;}
._4{width:18.734561pt;}
._10{width:19.776251pt;}
._6{width:21.236381pt;}
._18{width:22.250992pt;}
._14{width:23.167550pt;}
._11{width:25.133767pt;}
._17{width:26.640912pt;}
._f{width:28.746626pt;}
._1c{width:29.789116pt;}
._8{width:30.894571pt;}
._16{width:32.058209pt;}
._7{width:33.512755pt;}
._9{width:35.088450pt;}
._e{width:37.521721pt;}
._c{width:38.749123pt;}
._1b{width:41.018216pt;}
._15{width:42.371550pt;}
._1a{width:63.761067pt;}
._1d{width:66.504954pt;}
._13{width:76.513067pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:94.488000pt;}
.y29{bottom:112.553333pt;}
.y79{bottom:119.762667pt;}
.y28{bottom:130.620000pt;}
.y78{bottom:137.828000pt;}
.y27{bottom:148.685333pt;}
.y77{bottom:155.894667pt;}
.y50{bottom:161.028000pt;}
.y26{bottom:166.750667pt;}
.y25{bottom:184.816000pt;}
.y76{bottom:185.914667pt;}
.y24{bottom:202.881333pt;}
.y75{bottom:203.980000pt;}
.y4f{bottom:208.436000pt;}
.y23{bottom:220.948000pt;}
.y74{bottom:222.046667pt;}
.y4e{bottom:226.502667pt;}
.y22{bottom:241.001333pt;}
.y4d{bottom:244.568000pt;}
.y73{bottom:252.066667pt;}
.y21{bottom:259.066667pt;}
.y4c{bottom:263.905333pt;}
.y72{bottom:270.132000pt;}
.y20{bottom:277.132000pt;}
.y4b{bottom:281.970667pt;}
.y71{bottom:288.198667pt;}
.y1f{bottom:295.198667pt;}
.y4a{bottom:300.036000pt;}
.y1e{bottom:313.264000pt;}
.y49{bottom:318.101333pt;}
.y70{bottom:321.318667pt;}
.y1d{bottom:331.329333pt;}
.y48{bottom:348.510667pt;}
.y1c{bottom:349.394667pt;}
.y1b{bottom:367.460000pt;}
.y6f{bottom:368.137333pt;}
.y1a{bottom:385.526667pt;}
.y6e{bottom:386.202667pt;}
.y47{bottom:395.918667pt;}
.y19{bottom:403.592000pt;}
.y6d{bottom:404.269333pt;}
.y46{bottom:413.984000pt;}
.y18{bottom:421.657333pt;}
.y45{bottom:432.050667pt;}
.y6c{bottom:437.389333pt;}
.y17{bottom:439.722667pt;}
.y44{bottom:450.116000pt;}
.y16{bottom:457.788000pt;}
.y43{bottom:468.181333pt;}
.y15{bottom:475.853333pt;}
.y6b{bottom:484.208000pt;}
.y14{bottom:493.920000pt;}
.y6a{bottom:502.273333pt;}
.y42{bottom:503.289333pt;}
.y13{bottom:511.985333pt;}
.y69{bottom:520.340000pt;}
.y41{bottom:538.397333pt;}
.y68{bottom:538.405333pt;}
.y12{bottom:549.053333pt;}
.y67{bottom:556.470667pt;}
.y40{bottom:573.505333pt;}
.y66{bottom:574.536000pt;}
.y3f{bottom:591.570667pt;}
.y65{bottom:592.601333pt;}
.y11{bottom:607.658667pt;}
.y3e{bottom:609.636000pt;}
.y64{bottom:620.485333pt;}
.y3d{bottom:627.701333pt;}
.y10{bottom:651.605333pt;}
.y3c{bottom:658.110667pt;}
.y63{bottom:660.354667pt;}
.yf{bottom:669.670667pt;}
.y62{bottom:678.421333pt;}
.ye{bottom:687.737333pt;}
.y61{bottom:696.486667pt;}
.y3b{bottom:705.518667pt;}
.yd{bottom:705.802667pt;}
.y60{bottom:714.552000pt;}
.y3a{bottom:723.584000pt;}
.yc{bottom:723.868000pt;}
.y5f{bottom:732.617333pt;}
.yb{bottom:741.933333pt;}
.y39{bottom:742.921333pt;}
.y5e{bottom:750.682667pt;}
.ya{bottom:759.998667pt;}
.y38{bottom:760.986667pt;}
.y5d{bottom:768.749333pt;}
.y37{bottom:779.053333pt;}
.y5c{bottom:786.814667pt;}
.y36{bottom:797.118667pt;}
.y5b{bottom:804.880000pt;}
.y35{bottom:815.184000pt;}
.y5a{bottom:822.945333pt;}
.y9{bottom:827.840000pt;}
.y34{bottom:833.249333pt;}
.y59{bottom:841.010667pt;}
.y8{bottom:843.780000pt;}
.y33{bottom:851.314667pt;}
.y58{bottom:859.077333pt;}
.y7{bottom:864.541333pt;}
.y32{bottom:869.381333pt;}
.y57{bottom:877.142667pt;}
.y6{bottom:883.220000pt;}
.y31{bottom:887.446667pt;}
.y56{bottom:895.208000pt;}
.y5{bottom:899.160000pt;}
.y30{bottom:905.512000pt;}
.y55{bottom:913.273333pt;}
.y4{bottom:919.920000pt;}
.y2f{bottom:923.577333pt;}
.y54{bottom:931.338667pt;}
.y2e{bottom:941.642667pt;}
.y53{bottom:949.405333pt;}
.y3{bottom:949.937333pt;}
.y2d{bottom:959.709333pt;}
.y52{bottom:967.470667pt;}
.y2c{bottom:977.774667pt;}
.y51{bottom:985.536000pt;}
.y2{bottom:988.889333pt;}
.y1{bottom:1011.557333pt;}
.y2b{bottom:1013.420000pt;}
.h5{height:24.696550pt;}
.h7{height:36.556100pt;}
.h6{height:36.822767pt;}
.h9{height:40.029124pt;}
.h8{height:40.261852pt;}
.hd{height:40.317124pt;}
.h3{height:40.322458pt;}
.hb{height:40.378215pt;}
.hc{height:44.122658pt;}
.h4{height:49.381955pt;}
.ha{height:52.947042pt;}
.h2{height:66.183987pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:94.488000pt;}
.xd{left:117.069333pt;}
.xf{left:118.721333pt;}
.x1{left:122.996000pt;}
.x12{left:193.094667pt;}
.x10{left:196.816000pt;}
.x2{left:205.785333pt;}
.xa{left:254.422667pt;}
.x11{left:264.669333pt;}
.x3{left:285.916000pt;}
.x6{left:299.797333pt;}
.x7{left:319.122667pt;}
.x9{left:339.460000pt;}
.xb{left:356.608000pt;}
.x4{left:364.693333pt;}
.xe{left:367.466667pt;}
.x8{left:404.189333pt;}
.x5{left:490.158667pt;}
}




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