
    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_e8a775b99c5a625af52a6eb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_c975fb661d63193c484130e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.645000;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_bf93417f160ee3048590c873.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_8dd4c7a73404d77237a0e2e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_17f2aaf0744309f3c1a54ef1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.389000;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_90e04d8d6e2cc1a4dd39d922.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773000;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_59b1adc6da054475dc6db318.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.780000;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_ca6866398178ac64706c0c16.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.451000;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_e252334e2ee54fbd5d1722a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.528000;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_5d9cf22e875fce3563a17067.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891000;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_75c7f21ddd1233ef296c9090.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.642000;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_bf80e1c08522ece134c74d30.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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_1e305bdfeb3d8d97e2a1f05b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.883000;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:ffe;src:url('chunks/assets/font_f6148180891e7c15fd400de8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.687000;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);}
.v3{vertical-align:-70.704000px;}
.v2{vertical-align:-60.888000px;}
.v6{vertical-align:-57.978000px;}
.v5{vertical-align:-48.156000px;}
.v1{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:18.906000px;}
.v7{vertical-align:27.024000px;}
.v4{vertical-align:44.280000px;}
.ls1d{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000479px;}
.ls9{letter-spacing:0.000539px;}
.ls15{letter-spacing:0.001067px;}
.ls2f{letter-spacing:0.002698px;}
.ls26{letter-spacing:0.003203px;}
.lsc{letter-spacing:0.003791px;}
.ls20{letter-spacing:0.010282px;}
.ls17{letter-spacing:0.013557px;}
.ls31{letter-spacing:0.013733px;}
.ls12{letter-spacing:0.016282px;}
.ls19{letter-spacing:0.024921px;}
.ls30{letter-spacing:2.347067px;}
.ls6{letter-spacing:2.984915px;}
.lsa{letter-spacing:2.986059px;}
.ls2b{letter-spacing:2.987971px;}
.ls7{letter-spacing:2.990915px;}
.ls25{letter-spacing:6.087278px;}
.ls24{letter-spacing:9.050915px;}
.ls4{letter-spacing:10.865464px;}
.ls3{letter-spacing:10.930918px;}
.ls23{letter-spacing:11.520010px;}
.ls22{letter-spacing:14.504915px;}
.ls11{letter-spacing:14.530921px;}
.ls1e{letter-spacing:17.528915px;}
.ls10{letter-spacing:17.530031px;}
.ls1f{letter-spacing:17.534915px;}
.ls16{letter-spacing:17.536031px;}
.ls29{letter-spacing:18.130924px;}
.ls2{letter-spacing:18.196379px;}
.ls32{letter-spacing:20.160017px;}
.lse{letter-spacing:21.164915px;}
.lsd{letter-spacing:21.167971px;}
.ls8{letter-spacing:21.170915px;}
.lsf{letter-spacing:21.172059px;}
.ls2c{letter-spacing:21.699190px;}
.ls2a{letter-spacing:21.705191px;}
.ls2d{letter-spacing:21.733548px;}
.ls0{letter-spacing:21.796382px;}
.ls28{letter-spacing:21.861836px;}
.ls35{letter-spacing:24.292059px;}
.lsb{letter-spacing:24.796059px;}
.ls1a{letter-spacing:24.802059px;}
.ls21{letter-spacing:25.349412px;}
.ls1c{letter-spacing:25.352700px;}
.ls1b{letter-spacing:25.355412px;}
.ls34{letter-spacing:26.899200px;}
.ls1{letter-spacing:32.727300px;}
.ls13{letter-spacing:68.440031px;}
.ls2e{letter-spacing:107.177412px;}
.ls5{letter-spacing:113.629186px;}
.ls14{letter-spacing:122.203738px;}
.ls18{letter-spacing:129.665563px;}
.ls33{letter-spacing:1614.241345px;}
.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;}
}
.ws1a{word-spacing:-53.568045px;}
.ws9{word-spacing:-42.637126px;}
.ws6{word-spacing:-31.771663px;}
.ws8{word-spacing:-31.706208px;}
.wsf{word-spacing:-18.183288px;}
.ws2e{word-spacing:-17.175287px;}
.wsb{word-spacing:-11.873464px;}
.ws5{word-spacing:-7.317824px;}
.ws7{word-spacing:-7.252370px;}
.ws1e{word-spacing:-6.663278px;}
.ws16{word-spacing:-3.652367px;}
.ws21{word-spacing:-0.052364px;}
.ws25{word-spacing:-0.047821px;}
.ws15{word-spacing:0.000000px;}
.ws2{word-spacing:0.013091px;}
.ws0{word-spacing:0.645579px;}
.ws26{word-spacing:1.125819px;}
.ws10{word-spacing:1.911274px;}
.ws2a{word-spacing:1.976729px;}
.ws2d{word-spacing:2.238547px;}
.ws30{word-spacing:3.089457px;}
.ws3{word-spacing:3.613094px;}
.ws12{word-spacing:3.678549px;}
.ws1{word-spacing:4.333095px;}
.ws4{word-spacing:4.483200px;}
.ws31{word-spacing:5.838550px;}
.ws23{word-spacing:7.168212px;}
.ws20{word-spacing:7.171512px;}
.ws1c{word-spacing:7.172112px;}
.ws33{word-spacing:8.129461px;}
.ws27{word-spacing:8.849462px;}
.ws32{word-spacing:10.485827px;}
.ws24{word-spacing:11.402191px;}
.ws34{word-spacing:11.794919px;}
.ws2c{word-spacing:12.842193px;}
.ws2f{word-spacing:13.449600px;}
.ws28{word-spacing:20.762199px;}
.ws11{word-spacing:25.003657px;}
.ws2b{word-spacing:28.996388px;}
.ws13{word-spacing:33.682937px;}
.wsa{word-spacing:33.748392px;}
.ws29{word-spacing:65.389145px;}
.ws14{word-spacing:99.137537px;}
.wsc{word-spacing:163.217591px;}
.wsd{word-spacing:166.948503px;}
.wse{word-spacing:197.188528px;}
.ws22{word-spacing:559.586118px;}
.ws1f{word-spacing:575.948118px;}
.ws1d{word-spacing:608.678118px;}
.ws19{word-spacing:690.494118px;}
.ws1b{word-spacing:774.134118px;}
.ws18{word-spacing:806.858118px;}
.ws17{word-spacing:832.316118px;}
._c{margin-left:-40.516397px;}
._a{margin-left:-10.930918px;}
._1{margin-left:-8.005180px;}
._f{margin-left:-5.498186px;}
._2{margin-left:-4.496649px;}
._0{margin-left:-2.668393px;}
._6{margin-left:-1.032028px;}
._3{width:1.898183px;}
._e{width:2.997702px;}
._b{width:5.983480px;}
._5{width:18.130924px;}
._7{width:21.257500px;}
._11{width:22.828410px;}
._d{width:28.649396px;}
._13{width:31.075690px;}
._4{width:35.865600px;}
._12{width:50.253887px;}
._10{width:56.749138px;}
._8{width:65.454600px;}
._9{width:217.549115px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs1{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1c{bottom:139.426500px;}
.y1a{bottom:179.221500px;}
.y8a{bottom:184.258500px;}
.y1b{bottom:190.446000px;}
.y62{bottom:191.967000px;}
.y60{bottom:197.464500px;}
.y61{bottom:203.193000px;}
.y89{bottom:204.582000px;}
.y5f{bottom:207.283500px;}
.y37{bottom:213.556500px;}
.y19{bottom:216.738000px;}
.y5e{bottom:217.101000px;}
.y88{bottom:224.907000px;}
.y5d{bottom:226.920000px;}
.y5c{bottom:243.196500px;}
.y87{bottom:245.230500px;}
.y36{bottom:246.916500px;}
.y18{bottom:248.091000px;}
.y5a{bottom:248.692500px;}
.y5b{bottom:254.421000px;}
.y59{bottom:258.511500px;}
.y86{bottom:265.554000px;}
.y58{bottom:268.329000px;}
.y57{bottom:278.148000px;}
.y17{bottom:279.442500px;}
.y35{bottom:280.276500px;}
.y56{bottom:294.424500px;}
.y85{bottom:298.302000px;}
.y54{bottom:299.922000px;}
.y55{bottom:305.649000px;}
.y53{bottom:309.739500px;}
.y33{bottom:318.543000px;}
.y52{bottom:319.558500px;}
.y16{bottom:321.814500px;}
.y51{bottom:329.376000px;}
.y34{bottom:329.767500px;}
.y84{bottom:330.240000px;}
.y15{bottom:342.138000px;}
.y50{bottom:345.652500px;}
.y4e{bottom:351.150000px;}
.y32{bottom:352.878000px;}
.y4f{bottom:356.877000px;}
.y4d{bottom:360.967500px;}
.y83{bottom:361.494000px;}
.y4c{bottom:370.786500px;}
.y14{bottom:373.030500px;}
.y4b{bottom:380.604000px;}
.y31{bottom:386.238000px;}
.y82{bottom:392.748000px;}
.y4a{bottom:401.719500px;}
.y13{bottom:415.999500px;}
.y30{bottom:419.599500px;}
.y81{bottom:419.718000px;}
.y7f{bottom:421.123500px;}
.y7e{bottom:430.942500px;}
.y49{bottom:438.481500px;}
.y80{bottom:442.012500px;}
.y12{bottom:447.351000px;}
.y2e{bottom:457.866000px;}
.y7d{bottom:464.664000px;}
.y2f{bottom:469.090500px;}
.y11{bottom:472.158000px;}
.y48{bottom:475.243500px;}
.y2d{bottom:492.199500px;}
.y7c{bottom:496.602000px;}
.y10{bottom:503.511000px;}
.y47{bottom:506.134500px;}
.y7b{bottom:516.925500px;}
.yf{bottom:523.834500px;}
.y2c{bottom:525.561000px;}
.y7a{bottom:549.673500px;}
.y46{bottom:549.954000px;}
.ye{bottom:554.727000px;}
.y2b{bottom:558.921000px;}
.y44{bottom:575.707500px;}
.y79{bottom:580.566000px;}
.y45{bottom:586.932000px;}
.y29{bottom:597.187500px;}
.yd{bottom:597.696000px;}
.y2a{bottom:608.412000px;}
.y43{bottom:610.042500px;}
.y78{bottom:623.520000px;}
.yc{bottom:629.047500px;}
.y28{bottom:631.522500px;}
.y77{bottom:643.843500px;}
.y42{bottom:646.804500px;}
.y76{bottom:664.167000px;}
.y27{bottom:664.882500px;}
.yb{bottom:666.223500px;}
.y41{bottom:683.566500px;}
.y75{bottom:684.490500px;}
.ya{bottom:697.576500px;}
.y26{bottom:698.242500px;}
.y74{bottom:711.945000px;}
.y3f{bottom:722.368500px;}
.y73{bottom:732.268500px;}
.y40{bottom:733.593000px;}
.y9{bottom:734.751000px;}
.y24{bottom:736.509000px;}
.y25{bottom:747.733500px;}
.y3e{bottom:756.702000px;}
.y72{bottom:763.161000px;}
.y8{bottom:766.104000px;}
.y23{bottom:770.844000px;}
.y3d{bottom:793.464000px;}
.y7{bottom:798.951000px;}
.y71{bottom:802.321500px;}
.y6f{bottom:803.728500px;}
.y22{bottom:804.204000px;}
.y6e{bottom:813.546000px;}
.y70{bottom:824.617500px;}
.y6{bottom:829.842000px;}
.y3c{bottom:830.226000px;}
.y6d{bottom:836.338500px;}
.y21{bottom:837.564000px;}
.y6c{bottom:856.662000px;}
.y3a{bottom:869.028000px;}
.y5{bottom:872.811000px;}
.y1f{bottom:875.830500px;}
.y3b{bottom:880.252500px;}
.y6b{bottom:881.635500px;}
.y6a{bottom:885.681000px;}
.y20{bottom:887.056500px;}
.y68{bottom:891.178500px;}
.y4{bottom:893.136000px;}
.y69{bottom:896.905500px;}
.y67{bottom:900.996000px;}
.y39{bottom:903.363000px;}
.y1e{bottom:910.165500px;}
.y66{bottom:910.815000px;}
.y3{bottom:913.459500px;}
.y65{bottom:920.632500px;}
.y64{bottom:936.238500px;}
.y38{bottom:940.125000px;}
.y1d{bottom:943.527000px;}
.y2{bottom:949.987500px;}
.y63{bottom:956.563500px;}
.y1{bottom:976.887000px;}
.h8{height:1.374547px;}
.hb{height:21.088885px;}
.hc{height:24.579788px;}
.h2{height:37.960045px;}
.h3{height:49.090950px;}
.h4{height:50.211840px;}
.ha{height:51.232726px;}
.h9{height:59.350726px;}
.h1{height:60.254040px;}
.h5{height:93.370950px;}
.h6{height:93.988950px;}
.h7{height:93.994950px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:188.697000px;}
.x19{left:208.702500px;}
.x2{left:213.289500px;}
.x16{left:216.885000px;}
.xb{left:223.368000px;}
.x13{left:225.066000px;}
.x2e{left:229.606500px;}
.xc{left:233.248500px;}
.x5{left:240.166500px;}
.x4{left:278.934000px;}
.x6{left:312.165000px;}
.x1d{left:348.240000px;}
.x1a{left:352.330500px;}
.x23{left:357.294000px;}
.x17{left:360.511500px;}
.x22{left:365.475000px;}
.x3{left:367.114500px;}
.x1e{left:369.445500px;}
.x1b{left:373.536000px;}
.x10{left:380.967000px;}
.x25{left:387.456000px;}
.x1f{left:388.512000px;}
.x1c{left:392.602500px;}
.x24{left:394.779000px;}
.x18{left:400.783500px;}
.x11{left:402.172500px;}
.xd{left:410.058000px;}
.x2b{left:411.331500px;}
.x7{left:416.421000px;}
.x20{left:419.325000px;}
.x12{left:421.239000px;}
.x14{left:423.081000px;}
.x26{left:425.406000px;}
.xe{left:431.263500px;}
.x8{left:437.626500px;}
.x15{left:442.147500px;}
.x27{left:443.422500px;}
.x21{left:447.481500px;}
.xf{left:450.330000px;}
.xa{left:453.597000px;}
.x9{left:456.693000px;}
.x2f{left:463.842000px;}
.x28{left:472.488000px;}
.x2c{left:481.020000px;}
.x2d{left:499.501500px;}
.x30{left:501.475500px;}
.x29{left:513.129000px;}
.x31{left:519.955500px;}
.x2a{left:523.377000px;}
@media print{
.v3{vertical-align:-62.848000pt;}
.v2{vertical-align:-54.122667pt;}
.v6{vertical-align:-51.536000pt;}
.v5{vertical-align:-42.805333pt;}
.v1{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:16.805333pt;}
.v7{vertical-align:24.021333pt;}
.v4{vertical-align:39.360000pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000425pt;}
.ls9{letter-spacing:0.000479pt;}
.ls15{letter-spacing:0.000948pt;}
.ls2f{letter-spacing:0.002399pt;}
.ls26{letter-spacing:0.002847pt;}
.lsc{letter-spacing:0.003370pt;}
.ls20{letter-spacing:0.009139pt;}
.ls17{letter-spacing:0.012051pt;}
.ls31{letter-spacing:0.012207pt;}
.ls12{letter-spacing:0.014473pt;}
.ls19{letter-spacing:0.022152pt;}
.ls30{letter-spacing:2.086281pt;}
.ls6{letter-spacing:2.653258pt;}
.lsa{letter-spacing:2.654275pt;}
.ls2b{letter-spacing:2.655975pt;}
.ls7{letter-spacing:2.658591pt;}
.ls25{letter-spacing:5.410914pt;}
.ls24{letter-spacing:8.045258pt;}
.ls4{letter-spacing:9.658190pt;}
.ls3{letter-spacing:9.716372pt;}
.ls23{letter-spacing:10.240009pt;}
.ls22{letter-spacing:12.893258pt;}
.ls11{letter-spacing:12.916374pt;}
.ls1e{letter-spacing:15.581258pt;}
.ls10{letter-spacing:15.582249pt;}
.ls1f{letter-spacing:15.586591pt;}
.ls16{letter-spacing:15.587583pt;}
.ls29{letter-spacing:16.116377pt;}
.ls2{letter-spacing:16.174559pt;}
.ls32{letter-spacing:17.920015pt;}
.lse{letter-spacing:18.813258pt;}
.lsd{letter-spacing:18.815975pt;}
.ls8{letter-spacing:18.818591pt;}
.lsf{letter-spacing:18.819608pt;}
.ls2c{letter-spacing:19.288169pt;}
.ls2a{letter-spacing:19.293503pt;}
.ls2d{letter-spacing:19.318709pt;}
.ls0{letter-spacing:19.374562pt;}
.ls28{letter-spacing:19.432743pt;}
.ls35{letter-spacing:21.592941pt;}
.lsb{letter-spacing:22.040941pt;}
.ls1a{letter-spacing:22.046275pt;}
.ls21{letter-spacing:22.532811pt;}
.ls1c{letter-spacing:22.535733pt;}
.ls1b{letter-spacing:22.538144pt;}
.ls34{letter-spacing:23.910400pt;}
.ls1{letter-spacing:29.090933pt;}
.ls13{letter-spacing:60.835583pt;}
.ls2e{letter-spacing:95.268811pt;}
.ls5{letter-spacing:101.003721pt;}
.ls14{letter-spacing:108.625545pt;}
.ls18{letter-spacing:115.258278pt;}
.ls33{letter-spacing:1434.881196pt;}
.ws1a{word-spacing:-47.616040pt;}
.ws9{word-spacing:-37.899668pt;}
.ws6{word-spacing:-28.241478pt;}
.ws8{word-spacing:-28.183296pt;}
.wsf{word-spacing:-16.162923pt;}
.ws2e{word-spacing:-15.266922pt;}
.wsb{word-spacing:-10.554191pt;}
.ws5{word-spacing:-6.504733pt;}
.ws7{word-spacing:-6.446551pt;}
.ws1e{word-spacing:-5.922914pt;}
.ws16{word-spacing:-3.246548pt;}
.ws21{word-spacing:-0.046545pt;}
.ws25{word-spacing:-0.042507pt;}
.ws15{word-spacing:0.000000pt;}
.ws2{word-spacing:0.011636pt;}
.ws0{word-spacing:0.573848pt;}
.ws26{word-spacing:1.000728pt;}
.ws10{word-spacing:1.698911pt;}
.ws2a{word-spacing:1.757092pt;}
.ws2d{word-spacing:1.989820pt;}
.ws30{word-spacing:2.746184pt;}
.ws3{word-spacing:3.211639pt;}
.ws12{word-spacing:3.269821pt;}
.ws1{word-spacing:3.851640pt;}
.ws4{word-spacing:3.985067pt;}
.ws31{word-spacing:5.189823pt;}
.ws23{word-spacing:6.371744pt;}
.ws20{word-spacing:6.374677pt;}
.ws1c{word-spacing:6.375211pt;}
.ws33{word-spacing:7.226188pt;}
.ws27{word-spacing:7.866188pt;}
.ws32{word-spacing:9.320735pt;}
.ws24{word-spacing:10.135281pt;}
.ws34{word-spacing:10.484372pt;}
.ws2c{word-spacing:11.415282pt;}
.ws2f{word-spacing:11.955200pt;}
.ws28{word-spacing:18.455288pt;}
.ws11{word-spacing:22.225473pt;}
.ws2b{word-spacing:25.774567pt;}
.ws13{word-spacing:29.940389pt;}
.wsa{word-spacing:29.998570pt;}
.ws29{word-spacing:58.123685pt;}
.ws14{word-spacing:88.122255pt;}
.wsc{word-spacing:145.082303pt;}
.wsd{word-spacing:148.398669pt;}
.wse{word-spacing:175.278692pt;}
.ws22{word-spacing:497.409883pt;}
.ws1f{word-spacing:511.953883pt;}
.ws1d{word-spacing:541.047216pt;}
.ws19{word-spacing:613.772549pt;}
.ws1b{word-spacing:688.119216pt;}
.ws18{word-spacing:717.207216pt;}
.ws17{word-spacing:739.836549pt;}
._c{margin-left:-36.014575pt;}
._a{margin-left:-9.716372pt;}
._1{margin-left:-7.115715pt;}
._f{margin-left:-4.887277pt;}
._2{margin-left:-3.997021pt;}
._0{margin-left:-2.371905pt;}
._6{margin-left:-0.917358pt;}
._3{width:1.687274pt;}
._e{width:2.664624pt;}
._b{width:5.318649pt;}
._5{width:16.116377pt;}
._7{width:18.895555pt;}
._11{width:20.291920pt;}
._d{width:25.466130pt;}
._13{width:27.622835pt;}
._4{width:31.880533pt;}
._12{width:44.670122pt;}
._10{width:50.443678pt;}
._8{width:58.181867pt;}
._9{width:193.376991pt;}
.fs3{font-size:42.507200pt;}
.fs1{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:123.934667pt;}
.y1a{bottom:159.308000pt;}
.y8a{bottom:163.785333pt;}
.y1b{bottom:169.285333pt;}
.y62{bottom:170.637333pt;}
.y60{bottom:175.524000pt;}
.y61{bottom:180.616000pt;}
.y89{bottom:181.850667pt;}
.y5f{bottom:184.252000pt;}
.y37{bottom:189.828000pt;}
.y19{bottom:192.656000pt;}
.y5e{bottom:192.978667pt;}
.y88{bottom:199.917333pt;}
.y5d{bottom:201.706667pt;}
.y5c{bottom:216.174667pt;}
.y87{bottom:217.982667pt;}
.y36{bottom:219.481333pt;}
.y18{bottom:220.525333pt;}
.y5a{bottom:221.060000pt;}
.y5b{bottom:226.152000pt;}
.y59{bottom:229.788000pt;}
.y86{bottom:236.048000pt;}
.y58{bottom:238.514667pt;}
.y57{bottom:247.242667pt;}
.y17{bottom:248.393333pt;}
.y35{bottom:249.134667pt;}
.y56{bottom:261.710667pt;}
.y85{bottom:265.157333pt;}
.y54{bottom:266.597333pt;}
.y55{bottom:271.688000pt;}
.y53{bottom:275.324000pt;}
.y33{bottom:283.149333pt;}
.y52{bottom:284.052000pt;}
.y16{bottom:286.057333pt;}
.y51{bottom:292.778667pt;}
.y34{bottom:293.126667pt;}
.y84{bottom:293.546667pt;}
.y15{bottom:304.122667pt;}
.y50{bottom:307.246667pt;}
.y4e{bottom:312.133333pt;}
.y32{bottom:313.669333pt;}
.y4f{bottom:317.224000pt;}
.y4d{bottom:320.860000pt;}
.y83{bottom:321.328000pt;}
.y4c{bottom:329.588000pt;}
.y14{bottom:331.582667pt;}
.y4b{bottom:338.314667pt;}
.y31{bottom:343.322667pt;}
.y82{bottom:349.109333pt;}
.y4a{bottom:357.084000pt;}
.y13{bottom:369.777333pt;}
.y30{bottom:372.977333pt;}
.y81{bottom:373.082667pt;}
.y7f{bottom:374.332000pt;}
.y7e{bottom:383.060000pt;}
.y49{bottom:389.761333pt;}
.y80{bottom:392.900000pt;}
.y12{bottom:397.645333pt;}
.y2e{bottom:406.992000pt;}
.y7d{bottom:413.034667pt;}
.y2f{bottom:416.969333pt;}
.y11{bottom:419.696000pt;}
.y48{bottom:422.438667pt;}
.y2d{bottom:437.510667pt;}
.y7c{bottom:441.424000pt;}
.y10{bottom:447.565333pt;}
.y47{bottom:449.897333pt;}
.y7b{bottom:459.489333pt;}
.yf{bottom:465.630667pt;}
.y2c{bottom:467.165333pt;}
.y7a{bottom:488.598667pt;}
.y46{bottom:488.848000pt;}
.ye{bottom:493.090667pt;}
.y2b{bottom:496.818667pt;}
.y44{bottom:511.740000pt;}
.y79{bottom:516.058667pt;}
.y45{bottom:521.717333pt;}
.y29{bottom:530.833333pt;}
.yd{bottom:531.285333pt;}
.y2a{bottom:540.810667pt;}
.y43{bottom:542.260000pt;}
.y78{bottom:554.240000pt;}
.yc{bottom:559.153333pt;}
.y28{bottom:561.353333pt;}
.y77{bottom:572.305333pt;}
.y42{bottom:574.937333pt;}
.y76{bottom:590.370667pt;}
.y27{bottom:591.006667pt;}
.yb{bottom:592.198667pt;}
.y41{bottom:607.614667pt;}
.y75{bottom:608.436000pt;}
.ya{bottom:620.068000pt;}
.y26{bottom:620.660000pt;}
.y74{bottom:632.840000pt;}
.y3f{bottom:642.105333pt;}
.y73{bottom:650.905333pt;}
.y40{bottom:652.082667pt;}
.y9{bottom:653.112000pt;}
.y24{bottom:654.674667pt;}
.y25{bottom:664.652000pt;}
.y3e{bottom:672.624000pt;}
.y72{bottom:678.365333pt;}
.y8{bottom:680.981333pt;}
.y23{bottom:685.194667pt;}
.y3d{bottom:705.301333pt;}
.y7{bottom:710.178667pt;}
.y71{bottom:713.174667pt;}
.y6f{bottom:714.425333pt;}
.y22{bottom:714.848000pt;}
.y6e{bottom:723.152000pt;}
.y70{bottom:732.993333pt;}
.y6{bottom:737.637333pt;}
.y3c{bottom:737.978667pt;}
.y6d{bottom:743.412000pt;}
.y21{bottom:744.501333pt;}
.y6c{bottom:761.477333pt;}
.y3a{bottom:772.469333pt;}
.y5{bottom:775.832000pt;}
.y1f{bottom:778.516000pt;}
.y3b{bottom:782.446667pt;}
.y6b{bottom:783.676000pt;}
.y6a{bottom:787.272000pt;}
.y20{bottom:788.494667pt;}
.y68{bottom:792.158667pt;}
.y4{bottom:793.898667pt;}
.y69{bottom:797.249333pt;}
.y67{bottom:800.885333pt;}
.y39{bottom:802.989333pt;}
.y1e{bottom:809.036000pt;}
.y66{bottom:809.613333pt;}
.y3{bottom:811.964000pt;}
.y65{bottom:818.340000pt;}
.y64{bottom:832.212000pt;}
.y38{bottom:835.666667pt;}
.y1d{bottom:838.690667pt;}
.y2{bottom:844.433333pt;}
.y63{bottom:850.278667pt;}
.y1{bottom:868.344000pt;}
.h8{height:1.221819pt;}
.hb{height:18.745675pt;}
.hc{height:21.848701pt;}
.h2{height:33.742262pt;}
.h3{height:43.636400pt;}
.h4{height:44.632747pt;}
.ha{height:45.540201pt;}
.h9{height:52.756201pt;}
.h1{height:53.559147pt;}
.h5{height:82.996400pt;}
.h6{height:83.545733pt;}
.h7{height:83.551067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:167.730667pt;}
.x19{left:185.513333pt;}
.x2{left:189.590667pt;}
.x16{left:192.786667pt;}
.xb{left:198.549333pt;}
.x13{left:200.058667pt;}
.x2e{left:204.094667pt;}
.xc{left:207.332000pt;}
.x5{left:213.481333pt;}
.x4{left:247.941333pt;}
.x6{left:277.480000pt;}
.x1d{left:309.546667pt;}
.x1a{left:313.182667pt;}
.x23{left:317.594667pt;}
.x17{left:320.454667pt;}
.x22{left:324.866667pt;}
.x3{left:326.324000pt;}
.x1e{left:328.396000pt;}
.x1b{left:332.032000pt;}
.x10{left:338.637333pt;}
.x25{left:344.405333pt;}
.x1f{left:345.344000pt;}
.x1c{left:348.980000pt;}
.x24{left:350.914667pt;}
.x18{left:356.252000pt;}
.x11{left:357.486667pt;}
.xd{left:364.496000pt;}
.x2b{left:365.628000pt;}
.x7{left:370.152000pt;}
.x20{left:372.733333pt;}
.x12{left:374.434667pt;}
.x14{left:376.072000pt;}
.x26{left:378.138667pt;}
.xe{left:383.345333pt;}
.x8{left:389.001333pt;}
.x15{left:393.020000pt;}
.x27{left:394.153333pt;}
.x21{left:397.761333pt;}
.xf{left:400.293333pt;}
.xa{left:403.197333pt;}
.x9{left:405.949333pt;}
.x2f{left:412.304000pt;}
.x28{left:419.989333pt;}
.x2c{left:427.573333pt;}
.x2d{left:444.001333pt;}
.x30{left:445.756000pt;}
.x29{left:456.114667pt;}
.x31{left:462.182667pt;}
.x2a{left:465.224000pt;}
}




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