
    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_9ec9a9c5e0b7e156fb693ba3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_376279b1400853f1b29396d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887000;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_57b3ec4e901fa18c404a5ccc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ea027ad95b2f64a8efae17f6.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_c380e99121db1c0149a2aba2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_ad3cb41f84753924a4a08d55.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.670000;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_63dcfdc45d1f92194caf812f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_0c54c8c8aeccc1486c6e54a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_e1c0f8c0559166eeab753cca.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a6fcc2dc2da0e3f4483dd604.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7d40c0117cdd6567adf5ad5e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_12acb99709491e69ee16eb2e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a343a6dd044b6a9b01a91de6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_294b215f74446ccce0ee8ce1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.850000;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:fff;src:url('chunks/assets/font_19c282929189c077532babde.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_f9aeb759bbbff13683d7d97e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.693000;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);}
.v5{vertical-align:-10.398000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:6.696000px;}
.vb{vertical-align:9.822000px;}
.v8{vertical-align:16.512000px;}
.v7{vertical-align:27.324000px;}
.vc{vertical-align:37.140000px;}
.v3{vertical-align:44.898000px;}
.v6{vertical-align:46.254000px;}
.v2{vertical-align:49.842000px;}
.va{vertical-align:51.012000px;}
.v4{vertical-align:123.960000px;}
.ls1{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.000511px;}
.lsa{letter-spacing:0.000843px;}
.ls32{letter-spacing:0.001289px;}
.ls2e{letter-spacing:0.001591px;}
.ls1c{letter-spacing:0.002700px;}
.ls7{letter-spacing:0.002706px;}
.ls31{letter-spacing:0.002877px;}
.lsc{letter-spacing:0.003239px;}
.ls30{letter-spacing:0.003242px;}
.ls4{letter-spacing:0.004344px;}
.ls18{letter-spacing:0.005972px;}
.ls21{letter-spacing:0.006843px;}
.ls36{letter-spacing:0.007289px;}
.ls1f{letter-spacing:0.242692px;}
.ls17{letter-spacing:0.320712px;}
.ls12{letter-spacing:0.326712px;}
.ls16{letter-spacing:1.820137px;}
.ls10{letter-spacing:2.342156px;}
.ls3a{letter-spacing:2.348156px;}
.ls35{letter-spacing:2.349242px;}
.ls2f{letter-spacing:2.984915px;}
.ls34{letter-spacing:2.989289px;}
.ls14{letter-spacing:3.638154px;}
.ls3{letter-spacing:3.771239px;}
.lsf{letter-spacing:7.131229px;}
.ls9{letter-spacing:10.907412px;}
.ls15{letter-spacing:10.910706px;}
.ls11{letter-spacing:10.912890px;}
.ls37{letter-spacing:13.256156px;}
.ls13{letter-spacing:14.540712px;}
.lse{letter-spacing:14.543412px;}
.ls20{letter-spacing:14.546706px;}
.ls2d{letter-spacing:14.549412px;}
.ls1a{letter-spacing:16.988706px;}
.ls19{letter-spacing:16.988712px;}
.ls38{letter-spacing:17.532499px;}
.lsd{letter-spacing:18.179412px;}
.ls1e{letter-spacing:18.182706px;}
.ls2c{letter-spacing:18.185412px;}
.ls3b{letter-spacing:20.702706px;}
.ls1b{letter-spacing:21.818706px;}
.ls24{letter-spacing:22.031412px;}
.ls23{letter-spacing:22.034706px;}
.ls39{letter-spacing:22.053229px;}
.ls3c{letter-spacing:22.714332px;}
.ls6{letter-spacing:22.769412px;}
.ls5{letter-spacing:22.772706px;}
.ls2b{letter-spacing:23.491591px;}
.ls8{letter-spacing:24.572706px;}
.lsb{letter-spacing:25.994706px;}
.ls26{letter-spacing:26.570156px;}
.ls3e{letter-spacing:26.726706px;}
.ls3f{letter-spacing:27.566706px;}
.ls40{letter-spacing:27.770706px;}
.ls2a{letter-spacing:28.221229px;}
.ls3d{letter-spacing:28.556706px;}
.ls25{letter-spacing:31.365229px;}
.ls0{letter-spacing:32.727300px;}
.ls2{letter-spacing:32.729412px;}
.ls27{letter-spacing:34.466156px;}
.ls28{letter-spacing:35.889239px;}
.ls29{letter-spacing:38.727229px;}
.ls22{letter-spacing:65.450712px;}
.ls1d{letter-spacing:447.470712px;}
.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;}
}
.ws15{word-spacing:-54.785500px;}
.ws12{word-spacing:-48.174586px;}
.ws16{word-spacing:-47.454585px;}
.ws6f{word-spacing:-47.324343px;}
.ws41{word-spacing:-42.637126px;}
.ws5{word-spacing:-38.937826px;}
.ws59{word-spacing:-32.727300px;}
.ws4a{word-spacing:-31.771663px;}
.ws5d{word-spacing:-31.706208px;}
.ws11{word-spacing:-31.287299px;}
.ws53{word-spacing:-24.440748px;}
.ws49{word-spacing:-20.975024px;}
.wsaa{word-spacing:-18.196379px;}
.ws96{word-spacing:-18.065470px;}
.ws74{word-spacing:-17.826828px;}
.ws73{word-spacing:-17.803651px;}
.ws1f{word-spacing:-17.607287px;}
.ws2c{word-spacing:-17.541833px;}
.wsb1{word-spacing:-17.149105px;}
.ws97{word-spacing:-17.018196px;}
.wsa6{word-spacing:-16.494559px;}
.wsa2{word-spacing:-16.429105px;}
.ws58{word-spacing:-16.167286px;}
.wsb3{word-spacing:-15.905468px;}
.ws50{word-spacing:-15.774559px;}
.ws4f{word-spacing:-15.752894px;}
.ws24{word-spacing:-15.709104px;}
.ws8{word-spacing:-15.541656px;}
.ws98{word-spacing:-15.447286px;}
.ws27{word-spacing:-14.858194px;}
.ws3{word-spacing:-14.704798px;}
.ws18{word-spacing:-14.530921px;}
.ws9{word-spacing:-14.405920px;}
.ws19{word-spacing:-14.400012px;}
.ws4{word-spacing:-14.346144px;}
.ws57{word-spacing:-14.334557px;}
.ws2e{word-spacing:-14.138194px;}
.wsb4{word-spacing:-14.072739px;}
.ws7b{word-spacing:-14.007284px;}
.ws3a{word-spacing:-13.810921px;}
.ws7a{word-spacing:-13.680011px;}
.wsb6{word-spacing:-13.418193px;}
.ws2d{word-spacing:-13.090920px;}
.wsa4{word-spacing:-13.025465px;}
.ws26{word-spacing:-12.894556px;}
.ws8f{word-spacing:-12.763647px;}
.ws5f{word-spacing:-12.698192px;}
.ws80{word-spacing:-12.501829px;}
.ws5e{word-spacing:-12.455676px;}
.ws5b{word-spacing:-12.436374px;}
.wsb7{word-spacing:-12.370919px;}
.ws79{word-spacing:-12.305465px;}
.ws86{word-spacing:-12.240010px;}
.ws4e{word-spacing:-12.177902px;}
.wsd{word-spacing:-12.134447px;}
.ws4d{word-spacing:-12.109101px;}
.ws77{word-spacing:-12.043646px;}
.ws36{word-spacing:-11.978192px;}
.ws1e{word-spacing:-11.912737px;}
.ws54{word-spacing:-11.809259px;}
.ws55{word-spacing:-11.781828px;}
.ws35{word-spacing:-11.716373px;}
.ws65{word-spacing:-11.685239px;}
.ws66{word-spacing:-11.650919px;}
.ws38{word-spacing:-11.520010px;}
.ws33{word-spacing:-11.454555px;}
.ws9b{word-spacing:-10.996373px;}
.ws75{word-spacing:-10.938247px;}
.ws72{word-spacing:-10.933705px;}
.wsa0{word-spacing:-10.932247px;}
.ws1c{word-spacing:-10.930918px;}
.ws52{word-spacing:-10.913514px;}
.ws71{word-spacing:-10.865464px;}
.ws68{word-spacing:-10.669100px;}
.ws76{word-spacing:-10.538191px;}
.ws3b{word-spacing:-10.080008px;}
.ws7e{word-spacing:-10.014554px;}
.wsa8{word-spacing:-9.752735px;}
.ws2f{word-spacing:-9.490917px;}
.ws28{word-spacing:-9.294553px;}
.ws1b{word-spacing:-9.163644px;}
.ws89{word-spacing:-8.967280px;}
.ws82{word-spacing:-8.836371px;}
.ws31{word-spacing:-8.770916px;}
.ws56{word-spacing:-8.574553px;}
.ws5a{word-spacing:-8.509098px;}
.ws91{word-spacing:-8.443643px;}
.ws1a{word-spacing:-8.247280px;}
.ws3f{word-spacing:-8.181825px;}
.wsae{word-spacing:-7.854552px;}
.wsba{word-spacing:-7.789097px;}
.ws92{word-spacing:-7.592734px;}
.wsa{word-spacing:-7.591501px;}
.wsac{word-spacing:-7.527279px;}
.ws20{word-spacing:-7.396370px;}
.ws81{word-spacing:-7.176530px;}
.ws23{word-spacing:-7.134551px;}
.ws39{word-spacing:-6.938188px;}
.ws25{word-spacing:-6.872733px;}
.ws45{word-spacing:-6.746894px;}
.ws46{word-spacing:-6.741824px;}
.ws2a{word-spacing:-6.545460px;}
.ws4c{word-spacing:-6.283642px;}
.ws64{word-spacing:-6.218187px;}
.ws7{word-spacing:-6.156887px;}
.ws29{word-spacing:-6.152732px;}
.ws37{word-spacing:-6.087278px;}
.ws8a{word-spacing:-6.060126px;}
.ws8c{word-spacing:-6.021823px;}
.ws8b{word-spacing:-6.018247px;}
.wsb0{word-spacing:-5.825459px;}
.ws34{word-spacing:-5.694550px;}
.ws2b{word-spacing:-5.301823px;}
.ws9e{word-spacing:-5.170913px;}
.ws7d{word-spacing:-5.105459px;}
.wsab{word-spacing:-4.974550px;}
.wsad{word-spacing:-4.320004px;}
.ws30{word-spacing:-4.254549px;}
.ws84{word-spacing:-4.189094px;}
.ws21{word-spacing:-4.058185px;}
.ws95{word-spacing:-3.730912px;}
.wsb8{word-spacing:-3.700702px;}
.ws4b{word-spacing:-3.665458px;}
.ws32{word-spacing:-3.600003px;}
.ws8e{word-spacing:-3.338185px;}
.wsc{word-spacing:-3.168107px;}
.ws99{word-spacing:-2.814548px;}
.wsb{word-spacing:-2.749678px;}
.ws3e{word-spacing:-2.029093px;}
.ws67{word-spacing:-1.767274px;}
.ws63{word-spacing:-1.145130px;}
.ws62{word-spacing:-1.112728px;}
.ws3d{word-spacing:-0.785455px;}
.ws60{word-spacing:-0.656555px;}
.ws61{word-spacing:-0.589091px;}
.wsf{word-spacing:-0.086077px;}
.ws40{word-spacing:-0.065455px;}
.wse{word-spacing:-0.059776px;}
.ws42{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.ws13{word-spacing:0.000000px;}
.ws7c{word-spacing:0.850910px;}
.ws94{word-spacing:1.178183px;}
.ws44{word-spacing:10.865464px;}
.ws6d{word-spacing:13.842151px;}
.ws70{word-spacing:13.848151px;}
.wsa9{word-spacing:16.690923px;}
.ws6a{word-spacing:17.482622px;}
.ws69{word-spacing:17.487942px;}
.wsb2{word-spacing:17.607287px;}
.ws43{word-spacing:18.100285px;}
.ws51{word-spacing:18.106285px;}
.wsa5{word-spacing:18.523652px;}
.wsa1{word-spacing:18.720016px;}
.wsb5{word-spacing:20.421835px;}
.ws6e{word-spacing:21.097146px;}
.ws6c{word-spacing:21.118622px;}
.ws6b{word-spacing:21.123942px;}
.ws48{word-spacing:21.125451px;}
.wsb9{word-spacing:21.403654px;}
.wsa3{word-spacing:22.647292px;}
.ws5c{word-spacing:23.250403px;}
.ws2{word-spacing:23.312640px;}
.wsaf{word-spacing:23.367292px;}
.ws1{word-spacing:23.384371px;}
.ws9c{word-spacing:24.677451px;}
.ws47{word-spacing:24.761451px;}
.ws9a{word-spacing:24.938203px;}
.ws14{word-spacing:25.003657px;}
.wsbb{word-spacing:26.181840px;}
.wsa7{word-spacing:26.378204px;}
.ws1d{word-spacing:26.827469px;}
.ws9f{word-spacing:26.901841px;}
.ws88{word-spacing:27.294568px;}
.ws90{word-spacing:27.883660px;}
.ws7f{word-spacing:28.222018px;}
.ws0{word-spacing:31.091012px;}
.ws9d{word-spacing:31.614572px;}
.ws22{word-spacing:32.001243px;}
.ws3c{word-spacing:32.192873px;}
.ws83{word-spacing:32.792755px;}
.ws8d{word-spacing:33.709119px;}
.ws85{word-spacing:37.440031px;}
.ws93{word-spacing:38.945487px;}
.ws10{word-spacing:60.480050px;}
.ws78{word-spacing:65.385009px;}
.ws87{word-spacing:80.625869px;}
.ws17{word-spacing:96.750773px;}
._f{margin-left:-39.992761px;}
._24{margin-left:-38.094577px;}
._1a{margin-left:-34.560029px;}
._e{margin-left:-32.727300px;}
._11{margin-left:-30.894571px;}
._12{margin-left:-13.745466px;}
._1b{margin-left:-11.978192px;}
._10{margin-left:-10.930918px;}
._26{margin-left:-9.425462px;}
._1{margin-left:-8.160100px;}
._2{margin-left:-5.881958px;}
._c{margin-left:-4.717973px;}
._0{margin-left:-2.685602px;}
._5{margin-left:-1.673717px;}
._4{width:1.673717px;}
._3{width:2.685602px;}
._2c{width:3.694230px;}
._1e{width:6.021823px;}
._20{width:8.901826px;}
._2d{width:12.134008px;}
._36{width:14.553491px;}
._6{width:16.258963px;}
._2e{width:18.318011px;}
._27{width:19.390412px;}
._17{width:20.943508px;}
._16{width:22.714710px;}
._30{width:23.794281px;}
._8{width:25.579657px;}
._18{width:26.705477px;}
._b{width:28.393410px;}
._22{width:30.443594px;}
._33{width:31.626514px;}
._9{width:33.020081px;}
._14{width:34.167301px;}
._2f{width:36.852904px;}
._7{width:37.957506px;}
._32{width:39.151100px;}
._34{width:40.802046px;}
._2a{width:42.087308px;}
._29{width:43.893898px;}
._a{width:48.179134px;}
._35{width:49.685933px;}
._1c{width:60.545505px;}
._13{width:62.181870px;}
._31{width:65.044659px;}
._15{width:66.894601px;}
._28{width:80.697600px;}
._19{width:94.909170px;}
._2b{width:96.836850px;}
._21{width:1404.262988px;}
._23{width:1585.506776px;}
._25{width:1616.187072px;}
._1f{width:1785.433227px;}
._1d{width:1807.456333px;}
._d{width:2156.834300px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y28{bottom:63.168000px;}
.y27{bottom:108.000000px;}
.yad{bottom:120.216000px;}
.yf1{bottom:123.456000px;}
.y26{bottom:128.323500px;}
.y84{bottom:135.597000px;}
.yf0{bottom:143.779500px;}
.y25{bottom:148.647000px;}
.yac{bottom:153.988500px;}
.y83{bottom:155.922000px;}
.ycd{bottom:165.342000px;}
.y24{bottom:168.972000px;}
.yef{bottom:177.553500px;}
.y82{bottom:179.401500px;}
.ycc{bottom:185.665500px;}
.yab{bottom:187.762500px;}
.yee{bottom:197.877000px;}
.y81{bottom:201.697500px;}
.y23{bottom:205.659000px;}
.ycb{bottom:205.989000px;}
.y62{bottom:207.069000px;}
.y48{bottom:225.889500px;}
.y22{bottom:225.982500px;}
.y61{bottom:227.392500px;}
.yed{bottom:228.769500px;}
.yaa{bottom:230.983500px;}
.y80{bottom:234.879000px;}
.yca{bottom:236.881500px;}
.y21{bottom:246.306000px;}
.y60{bottom:247.717500px;}
.y47{bottom:259.663500px;}
.ya9{bottom:264.756000px;}
.y7f{bottom:265.770000px;}
.y20{bottom:266.631000px;}
.y5f{bottom:268.041000px;}
.yec{bottom:272.587500px;}
.yc9{bottom:274.006500px;}
.y46{bottom:279.987000px;}
.y5e{bottom:288.364500px;}
.yeb{bottom:292.911000px;}
.ya8{bottom:298.530000px;}
.y1f{bottom:303.318000px;}
.y7e{bottom:309.589500px;}
.y45{bottom:313.759500px;}
.y5d{bottom:319.255500px;}
.y1e{bottom:323.641500px;}
.yc8{bottom:325.564500px;}
.yea{bottom:326.685000px;}
.y7d{bottom:329.913000px;}
.ya7{bottom:332.304000px;}
.y44{bottom:334.084500px;}
.y1d{bottom:343.965000px;}
.yc7{bottom:345.888000px;}
.ye9{bottom:347.008500px;}
.y7c{bottom:350.236500px;}
.y5c{bottom:363.075000px;}
.y1c{bottom:364.288500px;}
.yc6{bottom:366.213000px;}
.y43{bottom:367.857000px;}
.y7b{bottom:370.561500px;}
.ya5{bottom:371.395500px;}
.ya6{bottom:373.623000px;}
.ya4{bottom:375.525000px;}
.ye8{bottom:380.782500px;}
.y5b{bottom:383.398500px;}
.yc5{bottom:386.536500px;}
.y42{bottom:388.180500px;}
.y1b{bottom:400.977000px;}
.ye7{bottom:401.106000px;}
.y5a{bottom:403.722000px;}
.y7a{bottom:404.334000px;}
.ya2{bottom:408.060000px;}
.ya3{bottom:410.286000px;}
.ya1{bottom:412.188000px;}
.yc4{bottom:417.427500px;}
.y41{bottom:419.073000px;}
.y1a{bottom:421.300500px;}
.y59{bottom:424.047000px;}
.y109{bottom:431.874000px;}
.ye6{bottom:434.878500px;}
.y79{bottom:438.108000px;}
.y19{bottom:441.624000px;}
.ya0{bottom:449.503500px;}
.y108{bottom:452.197500px;}
.y58{bottom:454.938000px;}
.ye5{bottom:455.203500px;}
.yc3{bottom:461.247000px;}
.y40{bottom:462.891000px;}
.y78{bottom:471.880500px;}
.y18{bottom:478.311000px;}
.yc2{bottom:481.570500px;}
.y9f{bottom:483.276000px;}
.y107{bottom:485.970000px;}
.ye4{bottom:486.094500px;}
.y3f{bottom:496.665000px;}
.y17{bottom:498.634500px;}
.y57{bottom:498.757500px;}
.yc1{bottom:501.894000px;}
.y77{bottom:505.654500px;}
.y106{bottom:506.295000px;}
.y9e{bottom:513.313500px;}
.y3e{bottom:516.988500px;}
.y16{bottom:518.959500px;}
.yc0{bottom:522.217500px;}
.ye3{bottom:529.914000px;}
.y56{bottom:532.530000px;}
.y76{bottom:535.692000px;}
.y15{bottom:539.283000px;}
.y105{bottom:540.067500px;}
.ye2{bottom:550.237500px;}
.y3d{bottom:550.762500px;}
.ybf{bottom:553.110000px;}
.y9d{bottom:553.962000px;}
.y104{bottom:560.391000px;}
.y55{bottom:566.304000px;}
.ye1{bottom:570.561000px;}
.y3c{bottom:571.086000px;}
.y14{bottom:575.970000px;}
.y75{bottom:576.339000px;}
.y9c{bottom:584.853000px;}
.y54{bottom:586.627500px;}
.ye0{bottom:590.884500px;}
.y103{bottom:594.165000px;}
.y13{bottom:596.293500px;}
.y74{bottom:596.662500px;}
.ybe{bottom:596.929500px;}
.y53{bottom:606.951000px;}
.y3b{bottom:609.342000px;}
.ydf{bottom:611.209500px;}
.y102{bottom:614.488500px;}
.y12{bottom:616.618500px;}
.ybd{bottom:617.253000px;}
.y73{bottom:626.700000px;}
.y9b{bottom:628.672500px;}
.y3a{bottom:629.667000px;}
.y11{bottom:636.942000px;}
.y52{bottom:637.843500px;}
.yde{bottom:647.737500px;}
.y101{bottom:648.262500px;}
.y9a{bottom:648.996000px;}
.y39{bottom:649.990500px;}
.ybc{bottom:651.025500px;}
.y10{bottom:657.265500px;}
.y72{bottom:667.348500px;}
.y100{bottom:668.586000px;}
.y99{bottom:669.319500px;}
.y38{bottom:680.881500px;}
.y51{bottom:681.661500px;}
.ybb{bottom:684.799500px;}
.y71{bottom:687.672000px;}
.yf{bottom:693.952500px;}
.ydd{bottom:699.294000px;}
.yff{bottom:702.358500px;}
.yba{bottom:705.123000px;}
.y98{bottom:705.847500px;}
.y70{bottom:707.995500px;}
.y50{bottom:715.435500px;}
.ydc{bottom:719.619000px;}
.yfe{bottom:722.683500px;}
.y37{bottom:724.701000px;}
.y4f{bottom:735.759000px;}
.y6f{bottom:738.888000px;}
.yb9{bottom:738.897000px;}
.ydb{bottom:739.942500px;}
.y36{bottom:745.024500px;}
.ye{bottom:745.222500px;}
.yfd{bottom:756.456000px;}
.y97{bottom:757.405500px;}
.yb8{bottom:759.220500px;}
.yd{bottom:763.155000px;}
.y4e{bottom:769.533000px;}
.yfc{bottom:776.779500px;}
.y96{bottom:777.729000px;}
.yc{bottom:781.089000px;}
.y6e{bottom:782.706000px;}
.yda{bottom:783.163500px;}
.y35{bottom:783.280500px;}
.y4d{bottom:789.856500px;}
.yb7{bottom:790.111500px;}
.y95{bottom:798.052500px;}
.yb{bottom:799.021500px;}
.y6d{bottom:803.029500px;}
.yd9{bottom:803.487000px;}
.y4c{bottom:810.180000px;}
.yfb{bottom:813.309000px;}
.ya{bottom:816.954000px;}
.y34{bottom:817.054500px;}
.y94{bottom:818.377500px;}
.y6c{bottom:823.354500px;}
.yd8{bottom:823.810500px;}
.yb6{bottom:833.931000px;}
.y9{bottom:834.886500px;}
.y93{bottom:838.701000px;}
.y4b{bottom:841.072500px;}
.y33{bottom:847.947000px;}
.y8{bottom:852.819000px;}
.yb5{bottom:854.254500px;}
.yd7{bottom:854.703000px;}
.yfa{bottom:856.411500px;}
.y92{bottom:859.024500px;}
.y6b{bottom:859.882500px;}
.y7{bottom:870.751500px;}
.yb4{bottom:874.578000px;}
.y91{bottom:879.348000px;}
.y4a{bottom:884.890500px;}
.y6{bottom:888.685500px;}
.y32{bottom:891.765000px;}
.yd6{bottom:898.521000px;}
.y90{bottom:899.671500px;}
.y49{bottom:905.215500px;}
.y5{bottom:906.618000px;}
.yf9{bottom:907.969500px;}
.yb3{bottom:911.106000px;}
.y6a{bottom:911.439000px;}
.yd5{bottom:918.846000px;}
.y31{bottom:925.539000px;}
.yf8{bottom:928.293000px;}
.y8f{bottom:930.564000px;}
.y69{bottom:931.764000px;}
.y4{bottom:932.058000px;}
.yd4{bottom:939.169500px;}
.y30{bottom:945.862500px;}
.yf7{bottom:948.616500px;}
.yb2{bottom:962.664000px;}
.y68{bottom:965.536500px;}
.yf6{bottom:968.941500px;}
.y8e{bottom:974.383500px;}
.y2f{bottom:976.753500px;}
.yd3{bottom:982.390500px;}
.yb1{bottom:982.987500px;}
.yf5{bottom:989.265000px;}
.y3{bottom:990.637500px;}
.y8d{bottom:994.707000px;}
.y67{bottom:999.310500px;}
.yd2{bottom:1002.714000px;}
.yb0{bottom:1003.312500px;}
.y8c{bottom:1015.030500px;}
.yf4{bottom:1020.156000px;}
.y2e{bottom:1020.573000px;}
.yd1{bottom:1023.037500px;}
.yaf{bottom:1023.636000px;}
.y2{bottom:1027.326000px;}
.y66{bottom:1033.083000px;}
.y8b{bottom:1035.354000px;}
.y2d{bottom:1040.896500px;}
.y65{bottom:1053.408000px;}
.yd0{bottom:1053.930000px;}
.y8a{bottom:1055.677500px;}
.y2c{bottom:1061.220000px;}
.yf3{bottom:1063.975500px;}
.yae{bottom:1066.857000px;}
.y1{bottom:1072.792500px;}
.y2b{bottom:1081.545000px;}
.yf2{bottom:1084.299000px;}
.y89{bottom:1086.475500px;}
.y64{bottom:1087.180500px;}
.y87{bottom:1094.580000px;}
.ycf{bottom:1097.748000px;}
.y2a{bottom:1101.868500px;}
.y85{bottom:1103.940000px;}
.y63{bottom:1107.504000px;}
.yce{bottom:1118.073000px;}
.y88{bottom:1119.829500px;}
.y86{bottom:1121.479500px;}
.y29{bottom:1138.396500px;}
.he{height:2.391024px;}
.h12{height:32.661470px;}
.h4{height:41.842920px;}
.h5{height:44.831700px;}
.h7{height:45.818220px;}
.hb{height:46.210948px;}
.h8{height:49.090950px;}
.h3{height:49.781453px;}
.hf{height:52.227024px;}
.ha{height:52.233024px;}
.h9{height:53.798400px;}
.h13{height:59.979470px;}
.h10{height:59.985470px;}
.h6{height:64.557900px;}
.h2{height:72.201388px;}
.h11{height:86.877450px;}
.h14{height:86.883450px;}
.hc{height:93.988950px;}
.hd{height:126.351024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:108.000000px;}
.x16{left:116.182500px;}
.xa{left:127.999500px;}
.x8{left:132.546000px;}
.x17{left:141.636000px;}
.x6{left:148.909500px;}
.x5{left:171.325500px;}
.x1{left:181.344000px;}
.x13{left:226.257000px;}
.x14{left:274.894500px;}
.x15{left:297.771000px;}
.xf{left:301.290000px;}
.xb{left:341.284500px;}
.x10{left:351.127500px;}
.xd{left:352.222500px;}
.xe{left:353.497500px;}
.x12{left:357.906000px;}
.x11{left:364.410000px;}
.x3{left:373.905000px;}
.xc{left:386.365500px;}
.x2{left:388.173000px;}
.x4{left:413.580000px;}
.x9{left:442.366500px;}
@media print{
.v5{vertical-align:-9.242667pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.952000pt;}
.vb{vertical-align:8.730667pt;}
.v8{vertical-align:14.677333pt;}
.v7{vertical-align:24.288000pt;}
.vc{vertical-align:33.013333pt;}
.v3{vertical-align:39.909333pt;}
.v6{vertical-align:41.114667pt;}
.v2{vertical-align:44.304000pt;}
.va{vertical-align:45.344000pt;}
.v4{vertical-align:110.186667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.000455pt;}
.lsa{letter-spacing:0.000749pt;}
.ls32{letter-spacing:0.001146pt;}
.ls2e{letter-spacing:0.001414pt;}
.ls1c{letter-spacing:0.002400pt;}
.ls7{letter-spacing:0.002405pt;}
.ls31{letter-spacing:0.002557pt;}
.lsc{letter-spacing:0.002879pt;}
.ls30{letter-spacing:0.002881pt;}
.ls4{letter-spacing:0.003861pt;}
.ls18{letter-spacing:0.005308pt;}
.ls21{letter-spacing:0.006082pt;}
.ls36{letter-spacing:0.006479pt;}
.ls1f{letter-spacing:0.215727pt;}
.ls17{letter-spacing:0.285077pt;}
.ls12{letter-spacing:0.290411pt;}
.ls16{letter-spacing:1.617899pt;}
.ls10{letter-spacing:2.081916pt;}
.ls3a{letter-spacing:2.087250pt;}
.ls35{letter-spacing:2.088215pt;}
.ls2f{letter-spacing:2.653258pt;}
.ls34{letter-spacing:2.657146pt;}
.ls14{letter-spacing:3.233914pt;}
.ls3{letter-spacing:3.352213pt;}
.lsf{letter-spacing:6.338870pt;}
.ls9{letter-spacing:9.695477pt;}
.ls15{letter-spacing:9.698405pt;}
.ls11{letter-spacing:9.700347pt;}
.ls37{letter-spacing:11.783250pt;}
.ls13{letter-spacing:12.925077pt;}
.lse{letter-spacing:12.927477pt;}
.ls20{letter-spacing:12.930405pt;}
.ls2d{letter-spacing:12.932811pt;}
.ls1a{letter-spacing:15.101072pt;}
.ls19{letter-spacing:15.101077pt;}
.ls38{letter-spacing:15.584444pt;}
.lsd{letter-spacing:16.159477pt;}
.ls1e{letter-spacing:16.162405pt;}
.ls2c{letter-spacing:16.164811pt;}
.ls3b{letter-spacing:18.402405pt;}
.ls1b{letter-spacing:19.394405pt;}
.ls24{letter-spacing:19.583477pt;}
.ls23{letter-spacing:19.586405pt;}
.ls39{letter-spacing:19.602870pt;}
.ls3c{letter-spacing:20.190517pt;}
.ls6{letter-spacing:20.239477pt;}
.ls5{letter-spacing:20.242405pt;}
.ls2b{letter-spacing:20.881414pt;}
.ls8{letter-spacing:21.842405pt;}
.lsb{letter-spacing:23.106405pt;}
.ls26{letter-spacing:23.617916pt;}
.ls3e{letter-spacing:23.757072pt;}
.ls3f{letter-spacing:24.503739pt;}
.ls40{letter-spacing:24.685072pt;}
.ls2a{letter-spacing:25.085537pt;}
.ls3d{letter-spacing:25.383739pt;}
.ls25{letter-spacing:27.880203pt;}
.ls0{letter-spacing:29.090933pt;}
.ls2{letter-spacing:29.092811pt;}
.ls27{letter-spacing:30.636583pt;}
.ls28{letter-spacing:31.901546pt;}
.ls29{letter-spacing:34.424203pt;}
.ls22{letter-spacing:58.178411pt;}
.ls1d{letter-spacing:397.751744pt;}
.ws15{word-spacing:-48.698222pt;}
.ws12{word-spacing:-42.821854pt;}
.ws16{word-spacing:-42.181853pt;}
.ws6f{word-spacing:-42.066082pt;}
.ws41{word-spacing:-37.899668pt;}
.ws5{word-spacing:-34.611401pt;}
.ws59{word-spacing:-29.090933pt;}
.ws4a{word-spacing:-28.241478pt;}
.ws5d{word-spacing:-28.183296pt;}
.ws11{word-spacing:-27.810932pt;}
.ws53{word-spacing:-21.725109pt;}
.ws49{word-spacing:-18.644465pt;}
.wsaa{word-spacing:-16.174559pt;}
.ws96{word-spacing:-16.058195pt;}
.ws74{word-spacing:-15.846070pt;}
.ws73{word-spacing:-15.825468pt;}
.ws1f{word-spacing:-15.650922pt;}
.ws2c{word-spacing:-15.592740pt;}
.wsb1{word-spacing:-15.243649pt;}
.ws97{word-spacing:-15.127285pt;}
.wsa6{word-spacing:-14.661830pt;}
.wsa2{word-spacing:-14.603649pt;}
.ws58{word-spacing:-14.370921pt;}
.wsb3{word-spacing:-14.138194pt;}
.ws50{word-spacing:-14.021830pt;}
.ws4f{word-spacing:-14.002573pt;}
.ws24{word-spacing:-13.963648pt;}
.ws8{word-spacing:-13.814805pt;}
.ws98{word-spacing:-13.730921pt;}
.ws27{word-spacing:-13.207284pt;}
.ws3{word-spacing:-13.070931pt;}
.ws18{word-spacing:-12.916374pt;}
.ws9{word-spacing:-12.805262pt;}
.ws19{word-spacing:-12.800011pt;}
.ws4{word-spacing:-12.752128pt;}
.ws57{word-spacing:-12.741829pt;}
.ws2e{word-spacing:-12.567283pt;}
.wsb4{word-spacing:-12.509101pt;}
.ws7b{word-spacing:-12.450919pt;}
.ws3a{word-spacing:-12.276374pt;}
.ws7a{word-spacing:-12.160010pt;}
.wsb6{word-spacing:-11.927283pt;}
.ws2d{word-spacing:-11.636373pt;}
.wsa4{word-spacing:-11.578191pt;}
.ws26{word-spacing:-11.461828pt;}
.ws8f{word-spacing:-11.345464pt;}
.ws5f{word-spacing:-11.287282pt;}
.ws80{word-spacing:-11.112737pt;}
.ws5e{word-spacing:-11.071712pt;}
.ws5b{word-spacing:-11.054555pt;}
.wsb7{word-spacing:-10.996373pt;}
.ws79{word-spacing:-10.938191pt;}
.ws86{word-spacing:-10.880009pt;}
.ws4e{word-spacing:-10.824802pt;}
.wsd{word-spacing:-10.786175pt;}
.ws4d{word-spacing:-10.763645pt;}
.ws77{word-spacing:-10.705463pt;}
.ws36{word-spacing:-10.647282pt;}
.ws1e{word-spacing:-10.589100pt;}
.ws54{word-spacing:-10.497119pt;}
.ws55{word-spacing:-10.472736pt;}
.ws35{word-spacing:-10.414554pt;}
.ws65{word-spacing:-10.386879pt;}
.ws66{word-spacing:-10.356372pt;}
.ws38{word-spacing:-10.240009pt;}
.ws33{word-spacing:-10.181827pt;}
.ws9b{word-spacing:-9.774554pt;}
.ws75{word-spacing:-9.722886pt;}
.ws72{word-spacing:-9.718849pt;}
.wsa0{word-spacing:-9.717553pt;}
.ws1c{word-spacing:-9.716372pt;}
.ws52{word-spacing:-9.700901pt;}
.ws71{word-spacing:-9.658190pt;}
.ws68{word-spacing:-9.483644pt;}
.ws76{word-spacing:-9.367281pt;}
.ws3b{word-spacing:-8.960007pt;}
.ws7e{word-spacing:-8.901826pt;}
.wsa8{word-spacing:-8.669098pt;}
.ws2f{word-spacing:-8.436371pt;}
.ws28{word-spacing:-8.261825pt;}
.ws1b{word-spacing:-8.145461pt;}
.ws89{word-spacing:-7.970916pt;}
.ws82{word-spacing:-7.854552pt;}
.ws31{word-spacing:-7.796370pt;}
.ws56{word-spacing:-7.621825pt;}
.ws5a{word-spacing:-7.563643pt;}
.ws91{word-spacing:-7.505461pt;}
.ws1a{word-spacing:-7.330915pt;}
.ws3f{word-spacing:-7.272733pt;}
.wsae{word-spacing:-6.981824pt;}
.wsba{word-spacing:-6.923642pt;}
.ws92{word-spacing:-6.749097pt;}
.wsa{word-spacing:-6.748001pt;}
.wsac{word-spacing:-6.690915pt;}
.ws20{word-spacing:-6.574551pt;}
.ws81{word-spacing:-6.379138pt;}
.ws23{word-spacing:-6.341823pt;}
.ws39{word-spacing:-6.167278pt;}
.ws25{word-spacing:-6.109096pt;}
.ws45{word-spacing:-5.997239pt;}
.ws46{word-spacing:-5.992732pt;}
.ws2a{word-spacing:-5.818187pt;}
.ws4c{word-spacing:-5.585459pt;}
.ws64{word-spacing:-5.527277pt;}
.ws7{word-spacing:-5.472788pt;}
.ws29{word-spacing:-5.469095pt;}
.ws37{word-spacing:-5.410914pt;}
.ws8a{word-spacing:-5.386779pt;}
.ws8c{word-spacing:-5.352732pt;}
.ws8b{word-spacing:-5.349553pt;}
.wsb0{word-spacing:-5.178186pt;}
.ws34{word-spacing:-5.061822pt;}
.ws2b{word-spacing:-4.712731pt;}
.ws9e{word-spacing:-4.596367pt;}
.ws7d{word-spacing:-4.538186pt;}
.wsab{word-spacing:-4.421822pt;}
.wsad{word-spacing:-3.840003pt;}
.ws30{word-spacing:-3.781821pt;}
.ws84{word-spacing:-3.723639pt;}
.ws21{word-spacing:-3.607276pt;}
.ws95{word-spacing:-3.316366pt;}
.wsb8{word-spacing:-3.289513pt;}
.ws4b{word-spacing:-3.258185pt;}
.ws32{word-spacing:-3.200003pt;}
.ws8e{word-spacing:-2.967275pt;}
.wsc{word-spacing:-2.816095pt;}
.ws99{word-spacing:-2.501820pt;}
.wsb{word-spacing:-2.444158pt;}
.ws3e{word-spacing:-1.803638pt;}
.ws67{word-spacing:-1.570910pt;}
.ws63{word-spacing:-1.017893pt;}
.ws62{word-spacing:-0.989092pt;}
.ws3d{word-spacing:-0.698182pt;}
.ws60{word-spacing:-0.583604pt;}
.ws61{word-spacing:-0.523637pt;}
.wsf{word-spacing:-0.076513pt;}
.ws40{word-spacing:-0.058182pt;}
.wse{word-spacing:-0.053134pt;}
.ws42{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.ws13{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.756364pt;}
.ws94{word-spacing:1.047274pt;}
.ws44{word-spacing:9.658190pt;}
.ws6d{word-spacing:12.304134pt;}
.ws70{word-spacing:12.309467pt;}
.wsa9{word-spacing:14.836376pt;}
.ws6a{word-spacing:15.540109pt;}
.ws69{word-spacing:15.544837pt;}
.wsb2{word-spacing:15.650922pt;}
.ws43{word-spacing:16.089142pt;}
.ws51{word-spacing:16.094475pt;}
.wsa5{word-spacing:16.465468pt;}
.wsa1{word-spacing:16.640014pt;}
.wsb5{word-spacing:18.152742pt;}
.ws6e{word-spacing:18.753018pt;}
.ws6c{word-spacing:18.772109pt;}
.ws6b{word-spacing:18.776837pt;}
.ws48{word-spacing:18.778178pt;}
.wsb9{word-spacing:19.025470pt;}
.wsa3{word-spacing:20.130926pt;}
.ws5c{word-spacing:20.667025pt;}
.ws2{word-spacing:20.722347pt;}
.wsaf{word-spacing:20.770926pt;}
.ws1{word-spacing:20.786108pt;}
.ws9c{word-spacing:21.935512pt;}
.ws47{word-spacing:22.010178pt;}
.ws9a{word-spacing:22.167291pt;}
.ws14{word-spacing:22.225473pt;}
.wsbb{word-spacing:23.272747pt;}
.wsa7{word-spacing:23.447292pt;}
.ws1d{word-spacing:23.846639pt;}
.ws9f{word-spacing:23.912747pt;}
.ws88{word-spacing:24.261838pt;}
.ws90{word-spacing:24.785475pt;}
.ws7f{word-spacing:25.086238pt;}
.ws0{word-spacing:27.636455pt;}
.ws9d{word-spacing:28.101842pt;}
.ws22{word-spacing:28.445549pt;}
.ws3c{word-spacing:28.615887pt;}
.ws83{word-spacing:29.149115pt;}
.ws8d{word-spacing:29.963661pt;}
.ws85{word-spacing:33.280028pt;}
.ws93{word-spacing:34.618211pt;}
.ws10{word-spacing:53.760045pt;}
.ws78{word-spacing:58.120008pt;}
.ws87{word-spacing:71.667439pt;}
.ws17{word-spacing:86.000687pt;}
._f{margin-left:-35.549121pt;}
._24{margin-left:-33.861846pt;}
._1a{margin-left:-30.720026pt;}
._e{margin-left:-29.090933pt;}
._11{margin-left:-27.461841pt;}
._12{margin-left:-12.218192pt;}
._1b{margin-left:-10.647282pt;}
._10{margin-left:-9.716372pt;}
._26{margin-left:-8.378189pt;}
._1{margin-left:-7.253422pt;}
._2{margin-left:-5.228407pt;}
._c{margin-left:-4.193754pt;}
._0{margin-left:-2.387202pt;}
._5{margin-left:-1.487748pt;}
._4{width:1.487748pt;}
._3{width:2.387202pt;}
._2c{width:3.283760pt;}
._1e{width:5.352732pt;}
._20{width:7.912734pt;}
._2d{width:10.785785pt;}
._36{width:12.936436pt;}
._6{width:14.452412pt;}
._2e{width:16.282676pt;}
._27{width:17.235922pt;}
._17{width:18.616452pt;}
._16{width:20.190853pt;}
._30{width:21.150472pt;}
._8{width:22.737473pt;}
._18{width:23.738202pt;}
._b{width:25.238587pt;}
._22{width:27.060973pt;}
._33{width:28.112457pt;}
._9{width:29.351183pt;}
._14{width:30.370934pt;}
._2f{width:32.758137pt;}
._7{width:33.740005pt;}
._32{width:34.800978pt;}
._34{width:36.268486pt;}
._2a{width:37.410940pt;}
._29{width:39.016798pt;}
._a{width:42.825897pt;}
._35{width:44.165274pt;}
._1c{width:53.818227pt;}
._13{width:55.272773pt;}
._31{width:57.817475pt;}
._15{width:59.461868pt;}
._28{width:71.731200pt;}
._19{width:84.363707pt;}
._2b{width:86.077200pt;}
._21{width:1248.233767pt;}
._23{width:1409.339356pt;}
._25{width:1436.610731pt;}
._1f{width:1587.051757pt;}
._1d{width:1606.627851pt;}
._d{width:1917.186044pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:56.149333pt;}
.y27{bottom:96.000000pt;}
.yad{bottom:106.858667pt;}
.yf1{bottom:109.738667pt;}
.y26{bottom:114.065333pt;}
.y84{bottom:120.530667pt;}
.yf0{bottom:127.804000pt;}
.y25{bottom:132.130667pt;}
.yac{bottom:136.878667pt;}
.y83{bottom:138.597333pt;}
.ycd{bottom:146.970667pt;}
.y24{bottom:150.197333pt;}
.yef{bottom:157.825333pt;}
.y82{bottom:159.468000pt;}
.ycc{bottom:165.036000pt;}
.yab{bottom:166.900000pt;}
.yee{bottom:175.890667pt;}
.y81{bottom:179.286667pt;}
.y23{bottom:182.808000pt;}
.ycb{bottom:183.101333pt;}
.y62{bottom:184.061333pt;}
.y48{bottom:200.790667pt;}
.y22{bottom:200.873333pt;}
.y61{bottom:202.126667pt;}
.yed{bottom:203.350667pt;}
.yaa{bottom:205.318667pt;}
.y80{bottom:208.781333pt;}
.yca{bottom:210.561333pt;}
.y21{bottom:218.938667pt;}
.y60{bottom:220.193333pt;}
.y47{bottom:230.812000pt;}
.ya9{bottom:235.338667pt;}
.y7f{bottom:236.240000pt;}
.y20{bottom:237.005333pt;}
.y5f{bottom:238.258667pt;}
.yec{bottom:242.300000pt;}
.yc9{bottom:243.561333pt;}
.y46{bottom:248.877333pt;}
.y5e{bottom:256.324000pt;}
.yeb{bottom:260.365333pt;}
.ya8{bottom:265.360000pt;}
.y1f{bottom:269.616000pt;}
.y7e{bottom:275.190667pt;}
.y45{bottom:278.897333pt;}
.y5d{bottom:283.782667pt;}
.y1e{bottom:287.681333pt;}
.yc8{bottom:289.390667pt;}
.yea{bottom:290.386667pt;}
.y7d{bottom:293.256000pt;}
.ya7{bottom:295.381333pt;}
.y44{bottom:296.964000pt;}
.y1d{bottom:305.746667pt;}
.yc7{bottom:307.456000pt;}
.ye9{bottom:308.452000pt;}
.y7c{bottom:311.321333pt;}
.y5c{bottom:322.733333pt;}
.y1c{bottom:323.812000pt;}
.yc6{bottom:325.522667pt;}
.y43{bottom:326.984000pt;}
.y7b{bottom:329.388000pt;}
.ya5{bottom:330.129333pt;}
.ya6{bottom:332.109333pt;}
.ya4{bottom:333.800000pt;}
.ye8{bottom:338.473333pt;}
.y5b{bottom:340.798667pt;}
.yc5{bottom:343.588000pt;}
.y42{bottom:345.049333pt;}
.y1b{bottom:356.424000pt;}
.ye7{bottom:356.538667pt;}
.y5a{bottom:358.864000pt;}
.y7a{bottom:359.408000pt;}
.ya2{bottom:362.720000pt;}
.ya3{bottom:364.698667pt;}
.ya1{bottom:366.389333pt;}
.yc4{bottom:371.046667pt;}
.y41{bottom:372.509333pt;}
.y1a{bottom:374.489333pt;}
.y59{bottom:376.930667pt;}
.y109{bottom:383.888000pt;}
.ye6{bottom:386.558667pt;}
.y79{bottom:389.429333pt;}
.y19{bottom:392.554667pt;}
.ya0{bottom:399.558667pt;}
.y108{bottom:401.953333pt;}
.y58{bottom:404.389333pt;}
.ye5{bottom:404.625333pt;}
.yc3{bottom:409.997333pt;}
.y40{bottom:411.458667pt;}
.y78{bottom:419.449333pt;}
.y18{bottom:425.165333pt;}
.yc2{bottom:428.062667pt;}
.y9f{bottom:429.578667pt;}
.y107{bottom:431.973333pt;}
.ye4{bottom:432.084000pt;}
.y3f{bottom:441.480000pt;}
.y17{bottom:443.230667pt;}
.y57{bottom:443.340000pt;}
.yc1{bottom:446.128000pt;}
.y77{bottom:449.470667pt;}
.y106{bottom:450.040000pt;}
.y9e{bottom:456.278667pt;}
.y3e{bottom:459.545333pt;}
.y16{bottom:461.297333pt;}
.yc0{bottom:464.193333pt;}
.ye3{bottom:471.034667pt;}
.y56{bottom:473.360000pt;}
.y76{bottom:476.170667pt;}
.y15{bottom:479.362667pt;}
.y105{bottom:480.060000pt;}
.ye2{bottom:489.100000pt;}
.y3d{bottom:489.566667pt;}
.ybf{bottom:491.653333pt;}
.y9d{bottom:492.410667pt;}
.y104{bottom:498.125333pt;}
.y55{bottom:503.381333pt;}
.ye1{bottom:507.165333pt;}
.y3c{bottom:507.632000pt;}
.y14{bottom:511.973333pt;}
.y75{bottom:512.301333pt;}
.y9c{bottom:519.869333pt;}
.y54{bottom:521.446667pt;}
.ye0{bottom:525.230667pt;}
.y103{bottom:528.146667pt;}
.y13{bottom:530.038667pt;}
.y74{bottom:530.366667pt;}
.ybe{bottom:530.604000pt;}
.y53{bottom:539.512000pt;}
.y3b{bottom:541.637333pt;}
.ydf{bottom:543.297333pt;}
.y102{bottom:546.212000pt;}
.y12{bottom:548.105333pt;}
.ybd{bottom:548.669333pt;}
.y73{bottom:557.066667pt;}
.y9b{bottom:558.820000pt;}
.y3a{bottom:559.704000pt;}
.y11{bottom:566.170667pt;}
.y52{bottom:566.972000pt;}
.yde{bottom:575.766667pt;}
.y101{bottom:576.233333pt;}
.y9a{bottom:576.885333pt;}
.y39{bottom:577.769333pt;}
.ybc{bottom:578.689333pt;}
.y10{bottom:584.236000pt;}
.y72{bottom:593.198667pt;}
.y100{bottom:594.298667pt;}
.y99{bottom:594.950667pt;}
.y38{bottom:605.228000pt;}
.y51{bottom:605.921333pt;}
.ybb{bottom:608.710667pt;}
.y71{bottom:611.264000pt;}
.yf{bottom:616.846667pt;}
.ydd{bottom:621.594667pt;}
.yff{bottom:624.318667pt;}
.yba{bottom:626.776000pt;}
.y98{bottom:627.420000pt;}
.y70{bottom:629.329333pt;}
.y50{bottom:635.942667pt;}
.ydc{bottom:639.661333pt;}
.yfe{bottom:642.385333pt;}
.y37{bottom:644.178667pt;}
.y4f{bottom:654.008000pt;}
.y6f{bottom:656.789333pt;}
.yb9{bottom:656.797333pt;}
.ydb{bottom:657.726667pt;}
.y36{bottom:662.244000pt;}
.ye{bottom:662.420000pt;}
.yfd{bottom:672.405333pt;}
.y97{bottom:673.249333pt;}
.yb8{bottom:674.862667pt;}
.yd{bottom:678.360000pt;}
.y4e{bottom:684.029333pt;}
.yfc{bottom:690.470667pt;}
.y96{bottom:691.314667pt;}
.yc{bottom:694.301333pt;}
.y6e{bottom:695.738667pt;}
.yda{bottom:696.145333pt;}
.y35{bottom:696.249333pt;}
.y4d{bottom:702.094667pt;}
.yb7{bottom:702.321333pt;}
.y95{bottom:709.380000pt;}
.yb{bottom:710.241333pt;}
.y6d{bottom:713.804000pt;}
.yd9{bottom:714.210667pt;}
.y4c{bottom:720.160000pt;}
.yfb{bottom:722.941333pt;}
.ya{bottom:726.181333pt;}
.y34{bottom:726.270667pt;}
.y94{bottom:727.446667pt;}
.y6c{bottom:731.870667pt;}
.yd8{bottom:732.276000pt;}
.yb6{bottom:741.272000pt;}
.y9{bottom:742.121333pt;}
.y93{bottom:745.512000pt;}
.y4b{bottom:747.620000pt;}
.y33{bottom:753.730667pt;}
.y8{bottom:758.061333pt;}
.yb5{bottom:759.337333pt;}
.yd7{bottom:759.736000pt;}
.yfa{bottom:761.254667pt;}
.y92{bottom:763.577333pt;}
.y6b{bottom:764.340000pt;}
.y7{bottom:774.001333pt;}
.yb4{bottom:777.402667pt;}
.y91{bottom:781.642667pt;}
.y4a{bottom:786.569333pt;}
.y6{bottom:789.942667pt;}
.y32{bottom:792.680000pt;}
.yd6{bottom:798.685333pt;}
.y90{bottom:799.708000pt;}
.y49{bottom:804.636000pt;}
.y5{bottom:805.882667pt;}
.yf9{bottom:807.084000pt;}
.yb3{bottom:809.872000pt;}
.y6a{bottom:810.168000pt;}
.yd5{bottom:816.752000pt;}
.y31{bottom:822.701333pt;}
.yf8{bottom:825.149333pt;}
.y8f{bottom:827.168000pt;}
.y69{bottom:828.234667pt;}
.y4{bottom:828.496000pt;}
.yd4{bottom:834.817333pt;}
.y30{bottom:840.766667pt;}
.yf7{bottom:843.214667pt;}
.yb2{bottom:855.701333pt;}
.y68{bottom:858.254667pt;}
.yf6{bottom:861.281333pt;}
.y8e{bottom:866.118667pt;}
.y2f{bottom:868.225333pt;}
.yd3{bottom:873.236000pt;}
.yb1{bottom:873.766667pt;}
.yf5{bottom:879.346667pt;}
.y3{bottom:880.566667pt;}
.y8d{bottom:884.184000pt;}
.y67{bottom:888.276000pt;}
.yd2{bottom:891.301333pt;}
.yb0{bottom:891.833333pt;}
.y8c{bottom:902.249333pt;}
.yf4{bottom:906.805333pt;}
.y2e{bottom:907.176000pt;}
.yd1{bottom:909.366667pt;}
.yaf{bottom:909.898667pt;}
.y2{bottom:913.178667pt;}
.y66{bottom:918.296000pt;}
.y8b{bottom:920.314667pt;}
.y2d{bottom:925.241333pt;}
.y65{bottom:936.362667pt;}
.yd0{bottom:936.826667pt;}
.y8a{bottom:938.380000pt;}
.y2c{bottom:943.306667pt;}
.yf3{bottom:945.756000pt;}
.yae{bottom:948.317333pt;}
.y1{bottom:953.593333pt;}
.y2b{bottom:961.373333pt;}
.yf2{bottom:963.821333pt;}
.y89{bottom:965.756000pt;}
.y64{bottom:966.382667pt;}
.y87{bottom:972.960000pt;}
.ycf{bottom:975.776000pt;}
.y2a{bottom:979.438667pt;}
.y85{bottom:981.280000pt;}
.y63{bottom:984.448000pt;}
.yce{bottom:993.842667pt;}
.y88{bottom:995.404000pt;}
.y86{bottom:996.870667pt;}
.y29{bottom:1011.908000pt;}
.he{height:2.125355pt;}
.h12{height:29.032418pt;}
.h4{height:37.193707pt;}
.h5{height:39.850400pt;}
.h7{height:40.727307pt;}
.hb{height:41.076398pt;}
.h8{height:43.636400pt;}
.h3{height:44.250180pt;}
.hf{height:46.424021pt;}
.ha{height:46.429355pt;}
.h9{height:47.820800pt;}
.h13{height:53.315084pt;}
.h10{height:53.320418pt;}
.h6{height:57.384800pt;}
.h2{height:64.179011pt;}
.h11{height:77.224400pt;}
.h14{height:77.229733pt;}
.hc{height:83.545733pt;}
.hd{height:112.312021pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.000000pt;}
.x16{left:103.273333pt;}
.xa{left:113.777333pt;}
.x8{left:117.818667pt;}
.x17{left:125.898667pt;}
.x6{left:132.364000pt;}
.x5{left:152.289333pt;}
.x1{left:161.194667pt;}
.x13{left:201.117333pt;}
.x14{left:244.350667pt;}
.x15{left:264.685333pt;}
.xf{left:267.813333pt;}
.xb{left:303.364000pt;}
.x10{left:312.113333pt;}
.xd{left:313.086667pt;}
.xe{left:314.220000pt;}
.x12{left:318.138667pt;}
.x11{left:323.920000pt;}
.x3{left:332.360000pt;}
.xc{left:343.436000pt;}
.x2{left:345.042667pt;}
.x4{left:367.626667pt;}
.x9{left:393.214667pt;}
}




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