
    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_1119f96668d9add3be28efb6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_82f2ddb368645f0d9ce68be7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bee9e99529002e2744cca49c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_119f014f648ca989f028f851.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_f3da435d6548a34deaf28527.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926000;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_3e9d75bea599d21fac4b525c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_268e1b22ad8531822a407d8c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966000;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_7111f4dbfb3154069e3838bc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.990000;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_710ad151bd13382a35de59b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;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_dc623e7e2f15c5c32d569f9d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.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);}
.v1{vertical-align:-31.881092px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.759879px;}
.v3{vertical-align:67.251754px;}
.v2{vertical-align:84.320663px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:597.912526px;}
.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;}
}
.ws1{word-spacing:-116.732164px;}
.ws5{word-spacing:-63.081901px;}
.ws2{word-spacing:-58.366082px;}
.ws8{word-spacing:-54.577138px;}
.ws3{word-spacing:-41.166476px;}
.ws4{word-spacing:-40.128291px;}
.ws6{word-spacing:-37.376307px;}
.ws0{word-spacing:-17.843439px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:805.982395px;}
._26{margin-left:-6.437074px;}
._25{margin-left:-3.493309px;}
._3{margin-left:-1.000219px;}
._1a{width:1.195199px;}
._10{width:2.695015px;}
._21{width:5.534784px;}
._14{width:7.206344px;}
._24{width:8.475517px;}
._1d{width:12.795651px;}
._1b{width:14.491547px;}
._4{width:15.554308px;}
._1{width:16.650409px;}
._11{width:18.513816px;}
._20{width:20.248350px;}
._7{width:28.847548px;}
._1c{width:31.581302px;}
._5{width:33.621655px;}
._6{width:34.653968px;}
._1e{width:39.054864px;}
._c{width:45.435106px;}
._1f{width:48.946829px;}
._2{width:57.004301px;}
._18{width:81.507820px;}
._19{width:89.024693px;}
._e{width:91.720876px;}
._13{width:111.891660px;}
._b{width:124.909889px;}
._d{width:126.151979px;}
._12{width:137.771181px;}
._17{width:161.961104px;}
._15{width:163.343741px;}
._f{width:177.715417px;}
._16{width:226.853288px;}
._9{width:1012.735897px;}
._22{width:1391.279061px;}
._23{width:1688.858237px;}
._0{width:1735.477568px;}
._a{width:1984.034288px;}
._8{width:3711.632081px;}
.fc5{color:transparent;}
.fc4{color:rgb(254,254,254);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(240,23,30);}
.fc0{color:rgb(76,173,16);}
.fs17{font-size:64.640877px;}
.fs1b{font-size:65.963695px;}
.fs1c{font-size:68.449100px;}
.fs3{font-size:68.690529px;}
.fs1{font-size:97.681120px;}
.fs11{font-size:98.135617px;}
.fs4{font-size:125.897968px;}
.fs0{font-size:133.699336px;}
.fsf{font-size:134.447146px;}
.fs19{font-size:140.810346px;}
.fs1a{font-size:143.536282px;}
.fs12{font-size:143.986239px;}
.fs7{font-size:145.426102px;}
.fs8{font-size:148.080848px;}
.fs18{font-size:149.651637px;}
.fs2{font-size:149.938402px;}
.fse{font-size:149.970676px;}
.fs13{font-size:155.955095px;}
.fs14{font-size:159.644743px;}
.fsa{font-size:170.758685px;}
.fsd{font-size:179.982799px;}
.fs9{font-size:185.967236px;}
.fs5{font-size:209.949935px;}
.fs16{font-size:210.101461px;}
.fs10{font-size:218.139152px;}
.fsc{font-size:226.913314px;}
.fsb{font-size:226.958305px;}
.fs15{font-size:245.144628px;}
.fs6{font-size:424.264457px;}
.y0{bottom:0.000000px;}
.ya{bottom:0.000119px;}
.y5a{bottom:5.119201px;}
.y70{bottom:6.168936px;}
.y2{bottom:10.647708px;}
.y65{bottom:11.198992px;}
.y5e{bottom:11.710006px;}
.y5c{bottom:11.841138px;}
.y58{bottom:15.932473px;}
.y55{bottom:18.716289px;}
.y64{bottom:59.602548px;}
.y74{bottom:77.818371px;}
.y57{bottom:88.172906px;}
.y63{bottom:108.006105px;}
.y73{bottom:129.563425px;}
.y62{bottom:156.409661px;}
.y72{bottom:181.308480px;}
.y61{bottom:204.813217px;}
.y7{bottom:221.221481px;}
.y6{bottom:223.569190px;}
.y9{bottom:229.191754px;}
.y71{bottom:233.053535px;}
.y8{bottom:252.619629px;}
.y60{bottom:253.216774px;}
.y4{bottom:344.753773px;}
.y5f{bottom:359.595104px;}
.y6f{bottom:360.675104px;}
.y5{bottom:361.395104px;}
.y6e{bottom:367.417453px;}
.y4b{bottom:393.589949px;}
.y4a{bottom:443.085219px;}
.y49{bottom:492.580489px;}
.y48{bottom:542.075758px;}
.y47{bottom:591.571028px;}
.y46{bottom:641.066298px;}
.y53{bottom:679.111260px;}
.y45{bottom:690.561568px;}
.y3{bottom:726.435089px;}
.y6d{bottom:730.029352px;}
.y44{bottom:740.056837px;}
.y6c{bottom:779.524621px;}
.y43{bottom:789.552107px;}
.y6b{bottom:829.019891px;}
.y42{bottom:839.047377px;}
.y6a{bottom:878.515161px;}
.y41{bottom:888.542646px;}
.y69{bottom:928.010430px;}
.y40{bottom:938.037916px;}
.y68{bottom:977.505700px;}
.y3f{bottom:987.533186px;}
.y67{bottom:1027.000970px;}
.y3e{bottom:1037.028455px;}
.y1{bottom:1063.755075px;}
.y66{bottom:1076.496239px;}
.y3d{bottom:1086.523725px;}
.y3c{bottom:1136.018995px;}
.y52{bottom:1145.500601px;}
.y3a{bottom:1203.844963px;}
.y3b{bottom:1213.786794px;}
.y56{bottom:1582.875053px;}
.y59{bottom:1697.715048px;}
.y54{bottom:1758.555046px;}
.y51{bottom:2012.988884px;}
.y5b{bottom:2053.035033px;}
.y5d{bottom:2059.515033px;}
.y50{bottom:2062.484153px;}
.y4f{bottom:2111.979423px;}
.y4e{bottom:2161.474693px;}
.y4d{bottom:2210.969962px;}
.y4c{bottom:2260.465232px;}
.y39{bottom:2317.984976px;}
.y16{bottom:2442.259501px;}
.y15{bottom:2515.377513px;}
.y14{bottom:2588.495525px;}
.y13{bottom:2661.613537px;}
.y12{bottom:2734.731550px;}
.y11{bottom:2807.849562px;}
.y10{bottom:2880.967574px;}
.yf{bottom:2954.085586px;}
.y29{bottom:3071.712439px;}
.y2d{bottom:3104.418056px;}
.ye{bottom:3120.899267px;}
.y32{bottom:3124.852819px;}
.y28{bottom:3134.706419px;}
.y2c{bottom:3156.163111px;}
.yd{bottom:3163.645182px;}
.y31{bottom:3169.848519px;}
.y27{bottom:3197.700398px;}
.yc{bottom:3206.391096px;}
.y2b{bottom:3207.908166px;}
.y30{bottom:3214.844218px;}
.yb{bottom:3249.137011px;}
.y2a{bottom:3259.653221px;}
.y2f{bottom:3259.839918px;}
.y26{bottom:3260.694378px;}
.y25{bottom:3323.688358px;}
.y2e{bottom:3345.729433px;}
.y1d{bottom:3423.920480px;}
.y1c{bottom:3459.917040px;}
.y1f{bottom:3504.841889px;}
.y1b{bottom:3509.434913px;}
.y1e{bottom:3540.838449px;}
.y1a{bottom:3545.431472px;}
.y22{bottom:3826.818864px;}
.y21{bottom:3868.439886px;}
.y20{bottom:3893.247970px;}
.y24{bottom:4010.710020px;}
.y23{bottom:4010.790696px;}
.y36{bottom:4113.454288px;}
.y38{bottom:4132.960414px;}
.y35{bottom:4165.199343px;}
.y37{bottom:4188.493832px;}
.y19{bottom:4200.339552px;}
.y33{bottom:4234.991022px;}
.y34{bottom:4273.155532px;}
.y18{bottom:4375.348286px;}
.y17{bottom:4501.336246px;}
.h23{height:22.679999px;}
.h2c{height:23.759999px;}
.h2{height:45.359998px;}
.h24{height:49.459108px;}
.h27{height:50.399998px;}
.h2b{height:50.471245px;}
.h25{height:50.759998px;}
.h2d{height:52.372920px;}
.h8{height:52.557646px;}
.h1a{height:71.639000px;}
.h5{height:74.739412px;}
.h1f{height:84.599996px;}
.ha{height:91.905517px;}
.h17{height:97.877522px;}
.h18{height:98.146417px;}
.h3{height:101.580159px;}
.h2a{height:104.781486px;}
.hd{height:106.161054px;}
.h29{height:107.739166px;}
.he{height:107.802857px;}
.hf{height:108.099019px;}
.h15{height:109.178652px;}
.h16{height:109.478594px;}
.h1c{height:110.169159px;}
.h26{height:113.700169px;}
.h1d{height:119.326970px;}
.h1e{height:122.150055px;}
.h14{height:131.387443px;}
.h11{height:134.899361px;}
.h7{height:136.878309px;}
.h2e{height:140.676805px;}
.h21{height:144.719994px;}
.hb{height:153.263452px;}
.h19{height:159.241581px;}
.h1b{height:160.640404px;}
.h22{height:160.756342px;}
.h13{height:164.058326px;}
.h12{height:164.090854px;}
.h20{height:187.569156px;}
.h10{height:195.833044px;}
.h6{height:270.359989px;}
.h28{height:289.799988px;}
.hc{height:309.713054px;}
.h4{height:382.679984px;}
.h1{height:5101.500000px;}
.h9{height:5101.874787px;}
.h0{height:5101.874906px;}
.w8{width:10.440000px;}
.wc{width:98.639996px;}
.w2{width:171.719993px;}
.w1{width:177.119993px;}
.wa{width:191.879992px;}
.w9{width:197.999992px;}
.wb{width:542.879977px;}
.w6{width:636.119973px;}
.w7{width:751.679969px;}
.w4{width:1173.599951px;}
.w3{width:1416.959941px;}
.w5{width:3827.159841px;}
.w0{width:3827.250000px;}
.x0{left:0.000000px;}
.x33{left:48.889494px;}
.x6{left:60.943094px;}
.xb{left:133.037703px;}
.x5{left:135.719994px;}
.x37{left:139.632762px;}
.xd{left:265.673660px;}
.x1a{left:286.565086px;}
.x10{left:307.239363px;}
.xf{left:374.100160px;}
.x9{left:394.485694px;}
.x2a{left:395.973433px;}
.x8{left:420.018417px;}
.x3{left:462.239981px;}
.x15{left:635.640634px;}
.x1{left:643.319973px;}
.x2f{left:660.597930px;}
.x2e{left:675.056226px;}
.x12{left:846.855585px;}
.x32{left:890.999963px;}
.x31{left:915.479962px;}
.x19{left:967.024904px;}
.x11{left:985.709502px;}
.x7{left:1007.276261px;}
.xc{left:1015.414507px;}
.x4{left:1020.842160px;}
.x29{left:1049.604724px;}
.x27{left:1067.403371px;}
.x2{left:1139.039953px;}
.x25{left:1179.557015px;}
.x24{left:1191.730738px;}
.x28{left:1335.046660px;}
.x26{left:1347.150073px;}
.x14{left:1562.750578px;}
.x13{left:1599.766572px;}
.x34{left:1604.159933px;}
.xe{left:1931.476384px;}
.x2c{left:1964.168162px;}
.x2b{left:2014.317348px;}
.x30{left:2018.623092px;}
.x38{left:2197.755088px;}
.x35{left:2201.399908px;}
.x1b{left:2297.263557px;}
.x1d{left:2298.265415px;}
.x1c{left:2304.540206px;}
.x1e{left:2332.662518px;}
.x18{left:2407.093136px;}
.x16{left:2451.779019px;}
.x20{left:2623.632669px;}
.x22{left:2635.725263px;}
.x17{left:2642.852554px;}
.x21{left:2654.426601px;}
.x23{left:2699.264113px;}
.x1f{left:2761.255433px;}
.x39{left:2778.119884px;}
.x2d{left:3082.558588px;}
.xa{left:3119.919494px;}
.x36{left:3123.719870px;}
.x3a{left:3127.951634px;}
.x3b{left:3164.967627px;}
@media print{
.v1{vertical-align:-28.338748pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.453226pt;}
.v3{vertical-align:59.779337pt;}
.v2{vertical-align:74.951701pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:531.477801pt;}
.ws1{word-spacing:-103.761923pt;}
.ws5{word-spacing:-56.072801pt;}
.ws2{word-spacing:-51.880962pt;}
.ws8{word-spacing:-48.513012pt;}
.ws3{word-spacing:-36.592423pt;}
.ws4{word-spacing:-35.669592pt;}
.ws6{word-spacing:-33.223384pt;}
.ws0{word-spacing:-15.860834pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:716.428795pt;}
._26{margin-left:-5.721844pt;}
._25{margin-left:-3.105163pt;}
._3{margin-left:-0.889084pt;}
._1a{width:1.062399pt;}
._10{width:2.395568pt;}
._21{width:4.919808pt;}
._14{width:6.405639pt;}
._24{width:7.533793pt;}
._1d{width:11.373912pt;}
._1b{width:12.881375pt;}
._4{width:13.826052pt;}
._1{width:14.800364pt;}
._11{width:16.456726pt;}
._20{width:17.998534pt;}
._7{width:25.642265pt;}
._1c{width:28.072269pt;}
._5{width:29.885916pt;}
._6{width:30.803527pt;}
._1e{width:34.715435pt;}
._c{width:40.386761pt;}
._1f{width:43.508292pt;}
._2{width:50.670489pt;}
._18{width:72.451395pt;}
._19{width:79.133060pt;}
._e{width:81.529668pt;}
._13{width:99.459253pt;}
._b{width:111.031012pt;}
._d{width:112.135093pt;}
._12{width:122.463272pt;}
._17{width:143.965426pt;}
._15{width:145.194436pt;}
._f{width:157.969259pt;}
._16{width:201.647367pt;}
._9{width:900.209686pt;}
._22{width:1236.692498pt;}
._23{width:1501.207322pt;}
._0{width:1542.646727pt;}
._a{width:1763.586034pt;}
._8{width:3299.228516pt;}
.fs17{font-size:57.458557pt;}
.fs1b{font-size:58.634395pt;}
.fs1c{font-size:60.843645pt;}
.fs3{font-size:61.058248pt;}
.fs1{font-size:86.827662pt;}
.fs11{font-size:87.231659pt;}
.fs4{font-size:111.909305pt;}
.fs0{font-size:118.843854pt;}
.fsf{font-size:119.508574pt;}
.fs19{font-size:125.164752pt;}
.fs1a{font-size:127.587806pt;}
.fs12{font-size:127.987768pt;}
.fs7{font-size:129.267646pt;}
.fs8{font-size:131.627420pt;}
.fs18{font-size:133.023677pt;}
.fs2{font-size:133.278579pt;}
.fse{font-size:133.307268pt;}
.fs13{font-size:138.626751pt;}
.fs14{font-size:141.906438pt;}
.fsa{font-size:151.785498pt;}
.fsd{font-size:159.984710pt;}
.fs9{font-size:165.304210pt;}
.fs5{font-size:186.622164pt;}
.fs16{font-size:186.756854pt;}
.fs10{font-size:193.901469pt;}
.fsc{font-size:201.700723pt;}
.fsb{font-size:201.740715pt;}
.fs15{font-size:217.906336pt;}
.fs6{font-size:377.123962pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:0.000106pt;}
.y5a{bottom:4.550401pt;}
.y70{bottom:5.483498pt;}
.y2{bottom:9.464630pt;}
.y65{bottom:9.954660pt;}
.y5e{bottom:10.408894pt;}
.y5c{bottom:10.525456pt;}
.y58{bottom:14.162198pt;}
.y55{bottom:16.636701pt;}
.y64{bottom:52.980043pt;}
.y74{bottom:69.171885pt;}
.y57{bottom:78.375917pt;}
.y63{bottom:96.005426pt;}
.y73{bottom:115.167489pt;}
.y62{bottom:139.030810pt;}
.y72{bottom:161.163093pt;}
.y61{bottom:182.056193pt;}
.y7{bottom:196.641316pt;}
.y6{bottom:198.728169pt;}
.y9{bottom:203.726003pt;}
.y71{bottom:207.158697pt;}
.y8{bottom:224.550781pt;}
.y60{bottom:225.081577pt;}
.y4{bottom:306.447798pt;}
.y5f{bottom:319.640092pt;}
.y6f{bottom:320.600092pt;}
.y5{bottom:321.240092pt;}
.y6e{bottom:326.593291pt;}
.y4b{bottom:349.857733pt;}
.y4a{bottom:393.853528pt;}
.y49{bottom:437.849323pt;}
.y48{bottom:481.845119pt;}
.y47{bottom:525.840914pt;}
.y46{bottom:569.836709pt;}
.y53{bottom:603.654453pt;}
.y45{bottom:613.832505pt;}
.y3{bottom:645.720079pt;}
.y6d{bottom:648.914979pt;}
.y44{bottom:657.828300pt;}
.y6c{bottom:692.910774pt;}
.y43{bottom:701.824095pt;}
.y6b{bottom:736.906570pt;}
.y42{bottom:745.819890pt;}
.y6a{bottom:780.902365pt;}
.y41{bottom:789.815686pt;}
.y69{bottom:824.898160pt;}
.y40{bottom:833.811481pt;}
.y68{bottom:868.893956pt;}
.y3f{bottom:877.807276pt;}
.y67{bottom:912.889751pt;}
.y3e{bottom:921.803072pt;}
.y1{bottom:945.560066pt;}
.y66{bottom:956.885546pt;}
.y3d{bottom:965.798867pt;}
.y3c{bottom:1009.794662pt;}
.y52{bottom:1018.222756pt;}
.y3a{bottom:1070.084411pt;}
.y3b{bottom:1078.921595pt;}
.y56{bottom:1407.000047pt;}
.y59{bottom:1509.080043pt;}
.y54{bottom:1563.160040pt;}
.y51{bottom:1789.323452pt;}
.y5b{bottom:1824.920030pt;}
.y5d{bottom:1830.680029pt;}
.y50{bottom:1833.319247pt;}
.y4f{bottom:1877.315043pt;}
.y4e{bottom:1921.310838pt;}
.y4d{bottom:1965.306633pt;}
.y4c{bottom:2009.302428pt;}
.y39{bottom:2060.431090pt;}
.y16{bottom:2170.897335pt;}
.y15{bottom:2235.891123pt;}
.y14{bottom:2300.884911pt;}
.y13{bottom:2365.878700pt;}
.y12{bottom:2430.872488pt;}
.y11{bottom:2495.866277pt;}
.y10{bottom:2560.860065pt;}
.yf{bottom:2625.853854pt;}
.y29{bottom:2730.411057pt;}
.y2d{bottom:2759.482717pt;}
.ye{bottom:2774.132682pt;}
.y32{bottom:2777.646950pt;}
.y28{bottom:2786.405705pt;}
.y2c{bottom:2805.478321pt;}
.yd{bottom:2812.129050pt;}
.y31{bottom:2817.643128pt;}
.y27{bottom:2842.400354pt;}
.yc{bottom:2850.125419pt;}
.y2b{bottom:2851.473925pt;}
.y30{bottom:2857.639305pt;}
.yb{bottom:2888.121788pt;}
.y2a{bottom:2897.469529pt;}
.y2f{bottom:2897.635483pt;}
.y26{bottom:2898.395003pt;}
.y25{bottom:2954.389651pt;}
.y2e{bottom:2973.981718pt;}
.y1d{bottom:3043.484871pt;}
.y1c{bottom:3075.481813pt;}
.y1f{bottom:3115.415012pt;}
.y1b{bottom:3119.497700pt;}
.y1e{bottom:3147.411954pt;}
.y1a{bottom:3151.494642pt;}
.y22{bottom:3401.616768pt;}
.y21{bottom:3438.613232pt;}
.y20{bottom:3460.664862pt;}
.y24{bottom:3565.075573pt;}
.y23{bottom:3565.147285pt;}
.y36{bottom:3656.403812pt;}
.y38{bottom:3673.742590pt;}
.y35{bottom:3702.399416pt;}
.y37{bottom:3723.105628pt;}
.y19{bottom:3733.635158pt;}
.y33{bottom:3764.436464pt;}
.y34{bottom:3798.360473pt;}
.y18{bottom:3889.198477pt;}
.y17{bottom:4001.187774pt;}
.h23{height:20.159999pt;}
.h2c{height:21.119999pt;}
.h2{height:40.319998pt;}
.h24{height:43.963652pt;}
.h27{height:44.799998pt;}
.h2b{height:44.863329pt;}
.h25{height:45.119998pt;}
.h2d{height:46.553707pt;}
.h8{height:46.717908pt;}
.h1a{height:63.679111pt;}
.h5{height:66.435033pt;}
.h1f{height:75.199997pt;}
.ha{height:81.693792pt;}
.h17{height:87.002242pt;}
.h18{height:87.241259pt;}
.h3{height:90.293475pt;}
.h2a{height:93.139099pt;}
.hd{height:94.365381pt;}
.h29{height:95.768147pt;}
.he{height:95.824762pt;}
.hf{height:96.088017pt;}
.h15{height:97.047691pt;}
.h16{height:97.314305pt;}
.h1c{height:97.928141pt;}
.h26{height:101.066817pt;}
.h1d{height:106.068418pt;}
.h1e{height:108.577826pt;}
.h14{height:116.788838pt;}
.h11{height:119.910543pt;}
.h7{height:121.669608pt;}
.h2e{height:125.046049pt;}
.h21{height:128.639995pt;}
.hb{height:136.234180pt;}
.h19{height:141.548072pt;}
.h1b{height:142.791470pt;}
.h22{height:142.894526pt;}
.h13{height:145.829623pt;}
.h12{height:145.858537pt;}
.h20{height:166.728139pt;}
.h10{height:174.073817pt;}
.h6{height:240.319990pt;}
.h28{height:257.599989pt;}
.hc{height:275.300492pt;}
.h4{height:340.159986pt;}
.h1{height:4534.666667pt;}
.h9{height:4534.999811pt;}
.h0{height:4534.999917pt;}
.w8{width:9.280000pt;}
.wc{width:87.679996pt;}
.w2{width:152.639994pt;}
.w1{width:157.439993pt;}
.wa{width:170.559993pt;}
.w9{width:175.999993pt;}
.wb{width:482.559980pt;}
.w6{width:565.439976pt;}
.w7{width:668.159972pt;}
.w4{width:1043.199957pt;}
.w3{width:1259.519948pt;}
.w5{width:3401.919858pt;}
.w0{width:3402.000000pt;}
.x0{left:0.000000pt;}
.x33{left:43.457328pt;}
.x6{left:54.171639pt;}
.xb{left:118.255736pt;}
.x5{left:120.639995pt;}
.x37{left:124.118011pt;}
.xd{left:236.154365pt;}
.x1a{left:254.724521pt;}
.x10{left:273.101656pt;}
.xf{left:332.533476pt;}
.x9{left:350.653950pt;}
.x2a{left:351.976384pt;}
.x8{left:373.349704pt;}
.x3{left:410.879983pt;}
.x15{left:565.013896pt;}
.x1{left:571.839976pt;}
.x2f{left:587.198160pt;}
.x2e{left:600.049978pt;}
.x12{left:752.760520pt;}
.x32{left:791.999967pt;}
.x31{left:813.759966pt;}
.x19{left:859.577692pt;}
.x11{left:876.186224pt;}
.x7{left:895.356676pt;}
.xc{left:902.590673pt;}
.x4{left:907.415253pt;}
.x29{left:932.981977pt;}
.x27{left:948.802997pt;}
.x2{left:1012.479958pt;}
.x25{left:1048.495124pt;}
.x24{left:1059.316212pt;}
.x28{left:1186.708143pt;}
.x26{left:1197.466732pt;}
.x14{left:1389.111625pt;}
.x13{left:1422.014730pt;}
.x34{left:1425.919941pt;}
.xe{left:1716.867896pt;}
.x2c{left:1745.927255pt;}
.x2b{left:1790.504309pt;}
.x30{left:1794.331637pt;}
.x38{left:1953.560079pt;}
.x35{left:1956.799918pt;}
.x1b{left:2042.012051pt;}
.x1d{left:2042.902591pt;}
.x1c{left:2048.480183pt;}
.x1e{left:2073.477794pt;}
.x18{left:2139.638343pt;}
.x16{left:2179.359128pt;}
.x20{left:2332.117928pt;}
.x22{left:2342.866901pt;}
.x17{left:2349.202271pt;}
.x21{left:2359.490312pt;}
.x23{left:2399.345878pt;}
.x1f{left:2454.449274pt;}
.x39{left:2469.439897pt;}
.x2d{left:2740.052078pt;}
.xa{left:2773.261772pt;}
.x36{left:2776.639884pt;}
.x3a{left:2780.401452pt;}
.x3b{left:2813.304558pt;}
}




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