
    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_a2ddc2e798739c9dcc5608da.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_57b55c70638441c3be223a8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9ccd2514a7f39b6efc0fe51a.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_471721467a27a5a0e99cfcd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921000;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_60eb738edd1e2503b2b671ca.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_84ebc2fb96dccbf91644931c.woff2')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_c553b0f692a259d9e4a56173.woff2')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_51d8af8a0160334b0174359d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738000;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_5b383dd71ea140a2feb4b88d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b17bb49f948b89fdf596d915.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.820000;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_e4643df871dc29784ae53c49.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d3764ae3166a3fb70be75f96.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908000;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_af367dfcb7b9ea5aa84dacae.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.724000;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_9772025fa6a41ad6a0513c1d.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;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_a2c2a07b3c875c1117616590.woff2')format("woff");}.fff{font-family:fff;line-height:0.706000;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_0a7e04123c0be51709f15da3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958000;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_a4ed9b60251462d2bc30d7e8.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ee0973ae63ac8ba32995e79e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919000;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:ff13;src:url('chunks/assets/font_0211bbf35f11d86b53c3bfbf.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.806000;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);}
.vf{vertical-align:-24.684000px;}
.v11{vertical-align:-22.854000px;}
.v2{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:8.964000px;}
.vc{vertical-align:14.778000px;}
.vb{vertical-align:15.942000px;}
.va{vertical-align:17.268000px;}
.v1{vertical-align:21.690000px;}
.v8{vertical-align:24.678000px;}
.v9{vertical-align:28.722000px;}
.vd{vertical-align:36.528000px;}
.ve{vertical-align:39.396000px;}
.v3{vertical-align:41.004000px;}
.v6{vertical-align:72.474000px;}
.v5{vertical-align:81.438000px;}
.v7{vertical-align:84.282000px;}
.v4{vertical-align:125.286000px;}
.ls3{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000305px;}
.ls8{letter-spacing:0.000538px;}
.ls24{letter-spacing:0.000564px;}
.ls6{letter-spacing:0.000668px;}
.lsd{letter-spacing:0.000767px;}
.ls1d{letter-spacing:0.000993px;}
.ls5e{letter-spacing:0.001002px;}
.ls23{letter-spacing:0.002108px;}
.ls9{letter-spacing:0.002338px;}
.ls2b{letter-spacing:0.003172px;}
.ls1f{letter-spacing:0.003269px;}
.ls3a{letter-spacing:0.004200px;}
.ls29{letter-spacing:0.005781px;}
.ls45{letter-spacing:0.006993px;}
.ls5{letter-spacing:1.578476px;}
.ls31{letter-spacing:1.659172px;}
.lsf{letter-spacing:1.880823px;}
.ls2f{letter-spacing:2.142767px;}
.ls2c{letter-spacing:2.148767px;}
.ls1e{letter-spacing:2.984525px;}
.ls17{letter-spacing:2.989202px;}
.ls11{letter-spacing:2.989409px;}
.ls1c{letter-spacing:2.990017px;}
.ls33{letter-spacing:2.990525px;}
.ls41{letter-spacing:2.995202px;}
.lsb{letter-spacing:2.995409px;}
.ls16{letter-spacing:3.323134px;}
.ls52{letter-spacing:3.800854px;}
.ls26{letter-spacing:3.806854px;}
.ls2d{letter-spacing:4.491008px;}
.ls54{letter-spacing:5.312525px;}
.ls18{letter-spacing:7.179181px;}
.ls19{letter-spacing:9.963181px;}
.ls40{letter-spacing:13.278538px;}
.ls1b{letter-spacing:13.284538px;}
.ls3b{letter-spacing:13.286481px;}
.ls15{letter-spacing:13.790727px;}
.ls4f{letter-spacing:16.268525px;}
.ls3f{letter-spacing:16.272564px;}
.ls1a{letter-spacing:16.273202px;}
.ls7{letter-spacing:16.602538px;}
.ls3d{letter-spacing:16.604400px;}
.ls10{letter-spacing:17.042525px;}
.ls4a{letter-spacing:17.400538px;}
.ls4e{letter-spacing:17.406538px;}
.ls49{letter-spacing:17.408481px;}
.ls59{letter-spacing:17.515559px;}
.ls32{letter-spacing:18.176525px;}
.ls13{letter-spacing:18.930538px;}
.ls39{letter-spacing:19.591202px;}
.ls3e{letter-spacing:19.591409px;}
.lse{letter-spacing:19.594362px;}
.ls2e{letter-spacing:19.680538px;}
.ls4d{letter-spacing:20.394564px;}
.ls3c{letter-spacing:21.914525px;}
.lsc{letter-spacing:22.494557px;}
.ls21{letter-spacing:22.556017px;}
.ls22{letter-spacing:22.561202px;}
.ls2{letter-spacing:22.728538px;}
.ls57{letter-spacing:22.910525px;}
.ls50{letter-spacing:22.916525px;}
.ls55{letter-spacing:24.494338px;}
.ls56{letter-spacing:24.498538px;}
.ls12{letter-spacing:24.637409px;}
.ls14{letter-spacing:26.322538px;}
.ls5c{letter-spacing:26.897468px;}
.ls5d{letter-spacing:26.899559px;}
.ls4c{letter-spacing:26.906400px;}
.ls1{letter-spacing:27.066741px;}
.ls0{letter-spacing:27.067409px;}
.ls36{letter-spacing:27.236525px;}
.ls30{letter-spacing:27.360767px;}
.ls5b{letter-spacing:29.724538px;}
.ls5a{letter-spacing:29.726015px;}
.ls38{letter-spacing:30.030538px;}
.ls48{letter-spacing:31.192893px;}
.ls4{letter-spacing:31.628338px;}
.lsa{letter-spacing:31.880338px;}
.ls4b{letter-spacing:32.222525px;}
.ls37{letter-spacing:33.025202px;}
.ls58{letter-spacing:33.606557px;}
.ls44{letter-spacing:34.674538px;}
.ls47{letter-spacing:36.474538px;}
.ls43{letter-spacing:37.668615px;}
.ls46{letter-spacing:39.458017px;}
.ls35{letter-spacing:39.966538px;}
.ls34{letter-spacing:42.114767px;}
.ls25{letter-spacing:66.330538px;}
.ls53{letter-spacing:77.940538px;}
.ls28{letter-spacing:77.946538px;}
.ls20{letter-spacing:92.186338px;}
.ls27{letter-spacing:241.616338px;}
.ls51{letter-spacing:376.250338px;}
.ls2a{letter-spacing:470.966338px;}
.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;}
}
.ws168{word-spacing:-55.293996px;}
.wsbc{word-spacing:-49.830140px;}
.wsd5{word-spacing:-47.654765px;}
.wsb7{word-spacing:-38.937826px;}
.ws169{word-spacing:-35.389991px;}
.ws40{word-spacing:-16.605662px;}
.ws11b{word-spacing:-15.359443px;}
.ws72{word-spacing:-15.278643px;}
.wse5{word-spacing:-11.201947px;}
.wsa4{word-spacing:-2.917049px;}
.ws3b{word-spacing:-2.857274px;}
.ws136{word-spacing:-2.824416px;}
.wsb9{word-spacing:-2.797498px;}
.ws64{word-spacing:-2.737722px;}
.ws109{word-spacing:-2.677947px;}
.ws115{word-spacing:-2.663021px;}
.ws87{word-spacing:-2.558396px;}
.ws128{word-spacing:-2.501626px;}
.ws114{word-spacing:-2.447827px;}
.ws160{word-spacing:-2.394029px;}
.ws63{word-spacing:-2.199742px;}
.ws147{word-spacing:-2.178835px;}
.ws2a{word-spacing:-2.139966px;}
.ws132{word-spacing:-2.017440px;}
.ws15e{word-spacing:-1.963642px;}
.ws9c{word-spacing:-1.960640px;}
.wsb6{word-spacing:-1.900864px;}
.ws82{word-spacing:-1.781313px;}
.wsf0{word-spacing:-1.601986px;}
.ws29{word-spacing:-1.482435px;}
.ws12c{word-spacing:-1.264262px;}
.ws16d{word-spacing:-1.210464px;}
.ws166{word-spacing:-1.156666px;}
.ws84{word-spacing:-1.130996px;}
.ws43{word-spacing:-1.123781px;}
.ws127{word-spacing:-1.102867px;}
.ws6b{word-spacing:-0.887674px;}
.ws92{word-spacing:-0.884679px;}
.ws73{word-spacing:-0.705352px;}
.ws71{word-spacing:-0.645576px;}
.ws75{word-spacing:-0.526025px;}
.ws59{word-spacing:-0.466250px;}
.ws170{word-spacing:-0.457286px;}
.ws95{word-spacing:-0.406474px;}
.ws93{word-spacing:-0.388091px;}
.ws121{word-spacing:-0.295891px;}
.ws142{word-spacing:-0.188294px;}
.ws37{word-spacing:-0.059776px;}
.ws4c{word-spacing:-0.053798px;}
.wsbf{word-spacing:-0.041843px;}
.ws2e{word-spacing:0.000000px;}
.ws61{word-spacing:0.011955px;}
.ws32{word-spacing:0.026899px;}
.wsc2{word-spacing:0.370609px;}
.ws118{word-spacing:0.403488px;}
.ws58{word-spacing:0.430384px;}
.ws141{word-spacing:0.457286px;}
.ws8d{word-spacing:0.490160px;}
.ws14a{word-spacing:0.511085px;}
.ws9e{word-spacing:0.549936px;}
.ws161{word-spacing:0.575643px;}
.ws62{word-spacing:0.669487px;}
.ws67{word-spacing:0.726278px;}
.ws47{word-spacing:0.729262px;}
.ws5a{word-spacing:0.756523px;}
.ws78{word-spacing:0.789038px;}
.ws45{word-spacing:0.848814px;}
.ws5d{word-spacing:0.908589px;}
.ws131{word-spacing:0.952232px;}
.ws5b{word-spacing:1.028140px;}
.ws22{word-spacing:1.087916px;}
.wsdc{word-spacing:1.147692px;}
.ws165{word-spacing:1.156666px;}
.ws13a{word-spacing:1.264262px;}
.ws27{word-spacing:1.625896px;}
.ws9f{word-spacing:1.685672px;}
.wsa3{word-spacing:1.745448px;}
.ws101{word-spacing:1.748448px;}
.wsef{word-spacing:1.805223px;}
.ws150{word-spacing:1.856045px;}
.ws76{word-spacing:1.864999px;}
.ws110{word-spacing:1.909843px;}
.wse7{word-spacing:1.924774px;}
.wsfe{word-spacing:1.963642px;}
.ws77{word-spacing:2.104101px;}
.wsac{word-spacing:2.163877px;}
.wsff{word-spacing:2.178835px;}
.wsb4{word-spacing:2.223652px;}
.ws15d{word-spacing:2.286432px;}
.ws35{word-spacing:2.343204px;}
.ws130{word-spacing:2.458587px;}
.ws4a{word-spacing:2.462755px;}
.wsd1{word-spacing:2.522530px;}
.ws104{word-spacing:2.609222px;}
.ws3c{word-spacing:2.642082px;}
.ws13f{word-spacing:2.663021px;}
.ws1c{word-spacing:2.716819px;}
.ws10a{word-spacing:2.821408px;}
.wscb{word-spacing:2.881184px;}
.ws50{word-spacing:2.932013px;}
.ws81{word-spacing:2.940960px;}
.wsbd{word-spacing:2.970421px;}
.wseb{word-spacing:3.000735px;}
.ws1d{word-spacing:3.039610px;}
.ws154{word-spacing:3.068049px;}
.ws144{word-spacing:3.071708px;}
.ws12a{word-spacing:3.074590px;}
.ws15f{word-spacing:3.089998px;}
.ws34{word-spacing:3.093408px;}
.ws6f{word-spacing:3.201005px;}
.ws26{word-spacing:3.299613px;}
.ws134{word-spacing:3.308602px;}
.wsd0{word-spacing:3.359389px;}
.ws149{word-spacing:3.416198px;}
.wsf1{word-spacing:3.478940px;}
.ws13c{word-spacing:3.577594px;}
.ws9d{word-spacing:3.598491px;}
.ws116{word-spacing:3.631392px;}
.ws2d{word-spacing:3.718042px;}
.ws3f{word-spacing:3.777818px;}
.ws111{word-spacing:3.900384px;}
.ws13d{word-spacing:3.954182px;}
.wsf4{word-spacing:3.957145px;}
.ws57{word-spacing:4.016920px;}
.ws13b{word-spacing:4.061779px;}
.ws164{word-spacing:4.115578px;}
.wsdb{word-spacing:4.136472px;}
.ws4f{word-spacing:4.223174px;}
.ws159{word-spacing:4.276973px;}
.ws14e{word-spacing:4.330771px;}
.ws91{word-spacing:4.435350px;}
.ws0{word-spacing:4.483200px;}
.ws11f{word-spacing:4.492166px;}
.ws152{word-spacing:4.545965px;}
.wsa0{word-spacing:4.554901px;}
.ws139{word-spacing:4.599763px;}
.wsaa{word-spacing:4.614676px;}
.wsae{word-spacing:4.674452px;}
.ws8e{word-spacing:4.734228px;}
.ws28{word-spacing:4.794003px;}
.ws69{word-spacing:4.814957px;}
.wsb8{word-spacing:4.853779px;}
.ws13e{word-spacing:4.868755px;}
.wsa2{word-spacing:4.913554px;}
.ws1f{word-spacing:5.033106px;}
.wsc5{word-spacing:5.152657px;}
.wsc6{word-spacing:5.212432px;}
.ws133{word-spacing:5.245344px;}
.ws10f{word-spacing:5.352941px;}
.ws5c{word-spacing:5.391759px;}
.wsa9{word-spacing:5.451535px;}
.ws12e{word-spacing:5.514336px;}
.ws90{word-spacing:5.571086px;}
.ws51{word-spacing:5.675731px;}
.wsc3{word-spacing:5.810188px;}
.wsaf{word-spacing:5.837126px;}
.ws53{word-spacing:5.890925px;}
.ws10b{word-spacing:5.929740px;}
.ws54{word-spacing:5.944723px;}
.ws96{word-spacing:5.989515px;}
.ws15c{word-spacing:5.998522px;}
.wsea{word-spacing:6.049291px;}
.wsfd{word-spacing:6.052320px;}
.wse2{word-spacing:6.062589px;}
.wsfa{word-spacing:6.070437px;}
.wsde{word-spacing:6.074974px;}
.ws14f{word-spacing:6.106118px;}
.ws123{word-spacing:6.267514px;}
.ws68{word-spacing:6.321312px;}
.ws44{word-spacing:6.467720px;}
.ws4d{word-spacing:6.477191px;}
.ws4b{word-spacing:6.482707px;}
.ws23{word-spacing:6.587271px;}
.ws1{word-spacing:6.647047px;}
.ws12d{word-spacing:6.697901px;}
.ws24{word-spacing:6.706822px;}
.ws19{word-spacing:6.805498px;}
.ws86{word-spacing:6.826374px;}
.ws137{word-spacing:6.913094px;}
.ws42{word-spacing:6.945925px;}
.ws25{word-spacing:7.005700px;}
.ws108{word-spacing:7.125252px;}
.ws1a{word-spacing:7.289683px;}
.wsb5{word-spacing:7.364354px;}
.wsf9{word-spacing:7.397280px;}
.ws83{word-spacing:7.483905px;}
.ws167{word-spacing:7.504877px;}
.ws46{word-spacing:7.603456px;}
.wse6{word-spacing:7.635743px;}
.wsc9{word-spacing:7.663232px;}
.wsd9{word-spacing:7.782783px;}
.wsd8{word-spacing:7.788299px;}
.wsec{word-spacing:7.842559px;}
.ws89{word-spacing:7.902334px;}
.ws106{word-spacing:8.021886px;}
.wsed{word-spacing:8.081661px;}
.ws140{word-spacing:8.096659px;}
.ws16{word-spacing:8.107419px;}
.ws107{word-spacing:8.141437px;}
.ws56{word-spacing:8.201212px;}
.wsa8{word-spacing:8.260988px;}
.wsa1{word-spacing:8.320764px;}
.ws12f{word-spacing:8.365651px;}
.wsb1{word-spacing:8.419450px;}
.ws143{word-spacing:8.580845px;}
.ws74{word-spacing:8.619642px;}
.ws33{word-spacing:8.634643px;}
.ws7e{word-spacing:8.679417px;}
.ws2{word-spacing:8.699201px;}
.ws80{word-spacing:8.739193px;}
.ws117{word-spacing:8.796038px;}
.ws98{word-spacing:8.798968px;}
.ws14{word-spacing:8.806798px;}
.ws8b{word-spacing:8.858744px;}
.ws129{word-spacing:8.903635px;}
.ws102{word-spacing:9.118829px;}
.wsb2{word-spacing:9.157622px;}
.ws7b{word-spacing:9.217398px;}
.ws11c{word-spacing:9.226426px;}
.wsd4{word-spacing:9.375089px;}
.ws49{word-spacing:9.396724px;}
.ws171{word-spacing:9.441619px;}
.ws9b{word-spacing:9.456500px;}
.wsf5{word-spacing:9.495418px;}
.wsda{word-spacing:9.508872px;}
.ws70{word-spacing:9.549216px;}
.wsf7{word-spacing:9.556531px;}
.ws7d{word-spacing:9.635827px;}
.ws31{word-spacing:9.656813px;}
.ws7a{word-spacing:9.695602px;}
.ws2f{word-spacing:9.710611px;}
.ws16b{word-spacing:9.764410px;}
.ws8c{word-spacing:9.934705px;}
.wsa{word-spacing:9.936564px;}
.wse{word-spacing:9.990363px;}
.wse3{word-spacing:9.993477px;}
.wsa6{word-spacing:9.994480px;}
.wsa7{word-spacing:10.114032px;}
.wsf3{word-spacing:10.353134px;}
.ws12b{word-spacing:10.463789px;}
.wsee{word-spacing:10.472685px;}
.ws14d{word-spacing:10.517587px;}
.ws8a{word-spacing:10.532461px;}
.wsc{word-spacing:10.582145px;}
.ws155{word-spacing:10.625184px;}
.ws3d{word-spacing:10.652012px;}
.ws88{word-spacing:10.771563px;}
.ws162{word-spacing:10.786579px;}
.ws1b{word-spacing:10.840378px;}
.wsab{word-spacing:10.891114px;}
.ws18{word-spacing:10.904936px;}
.ws153{word-spacing:11.109370px;}
.ws163{word-spacing:11.163168px;}
.ws10c{word-spacing:11.189992px;}
.ws145{word-spacing:11.216966px;}
.ws12{word-spacing:11.227726px;}
.ws105{word-spacing:11.309544px;}
.ws112{word-spacing:11.324563px;}
.wsca{word-spacing:11.369319px;}
.ws41{word-spacing:11.429095px;}
.ws4{word-spacing:11.442920px;}
.ws146{word-spacing:11.485958px;}
.ws79{word-spacing:11.488870px;}
.ws6e{word-spacing:11.593555px;}
.ws48{word-spacing:11.907300px;}
.ws148{word-spacing:12.077741px;}
.wsd7{word-spacing:12.086626px;}
.ws8{word-spacing:12.142299px;}
.wse9{word-spacing:12.206178px;}
.ws125{word-spacing:12.239136px;}
.ws99{word-spacing:12.325729px;}
.ws7c{word-spacing:12.505056px;}
.ws6d{word-spacing:12.669523px;}
.ws36{word-spacing:12.682003px;}
.ws38{word-spacing:12.684382px;}
.ws5e{word-spacing:12.803934px;}
.ws5f{word-spacing:12.856004px;}
.ws60{word-spacing:12.863709px;}
.ws66{word-spacing:12.923485px;}
.ws113{word-spacing:12.938515px;}
.ws6{word-spacing:12.949275px;}
.ws3e{word-spacing:13.282138px;}
.wsd2{word-spacing:13.341914px;}
.ws10{word-spacing:13.487259px;}
.ws15a{word-spacing:13.530298px;}
.ws39{word-spacing:13.581016px;}
.wscd{word-spacing:13.628137px;}
.wscf{word-spacing:13.640792px;}
.wsad{word-spacing:13.700568px;}
.ws65{word-spacing:13.999446px;}
.wsb3{word-spacing:14.059221px;}
.wsd3{word-spacing:14.178772px;}
.wsb{word-spacing:14.238548px;}
.ws11{word-spacing:14.417875px;}
.ws2b{word-spacing:14.437932px;}
.ws15{word-spacing:14.537426px;}
.ws3{word-spacing:14.597202px;}
.wsd{word-spacing:14.716753px;}
.ws21{word-spacing:14.955855px;}
.wsd6{word-spacing:15.254733px;}
.ws85{word-spacing:15.421932px;}
.ws138{word-spacing:15.467040px;}
.ws120{word-spacing:15.736032px;}
.ws94{word-spacing:16.141932px;}
.ws151{word-spacing:16.220218px;}
.ws10d{word-spacing:16.330694px;}
.ws16c{word-spacing:16.489210px;}
.ws7{word-spacing:16.510021px;}
.ws20{word-spacing:16.569796px;}
.wsba{word-spacing:16.737469px;}
.wsf{word-spacing:17.167552px;}
.wsc7{word-spacing:17.327564px;}
.wsc8{word-spacing:17.346879px;}
.ws17{word-spacing:17.406655px;}
.ws13{word-spacing:17.466430px;}
.ws135{word-spacing:17.511379px;}
.ws124{word-spacing:17.618976px;}
.ws9{word-spacing:17.645757px;}
.ws14b{word-spacing:17.834170px;}
.ws5{word-spacing:18.183738px;}
.ws55{word-spacing:18.384415px;}
.ws9a{word-spacing:18.721718px;}
.ws16e{word-spacing:18.748742px;}
.wsc4{word-spacing:18.781494px;}
.ws10e{word-spacing:19.125331px;}
.wsbe{word-spacing:19.552099px;}
.wsdf{word-spacing:19.866284px;}
.ws122{word-spacing:19.878509px;}
.ws157{word-spacing:19.932307px;}
.ws11a{word-spacing:19.986106px;}
.ws100{word-spacing:20.120602px;}
.ws11e{word-spacing:20.846880px;}
.ws52{word-spacing:21.013569px;}
.ws1e{word-spacing:21.142771px;}
.wsb0{word-spacing:21.169569px;}
.ws8f{word-spacing:21.295932px;}
.wsfc{word-spacing:21.382401px;}
.ws4e{word-spacing:21.798415px;}
.ws158{word-spacing:22.353235px;}
.ws2c{word-spacing:23.119554px;}
.ws6a{word-spacing:23.187110px;}
.ws15b{word-spacing:23.698195px;}
.wsc0{word-spacing:24.237743px;}
.ws103{word-spacing:24.399552px;}
.ws126{word-spacing:24.558970px;}
.wsfb{word-spacing:24.639667px;}
.wsf6{word-spacing:24.829058px;}
.wsf8{word-spacing:24.835569px;}
.ws30{word-spacing:24.991569px;}
.ws7f{word-spacing:25.261932px;}
.ws97{word-spacing:25.339554px;}
.ws11d{word-spacing:25.419744px;}
.wsa5{word-spacing:26.568305px;}
.ws14c{word-spacing:27.733075px;}
.ws6c{word-spacing:27.979599px;}
.ws156{word-spacing:28.916640px;}
.ws3a{word-spacing:30.127932px;}
.wse4{word-spacing:30.682099px;}
.wsf2{word-spacing:30.903985px;}
.ws16f{word-spacing:32.736326px;}
.ws119{word-spacing:33.166714px;}
.wsce{word-spacing:33.171469px;}
.ws16a{word-spacing:36.394618px;}
.wse1{word-spacing:37.455391px;}
.wsdd{word-spacing:39.987469px;}
.wsc1{word-spacing:44.903431px;}
.wsbb{word-spacing:48.526905px;}
.wse8{word-spacing:59.739795px;}
.wse0{word-spacing:59.779834px;}
.wscc{word-spacing:246.061968px;}
._2{margin-left:-38.160998px;}
._a{margin-left:-29.069058px;}
._23{margin-left:-27.664133px;}
._d{margin-left:-25.428710px;}
._26{margin-left:-24.269256px;}
._1{margin-left:-6.742733px;}
._5{margin-left:-4.961375px;}
._4{margin-left:-3.371366px;}
._0{margin-left:-2.223667px;}
._6{margin-left:-1.123766px;}
._8{width:1.613941px;}
._20{width:3.347434px;}
._17{width:4.913587px;}
._25{width:13.557208px;}
._14{width:15.063451px;}
._18{width:17.245375px;}
._10{width:18.841284px;}
._c{width:21.160715px;}
._1a{width:22.398067px;}
._3{width:24.301481px;}
._b{width:26.000023px;}
._7{width:27.526848px;}
._16{width:28.584905px;}
._9{width:29.601042px;}
._13{width:31.692485px;}
._19{width:33.380165px;}
._15{width:34.807565px;}
._f{width:36.582667px;}
._1c{width:39.357262px;}
._12{width:41.221507px;}
._1e{width:42.978564px;}
._11{width:44.329882px;}
._1d{width:46.505417px;}
._e{width:48.771205px;}
._1b{width:50.212057px;}
._27{width:51.251725px;}
._1f{width:54.228439px;}
._21{width:58.759415px;}
._24{width:60.738533px;}
._22{width:71.850271px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.yc1{bottom:101.668500px;}
.y27{bottom:102.664500px;}
.y9e{bottom:105.652500px;}
.y41{bottom:105.654000px;}
.y15c{bottom:106.399500px;}
.y147{bottom:106.401000px;}
.y26{bottom:120.597000px;}
.y146{bottom:122.091000px;}
.y40{bottom:123.586500px;}
.y10d{bottom:127.059000px;}
.y10c{bottom:137.035500px;}
.y145{bottom:137.782500px;}
.y25{bottom:138.531000px;}
.y3f{bottom:141.519000px;}
.yb4{bottom:150.738000px;}
.y10b{bottom:152.727000px;}
.y144{bottom:153.474000px;}
.y24{bottom:156.463500px;}
.y3e{bottom:159.451500px;}
.yb5{bottom:160.989000px;}
.y15b{bottom:169.164000px;}
.y143{bottom:169.165500px;}
.yb3{bottom:171.097500px;}
.y10a{bottom:174.132000px;}
.y23{bottom:174.396000px;}
.y3d{bottom:177.384000px;}
.yf2{bottom:177.385500px;}
.y59{bottom:183.678000px;}
.y15a{bottom:184.855500px;}
.y142{bottom:184.857000px;}
.y22{bottom:192.328500px;}
.y3c{bottom:195.318000px;}
.y36{bottom:195.903000px;}
.yb2{bottom:199.221000px;}
.y141{bottom:200.547000px;}
.y58{bottom:201.610500px;}
.y9d{bottom:202.641000px;}
.y51{bottom:208.990500px;}
.y3b{bottom:213.250500px;}
.y35{bottom:213.835500px;}
.yf1{bottom:216.052500px;}
.y140{bottom:216.238500px;}
.yb1{bottom:217.153500px;}
.y57{bottom:219.543000px;}
.y9c{bottom:220.575000px;}
.y28{bottom:221.469000px;}
.y50{bottom:226.923000px;}
.y3a{bottom:231.183000px;}
.y34{bottom:231.768000px;}
.y13f{bottom:231.930000px;}
.yf0{bottom:233.985000px;}
.yb0{bottom:235.086000px;}
.y56{bottom:237.477000px;}
.y9b{bottom:238.507500px;}
.y21{bottom:239.401500px;}
.y4f{bottom:244.855500px;}
.y159{bottom:247.620000px;}
.y13e{bottom:247.621500px;}
.y39{bottom:249.115500px;}
.y33{bottom:249.700500px;}
.y109{bottom:251.356500px;}
.yef{bottom:251.917500px;}
.yaf{bottom:253.018500px;}
.y55{bottom:255.409500px;}
.y9a{bottom:256.440000px;}
.y4e{bottom:262.788000px;}
.y13d{bottom:263.311500px;}
.y38{bottom:267.048000px;}
.y32{bottom:267.633000px;}
.y108{bottom:269.290500px;}
.yee{bottom:269.850000px;}
.yae{bottom:270.951000px;}
.y54{bottom:273.342000px;}
.y99{bottom:274.372500px;}
.y13c{bottom:279.003000px;}
.y4d{bottom:280.720500px;}
.y37{bottom:284.980500px;}
.yc0{bottom:284.982000px;}
.y31{bottom:285.567000px;}
.y71{bottom:286.558500px;}
.y107{bottom:287.223000px;}
.yed{bottom:287.782500px;}
.yad{bottom:288.885000px;}
.y53{bottom:291.274500px;}
.y98{bottom:292.305000px;}
.y13b{bottom:294.694500px;}
.y4c{bottom:298.653000px;}
.yec{bottom:302.007000px;}
.ybf{bottom:302.914500px;}
.y30{bottom:303.499500px;}
.y70{bottom:304.491000px;}
.y106{bottom:305.155500px;}
.yeb{bottom:305.715000px;}
.yac{bottom:306.817500px;}
.y97{bottom:310.237500px;}
.y158{bottom:310.384500px;}
.y13a{bottom:310.386000px;}
.y4b{bottom:316.587000px;}
.ybe{bottom:320.847000px;}
.y2f{bottom:321.432000px;}
.y6f{bottom:322.425000px;}
.y105{bottom:323.088000px;}
.yea{bottom:323.649000px;}
.yab{bottom:324.750000px;}
.y157{bottom:326.076000px;}
.y139{bottom:326.077500px;}
.y96{bottom:328.171500px;}
.y20{bottom:332.055000px;}
.y4a{bottom:334.519500px;}
.y52{bottom:336.760500px;}
.ybd{bottom:338.779500px;}
.y2e{bottom:339.364500px;}
.y6e{bottom:340.357500px;}
.y104{bottom:341.020500px;}
.ye9{bottom:341.581500px;}
.y138{bottom:341.767500px;}
.yaa{bottom:342.682500px;}
.y95{bottom:346.104000px;}
.y1f{bottom:347.746500px;}
.y49{bottom:352.452000px;}
.y137{bottom:357.459000px;}
.y6d{bottom:358.290000px;}
.y103{bottom:358.954500px;}
.ye8{bottom:359.514000px;}
.ya9{bottom:360.615000px;}
.y1e{bottom:363.436500px;}
.ybc{bottom:367.435500px;}
.y94{bottom:371.361000px;}
.y136{bottom:373.150500px;}
.y6c{bottom:376.222500px;}
.y102{bottom:376.887000px;}
.ye7{bottom:377.446500px;}
.ybb{bottom:377.686500px;}
.ya8{bottom:378.547500px;}
.y1d{bottom:379.128000px;}
.y156{bottom:388.840500px;}
.y135{bottom:388.842000px;}
.y93{bottom:389.293500px;}
.y6b{bottom:394.155000px;}
.y1c{bottom:394.819500px;}
.ye6{bottom:395.379000px;}
.ya7{bottom:396.481500px;}
.y134{bottom:404.532000px;}
.y92{bottom:407.226000px;}
.y6a{bottom:412.087500px;}
.y101{bottom:412.752000px;}
.ye5{bottom:413.313000px;}
.ya6{bottom:414.414000px;}
.y2d{bottom:414.457500px;}
.yba{bottom:416.368500px;}
.y133{bottom:420.223500px;}
.y91{bottom:425.158500px;}
.y1b{bottom:425.454000px;}
.y48{bottom:427.545000px;}
.y69{bottom:430.021500px;}
.y2c{bottom:430.149000px;}
.y100{bottom:430.684500px;}
.ye4{bottom:431.245500px;}
.ya5{bottom:432.346500px;}
.y132{bottom:435.915000px;}
.y1a{bottom:441.145500px;}
.yb9{bottom:442.783500px;}
.y90{bottom:443.092500px;}
.y47{bottom:443.236500px;}
.y2b{bottom:445.840500px;}
.yb8{bottom:446.461500px;}
.y68{bottom:447.954000px;}
.yff{bottom:448.617000px;}
.yb7{bottom:449.013000px;}
.ye3{bottom:449.178000px;}
.y155{bottom:451.605000px;}
.y131{bottom:451.606500px;}
.y46{bottom:458.928000px;}
.yb6{bottom:459.262500px;}
.y8f{bottom:461.025000px;}
.y2a{bottom:461.532000px;}
.y67{bottom:465.886500px;}
.yfe{bottom:466.551000px;}
.ye2{bottom:467.110500px;}
.y154{bottom:467.296500px;}
.y130{bottom:467.298000px;}
.ya4{bottom:471.538500px;}
.y45{bottom:474.619500px;}
.y19{bottom:477.759000px;}
.y8e{bottom:478.957500px;}
.y12f{bottom:482.988000px;}
.y66{bottom:483.819000px;}
.ye1{bottom:485.043000px;}
.ya3{bottom:487.230000px;}
.y44{bottom:490.309500px;}
.y18{bottom:493.449000px;}
.y8d{bottom:496.890000px;}
.y12e{bottom:498.679500px;}
.ya2{bottom:502.921500px;}
.ye0{bottom:502.975500px;}
.y65{bottom:503.329500px;}
.y43{bottom:506.001000px;}
.y12d{bottom:514.371000px;}
.y8c{bottom:514.822500px;}
.y64{bottom:521.262000px;}
.y42{bottom:521.692500px;}
.yfd{bottom:527.506500px;}
.y153{bottom:530.061000px;}
.y17{bottom:530.062500px;}
.y8b{bottom:532.756500px;}
.ydf{bottom:541.644000px;}
.yfc{bottom:543.198000px;}
.y12c{bottom:545.752500px;}
.y16{bottom:545.754000px;}
.y8a{bottom:550.689000px;}
.ya1{bottom:554.104500px;}
.yfb{bottom:558.889500px;}
.yde{bottom:559.576500px;}
.y12b{bottom:561.444000px;}
.y89{bottom:568.621500px;}
.ya0{bottom:569.796000px;}
.yfa{bottom:574.581000px;}
.y63{bottom:575.601000px;}
.y12a{bottom:577.135500px;}
.ydd{bottom:577.509000px;}
.y15{bottom:582.366000px;}
.y9f{bottom:585.486000px;}
.y88{bottom:586.554000px;}
.yda{bottom:590.211000px;}
.yf9{bottom:590.272500px;}
.y62{bottom:591.292500px;}
.y152{bottom:592.825500px;}
.y129{bottom:592.827000px;}
.yd9{bottom:593.889000px;}
.ydc{bottom:596.440500px;}
.y14{bottom:598.057500px;}
.y87{bottom:604.486500px;}
.yf8{bottom:605.962500px;}
.yd8{bottom:606.690000px;}
.ydb{bottom:606.691500px;}
.y61{bottom:606.984000px;}
.y151{bottom:608.517000px;}
.y128{bottom:608.518500px;}
.yf7{bottom:621.654000px;}
.y86{bottom:622.419000px;}
.y60{bottom:622.674000px;}
.y127{bottom:624.208500px;}
.y13{bottom:634.669500px;}
.yf6{bottom:637.345500px;}
.y5f{bottom:638.365500px;}
.y126{bottom:639.900000px;}
.y85{bottom:640.353000px;}
.yd7{bottom:644.749500px;}
.y12{bottom:650.361000px;}
.yf5{bottom:653.037000px;}
.y5e{bottom:654.057000px;}
.y125{bottom:655.591500px;}
.y84{bottom:658.285500px;}
.yf4{bottom:668.727000px;}
.y5d{bottom:669.748500px;}
.y150{bottom:671.281500px;}
.y124{bottom:671.283000px;}
.yd6{bottom:672.922500px;}
.yd5{bottom:676.600500px;}
.y83{bottom:683.542500px;}
.yf3{bottom:684.418500px;}
.y5c{bottom:685.438500px;}
.y123{bottom:686.973000px;}
.y11{bottom:686.974500px;}
.y5b{bottom:701.130000px;}
.y82{bottom:701.475000px;}
.y10{bottom:702.664500px;}
.yd4{bottom:708.451500px;}
.y5a{bottom:716.821500px;}
.y122{bottom:718.356000px;}
.y81{bottom:719.407500px;}
.yd3{bottom:726.384000px;}
.y14f{bottom:734.046000px;}
.y121{bottom:734.047500px;}
.y80{bottom:737.340000px;}
.yf{bottom:739.278000px;}
.yd2{bottom:744.318000px;}
.y14e{bottom:749.737500px;}
.y120{bottom:749.739000px;}
.ye{bottom:754.969500px;}
.y7f{bottom:755.274000px;}
.yd1{bottom:758.541000px;}
.yd0{bottom:762.250500px;}
.y11f{bottom:765.429000px;}
.y7e{bottom:773.206500px;}
.ycf{bottom:780.183000px;}
.y11e{bottom:781.120500px;}
.y7d{bottom:791.139000px;}
.yd{bottom:791.581500px;}
.y11d{bottom:796.812000px;}
.yce{bottom:798.115500px;}
.yc{bottom:807.273000px;}
.y14d{bottom:812.502000px;}
.y11c{bottom:812.503500px;}
.ycd{bottom:816.048000px;}
.y11b{bottom:828.193500px;}
.ycc{bottom:833.980500px;}
.y7c{bottom:837.655500px;}
.yb{bottom:843.885000px;}
.ycb{bottom:851.914500px;}
.ya{bottom:859.576500px;}
.yca{bottom:869.847000px;}
.y14c{bottom:875.266500px;}
.y11a{bottom:875.268000px;}
.yc9{bottom:887.779500px;}
.y14b{bottom:890.958000px;}
.y119{bottom:890.959500px;}
.y9{bottom:896.190000px;}
.yc8{bottom:905.712000px;}
.y118{bottom:906.649500px;}
.y8{bottom:911.880000px;}
.y117{bottom:922.341000px;}
.yc7{bottom:923.644500px;}
.y7b{bottom:926.224500px;}
.y116{bottom:938.032500px;}
.yc6{bottom:941.578500px;}
.y7a{bottom:944.157000px;}
.y7{bottom:948.493500px;}
.y14a{bottom:953.722500px;}
.y115{bottom:953.724000px;}
.yc5{bottom:959.511000px;}
.y79{bottom:962.089500px;}
.y6{bottom:964.185000px;}
.y114{bottom:969.414000px;}
.y78{bottom:980.022000px;}
.y113{bottom:985.105500px;}
.yc4{bottom:987.376500px;}
.yc3{bottom:987.667500px;}
.yc2{bottom:991.362000px;}
.y77{bottom:997.954500px;}
.y5{bottom:1000.797000px;}
.y149{bottom:1016.487000px;}
.y4{bottom:1016.488500px;}
.y76{bottom:1023.213000px;}
.y148{bottom:1032.178500px;}
.y112{bottom:1032.180000px;}
.y75{bottom:1041.145500px;}
.y111{bottom:1047.870000px;}
.y3{bottom:1053.100500px;}
.y74{bottom:1059.078000px;}
.y110{bottom:1063.561500px;}
.y2{bottom:1074.022500px;}
.y73{bottom:1077.010500px;}
.y10f{bottom:1079.253000px;}
.y72{bottom:1094.943000px;}
.y1{bottom:1094.944500px;}
.y10e{bottom:1100.658000px;}
.y29{bottom:1133.799000px;}
.h18{height:25.249382px;}
.hd{height:29.457331px;}
.h3{height:38.519654px;}
.h5{height:40.348800px;}
.h19{height:40.402598px;}
.h4{height:44.831700px;}
.he{height:46.725331px;}
.h1{height:50.498765px;}
.h2{height:51.147331px;}
.h6{height:51.153331px;}
.h11{height:54.135331px;}
.hf{height:55.029331px;}
.hc{height:58.179331px;}
.h15{height:58.185331px;}
.h10{height:60.773700px;}
.h14{height:65.985331px;}
.h16{height:68.853331px;}
.h12{height:69.807331px;}
.h13{height:70.077331px;}
.h17{height:85.265700px;}
.hb{height:85.271700px;}
.h8{height:86.673024px;}
.h9{height:86.679024px;}
.ha{height:101.355331px;}
.h7{height:127.677024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:81.000000px;}
.x40{left:87.912000px;}
.x38{left:93.046500px;}
.x1b{left:95.944500px;}
.x24{left:97.762500px;}
.x3d{left:102.361500px;}
.x3f{left:108.480000px;}
.x25{left:124.935000px;}
.x26{left:140.865000px;}
.x17{left:148.089000px;}
.x39{left:156.150000px;}
.x4{left:157.234500px;}
.x5{left:163.723500px;}
.x15{left:166.117500px;}
.x33{left:171.348000px;}
.x19{left:177.015000px;}
.x3a{left:183.462000px;}
.x1a{left:191.790000px;}
.x36{left:194.157000px;}
.xd{left:197.292000px;}
.x37{left:201.538500px;}
.x34{left:207.970500px;}
.xf{left:213.889500px;}
.x35{left:219.079500px;}
.x18{left:223.431000px;}
.x13{left:231.841500px;}
.x7{left:237.372000px;}
.x12{left:249.967500px;}
.x27{left:253.777500px;}
.xb{left:256.530000px;}
.x3{left:274.458000px;}
.x2{left:277.456500px;}
.x9{left:278.584500px;}
.xe{left:332.556000px;}
.x1{left:335.074500px;}
.x16{left:338.751000px;}
.x6{left:340.011000px;}
.x10{left:342.325500px;}
.x3b{left:376.134000px;}
.xa{left:384.031500px;}
.x11{left:399.204000px;}
.x14{left:405.673500px;}
.xc{left:410.050500px;}
.x8{left:421.714500px;}
.x3c{left:429.526500px;}
.x1d{left:475.521000px;}
.x23{left:487.147500px;}
.x1e{left:490.464000px;}
.x20{left:494.040000px;}
.x21{left:496.188000px;}
.x3e{left:503.001000px;}
.x28{left:555.019500px;}
.x22{left:598.479000px;}
.x2f{left:612.357000px;}
.x29{left:627.876000px;}
.x2a{left:657.828000px;}
.x30{left:665.805000px;}
.x31{left:702.154500px;}
.x2b{left:711.381000px;}
.x2c{left:728.947500px;}
.x2d{left:736.330500px;}
.x2e{left:759.492000px;}
.x32{left:760.699500px;}
.x1f{left:835.669500px;}
@media print{
.vf{vertical-align:-21.941333pt;}
.v11{vertical-align:-20.314667pt;}
.v2{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:7.968000pt;}
.vc{vertical-align:13.136000pt;}
.vb{vertical-align:14.170667pt;}
.va{vertical-align:15.349333pt;}
.v1{vertical-align:19.280000pt;}
.v8{vertical-align:21.936000pt;}
.v9{vertical-align:25.530667pt;}
.vd{vertical-align:32.469333pt;}
.ve{vertical-align:35.018667pt;}
.v3{vertical-align:36.448000pt;}
.v6{vertical-align:64.421333pt;}
.v5{vertical-align:72.389333pt;}
.v7{vertical-align:74.917333pt;}
.v4{vertical-align:111.365333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000271pt;}
.ls8{letter-spacing:0.000479pt;}
.ls24{letter-spacing:0.000501pt;}
.ls6{letter-spacing:0.000594pt;}
.lsd{letter-spacing:0.000681pt;}
.ls1d{letter-spacing:0.000882pt;}
.ls5e{letter-spacing:0.000891pt;}
.ls23{letter-spacing:0.001873pt;}
.ls9{letter-spacing:0.002079pt;}
.ls2b{letter-spacing:0.002820pt;}
.ls1f{letter-spacing:0.002906pt;}
.ls3a{letter-spacing:0.003733pt;}
.ls29{letter-spacing:0.005138pt;}
.ls45{letter-spacing:0.006216pt;}
.ls5{letter-spacing:1.403090pt;}
.ls31{letter-spacing:1.474820pt;}
.lsf{letter-spacing:1.671842pt;}
.ls2f{letter-spacing:1.904681pt;}
.ls2c{letter-spacing:1.910015pt;}
.ls1e{letter-spacing:2.652911pt;}
.ls17{letter-spacing:2.657069pt;}
.ls11{letter-spacing:2.657253pt;}
.ls1c{letter-spacing:2.657793pt;}
.ls33{letter-spacing:2.658245pt;}
.ls41{letter-spacing:2.662402pt;}
.lsb{letter-spacing:2.662586pt;}
.ls16{letter-spacing:2.953897pt;}
.ls52{letter-spacing:3.378537pt;}
.ls26{letter-spacing:3.383870pt;}
.ls2d{letter-spacing:3.992007pt;}
.ls54{letter-spacing:4.722245pt;}
.ls18{letter-spacing:6.381494pt;}
.ls19{letter-spacing:8.856161pt;}
.ls40{letter-spacing:11.803145pt;}
.ls1b{letter-spacing:11.808479pt;}
.ls3b{letter-spacing:11.810205pt;}
.ls15{letter-spacing:12.258424pt;}
.ls4f{letter-spacing:14.460911pt;}
.ls3f{letter-spacing:14.464501pt;}
.ls1a{letter-spacing:14.465069pt;}
.ls7{letter-spacing:14.757812pt;}
.ls3d{letter-spacing:14.759467pt;}
.ls10{letter-spacing:15.148911pt;}
.ls4a{letter-spacing:15.467145pt;}
.ls4e{letter-spacing:15.472479pt;}
.ls49{letter-spacing:15.474205pt;}
.ls59{letter-spacing:15.569386pt;}
.ls32{letter-spacing:16.156911pt;}
.ls13{letter-spacing:16.827145pt;}
.ls39{letter-spacing:17.414402pt;}
.ls3e{letter-spacing:17.414586pt;}
.lse{letter-spacing:17.417211pt;}
.ls2e{letter-spacing:17.493812pt;}
.ls4d{letter-spacing:18.128501pt;}
.ls3c{letter-spacing:19.479578pt;}
.lsc{letter-spacing:19.995162pt;}
.ls21{letter-spacing:20.049793pt;}
.ls22{letter-spacing:20.054402pt;}
.ls2{letter-spacing:20.203145pt;}
.ls57{letter-spacing:20.364911pt;}
.ls50{letter-spacing:20.370245pt;}
.ls55{letter-spacing:21.772745pt;}
.ls56{letter-spacing:21.776479pt;}
.ls12{letter-spacing:21.899919pt;}
.ls14{letter-spacing:23.397812pt;}
.ls5c{letter-spacing:23.908861pt;}
.ls5d{letter-spacing:23.910719pt;}
.ls4c{letter-spacing:23.916800pt;}
.ls1{letter-spacing:24.059326pt;}
.ls0{letter-spacing:24.059919pt;}
.ls36{letter-spacing:24.210245pt;}
.ls30{letter-spacing:24.320681pt;}
.ls5b{letter-spacing:26.421812pt;}
.ls5a{letter-spacing:26.423124pt;}
.ls38{letter-spacing:26.693812pt;}
.ls48{letter-spacing:27.727016pt;}
.ls4{letter-spacing:28.114079pt;}
.lsa{letter-spacing:28.338079pt;}
.ls4b{letter-spacing:28.642245pt;}
.ls37{letter-spacing:29.355735pt;}
.ls58{letter-spacing:29.872495pt;}
.ls44{letter-spacing:30.821812pt;}
.ls47{letter-spacing:32.421812pt;}
.ls43{letter-spacing:33.483213pt;}
.ls46{letter-spacing:35.073793pt;}
.ls35{letter-spacing:35.525812pt;}
.ls34{letter-spacing:37.435348pt;}
.ls25{letter-spacing:58.960479pt;}
.ls53{letter-spacing:69.280479pt;}
.ls28{letter-spacing:69.285812pt;}
.ls20{letter-spacing:81.943412pt;}
.ls27{letter-spacing:214.770079pt;}
.ls51{letter-spacing:334.444745pt;}
.ls2a{letter-spacing:418.636745pt;}
.ws168{word-spacing:-49.150218pt;}
.wsbc{word-spacing:-44.293458pt;}
.wsd5{word-spacing:-42.359791pt;}
.wsb7{word-spacing:-34.611401pt;}
.ws169{word-spacing:-31.457770pt;}
.ws40{word-spacing:-14.760588pt;}
.ws11b{word-spacing:-13.652838pt;}
.ws72{word-spacing:-13.581016pt;}
.wse5{word-spacing:-9.957287pt;}
.wsa4{word-spacing:-2.592933pt;}
.ws3b{word-spacing:-2.539799pt;}
.ws136{word-spacing:-2.510592pt;}
.wsb9{word-spacing:-2.486665pt;}
.ws64{word-spacing:-2.433531pt;}
.ws109{word-spacing:-2.380397pt;}
.ws115{word-spacing:-2.367130pt;}
.ws87{word-spacing:-2.274129pt;}
.ws128{word-spacing:-2.223667pt;}
.ws114{word-spacing:-2.175846pt;}
.ws160{word-spacing:-2.128026pt;}
.ws63{word-spacing:-1.955326pt;}
.ws147{word-spacing:-1.936742pt;}
.ws2a{word-spacing:-1.902192pt;}
.ws132{word-spacing:-1.793280pt;}
.ws15e{word-spacing:-1.745459pt;}
.ws9c{word-spacing:-1.742791pt;}
.wsb6{word-spacing:-1.689657pt;}
.ws82{word-spacing:-1.583389pt;}
.wsf0{word-spacing:-1.423988pt;}
.ws29{word-spacing:-1.317720pt;}
.ws12c{word-spacing:-1.123789pt;}
.ws16d{word-spacing:-1.075968pt;}
.ws166{word-spacing:-1.028147pt;}
.ws84{word-spacing:-1.005330pt;}
.ws43{word-spacing:-0.998917pt;}
.ws127{word-spacing:-0.980326pt;}
.ws6b{word-spacing:-0.789043pt;}
.ws92{word-spacing:-0.786381pt;}
.ws73{word-spacing:-0.626980pt;}
.ws71{word-spacing:-0.573846pt;}
.ws75{word-spacing:-0.467578pt;}
.ws59{word-spacing:-0.414444pt;}
.ws170{word-spacing:-0.406477pt;}
.ws95{word-spacing:-0.361310pt;}
.ws93{word-spacing:-0.344969pt;}
.ws121{word-spacing:-0.263014pt;}
.ws142{word-spacing:-0.167373pt;}
.ws37{word-spacing:-0.053134pt;}
.ws4c{word-spacing:-0.047821pt;}
.wsbf{word-spacing:-0.037194pt;}
.ws2e{word-spacing:0.000000pt;}
.ws61{word-spacing:0.010627pt;}
.ws32{word-spacing:0.023910pt;}
.wsc2{word-spacing:0.329430pt;}
.ws118{word-spacing:0.358656pt;}
.ws58{word-spacing:0.382564pt;}
.ws141{word-spacing:0.406477pt;}
.ws8d{word-spacing:0.435698pt;}
.ws14a{word-spacing:0.454298pt;}
.ws9e{word-spacing:0.488832pt;}
.ws161{word-spacing:0.511683pt;}
.ws62{word-spacing:0.595099pt;}
.ws67{word-spacing:0.645581pt;}
.ws47{word-spacing:0.648233pt;}
.ws5a{word-spacing:0.672465pt;}
.ws78{word-spacing:0.701367pt;}
.ws45{word-spacing:0.754501pt;}
.ws5d{word-spacing:0.807635pt;}
.ws131{word-spacing:0.846428pt;}
.ws5b{word-spacing:0.913903pt;}
.ws22{word-spacing:0.967036pt;}
.wsdc{word-spacing:1.020170pt;}
.ws165{word-spacing:1.028147pt;}
.ws13a{word-spacing:1.123789pt;}
.ws27{word-spacing:1.445241pt;}
.ws9f{word-spacing:1.498375pt;}
.wsa3{word-spacing:1.551509pt;}
.ws101{word-spacing:1.554176pt;}
.wsef{word-spacing:1.604643pt;}
.ws150{word-spacing:1.649818pt;}
.ws76{word-spacing:1.657777pt;}
.ws110{word-spacing:1.697638pt;}
.wse7{word-spacing:1.710911pt;}
.wsfe{word-spacing:1.745459pt;}
.ws77{word-spacing:1.870312pt;}
.wsac{word-spacing:1.923446pt;}
.wsff{word-spacing:1.936742pt;}
.wsb4{word-spacing:1.976580pt;}
.ws15d{word-spacing:2.032384pt;}
.ws35{word-spacing:2.082848pt;}
.ws130{word-spacing:2.185411pt;}
.ws4a{word-spacing:2.189115pt;}
.wsd1{word-spacing:2.242249pt;}
.ws104{word-spacing:2.319309pt;}
.ws3c{word-spacing:2.348517pt;}
.ws13f{word-spacing:2.367130pt;}
.ws1c{word-spacing:2.414950pt;}
.ws10a{word-spacing:2.507919pt;}
.wscb{word-spacing:2.561052pt;}
.ws50{word-spacing:2.606234pt;}
.ws81{word-spacing:2.614186pt;}
.wsbd{word-spacing:2.640374pt;}
.wseb{word-spacing:2.667320pt;}
.ws1d{word-spacing:2.701875pt;}
.ws154{word-spacing:2.727154pt;}
.ws144{word-spacing:2.730407pt;}
.ws12a{word-spacing:2.732969pt;}
.ws15f{word-spacing:2.746665pt;}
.ws34{word-spacing:2.749696pt;}
.ws6f{word-spacing:2.845338pt;}
.ws26{word-spacing:2.932989pt;}
.ws134{word-spacing:2.940979pt;}
.wsd0{word-spacing:2.986123pt;}
.ws149{word-spacing:3.036621pt;}
.wsf1{word-spacing:3.092391pt;}
.ws13c{word-spacing:3.180083pt;}
.ws9d{word-spacing:3.198659pt;}
.ws116{word-spacing:3.227904pt;}
.ws2d{word-spacing:3.304927pt;}
.ws3f{word-spacing:3.358060pt;}
.ws111{word-spacing:3.467008pt;}
.ws13d{word-spacing:3.514829pt;}
.wsf4{word-spacing:3.517462pt;}
.ws57{word-spacing:3.570596pt;}
.ws13b{word-spacing:3.610470pt;}
.ws164{word-spacing:3.658291pt;}
.wsdb{word-spacing:3.676864pt;}
.ws4f{word-spacing:3.753933pt;}
.ws159{word-spacing:3.801754pt;}
.ws14e{word-spacing:3.849574pt;}
.ws91{word-spacing:3.942533pt;}
.ws0{word-spacing:3.985067pt;}
.ws11f{word-spacing:3.993037pt;}
.ws152{word-spacing:4.040858pt;}
.wsa0{word-spacing:4.048801pt;}
.ws139{word-spacing:4.088678pt;}
.wsaa{word-spacing:4.101935pt;}
.wsae{word-spacing:4.155068pt;}
.ws8e{word-spacing:4.208202pt;}
.ws28{word-spacing:4.261336pt;}
.ws69{word-spacing:4.279962pt;}
.wsb8{word-spacing:4.314470pt;}
.ws13e{word-spacing:4.327782pt;}
.wsa2{word-spacing:4.367604pt;}
.ws1f{word-spacing:4.473872pt;}
.wsc5{word-spacing:4.580139pt;}
.wsc6{word-spacing:4.633273pt;}
.ws133{word-spacing:4.662528pt;}
.ws10f{word-spacing:4.758170pt;}
.ws5c{word-spacing:4.792675pt;}
.wsa9{word-spacing:4.845809pt;}
.ws12e{word-spacing:4.901632pt;}
.ws90{word-spacing:4.952076pt;}
.ws51{word-spacing:5.045094pt;}
.wsc3{word-spacing:5.164612pt;}
.wsaf{word-spacing:5.188557pt;}
.ws53{word-spacing:5.236378pt;}
.ws10b{word-spacing:5.270880pt;}
.ws54{word-spacing:5.284198pt;}
.ws96{word-spacing:5.324013pt;}
.ws15c{word-spacing:5.332019pt;}
.wsea{word-spacing:5.377147pt;}
.wsfd{word-spacing:5.379840pt;}
.wse2{word-spacing:5.388968pt;}
.wsfa{word-spacing:5.395944pt;}
.wsde{word-spacing:5.399977pt;}
.ws14f{word-spacing:5.427661pt;}
.ws123{word-spacing:5.571123pt;}
.ws68{word-spacing:5.618944pt;}
.ws44{word-spacing:5.749084pt;}
.ws4d{word-spacing:5.757503pt;}
.ws4b{word-spacing:5.762406pt;}
.ws23{word-spacing:5.855352pt;}
.ws1{word-spacing:5.908486pt;}
.ws12d{word-spacing:5.953690pt;}
.ws24{word-spacing:5.961620pt;}
.ws19{word-spacing:6.049331pt;}
.ws86{word-spacing:6.067888pt;}
.ws137{word-spacing:6.144973pt;}
.ws42{word-spacing:6.174155pt;}
.ws25{word-spacing:6.227289pt;}
.ws108{word-spacing:6.333557pt;}
.ws1a{word-spacing:6.479718pt;}
.wsb5{word-spacing:6.546092pt;}
.wsf9{word-spacing:6.575360pt;}
.ws83{word-spacing:6.652360pt;}
.ws167{word-spacing:6.671002pt;}
.ws46{word-spacing:6.758628pt;}
.wse6{word-spacing:6.787327pt;}
.wsc9{word-spacing:6.811762pt;}
.wsd9{word-spacing:6.918029pt;}
.wsd8{word-spacing:6.922932pt;}
.wsec{word-spacing:6.971163pt;}
.ws89{word-spacing:7.024297pt;}
.ws106{word-spacing:7.130565pt;}
.wsed{word-spacing:7.183699pt;}
.ws140{word-spacing:7.197030pt;}
.ws16{word-spacing:7.206595pt;}
.ws107{word-spacing:7.236833pt;}
.ws56{word-spacing:7.289967pt;}
.wsa8{word-spacing:7.343100pt;}
.wsa1{word-spacing:7.396234pt;}
.ws12f{word-spacing:7.436134pt;}
.wsb1{word-spacing:7.483955pt;}
.ws143{word-spacing:7.627418pt;}
.ws74{word-spacing:7.661904pt;}
.ws33{word-spacing:7.675238pt;}
.ws7e{word-spacing:7.715037pt;}
.ws2{word-spacing:7.732623pt;}
.ws80{word-spacing:7.768171pt;}
.ws117{word-spacing:7.818701pt;}
.ws98{word-spacing:7.821305pt;}
.ws14{word-spacing:7.828265pt;}
.ws8b{word-spacing:7.874439pt;}
.ws129{word-spacing:7.914342pt;}
.ws102{word-spacing:8.105626pt;}
.wsb2{word-spacing:8.140108pt;}
.ws7b{word-spacing:8.193242pt;}
.ws11c{word-spacing:8.201267pt;}
.wsd4{word-spacing:8.333413pt;}
.ws49{word-spacing:8.352644pt;}
.ws171{word-spacing:8.392550pt;}
.ws9b{word-spacing:8.405778pt;}
.wsf5{word-spacing:8.440371pt;}
.wsda{word-spacing:8.452331pt;}
.ws70{word-spacing:8.488192pt;}
.wsf7{word-spacing:8.494694pt;}
.ws7d{word-spacing:8.565179pt;}
.ws31{word-spacing:8.583834pt;}
.ws7a{word-spacing:8.618313pt;}
.ws2f{word-spacing:8.631654pt;}
.ws16b{word-spacing:8.679475pt;}
.ws8c{word-spacing:8.830849pt;}
.wsa{word-spacing:8.832502pt;}
.wse{word-spacing:8.880323pt;}
.wse3{word-spacing:8.883090pt;}
.wsa6{word-spacing:8.883983pt;}
.wsa7{word-spacing:8.990250pt;}
.wsf3{word-spacing:9.202786pt;}
.ws12b{word-spacing:9.301146pt;}
.wsee{word-spacing:9.309053pt;}
.ws14d{word-spacing:9.348966pt;}
.ws8a{word-spacing:9.362187pt;}
.wsc{word-spacing:9.406351pt;}
.ws155{word-spacing:9.444608pt;}
.ws3d{word-spacing:9.468455pt;}
.ws88{word-spacing:9.574723pt;}
.ws162{word-spacing:9.588070pt;}
.ws1b{word-spacing:9.635891pt;}
.wsab{word-spacing:9.680991pt;}
.ws18{word-spacing:9.693276pt;}
.ws153{word-spacing:9.874995pt;}
.ws163{word-spacing:9.922816pt;}
.ws10c{word-spacing:9.946660pt;}
.ws145{word-spacing:9.970637pt;}
.ws12{word-spacing:9.980201pt;}
.ws105{word-spacing:10.052928pt;}
.ws112{word-spacing:10.066278pt;}
.wsca{word-spacing:10.106061pt;}
.ws41{word-spacing:10.159195pt;}
.ws4{word-spacing:10.171484pt;}
.ws146{word-spacing:10.209741pt;}
.ws79{word-spacing:10.212329pt;}
.ws6e{word-spacing:10.305382pt;}
.ws48{word-spacing:10.584266pt;}
.ws148{word-spacing:10.735770pt;}
.wsd7{word-spacing:10.743668pt;}
.ws8{word-spacing:10.793155pt;}
.wse9{word-spacing:10.849936pt;}
.ws125{word-spacing:10.879232pt;}
.ws99{word-spacing:10.956203pt;}
.ws7c{word-spacing:11.115605pt;}
.ws6d{word-spacing:11.261798pt;}
.ws36{word-spacing:11.272891pt;}
.ws38{word-spacing:11.275007pt;}
.ws5e{word-spacing:11.381274pt;}
.ws5f{word-spacing:11.427559pt;}
.ws60{word-spacing:11.434408pt;}
.ws66{word-spacing:11.487542pt;}
.ws113{word-spacing:11.500902pt;}
.ws6{word-spacing:11.510467pt;}
.ws3e{word-spacing:11.806345pt;}
.wsd2{word-spacing:11.859479pt;}
.ws10{word-spacing:11.988675pt;}
.ws15a{word-spacing:12.026931pt;}
.ws39{word-spacing:12.072015pt;}
.wscd{word-spacing:12.113900pt;}
.wscf{word-spacing:12.125148pt;}
.wsad{word-spacing:12.178282pt;}
.ws65{word-spacing:12.443952pt;}
.wsb3{word-spacing:12.497085pt;}
.wsd3{word-spacing:12.603353pt;}
.wsb{word-spacing:12.656487pt;}
.ws11{word-spacing:12.815889pt;}
.ws2b{word-spacing:12.833717pt;}
.ws15{word-spacing:12.922156pt;}
.ws3{word-spacing:12.975290pt;}
.wsd{word-spacing:13.081558pt;}
.ws21{word-spacing:13.294093pt;}
.wsd6{word-spacing:13.559763pt;}
.ws85{word-spacing:13.708384pt;}
.ws138{word-spacing:13.748480pt;}
.ws120{word-spacing:13.987584pt;}
.ws94{word-spacing:14.348384pt;}
.ws151{word-spacing:14.417971pt;}
.ws10d{word-spacing:14.516172pt;}
.ws16c{word-spacing:14.657075pt;}
.ws7{word-spacing:14.675574pt;}
.ws20{word-spacing:14.728708pt;}
.wsba{word-spacing:14.877750pt;}
.wsf{word-spacing:15.260047pt;}
.wsc7{word-spacing:15.402279pt;}
.wsc8{word-spacing:15.419448pt;}
.ws17{word-spacing:15.472582pt;}
.ws13{word-spacing:15.525716pt;}
.ws135{word-spacing:15.565670pt;}
.ws124{word-spacing:15.661312pt;}
.ws9{word-spacing:15.685117pt;}
.ws14b{word-spacing:15.852595pt;}
.ws5{word-spacing:16.163322pt;}
.ws55{word-spacing:16.341702pt;}
.ws9a{word-spacing:16.641527pt;}
.ws16e{word-spacing:16.665549pt;}
.wsc4{word-spacing:16.694661pt;}
.ws10e{word-spacing:17.000294pt;}
.wsbe{word-spacing:17.379644pt;}
.wsdf{word-spacing:17.658919pt;}
.ws122{word-spacing:17.669786pt;}
.ws157{word-spacing:17.717606pt;}
.ws11a{word-spacing:17.765427pt;}
.ws100{word-spacing:17.884979pt;}
.ws11e{word-spacing:18.530560pt;}
.ws52{word-spacing:18.678728pt;}
.ws1e{word-spacing:18.793574pt;}
.wsb0{word-spacing:18.817394pt;}
.ws8f{word-spacing:18.929717pt;}
.wsfc{word-spacing:19.006578pt;}
.ws4e{word-spacing:19.376369pt;}
.ws158{word-spacing:19.869542pt;}
.ws2c{word-spacing:20.550715pt;}
.ws6a{word-spacing:20.610765pt;}
.ws15b{word-spacing:21.065062pt;}
.wsc0{word-spacing:21.544660pt;}
.ws103{word-spacing:21.688491pt;}
.ws126{word-spacing:21.830195pt;}
.wsfb{word-spacing:21.901926pt;}
.wsf6{word-spacing:22.070274pt;}
.wsf8{word-spacing:22.076061pt;}
.ws30{word-spacing:22.214728pt;}
.ws7f{word-spacing:22.455050pt;}
.ws97{word-spacing:22.524048pt;}
.ws11d{word-spacing:22.595328pt;}
.wsa5{word-spacing:23.616271pt;}
.ws14c{word-spacing:24.651622pt;}
.ws6c{word-spacing:24.870755pt;}
.ws156{word-spacing:25.703680pt;}
.ws3a{word-spacing:26.780384pt;}
.wse4{word-spacing:27.272977pt;}
.wsf2{word-spacing:27.470209pt;}
.ws16f{word-spacing:29.098957pt;}
.ws119{word-spacing:29.481523pt;}
.wsce{word-spacing:29.485750pt;}
.ws16a{word-spacing:32.350771pt;}
.wse1{word-spacing:33.293681pt;}
.wsdd{word-spacing:35.544417pt;}
.wsc1{word-spacing:39.914161pt;}
.wsbb{word-spacing:43.135027pt;}
.wse8{word-spacing:53.102040pt;}
.wse0{word-spacing:53.137630pt;}
.wscc{word-spacing:218.721749pt;}
._2{margin-left:-33.920887pt;}
._a{margin-left:-25.839163pt;}
._23{margin-left:-24.590340pt;}
._d{margin-left:-22.603298pt;}
._26{margin-left:-21.572672pt;}
._1{margin-left:-5.993540pt;}
._5{margin-left:-4.410111pt;}
._4{margin-left:-2.996770pt;}
._0{margin-left:-1.976593pt;}
._6{margin-left:-0.998903pt;}
._8{width:1.434614pt;}
._20{width:2.975497pt;}
._17{width:4.367633pt;}
._25{width:12.050851pt;}
._14{width:13.389734pt;}
._18{width:15.329222pt;}
._10{width:16.747808pt;}
._c{width:18.809524pt;}
._1a{width:19.909393pt;}
._3{width:21.601317pt;}
._b{width:23.111131pt;}
._7{width:24.468309pt;}
._16{width:25.408804pt;}
._9{width:26.312037pt;}
._13{width:28.171098pt;}
._19{width:29.671258pt;}
._15{width:30.940058pt;}
._f{width:32.517926pt;}
._1c{width:34.984233pt;}
._12{width:36.641340pt;}
._1e{width:38.203168pt;}
._11{width:39.404339pt;}
._1d{width:41.338148pt;}
._e{width:43.352182pt;}
._1b{width:44.632940pt;}
._27{width:45.557089pt;}
._1f{width:48.203057pt;}
._21{width:52.230591pt;}
._24{width:53.989807pt;}
._22{width:63.866908pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:90.372000pt;}
.y27{bottom:91.257333pt;}
.y9e{bottom:93.913333pt;}
.y41{bottom:93.914667pt;}
.y15c{bottom:94.577333pt;}
.y147{bottom:94.578667pt;}
.y26{bottom:107.197333pt;}
.y146{bottom:108.525333pt;}
.y40{bottom:109.854667pt;}
.y10d{bottom:112.941333pt;}
.y10c{bottom:121.809333pt;}
.y145{bottom:122.473333pt;}
.y25{bottom:123.138667pt;}
.y3f{bottom:125.794667pt;}
.yb4{bottom:133.989333pt;}
.y10b{bottom:135.757333pt;}
.y144{bottom:136.421333pt;}
.y24{bottom:139.078667pt;}
.y3e{bottom:141.734667pt;}
.yb5{bottom:143.101333pt;}
.y15b{bottom:150.368000pt;}
.y143{bottom:150.369333pt;}
.yb3{bottom:152.086667pt;}
.y10a{bottom:154.784000pt;}
.y23{bottom:155.018667pt;}
.y3d{bottom:157.674667pt;}
.yf2{bottom:157.676000pt;}
.y59{bottom:163.269333pt;}
.y15a{bottom:164.316000pt;}
.y142{bottom:164.317333pt;}
.y22{bottom:170.958667pt;}
.y3c{bottom:173.616000pt;}
.y36{bottom:174.136000pt;}
.yb2{bottom:177.085333pt;}
.y141{bottom:178.264000pt;}
.y58{bottom:179.209333pt;}
.y9d{bottom:180.125333pt;}
.y51{bottom:185.769333pt;}
.y3b{bottom:189.556000pt;}
.y35{bottom:190.076000pt;}
.yf1{bottom:192.046667pt;}
.y140{bottom:192.212000pt;}
.yb1{bottom:193.025333pt;}
.y57{bottom:195.149333pt;}
.y9c{bottom:196.066667pt;}
.y28{bottom:196.861333pt;}
.y50{bottom:201.709333pt;}
.y3a{bottom:205.496000pt;}
.y34{bottom:206.016000pt;}
.y13f{bottom:206.160000pt;}
.yf0{bottom:207.986667pt;}
.yb0{bottom:208.965333pt;}
.y56{bottom:211.090667pt;}
.y9b{bottom:212.006667pt;}
.y21{bottom:212.801333pt;}
.y4f{bottom:217.649333pt;}
.y159{bottom:220.106667pt;}
.y13e{bottom:220.108000pt;}
.y39{bottom:221.436000pt;}
.y33{bottom:221.956000pt;}
.y109{bottom:223.428000pt;}
.yef{bottom:223.926667pt;}
.yaf{bottom:224.905333pt;}
.y55{bottom:227.030667pt;}
.y9a{bottom:227.946667pt;}
.y4e{bottom:233.589333pt;}
.y13d{bottom:234.054667pt;}
.y38{bottom:237.376000pt;}
.y32{bottom:237.896000pt;}
.y108{bottom:239.369333pt;}
.yee{bottom:239.866667pt;}
.yae{bottom:240.845333pt;}
.y54{bottom:242.970667pt;}
.y99{bottom:243.886667pt;}
.y13c{bottom:248.002667pt;}
.y4d{bottom:249.529333pt;}
.y37{bottom:253.316000pt;}
.yc0{bottom:253.317333pt;}
.y31{bottom:253.837333pt;}
.y71{bottom:254.718667pt;}
.y107{bottom:255.309333pt;}
.yed{bottom:255.806667pt;}
.yad{bottom:256.786667pt;}
.y53{bottom:258.910667pt;}
.y98{bottom:259.826667pt;}
.y13b{bottom:261.950667pt;}
.y4c{bottom:265.469333pt;}
.yec{bottom:268.450667pt;}
.ybf{bottom:269.257333pt;}
.y30{bottom:269.777333pt;}
.y70{bottom:270.658667pt;}
.y106{bottom:271.249333pt;}
.yeb{bottom:271.746667pt;}
.yac{bottom:272.726667pt;}
.y97{bottom:275.766667pt;}
.y158{bottom:275.897333pt;}
.y13a{bottom:275.898667pt;}
.y4b{bottom:281.410667pt;}
.ybe{bottom:285.197333pt;}
.y2f{bottom:285.717333pt;}
.y6f{bottom:286.600000pt;}
.y105{bottom:287.189333pt;}
.yea{bottom:287.688000pt;}
.yab{bottom:288.666667pt;}
.y157{bottom:289.845333pt;}
.y139{bottom:289.846667pt;}
.y96{bottom:291.708000pt;}
.y20{bottom:295.160000pt;}
.y4a{bottom:297.350667pt;}
.y52{bottom:299.342667pt;}
.ybd{bottom:301.137333pt;}
.y2e{bottom:301.657333pt;}
.y6e{bottom:302.540000pt;}
.y104{bottom:303.129333pt;}
.ye9{bottom:303.628000pt;}
.y138{bottom:303.793333pt;}
.yaa{bottom:304.606667pt;}
.y95{bottom:307.648000pt;}
.y1f{bottom:309.108000pt;}
.y49{bottom:313.290667pt;}
.y137{bottom:317.741333pt;}
.y6d{bottom:318.480000pt;}
.y103{bottom:319.070667pt;}
.ye8{bottom:319.568000pt;}
.ya9{bottom:320.546667pt;}
.y1e{bottom:323.054667pt;}
.ybc{bottom:326.609333pt;}
.y94{bottom:330.098667pt;}
.y136{bottom:331.689333pt;}
.y6c{bottom:334.420000pt;}
.y102{bottom:335.010667pt;}
.ye7{bottom:335.508000pt;}
.ybb{bottom:335.721333pt;}
.ya8{bottom:336.486667pt;}
.y1d{bottom:337.002667pt;}
.y156{bottom:345.636000pt;}
.y135{bottom:345.637333pt;}
.y93{bottom:346.038667pt;}
.y6b{bottom:350.360000pt;}
.y1c{bottom:350.950667pt;}
.ye6{bottom:351.448000pt;}
.ya7{bottom:352.428000pt;}
.y134{bottom:359.584000pt;}
.y92{bottom:361.978667pt;}
.y6a{bottom:366.300000pt;}
.y101{bottom:366.890667pt;}
.ye5{bottom:367.389333pt;}
.ya6{bottom:368.368000pt;}
.y2d{bottom:368.406667pt;}
.yba{bottom:370.105333pt;}
.y133{bottom:373.532000pt;}
.y91{bottom:377.918667pt;}
.y1b{bottom:378.181333pt;}
.y48{bottom:380.040000pt;}
.y69{bottom:382.241333pt;}
.y2c{bottom:382.354667pt;}
.y100{bottom:382.830667pt;}
.ye4{bottom:383.329333pt;}
.ya5{bottom:384.308000pt;}
.y132{bottom:387.480000pt;}
.y1a{bottom:392.129333pt;}
.yb9{bottom:393.585333pt;}
.y90{bottom:393.860000pt;}
.y47{bottom:393.988000pt;}
.y2b{bottom:396.302667pt;}
.yb8{bottom:396.854667pt;}
.y68{bottom:398.181333pt;}
.yff{bottom:398.770667pt;}
.yb7{bottom:399.122667pt;}
.ye3{bottom:399.269333pt;}
.y155{bottom:401.426667pt;}
.y131{bottom:401.428000pt;}
.y46{bottom:407.936000pt;}
.yb6{bottom:408.233333pt;}
.y8f{bottom:409.800000pt;}
.y2a{bottom:410.250667pt;}
.y67{bottom:414.121333pt;}
.yfe{bottom:414.712000pt;}
.ye2{bottom:415.209333pt;}
.y154{bottom:415.374667pt;}
.y130{bottom:415.376000pt;}
.ya4{bottom:419.145333pt;}
.y45{bottom:421.884000pt;}
.y19{bottom:424.674667pt;}
.y8e{bottom:425.740000pt;}
.y12f{bottom:429.322667pt;}
.y66{bottom:430.061333pt;}
.ye1{bottom:431.149333pt;}
.ya3{bottom:433.093333pt;}
.y44{bottom:435.830667pt;}
.y18{bottom:438.621333pt;}
.y8d{bottom:441.680000pt;}
.y12e{bottom:443.270667pt;}
.ya2{bottom:447.041333pt;}
.ye0{bottom:447.089333pt;}
.y65{bottom:447.404000pt;}
.y43{bottom:449.778667pt;}
.y12d{bottom:457.218667pt;}
.y8c{bottom:457.620000pt;}
.y64{bottom:463.344000pt;}
.y42{bottom:463.726667pt;}
.yfd{bottom:468.894667pt;}
.y153{bottom:471.165333pt;}
.y17{bottom:471.166667pt;}
.y8b{bottom:473.561333pt;}
.ydf{bottom:481.461333pt;}
.yfc{bottom:482.842667pt;}
.y12c{bottom:485.113333pt;}
.y16{bottom:485.114667pt;}
.y8a{bottom:489.501333pt;}
.ya1{bottom:492.537333pt;}
.yfb{bottom:496.790667pt;}
.yde{bottom:497.401333pt;}
.y12b{bottom:499.061333pt;}
.y89{bottom:505.441333pt;}
.ya0{bottom:506.485333pt;}
.yfa{bottom:510.738667pt;}
.y63{bottom:511.645333pt;}
.y12a{bottom:513.009333pt;}
.ydd{bottom:513.341333pt;}
.y15{bottom:517.658667pt;}
.y9f{bottom:520.432000pt;}
.y88{bottom:521.381333pt;}
.yda{bottom:524.632000pt;}
.yf9{bottom:524.686667pt;}
.y62{bottom:525.593333pt;}
.y152{bottom:526.956000pt;}
.y129{bottom:526.957333pt;}
.yd9{bottom:527.901333pt;}
.ydc{bottom:530.169333pt;}
.y14{bottom:531.606667pt;}
.y87{bottom:537.321333pt;}
.yf8{bottom:538.633333pt;}
.yd8{bottom:539.280000pt;}
.ydb{bottom:539.281333pt;}
.y61{bottom:539.541333pt;}
.y151{bottom:540.904000pt;}
.y128{bottom:540.905333pt;}
.yf7{bottom:552.581333pt;}
.y86{bottom:553.261333pt;}
.y60{bottom:553.488000pt;}
.y127{bottom:554.852000pt;}
.y13{bottom:564.150667pt;}
.yf6{bottom:566.529333pt;}
.y5f{bottom:567.436000pt;}
.y126{bottom:568.800000pt;}
.y85{bottom:569.202667pt;}
.yd7{bottom:573.110667pt;}
.y12{bottom:578.098667pt;}
.yf5{bottom:580.477333pt;}
.y5e{bottom:581.384000pt;}
.y125{bottom:582.748000pt;}
.y84{bottom:585.142667pt;}
.yf4{bottom:594.424000pt;}
.y5d{bottom:595.332000pt;}
.y150{bottom:596.694667pt;}
.y124{bottom:596.696000pt;}
.yd6{bottom:598.153333pt;}
.yd5{bottom:601.422667pt;}
.y83{bottom:607.593333pt;}
.yf3{bottom:608.372000pt;}
.y5c{bottom:609.278667pt;}
.y123{bottom:610.642667pt;}
.y11{bottom:610.644000pt;}
.y5b{bottom:623.226667pt;}
.y82{bottom:623.533333pt;}
.y10{bottom:624.590667pt;}
.yd4{bottom:629.734667pt;}
.y5a{bottom:637.174667pt;}
.y122{bottom:638.538667pt;}
.y81{bottom:639.473333pt;}
.yd3{bottom:645.674667pt;}
.y14f{bottom:652.485333pt;}
.y121{bottom:652.486667pt;}
.y80{bottom:655.413333pt;}
.yf{bottom:657.136000pt;}
.yd2{bottom:661.616000pt;}
.y14e{bottom:666.433333pt;}
.y120{bottom:666.434667pt;}
.ye{bottom:671.084000pt;}
.y7f{bottom:671.354667pt;}
.yd1{bottom:674.258667pt;}
.yd0{bottom:677.556000pt;}
.y11f{bottom:680.381333pt;}
.y7e{bottom:687.294667pt;}
.ycf{bottom:693.496000pt;}
.y11e{bottom:694.329333pt;}
.y7d{bottom:703.234667pt;}
.yd{bottom:703.628000pt;}
.y11d{bottom:708.277333pt;}
.yce{bottom:709.436000pt;}
.yc{bottom:717.576000pt;}
.y14d{bottom:722.224000pt;}
.y11c{bottom:722.225333pt;}
.ycd{bottom:725.376000pt;}
.y11b{bottom:736.172000pt;}
.ycc{bottom:741.316000pt;}
.y7c{bottom:744.582667pt;}
.yb{bottom:750.120000pt;}
.ycb{bottom:757.257333pt;}
.ya{bottom:764.068000pt;}
.yca{bottom:773.197333pt;}
.y14c{bottom:778.014667pt;}
.y11a{bottom:778.016000pt;}
.yc9{bottom:789.137333pt;}
.y14b{bottom:791.962667pt;}
.y119{bottom:791.964000pt;}
.y9{bottom:796.613333pt;}
.yc8{bottom:805.077333pt;}
.y118{bottom:805.910667pt;}
.y8{bottom:810.560000pt;}
.y117{bottom:819.858667pt;}
.yc7{bottom:821.017333pt;}
.y7b{bottom:823.310667pt;}
.y116{bottom:833.806667pt;}
.yc6{bottom:836.958667pt;}
.y7a{bottom:839.250667pt;}
.y7{bottom:843.105333pt;}
.y14a{bottom:847.753333pt;}
.y115{bottom:847.754667pt;}
.yc5{bottom:852.898667pt;}
.y79{bottom:855.190667pt;}
.y6{bottom:857.053333pt;}
.y114{bottom:861.701333pt;}
.y78{bottom:871.130667pt;}
.y113{bottom:875.649333pt;}
.yc4{bottom:877.668000pt;}
.yc3{bottom:877.926667pt;}
.yc2{bottom:881.210667pt;}
.y77{bottom:887.070667pt;}
.y5{bottom:889.597333pt;}
.y149{bottom:903.544000pt;}
.y4{bottom:903.545333pt;}
.y76{bottom:909.522667pt;}
.y148{bottom:917.492000pt;}
.y112{bottom:917.493333pt;}
.y75{bottom:925.462667pt;}
.y111{bottom:931.440000pt;}
.y3{bottom:936.089333pt;}
.y74{bottom:941.402667pt;}
.y110{bottom:945.388000pt;}
.y2{bottom:954.686667pt;}
.y73{bottom:957.342667pt;}
.y10f{bottom:959.336000pt;}
.y72{bottom:973.282667pt;}
.y1{bottom:973.284000pt;}
.y10e{bottom:978.362667pt;}
.y29{bottom:1007.821333pt;}
.h18{height:22.443895pt;}
.hd{height:26.184294pt;}
.h3{height:34.239693pt;}
.h5{height:35.865600pt;}
.h19{height:35.913421pt;}
.h4{height:39.850400pt;}
.he{height:41.533628pt;}
.h1{height:44.887791pt;}
.h2{height:45.464294pt;}
.h6{height:45.469628pt;}
.h11{height:48.120294pt;}
.hf{height:48.914961pt;}
.hc{height:51.714961pt;}
.h15{height:51.720294pt;}
.h10{height:54.021067pt;}
.h14{height:58.653628pt;}
.h16{height:61.202961pt;}
.h12{height:62.050961pt;}
.h13{height:62.290961pt;}
.h17{height:75.791733pt;}
.hb{height:75.797067pt;}
.h8{height:77.042688pt;}
.h9{height:77.048021pt;}
.ha{height:90.093628pt;}
.h7{height:113.490688pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:72.000000pt;}
.x40{left:78.144000pt;}
.x38{left:82.708000pt;}
.x1b{left:85.284000pt;}
.x24{left:86.900000pt;}
.x3d{left:90.988000pt;}
.x3f{left:96.426667pt;}
.x25{left:111.053333pt;}
.x26{left:125.213333pt;}
.x17{left:131.634667pt;}
.x39{left:138.800000pt;}
.x4{left:139.764000pt;}
.x5{left:145.532000pt;}
.x15{left:147.660000pt;}
.x33{left:152.309333pt;}
.x19{left:157.346667pt;}
.x3a{left:163.077333pt;}
.x1a{left:170.480000pt;}
.x36{left:172.584000pt;}
.xd{left:175.370667pt;}
.x37{left:179.145333pt;}
.x34{left:184.862667pt;}
.xf{left:190.124000pt;}
.x35{left:194.737333pt;}
.x18{left:198.605333pt;}
.x13{left:206.081333pt;}
.x7{left:210.997333pt;}
.x12{left:222.193333pt;}
.x27{left:225.580000pt;}
.xb{left:228.026667pt;}
.x3{left:243.962667pt;}
.x2{left:246.628000pt;}
.x9{left:247.630667pt;}
.xe{left:295.605333pt;}
.x1{left:297.844000pt;}
.x16{left:301.112000pt;}
.x6{left:302.232000pt;}
.x10{left:304.289333pt;}
.x3b{left:334.341333pt;}
.xa{left:341.361333pt;}
.x11{left:354.848000pt;}
.x14{left:360.598667pt;}
.xc{left:364.489333pt;}
.x8{left:374.857333pt;}
.x3c{left:381.801333pt;}
.x1d{left:422.685333pt;}
.x23{left:433.020000pt;}
.x1e{left:435.968000pt;}
.x20{left:439.146667pt;}
.x21{left:441.056000pt;}
.x3e{left:447.112000pt;}
.x28{left:493.350667pt;}
.x22{left:531.981333pt;}
.x2f{left:544.317333pt;}
.x29{left:558.112000pt;}
.x2a{left:584.736000pt;}
.x30{left:591.826667pt;}
.x31{left:624.137333pt;}
.x2b{left:632.338667pt;}
.x2c{left:647.953333pt;}
.x2d{left:654.516000pt;}
.x2e{left:675.104000pt;}
.x32{left:676.177333pt;}
.x1f{left:742.817333pt;}
}




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