
    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_28fb227bb92f192842bbd988.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dd1ef58b47b63730e9815403.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_000e8a93ee4c0d4db709b5b3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_15281a4fd2fa8209439483dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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_53dccab469c4ce05f9964430.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844238;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_0daaa35ab25543a7d4db0fc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.669434;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_c81e0269b4af1df4868a4ef7.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-11.519995px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.399994px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.082320px;}
.ls7{letter-spacing:0.122947px;}
.ls1{letter-spacing:0.159480px;}
.ls2{letter-spacing:0.223945px;}
.ls5{letter-spacing:0.557340px;}
.ls6{letter-spacing:0.723060px;}
.ls0{letter-spacing:1.099020px;}
.ls3{letter-spacing:11.770555px;}
.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;}
}
.wsd{word-spacing:-35.531986px;}
.ws1{word-spacing:-14.939994px;}
.wsc{word-spacing:-13.499995px;}
.ws4{word-spacing:-12.283941px;}
.ws2{word-spacing:-12.059995px;}
.ws0{word-spacing:-9.719996px;}
.wsb{word-spacing:-8.999996px;}
.wsa{word-spacing:-8.135997px;}
.ws7{word-spacing:-7.919997px;}
.ws9{word-spacing:0.000000px;}
.ws5{word-spacing:4.319983px;}
.ws6{word-spacing:5.039982px;}
.ws8{word-spacing:95.849260px;}
.wse{word-spacing:284.219836px;}
.wsf{word-spacing:285.254545px;}
.ws3{word-spacing:318.779923px;}
._3{margin-left:-1.149746px;}
._0{width:1.096579px;}
._1{width:2.487165px;}
._11{width:3.505269px;}
._6{width:4.514470px;}
._7{width:5.978369px;}
._4{width:7.890597px;}
._2{width:9.419324px;}
._5{width:10.694048px;}
._d{width:11.846519px;}
._e{width:13.035632px;}
._13{width:14.568033px;}
._12{width:15.607794px;}
._9{width:16.716230px;}
._8{width:17.858454px;}
._b{width:18.861811px;}
._a{width:20.182849px;}
._c{width:22.613140px;}
._15{width:295.200091px;}
._14{width:307.800021px;}
._10{width:329.399695px;}
._f{width:342.360108px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.679987px;}
.fs7{font-size:35.999986px;}
.fs1{font-size:38.879984px;}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs6{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y4c{bottom:4.319316px;}
.y4a{bottom:4.499316px;}
.y47{bottom:59.520276px;}
.y45{bottom:77.520269px;}
.y40{bottom:91.560263px;}
.y46{bottom:101.100260px;}
.y41{bottom:124.860250px;}
.y42{bottom:158.340237px;}
.y43{bottom:191.640223px;}
.y78{bottom:199.559920px;}
.y49{bottom:206.400600px;}
.y4b{bottom:206.580600px;}
.y48{bottom:209.639916px;}
.y77{bottom:216.299913px;}
.y44{bottom:224.940210px;}
.y3f{bottom:229.259908px;}
.y76{bottom:233.219907px;}
.y75{bottom:248.879900px;}
.y3d{bottom:258.779896px;}
.y3e{bottom:263.999894px;}
.y74{bottom:264.539894px;}
.y3b{bottom:278.759888px;}
.y73{bottom:280.019888px;}
.y3c{bottom:283.979886px;}
.y72{bottom:295.499882px;}
.y39{bottom:298.559881px;}
.y3a{bottom:303.779878px;}
.y71{bottom:310.979876px;}
.y38{bottom:318.359873px;}
.y70{bottom:326.639869px;}
.y37{bottom:337.079865px;}
.y6f{bottom:342.119863px;}
.y35{bottom:355.619858px;}
.y6e{bottom:357.599857px;}
.y36{bottom:360.839856px;}
.y6d{bottom:373.079851px;}
.y34{bottom:374.159850px;}
.y6c{bottom:388.739845px;}
.y33{bottom:392.879843px;}
.y6b{bottom:404.219838px;}
.y32{bottom:411.419835px;}
.y6a{bottom:419.699832px;}
.y31{bottom:430.139828px;}
.y69{bottom:435.359826px;}
.y30{bottom:448.679821px;}
.y68{bottom:452.639819px;}
.y2e{bottom:467.219813px;}
.y67{bottom:470.279812px;}
.y2f{bottom:472.439811px;}
.y2d{bottom:485.939806px;}
.y66{bottom:487.379805px;}
.y2c{bottom:504.479798px;}
.y65{bottom:504.659798px;}
.y2b{bottom:521.759791px;}
.y64{bottom:521.939791px;}
.y2a{bottom:523.199791px;}
.y63{bottom:539.219784px;}
.y29{bottom:541.379783px;}
.y62{bottom:556.499777px;}
.y28{bottom:559.919776px;}
.y61{bottom:573.599771px;}
.y26{bottom:577.559769px;}
.y27{bottom:582.779767px;}
.y60{bottom:590.879764px;}
.y25{bottom:595.919762px;}
.y5f{bottom:608.159757px;}
.y23{bottom:613.019755px;}
.y24{bottom:618.239753px;}
.y5e{bottom:625.439750px;}
.y22{bottom:631.559747px;}
.y5d{bottom:642.719743px;}
.y21{bottom:648.839740px;}
.y5c{bottom:659.999736px;}
.y1f{bottom:666.119734px;}
.y20{bottom:671.339731px;}
.y5b{bottom:677.099729px;}
.y1e{bottom:683.399727px;}
.y5a{bottom:694.379722px;}
.y1d{bottom:699.239720px;}
.y1b{bottom:700.679720px;}
.y1c{bottom:705.899718px;}
.y59{bottom:711.659715px;}
.y1a{bottom:717.779713px;}
.y58{bottom:727.499709px;}
.y57{bottom:728.939708px;}
.y19{bottom:736.139706px;}
.y56{bottom:746.219702px;}
.y18{bottom:754.679698px;}
.y55{bottom:764.399694px;}
.y17{bottom:772.319691px;}
.y54{bottom:779.699688px;}
.y16{bottom:788.159685px;}
.y15{bottom:789.599684px;}
.y13{bottom:806.879677px;}
.y14{bottom:812.099675px;}
.y11{bottom:824.159670px;}
.y12{bottom:829.379668px;}
.y10{bottom:841.259663px;}
.yf{bottom:858.539657px;}
.ye{bottom:875.819650px;}
.yd{bottom:893.099643px;}
.yc{bottom:910.379636px;}
.yb{bottom:928.559629px;}
.ya{bottom:961.319615px;}
.y53{bottom:969.599612px;}
.y52{bottom:984.899606px;}
.y9{bottom:987.059605px;}
.y50{bottom:1000.739600px;}
.y8{bottom:1003.799598px;}
.y51{bottom:1005.239598px;}
.y4d{bottom:1016.759593px;}
.y4e{bottom:1020.539592px;}
.y4f{bottom:1021.259591px;}
.y7{bottom:1029.539588px;}
.y82{bottom:1035.479586px;}
.y7f{bottom:1043.939582px;}
.y6{bottom:1046.279581px;}
.y80{bottom:1052.399579px;}
.y79{bottom:1057.979577px;}
.y81{bottom:1060.319576px;}
.y7a{bottom:1079.759568px;}
.y4{bottom:1081.739567px;}
.y5{bottom:1086.959565px;}
.y7b{bottom:1101.359559px;}
.y7c{bottom:1123.139551px;}
.y3{bottom:1126.919549px;}
.y7d{bottom:1144.739542px;}
.y2{bottom:1145.459542px;}
.y84{bottom:1151.759539px;}
.y83{bottom:1153.199539px;}
.y1{bottom:1164.179534px;}
.y7e{bottom:1166.519533px;}
.h8{height:19.800000px;}
.h7{height:19.980000px;}
.hb{height:23.994131px;}
.hc{height:35.332017px;}
.h3{height:38.158578px;}
.h5{height:44.149201px;}
.h6{height:48.616856px;}
.h4{height:52.998026px;}
.ha{height:54.421853px;}
.h2{height:58.651148px;}
.h1{height:60.226851px;}
.h9{height:70.664034px;}
.h0{height:1263.000000px;}
.w2{width:8.100000px;}
.w1{width:10.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:178.559929px;}
.x11{left:190.079924px;}
.x12{left:194.939922px;}
.x4c{left:197.279921px;}
.x46{left:199.799743px;}
.x35{left:205.019918px;}
.x4a{left:209.159916px;}
.x34{left:210.959916px;}
.x49{left:215.099914px;}
.x3f{left:221.040152px;}
.x39{left:233.640000px;}
.x4e{left:241.199904px;}
.x3a{left:243.720000px;}
.x17{left:249.299900px;}
.x18{left:257.399897px;}
.x2{left:264.239894px;}
.x47{left:265.499894px;}
.x3{left:269.099892px;}
.x36{left:271.619891px;}
.x4b{left:277.379889px;}
.x1b{left:293.039883px;}
.x1c{left:301.139880px;}
.x23{left:313.019875px;}
.x1d{left:315.359874px;}
.x24{left:321.299871px;}
.x1e{left:323.459871px;}
.x25{left:333.539867px;}
.x26{left:341.639863px;}
.x27{left:344.159862px;}
.x28{left:352.259859px;}
.x38{left:354.419858px;}
.x29{left:364.139854px;}
.x2a{left:372.239851px;}
.x4{left:388.259845px;}
.x40{left:391.499843px;}
.x5{left:393.119843px;}
.x41{left:399.059840px;}
.x42{left:409.319836px;}
.x10{left:411.299835px;}
.x43{left:416.879833px;}
.x9{left:420.119832px;}
.x4d{left:421.739831px;}
.xa{left:428.219829px;}
.x37{left:433.259827px;}
.xb{left:439.739824px;}
.x21{left:442.079823px;}
.xc{left:447.839821px;}
.x22{left:458.639817px;}
.x32{left:467.099813px;}
.x33{left:475.199810px;}
.xd{left:515.879794px;}
.x19{left:521.459791px;}
.xe{left:523.979790px;}
.x1a{left:529.559788px;}
.x6{left:532.259787px;}
.x7{left:537.299785px;}
.xf{left:544.679782px;}
.x3b{left:548.459781px;}
.x3c{left:555.659778px;}
.x3d{left:564.299774px;}
.x3e{left:573.299771px;}
.x1f{left:582.299767px;}
.x20{left:590.399764px;}
.x44{left:592.019763px;}
.x2b{left:602.459759px;}
.x8{left:607.499757px;}
.x45{left:608.579757px;}
.x2c{left:610.559756px;}
.x2d{left:622.259751px;}
.x13{left:623.519751px;}
.x14{left:628.379749px;}
.x2e{left:630.359748px;}
.x48{left:632.339747px;}
.x30{left:669.419732px;}
.x31{left:677.519729px;}
.x15{left:705.599718px;}
.x16{left:710.459716px;}
.x2f{left:714.419714px;}
@media print{
.v1{vertical-align:-10.239996pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.799995pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.073173pt;}
.ls7{letter-spacing:0.109286pt;}
.ls1{letter-spacing:0.141760pt;}
.ls2{letter-spacing:0.199063pt;}
.ls5{letter-spacing:0.495413pt;}
.ls6{letter-spacing:0.642720pt;}
.ls0{letter-spacing:0.976906pt;}
.ls3{letter-spacing:10.462716pt;}
.wsd{word-spacing:-31.583987pt;}
.ws1{word-spacing:-13.279995pt;}
.wsc{word-spacing:-11.999995pt;}
.ws4{word-spacing:-10.919058pt;}
.ws2{word-spacing:-10.719996pt;}
.ws0{word-spacing:-8.639997pt;}
.wsb{word-spacing:-7.999997pt;}
.wsa{word-spacing:-7.231997pt;}
.ws7{word-spacing:-7.039997pt;}
.ws9{word-spacing:0.000000pt;}
.ws5{word-spacing:3.839985pt;}
.ws6{word-spacing:4.479984pt;}
.ws8{word-spacing:85.199343pt;}
.wse{word-spacing:252.639854pt;}
.wsf{word-spacing:253.559595pt;}
.ws3{word-spacing:283.359931pt;}
._3{margin-left:-1.021997pt;}
._0{width:0.974737pt;}
._1{width:2.210813pt;}
._11{width:3.115795pt;}
._6{width:4.012862pt;}
._7{width:5.314105pt;}
._4{width:7.013864pt;}
._2{width:8.372732pt;}
._5{width:9.505820pt;}
._d{width:10.530239pt;}
._e{width:11.587228pt;}
._13{width:12.949363pt;}
._12{width:13.873594pt;}
._9{width:14.858871pt;}
._8{width:15.874182pt;}
._b{width:16.766054pt;}
._a{width:17.940310pt;}
._c{width:20.100569pt;}
._15{width:262.400080pt;}
._14{width:273.600019pt;}
._10{width:292.799729pt;}
._f{width:304.320096pt;}
.fs5{font-size:28.159989pt;}
.fs7{font-size:31.999987pt;}
.fs1{font-size:34.559986pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs6{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:3.839392pt;}
.y4a{bottom:3.999392pt;}
.y47{bottom:52.906912pt;}
.y45{bottom:68.906906pt;}
.y40{bottom:81.386901pt;}
.y46{bottom:89.866897pt;}
.y41{bottom:110.986889pt;}
.y42{bottom:140.746877pt;}
.y43{bottom:170.346865pt;}
.y78{bottom:177.386596pt;}
.y49{bottom:183.467200pt;}
.y4b{bottom:183.627200pt;}
.y48{bottom:186.346592pt;}
.y77{bottom:192.266590pt;}
.y44{bottom:199.946853pt;}
.y3f{bottom:203.786585pt;}
.y76{bottom:207.306584pt;}
.y75{bottom:221.226578pt;}
.y3d{bottom:230.026575pt;}
.y3e{bottom:234.666573pt;}
.y74{bottom:235.146573pt;}
.y3b{bottom:247.786568pt;}
.y73{bottom:248.906567pt;}
.y3c{bottom:252.426566pt;}
.y72{bottom:262.666562pt;}
.y39{bottom:265.386561pt;}
.y3a{bottom:270.026559pt;}
.y71{bottom:276.426556pt;}
.y38{bottom:282.986553pt;}
.y70{bottom:290.346551pt;}
.y37{bottom:299.626547pt;}
.y6f{bottom:304.106545pt;}
.y35{bottom:316.106540pt;}
.y6e{bottom:317.866540pt;}
.y36{bottom:320.746538pt;}
.y6d{bottom:331.626534pt;}
.y34{bottom:332.586534pt;}
.y6c{bottom:345.546528pt;}
.y33{bottom:349.226527pt;}
.y6b{bottom:359.306523pt;}
.y32{bottom:365.706520pt;}
.y6a{bottom:373.066517pt;}
.y31{bottom:382.346514pt;}
.y69{bottom:386.986512pt;}
.y30{bottom:398.826507pt;}
.y68{bottom:402.346506pt;}
.y2e{bottom:415.306501pt;}
.y67{bottom:418.026499pt;}
.y2f{bottom:419.946499pt;}
.y2d{bottom:431.946494pt;}
.y66{bottom:433.226493pt;}
.y2c{bottom:448.426487pt;}
.y65{bottom:448.586487pt;}
.y2b{bottom:463.786481pt;}
.y64{bottom:463.946481pt;}
.y2a{bottom:465.066481pt;}
.y63{bottom:479.306475pt;}
.y29{bottom:481.226474pt;}
.y62{bottom:494.666469pt;}
.y28{bottom:497.706468pt;}
.y61{bottom:509.866463pt;}
.y26{bottom:513.386461pt;}
.y27{bottom:518.026459pt;}
.y60{bottom:525.226457pt;}
.y25{bottom:529.706455pt;}
.y5f{bottom:540.586450pt;}
.y23{bottom:544.906449pt;}
.y24{bottom:549.546447pt;}
.y5e{bottom:555.946444pt;}
.y22{bottom:561.386442pt;}
.y5d{bottom:571.306438pt;}
.y21{bottom:576.746436pt;}
.y5c{bottom:586.666432pt;}
.y1f{bottom:592.106430pt;}
.y20{bottom:596.746428pt;}
.y5b{bottom:601.866426pt;}
.y1e{bottom:607.466424pt;}
.y5a{bottom:617.226420pt;}
.y1d{bottom:621.546418pt;}
.y1b{bottom:622.826418pt;}
.y1c{bottom:627.466416pt;}
.y59{bottom:632.586414pt;}
.y1a{bottom:638.026411pt;}
.y58{bottom:646.666408pt;}
.y57{bottom:647.946407pt;}
.y19{bottom:654.346405pt;}
.y56{bottom:663.306401pt;}
.y18{bottom:670.826398pt;}
.y55{bottom:679.466395pt;}
.y17{bottom:686.506392pt;}
.y54{bottom:693.066389pt;}
.y16{bottom:700.586386pt;}
.y15{bottom:701.866386pt;}
.y13{bottom:717.226380pt;}
.y14{bottom:721.866378pt;}
.y11{bottom:732.586374pt;}
.y12{bottom:737.226372pt;}
.y10{bottom:747.786368pt;}
.yf{bottom:763.146361pt;}
.ye{bottom:778.506355pt;}
.yd{bottom:793.866349pt;}
.yc{bottom:809.226343pt;}
.yb{bottom:825.386337pt;}
.ya{bottom:854.506325pt;}
.y53{bottom:861.866322pt;}
.y52{bottom:875.466316pt;}
.y9{bottom:877.386316pt;}
.y50{bottom:889.546311pt;}
.y8{bottom:892.266310pt;}
.y51{bottom:893.546309pt;}
.y4d{bottom:903.786305pt;}
.y4e{bottom:907.146304pt;}
.y4f{bottom:907.786304pt;}
.y7{bottom:915.146301pt;}
.y82{bottom:920.426298pt;}
.y7f{bottom:927.946295pt;}
.y6{bottom:930.026295pt;}
.y80{bottom:935.466292pt;}
.y79{bottom:940.426290pt;}
.y81{bottom:942.506290pt;}
.y7a{bottom:959.786283pt;}
.y4{bottom:961.546282pt;}
.y5{bottom:966.186280pt;}
.y7b{bottom:978.986275pt;}
.y7c{bottom:998.346267pt;}
.y3{bottom:1001.706266pt;}
.y7d{bottom:1017.546260pt;}
.y2{bottom:1018.186259pt;}
.y84{bottom:1023.786257pt;}
.y83{bottom:1025.066257pt;}
.y1{bottom:1034.826253pt;}
.y7e{bottom:1036.906252pt;}
.h8{height:17.600000pt;}
.h7{height:17.760000pt;}
.hb{height:21.328116pt;}
.hc{height:31.406237pt;}
.h3{height:33.918736pt;}
.h5{height:39.243734pt;}
.h6{height:43.214983pt;}
.h4{height:47.109356pt;}
.ha{height:48.374981pt;}
.h2{height:52.134354pt;}
.h1{height:53.534979pt;}
.h9{height:62.812475pt;}
.h0{height:1122.666667pt;}
.w2{width:7.200000pt;}
.w1{width:8.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:158.719937pt;}
.x11{left:168.959932pt;}
.x12{left:173.279931pt;}
.x4c{left:175.359930pt;}
.x46{left:177.599771pt;}
.x35{left:182.239927pt;}
.x4a{left:185.919926pt;}
.x34{left:187.519925pt;}
.x49{left:191.199924pt;}
.x3f{left:196.480135pt;}
.x39{left:207.680000pt;}
.x4e{left:214.399914pt;}
.x3a{left:216.640000pt;}
.x17{left:221.599911pt;}
.x18{left:228.799908pt;}
.x2{left:234.879906pt;}
.x47{left:235.999906pt;}
.x3{left:239.199904pt;}
.x36{left:241.439903pt;}
.x4b{left:246.559901pt;}
.x1b{left:260.479896pt;}
.x1c{left:267.679893pt;}
.x23{left:278.239889pt;}
.x1d{left:280.319888pt;}
.x24{left:285.599886pt;}
.x1e{left:287.519885pt;}
.x25{left:296.479881pt;}
.x26{left:303.679879pt;}
.x27{left:305.919878pt;}
.x28{left:313.119875pt;}
.x38{left:315.039874pt;}
.x29{left:323.679871pt;}
.x2a{left:330.879868pt;}
.x4{left:345.119862pt;}
.x40{left:347.999861pt;}
.x5{left:349.439860pt;}
.x41{left:354.719858pt;}
.x42{left:363.839854pt;}
.x10{left:365.599854pt;}
.x43{left:370.559852pt;}
.x9{left:373.439851pt;}
.x4d{left:374.879850pt;}
.xa{left:380.639848pt;}
.x37{left:385.119846pt;}
.xb{left:390.879844pt;}
.x21{left:392.959843pt;}
.xc{left:398.079841pt;}
.x22{left:407.679837pt;}
.x32{left:415.199834pt;}
.x33{left:422.399831pt;}
.xd{left:458.559817pt;}
.x19{left:463.519815pt;}
.xe{left:465.759814pt;}
.x1a{left:470.719812pt;}
.x6{left:473.119811pt;}
.x7{left:477.599809pt;}
.xf{left:484.159806pt;}
.x3b{left:487.519805pt;}
.x3c{left:493.919802pt;}
.x3d{left:501.599799pt;}
.x3e{left:509.599796pt;}
.x1f{left:517.599793pt;}
.x20{left:524.799790pt;}
.x44{left:526.239790pt;}
.x2b{left:535.519786pt;}
.x8{left:539.999784pt;}
.x45{left:540.959784pt;}
.x2c{left:542.719783pt;}
.x2d{left:553.119779pt;}
.x13{left:554.239778pt;}
.x14{left:558.559777pt;}
.x2e{left:560.319776pt;}
.x48{left:562.079775pt;}
.x30{left:595.039762pt;}
.x31{left:602.239759pt;}
.x15{left:627.199749pt;}
.x16{left:631.519747pt;}
.x2f{left:635.039746pt;}
}




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