
    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_f6bf5937f55c5ad9f255241b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191895;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_b76e569ef96807a35f8ef621.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_cc24ce62bc6834495490bac1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.182129;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_fbc4c0879d88aa55bee7b9c6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024414;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_a42d48cff8f3c40163d5790a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060547;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_9c493718b46851de2503cfe8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.024414;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_fda7f68265c60746feb85aea.woff')format("woff");}.ff7{font-family:ff7;line-height:1.182129;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_73b4689aaa0b6fd2e1f0ccfa.woff')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_ef7f4bc7d37215710bb10eaa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.137695;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_9b069982f8e15710a511bc89.woff')format("woff");}.ffa{font-family:ffa;line-height:1.060547;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_9c493718b46851de2503cfe8.woff')format("woff");}.ffb{font-family:ffb;line-height:1.024414;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_62fedffafe5057a79d268a88.woff')format("woff");}.ffc{font-family:ffc;line-height:1.182129;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_043695facda2f95c19d0e3ce.woff')format("woff");}.ffd{font-family:ffd;line-height:1.052734;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_76221dad69f71b5dc8e3f940.woff')format("woff");}.ffe{font-family:ffe;line-height:1.087402;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;}
.m1{transform:matrix(0.248137,0.000000,-0.030467,0.248137,0,0);-ms-transform:matrix(0.248137,0.000000,-0.030467,0.248137,0,0);-webkit-transform:matrix(0.248137,0.000000,-0.030467,0.248137,0,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);}
.v2{vertical-align:-18.036000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.062400px;}
.v1{vertical-align:18.036000px;}
.v3{vertical-align:20.932200px;}
.ls6{letter-spacing:-10.584000px;}
.ls7{letter-spacing:-10.368000px;}
.ls61{letter-spacing:-10.005000px;}
.ls8c{letter-spacing:-7.686000px;}
.ls9{letter-spacing:-7.452000px;}
.ls45{letter-spacing:-7.176000px;}
.ls62{letter-spacing:-6.969000px;}
.ls2f{letter-spacing:-6.624000px;}
.lsb{letter-spacing:-6.480000px;}
.ls98{letter-spacing:-6.111000px;}
.ls2d{letter-spacing:-5.934000px;}
.ls9e{letter-spacing:-5.712000px;}
.lsc{letter-spacing:-5.376000px;}
.ls99{letter-spacing:-5.229000px;}
.lsa0{letter-spacing:-4.704000px;}
.ls86{letter-spacing:-4.662000px;}
.ls3d{letter-spacing:-4.554000px;}
.ls8{letter-spacing:-4.428000px;}
.ls60{letter-spacing:-4.050000px;}
.ls41{letter-spacing:-3.864000px;}
.ls49{letter-spacing:-3.726000px;}
.ls8f{letter-spacing:-3.717000px;}
.ls73{letter-spacing:-3.450000px;}
.ls37{letter-spacing:-3.381000px;}
.ls5e{letter-spacing:-3.312000px;}
.ls19{letter-spacing:-3.180000px;}
.ls5b{letter-spacing:-3.105000px;}
.ls78{letter-spacing:-3.024000px;}
.ls64{letter-spacing:-2.898000px;}
.ls5c{letter-spacing:-2.829000px;}
.ls8e{letter-spacing:-2.772000px;}
.ls1d{letter-spacing:-2.760000px;}
.ls94{letter-spacing:-2.709000px;}
.ls4b{letter-spacing:-2.622000px;}
.ls57{letter-spacing:-2.553000px;}
.ls1e{letter-spacing:-2.511000px;}
.ls53{letter-spacing:-2.484000px;}
.ls17{letter-spacing:-2.430000px;}
.ls5a{letter-spacing:-2.415000px;}
.lsa3{letter-spacing:-2.400000px;}
.ls9f{letter-spacing:-2.352000px;}
.ls18{letter-spacing:-2.277000px;}
.ls56{letter-spacing:-2.208000px;}
.ls38{letter-spacing:-2.139000px;}
.ls28{letter-spacing:-2.109000px;}
.ls8b{letter-spacing:-2.079000px;}
.ls39{letter-spacing:-2.070000px;}
.ls29{letter-spacing:-2.001000px;}
.lsa5{letter-spacing:-1.980000px;}
.lsa{letter-spacing:-1.944000px;}
.lsa6{letter-spacing:-1.860000px;}
.ls85{letter-spacing:-1.827000px;}
.ls23{letter-spacing:-1.794000px;}
.lsd{letter-spacing:-1.764000px;}
.lsa2{letter-spacing:-1.740000px;}
.ls54{letter-spacing:-1.725000px;}
.ls84{letter-spacing:-1.701000px;}
.ls27{letter-spacing:-1.620000px;}
.ls55{letter-spacing:-1.587000px;}
.ls97{letter-spacing:-1.575000px;}
.ls2e{letter-spacing:-1.518000px;}
.ls3c{letter-spacing:-1.449000px;}
.ls3b{letter-spacing:-1.380000px;}
.lsa4{letter-spacing:-1.320000px;}
.ls5{letter-spacing:-1.296000px;}
.lsa1{letter-spacing:-1.260000px;}
.ls22{letter-spacing:-1.242000px;}
.ls34{letter-spacing:-1.173000px;}
.ls3a{letter-spacing:-1.104000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls95{letter-spacing:-1.071000px;}
.ls71{letter-spacing:-1.035000px;}
.ls4d{letter-spacing:-0.897000px;}
.ls16{letter-spacing:-0.855000px;}
.ls72{letter-spacing:-0.828000px;}
.ls52{letter-spacing:-0.759000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls66{letter-spacing:-0.690000px;}
.ls26{letter-spacing:-0.627000px;}
.lsf{letter-spacing:-0.588000px;}
.ls96{letter-spacing:-0.567000px;}
.lse{letter-spacing:-0.504000px;}
.ls47{letter-spacing:-0.483000px;}
.ls33{letter-spacing:-0.345000px;}
.ls46{letter-spacing:-0.207000px;}
.ls4{letter-spacing:-0.180000px;}
.ls5f{letter-spacing:-0.171000px;}
.ls74{letter-spacing:-0.069000px;}
.ls1{letter-spacing:0.000000px;}
.ls75{letter-spacing:0.000300px;}
.ls4f{letter-spacing:0.006900px;}
.ls2a{letter-spacing:0.009570px;}
.ls9c{letter-spacing:0.012000px;}
.ls3e{letter-spacing:0.013800px;}
.ls9b{letter-spacing:0.018000px;}
.ls3f{letter-spacing:0.020700px;}
.ls63{letter-spacing:0.034500px;}
.ls83{letter-spacing:0.063000px;}
.ls43{letter-spacing:0.138000px;}
.ls67{letter-spacing:0.234600px;}
.ls20{letter-spacing:0.414000px;}
.ls58{letter-spacing:0.690000px;}
.ls1c{letter-spacing:1.080000px;}
.ls2c{letter-spacing:1.104000px;}
.ls77{letter-spacing:1.701000px;}
.ls13{letter-spacing:2.400000px;}
.ls9d{letter-spacing:3.225000px;}
.ls6f{letter-spacing:3.243000px;}
.ls6e{letter-spacing:3.429300px;}
.ls4c{letter-spacing:3.484500px;}
.ls50{letter-spacing:3.588000px;}
.ls65{letter-spacing:3.946800px;}
.ls11{letter-spacing:4.200000px;}
.ls7b{letter-spacing:4.725000px;}
.ls31{letter-spacing:4.761000px;}
.ls68{letter-spacing:4.933500px;}
.ls48{letter-spacing:4.950000px;}
.ls69{letter-spacing:4.974900px;}
.ls7c{letter-spacing:5.292000px;}
.ls21{letter-spacing:5.475000px;}
.ls6b{letter-spacing:5.727000px;}
.ls6a{letter-spacing:5.740800px;}
.ls15{letter-spacing:5.760000px;}
.ls10{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls88{letter-spacing:6.111000px;}
.ls87{letter-spacing:6.117300px;}
.ls89{letter-spacing:6.174000px;}
.ls24{letter-spacing:6.210000px;}
.ls92{letter-spacing:6.249600px;}
.ls14{letter-spacing:6.300000px;}
.ls4a{letter-spacing:6.348000px;}
.ls91{letter-spacing:6.375000px;}
.ls93{letter-spacing:6.525000px;}
.ls7d{letter-spacing:6.678000px;}
.ls7e{letter-spacing:6.867000px;}
.ls6d{letter-spacing:7.245000px;}
.ls81{letter-spacing:7.257600px;}
.ls82{letter-spacing:7.308000px;}
.ls5d{letter-spacing:7.350000px;}
.ls59{letter-spacing:7.725000px;}
.ls40{letter-spacing:7.950000px;}
.ls36{letter-spacing:8.100000px;}
.ls35{letter-spacing:8.142000px;}
.ls90{letter-spacing:8.177400px;}
.ls51{letter-spacing:8.250000px;}
.ls7a{letter-spacing:8.322300px;}
.ls2b{letter-spacing:8.325000px;}
.ls3{letter-spacing:8.400000px;}
.ls76{letter-spacing:8.700000px;}
.ls25{letter-spacing:8.925000px;}
.ls4e{letter-spacing:8.942400px;}
.ls12{letter-spacing:9.183900px;}
.ls6c{letter-spacing:9.970500px;}
.ls1f{letter-spacing:11.178000px;}
.ls70{letter-spacing:11.957700px;}
.ls9a{letter-spacing:12.480000px;}
.ls32{letter-spacing:15.007500px;}
.ls44{letter-spacing:15.387000px;}
.ls42{letter-spacing:16.629000px;}
.ls30{letter-spacing:23.598000px;}
.ls8d{letter-spacing:24.381000px;}
.ls7f{letter-spacing:24.979500px;}
.ls80{letter-spacing:25.011000px;}
.ls0{letter-spacing:28.188000px;}
.ls79{letter-spacing:29.074500px;}
.ls8a{letter-spacing:30.630600px;}
.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;}
}
.ws81{word-spacing:-69.000000px;}
.ws27{word-spacing:-49.542000px;}
.ws56{word-spacing:-48.093000px;}
.ws20{word-spacing:-42.900000px;}
.ws1f{word-spacing:-40.320000px;}
.ws7c{word-spacing:-37.743000px;}
.ws8c{word-spacing:-37.053000px;}
.ws88{word-spacing:-36.363000px;}
.ws79{word-spacing:-35.811000px;}
.ws7b{word-spacing:-34.086000px;}
.ws7a{word-spacing:-33.616800px;}
.ws78{word-spacing:-33.603000px;}
.ws8a{word-spacing:-33.333900px;}
.ws8b{word-spacing:-33.327000px;}
.ws77{word-spacing:-32.982000px;}
.ws76{word-spacing:-32.913000px;}
.ws89{word-spacing:-31.395000px;}
.ws8d{word-spacing:-30.981000px;}
.ws2c{word-spacing:-30.000000px;}
.ws8f{word-spacing:-29.775000px;}
.ws12{word-spacing:-29.475000px;}
.ws32{word-spacing:-29.400000px;}
.ws58{word-spacing:-29.325000px;}
.ws3d{word-spacing:-29.175000px;}
.ws47{word-spacing:-29.025000px;}
.ws65{word-spacing:-28.800000px;}
.ws6d{word-spacing:-28.425000px;}
.wsa2{word-spacing:-27.600000px;}
.wsa1{word-spacing:-27.450000px;}
.ws4{word-spacing:-26.676000px;}
.ws24{word-spacing:-26.550000px;}
.ws4f{word-spacing:-26.025000px;}
.ws3{word-spacing:-24.732000px;}
.wsa9{word-spacing:-24.300000px;}
.wsab{word-spacing:-22.860000px;}
.ws9{word-spacing:-22.740000px;}
.ws14{word-spacing:-22.620000px;}
.ws1{word-spacing:-22.248000px;}
.ws15{word-spacing:-20.331000px;}
.ws5{word-spacing:-20.196000px;}
.ws8{word-spacing:-20.160000px;}
.ws90{word-spacing:-19.404000px;}
.ws17{word-spacing:-19.389000px;}
.ws85{word-spacing:-19.320000px;}
.ws2{word-spacing:-19.224000px;}
.ws7{word-spacing:-18.984000px;}
.ws70{word-spacing:-18.711000px;}
.ws25{word-spacing:-18.630000px;}
.ws13{word-spacing:-18.102000px;}
.ws93{word-spacing:-17.703000px;}
.ws49{word-spacing:-17.181000px;}
.ws16{word-spacing:-17.043000px;}
.wsad{word-spacing:-16.860000px;}
.ws38{word-spacing:-16.698000px;}
.ws4a{word-spacing:-16.629000px;}
.ws68{word-spacing:-16.560000px;}
.ws7f{word-spacing:-16.353000px;}
.ws0{word-spacing:-16.308000px;}
.ws59{word-spacing:-16.284000px;}
.ws84{word-spacing:-16.215000px;}
.ws55{word-spacing:-16.146000px;}
.wsaa{word-spacing:-16.044000px;}
.ws83{word-spacing:-16.008000px;}
.ws41{word-spacing:-15.939000px;}
.ws39{word-spacing:-15.870000px;}
.ws26{word-spacing:-15.801000px;}
.ws42{word-spacing:-15.663000px;}
.ws45{word-spacing:-15.594000px;}
.ws94{word-spacing:-15.561000px;}
.ws35{word-spacing:-15.525000px;}
.ws5e{word-spacing:-15.456000px;}
.ws6{word-spacing:-15.372000px;}
.ws82{word-spacing:-15.318000px;}
.ws80{word-spacing:-15.249000px;}
.ws2e{word-spacing:-15.042000px;}
.ws40{word-spacing:-14.973000px;}
.ws3f{word-spacing:-14.904000px;}
.wsa{word-spacing:-14.820000px;}
.ws18{word-spacing:-14.766000px;}
.ws66{word-spacing:-14.628000px;}
.ws5d{word-spacing:-14.559000px;}
.ws5f{word-spacing:-14.490000px;}
.ws33{word-spacing:-14.283000px;}
.ws75{word-spacing:-14.145000px;}
.wsa3{word-spacing:-13.986000px;}
.ws67{word-spacing:-13.938000px;}
.ws98{word-spacing:-13.860000px;}
.ws99{word-spacing:-13.734000px;}
.ws3e{word-spacing:-13.662000px;}
.wsac{word-spacing:-13.560000px;}
.wsaf{word-spacing:-13.500000px;}
.ws48{word-spacing:-13.179000px;}
.wsae{word-spacing:-13.080000px;}
.wsb1{word-spacing:-12.960000px;}
.wsb0{word-spacing:-12.840000px;}
.ws6b{word-spacing:-12.420000px;}
.ws3a{word-spacing:-11.799000px;}
.ws34{word-spacing:-11.109000px;}
.ws36{word-spacing:-10.419000px;}
.ws9a{word-spacing:-10.320849px;}
.ws4b{word-spacing:-9.867000px;}
.wsd{word-spacing:-8.400000px;}
.ws9d{word-spacing:-7.875000px;}
.ws97{word-spacing:-6.867000px;}
.ws96{word-spacing:-6.678000px;}
.ws52{word-spacing:-6.348000px;}
.ws91{word-spacing:-6.300000px;}
.wsc{word-spacing:-6.000000px;}
.ws95{word-spacing:-5.292000px;}
.ws3b{word-spacing:-4.761000px;}
.ws1a{word-spacing:-4.200000px;}
.ws5a{word-spacing:-4.140000px;}
.ws43{word-spacing:-4.071000px;}
.ws6a{word-spacing:-3.312000px;}
.ws2d{word-spacing:-3.105000px;}
.ws19{word-spacing:-2.400000px;}
.ws87{word-spacing:-2.070000px;}
.ws54{word-spacing:-1.794000px;}
.ws2a{word-spacing:-1.173000px;}
.ws37{word-spacing:-1.104000px;}
.ws22{word-spacing:-1.080000px;}
.ws63{word-spacing:-0.690000px;}
.ws9b{word-spacing:-0.063000px;}
.wsb{word-spacing:0.000000px;}
.ws71{word-spacing:0.171000px;}
.wse{word-spacing:0.180000px;}
.ws4c{word-spacing:0.207000px;}
.ws6e{word-spacing:0.345000px;}
.ws4e{word-spacing:0.483000px;}
.ws11{word-spacing:0.504000px;}
.ws57{word-spacing:0.552000px;}
.wsa6{word-spacing:0.567000px;}
.ws2f{word-spacing:0.627000px;}
.ws1e{word-spacing:0.660000px;}
.ws64{word-spacing:0.690000px;}
.ws1b{word-spacing:0.855000px;}
.ws8e{word-spacing:1.035000px;}
.wsa5{word-spacing:1.071000px;}
.ws21{word-spacing:1.080000px;}
.ws3c{word-spacing:1.242000px;}
.wsf{word-spacing:1.296000px;}
.ws72{word-spacing:1.380000px;}
.ws4d{word-spacing:1.449000px;}
.ws30{word-spacing:1.620000px;}
.ws61{word-spacing:1.725000px;}
.ws2b{word-spacing:1.794000px;}
.ws5c{word-spacing:2.070000px;}
.ws9e{word-spacing:2.079000px;}
.ws31{word-spacing:2.109000px;}
.ws44{word-spacing:2.139000px;}
.ws62{word-spacing:2.208000px;}
.wsb3{word-spacing:2.352000px;}
.ws23{word-spacing:2.511000px;}
.ws53{word-spacing:2.622000px;}
.wsa4{word-spacing:2.709000px;}
.ws9f{word-spacing:2.772000px;}
.ws6c{word-spacing:2.829000px;}
.ws92{word-spacing:3.024000px;}
.ws1d{word-spacing:3.120000px;}
.ws7d{word-spacing:3.174000px;}
.ws6f{word-spacing:3.312000px;}
.ws7e{word-spacing:3.588000px;}
.ws60{word-spacing:3.657000px;}
.wsa0{word-spacing:3.717000px;}
.ws51{word-spacing:3.726000px;}
.ws46{word-spacing:4.554000px;}
.ws9c{word-spacing:4.662000px;}
.ws69{word-spacing:4.830000px;}
.wsa8{word-spacing:5.229000px;}
.wsb2{word-spacing:5.712000px;}
.wsa7{word-spacing:6.111000px;}
.ws74{word-spacing:6.969000px;}
.ws1c{word-spacing:8.004000px;}
.ws73{word-spacing:10.005000px;}
.ws5b{word-spacing:10.143000px;}
.ws10{word-spacing:10.584000px;}
.ws50{word-spacing:11.454000px;}
.ws29{word-spacing:12.420000px;}
.ws86{word-spacing:15.594000px;}
.ws28{word-spacing:19.527000px;}
._11{margin-left:-28.722000px;}
._27{margin-left:-23.836800px;}
._3e{margin-left:-18.855600px;}
._2f{margin-left:-15.660000px;}
._38{margin-left:-13.179000px;}
._31{margin-left:-11.661000px;}
._3b{margin-left:-10.600200px;}
._34{margin-left:-9.522000px;}
._c{margin-left:-8.100000px;}
._12{margin-left:-6.624600px;}
._5{margin-left:-5.427000px;}
._9{margin-left:-4.038000px;}
._8{margin-left:-2.973600px;}
._6{margin-left:-1.662000px;}
._3{width:1.342200px;}
._1{width:2.400000px;}
._b{width:3.650400px;}
._7{width:5.448600px;}
._4{width:6.612000px;}
._a{width:8.000400px;}
._d{width:9.352800px;}
._f{width:10.386600px;}
._10{width:11.836800px;}
._e{width:12.873600px;}
._13{width:14.700000px;}
._16{width:15.756000px;}
._1d{width:16.901700px;}
._18{width:18.096000px;}
._17{width:19.668000px;}
._1f{width:20.907000px;}
._3d{width:21.914400px;}
._1c{width:22.997700px;}
._1a{width:24.024600px;}
._25{width:25.825800px;}
._36{width:26.910000px;}
._23{width:28.566000px;}
._28{width:29.835600px;}
._2b{width:31.132800px;}
._37{width:32.434800px;}
._35{width:33.734100px;}
._33{width:35.624700px;}
._2d{width:36.901200px;}
._30{width:38.019000px;}
._21{width:39.537000px;}
._22{width:41.117100px;}
._3a{width:43.946100px;}
._29{width:45.408900px;}
._2c{width:48.748500px;}
._2a{width:54.227100px;}
._32{width:55.614000px;}
._20{width:65.343000px;}
._19{width:85.554000px;}
._15{width:260.610000px;}
._3c{width:486.405000px;}
._14{width:488.992200px;}
._2e{width:490.260000px;}
._39{width:491.482200px;}
._1e{width:493.522800px;}
._3f{width:496.110000px;}
._40{width:497.167200px;}
._41{width:500.086800px;}
._0{width:578.400000px;}
._2{width:993.211200px;}
._24{width:996.331200px;}
._26{width:1000.381200px;}
._1b{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:36.729000px;}
.fsa{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fsb{font-size:69.518162px;}
.fs1{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y258{bottom:106.092450px;}
.yd6{bottom:106.143150px;}
.y14f{bottom:106.153350px;}
.y91{bottom:106.165350px;}
.y120{bottom:106.186050px;}
.y20c{bottom:106.213350px;}
.y12d{bottom:106.214850px;}
.y43{bottom:106.215750px;}
.y1eb{bottom:106.229100px;}
.y6a{bottom:106.253250px;}
.yb7{bottom:106.268850px;}
.y1d3{bottom:106.272150px;}
.yfb{bottom:106.284750px;}
.y191{bottom:106.302450px;}
.y1f{bottom:106.333350px;}
.y16f{bottom:106.343700px;}
.y1b3{bottom:106.433850px;}
.y22d{bottom:106.544100px;}
.y1e{bottom:125.893350px;}
.y14e{bottom:126.525600px;}
.y12c{bottom:126.587100px;}
.y90{bottom:126.589350px;}
.y11f{bottom:126.610050px;}
.y69{bottom:126.625500px;}
.y42{bottom:126.864000px;}
.y190{bottom:127.076700px;}
.y16e{bottom:127.078200px;}
.yb6{bottom:127.227600px;}
.y20b{bottom:127.286850px;}
.y22c{bottom:127.349850px;}
.y1b2{bottom:127.381350px;}
.yd5{bottom:127.636650px;}
.y257{bottom:127.685700px;}
.yfe{bottom:127.693350px;}
.yfa{bottom:127.812750px;}
.y1ea{bottom:128.231850px;}
.y1d2{bottom:128.274900px;}
.y1d{bottom:145.453350px;}
.y14d{bottom:146.897850px;}
.y12b{bottom:146.959350px;}
.y68{bottom:146.997750px;}
.y8f{bottom:147.013350px;}
.y11e{bottom:147.034050px;}
.y41{bottom:147.512250px;}
.y16d{bottom:147.812700px;}
.yb5{bottom:148.186350px;}
.y1b1{bottom:148.328850px;}
.y237{bottom:148.360350px;}
.yd4{bottom:149.130150px;}
.yfd{bottom:149.221350px;}
.yf9{bottom:149.340750px;}
.y1e9{bottom:150.234600px;}
.y18f{bottom:156.355950px;}
.y22b{bottom:156.660600px;}
.y20a{bottom:156.865350px;}
.y256{bottom:157.783950px;}
.y1d1{bottom:158.766900px;}
.y1c{bottom:165.013350px;}
.y14c{bottom:167.270100px;}
.y12a{bottom:167.331600px;}
.y67{bottom:167.370000px;}
.y8e{bottom:167.437350px;}
.y11d{bottom:167.458050px;}
.y40{bottom:168.160500px;}
.y16c{bottom:168.547200px;}
.yb4{bottom:169.145100px;}
.y1b0{bottom:169.276350px;}
.y26b{bottom:169.433850px;}
.yd3{bottom:170.623650px;}
.yfc{bottom:170.749350px;}
.yf8{bottom:170.868750px;}
.y18e{bottom:177.130200px;}
.y209{bottom:177.938850px;}
.y255{bottom:179.377200px;}
.y1e8{bottom:180.726600px;}
.y1d0{bottom:180.769650px;}
.y1b{bottom:184.573350px;}
.y22a{bottom:185.971350px;}
.y14b{bottom:187.642350px;}
.y129{bottom:187.703850px;}
.y66{bottom:187.742250px;}
.y8d{bottom:187.861350px;}
.y11c{bottom:187.882050px;}
.y3f{bottom:188.808750px;}
.y16b{bottom:189.281700px;}
.yb3{bottom:190.103850px;}
.yd2{bottom:192.117150px;}
.yf7{bottom:192.277350px;}
.y1af{bottom:198.728850px;}
.y208{bottom:199.012350px;}
.y254{bottom:200.970450px;}
.y2a0{bottom:202.434750px;}
.y1e7{bottom:202.729350px;}
.y1a{bottom:204.133350px;}
.y18d{bottom:206.409450px;}
.y229{bottom:206.777100px;}
.y14a{bottom:208.014600px;}
.y128{bottom:208.076100px;}
.y65{bottom:208.114500px;}
.y8c{bottom:208.285350px;}
.y11b{bottom:208.306050px;}
.y3e{bottom:209.457000px;}
.y16a{bottom:210.016200px;}
.yb2{bottom:211.062600px;}
.y1cf{bottom:211.261650px;}
.yd1{bottom:213.610650px;}
.yf6{bottom:213.805350px;}
.y1ae{bottom:219.676350px;}
.y207{bottom:220.085850px;}
.y253{bottom:222.563700px;}
.y29f{bottom:222.684750px;}
.y19{bottom:223.693350px;}
.y18c{bottom:227.195400px;}
.y149{bottom:228.386850px;}
.y127{bottom:228.448350px;}
.y64{bottom:228.486750px;}
.y236{bottom:228.590850px;}
.y8b{bottom:228.709350px;}
.y11a{bottom:228.730050px;}
.y3d{bottom:230.105250px;}
.y169{bottom:230.750700px;}
.yb1{bottom:232.021350px;}
.y1e6{bottom:233.221350px;}
.yd0{bottom:235.104150px;}
.yf5{bottom:235.333350px;}
.y228{bottom:236.087850px;}
.y1ad{bottom:240.623850px;}
.y26a{bottom:241.159350px;}
.y1ce{bottom:241.753650px;}
.y29e{bottom:242.934750px;}
.y18{bottom:243.253350px;}
.y148{bottom:248.759100px;}
.y126{bottom:248.820600px;}
.y8a{bottom:249.133350px;}
.y119{bottom:249.154050px;}
.y206{bottom:249.664350px;}
.y3c{bottom:250.753500px;}
.y168{bottom:251.485200px;}
.y252{bottom:252.661950px;}
.yb0{bottom:252.980100px;}
.y1e5{bottom:255.224100px;}
.y18b{bottom:256.474650px;}
.ycf{bottom:256.597650px;}
.yf4{bottom:256.861350px;}
.y227{bottom:256.893600px;}
.y1ac{bottom:261.571350px;}
.y269{bottom:262.232850px;}
.y17{bottom:262.813350px;}
.y29d{bottom:263.184750px;}
.y1cd{bottom:263.756400px;}
.y147{bottom:269.131350px;}
.y125{bottom:269.192850px;}
.y89{bottom:269.557350px;}
.y118{bottom:269.578050px;}
.y63{bottom:270.111150px;}
.y205{bottom:270.737850px;}
.y3b{bottom:271.401750px;}
.y167{bottom:272.219700px;}
.yaf{bottom:273.938850px;}
.y251{bottom:274.255200px;}
.y1e4{bottom:277.226850px;}
.y18a{bottom:277.248900px;}
.yce{bottom:278.091150px;}
.yf3{bottom:278.389350px;}
.y235{bottom:279.242850px;}
.y16{bottom:282.373350px;}
.y268{bottom:283.306350px;}
.y29c{bottom:283.434750px;}
.y226{bottom:286.204350px;}
.y146{bottom:289.503600px;}
.y124{bottom:289.565100px;}
.y88{bottom:289.981350px;}
.y117{bottom:290.002050px;}
.y1ab{bottom:291.023850px;}
.y204{bottom:291.811350px;}
.y3a{bottom:292.050000px;}
.y166{bottom:292.954200px;}
.y1cc{bottom:294.248400px;}
.yae{bottom:294.897600px;}
.y250{bottom:295.848450px;}
.y189{bottom:298.023150px;}
.y1e3{bottom:299.229600px;}
.ycd{bottom:299.584650px;}
.yf2{bottom:299.917350px;}
.y234{bottom:300.316350px;}
.y15{bottom:301.933350px;}
.y29b{bottom:303.684750px;}
.y225{bottom:307.010100px;}
.y145{bottom:309.875850px;}
.y123{bottom:309.937350px;}
.y87{bottom:310.405350px;}
.y116{bottom:310.426050px;}
.y1aa{bottom:311.971350px;}
.y39{bottom:312.698250px;}
.y267{bottom:312.884850px;}
.y165{bottom:313.688700px;}
.yad{bottom:315.856350px;}
.y1cb{bottom:316.251150px;}
.y24f{bottom:317.441700px;}
.ycc{bottom:321.078150px;}
.y203{bottom:321.389850px;}
.yf1{bottom:321.445350px;}
.y14{bottom:321.493350px;}
.y188{bottom:327.302400px;}
.y1e2{bottom:329.721600px;}
.y144{bottom:330.248100px;}
.y122{bottom:330.309600px;}
.y86{bottom:330.829350px;}
.y115{bottom:330.850050px;}
.y62{bottom:332.278350px;}
.y1a9{bottom:332.918850px;}
.y38{bottom:333.346500px;}
.y266{bottom:333.958350px;}
.y164{bottom:334.423200px;}
.y224{bottom:336.320850px;}
.y29a{bottom:336.684750px;}
.yac{bottom:336.815100px;}
.y202{bottom:342.463350px;}
.ycb{bottom:342.571650px;}
.yf0{bottom:342.973350px;}
.y1ca{bottom:346.743150px;}
.y24e{bottom:347.539950px;}
.y187{bottom:348.076650px;}
.y143{bottom:350.620350px;}
.y233{bottom:350.968350px;}
.y85{bottom:351.253350px;}
.y114{bottom:351.274050px;}
.y1e1{bottom:351.724350px;}
.y61{bottom:352.650600px;}
.y13{bottom:353.818350px;}
.y1a8{bottom:353.866350px;}
.y37{bottom:353.994750px;}
.y163{bottom:355.157700px;}
.y223{bottom:357.126600px;}
.yab{bottom:357.773850px;}
.y201{bottom:363.536850px;}
.yca{bottom:364.065150px;}
.yef{bottom:364.501350px;}
.y1c9{bottom:368.745900px;}
.y186{bottom:368.850900px;}
.y24d{bottom:369.133200px;}
.y142{bottom:370.992600px;}
.y84{bottom:371.677350px;}
.y113{bottom:371.698050px;}
.y121{bottom:371.934000px;}
.y232{bottom:372.041850px;}
.y60{bottom:373.022850px;}
.y1e0{bottom:373.727100px;}
.y36{bottom:374.643000px;}
.y162{bottom:375.892200px;}
.y222{bottom:377.932350px;}
.y299{bottom:378.189750px;}
.yaa{bottom:378.732600px;}
.y1a7{bottom:383.318850px;}
.y265{bottom:384.610350px;}
.yc9{bottom:385.558650px;}
.yee{bottom:386.029350px;}
.y185{bottom:389.625150px;}
.y281{bottom:390.059850px;}
.y24c{bottom:390.726450px;}
.y141{bottom:391.364850px;}
.y83{bottom:392.101350px;}
.y112{bottom:392.122050px;}
.y200{bottom:393.115350px;}
.y5f{bottom:393.395100px;}
.y35{bottom:395.291250px;}
.y161{bottom:396.626700px;}
.y298{bottom:397.689750px;}
.y1c8{bottom:399.237900px;}
.ya9{bottom:399.691350px;}
.y1df{bottom:404.219100px;}
.y1a6{bottom:404.266350px;}
.yc8{bottom:407.052150px;}
.y221{bottom:407.243100px;}
.yed{bottom:407.557350px;}
.y280{bottom:410.314350px;}
.y184{bottom:410.399400px;}
.y12{bottom:411.633600px;}
.y140{bottom:411.737100px;}
.y24b{bottom:412.319700px;}
.y82{bottom:412.525350px;}
.y111{bottom:412.546050px;}
.y5e{bottom:413.767350px;}
.y1ff{bottom:414.188850px;}
.y34{bottom:415.939500px;}
.y297{bottom:417.189750px;}
.y160{bottom:417.361200px;}
.ya8{bottom:420.650100px;}
.y1c7{bottom:421.240650px;}
.y231{bottom:422.693850px;}
.y1a5{bottom:425.213850px;}
.y1de{bottom:426.221850px;}
.y220{bottom:428.048850px;}
.yc7{bottom:428.545650px;}
.yec{bottom:429.085350px;}
.y27f{bottom:430.568850px;}
.y183{bottom:431.173650px;}
.y13f{bottom:432.109350px;}
.y81{bottom:432.949350px;}
.y110{bottom:432.970050px;}
.y5d{bottom:434.139600px;}
.y264{bottom:435.262350px;}
.y296{bottom:436.689750px;}
.y15f{bottom:438.095700px;}
.y11{bottom:438.702600px;}
.ya7{bottom:441.608850px;}
.y24a{bottom:442.417950px;}
.y1fe{bottom:443.767350px;}
.y1a4{bottom:446.161350px;}
.y21f{bottom:448.854600px;}
.yc6{bottom:450.039150px;}
.yeb{bottom:450.613350px;}
.y1c6{bottom:451.732650px;}
.y13e{bottom:452.481600px;}
.y80{bottom:453.373350px;}
.y10f{bottom:453.394050px;}
.y5c{bottom:454.511850px;}
.y295{bottom:456.189750px;}
.y263{bottom:456.335850px;}
.y1dd{bottom:456.713850px;}
.y33{bottom:457.842000px;}
.y15e{bottom:458.830200px;}
.y27e{bottom:459.328350px;}
.y182{bottom:460.452900px;}
.ya6{bottom:462.567600px;}
.y249{bottom:464.011200px;}
.y1fd{bottom:464.840850px;}
.y10{bottom:465.771600px;}
.y21e{bottom:469.660350px;}
.yc5{bottom:471.532650px;}
.yea{bottom:472.141350px;}
.y13d{bottom:472.853850px;}
.y1c5{bottom:473.735400px;}
.y7f{bottom:473.797350px;}
.y10e{bottom:473.818050px;}
.y5b{bottom:474.884100px;}
.y1a3{bottom:475.613850px;}
.y294{bottom:475.689750px;}
.y1dc{bottom:478.716600px;}
.y15d{bottom:479.564700px;}
.y27d{bottom:479.582850px;}
.y181{bottom:481.227150px;}
.ya5{bottom:483.526350px;}
.y1fc{bottom:485.914350px;}
.y21d{bottom:490.466100px;}
.yf{bottom:492.840600px;}
.yc4{bottom:493.026150px;}
.y13c{bottom:493.226100px;}
.ye9{bottom:493.669350px;}
.y248{bottom:494.109450px;}
.y7e{bottom:494.221350px;}
.y10d{bottom:494.242050px;}
.y293{bottom:495.189750px;}
.y5a{bottom:495.256350px;}
.y1c4{bottom:495.738150px;}
.y1a2{bottom:496.561350px;}
.y15c{bottom:500.299200px;}
.y180{bottom:502.001400px;}
.ya4{bottom:504.485100px;}
.y262{bottom:506.987850px;}
.y27c{bottom:508.342350px;}
.y1db{bottom:509.208600px;}
.yc3{bottom:514.519650px;}
.y7d{bottom:514.645350px;}
.y10c{bottom:514.666050px;}
.y292{bottom:514.689750px;}
.ye8{bottom:515.197350px;}
.y1fb{bottom:515.492850px;}
.y59{bottom:515.628600px;}
.y247{bottom:515.702700px;}
.y1a1{bottom:517.508850px;}
.y1c3{bottom:517.740900px;}
.y21c{bottom:519.776850px;}
.y32{bottom:520.502400px;}
.ya3{bottom:525.443850px;}
.y261{bottom:528.061350px;}
.y27b{bottom:528.596850px;}
.y17f{bottom:531.280650px;}
.y291{bottom:534.189750px;}
.y13b{bottom:534.850500px;}
.y7c{bottom:535.069350px;}
.y10b{bottom:535.090050px;}
.y58{bottom:536.000850px;}
.yc2{bottom:536.013150px;}
.y1fa{bottom:536.566350px;}
.ye7{bottom:536.725350px;}
.y246{bottom:537.295950px;}
.y1da{bottom:539.700600px;}
.y21b{bottom:540.582600px;}
.ye{bottom:541.167000px;}
.y31{bottom:541.927350px;}
.y15b{bottom:542.300550px;}
.ya2{bottom:546.402600px;}
.y1a0{bottom:546.961350px;}
.y1c2{bottom:548.232900px;}
.y27a{bottom:548.851350px;}
.y17e{bottom:552.054900px;}
.y290{bottom:553.689750px;}
.y7b{bottom:555.493350px;}
.y10a{bottom:555.514050px;}
.y57{bottom:556.373100px;}
.yc1{bottom:557.506650px;}
.y1f9{bottom:557.639850px;}
.ye6{bottom:558.253350px;}
.y245{bottom:558.889200px;}
.y1d9{bottom:561.703350px;}
.y30{bottom:561.817350px;}
.y15a{bottom:566.782800px;}
.ya1{bottom:567.361350px;}
.y19f{bottom:567.908850px;}
.y21a{bottom:569.893350px;}
.y1c1{bottom:570.235650px;}
.yd{bottom:572.730000px;}
.y17d{bottom:572.829150px;}
.y28f{bottom:573.189750px;}
.y7a{bottom:575.917350px;}
.y109{bottom:575.938050px;}
.y56{bottom:576.745350px;}
.y279{bottom:577.610850px;}
.y260{bottom:578.713350px;}
.yc0{bottom:579.000150px;}
.ye5{bottom:579.781350px;}
.y2f{bottom:581.707350px;}
.y1d8{bottom:583.706100px;}
.y1f8{bottom:587.218350px;}
.ya0{bottom:588.320100px;}
.y19e{bottom:588.856350px;}
.y244{bottom:588.987450px;}
.y219{bottom:590.699100px;}
.y1c0{bottom:592.238400px;}
.y28e{bottom:592.689750px;}
.y79{bottom:596.341350px;}
.y108{bottom:596.362050px;}
.y55{bottom:597.117600px;}
.y13a{bottom:597.194400px;}
.y278{bottom:597.865350px;}
.y25f{bottom:599.786850px;}
.ybf{bottom:600.493650px;}
.ye4{bottom:601.309350px;}
.y2e{bottom:601.597350px;}
.y17c{bottom:602.108400px;}
.yc{bottom:604.293000px;}
.y1f7{bottom:608.291850px;}
.y9f{bottom:609.278850px;}
.y19d{bottom:609.803850px;}
.y243{bottom:610.580700px;}
.y28d{bottom:612.189750px;}
.y1d7{bottom:614.198100px;}
.y1bf{bottom:614.241150px;}
.y78{bottom:616.765350px;}
.y107{bottom:616.786050px;}
.y54{bottom:617.489850px;}
.y139{bottom:617.566650px;}
.y218{bottom:620.009850px;}
.y2d{bottom:621.487350px;}
.ybe{bottom:621.987150px;}
.ye3{bottom:622.837350px;}
.y277{bottom:626.624850px;}
.y25e{bottom:629.365350px;}
.y159{bottom:629.548950px;}
.y9e{bottom:630.237600px;}
.y28c{bottom:631.689750px;}
.yb{bottom:635.856000px;}
.y1d6{bottom:636.200850px;}
.y77{bottom:637.189350px;}
.y106{bottom:637.210050px;}
.y53{bottom:637.862100px;}
.y1f6{bottom:637.870350px;}
.y138{bottom:637.938900px;}
.y19c{bottom:639.256350px;}
.y242{bottom:640.678950px;}
.y217{bottom:640.815600px;}
.y2c{bottom:641.377350px;}
.ye2{bottom:644.365350px;}
.y1be{bottom:644.733150px;}
.y276{bottom:646.879350px;}
.y158{bottom:650.283450px;}
.y25d{bottom:650.438850px;}
.y28b{bottom:651.189750px;}
.y9d{bottom:651.196350px;}
.y17b{bottom:653.473350px;}
.y76{bottom:657.613350px;}
.y105{bottom:657.634050px;}
.y52{bottom:658.234350px;}
.y137{bottom:658.311150px;}
.y1f5{bottom:658.943850px;}
.y19b{bottom:660.203850px;}
.y2b{bottom:661.267350px;}
.y241{bottom:662.272200px;}
.ybd{bottom:664.734150px;}
.ye1{bottom:665.893350px;}
.y1bd{bottom:666.692850px;}
.y275{bottom:667.133850px;}
.ya{bottom:667.419000px;}
.y216{bottom:670.126350px;}
.y28a{bottom:670.689750px;}
.y157{bottom:671.017950px;}
.y9c{bottom:672.155100px;}
.y17a{bottom:674.242350px;}
.y75{bottom:678.037350px;}
.y104{bottom:678.058050px;}
.y51{bottom:678.606600px;}
.y136{bottom:678.683400px;}
.y25c{bottom:680.017350px;}
.y2a{bottom:681.157350px;}
.y240{bottom:683.865450px;}
.y274{bottom:687.388350px;}
.ye0{bottom:687.421350px;}
.y1f4{bottom:688.522350px;}
.y1bc{bottom:688.695600px;}
.y19a{bottom:689.656350px;}
.y289{bottom:690.189750px;}
.y215{bottom:690.932100px;}
.y156{bottom:691.752450px;}
.y9b{bottom:693.113850px;}
.y179{bottom:695.011350px;}
.y74{bottom:698.461350px;}
.y103{bottom:698.482050px;}
.y50{bottom:698.978850px;}
.y9{bottom:698.982000px;}
.y134{bottom:699.032550px;}
.y135{bottom:699.055650px;}
.y29{bottom:701.047350px;}
.y25b{bottom:701.090850px;}
.ydf{bottom:708.949350px;}
.y1f3{bottom:709.595850px;}
.y288{bottom:709.689750px;}
.y199{bottom:710.603850px;}
.y1bb{bottom:710.698350px;}
.y155{bottom:712.486950px;}
.y23f{bottom:713.963700px;}
.y9a{bottom:714.072600px;}
.y178{bottom:715.780350px;}
.y273{bottom:716.147850px;}
.y73{bottom:718.885350px;}
.y102{bottom:718.906050px;}
.y4f{bottom:719.351100px;}
.y133{bottom:719.404800px;}
.y214{bottom:720.242850px;}
.y28{bottom:720.937350px;}
.y287{bottom:729.189750px;}
.yde{bottom:730.477350px;}
.y25a{bottom:730.669350px;}
.y1d5{bottom:732.701100px;}
.y154{bottom:733.221450px;}
.y99{bottom:735.031350px;}
.y23e{bottom:735.556950px;}
.y272{bottom:736.402350px;}
.y177{bottom:736.549350px;}
.y1f2{bottom:739.174350px;}
.y72{bottom:739.309350px;}
.y101{bottom:739.330050px;}
.y4e{bottom:739.723350px;}
.y132{bottom:739.777050px;}
.y198{bottom:740.056350px;}
.y27{bottom:740.827350px;}
.y213{bottom:741.048600px;}
.y1ba{bottom:741.190350px;}
.ybc{bottom:749.504100px;}
.y259{bottom:751.742850px;}
.ydd{bottom:752.005350px;}
.y98{bottom:755.990100px;}
.y23d{bottom:757.150200px;}
.y176{bottom:757.318350px;}
.y71{bottom:759.733350px;}
.y100{bottom:759.754050px;}
.y4d{bottom:760.095600px;}
.y130{bottom:760.134000px;}
.y131{bottom:760.149300px;}
.y1f1{bottom:760.247850px;}
.y8{bottom:760.325250px;}
.y26{bottom:760.717350px;}
.y197{bottom:761.003850px;}
.y286{bottom:761.439750px;}
.y1b9{bottom:763.193100px;}
.y271{bottom:765.161850px;}
.y212{bottom:770.359350px;}
.ydc{bottom:773.533350px;}
.ybb{bottom:774.735600px;}
.y153{bottom:775.218150px;}
.y97{bottom:776.948850px;}
.y175{bottom:778.087350px;}
.y70{bottom:780.157350px;}
.yff{bottom:780.178050px;}
.y4c{bottom:780.467850px;}
.y12f{bottom:780.506250px;}
.y25{bottom:780.607350px;}
.y230{bottom:781.321350px;}
.y1b8{bottom:785.195850px;}
.y270{bottom:785.416350px;}
.y23c{bottom:787.248450px;}
.y1f0{bottom:789.826350px;}
.y7{bottom:789.890250px;}
.y196{bottom:790.456350px;}
.y211{bottom:791.165100px;}
.ydb{bottom:795.061350px;}
.y96{bottom:797.907600px;}
.y174{bottom:798.856350px;}
.y6f{bottom:800.581350px;}
.y4b{bottom:800.840100px;}
.y12e{bottom:800.878500px;}
.y22f{bottom:802.394850px;}
.y1b7{bottom:807.198600px;}
.y23b{bottom:808.841700px;}
.y1ef{bottom:810.899850px;}
.y6{bottom:810.950250px;}
.y195{bottom:811.403850px;}
.y210{bottom:811.970850px;}
.y24{bottom:813.262350px;}
.y26f{bottom:814.175850px;}
.yda{bottom:816.589350px;}
.y95{bottom:818.866350px;}
.y285{bottom:819.189450px;}
.y173{bottom:819.625350px;}
.y6e{bottom:821.005350px;}
.y4a{bottom:821.212350px;}
.y1d4{bottom:829.201350px;}
.y23a{bottom:830.414100px;}
.y1ee{bottom:831.973350px;}
.y20f{bottom:832.776600px;}
.y26e{bottom:834.430350px;}
.y1b6{bottom:837.690600px;}
.y152{bottom:837.975000px;}
.yd9{bottom:838.117350px;}
.yba{bottom:838.220850px;}
.y94{bottom:839.825100px;}
.y172{bottom:840.394350px;}
.y5{bottom:840.515250px;}
.y194{bottom:840.856350px;}
.y6d{bottom:841.429350px;}
.y49{bottom:841.584600px;}
.y284{bottom:846.195450px;}
.y22e{bottom:853.046850px;}
.y26d{bottom:854.684850px;}
.y151{bottom:858.709500px;}
.yd8{bottom:859.645350px;}
.y1b5{bottom:859.693350px;}
.yb9{bottom:859.714350px;}
.y239{bottom:860.512350px;}
.y93{bottom:860.783850px;}
.y171{bottom:861.163350px;}
.y1ed{bottom:861.551850px;}
.y4{bottom:861.575250px;}
.y193{bottom:861.803850px;}
.y6c{bottom:861.853350px;}
.y48{bottom:861.956850px;}
.y20e{bottom:862.087350px;}
.y23{bottom:862.912350px;}
.y283{bottom:873.201450px;}
.yd7{bottom:881.173350px;}
.yb8{bottom:881.207850px;}
.y1b4{bottom:881.696100px;}
.y92{bottom:881.742600px;}
.y170{bottom:881.932350px;}
.y238{bottom:882.105600px;}
.y6b{bottom:882.277350px;}
.y47{bottom:882.329100px;}
.y1ec{bottom:882.625350px;}
.y3{bottom:882.635250px;}
.y192{bottom:882.751350px;}
.y20d{bottom:882.893100px;}
.y26c{bottom:883.444350px;}
.y22{bottom:884.307750px;}
.y282{bottom:900.207450px;}
.y150{bottom:900.706200px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y45{bottom:966.189000px;}
.y44{bottom:984.189000px;}
.h8{height:44.414062px;}
.hb{height:49.658203px;}
.hc{height:55.488281px;}
.h4{height:55.517578px;}
.h10{height:58.262695px;}
.h3{height:58.293457px;}
.h12{height:58.376857px;}
.h11{height:58.465657px;}
.hd{height:61.149902px;}
.ha{height:63.845215px;}
.he{height:64.322815px;}
.hf{height:64.324666px;}
.h2{height:69.396973px;}
.h9{height:74.948730px;}
.h7{height:77.724609px;}
.h5{height:99.931641px;}
.h6{height:117.914906px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.491650px;}
.x8{left:82.861950px;}
.xa{left:84.003300px;}
.x1{left:85.039350px;}
.x19{left:86.366400px;}
.xf{left:101.921850px;}
.xb{left:103.716450px;}
.x5{left:105.030600px;}
.x6{left:106.364250px;}
.x15{left:154.432500px;}
.x16{left:162.771150px;}
.xd{left:188.876400px;}
.xe{left:197.215050px;}
.x10{left:201.097650px;}
.xc{left:202.455600px;}
.x17{left:207.754500px;}
.x7{left:212.664000px;}
.x18{left:216.093150px;}
.x4{left:227.125800px;}
.x1a{left:228.600900px;}
.x2{left:232.601400px;}
.x3{left:233.753850px;}
.x11{left:275.351250px;}
.x12{left:283.689900px;}
.x13{left:530.178300px;}
.x14{left:538.516950px;}
@media print{
.v2{vertical-align:-16.032000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.388800pt;}
.v1{vertical-align:16.032000pt;}
.v3{vertical-align:18.606400pt;}
.ls6{letter-spacing:-9.408000pt;}
.ls7{letter-spacing:-9.216000pt;}
.ls61{letter-spacing:-8.893333pt;}
.ls8c{letter-spacing:-6.832000pt;}
.ls9{letter-spacing:-6.624000pt;}
.ls45{letter-spacing:-6.378667pt;}
.ls62{letter-spacing:-6.194667pt;}
.ls2f{letter-spacing:-5.888000pt;}
.lsb{letter-spacing:-5.760000pt;}
.ls98{letter-spacing:-5.432000pt;}
.ls2d{letter-spacing:-5.274667pt;}
.ls9e{letter-spacing:-5.077333pt;}
.lsc{letter-spacing:-4.778667pt;}
.ls99{letter-spacing:-4.648000pt;}
.lsa0{letter-spacing:-4.181333pt;}
.ls86{letter-spacing:-4.144000pt;}
.ls3d{letter-spacing:-4.048000pt;}
.ls8{letter-spacing:-3.936000pt;}
.ls60{letter-spacing:-3.600000pt;}
.ls41{letter-spacing:-3.434667pt;}
.ls49{letter-spacing:-3.312000pt;}
.ls8f{letter-spacing:-3.304000pt;}
.ls73{letter-spacing:-3.066667pt;}
.ls37{letter-spacing:-3.005333pt;}
.ls5e{letter-spacing:-2.944000pt;}
.ls19{letter-spacing:-2.826667pt;}
.ls5b{letter-spacing:-2.760000pt;}
.ls78{letter-spacing:-2.688000pt;}
.ls64{letter-spacing:-2.576000pt;}
.ls5c{letter-spacing:-2.514667pt;}
.ls8e{letter-spacing:-2.464000pt;}
.ls1d{letter-spacing:-2.453333pt;}
.ls94{letter-spacing:-2.408000pt;}
.ls4b{letter-spacing:-2.330667pt;}
.ls57{letter-spacing:-2.269333pt;}
.ls1e{letter-spacing:-2.232000pt;}
.ls53{letter-spacing:-2.208000pt;}
.ls17{letter-spacing:-2.160000pt;}
.ls5a{letter-spacing:-2.146667pt;}
.lsa3{letter-spacing:-2.133333pt;}
.ls9f{letter-spacing:-2.090667pt;}
.ls18{letter-spacing:-2.024000pt;}
.ls56{letter-spacing:-1.962667pt;}
.ls38{letter-spacing:-1.901333pt;}
.ls28{letter-spacing:-1.874667pt;}
.ls8b{letter-spacing:-1.848000pt;}
.ls39{letter-spacing:-1.840000pt;}
.ls29{letter-spacing:-1.778667pt;}
.lsa5{letter-spacing:-1.760000pt;}
.lsa{letter-spacing:-1.728000pt;}
.lsa6{letter-spacing:-1.653333pt;}
.ls85{letter-spacing:-1.624000pt;}
.ls23{letter-spacing:-1.594667pt;}
.lsd{letter-spacing:-1.568000pt;}
.lsa2{letter-spacing:-1.546667pt;}
.ls54{letter-spacing:-1.533333pt;}
.ls84{letter-spacing:-1.512000pt;}
.ls27{letter-spacing:-1.440000pt;}
.ls55{letter-spacing:-1.410667pt;}
.ls97{letter-spacing:-1.400000pt;}
.ls2e{letter-spacing:-1.349333pt;}
.ls3c{letter-spacing:-1.288000pt;}
.ls3b{letter-spacing:-1.226667pt;}
.lsa4{letter-spacing:-1.173333pt;}
.ls5{letter-spacing:-1.152000pt;}
.lsa1{letter-spacing:-1.120000pt;}
.ls22{letter-spacing:-1.104000pt;}
.ls34{letter-spacing:-1.042667pt;}
.ls3a{letter-spacing:-0.981333pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls95{letter-spacing:-0.952000pt;}
.ls71{letter-spacing:-0.920000pt;}
.ls4d{letter-spacing:-0.797333pt;}
.ls16{letter-spacing:-0.760000pt;}
.ls72{letter-spacing:-0.736000pt;}
.ls52{letter-spacing:-0.674667pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls66{letter-spacing:-0.613333pt;}
.ls26{letter-spacing:-0.557333pt;}
.lsf{letter-spacing:-0.522667pt;}
.ls96{letter-spacing:-0.504000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls47{letter-spacing:-0.429333pt;}
.ls33{letter-spacing:-0.306667pt;}
.ls46{letter-spacing:-0.184000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls5f{letter-spacing:-0.152000pt;}
.ls74{letter-spacing:-0.061333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls75{letter-spacing:0.000267pt;}
.ls4f{letter-spacing:0.006133pt;}
.ls2a{letter-spacing:0.008507pt;}
.ls9c{letter-spacing:0.010667pt;}
.ls3e{letter-spacing:0.012267pt;}
.ls9b{letter-spacing:0.016000pt;}
.ls3f{letter-spacing:0.018400pt;}
.ls63{letter-spacing:0.030667pt;}
.ls83{letter-spacing:0.056000pt;}
.ls43{letter-spacing:0.122667pt;}
.ls67{letter-spacing:0.208533pt;}
.ls20{letter-spacing:0.368000pt;}
.ls58{letter-spacing:0.613333pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls2c{letter-spacing:0.981333pt;}
.ls77{letter-spacing:1.512000pt;}
.ls13{letter-spacing:2.133333pt;}
.ls9d{letter-spacing:2.866667pt;}
.ls6f{letter-spacing:2.882667pt;}
.ls6e{letter-spacing:3.048267pt;}
.ls4c{letter-spacing:3.097333pt;}
.ls50{letter-spacing:3.189333pt;}
.ls65{letter-spacing:3.508267pt;}
.ls11{letter-spacing:3.733333pt;}
.ls7b{letter-spacing:4.200000pt;}
.ls31{letter-spacing:4.232000pt;}
.ls68{letter-spacing:4.385333pt;}
.ls48{letter-spacing:4.400000pt;}
.ls69{letter-spacing:4.422133pt;}
.ls7c{letter-spacing:4.704000pt;}
.ls21{letter-spacing:4.866667pt;}
.ls6b{letter-spacing:5.090667pt;}
.ls6a{letter-spacing:5.102933pt;}
.ls15{letter-spacing:5.120000pt;}
.ls10{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls88{letter-spacing:5.432000pt;}
.ls87{letter-spacing:5.437600pt;}
.ls89{letter-spacing:5.488000pt;}
.ls24{letter-spacing:5.520000pt;}
.ls92{letter-spacing:5.555200pt;}
.ls14{letter-spacing:5.600000pt;}
.ls4a{letter-spacing:5.642667pt;}
.ls91{letter-spacing:5.666667pt;}
.ls93{letter-spacing:5.800000pt;}
.ls7d{letter-spacing:5.936000pt;}
.ls7e{letter-spacing:6.104000pt;}
.ls6d{letter-spacing:6.440000pt;}
.ls81{letter-spacing:6.451200pt;}
.ls82{letter-spacing:6.496000pt;}
.ls5d{letter-spacing:6.533333pt;}
.ls59{letter-spacing:6.866667pt;}
.ls40{letter-spacing:7.066667pt;}
.ls36{letter-spacing:7.200000pt;}
.ls35{letter-spacing:7.237333pt;}
.ls90{letter-spacing:7.268800pt;}
.ls51{letter-spacing:7.333333pt;}
.ls7a{letter-spacing:7.397600pt;}
.ls2b{letter-spacing:7.400000pt;}
.ls3{letter-spacing:7.466667pt;}
.ls76{letter-spacing:7.733333pt;}
.ls25{letter-spacing:7.933333pt;}
.ls4e{letter-spacing:7.948800pt;}
.ls12{letter-spacing:8.163467pt;}
.ls6c{letter-spacing:8.862667pt;}
.ls1f{letter-spacing:9.936000pt;}
.ls70{letter-spacing:10.629067pt;}
.ls9a{letter-spacing:11.093333pt;}
.ls32{letter-spacing:13.340000pt;}
.ls44{letter-spacing:13.677333pt;}
.ls42{letter-spacing:14.781333pt;}
.ls30{letter-spacing:20.976000pt;}
.ls8d{letter-spacing:21.672000pt;}
.ls7f{letter-spacing:22.204000pt;}
.ls80{letter-spacing:22.232000pt;}
.ls0{letter-spacing:25.056000pt;}
.ls79{letter-spacing:25.844000pt;}
.ls8a{letter-spacing:27.227200pt;}
.ws81{word-spacing:-61.333333pt;}
.ws27{word-spacing:-44.037333pt;}
.ws56{word-spacing:-42.749333pt;}
.ws20{word-spacing:-38.133333pt;}
.ws1f{word-spacing:-35.840000pt;}
.ws7c{word-spacing:-33.549333pt;}
.ws8c{word-spacing:-32.936000pt;}
.ws88{word-spacing:-32.322667pt;}
.ws79{word-spacing:-31.832000pt;}
.ws7b{word-spacing:-30.298667pt;}
.ws7a{word-spacing:-29.881600pt;}
.ws78{word-spacing:-29.869333pt;}
.ws8a{word-spacing:-29.630133pt;}
.ws8b{word-spacing:-29.624000pt;}
.ws77{word-spacing:-29.317333pt;}
.ws76{word-spacing:-29.256000pt;}
.ws89{word-spacing:-27.906667pt;}
.ws8d{word-spacing:-27.538667pt;}
.ws2c{word-spacing:-26.666667pt;}
.ws8f{word-spacing:-26.466667pt;}
.ws12{word-spacing:-26.200000pt;}
.ws32{word-spacing:-26.133333pt;}
.ws58{word-spacing:-26.066667pt;}
.ws3d{word-spacing:-25.933333pt;}
.ws47{word-spacing:-25.800000pt;}
.ws65{word-spacing:-25.600000pt;}
.ws6d{word-spacing:-25.266667pt;}
.wsa2{word-spacing:-24.533333pt;}
.wsa1{word-spacing:-24.400000pt;}
.ws4{word-spacing:-23.712000pt;}
.ws24{word-spacing:-23.600000pt;}
.ws4f{word-spacing:-23.133333pt;}
.ws3{word-spacing:-21.984000pt;}
.wsa9{word-spacing:-21.600000pt;}
.wsab{word-spacing:-20.320000pt;}
.ws9{word-spacing:-20.213333pt;}
.ws14{word-spacing:-20.106667pt;}
.ws1{word-spacing:-19.776000pt;}
.ws15{word-spacing:-18.072000pt;}
.ws5{word-spacing:-17.952000pt;}
.ws8{word-spacing:-17.920000pt;}
.ws90{word-spacing:-17.248000pt;}
.ws17{word-spacing:-17.234667pt;}
.ws85{word-spacing:-17.173333pt;}
.ws2{word-spacing:-17.088000pt;}
.ws7{word-spacing:-16.874667pt;}
.ws70{word-spacing:-16.632000pt;}
.ws25{word-spacing:-16.560000pt;}
.ws13{word-spacing:-16.090667pt;}
.ws93{word-spacing:-15.736000pt;}
.ws49{word-spacing:-15.272000pt;}
.ws16{word-spacing:-15.149333pt;}
.wsad{word-spacing:-14.986667pt;}
.ws38{word-spacing:-14.842667pt;}
.ws4a{word-spacing:-14.781333pt;}
.ws68{word-spacing:-14.720000pt;}
.ws7f{word-spacing:-14.536000pt;}
.ws0{word-spacing:-14.496000pt;}
.ws59{word-spacing:-14.474667pt;}
.ws84{word-spacing:-14.413333pt;}
.ws55{word-spacing:-14.352000pt;}
.wsaa{word-spacing:-14.261333pt;}
.ws83{word-spacing:-14.229333pt;}
.ws41{word-spacing:-14.168000pt;}
.ws39{word-spacing:-14.106667pt;}
.ws26{word-spacing:-14.045333pt;}
.ws42{word-spacing:-13.922667pt;}
.ws45{word-spacing:-13.861333pt;}
.ws94{word-spacing:-13.832000pt;}
.ws35{word-spacing:-13.800000pt;}
.ws5e{word-spacing:-13.738667pt;}
.ws6{word-spacing:-13.664000pt;}
.ws82{word-spacing:-13.616000pt;}
.ws80{word-spacing:-13.554667pt;}
.ws2e{word-spacing:-13.370667pt;}
.ws40{word-spacing:-13.309333pt;}
.ws3f{word-spacing:-13.248000pt;}
.wsa{word-spacing:-13.173333pt;}
.ws18{word-spacing:-13.125333pt;}
.ws66{word-spacing:-13.002667pt;}
.ws5d{word-spacing:-12.941333pt;}
.ws5f{word-spacing:-12.880000pt;}
.ws33{word-spacing:-12.696000pt;}
.ws75{word-spacing:-12.573333pt;}
.wsa3{word-spacing:-12.432000pt;}
.ws67{word-spacing:-12.389333pt;}
.ws98{word-spacing:-12.320000pt;}
.ws99{word-spacing:-12.208000pt;}
.ws3e{word-spacing:-12.144000pt;}
.wsac{word-spacing:-12.053333pt;}
.wsaf{word-spacing:-12.000000pt;}
.ws48{word-spacing:-11.714667pt;}
.wsae{word-spacing:-11.626667pt;}
.wsb1{word-spacing:-11.520000pt;}
.wsb0{word-spacing:-11.413333pt;}
.ws6b{word-spacing:-11.040000pt;}
.ws3a{word-spacing:-10.488000pt;}
.ws34{word-spacing:-9.874667pt;}
.ws36{word-spacing:-9.261333pt;}
.ws9a{word-spacing:-9.174088pt;}
.ws4b{word-spacing:-8.770667pt;}
.wsd{word-spacing:-7.466667pt;}
.ws9d{word-spacing:-7.000000pt;}
.ws97{word-spacing:-6.104000pt;}
.ws96{word-spacing:-5.936000pt;}
.ws52{word-spacing:-5.642667pt;}
.ws91{word-spacing:-5.600000pt;}
.wsc{word-spacing:-5.333333pt;}
.ws95{word-spacing:-4.704000pt;}
.ws3b{word-spacing:-4.232000pt;}
.ws1a{word-spacing:-3.733333pt;}
.ws5a{word-spacing:-3.680000pt;}
.ws43{word-spacing:-3.618667pt;}
.ws6a{word-spacing:-2.944000pt;}
.ws2d{word-spacing:-2.760000pt;}
.ws19{word-spacing:-2.133333pt;}
.ws87{word-spacing:-1.840000pt;}
.ws54{word-spacing:-1.594667pt;}
.ws2a{word-spacing:-1.042667pt;}
.ws37{word-spacing:-0.981333pt;}
.ws22{word-spacing:-0.960000pt;}
.ws63{word-spacing:-0.613333pt;}
.ws9b{word-spacing:-0.056000pt;}
.wsb{word-spacing:0.000000pt;}
.ws71{word-spacing:0.152000pt;}
.wse{word-spacing:0.160000pt;}
.ws4c{word-spacing:0.184000pt;}
.ws6e{word-spacing:0.306667pt;}
.ws4e{word-spacing:0.429333pt;}
.ws11{word-spacing:0.448000pt;}
.ws57{word-spacing:0.490667pt;}
.wsa6{word-spacing:0.504000pt;}
.ws2f{word-spacing:0.557333pt;}
.ws1e{word-spacing:0.586667pt;}
.ws64{word-spacing:0.613333pt;}
.ws1b{word-spacing:0.760000pt;}
.ws8e{word-spacing:0.920000pt;}
.wsa5{word-spacing:0.952000pt;}
.ws21{word-spacing:0.960000pt;}
.ws3c{word-spacing:1.104000pt;}
.wsf{word-spacing:1.152000pt;}
.ws72{word-spacing:1.226667pt;}
.ws4d{word-spacing:1.288000pt;}
.ws30{word-spacing:1.440000pt;}
.ws61{word-spacing:1.533333pt;}
.ws2b{word-spacing:1.594667pt;}
.ws5c{word-spacing:1.840000pt;}
.ws9e{word-spacing:1.848000pt;}
.ws31{word-spacing:1.874667pt;}
.ws44{word-spacing:1.901333pt;}
.ws62{word-spacing:1.962667pt;}
.wsb3{word-spacing:2.090667pt;}
.ws23{word-spacing:2.232000pt;}
.ws53{word-spacing:2.330667pt;}
.wsa4{word-spacing:2.408000pt;}
.ws9f{word-spacing:2.464000pt;}
.ws6c{word-spacing:2.514667pt;}
.ws92{word-spacing:2.688000pt;}
.ws1d{word-spacing:2.773333pt;}
.ws7d{word-spacing:2.821333pt;}
.ws6f{word-spacing:2.944000pt;}
.ws7e{word-spacing:3.189333pt;}
.ws60{word-spacing:3.250667pt;}
.wsa0{word-spacing:3.304000pt;}
.ws51{word-spacing:3.312000pt;}
.ws46{word-spacing:4.048000pt;}
.ws9c{word-spacing:4.144000pt;}
.ws69{word-spacing:4.293333pt;}
.wsa8{word-spacing:4.648000pt;}
.wsb2{word-spacing:5.077333pt;}
.wsa7{word-spacing:5.432000pt;}
.ws74{word-spacing:6.194667pt;}
.ws1c{word-spacing:7.114667pt;}
.ws73{word-spacing:8.893333pt;}
.ws5b{word-spacing:9.016000pt;}
.ws10{word-spacing:9.408000pt;}
.ws50{word-spacing:10.181333pt;}
.ws29{word-spacing:11.040000pt;}
.ws86{word-spacing:13.861333pt;}
.ws28{word-spacing:17.357333pt;}
._11{margin-left:-25.530667pt;}
._27{margin-left:-21.188267pt;}
._3e{margin-left:-16.760533pt;}
._2f{margin-left:-13.920000pt;}
._38{margin-left:-11.714667pt;}
._31{margin-left:-10.365333pt;}
._3b{margin-left:-9.422400pt;}
._34{margin-left:-8.464000pt;}
._c{margin-left:-7.200000pt;}
._12{margin-left:-5.888533pt;}
._5{margin-left:-4.824000pt;}
._9{margin-left:-3.589333pt;}
._8{margin-left:-2.643200pt;}
._6{margin-left:-1.477333pt;}
._3{width:1.193067pt;}
._1{width:2.133333pt;}
._b{width:3.244800pt;}
._7{width:4.843200pt;}
._4{width:5.877333pt;}
._a{width:7.111467pt;}
._d{width:8.313600pt;}
._f{width:9.232533pt;}
._10{width:10.521600pt;}
._e{width:11.443200pt;}
._13{width:13.066667pt;}
._16{width:14.005333pt;}
._1d{width:15.023733pt;}
._18{width:16.085333pt;}
._17{width:17.482667pt;}
._1f{width:18.584000pt;}
._3d{width:19.479467pt;}
._1c{width:20.442400pt;}
._1a{width:21.355200pt;}
._25{width:22.956267pt;}
._36{width:23.920000pt;}
._23{width:25.392000pt;}
._28{width:26.520533pt;}
._2b{width:27.673600pt;}
._37{width:28.830933pt;}
._35{width:29.985867pt;}
._33{width:31.666400pt;}
._2d{width:32.801067pt;}
._30{width:33.794667pt;}
._21{width:35.144000pt;}
._22{width:36.548533pt;}
._3a{width:39.063200pt;}
._29{width:40.363467pt;}
._2c{width:43.332000pt;}
._2a{width:48.201867pt;}
._32{width:49.434667pt;}
._20{width:58.082667pt;}
._19{width:76.048000pt;}
._15{width:231.653333pt;}
._3c{width:432.360000pt;}
._14{width:434.659733pt;}
._2e{width:435.786667pt;}
._39{width:436.873067pt;}
._1e{width:438.686933pt;}
._3f{width:440.986667pt;}
._40{width:441.926400pt;}
._41{width:444.521600pt;}
._0{width:514.133333pt;}
._2{width:882.854400pt;}
._24{width:885.627733pt;}
._26{width:889.227733pt;}
._1b{width:890.987733pt;}
.fsc{font-size:32.648000pt;}
.fsa{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fsb{font-size:61.793921pt;}
.fs1{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y258{bottom:94.304400pt;}
.yd6{bottom:94.349467pt;}
.y14f{bottom:94.358533pt;}
.y91{bottom:94.369200pt;}
.y120{bottom:94.387600pt;}
.y20c{bottom:94.411867pt;}
.y12d{bottom:94.413200pt;}
.y43{bottom:94.414000pt;}
.y1eb{bottom:94.425867pt;}
.y6a{bottom:94.447333pt;}
.yb7{bottom:94.461200pt;}
.y1d3{bottom:94.464133pt;}
.yfb{bottom:94.475333pt;}
.y191{bottom:94.491067pt;}
.y1f{bottom:94.518533pt;}
.y16f{bottom:94.527733pt;}
.y1b3{bottom:94.607867pt;}
.y22d{bottom:94.705867pt;}
.y1e{bottom:111.905200pt;}
.y14e{bottom:112.467200pt;}
.y12c{bottom:112.521867pt;}
.y90{bottom:112.523867pt;}
.y11f{bottom:112.542267pt;}
.y69{bottom:112.556000pt;}
.y42{bottom:112.768000pt;}
.y190{bottom:112.957067pt;}
.y16e{bottom:112.958400pt;}
.yb6{bottom:113.091200pt;}
.y20b{bottom:113.143867pt;}
.y22c{bottom:113.199867pt;}
.y1b2{bottom:113.227867pt;}
.yd5{bottom:113.454800pt;}
.y257{bottom:113.498400pt;}
.yfe{bottom:113.505200pt;}
.yfa{bottom:113.611333pt;}
.y1ea{bottom:113.983867pt;}
.y1d2{bottom:114.022133pt;}
.y1d{bottom:129.291867pt;}
.y14d{bottom:130.575867pt;}
.y12b{bottom:130.630533pt;}
.y68{bottom:130.664667pt;}
.y8f{bottom:130.678533pt;}
.y11e{bottom:130.696933pt;}
.y41{bottom:131.122000pt;}
.y16d{bottom:131.389067pt;}
.yb5{bottom:131.721200pt;}
.y1b1{bottom:131.847867pt;}
.y237{bottom:131.875867pt;}
.yd4{bottom:132.560133pt;}
.yfd{bottom:132.641200pt;}
.yf9{bottom:132.747333pt;}
.y1e9{bottom:133.541867pt;}
.y18f{bottom:138.983067pt;}
.y22b{bottom:139.253867pt;}
.y20a{bottom:139.435867pt;}
.y256{bottom:140.252400pt;}
.y1d1{bottom:141.126133pt;}
.y1c{bottom:146.678533pt;}
.y14c{bottom:148.684533pt;}
.y12a{bottom:148.739200pt;}
.y67{bottom:148.773333pt;}
.y8e{bottom:148.833200pt;}
.y11d{bottom:148.851600pt;}
.y40{bottom:149.476000pt;}
.y16c{bottom:149.819733pt;}
.yb4{bottom:150.351200pt;}
.y1b0{bottom:150.467867pt;}
.y26b{bottom:150.607867pt;}
.yd3{bottom:151.665467pt;}
.yfc{bottom:151.777200pt;}
.yf8{bottom:151.883333pt;}
.y18e{bottom:157.449067pt;}
.y209{bottom:158.167867pt;}
.y255{bottom:159.446400pt;}
.y1e8{bottom:160.645867pt;}
.y1d0{bottom:160.684133pt;}
.y1b{bottom:164.065200pt;}
.y22a{bottom:165.307867pt;}
.y14b{bottom:166.793200pt;}
.y129{bottom:166.847867pt;}
.y66{bottom:166.882000pt;}
.y8d{bottom:166.987867pt;}
.y11c{bottom:167.006267pt;}
.y3f{bottom:167.830000pt;}
.y16b{bottom:168.250400pt;}
.yb3{bottom:168.981200pt;}
.yd2{bottom:170.770800pt;}
.yf7{bottom:170.913200pt;}
.y1af{bottom:176.647867pt;}
.y208{bottom:176.899867pt;}
.y254{bottom:178.640400pt;}
.y2a0{bottom:179.942000pt;}
.y1e7{bottom:180.203867pt;}
.y1a{bottom:181.451867pt;}
.y18d{bottom:183.475067pt;}
.y229{bottom:183.801867pt;}
.y14a{bottom:184.901867pt;}
.y128{bottom:184.956533pt;}
.y65{bottom:184.990667pt;}
.y8c{bottom:185.142533pt;}
.y11b{bottom:185.160933pt;}
.y3e{bottom:186.184000pt;}
.y16a{bottom:186.681067pt;}
.yb2{bottom:187.611200pt;}
.y1cf{bottom:187.788133pt;}
.yd1{bottom:189.876133pt;}
.yf6{bottom:190.049200pt;}
.y1ae{bottom:195.267867pt;}
.y207{bottom:195.631867pt;}
.y253{bottom:197.834400pt;}
.y29f{bottom:197.942000pt;}
.y19{bottom:198.838533pt;}
.y18c{bottom:201.951467pt;}
.y149{bottom:203.010533pt;}
.y127{bottom:203.065200pt;}
.y64{bottom:203.099333pt;}
.y236{bottom:203.191867pt;}
.y8b{bottom:203.297200pt;}
.y11a{bottom:203.315600pt;}
.y3d{bottom:204.538000pt;}
.y169{bottom:205.111733pt;}
.yb1{bottom:206.241200pt;}
.y1e6{bottom:207.307867pt;}
.yd0{bottom:208.981467pt;}
.yf5{bottom:209.185200pt;}
.y228{bottom:209.855867pt;}
.y1ad{bottom:213.887867pt;}
.y26a{bottom:214.363867pt;}
.y1ce{bottom:214.892133pt;}
.y29e{bottom:215.942000pt;}
.y18{bottom:216.225200pt;}
.y148{bottom:221.119200pt;}
.y126{bottom:221.173867pt;}
.y8a{bottom:221.451867pt;}
.y119{bottom:221.470267pt;}
.y206{bottom:221.923867pt;}
.y3c{bottom:222.892000pt;}
.y168{bottom:223.542400pt;}
.y252{bottom:224.588400pt;}
.yb0{bottom:224.871200pt;}
.y1e5{bottom:226.865867pt;}
.y18b{bottom:227.977467pt;}
.ycf{bottom:228.086800pt;}
.yf4{bottom:228.321200pt;}
.y227{bottom:228.349867pt;}
.y1ac{bottom:232.507867pt;}
.y269{bottom:233.095867pt;}
.y17{bottom:233.611867pt;}
.y29d{bottom:233.942000pt;}
.y1cd{bottom:234.450133pt;}
.y147{bottom:239.227867pt;}
.y125{bottom:239.282533pt;}
.y89{bottom:239.606533pt;}
.y118{bottom:239.624933pt;}
.y63{bottom:240.098800pt;}
.y205{bottom:240.655867pt;}
.y3b{bottom:241.246000pt;}
.y167{bottom:241.973067pt;}
.yaf{bottom:243.501200pt;}
.y251{bottom:243.782400pt;}
.y1e4{bottom:246.423867pt;}
.y18a{bottom:246.443467pt;}
.yce{bottom:247.192133pt;}
.yf3{bottom:247.457200pt;}
.y235{bottom:248.215867pt;}
.y16{bottom:250.998533pt;}
.y268{bottom:251.827867pt;}
.y29c{bottom:251.942000pt;}
.y226{bottom:254.403867pt;}
.y146{bottom:257.336533pt;}
.y124{bottom:257.391200pt;}
.y88{bottom:257.761200pt;}
.y117{bottom:257.779600pt;}
.y1ab{bottom:258.687867pt;}
.y204{bottom:259.387867pt;}
.y3a{bottom:259.600000pt;}
.y166{bottom:260.403733pt;}
.y1cc{bottom:261.554133pt;}
.yae{bottom:262.131200pt;}
.y250{bottom:262.976400pt;}
.y189{bottom:264.909467pt;}
.y1e3{bottom:265.981867pt;}
.ycd{bottom:266.297467pt;}
.yf2{bottom:266.593200pt;}
.y234{bottom:266.947867pt;}
.y15{bottom:268.385200pt;}
.y29b{bottom:269.942000pt;}
.y225{bottom:272.897867pt;}
.y145{bottom:275.445200pt;}
.y123{bottom:275.499867pt;}
.y87{bottom:275.915867pt;}
.y116{bottom:275.934267pt;}
.y1aa{bottom:277.307867pt;}
.y39{bottom:277.954000pt;}
.y267{bottom:278.119867pt;}
.y165{bottom:278.834400pt;}
.yad{bottom:280.761200pt;}
.y1cb{bottom:281.112133pt;}
.y24f{bottom:282.170400pt;}
.ycc{bottom:285.402800pt;}
.y203{bottom:285.679867pt;}
.yf1{bottom:285.729200pt;}
.y14{bottom:285.771867pt;}
.y188{bottom:290.935467pt;}
.y1e2{bottom:293.085867pt;}
.y144{bottom:293.553867pt;}
.y122{bottom:293.608533pt;}
.y86{bottom:294.070533pt;}
.y115{bottom:294.088933pt;}
.y62{bottom:295.358533pt;}
.y1a9{bottom:295.927867pt;}
.y38{bottom:296.308000pt;}
.y266{bottom:296.851867pt;}
.y164{bottom:297.265067pt;}
.y224{bottom:298.951867pt;}
.y29a{bottom:299.275333pt;}
.yac{bottom:299.391200pt;}
.y202{bottom:304.411867pt;}
.ycb{bottom:304.508133pt;}
.yf0{bottom:304.865200pt;}
.y1ca{bottom:308.216133pt;}
.y24e{bottom:308.924400pt;}
.y187{bottom:309.401467pt;}
.y143{bottom:311.662533pt;}
.y233{bottom:311.971867pt;}
.y85{bottom:312.225200pt;}
.y114{bottom:312.243600pt;}
.y1e1{bottom:312.643867pt;}
.y61{bottom:313.467200pt;}
.y13{bottom:314.505200pt;}
.y1a8{bottom:314.547867pt;}
.y37{bottom:314.662000pt;}
.y163{bottom:315.695733pt;}
.y223{bottom:317.445867pt;}
.yab{bottom:318.021200pt;}
.y201{bottom:323.143867pt;}
.yca{bottom:323.613467pt;}
.yef{bottom:324.001200pt;}
.y1c9{bottom:327.774133pt;}
.y186{bottom:327.867467pt;}
.y24d{bottom:328.118400pt;}
.y142{bottom:329.771200pt;}
.y84{bottom:330.379867pt;}
.y113{bottom:330.398267pt;}
.y121{bottom:330.608000pt;}
.y232{bottom:330.703867pt;}
.y60{bottom:331.575867pt;}
.y1e0{bottom:332.201867pt;}
.y36{bottom:333.016000pt;}
.y162{bottom:334.126400pt;}
.y222{bottom:335.939867pt;}
.y299{bottom:336.168667pt;}
.yaa{bottom:336.651200pt;}
.y1a7{bottom:340.727867pt;}
.y265{bottom:341.875867pt;}
.yc9{bottom:342.718800pt;}
.yee{bottom:343.137200pt;}
.y185{bottom:346.333467pt;}
.y281{bottom:346.719867pt;}
.y24c{bottom:347.312400pt;}
.y141{bottom:347.879867pt;}
.y83{bottom:348.534533pt;}
.y112{bottom:348.552933pt;}
.y200{bottom:349.435867pt;}
.y5f{bottom:349.684533pt;}
.y35{bottom:351.370000pt;}
.y161{bottom:352.557067pt;}
.y298{bottom:353.502000pt;}
.y1c8{bottom:354.878133pt;}
.ya9{bottom:355.281200pt;}
.y1df{bottom:359.305867pt;}
.y1a6{bottom:359.347867pt;}
.yc8{bottom:361.824133pt;}
.y221{bottom:361.993867pt;}
.yed{bottom:362.273200pt;}
.y280{bottom:364.723867pt;}
.y184{bottom:364.799467pt;}
.y12{bottom:365.896533pt;}
.y140{bottom:365.988533pt;}
.y24b{bottom:366.506400pt;}
.y82{bottom:366.689200pt;}
.y111{bottom:366.707600pt;}
.y5e{bottom:367.793200pt;}
.y1ff{bottom:368.167867pt;}
.y34{bottom:369.724000pt;}
.y297{bottom:370.835333pt;}
.y160{bottom:370.987733pt;}
.ya8{bottom:373.911200pt;}
.y1c7{bottom:374.436133pt;}
.y231{bottom:375.727867pt;}
.y1a5{bottom:377.967867pt;}
.y1de{bottom:378.863867pt;}
.y220{bottom:380.487867pt;}
.yc7{bottom:380.929467pt;}
.yec{bottom:381.409200pt;}
.y27f{bottom:382.727867pt;}
.y183{bottom:383.265467pt;}
.y13f{bottom:384.097200pt;}
.y81{bottom:384.843867pt;}
.y110{bottom:384.862267pt;}
.y5d{bottom:385.901867pt;}
.y264{bottom:386.899867pt;}
.y296{bottom:388.168667pt;}
.y15f{bottom:389.418400pt;}
.y11{bottom:389.957867pt;}
.ya7{bottom:392.541200pt;}
.y24a{bottom:393.260400pt;}
.y1fe{bottom:394.459867pt;}
.y1a4{bottom:396.587867pt;}
.y21f{bottom:398.981867pt;}
.yc6{bottom:400.034800pt;}
.yeb{bottom:400.545200pt;}
.y1c6{bottom:401.540133pt;}
.y13e{bottom:402.205867pt;}
.y80{bottom:402.998533pt;}
.y10f{bottom:403.016933pt;}
.y5c{bottom:404.010533pt;}
.y295{bottom:405.502000pt;}
.y263{bottom:405.631867pt;}
.y1dd{bottom:405.967867pt;}
.y33{bottom:406.970667pt;}
.y15e{bottom:407.849067pt;}
.y27e{bottom:408.291867pt;}
.y182{bottom:409.291467pt;}
.ya6{bottom:411.171200pt;}
.y249{bottom:412.454400pt;}
.y1fd{bottom:413.191867pt;}
.y10{bottom:414.019200pt;}
.y21e{bottom:417.475867pt;}
.yc5{bottom:419.140133pt;}
.yea{bottom:419.681200pt;}
.y13d{bottom:420.314533pt;}
.y1c5{bottom:421.098133pt;}
.y7f{bottom:421.153200pt;}
.y10e{bottom:421.171600pt;}
.y5b{bottom:422.119200pt;}
.y1a3{bottom:422.767867pt;}
.y294{bottom:422.835333pt;}
.y1dc{bottom:425.525867pt;}
.y15d{bottom:426.279733pt;}
.y27d{bottom:426.295867pt;}
.y181{bottom:427.757467pt;}
.ya5{bottom:429.801200pt;}
.y1fc{bottom:431.923867pt;}
.y21d{bottom:435.969867pt;}
.yf{bottom:438.080533pt;}
.yc4{bottom:438.245467pt;}
.y13c{bottom:438.423200pt;}
.ye9{bottom:438.817200pt;}
.y248{bottom:439.208400pt;}
.y7e{bottom:439.307867pt;}
.y10d{bottom:439.326267pt;}
.y293{bottom:440.168667pt;}
.y5a{bottom:440.227867pt;}
.y1c4{bottom:440.656133pt;}
.y1a2{bottom:441.387867pt;}
.y15c{bottom:444.710400pt;}
.y180{bottom:446.223467pt;}
.ya4{bottom:448.431200pt;}
.y262{bottom:450.655867pt;}
.y27c{bottom:451.859867pt;}
.y1db{bottom:452.629867pt;}
.yc3{bottom:457.350800pt;}
.y7d{bottom:457.462533pt;}
.y10c{bottom:457.480933pt;}
.y292{bottom:457.502000pt;}
.ye8{bottom:457.953200pt;}
.y1fb{bottom:458.215867pt;}
.y59{bottom:458.336533pt;}
.y247{bottom:458.402400pt;}
.y1a1{bottom:460.007867pt;}
.y1c3{bottom:460.214133pt;}
.y21c{bottom:462.023867pt;}
.y32{bottom:462.668800pt;}
.ya3{bottom:467.061200pt;}
.y261{bottom:469.387867pt;}
.y27b{bottom:469.863867pt;}
.y17f{bottom:472.249467pt;}
.y291{bottom:474.835333pt;}
.y13b{bottom:475.422667pt;}
.y7c{bottom:475.617200pt;}
.y10b{bottom:475.635600pt;}
.y58{bottom:476.445200pt;}
.yc2{bottom:476.456133pt;}
.y1fa{bottom:476.947867pt;}
.ye7{bottom:477.089200pt;}
.y246{bottom:477.596400pt;}
.y1da{bottom:479.733867pt;}
.y21b{bottom:480.517867pt;}
.ye{bottom:481.037333pt;}
.y31{bottom:481.713200pt;}
.y15b{bottom:482.044933pt;}
.ya2{bottom:485.691200pt;}
.y1a0{bottom:486.187867pt;}
.y1c2{bottom:487.318133pt;}
.y27a{bottom:487.867867pt;}
.y17e{bottom:490.715467pt;}
.y290{bottom:492.168667pt;}
.y7b{bottom:493.771867pt;}
.y10a{bottom:493.790267pt;}
.y57{bottom:494.553867pt;}
.yc1{bottom:495.561467pt;}
.y1f9{bottom:495.679867pt;}
.ye6{bottom:496.225200pt;}
.y245{bottom:496.790400pt;}
.y1d9{bottom:499.291867pt;}
.y30{bottom:499.393200pt;}
.y15a{bottom:503.806933pt;}
.ya1{bottom:504.321200pt;}
.y19f{bottom:504.807867pt;}
.y21a{bottom:506.571867pt;}
.y1c1{bottom:506.876133pt;}
.yd{bottom:509.093333pt;}
.y17d{bottom:509.181467pt;}
.y28f{bottom:509.502000pt;}
.y7a{bottom:511.926533pt;}
.y109{bottom:511.944933pt;}
.y56{bottom:512.662533pt;}
.y279{bottom:513.431867pt;}
.y260{bottom:514.411867pt;}
.yc0{bottom:514.666800pt;}
.ye5{bottom:515.361200pt;}
.y2f{bottom:517.073200pt;}
.y1d8{bottom:518.849867pt;}
.y1f8{bottom:521.971867pt;}
.ya0{bottom:522.951200pt;}
.y19e{bottom:523.427867pt;}
.y244{bottom:523.544400pt;}
.y219{bottom:525.065867pt;}
.y1c0{bottom:526.434133pt;}
.y28e{bottom:526.835333pt;}
.y79{bottom:530.081200pt;}
.y108{bottom:530.099600pt;}
.y55{bottom:530.771200pt;}
.y13a{bottom:530.839467pt;}
.y278{bottom:531.435867pt;}
.y25f{bottom:533.143867pt;}
.ybf{bottom:533.772133pt;}
.ye4{bottom:534.497200pt;}
.y2e{bottom:534.753200pt;}
.y17c{bottom:535.207467pt;}
.yc{bottom:537.149333pt;}
.y1f7{bottom:540.703867pt;}
.y9f{bottom:541.581200pt;}
.y19d{bottom:542.047867pt;}
.y243{bottom:542.738400pt;}
.y28d{bottom:544.168667pt;}
.y1d7{bottom:545.953867pt;}
.y1bf{bottom:545.992133pt;}
.y78{bottom:548.235867pt;}
.y107{bottom:548.254267pt;}
.y54{bottom:548.879867pt;}
.y139{bottom:548.948133pt;}
.y218{bottom:551.119867pt;}
.y2d{bottom:552.433200pt;}
.ybe{bottom:552.877467pt;}
.ye3{bottom:553.633200pt;}
.y277{bottom:556.999867pt;}
.y25e{bottom:559.435867pt;}
.y159{bottom:559.599067pt;}
.y9e{bottom:560.211200pt;}
.y28c{bottom:561.502000pt;}
.yb{bottom:565.205333pt;}
.y1d6{bottom:565.511867pt;}
.y77{bottom:566.390533pt;}
.y106{bottom:566.408933pt;}
.y53{bottom:566.988533pt;}
.y1f6{bottom:566.995867pt;}
.y138{bottom:567.056800pt;}
.y19c{bottom:568.227867pt;}
.y242{bottom:569.492400pt;}
.y217{bottom:569.613867pt;}
.y2c{bottom:570.113200pt;}
.ye2{bottom:572.769200pt;}
.y1be{bottom:573.096133pt;}
.y276{bottom:575.003867pt;}
.y158{bottom:578.029733pt;}
.y25d{bottom:578.167867pt;}
.y28b{bottom:578.835333pt;}
.y9d{bottom:578.841200pt;}
.y17b{bottom:580.865200pt;}
.y76{bottom:584.545200pt;}
.y105{bottom:584.563600pt;}
.y52{bottom:585.097200pt;}
.y137{bottom:585.165467pt;}
.y1f5{bottom:585.727867pt;}
.y19b{bottom:586.847867pt;}
.y2b{bottom:587.793200pt;}
.y241{bottom:588.686400pt;}
.ybd{bottom:590.874800pt;}
.ye1{bottom:591.905200pt;}
.y1bd{bottom:592.615867pt;}
.y275{bottom:593.007867pt;}
.ya{bottom:593.261333pt;}
.y216{bottom:595.667867pt;}
.y28a{bottom:596.168667pt;}
.y157{bottom:596.460400pt;}
.y9c{bottom:597.471200pt;}
.y17a{bottom:599.326533pt;}
.y75{bottom:602.699867pt;}
.y104{bottom:602.718267pt;}
.y51{bottom:603.205867pt;}
.y136{bottom:603.274133pt;}
.y25c{bottom:604.459867pt;}
.y2a{bottom:605.473200pt;}
.y240{bottom:607.880400pt;}
.y274{bottom:611.011867pt;}
.ye0{bottom:611.041200pt;}
.y1f4{bottom:612.019867pt;}
.y1bc{bottom:612.173867pt;}
.y19a{bottom:613.027867pt;}
.y289{bottom:613.502000pt;}
.y215{bottom:614.161867pt;}
.y156{bottom:614.891067pt;}
.y9b{bottom:616.101200pt;}
.y179{bottom:617.787867pt;}
.y74{bottom:620.854533pt;}
.y103{bottom:620.872933pt;}
.y50{bottom:621.314533pt;}
.y9{bottom:621.317333pt;}
.y134{bottom:621.362267pt;}
.y135{bottom:621.382800pt;}
.y29{bottom:623.153200pt;}
.y25b{bottom:623.191867pt;}
.ydf{bottom:630.177200pt;}
.y1f3{bottom:630.751867pt;}
.y288{bottom:630.835333pt;}
.y199{bottom:631.647867pt;}
.y1bb{bottom:631.731867pt;}
.y155{bottom:633.321733pt;}
.y23f{bottom:634.634400pt;}
.y9a{bottom:634.731200pt;}
.y178{bottom:636.249200pt;}
.y273{bottom:636.575867pt;}
.y73{bottom:639.009200pt;}
.y102{bottom:639.027600pt;}
.y4f{bottom:639.423200pt;}
.y133{bottom:639.470933pt;}
.y214{bottom:640.215867pt;}
.y28{bottom:640.833200pt;}
.y287{bottom:648.168667pt;}
.yde{bottom:649.313200pt;}
.y25a{bottom:649.483867pt;}
.y1d5{bottom:651.289867pt;}
.y154{bottom:651.752400pt;}
.y99{bottom:653.361200pt;}
.y23e{bottom:653.828400pt;}
.y272{bottom:654.579867pt;}
.y177{bottom:654.710533pt;}
.y1f2{bottom:657.043867pt;}
.y72{bottom:657.163867pt;}
.y101{bottom:657.182267pt;}
.y4e{bottom:657.531867pt;}
.y132{bottom:657.579600pt;}
.y198{bottom:657.827867pt;}
.y27{bottom:658.513200pt;}
.y213{bottom:658.709867pt;}
.y1ba{bottom:658.835867pt;}
.ybc{bottom:666.225867pt;}
.y259{bottom:668.215867pt;}
.ydd{bottom:668.449200pt;}
.y98{bottom:671.991200pt;}
.y23d{bottom:673.022400pt;}
.y176{bottom:673.171867pt;}
.y71{bottom:675.318533pt;}
.y100{bottom:675.336933pt;}
.y4d{bottom:675.640533pt;}
.y130{bottom:675.674667pt;}
.y131{bottom:675.688267pt;}
.y1f1{bottom:675.775867pt;}
.y8{bottom:675.844667pt;}
.y26{bottom:676.193200pt;}
.y197{bottom:676.447867pt;}
.y286{bottom:676.835333pt;}
.y1b9{bottom:678.393867pt;}
.y271{bottom:680.143867pt;}
.y212{bottom:684.763867pt;}
.ydc{bottom:687.585200pt;}
.ybb{bottom:688.653867pt;}
.y153{bottom:689.082800pt;}
.y97{bottom:690.621200pt;}
.y175{bottom:691.633200pt;}
.y70{bottom:693.473200pt;}
.yff{bottom:693.491600pt;}
.y4c{bottom:693.749200pt;}
.y12f{bottom:693.783333pt;}
.y25{bottom:693.873200pt;}
.y230{bottom:694.507867pt;}
.y1b8{bottom:697.951867pt;}
.y270{bottom:698.147867pt;}
.y23c{bottom:699.776400pt;}
.y1f0{bottom:702.067867pt;}
.y7{bottom:702.124667pt;}
.y196{bottom:702.627867pt;}
.y211{bottom:703.257867pt;}
.ydb{bottom:706.721200pt;}
.y96{bottom:709.251200pt;}
.y174{bottom:710.094533pt;}
.y6f{bottom:711.627867pt;}
.y4b{bottom:711.857867pt;}
.y12e{bottom:711.892000pt;}
.y22f{bottom:713.239867pt;}
.y1b7{bottom:717.509867pt;}
.y23b{bottom:718.970400pt;}
.y1ef{bottom:720.799867pt;}
.y6{bottom:720.844667pt;}
.y195{bottom:721.247867pt;}
.y210{bottom:721.751867pt;}
.y24{bottom:722.899867pt;}
.y26f{bottom:723.711867pt;}
.yda{bottom:725.857200pt;}
.y95{bottom:727.881200pt;}
.y285{bottom:728.168400pt;}
.y173{bottom:728.555867pt;}
.y6e{bottom:729.782533pt;}
.y4a{bottom:729.966533pt;}
.y1d4{bottom:737.067867pt;}
.y23a{bottom:738.145867pt;}
.y1ee{bottom:739.531867pt;}
.y20f{bottom:740.245867pt;}
.y26e{bottom:741.715867pt;}
.y1b6{bottom:744.613867pt;}
.y152{bottom:744.866667pt;}
.yd9{bottom:744.993200pt;}
.yba{bottom:745.085200pt;}
.y94{bottom:746.511200pt;}
.y172{bottom:747.017200pt;}
.y5{bottom:747.124667pt;}
.y194{bottom:747.427867pt;}
.y6d{bottom:747.937200pt;}
.y49{bottom:748.075200pt;}
.y284{bottom:752.173733pt;}
.y22e{bottom:758.263867pt;}
.y26d{bottom:759.719867pt;}
.y151{bottom:763.297333pt;}
.yd8{bottom:764.129200pt;}
.y1b5{bottom:764.171867pt;}
.yb9{bottom:764.190533pt;}
.y239{bottom:764.899867pt;}
.y93{bottom:765.141200pt;}
.y171{bottom:765.478533pt;}
.y1ed{bottom:765.823867pt;}
.y4{bottom:765.844667pt;}
.y193{bottom:766.047867pt;}
.y6c{bottom:766.091867pt;}
.y48{bottom:766.183867pt;}
.y20e{bottom:766.299867pt;}
.y23{bottom:767.033200pt;}
.y283{bottom:776.179067pt;}
.yd7{bottom:783.265200pt;}
.yb8{bottom:783.295867pt;}
.y1b4{bottom:783.729867pt;}
.y92{bottom:783.771200pt;}
.y170{bottom:783.939867pt;}
.y238{bottom:784.093867pt;}
.y6b{bottom:784.246533pt;}
.y47{bottom:784.292533pt;}
.y1ec{bottom:784.555867pt;}
.y3{bottom:784.564667pt;}
.y192{bottom:784.667867pt;}
.y20d{bottom:784.793867pt;}
.y26c{bottom:785.283867pt;}
.y22{bottom:786.051333pt;}
.y282{bottom:800.184400pt;}
.y150{bottom:800.627733pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y45{bottom:858.834667pt;}
.y44{bottom:874.834667pt;}
.h8{height:39.479167pt;}
.hb{height:44.140625pt;}
.hc{height:49.322917pt;}
.h4{height:49.348958pt;}
.h10{height:51.789062pt;}
.h3{height:51.816406pt;}
.h12{height:51.890540pt;}
.h11{height:51.969473pt;}
.hd{height:54.355469pt;}
.ha{height:56.751302pt;}
.he{height:57.175835pt;}
.hf{height:57.177481pt;}
.h2{height:61.686198pt;}
.h9{height:66.621094pt;}
.h7{height:69.088542pt;}
.h5{height:88.828125pt;}
.h6{height:104.813250pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.548133pt;}
.x8{left:73.655067pt;}
.xa{left:74.669600pt;}
.x1{left:75.590533pt;}
.x19{left:76.770133pt;}
.xf{left:90.597200pt;}
.xb{left:92.192400pt;}
.x5{left:93.360533pt;}
.x6{left:94.546000pt;}
.x15{left:137.273333pt;}
.x16{left:144.685467pt;}
.xd{left:167.890133pt;}
.xe{left:175.302267pt;}
.x10{left:178.753467pt;}
.xc{left:179.960533pt;}
.x17{left:184.670667pt;}
.x7{left:189.034667pt;}
.x18{left:192.082800pt;}
.x4{left:201.889600pt;}
.x1a{left:203.200800pt;}
.x2{left:206.756800pt;}
.x3{left:207.781200pt;}
.x11{left:244.756667pt;}
.x12{left:252.168800pt;}
.x13{left:471.269600pt;}
.x14{left:478.681733pt;}
}




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