
    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_52bab0718243adcc3660951e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6e71a5faa2ecec52f6233667.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_edd726942ded1488222d9a34.woff')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_25b66751c8283a4fda4124e3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_4d8cb89d1ad2a327251b3cf6.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_08e1b7090291ccbcee921c3e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_62cd8c83df4d07d6026d5496.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e45ea6ebb72085e5e93c0b0a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cfce0c6cc38178d1711c08e0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.052000;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_44773c84142d667d53ceff88.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e7111077a49ebc3341c29e7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.663000;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_e365f109fbf7f303dbaca5c3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.705000;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_48e87107b1e5b15c32d64899.woff')format("woff");}.ffd{font-family:ffd;line-height:0.804000;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_0b37c090ed802e6adc85627f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.383000;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_b8da9bb73a5e52a9be9c3788.woff')format("woff");}.fff{font-family:fff;line-height:0.046000;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_39dfcae14f398573200b851f.woff')format("woff");}.ff10{font-family:ff10;line-height:2.400000;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:ff11;src:url('chunks/assets/font_397ed49bf007ee14abc34f1c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.918000;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);}
.v9{vertical-align:-17.400000px;}
.v2{vertical-align:-11.820000px;}
.v4{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.794000px;}
.vc{vertical-align:6.828000px;}
.vb{vertical-align:17.586000px;}
.v7{vertical-align:20.718000px;}
.v1{vertical-align:26.028000px;}
.v8{vertical-align:29.616000px;}
.va{vertical-align:36.666000px;}
.v13{vertical-align:38.448000px;}
.v5{vertical-align:48.528000px;}
.vd{vertical-align:54.252000px;}
.v6{vertical-align:74.556000px;}
.v14{vertical-align:86.970000px;}
.v12{vertical-align:89.136000px;}
.vf{vertical-align:97.734000px;}
.v11{vertical-align:101.142000px;}
.v10{vertical-align:109.122000px;}
.ve{vertical-align:150.348000px;}
.ls2{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.000445px;}
.ls27{letter-spacing:0.000472px;}
.ls42{letter-spacing:0.001114px;}
.ls1e{letter-spacing:0.001150px;}
.ls1b{letter-spacing:0.001386px;}
.ls2d{letter-spacing:0.001473px;}
.ls24{letter-spacing:0.001918px;}
.ls39{letter-spacing:0.002227px;}
.ls53{letter-spacing:0.002400px;}
.ls4c{letter-spacing:0.002450px;}
.ls6{letter-spacing:0.002759px;}
.ls2a{letter-spacing:0.002915px;}
.ls61{letter-spacing:0.003056px;}
.ls66{letter-spacing:0.003226px;}
.ls9{letter-spacing:0.003848px;}
.ls21{letter-spacing:0.003894px;}
.ls48{letter-spacing:0.004180px;}
.ls32{letter-spacing:0.004381px;}
.ls18{letter-spacing:0.004391px;}
.ls74{letter-spacing:0.004664px;}
.ls1c{letter-spacing:0.004852px;}
.ls69{letter-spacing:0.005226px;}
.ls35{letter-spacing:0.005587px;}
.ls4{letter-spacing:0.005770px;}
.ls89{letter-spacing:0.006440px;}
.ls7a{letter-spacing:0.586737px;}
.ls37{letter-spacing:1.951021px;}
.ls7f{letter-spacing:2.688179px;}
.ls20{letter-spacing:2.984915px;}
.ls4f{letter-spacing:2.985056px;}
.ls3a{letter-spacing:2.985226px;}
.lsa{letter-spacing:2.985537px;}
.ls6b{letter-spacing:2.986059px;}
.ls4b{letter-spacing:2.990915px;}
.ls50{letter-spacing:2.991056px;}
.ls64{letter-spacing:2.991226px;}
.ls8{letter-spacing:2.991537px;}
.ls15{letter-spacing:3.621160px;}
.ls36{letter-spacing:5.151750px;}
.ls7d{letter-spacing:5.631295px;}
.ls67{letter-spacing:5.974491px;}
.ls47{letter-spacing:5.976532px;}
.ls6f{letter-spacing:7.168800px;}
.ls72{letter-spacing:7.493566px;}
.ls5{letter-spacing:8.256366px;}
.ls7{letter-spacing:8.262366px;}
.ls3b{letter-spacing:10.160915px;}
.ls77{letter-spacing:11.956664px;}
.ls75{letter-spacing:13.747473px;}
.ls73{letter-spacing:14.942915px;}
.ls76{letter-spacing:15.183894px;}
.ls83{letter-spacing:15.189894px;}
.ls8d{letter-spacing:15.934404px;}
.ls1a{letter-spacing:15.935073px;}
.ls29{letter-spacing:15.935518px;}
.ls59{letter-spacing:15.937114px;}
.ls5c{letter-spacing:15.937288px;}
.lsf{letter-spacing:15.937473px;}
.ls43{letter-spacing:15.940404px;}
.ls81{letter-spacing:15.941073px;}
.ls19{letter-spacing:15.941484px;}
.ls2f{letter-spacing:15.941518px;}
.ls5a{letter-spacing:15.943114px;}
.ls56{letter-spacing:15.943288px;}
.ls8b{letter-spacing:15.943473px;}
.ls84{letter-spacing:16.528737px;}
.ls80{letter-spacing:16.534737px;}
.ls16{letter-spacing:17.855484px;}
.ls65{letter-spacing:18.926915px;}
.ls33{letter-spacing:18.927056px;}
.ls1{letter-spacing:18.968915px;}
.ls1f{letter-spacing:19.550915px;}
.ls2e{letter-spacing:19.841724px;}
.lsd{letter-spacing:19.919518px;}
.ls6d{letter-spacing:19.921114px;}
.ls40{letter-spacing:19.921473px;}
.ls17{letter-spacing:19.921695px;}
.ls7e{letter-spacing:19.922759px;}
.lsc{letter-spacing:19.923848px;}
.ls8e{letter-spacing:19.924454px;}
.ls31{letter-spacing:19.924800px;}
.ls26{letter-spacing:19.925518px;}
.ls52{letter-spacing:19.927288px;}
.ls6a{letter-spacing:19.927473px;}
.ls5e{letter-spacing:20.130445px;}
.ls38{letter-spacing:20.938664px;}
.ls8a{letter-spacing:21.916491px;}
.ls68{letter-spacing:22.910915px;}
.ls58{letter-spacing:22.917056px;}
.ls8c{letter-spacing:23.140491px;}
.ls79{letter-spacing:23.409848px;}
.ls88{letter-spacing:23.541160px;}
.ls7c{letter-spacing:23.998737px;}
.ls6c{letter-spacing:24.131226px;}
.lse{letter-spacing:24.204366px;}
.ls4a{letter-spacing:24.427473px;}
.ls30{letter-spacing:25.071750px;}
.ls85{letter-spacing:25.563295px;}
.ls25{letter-spacing:25.902532px;}
.ls3{letter-spacing:25.905427px;}
.ls23{letter-spacing:26.102915px;}
.ls3f{letter-spacing:26.396915px;}
.ls45{letter-spacing:26.402915px;}
.ls51{letter-spacing:26.403056px;}
.ls87{letter-spacing:27.091473px;}
.ls78{letter-spacing:27.095518px;}
.ls1d{letter-spacing:27.097473px;}
.ls86{letter-spacing:27.939894px;}
.ls4e{letter-spacing:28.310915px;}
.ls22{letter-spacing:28.762571px;}
.ls4d{letter-spacing:29.042915px;}
.ls63{letter-spacing:29.047021px;}
.ls70{letter-spacing:29.681464px;}
.ls41{letter-spacing:29.682440px;}
.ls44{letter-spacing:29.882915px;}
.ls0{letter-spacing:30.146915px;}
.ls12{letter-spacing:31.473537px;}
.ls49{letter-spacing:32.034532px;}
.ls3d{letter-spacing:33.777226px;}
.ls28{letter-spacing:34.957739px;}
.ls2c{letter-spacing:35.117578px;}
.ls13{letter-spacing:35.365114px;}
.ls3e{letter-spacing:35.937750px;}
.ls60{letter-spacing:36.259473px;}
.ls11{letter-spacing:36.744366px;}
.ls5f{letter-spacing:38.209021px;}
.ls82{letter-spacing:50.199894px;}
.ls55{letter-spacing:70.232202px;}
.ls57{letter-spacing:70.237114px;}
.lsb{letter-spacing:82.195114px;}
.ls62{letter-spacing:82.823518px;}
.ls71{letter-spacing:165.317518px;}
.ls14{letter-spacing:586.641537px;}
.ls10{letter-spacing:699.051537px;}
.ls5b{letter-spacing:744.324445px;}
.ls5d{letter-spacing:783.558445px;}
.ls3c{letter-spacing:869.488664px;}
.ls34{letter-spacing:935.229750px;}
.ls7b{letter-spacing:948.111848px;}
.ls2b{letter-spacing:966.847739px;}
.ls6e{letter-spacing:982.905226px;}
.ls54{letter-spacing:1038.542400px;}
.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;}
}
.ws41{word-spacing:-71.731200px;}
.ws90{word-spacing:-56.789591px;}
.ws36{word-spacing:-45.664082px;}
.ws71{word-spacing:-33.756703px;}
.ws3a{word-spacing:-33.684972px;}
.ws37{word-spacing:-33.211407px;}
.wsb9{word-spacing:-32.278875px;}
.wsac{word-spacing:-24.747160px;}
.ws2{word-spacing:-23.412998px;}
.wsae{word-spacing:-23.286244px;}
.wsab{word-spacing:-22.416000px;}
.ws77{word-spacing:-22.217549px;}
.ws75{word-spacing:-22.216512px;}
.ws39{word-spacing:-19.510886px;}
.ws8d{word-spacing:-19.307069px;}
.ws89{word-spacing:-17.739030px;}
.ws9d{word-spacing:-14.271331px;}
.ws8e{word-spacing:-13.695932px;}
.ws8c{word-spacing:-13.689932px;}
.ws9f{word-spacing:-13.041331px;}
.ws7f{word-spacing:-10.322633px;}
.ws7c{word-spacing:-10.316633px;}
.ws92{word-spacing:-10.300654px;}
.wsa0{word-spacing:-10.298017px;}
.ws61{word-spacing:-10.295346px;}
.ws45{word-spacing:-10.290234px;}
.ws9a{word-spacing:-10.290008px;}
.ws84{word-spacing:-10.275564px;}
.ws5e{word-spacing:-10.272073px;}
.ws9c{word-spacing:-9.730672px;}
.ws82{word-spacing:-9.711932px;}
.ws83{word-spacing:-9.705932px;}
.ws57{word-spacing:-8.888499px;}
.ws88{word-spacing:-7.564762px;}
.ws59{word-spacing:-7.561546px;}
.ws3b{word-spacing:-7.559368px;}
.ws8f{word-spacing:-7.558762px;}
.ws8a{word-spacing:-7.531776px;}
.ws49{word-spacing:-6.809346px;}
.ws65{word-spacing:-5.812473px;}
.ws68{word-spacing:-5.205932px;}
.ws98{word-spacing:-4.223069px;}
.ws79{word-spacing:-3.945216px;}
.ws78{word-spacing:-3.909041px;}
.ws9b{word-spacing:-3.595428px;}
.ws74{word-spacing:-3.586560px;}
.ws6c{word-spacing:-3.577459px;}
.ws93{word-spacing:-3.575268px;}
.ws85{word-spacing:-3.573673px;}
.ws5f{word-spacing:-3.572077px;}
.ws7d{word-spacing:-3.564232px;}
.ws6b{word-spacing:-3.561542px;}
.ws1c{word-spacing:-3.514829px;}
.ws2b{word-spacing:-3.227904px;}
.ws24{word-spacing:-2.797517px;}
.ws2c{word-spacing:-2.367130px;}
.ws6d{word-spacing:-2.151936px;}
.ws30{word-spacing:-1.936742px;}
.ws95{word-spacing:-1.793280px;}
.ws40{word-spacing:-1.649818px;}
.ws1d{word-spacing:-1.362893px;}
.wsb4{word-spacing:-1.219430px;}
.wsa7{word-spacing:-0.717312px;}
.wsf{word-spacing:-0.183273px;}
.ws46{word-spacing:-0.071731px;}
.ws4d{word-spacing:-0.047821px;}
.ws20{word-spacing:0.000000px;}
.wsba{word-spacing:0.358656px;}
.ws8b{word-spacing:0.390117px;}
.ws87{word-spacing:0.396117px;}
.ws73{word-spacing:0.397588px;}
.ws38{word-spacing:0.430387px;}
.ws6{word-spacing:0.602182px;}
.wsa5{word-spacing:0.645581px;}
.ws15{word-spacing:0.733092px;}
.wsaa{word-spacing:0.932506px;}
.ws6e{word-spacing:1.649818px;}
.ws4b{word-spacing:1.793280px;}
.wsa{word-spacing:1.845820px;}
.ws4{word-spacing:1.976729px;}
.wsa6{word-spacing:2.151936px;}
.ws8{word-spacing:2.173093px;}
.ws51{word-spacing:2.295398px;}
.ws6f{word-spacing:2.367130px;}
.wse{word-spacing:2.500366px;}
.ws86{word-spacing:2.510592px;}
.ws3f{word-spacing:2.582323px;}
.wsb5{word-spacing:2.940979px;}
.ws4e{word-spacing:3.156173px;}
.ws44{word-spacing:3.443098px;}
.ws6a{word-spacing:3.514829px;}
.ws4c{word-spacing:3.586560px;}
.wsb0{word-spacing:3.658291px;}
.ws16{word-spacing:3.678549px;}
.ws3{word-spacing:3.744003px;}
.wsb3{word-spacing:3.801754px;}
.ws50{word-spacing:3.863835px;}
.ws1f{word-spacing:3.873485px;}
.ws48{word-spacing:3.890959px;}
.wsc4{word-spacing:3.900622px;}
.ws76{word-spacing:3.938277px;}
.ws53{word-spacing:3.945216px;}
.ws22{word-spacing:4.016947px;}
.ws81{word-spacing:4.160410px;}
.ws29{word-spacing:4.447334px;}
.ws54{word-spacing:4.483200px;}
.ws80{word-spacing:4.590797px;}
.wsd{word-spacing:4.594913px;}
.ws1{word-spacing:4.648169px;}
.ws70{word-spacing:4.734259px;}
.ws10{word-spacing:4.856731px;}
.ws23{word-spacing:4.877722px;}
.ws94{word-spacing:5.021184px;}
.ws19{word-spacing:5.092915px;}
.ws14{word-spacing:5.118550px;}
.wsad{word-spacing:5.308109px;}
.ws32{word-spacing:5.379825px;}
.wsaf{word-spacing:5.379840px;}
.wsb7{word-spacing:5.451571px;}
.ws13{word-spacing:5.576732px;}
.wsb8{word-spacing:5.595034px;}
.ws69{word-spacing:5.810227px;}
.ws5c{word-spacing:5.953690px;}
.ws25{word-spacing:6.097152px;}
.ws56{word-spacing:6.168883px;}
.ws2e{word-spacing:6.240614px;}
.ws55{word-spacing:6.384077px;}
.ws31{word-spacing:6.455775px;}
.ws64{word-spacing:6.527539px;}
.ws63{word-spacing:6.536959px;}
.ws67{word-spacing:6.573080px;}
.ws2a{word-spacing:6.599270px;}
.ws7{word-spacing:6.624006px;}
.wsc2{word-spacing:6.671002px;}
.ws60{word-spacing:6.742733px;}
.ws43{word-spacing:6.814464px;}
.ws26{word-spacing:7.029658px;}
.ws2d{word-spacing:7.101389px;}
.wsa4{word-spacing:7.244851px;}
.ws35{word-spacing:7.388314px;}
.ws7a{word-spacing:7.460045px;}
.ws34{word-spacing:7.531776px;}
.ws1a{word-spacing:7.603507px;}
.ws1b{word-spacing:7.675238px;}
.ws52{word-spacing:7.962163px;}
.ws5{word-spacing:7.998552px;}
.ws18{word-spacing:8.607744px;}
.ws21{word-spacing:8.679475px;}
.ws33{word-spacing:8.822938px;}
.ws3e{word-spacing:8.966400px;}
.ws3c{word-spacing:8.966959px;}
.ws3d{word-spacing:8.967972px;}
.ws27{word-spacing:9.038131px;}
.ws1e{word-spacing:9.181594px;}
.wsb{word-spacing:9.438553px;}
.ws28{word-spacing:9.540250px;}
.ws72{word-spacing:9.755443px;}
.ws9{word-spacing:9.831281px;}
.wsbf{word-spacing:10.401024px;}
.ws4f{word-spacing:10.687949px;}
.ws12{word-spacing:10.944009px;}
.ws5b{word-spacing:11.261798px;}
.ws5a{word-spacing:11.270959px;}
.ws2f{word-spacing:11.333530px;}
.wsc{word-spacing:11.336737px;}
.ws97{word-spacing:11.679961px;}
.wsa1{word-spacing:11.700647px;}
.wsa3{word-spacing:11.727153px;}
.ws11{word-spacing:11.925828px;}
.wsb1{word-spacing:12.409498px;}
.ws4a{word-spacing:13.270272px;}
.ws5d{word-spacing:13.485466px;}
.wsb2{word-spacing:13.628928px;}
.ws99{word-spacing:15.135283px;}
.ws58{word-spacing:18.740327px;}
.wsb6{word-spacing:25.034189px;}
.wsbb{word-spacing:25.823232px;}
.wsa2{word-spacing:26.352010px;}
.wsc1{word-spacing:27.329587px;}
.wsc3{word-spacing:27.544781px;}
.ws66{word-spacing:28.998010px;}
.wsbc{word-spacing:29.768448px;}
.wsc0{word-spacing:30.987878px;}
.ws7b{word-spacing:35.946010px;}
.wsbe{word-spacing:36.295987px;}
.ws0{word-spacing:37.316475px;}
.wsbd{word-spacing:48.848947px;}
.wsa8{word-spacing:49.310400px;}
.ws7e{word-spacing:50.753017px;}
.wsa9{word-spacing:75.859797px;}
.ws17{word-spacing:83.925075px;}
.ws91{word-spacing:200.345242px;}
.ws62{word-spacing:722.972068px;}
.ws9e{word-spacing:737.049983px;}
.ws96{word-spacing:821.465702px;}
.ws47{word-spacing:863.316654px;}
.ws42{word-spacing:1034.794291px;}
._27{margin-left:-39.125351px;}
._0{margin-left:-9.794025px;}
._1a{margin-left:-8.091257px;}
._1c{margin-left:-7.053035px;}
._8{margin-left:-5.519587px;}
._d{margin-left:-4.342297px;}
._2{margin-left:-3.223350px;}
._3{margin-left:-1.510896px;}
._5{width:1.275919px;}
._4{width:2.324084px;}
._2f{width:4.080044px;}
._19{width:5.260266px;}
._2c{width:8.207542px;}
._17{width:16.850091px;}
._10{width:17.932800px;}
._7{width:19.931372px;}
._3d{width:21.893259px;}
._1d{width:22.954220px;}
._31{width:24.388595px;}
._3e{width:25.994612px;}
._18{width:27.541052px;}
._9{width:28.603660px;}
._a{width:29.710948px;}
._f{width:31.064150px;}
._13{width:33.676960px;}
._e{width:34.952756px;}
._3f{width:36.315771px;}
._42{width:37.430089px;}
._12{width:38.858706px;}
._6{width:42.322285px;}
._c{width:44.356818px;}
._b{width:46.276402px;}
._11{width:47.557772px;}
._1{width:50.457825px;}
._40{width:56.124796px;}
._16{width:70.224845px;}
._41{width:79.879330px;}
._2a{width:82.203955px;}
._3c{width:83.893523px;}
._15{width:96.836850px;}
._32{width:98.564131px;}
._14{width:116.203950px;}
._39{width:194.808123px;}
._3b{width:211.498879px;}
._38{width:231.982879px;}
._36{width:240.902292px;}
._29{width:242.594918px;}
._33{width:249.872292px;}
._3a{width:320.788034px;}
._1e{width:332.337227px;}
._35{width:353.800879px;}
._20{width:359.218131px;}
._37{width:362.770879px;}
._34{width:400.299704px;}
._22{width:487.957571px;}
._25{width:582.206746px;}
._2b{width:583.980555px;}
._1b{width:599.467683px;}
._21{width:768.925519px;}
._1f{width:779.086188px;}
._2d{width:784.061164px;}
._23{width:789.685948px;}
._26{width:830.972758px;}
._30{width:832.044415px;}
._2e{width:871.254951px;}
._24{width:873.183191px;}
._28{width:883.763982px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y25{bottom:63.168000px;}
.y4e{bottom:108.000000px;}
.y73{bottom:111.526500px;}
.y10c{bottom:112.768500px;}
.yd3{bottom:112.914000px;}
.y14a{bottom:113.925000px;}
.y24{bottom:128.677500px;}
.y4d{bottom:129.669000px;}
.y72{bottom:133.195500px;}
.y98{bottom:134.925000px;}
.y182{bottom:149.155500px;}
.y10b{bottom:149.380500px;}
.yd2{bottom:149.527500px;}
.y23{bottom:150.346500px;}
.y149{bottom:150.538500px;}
.y4c{bottom:151.338000px;}
.y97{bottom:156.594000px;}
.y6f{bottom:161.592000px;}
.y168{bottom:166.237500px;}
.y181{bottom:170.824500px;}
.yd1{bottom:171.196500px;}
.y22{bottom:172.015500px;}
.y6e{bottom:173.893500px;}
.y71{bottom:181.591500px;}
.y12b{bottom:184.587000px;}
.y4b{bottom:184.588500px;}
.y96{bottom:185.793000px;}
.y10a{bottom:185.994000px;}
.y70{bottom:186.025500px;}
.y148{bottom:187.150500px;}
.yed{bottom:187.413000px;}
.y167{bottom:187.905000px;}
.yd0{bottom:192.864000px;}
.y21{bottom:193.684500px;}
.y6d{bottom:205.218000px;}
.y180{bottom:210.252000px;}
.y95{bottom:214.993500px;}
.yb4{bottom:215.169000px;}
.y20{bottom:215.353500px;}
.y109{bottom:222.606000px;}
.y147{bottom:223.764000px;}
.yec{bottom:224.026500px;}
.ycf{bottom:226.114500px;}
.y6c{bottom:226.887000px;}
.y166{bottom:228.823500px;}
.y4a{bottom:235.591500px;}
.y12a{bottom:236.454000px;}
.y94{bottom:236.662500px;}
.y1f{bottom:237.021000px;}
.y165{bottom:250.492500px;}
.yb3{bottom:251.781000px;}
.y49{bottom:257.260500px;}
.y129{bottom:258.123000px;}
.y93{bottom:258.331500px;}
.y1e{bottom:258.690000px;}
.y108{bottom:259.219500px;}
.y146{bottom:260.376000px;}
.yeb{bottom:260.638500px;}
.y6b{bottom:266.488500px;}
.y17f{bottom:270.151500px;}
.y164{bottom:272.161500px;}
.yce{bottom:278.107500px;}
.y48{bottom:278.929500px;}
.y128{bottom:279.792000px;}
.y92{bottom:279.999000px;}
.y107{bottom:280.887000px;}
.y145{bottom:282.045000px;}
.yb2{bottom:288.394500px;}
.y17e{bottom:291.820500px;}
.y163{bottom:293.829000px;}
.yea{bottom:297.252000px;}
.y1d{bottom:298.117500px;}
.ycd{bottom:299.776500px;}
.y127{bottom:301.461000px;}
.y6a{bottom:306.090000px;}
.y91{bottom:309.199500px;}
.y47{bottom:311.832000px;}
.y17d{bottom:313.489500px;}
.y106{bottom:314.137500px;}
.y144{bottom:315.295500px;}
.y126{bottom:323.128500px;}
.yb1{bottom:325.006500px;}
.y69{bottom:327.759000px;}
.y162{bottom:333.256500px;}
.ye9{bottom:333.864000px;}
.y17c{bottom:335.158500px;}
.y90{bottom:335.352000px;}
.ycc{bottom:336.388500px;}
.y46{bottom:337.984500px;}
.y125{bottom:344.797500px;}
.y68{bottom:349.428000px;}
.yb0{bottom:356.389500px;}
.y1c{bottom:358.018500px;}
.y105{bottom:358.795500px;}
.y8f{bottom:364.551000px;}
.y124{bottom:366.466500px;}
.y143{bottom:367.288500px;}
.ye8{bottom:370.477500px;}
.y45{bottom:370.888500px;}
.y67{bottom:371.095500px;}
.y17b{bottom:371.770500px;}
.ycb{bottom:373.002000px;}
.yaf{bottom:378.058500px;}
.y1b{bottom:378.342000px;}
.y8e{bottom:386.220000px;}
.y123{bottom:388.135500px;}
.y44{bottom:392.557500px;}
.y161{bottom:393.135000px;}
.y1a{bottom:398.665500px;}
.y142{bottom:403.900500px;}
.y66{bottom:404.346000px;}
.ye7{bottom:407.089500px;}
.y8d{bottom:407.889000px;}
.y17a{bottom:408.384000px;}
.yca{bottom:409.614000px;}
.y122{bottom:409.804500px;}
.y43{bottom:414.225000px;}
.y160{bottom:414.802500px;}
.yae{bottom:417.660000px;}
.y104{bottom:418.696500px;}
.y19{bottom:418.989000px;}
.y8c{bottom:429.558000px;}
.y121{bottom:431.473500px;}
.y15f{bottom:436.471500px;}
.y18{bottom:439.312500px;}
.y141{bottom:440.514000px;}
.ye6{bottom:443.701500px;}
.y179{bottom:444.996000px;}
.yc9{bottom:446.227500px;}
.y42{bottom:447.129000px;}
.y65{bottom:449.004000px;}
.y103{bottom:455.308500px;}
.yad{bottom:457.261500px;}
.y8b{bottom:458.757000px;}
.y17{bottom:459.637500px;}
.y120{bottom:470.220000px;}
.y140{bottom:477.126000px;}
.y15e{bottom:477.390000px;}
.yac{bottom:478.929000px;}
.y16{bottom:479.961000px;}
.y41{bottom:480.033000px;}
.ye5{bottom:480.315000px;}
.y178{bottom:481.609500px;}
.yc8{bottom:482.842500px;}
.y8a{bottom:487.957500px;}
.y102{bottom:491.922000px;}
.yc7{bottom:495.144000px;}
.y15{bottom:500.284500px;}
.y40{bottom:501.702000px;}
.y64{bottom:508.905000px;}
.y11f{bottom:508.968000px;}
.y89{bottom:509.626500px;}
.yab{bottom:512.179500px;}
.y13f{bottom:513.739500px;}
.y15d{bottom:513.958500px;}
.ye4{bottom:516.927000px;}
.y177{bottom:518.221500px;}
.y14{bottom:520.608000px;}
.y3f{bottom:523.369500px;}
.y101{bottom:528.534000px;}
.y63{bottom:530.572500px;}
.y11e{bottom:530.637000px;}
.y88{bottom:531.295500px;}
.y13{bottom:540.931500px;}
.yc6{bottom:544.060500px;}
.y3e{bottom:545.038500px;}
.y100{bottom:550.203000px;}
.y13e{bottom:550.351500px;}
.y15c{bottom:550.525500px;}
.y62{bottom:552.241500px;}
.y11d{bottom:552.306000px;}
.y87{bottom:552.963000px;}
.ye3{bottom:553.540500px;}
.y176{bottom:554.835000px;}
.yaa{bottom:556.837500px;}
.y12{bottom:561.256500px;}
.y3d{bottom:566.707500px;}
.yff{bottom:571.872000px;}
.y11c{bottom:573.975000px;}
.y86{bottom:574.632000px;}
.y175{bottom:576.504000px;}
.y11{bottom:581.580000px;}
.yc5{bottom:583.662000px;}
.y13d{bottom:586.965000px;}
.y15b{bottom:587.094000px;}
.y61{bottom:588.855000px;}
.ye2{bottom:590.152500px;}
.yfe{bottom:593.541000px;}
.y11b{bottom:595.642500px;}
.y3c{bottom:599.958000px;}
.y10{bottom:601.903500px;}
.y85{bottom:607.882500px;}
.y174{bottom:613.116000px;}
.ya9{bottom:616.738500px;}
.y11a{bottom:617.311500px;}
.yf{bottom:622.227000px;}
.yc4{bottom:623.263500px;}
.y13c{bottom:623.577000px;}
.y60{bottom:625.467000px;}
.ye1{bottom:626.766000px;}
.y15a{bottom:628.012500px;}
.yfd{bottom:633.142500px;}
.ya8{bottom:638.406000px;}
.ye{bottom:642.550500px;}
.y3b{bottom:644.616000px;}
.yc3{bottom:644.932500px;}
.ye0{bottom:648.435000px;}
.y159{bottom:649.681500px;}
.y173{bottom:649.728000px;}
.y119{bottom:650.562000px;}
.y84{bottom:658.339500px;}
.y13b{bottom:660.190500px;}
.y5f{bottom:662.080500px;}
.yd{bottom:662.875500px;}
.yc2{bottom:666.601500px;}
.y158{bottom:671.349000px;}
.yfc{bottom:672.744000px;}
.ya7{bottom:675.019500px;}
.y83{bottom:680.008500px;}
.ydf{bottom:681.685500px;}
.yc{bottom:683.199000px;}
.y172{bottom:686.341500px;}
.yfb{bottom:694.411500px;}
.y13a{bottom:696.802500px;}
.y5e{bottom:698.692500px;}
.yc1{bottom:699.852000px;}
.y82{bottom:701.677500px;}
.y118{bottom:702.429000px;}
.yb{bottom:703.522500px;}
.y3a{bottom:703.527000px;}
.y157{bottom:704.599500px;}
.ya6{bottom:711.631500px;}
.yfa{bottom:716.080500px;}
.y171{bottom:722.953500px;}
.ya{bottom:723.846000px;}
.y39{bottom:725.196000px;}
.yde{bottom:726.342000px;}
.y81{bottom:730.878000px;}
.y139{bottom:733.414500px;}
.y5d{bottom:735.306000px;}
.yf9{bottom:737.749500px;}
.y117{bottom:738.798000px;}
.y9{bottom:744.169500px;}
.yc0{bottom:746.118000px;}
.y38{bottom:746.865000px;}
.ya5{bottom:748.245000px;}
.y156{bottom:756.570000px;}
.y5c{bottom:756.973500px;}
.ybf{bottom:758.419500px;}
.yf8{bottom:759.418500px;}
.y170{bottom:759.567000px;}
.y80{bottom:760.077000px;}
.y37{bottom:768.534000px;}
.y138{bottom:770.028000px;}
.y8{bottom:774.511500px;}
.y116{bottom:775.165500px;}
.y155{bottom:778.237500px;}
.y5b{bottom:778.642500px;}
.yf7{bottom:781.087500px;}
.y7f{bottom:781.746000px;}
.y18e{bottom:784.399500px;}
.ya4{bottom:784.857000px;}
.ydd{bottom:786.243000px;}
.y36{bottom:790.201500px;}
.y16f{bottom:796.179000px;}
.y154{bottom:799.906500px;}
.yf6{bottom:802.755000px;}
.y7e{bottom:803.415000px;}
.y137{bottom:806.640000px;}
.ybe{bottom:807.336000px;}
.y115{bottom:811.534500px;}
.y35{bottom:811.870500px;}
.y5a{bottom:813.847500px;}
.y59{bottom:818.244000px;}
.ydb{bottom:820.813500px;}
.y18d{bottom:821.011500px;}
.yf5{bottom:824.424000px;}
.ya3{bottom:824.458500px;}
.y7d{bottom:825.084000px;}
.ybd{bottom:829.005000px;}
.y16e{bottom:832.792500px;}
.ydc{bottom:833.113500px;}
.y34{bottom:833.539500px;}
.y153{bottom:836.646000px;}
.y7{bottom:840.601500px;}
.y18c{bottom:842.680500px;}
.y136{bottom:843.253500px;}
.yda{bottom:845.245500px;}
.y7c{bottom:846.751500px;}
.y114{bottom:847.903500px;}
.y152{bottom:848.947500px;}
.ya2{bottom:850.611000px;}
.y33{bottom:855.208500px;}
.y58{bottom:857.845500px;}
.yf4{bottom:864.025500px;}
.y135{bottom:864.922500px;}
.ybb{bottom:865.236000px;}
.y7b{bottom:868.420500px;}
.y16d{bottom:869.404500px;}
.ya1{bottom:876.763500px;}
.y32{bottom:876.877500px;}
.ybc{bottom:877.536000px;}
.yba{bottom:877.537500px;}
.y18b{bottom:879.292500px;}
.y57{bottom:879.514500px;}
.yd9{bottom:880.612500px;}
.y6{bottom:882.669000px;}
.y113{bottom:883.785000px;}
.y134{bottom:886.590000px;}
.y7a{bottom:890.089500px;}
.y151{bottom:896.091000px;}
.y31{bottom:898.546500px;}
.y18a{bottom:900.961500px;}
.ya0{bottom:902.914500px;}
.yf3{bottom:903.627000px;}
.y16c{bottom:906.018000px;}
.y5{bottom:909.567000px;}
.y79{bottom:911.758500px;}
.y56{bottom:912.765000px;}
.yd8{bottom:917.226000px;}
.y150{bottom:917.760000px;}
.y112{bottom:919.665000px;}
.y133{bottom:919.840500px;}
.y30{bottom:920.214000px;}
.yb9{bottom:924.139500px;}
.yf2{bottom:925.296000px;}
.y4{bottom:936.466500px;}
.y189{bottom:937.575000px;}
.y78{bottom:940.959000px;}
.y2f{bottom:941.883000px;}
.y9f{bottom:942.516000px;}
.y16b{bottom:942.630000px;}
.yf1{bottom:946.965000px;}
.yd7{bottom:953.838000px;}
.y14f{bottom:954.238500px;}
.y111{bottom:956.034000px;}
.y188{bottom:959.242500px;}
.y2e{bottom:963.552000px;}
.yb8{bottom:963.741000px;}
.y16a{bottom:964.299000px;}
.y132{bottom:964.498500px;}
.y55{bottom:964.758000px;}
.yf0{bottom:968.634000px;}
.y77{bottom:970.158000px;}
.y9e{bottom:977.086500px;}
.y2d{bottom:985.221000px;}
.y54{bottom:986.427000px;}
.y9d{bottom:989.388000px;}
.y3{bottom:989.704500px;}
.yd6{bottom:990.451500px;}
.y14e{bottom:990.807000px;}
.y76{bottom:991.827000px;}
.y110{bottom:992.403000px;}
.y187{bottom:995.856000px;}
.yef{bottom:1000.513500px;}
.yb7{bottom:1003.342500px;}
.y169{bottom:1005.394500px;}
.y2c{bottom:1006.890000px;}
.y53{bottom:1008.094500px;}
.y75{bottom:1013.496000px;}
.y131{bottom:1015.806000px;}
.y186{bottom:1017.525000px;}
.yee{bottom:1024.947000px;}
.y2{bottom:1027.063500px;}
.y14d{bottom:1027.375500px;}
.y10f{bottom:1028.283000px;}
.y2b{bottom:1028.557500px;}
.y52{bottom:1029.763500px;}
.y9c{bottom:1038.645000px;}
.yb6{bottom:1039.720500px;}
.y74{bottom:1042.695000px;}
.y2a{bottom:1050.226500px;}
.y130{bottom:1051.795500px;}
.yb5{bottom:1052.022000px;}
.y51{bottom:1053.426000px;}
.y185{bottom:1054.137000px;}
.y9b{bottom:1060.314000px;}
.yd5{bottom:1063.677000px;}
.y14c{bottom:1063.944000px;}
.y10e{bottom:1064.164500px;}
.y1{bottom:1064.424000px;}
.y4f{bottom:1065.726000px;}
.y29{bottom:1071.895500px;}
.y50{bottom:1073.326500px;}
.y12f{bottom:1073.464500px;}
.y184{bottom:1075.806000px;}
.y9a{bottom:1081.983000px;}
.y28{bottom:1093.564500px;}
.y12e{bottom:1095.133500px;}
.y183{bottom:1097.475000px;}
.yd4{bottom:1100.289000px;}
.y14b{bottom:1100.422500px;}
.y10d{bottom:1100.533500px;}
.y99{bottom:1103.652000px;}
.y27{bottom:1115.233500px;}
.y12d{bottom:1116.802500px;}
.y26{bottom:1136.902500px;}
.y12c{bottom:1139.068500px;}
.hb{height:35.865450px;}
.h4{height:45.687311px;}
.h5{height:46.145493px;}
.h10{height:50.211840px;}
.h1c{height:51.216077px;}
.h7{height:53.798400px;}
.h9{height:60.254040px;}
.h8{height:61.893450px;}
.h14{height:61.899450px;}
.h3{height:64.557900px;}
.h11{height:65.481450px;}
.hf{height:71.384400px;}
.h6{height:72.304680px;}
.hd{height:72.531450px;}
.h2{height:87.030450px;}
.he{height:90.117450px;}
.h17{height:102.320400px;}
.h12{height:102.326400px;}
.h1b{height:102.998400px;}
.h15{height:103.004400px;}
.h18{height:104.011248px;}
.ha{height:110.421450px;}
.h16{height:111.991248px;}
.hc{height:114.681450px;}
.h1a{height:151.532400px;}
.h13{height:153.217248px;}
.h19{height:154.094400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x43{left:116.779500px;}
.x42{left:129.460500px;}
.xd{left:134.338500px;}
.x44{left:144.093000px;}
.x2{left:149.533500px;}
.xa{left:151.897500px;}
.x1{left:167.868000px;}
.x9{left:176.443500px;}
.x40{left:180.195000px;}
.x34{left:194.188500px;}
.x3d{left:196.678500px;}
.x2e{left:199.846500px;}
.x3e{left:204.052500px;}
.x1f{left:222.279000px;}
.x3f{left:224.001000px;}
.x21{left:228.850500px;}
.x22{left:239.092500px;}
.x28{left:261.946500px;}
.x3{left:266.818500px;}
.x35{left:275.218500px;}
.xf{left:276.349500px;}
.x1d{left:280.363500px;}
.x30{left:285.066000px;}
.x27{left:296.772000px;}
.xe{left:304.452000px;}
.x23{left:324.166500px;}
.x26{left:325.548000px;}
.x1e{left:327.367500px;}
.x25{left:331.383000px;}
.x24{left:333.975000px;}
.x3a{left:336.997500px;}
.x3b{left:340.584000px;}
.x2f{left:345.966000px;}
.x17{left:347.808000px;}
.x4{left:351.060000px;}
.x10{left:353.821500px;}
.x38{left:355.606500px;}
.x3c{left:357.028500px;}
.x2d{left:360.126000px;}
.x16{left:362.955000px;}
.x13{left:367.395000px;}
.x6{left:370.602000px;}
.x7{left:373.002000px;}
.x33{left:376.245000px;}
.x2a{left:380.746500px;}
.x29{left:384.195000px;}
.x5{left:393.487500px;}
.x20{left:398.853000px;}
.x18{left:407.790000px;}
.x8{left:410.455500px;}
.x12{left:415.663500px;}
.x39{left:417.522000px;}
.x19{left:420.156000px;}
.x11{left:423.880500px;}
.x1b{left:424.939500px;}
.x31{left:427.522500px;}
.x41{left:437.677500px;}
.xc{left:442.066500px;}
.x14{left:444.886500px;}
.x1a{left:448.473000px;}
.x36{left:460.317000px;}
.x2b{left:482.844000px;}
.x1c{left:493.456500px;}
.x15{left:508.539000px;}
.x32{left:516.112500px;}
.x37{left:539.248500px;}
.x2c{left:753.697500px;}
@media print{
.v9{vertical-align:-15.466667pt;}
.v2{vertical-align:-10.506667pt;}
.v4{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.594667pt;}
.vc{vertical-align:6.069333pt;}
.vb{vertical-align:15.632000pt;}
.v7{vertical-align:18.416000pt;}
.v1{vertical-align:23.136000pt;}
.v8{vertical-align:26.325333pt;}
.va{vertical-align:32.592000pt;}
.v13{vertical-align:34.176000pt;}
.v5{vertical-align:43.136000pt;}
.vd{vertical-align:48.224000pt;}
.v6{vertical-align:66.272000pt;}
.v14{vertical-align:77.306667pt;}
.v12{vertical-align:79.232000pt;}
.vf{vertical-align:86.874667pt;}
.v11{vertical-align:89.904000pt;}
.v10{vertical-align:96.997333pt;}
.ve{vertical-align:133.642667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.000396pt;}
.ls27{letter-spacing:0.000420pt;}
.ls42{letter-spacing:0.000990pt;}
.ls1e{letter-spacing:0.001022pt;}
.ls1b{letter-spacing:0.001232pt;}
.ls2d{letter-spacing:0.001309pt;}
.ls24{letter-spacing:0.001705pt;}
.ls39{letter-spacing:0.001980pt;}
.ls53{letter-spacing:0.002133pt;}
.ls4c{letter-spacing:0.002178pt;}
.ls6{letter-spacing:0.002452pt;}
.ls2a{letter-spacing:0.002591pt;}
.ls61{letter-spacing:0.002717pt;}
.ls66{letter-spacing:0.002868pt;}
.ls9{letter-spacing:0.003420pt;}
.ls21{letter-spacing:0.003461pt;}
.ls48{letter-spacing:0.003716pt;}
.ls32{letter-spacing:0.003895pt;}
.ls18{letter-spacing:0.003903pt;}
.ls74{letter-spacing:0.004145pt;}
.ls1c{letter-spacing:0.004313pt;}
.ls69{letter-spacing:0.004646pt;}
.ls35{letter-spacing:0.004966pt;}
.ls4{letter-spacing:0.005129pt;}
.ls89{letter-spacing:0.005724pt;}
.ls7a{letter-spacing:0.521544pt;}
.ls37{letter-spacing:1.734241pt;}
.ls7f{letter-spacing:2.389492pt;}
.ls20{letter-spacing:2.653258pt;}
.ls4f{letter-spacing:2.653383pt;}
.ls3a{letter-spacing:2.653534pt;}
.lsa{letter-spacing:2.653811pt;}
.ls6b{letter-spacing:2.654275pt;}
.ls4b{letter-spacing:2.658591pt;}
.ls50{letter-spacing:2.658717pt;}
.ls64{letter-spacing:2.658868pt;}
.ls8{letter-spacing:2.659144pt;}
.ls15{letter-spacing:3.218809pt;}
.ls36{letter-spacing:4.579333pt;}
.ls7d{letter-spacing:5.005595pt;}
.ls67{letter-spacing:5.310659pt;}
.ls47{letter-spacing:5.312473pt;}
.ls6f{letter-spacing:6.372267pt;}
.ls72{letter-spacing:6.660948pt;}
.ls5{letter-spacing:7.338992pt;}
.ls7{letter-spacing:7.344325pt;}
.ls3b{letter-spacing:9.031925pt;}
.ls77{letter-spacing:10.628145pt;}
.ls75{letter-spacing:12.219976pt;}
.ls73{letter-spacing:13.282591pt;}
.ls76{letter-spacing:13.496794pt;}
.ls83{letter-spacing:13.502128pt;}
.ls8d{letter-spacing:14.163915pt;}
.ls1a{letter-spacing:14.164509pt;}
.ls29{letter-spacing:14.164905pt;}
.ls59{letter-spacing:14.166323pt;}
.ls5c{letter-spacing:14.166479pt;}
.lsf{letter-spacing:14.166642pt;}
.ls43{letter-spacing:14.169248pt;}
.ls81{letter-spacing:14.169842pt;}
.ls19{letter-spacing:14.170208pt;}
.ls2f{letter-spacing:14.170238pt;}
.ls5a{letter-spacing:14.171657pt;}
.ls56{letter-spacing:14.171812pt;}
.ls8b{letter-spacing:14.171976pt;}
.ls84{letter-spacing:14.692210pt;}
.ls80{letter-spacing:14.697544pt;}
.ls16{letter-spacing:15.871541pt;}
.ls65{letter-spacing:16.823925pt;}
.ls33{letter-spacing:16.824050pt;}
.ls1{letter-spacing:16.861258pt;}
.ls1f{letter-spacing:17.378591pt;}
.ls2e{letter-spacing:17.637088pt;}
.lsd{letter-spacing:17.706238pt;}
.ls6d{letter-spacing:17.707657pt;}
.ls40{letter-spacing:17.707976pt;}
.ls17{letter-spacing:17.708174pt;}
.ls7e{letter-spacing:17.709119pt;}
.lsc{letter-spacing:17.710087pt;}
.ls8e{letter-spacing:17.710626pt;}
.ls31{letter-spacing:17.710933pt;}
.ls26{letter-spacing:17.711572pt;}
.ls52{letter-spacing:17.713145pt;}
.ls6a{letter-spacing:17.713309pt;}
.ls5e{letter-spacing:17.893729pt;}
.ls38{letter-spacing:18.612145pt;}
.ls8a{letter-spacing:19.481325pt;}
.ls68{letter-spacing:20.365258pt;}
.ls58{letter-spacing:20.370717pt;}
.ls8c{letter-spacing:20.569325pt;}
.ls79{letter-spacing:20.808753pt;}
.ls88{letter-spacing:20.925476pt;}
.ls7c{letter-spacing:21.332210pt;}
.ls6c{letter-spacing:21.449979pt;}
.lse{letter-spacing:21.514992pt;}
.ls4a{letter-spacing:21.713309pt;}
.ls30{letter-spacing:22.286000pt;}
.ls85{letter-spacing:22.722929pt;}
.ls25{letter-spacing:23.024473pt;}
.ls3{letter-spacing:23.027046pt;}
.ls23{letter-spacing:23.202591pt;}
.ls3f{letter-spacing:23.463925pt;}
.ls45{letter-spacing:23.469258pt;}
.ls51{letter-spacing:23.469383pt;}
.ls87{letter-spacing:24.081309pt;}
.ls78{letter-spacing:24.084905pt;}
.ls1d{letter-spacing:24.086642pt;}
.ls86{letter-spacing:24.835461pt;}
.ls4e{letter-spacing:25.165258pt;}
.ls22{letter-spacing:25.566730pt;}
.ls4d{letter-spacing:25.815925pt;}
.ls63{letter-spacing:25.819575pt;}
.ls70{letter-spacing:26.383524pt;}
.ls41{letter-spacing:26.384391pt;}
.ls44{letter-spacing:26.562591pt;}
.ls0{letter-spacing:26.797258pt;}
.ls12{letter-spacing:27.976478pt;}
.ls49{letter-spacing:28.475139pt;}
.ls3d{letter-spacing:30.024201pt;}
.ls28{letter-spacing:31.073546pt;}
.ls2c{letter-spacing:31.215625pt;}
.ls13{letter-spacing:31.435657pt;}
.ls3e{letter-spacing:31.944666pt;}
.ls60{letter-spacing:32.230642pt;}
.ls11{letter-spacing:32.661658pt;}
.ls5f{letter-spacing:33.963575pt;}
.ls82{letter-spacing:44.622128pt;}
.ls55{letter-spacing:62.428624pt;}
.ls57{letter-spacing:62.432990pt;}
.lsb{letter-spacing:73.062323pt;}
.ls62{letter-spacing:73.620905pt;}
.ls71{letter-spacing:146.948905pt;}
.ls14{letter-spacing:521.459144pt;}
.ls10{letter-spacing:621.379144pt;}
.ls5b{letter-spacing:661.621729pt;}
.ls5d{letter-spacing:696.496396pt;}
.ls3c{letter-spacing:772.878812pt;}
.ls34{letter-spacing:831.315333pt;}
.ls7b{letter-spacing:842.766087pt;}
.ls2b{letter-spacing:859.420213pt;}
.ls6e{letter-spacing:873.693534pt;}
.ls54{letter-spacing:923.148800pt;}
.ws41{word-spacing:-63.761067pt;}
.ws90{word-spacing:-50.479636pt;}
.ws36{word-spacing:-40.590295pt;}
.ws71{word-spacing:-30.005958pt;}
.ws3a{word-spacing:-29.942197pt;}
.ws37{word-spacing:-29.521250pt;}
.wsb9{word-spacing:-28.692333pt;}
.wsac{word-spacing:-21.997476pt;}
.ws2{word-spacing:-20.811554pt;}
.wsae{word-spacing:-20.698883pt;}
.wsab{word-spacing:-19.925333pt;}
.ws77{word-spacing:-19.748932pt;}
.ws75{word-spacing:-19.748011pt;}
.ws39{word-spacing:-17.343010pt;}
.ws8d{word-spacing:-17.161839pt;}
.ws89{word-spacing:-15.768026pt;}
.ws9d{word-spacing:-12.685627pt;}
.ws8e{word-spacing:-12.174162pt;}
.ws8c{word-spacing:-12.168828pt;}
.ws9f{word-spacing:-11.592294pt;}
.ws7f{word-spacing:-9.175674pt;}
.ws7c{word-spacing:-9.170340pt;}
.ws92{word-spacing:-9.156137pt;}
.wsa0{word-spacing:-9.153793pt;}
.ws61{word-spacing:-9.151418pt;}
.ws45{word-spacing:-9.146875pt;}
.ws9a{word-spacing:-9.146674pt;}
.ws84{word-spacing:-9.133834pt;}
.ws5e{word-spacing:-9.130732pt;}
.ws9c{word-spacing:-8.649486pt;}
.ws82{word-spacing:-8.632828pt;}
.ws83{word-spacing:-8.627495pt;}
.ws57{word-spacing:-7.900888pt;}
.ws88{word-spacing:-6.724233pt;}
.ws59{word-spacing:-6.721374pt;}
.ws3b{word-spacing:-6.719439pt;}
.ws8f{word-spacing:-6.718899pt;}
.ws8a{word-spacing:-6.694912pt;}
.ws49{word-spacing:-6.052752pt;}
.ws65{word-spacing:-5.166643pt;}
.ws68{word-spacing:-4.627495pt;}
.ws98{word-spacing:-3.753839pt;}
.ws79{word-spacing:-3.506859pt;}
.ws78{word-spacing:-3.474703pt;}
.ws9b{word-spacing:-3.195936pt;}
.ws74{word-spacing:-3.188053pt;}
.ws6c{word-spacing:-3.179964pt;}
.ws93{word-spacing:-3.178016pt;}
.ws85{word-spacing:-3.176598pt;}
.ws5f{word-spacing:-3.175180pt;}
.ws7d{word-spacing:-3.168207pt;}
.ws6b{word-spacing:-3.165815pt;}
.ws1c{word-spacing:-3.124292pt;}
.ws2b{word-spacing:-2.869248pt;}
.ws24{word-spacing:-2.486682pt;}
.ws2c{word-spacing:-2.104115pt;}
.ws6d{word-spacing:-1.912832pt;}
.ws30{word-spacing:-1.721549pt;}
.ws95{word-spacing:-1.594027pt;}
.ws40{word-spacing:-1.466505pt;}
.ws1d{word-spacing:-1.211460pt;}
.wsb4{word-spacing:-1.083938pt;}
.wsa7{word-spacing:-0.637611pt;}
.wsf{word-spacing:-0.162909pt;}
.ws46{word-spacing:-0.063761pt;}
.ws4d{word-spacing:-0.042507pt;}
.ws20{word-spacing:0.000000pt;}
.wsba{word-spacing:0.318805pt;}
.ws8b{word-spacing:0.346771pt;}
.ws87{word-spacing:0.352104pt;}
.ws73{word-spacing:0.353411pt;}
.ws38{word-spacing:0.382566pt;}
.ws6{word-spacing:0.535273pt;}
.wsa5{word-spacing:0.573850pt;}
.ws15{word-spacing:0.651637pt;}
.wsaa{word-spacing:0.828894pt;}
.ws6e{word-spacing:1.466505pt;}
.ws4b{word-spacing:1.594027pt;}
.wsa{word-spacing:1.640729pt;}
.ws4{word-spacing:1.757092pt;}
.wsa6{word-spacing:1.912832pt;}
.ws8{word-spacing:1.931638pt;}
.ws51{word-spacing:2.040354pt;}
.ws6f{word-spacing:2.104115pt;}
.wse{word-spacing:2.222547pt;}
.ws86{word-spacing:2.231637pt;}
.ws3f{word-spacing:2.295398pt;}
.wsb5{word-spacing:2.614204pt;}
.ws4e{word-spacing:2.805487pt;}
.ws44{word-spacing:3.060531pt;}
.ws6a{word-spacing:3.124292pt;}
.ws4c{word-spacing:3.188053pt;}
.wsb0{word-spacing:3.251814pt;}
.ws16{word-spacing:3.269821pt;}
.ws3{word-spacing:3.328003pt;}
.wsb3{word-spacing:3.379337pt;}
.ws50{word-spacing:3.434520pt;}
.ws1f{word-spacing:3.443098pt;}
.ws48{word-spacing:3.458630pt;}
.wsc4{word-spacing:3.467220pt;}
.ws76{word-spacing:3.500691pt;}
.ws53{word-spacing:3.506859pt;}
.ws22{word-spacing:3.570620pt;}
.ws81{word-spacing:3.698142pt;}
.ws29{word-spacing:3.953186pt;}
.ws54{word-spacing:3.985067pt;}
.ws80{word-spacing:4.080708pt;}
.wsd{word-spacing:4.084367pt;}
.ws1{word-spacing:4.131706pt;}
.ws70{word-spacing:4.208230pt;}
.ws10{word-spacing:4.317095pt;}
.ws23{word-spacing:4.335753pt;}
.ws94{word-spacing:4.463275pt;}
.ws19{word-spacing:4.527036pt;}
.ws14{word-spacing:4.549822pt;}
.wsad{word-spacing:4.718319pt;}
.ws32{word-spacing:4.782067pt;}
.wsaf{word-spacing:4.782080pt;}
.wsb7{word-spacing:4.845841pt;}
.ws13{word-spacing:4.957095pt;}
.wsb8{word-spacing:4.973363pt;}
.ws69{word-spacing:5.164646pt;}
.ws5c{word-spacing:5.292169pt;}
.ws25{word-spacing:5.419691pt;}
.ws56{word-spacing:5.483452pt;}
.ws2e{word-spacing:5.547213pt;}
.ws55{word-spacing:5.674735pt;}
.ws31{word-spacing:5.738467pt;}
.ws64{word-spacing:5.802257pt;}
.ws63{word-spacing:5.810630pt;}
.ws67{word-spacing:5.842737pt;}
.ws2a{word-spacing:5.866018pt;}
.ws7{word-spacing:5.888005pt;}
.wsc2{word-spacing:5.929779pt;}
.ws60{word-spacing:5.993540pt;}
.ws43{word-spacing:6.057301pt;}
.ws26{word-spacing:6.248585pt;}
.ws2d{word-spacing:6.312346pt;}
.wsa4{word-spacing:6.439868pt;}
.ws35{word-spacing:6.567390pt;}
.ws7a{word-spacing:6.631151pt;}
.ws34{word-spacing:6.694912pt;}
.ws1a{word-spacing:6.758673pt;}
.ws1b{word-spacing:6.822434pt;}
.ws52{word-spacing:7.077478pt;}
.ws5{word-spacing:7.109824pt;}
.ws18{word-spacing:7.651328pt;}
.ws21{word-spacing:7.715089pt;}
.ws33{word-spacing:7.842611pt;}
.ws3e{word-spacing:7.970133pt;}
.ws3c{word-spacing:7.970630pt;}
.ws3d{word-spacing:7.971531pt;}
.ws27{word-spacing:8.033894pt;}
.ws1e{word-spacing:8.161417pt;}
.wsb{word-spacing:8.389825pt;}
.ws28{word-spacing:8.480222pt;}
.ws72{word-spacing:8.671505pt;}
.ws9{word-spacing:8.738916pt;}
.wsbf{word-spacing:9.245355pt;}
.ws4f{word-spacing:9.500399pt;}
.ws12{word-spacing:9.728008pt;}
.ws5b{word-spacing:10.010487pt;}
.ws5a{word-spacing:10.018630pt;}
.ws2f{word-spacing:10.074249pt;}
.wsc{word-spacing:10.077099pt;}
.ws97{word-spacing:10.382188pt;}
.wsa1{word-spacing:10.400575pt;}
.wsa3{word-spacing:10.424136pt;}
.ws11{word-spacing:10.600736pt;}
.wsb1{word-spacing:11.030665pt;}
.ws4a{word-spacing:11.795797pt;}
.ws5d{word-spacing:11.987081pt;}
.wsb2{word-spacing:12.114603pt;}
.ws99{word-spacing:13.453585pt;}
.ws58{word-spacing:16.658068pt;}
.wsb6{word-spacing:22.252612pt;}
.wsbb{word-spacing:22.953984pt;}
.wsa2{word-spacing:23.424009pt;}
.wsc1{word-spacing:24.292966pt;}
.wsc3{word-spacing:24.484250pt;}
.ws66{word-spacing:25.776009pt;}
.wsbc{word-spacing:26.460843pt;}
.wsc0{word-spacing:27.544781pt;}
.ws7b{word-spacing:31.952009pt;}
.wsbe{word-spacing:32.263100pt;}
.ws0{word-spacing:33.170200pt;}
.wsbd{word-spacing:43.421286pt;}
.wsa8{word-spacing:43.831467pt;}
.ws7e{word-spacing:45.113793pt;}
.wsa9{word-spacing:67.430931pt;}
.ws17{word-spacing:74.600067pt;}
.ws91{word-spacing:178.084659pt;}
.ws62{word-spacing:642.641838pt;}
.ws9e{word-spacing:655.155541pt;}
.ws96{word-spacing:730.191735pt;}
.ws47{word-spacing:767.392582pt;}
.ws42{word-spacing:919.817148pt;}
._27{margin-left:-34.778090pt;}
._0{margin-left:-8.705800pt;}
._1a{margin-left:-7.192228pt;}
._1c{margin-left:-6.269364pt;}
._8{margin-left:-4.906300pt;}
._d{margin-left:-3.859819pt;}
._2{margin-left:-2.865200pt;}
._3{margin-left:-1.343019pt;}
._5{width:1.134150pt;}
._4{width:2.065853pt;}
._2f{width:3.626706pt;}
._19{width:4.675792pt;}
._2c{width:7.295593pt;}
._17{width:14.977858pt;}
._10{width:15.940267pt;}
._7{width:17.716775pt;}
._3d{width:19.460675pt;}
._1d{width:20.403751pt;}
._31{width:21.678751pt;}
._3e{width:23.106322pt;}
._18{width:24.480935pt;}
._9{width:25.425476pt;}
._a{width:26.409732pt;}
._f{width:27.612578pt;}
._13{width:29.935075pt;}
._e{width:31.069117pt;}
._3f{width:32.280685pt;}
._42{width:33.271191pt;}
._12{width:34.541072pt;}
._6{width:37.619809pt;}
._c{width:39.428283pt;}
._b{width:41.134580pt;}
._11{width:42.273575pt;}
._1{width:44.851400pt;}
._40{width:49.888707pt;}
._16{width:62.422084pt;}
._41{width:71.003849pt;}
._2a{width:73.070182pt;}
._3c{width:74.572020pt;}
._15{width:86.077200pt;}
._32{width:87.612561pt;}
._14{width:103.292400pt;}
._39{width:173.162776pt;}
._3b{width:187.999003pt;}
._38{width:206.207003pt;}
._36{width:214.135371pt;}
._29{width:215.639927pt;}
._33{width:222.108704pt;}
._3a{width:285.144919pt;}
._1e{width:295.410868pt;}
._35{width:314.489670pt;}
._20{width:319.305005pt;}
._37{width:322.463003pt;}
._34{width:355.821959pt;}
._22{width:433.740063pt;}
._25{width:517.517107pt;}
._2b{width:519.093827pt;}
._1b{width:532.860162pt;}
._21{width:683.489351pt;}
._1f{width:692.521056pt;}
._2d{width:696.943257pt;}
._23{width:701.943065pt;}
._26{width:738.642452pt;}
._30{width:739.595035pt;}
._2e{width:774.448845pt;}
._24{width:776.162836pt;}
._28{width:785.567984pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:56.149333pt;}
.y4e{bottom:96.000000pt;}
.y73{bottom:99.134667pt;}
.y10c{bottom:100.238667pt;}
.yd3{bottom:100.368000pt;}
.y14a{bottom:101.266667pt;}
.y24{bottom:114.380000pt;}
.y4d{bottom:115.261333pt;}
.y72{bottom:118.396000pt;}
.y98{bottom:119.933333pt;}
.y182{bottom:132.582667pt;}
.y10b{bottom:132.782667pt;}
.yd2{bottom:132.913333pt;}
.y23{bottom:133.641333pt;}
.y149{bottom:133.812000pt;}
.y4c{bottom:134.522667pt;}
.y97{bottom:139.194667pt;}
.y6f{bottom:143.637333pt;}
.y168{bottom:147.766667pt;}
.y181{bottom:151.844000pt;}
.yd1{bottom:152.174667pt;}
.y22{bottom:152.902667pt;}
.y6e{bottom:154.572000pt;}
.y71{bottom:161.414667pt;}
.y12b{bottom:164.077333pt;}
.y4b{bottom:164.078667pt;}
.y96{bottom:165.149333pt;}
.y10a{bottom:165.328000pt;}
.y70{bottom:165.356000pt;}
.y148{bottom:166.356000pt;}
.yed{bottom:166.589333pt;}
.y167{bottom:167.026667pt;}
.yd0{bottom:171.434667pt;}
.y21{bottom:172.164000pt;}
.y6d{bottom:182.416000pt;}
.y180{bottom:186.890667pt;}
.y95{bottom:191.105333pt;}
.yb4{bottom:191.261333pt;}
.y20{bottom:191.425333pt;}
.y109{bottom:197.872000pt;}
.y147{bottom:198.901333pt;}
.yec{bottom:199.134667pt;}
.ycf{bottom:200.990667pt;}
.y6c{bottom:201.677333pt;}
.y166{bottom:203.398667pt;}
.y4a{bottom:209.414667pt;}
.y12a{bottom:210.181333pt;}
.y94{bottom:210.366667pt;}
.y1f{bottom:210.685333pt;}
.y165{bottom:222.660000pt;}
.yb3{bottom:223.805333pt;}
.y49{bottom:228.676000pt;}
.y129{bottom:229.442667pt;}
.y93{bottom:229.628000pt;}
.y1e{bottom:229.946667pt;}
.y108{bottom:230.417333pt;}
.y146{bottom:231.445333pt;}
.yeb{bottom:231.678667pt;}
.y6b{bottom:236.878667pt;}
.y17f{bottom:240.134667pt;}
.y164{bottom:241.921333pt;}
.yce{bottom:247.206667pt;}
.y48{bottom:247.937333pt;}
.y128{bottom:248.704000pt;}
.y92{bottom:248.888000pt;}
.y107{bottom:249.677333pt;}
.y145{bottom:250.706667pt;}
.yb2{bottom:256.350667pt;}
.y17e{bottom:259.396000pt;}
.y163{bottom:261.181333pt;}
.yea{bottom:264.224000pt;}
.y1d{bottom:264.993333pt;}
.ycd{bottom:266.468000pt;}
.y127{bottom:267.965333pt;}
.y6a{bottom:272.080000pt;}
.y91{bottom:274.844000pt;}
.y47{bottom:277.184000pt;}
.y17d{bottom:278.657333pt;}
.y106{bottom:279.233333pt;}
.y144{bottom:280.262667pt;}
.y126{bottom:287.225333pt;}
.yb1{bottom:288.894667pt;}
.y69{bottom:291.341333pt;}
.y162{bottom:296.228000pt;}
.ye9{bottom:296.768000pt;}
.y17c{bottom:297.918667pt;}
.y90{bottom:298.090667pt;}
.ycc{bottom:299.012000pt;}
.y46{bottom:300.430667pt;}
.y125{bottom:306.486667pt;}
.y68{bottom:310.602667pt;}
.yb0{bottom:316.790667pt;}
.y1c{bottom:318.238667pt;}
.y105{bottom:318.929333pt;}
.y8f{bottom:324.045333pt;}
.y124{bottom:325.748000pt;}
.y143{bottom:326.478667pt;}
.ye8{bottom:329.313333pt;}
.y45{bottom:329.678667pt;}
.y67{bottom:329.862667pt;}
.y17b{bottom:330.462667pt;}
.ycb{bottom:331.557333pt;}
.yaf{bottom:336.052000pt;}
.y1b{bottom:336.304000pt;}
.y8e{bottom:343.306667pt;}
.y123{bottom:345.009333pt;}
.y44{bottom:348.940000pt;}
.y161{bottom:349.453333pt;}
.y1a{bottom:354.369333pt;}
.y142{bottom:359.022667pt;}
.y66{bottom:359.418667pt;}
.ye7{bottom:361.857333pt;}
.y8d{bottom:362.568000pt;}
.y17a{bottom:363.008000pt;}
.yca{bottom:364.101333pt;}
.y122{bottom:364.270667pt;}
.y43{bottom:368.200000pt;}
.y160{bottom:368.713333pt;}
.yae{bottom:371.253333pt;}
.y104{bottom:372.174667pt;}
.y19{bottom:372.434667pt;}
.y8c{bottom:381.829333pt;}
.y121{bottom:383.532000pt;}
.y15f{bottom:387.974667pt;}
.y18{bottom:390.500000pt;}
.y141{bottom:391.568000pt;}
.ye6{bottom:394.401333pt;}
.y179{bottom:395.552000pt;}
.yc9{bottom:396.646667pt;}
.y42{bottom:397.448000pt;}
.y65{bottom:399.114667pt;}
.y103{bottom:404.718667pt;}
.yad{bottom:406.454667pt;}
.y8b{bottom:407.784000pt;}
.y17{bottom:408.566667pt;}
.y120{bottom:417.973333pt;}
.y140{bottom:424.112000pt;}
.y15e{bottom:424.346667pt;}
.yac{bottom:425.714667pt;}
.y16{bottom:426.632000pt;}
.y41{bottom:426.696000pt;}
.ye5{bottom:426.946667pt;}
.y178{bottom:428.097333pt;}
.yc8{bottom:429.193333pt;}
.y8a{bottom:433.740000pt;}
.y102{bottom:437.264000pt;}
.yc7{bottom:440.128000pt;}
.y15{bottom:444.697333pt;}
.y40{bottom:445.957333pt;}
.y64{bottom:452.360000pt;}
.y11f{bottom:452.416000pt;}
.y89{bottom:453.001333pt;}
.yab{bottom:455.270667pt;}
.y13f{bottom:456.657333pt;}
.y15d{bottom:456.852000pt;}
.ye4{bottom:459.490667pt;}
.y177{bottom:460.641333pt;}
.y14{bottom:462.762667pt;}
.y3f{bottom:465.217333pt;}
.y101{bottom:469.808000pt;}
.y63{bottom:471.620000pt;}
.y11e{bottom:471.677333pt;}
.y88{bottom:472.262667pt;}
.y13{bottom:480.828000pt;}
.yc6{bottom:483.609333pt;}
.y3e{bottom:484.478667pt;}
.y100{bottom:489.069333pt;}
.y13e{bottom:489.201333pt;}
.y15c{bottom:489.356000pt;}
.y62{bottom:490.881333pt;}
.y11d{bottom:490.938667pt;}
.y87{bottom:491.522667pt;}
.ye3{bottom:492.036000pt;}
.y176{bottom:493.186667pt;}
.yaa{bottom:494.966667pt;}
.y12{bottom:498.894667pt;}
.y3d{bottom:503.740000pt;}
.yff{bottom:508.330667pt;}
.y11c{bottom:510.200000pt;}
.y86{bottom:510.784000pt;}
.y175{bottom:512.448000pt;}
.y11{bottom:516.960000pt;}
.yc5{bottom:518.810667pt;}
.y13d{bottom:521.746667pt;}
.y15b{bottom:521.861333pt;}
.y61{bottom:523.426667pt;}
.ye2{bottom:524.580000pt;}
.yfe{bottom:527.592000pt;}
.y11b{bottom:529.460000pt;}
.y3c{bottom:533.296000pt;}
.y10{bottom:535.025333pt;}
.y85{bottom:540.340000pt;}
.y174{bottom:544.992000pt;}
.ya9{bottom:548.212000pt;}
.y11a{bottom:548.721333pt;}
.yf{bottom:553.090667pt;}
.yc4{bottom:554.012000pt;}
.y13c{bottom:554.290667pt;}
.y60{bottom:555.970667pt;}
.ye1{bottom:557.125333pt;}
.y15a{bottom:558.233333pt;}
.yfd{bottom:562.793333pt;}
.ya8{bottom:567.472000pt;}
.ye{bottom:571.156000pt;}
.y3b{bottom:572.992000pt;}
.yc3{bottom:573.273333pt;}
.ye0{bottom:576.386667pt;}
.y159{bottom:577.494667pt;}
.y173{bottom:577.536000pt;}
.y119{bottom:578.277333pt;}
.y84{bottom:585.190667pt;}
.y13b{bottom:586.836000pt;}
.y5f{bottom:588.516000pt;}
.yd{bottom:589.222667pt;}
.yc2{bottom:592.534667pt;}
.y158{bottom:596.754667pt;}
.yfc{bottom:597.994667pt;}
.ya7{bottom:600.017333pt;}
.y83{bottom:604.452000pt;}
.ydf{bottom:605.942667pt;}
.yc{bottom:607.288000pt;}
.y172{bottom:610.081333pt;}
.yfb{bottom:617.254667pt;}
.y13a{bottom:619.380000pt;}
.y5e{bottom:621.060000pt;}
.yc1{bottom:622.090667pt;}
.y82{bottom:623.713333pt;}
.y118{bottom:624.381333pt;}
.yb{bottom:625.353333pt;}
.y3a{bottom:625.357333pt;}
.y157{bottom:626.310667pt;}
.ya6{bottom:632.561333pt;}
.yfa{bottom:636.516000pt;}
.y171{bottom:642.625333pt;}
.ya{bottom:643.418667pt;}
.y39{bottom:644.618667pt;}
.yde{bottom:645.637333pt;}
.y81{bottom:649.669333pt;}
.y139{bottom:651.924000pt;}
.y5d{bottom:653.605333pt;}
.yf9{bottom:655.777333pt;}
.y117{bottom:656.709333pt;}
.y9{bottom:661.484000pt;}
.yc0{bottom:663.216000pt;}
.y38{bottom:663.880000pt;}
.ya5{bottom:665.106667pt;}
.y156{bottom:672.506667pt;}
.y5c{bottom:672.865333pt;}
.ybf{bottom:674.150667pt;}
.yf8{bottom:675.038667pt;}
.y170{bottom:675.170667pt;}
.y80{bottom:675.624000pt;}
.y37{bottom:683.141333pt;}
.y138{bottom:684.469333pt;}
.y8{bottom:688.454667pt;}
.y116{bottom:689.036000pt;}
.y155{bottom:691.766667pt;}
.y5b{bottom:692.126667pt;}
.yf7{bottom:694.300000pt;}
.y7f{bottom:694.885333pt;}
.y18e{bottom:697.244000pt;}
.ya4{bottom:697.650667pt;}
.ydd{bottom:698.882667pt;}
.y36{bottom:702.401333pt;}
.y16f{bottom:707.714667pt;}
.y154{bottom:711.028000pt;}
.yf6{bottom:713.560000pt;}
.y7e{bottom:714.146667pt;}
.y137{bottom:717.013333pt;}
.ybe{bottom:717.632000pt;}
.y115{bottom:721.364000pt;}
.y35{bottom:721.662667pt;}
.y5a{bottom:723.420000pt;}
.y59{bottom:727.328000pt;}
.ydb{bottom:729.612000pt;}
.y18d{bottom:729.788000pt;}
.yf5{bottom:732.821333pt;}
.ya3{bottom:732.852000pt;}
.y7d{bottom:733.408000pt;}
.ybd{bottom:736.893333pt;}
.y16e{bottom:740.260000pt;}
.ydc{bottom:740.545333pt;}
.y34{bottom:740.924000pt;}
.y153{bottom:743.685333pt;}
.y7{bottom:747.201333pt;}
.y18c{bottom:749.049333pt;}
.y136{bottom:749.558667pt;}
.yda{bottom:751.329333pt;}
.y7c{bottom:752.668000pt;}
.y114{bottom:753.692000pt;}
.y152{bottom:754.620000pt;}
.ya2{bottom:756.098667pt;}
.y33{bottom:760.185333pt;}
.y58{bottom:762.529333pt;}
.yf4{bottom:768.022667pt;}
.y135{bottom:768.820000pt;}
.ybb{bottom:769.098667pt;}
.y7b{bottom:771.929333pt;}
.y16d{bottom:772.804000pt;}
.ya1{bottom:779.345333pt;}
.y32{bottom:779.446667pt;}
.ybc{bottom:780.032000pt;}
.yba{bottom:780.033333pt;}
.y18b{bottom:781.593333pt;}
.y57{bottom:781.790667pt;}
.yd9{bottom:782.766667pt;}
.y6{bottom:784.594667pt;}
.y113{bottom:785.586667pt;}
.y134{bottom:788.080000pt;}
.y7a{bottom:791.190667pt;}
.y151{bottom:796.525333pt;}
.y31{bottom:798.708000pt;}
.y18a{bottom:800.854667pt;}
.ya0{bottom:802.590667pt;}
.yf3{bottom:803.224000pt;}
.y16c{bottom:805.349333pt;}
.y5{bottom:808.504000pt;}
.y79{bottom:810.452000pt;}
.y56{bottom:811.346667pt;}
.yd8{bottom:815.312000pt;}
.y150{bottom:815.786667pt;}
.y112{bottom:817.480000pt;}
.y133{bottom:817.636000pt;}
.y30{bottom:817.968000pt;}
.yb9{bottom:821.457333pt;}
.yf2{bottom:822.485333pt;}
.y4{bottom:832.414667pt;}
.y189{bottom:833.400000pt;}
.y78{bottom:836.408000pt;}
.y2f{bottom:837.229333pt;}
.y9f{bottom:837.792000pt;}
.y16b{bottom:837.893333pt;}
.yf1{bottom:841.746667pt;}
.yd7{bottom:847.856000pt;}
.y14f{bottom:848.212000pt;}
.y111{bottom:849.808000pt;}
.y188{bottom:852.660000pt;}
.y2e{bottom:856.490667pt;}
.yb8{bottom:856.658667pt;}
.y16a{bottom:857.154667pt;}
.y132{bottom:857.332000pt;}
.y55{bottom:857.562667pt;}
.yf0{bottom:861.008000pt;}
.y77{bottom:862.362667pt;}
.y9e{bottom:868.521333pt;}
.y2d{bottom:875.752000pt;}
.y54{bottom:876.824000pt;}
.y9d{bottom:879.456000pt;}
.y3{bottom:879.737333pt;}
.yd6{bottom:880.401333pt;}
.y14e{bottom:880.717333pt;}
.y76{bottom:881.624000pt;}
.y110{bottom:882.136000pt;}
.y187{bottom:885.205333pt;}
.yef{bottom:889.345333pt;}
.yb7{bottom:891.860000pt;}
.y169{bottom:893.684000pt;}
.y2c{bottom:895.013333pt;}
.y53{bottom:896.084000pt;}
.y75{bottom:900.885333pt;}
.y131{bottom:902.938667pt;}
.y186{bottom:904.466667pt;}
.yee{bottom:911.064000pt;}
.y2{bottom:912.945333pt;}
.y14d{bottom:913.222667pt;}
.y10f{bottom:914.029333pt;}
.y2b{bottom:914.273333pt;}
.y52{bottom:915.345333pt;}
.y9c{bottom:923.240000pt;}
.yb6{bottom:924.196000pt;}
.y74{bottom:926.840000pt;}
.y2a{bottom:933.534667pt;}
.y130{bottom:934.929333pt;}
.yb5{bottom:935.130667pt;}
.y51{bottom:936.378667pt;}
.y185{bottom:937.010667pt;}
.y9b{bottom:942.501333pt;}
.yd5{bottom:945.490667pt;}
.y14c{bottom:945.728000pt;}
.y10e{bottom:945.924000pt;}
.y1{bottom:946.154667pt;}
.y4f{bottom:947.312000pt;}
.y29{bottom:952.796000pt;}
.y50{bottom:954.068000pt;}
.y12f{bottom:954.190667pt;}
.y184{bottom:956.272000pt;}
.y9a{bottom:961.762667pt;}
.y28{bottom:972.057333pt;}
.y12e{bottom:973.452000pt;}
.y183{bottom:975.533333pt;}
.yd4{bottom:978.034667pt;}
.y14b{bottom:978.153333pt;}
.y10d{bottom:978.252000pt;}
.y99{bottom:981.024000pt;}
.y27{bottom:991.318667pt;}
.y12d{bottom:992.713333pt;}
.y26{bottom:1010.580000pt;}
.y12c{bottom:1012.505333pt;}
.hb{height:31.880400pt;}
.h4{height:40.610943pt;}
.h5{height:41.018216pt;}
.h10{height:44.632747pt;}
.h1c{height:45.525402pt;}
.h7{height:47.820800pt;}
.h9{height:53.559147pt;}
.h8{height:55.016400pt;}
.h14{height:55.021733pt;}
.h3{height:57.384800pt;}
.h11{height:58.205733pt;}
.hf{height:63.452800pt;}
.h6{height:64.270827pt;}
.hd{height:64.472400pt;}
.h2{height:77.360400pt;}
.he{height:80.104400pt;}
.h17{height:90.951467pt;}
.h12{height:90.956800pt;}
.h1b{height:91.554133pt;}
.h15{height:91.559467pt;}
.h18{height:92.454443pt;}
.ha{height:98.152400pt;}
.h16{height:99.547776pt;}
.hc{height:101.939067pt;}
.h1a{height:134.695467pt;}
.h13{height:136.193109pt;}
.h19{height:136.972800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x43{left:103.804000pt;}
.x42{left:115.076000pt;}
.xd{left:119.412000pt;}
.x44{left:128.082667pt;}
.x2{left:132.918667pt;}
.xa{left:135.020000pt;}
.x1{left:149.216000pt;}
.x9{left:156.838667pt;}
.x40{left:160.173333pt;}
.x34{left:172.612000pt;}
.x3d{left:174.825333pt;}
.x2e{left:177.641333pt;}
.x3e{left:181.380000pt;}
.x1f{left:197.581333pt;}
.x3f{left:199.112000pt;}
.x21{left:203.422667pt;}
.x22{left:212.526667pt;}
.x28{left:232.841333pt;}
.x3{left:237.172000pt;}
.x35{left:244.638667pt;}
.xf{left:245.644000pt;}
.x1d{left:249.212000pt;}
.x30{left:253.392000pt;}
.x27{left:263.797333pt;}
.xe{left:270.624000pt;}
.x23{left:288.148000pt;}
.x26{left:289.376000pt;}
.x1e{left:290.993333pt;}
.x25{left:294.562667pt;}
.x24{left:296.866667pt;}
.x3a{left:299.553333pt;}
.x3b{left:302.741333pt;}
.x2f{left:307.525333pt;}
.x17{left:309.162667pt;}
.x4{left:312.053333pt;}
.x10{left:314.508000pt;}
.x38{left:316.094667pt;}
.x3c{left:317.358667pt;}
.x2d{left:320.112000pt;}
.x16{left:322.626667pt;}
.x13{left:326.573333pt;}
.x6{left:329.424000pt;}
.x7{left:331.557333pt;}
.x33{left:334.440000pt;}
.x2a{left:338.441333pt;}
.x29{left:341.506667pt;}
.x5{left:349.766667pt;}
.x20{left:354.536000pt;}
.x18{left:362.480000pt;}
.x8{left:364.849333pt;}
.x12{left:369.478667pt;}
.x39{left:371.130667pt;}
.x19{left:373.472000pt;}
.x11{left:376.782667pt;}
.x1b{left:377.724000pt;}
.x31{left:380.020000pt;}
.x41{left:389.046667pt;}
.xc{left:392.948000pt;}
.x14{left:395.454667pt;}
.x1a{left:398.642667pt;}
.x36{left:409.170667pt;}
.x2b{left:429.194667pt;}
.x1c{left:438.628000pt;}
.x15{left:452.034667pt;}
.x32{left:458.766667pt;}
.x37{left:479.332000pt;}
.x2c{left:669.953333pt;}
}




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