
    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_8b3f34ceb661fe8389227f87.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.983000;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_5f54e38f33663c7a8e66339c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983000;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_af6c000a2c736dc6b552b3a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.845000;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_6ef37b54fabfe6f58914fbe5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983000;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_af28dee2484c3a55e78663db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_5d1967e44580cde5565b1f14.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.977000;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_7093367049aaa92bf9510fbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.761000;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_9087d179de3744358cbef3c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_0c26b7cc9ee8cc3c9f3cfc97.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.927000;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_ab3a0fcaef920274584e97bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_78553cbf70f9e2ea044ee402.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.656000;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_a443cbc531ee91dd84fd01f6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.538000;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_abc7f02a9d95c43c0a235568.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978000;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_e4d38e73200547f1262f3f04.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.593000;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_abc7f02a9d95c43c0a235568.woff2')format("woff");}.fff{font-family:fff;line-height:0.978000;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_510224d11417e0883ac30afb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.723000;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_757c657cd0a4cd7118d3b08b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_13f9ad38ca14a4ff8aa712fc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.716000;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;}
.m8{transform:matrix(0.000007,-0.250000,0.250000,0.000007,0,0);-ms-transform:matrix(0.000007,-0.250000,0.250000,0.000007,0,0);-webkit-transform:matrix(0.000007,-0.250000,0.250000,0.000007,0,0);}
.m4{transform:matrix(0.000008,-0.250000,0.250000,0.000008,0,0);-ms-transform:matrix(0.000008,-0.250000,0.250000,0.000008,0,0);-webkit-transform:matrix(0.000008,-0.250000,0.250000,0.000008,0,0);}
.m3{transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);}
.m5{transform:matrix(0.000010,-0.250000,0.250000,0.000010,0,0);-ms-transform:matrix(0.000010,-0.250000,0.250000,0.000010,0,0);-webkit-transform:matrix(0.000010,-0.250000,0.250000,0.000010,0,0);}
.m6{transform:matrix(0.000010,-0.250000,0.250000,0.000010,0,0);-ms-transform:matrix(0.000010,-0.250000,0.250000,0.000010,0,0);-webkit-transform:matrix(0.000010,-0.250000,0.250000,0.000010,0,0);}
.m9{transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-ms-transform:matrix(0.000011,-0.250000,0.250000,0.000011,0,0);-webkit-transform:matrix(0.000011,-0.250000,0.250000,0.000011,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);}
.m2{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-25.200000px;}
.v6{vertical-align:-22.344600px;}
.v5{vertical-align:-14.860428px;}
.v1{vertical-align:-6.123000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.742303px;}
.v2{vertical-align:20.772835px;}
.ls15{letter-spacing:-1.141431px;}
.ls11{letter-spacing:-1.135752px;}
.ls3d{letter-spacing:-1.118716px;}
.ls2{letter-spacing:-1.113037px;}
.ls10{letter-spacing:-1.090322px;}
.ls12{letter-spacing:-1.084643px;}
.ls14{letter-spacing:-1.078964px;}
.lsf{letter-spacing:-1.073286px;}
.ls3f{letter-spacing:-1.072074px;}
.lse{letter-spacing:-1.061928px;}
.ls40{letter-spacing:-0.934889px;}
.ls41{letter-spacing:-0.914566px;}
.ls13{letter-spacing:-0.902923px;}
.ls16{letter-spacing:-0.874529px;}
.ls3e{letter-spacing:-0.848514px;}
.ls1a{letter-spacing:-0.846135px;}
.ls20{letter-spacing:-0.834778px;}
.ls18{letter-spacing:-0.829099px;}
.ls43{letter-spacing:-0.828190px;}
.ls1b{letter-spacing:-0.817741px;}
.ls1c{letter-spacing:-0.806384px;}
.ls1f{letter-spacing:-0.789348px;}
.ls19{letter-spacing:-0.783669px;}
.ls1d{letter-spacing:-0.777990px;}
.ls17{letter-spacing:-0.766633px;}
.ls1e{letter-spacing:-0.760954px;}
.ls2c{letter-spacing:-0.726881px;}
.ls2d{letter-spacing:-0.721203px;}
.ls2e{letter-spacing:-0.715524px;}
.ls2f{letter-spacing:-0.709845px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.177917px;}
.ls36{letter-spacing:0.239106px;}
.ls25{letter-spacing:0.340726px;}
.ls8{letter-spacing:2.915100px;}
.ls4{letter-spacing:2.915700px;}
.lsb{letter-spacing:3.255300px;}
.ls38{letter-spacing:6.672538px;}
.ls37{letter-spacing:7.608353px;}
.ls29{letter-spacing:7.737470px;}
.ls2a{letter-spacing:7.947883px;}
.ls2b{letter-spacing:7.967012px;}
.ls33{letter-spacing:8.077001px;}
.ls30{letter-spacing:8.342191px;}
.ls26{letter-spacing:8.682824px;}
.ls27{letter-spacing:9.023550px;}
.ls3{letter-spacing:9.335881px;}
.ls21{letter-spacing:9.364275px;}
.ls22{letter-spacing:9.460814px;}
.ls23{letter-spacing:9.540317px;}
.ls24{letter-spacing:9.545996px;}
.ls6{letter-spacing:9.676607px;}
.lsa{letter-spacing:9.705001px;}
.ls3c{letter-spacing:11.452394px;}
.ls0{letter-spacing:12.436200px;}
.ls39{letter-spacing:15.197032px;}
.ls3b{letter-spacing:15.532372px;}
.ls42{letter-spacing:15.537453px;}
.lsc{letter-spacing:18.513457px;}
.ls3a{letter-spacing:24.378254px;}
.ls9{letter-spacing:27.053613px;}
.ls7{letter-spacing:54.902252px;}
.ls31{letter-spacing:65.050354px;}
.ls32{letter-spacing:66.798754px;}
.ls34{letter-spacing:69.618288px;}
.ls35{letter-spacing:76.350288px;}
.lsd{letter-spacing:100.685669px;}
.ls28{letter-spacing:388.972675px;}
.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;}
}
.ws99{word-spacing:-76.765478px;}
.ws1{word-spacing:-43.777185px;}
.wsd{word-spacing:-39.625132px;}
.ws1e0{word-spacing:-36.481006px;}
.ws91{word-spacing:-34.979330px;}
.wseb{word-spacing:-34.957810px;}
.wscd{word-spacing:-34.796417px;}
.wsfe{word-spacing:-34.737239px;}
.wsdc{word-spacing:-34.715720px;}
.wsb6{word-spacing:-34.694201px;}
.wsea{word-spacing:-34.618884px;}
.wsa3{word-spacing:-34.597365px;}
.ws81{word-spacing:-34.452111px;}
.wsc0{word-spacing:-34.435972px;}
.ws170{word-spacing:-34.335622px;}
.ws164{word-spacing:-33.436583px;}
.wsb1{word-spacing:-31.568227px;}
.wsd7{word-spacing:-31.227501px;}
.ws114{word-spacing:-30.886776px;}
.ws10f{word-spacing:-30.546050px;}
.ws0{word-spacing:-29.947525px;}
.ws55{word-spacing:-29.455728px;}
.ws16e{word-spacing:-28.673592px;}
.ws3f{word-spacing:-28.166650px;}
.ws187{word-spacing:-27.593095px;}
.ws1a1{word-spacing:-27.490877px;}
.ws73{word-spacing:-26.871892px;}
.ws118{word-spacing:-26.127975px;}
.ws82{word-spacing:-25.923539px;}
.ws199{word-spacing:-25.787249px;}
.ws7c{word-spacing:-25.105798px;}
.ws1fe{word-spacing:-24.246150px;}
.ws7e{word-spacing:-23.856471px;}
.ws166{word-spacing:-22.892008px;}
.ws205{word-spacing:-22.874302px;}
.ws1f8{word-spacing:-22.818412px;}
.ws22b{word-spacing:-22.554204px;}
.wsf5{word-spacing:-22.385672px;}
.ws60{word-spacing:-21.988159px;}
.ws6e{word-spacing:-21.863226px;}
.ws1ce{word-spacing:-21.339864px;}
.ws208{word-spacing:-21.263650px;}
.ws221{word-spacing:-21.238246px;}
.ws1eb{word-spacing:-21.177275px;}
.ws210{word-spacing:-21.156951px;}
.ws112{word-spacing:-21.136345px;}
.ws1c8{word-spacing:-21.106142px;}
.ws1d6{word-spacing:-21.095980px;}
.ws1d2{word-spacing:-21.070575px;}
.ws213{word-spacing:-21.060413px;}
.ws228{word-spacing:-21.035009px;}
.ws21b{word-spacing:-21.019766px;}
.ws224{word-spacing:-21.004523px;}
.ws1ef{word-spacing:-20.968957px;}
.ws3a{word-spacing:-20.806977px;}
.ws152{word-spacing:-20.346997px;}
.ws18b{word-spacing:-19.449753px;}
.ws1b3{word-spacing:-19.432717px;}
.wsfc{word-spacing:-19.324820px;}
.ws1d9{word-spacing:-18.718109px;}
.ws217{word-spacing:-18.453901px;}
.ws12a{word-spacing:-18.129017px;}
.ws105{word-spacing:-17.905130px;}
.ws1e7{word-spacing:-17.773058px;}
.ws15{word-spacing:-17.762269px;}
.ws22a{word-spacing:-17.686683px;}
.wsf{word-spacing:-17.657662px;}
.wse{word-spacing:-17.649293px;}
.wsc{word-spacing:-17.603266px;}
.ws13{word-spacing:-17.590713px;}
.ws3{word-spacing:-17.569792px;}
.ws4{word-spacing:-17.544686px;}
.ws12{word-spacing:-17.540502px;}
.ws2{word-spacing:-17.511212px;}
.ws7{word-spacing:-17.498659px;}
.ws14{word-spacing:-17.444263px;}
.ws5{word-spacing:-17.440079px;}
.wsb{word-spacing:-17.423342px;}
.ws6{word-spacing:-17.419158px;}
.ws10{word-spacing:-17.327103px;}
.ws8{word-spacing:-17.289445px;}
.ws16{word-spacing:-17.255971px;}
.ws11{word-spacing:-17.222496px;}
.wsa{word-spacing:-17.218312px;}
.ws9{word-spacing:-17.117889px;}
.ws1a{word-spacing:-16.786996px;}
.ws192{word-spacing:-16.758021px;}
.ws1e{word-spacing:-16.495416px;}
.ws15b{word-spacing:-16.426582px;}
.ws36{word-spacing:-15.690414px;}
.ws1f3{word-spacing:-15.110656px;}
.ws1a6{word-spacing:-15.014641px;}
.ws202{word-spacing:-14.760073px;}
.ws25{word-spacing:-14.758299px;}
.ws27{word-spacing:-14.570010px;}
.ws1e9{word-spacing:-14.236738px;}
.ws1de{word-spacing:-13.687998px;}
.ws138{word-spacing:-13.680133px;}
.ws130{word-spacing:-13.659261px;}
.wsd3{word-spacing:-13.616223px;}
.ws13b{word-spacing:-13.339407px;}
.ws2f{word-spacing:-12.808160px;}
.ws23{word-spacing:-12.718498px;}
.wsab{word-spacing:-12.703386px;}
.ws97{word-spacing:-12.674992px;}
.wsa1{word-spacing:-12.663635px;}
.wsbd{word-spacing:-12.662177px;}
.wsc4{word-spacing:-12.657956px;}
.wsa0{word-spacing:-12.657619px;}
.wsb7{word-spacing:-12.650761px;}
.ws17e{word-spacing:-12.629562px;}
.wsfa{word-spacing:-12.578453px;}
.ws3d{word-spacing:-12.527345px;}
.ws24{word-spacing:-12.512276px;}
.wsa9{word-spacing:-12.498951px;}
.wsd9{word-spacing:-12.493272px;}
.ws93{word-spacing:-12.481914px;}
.wsb0{word-spacing:-12.476236px;}
.wsd6{word-spacing:-12.464878px;}
.wscc{word-spacing:-12.447842px;}
.ws21{word-spacing:-12.382267px;}
.ws1e4{word-spacing:-12.377121px;}
.wscf{word-spacing:-12.362661px;}
.wsc1{word-spacing:-12.351303px;}
.ws123{word-spacing:-12.345624px;}
.wsdb{word-spacing:-12.334267px;}
.wsba{word-spacing:-12.327602px;}
.ws9d{word-spacing:-12.322909px;}
.wsd2{word-spacing:-12.320226px;}
.ws9a{word-spacing:-12.316896px;}
.wsa5{word-spacing:-12.313832px;}
.ws11b{word-spacing:-12.186619px;}
.wsa8{word-spacing:-12.163904px;}
.wsaa{word-spacing:-12.158225px;}
.ws9c{word-spacing:-12.146868px;}
.wsac{word-spacing:-12.141189px;}
.ws111{word-spacing:-11.760712px;}
.ws1cd{word-spacing:-11.650550px;}
.ws8f{word-spacing:-11.565692px;}
.ws1c7{word-spacing:-11.416827px;}
.ws62{word-spacing:-11.278017px;}
.ws167{word-spacing:-10.936708px;}
.ws12d{word-spacing:-10.931926px;}
.ws124{word-spacing:-10.715820px;}
.ws28{word-spacing:-10.714561px;}
.ws160{word-spacing:-10.544575px;}
.wsd4{word-spacing:-10.159302px;}
.ws149{word-spacing:-9.807219px;}
.ws42{word-spacing:-9.693643px;}
.ws134{word-spacing:-9.670928px;}
.ws52{word-spacing:-9.636856px;}
.ws49{word-spacing:-9.489208px;}
.ws56{word-spacing:-9.455135px;}
.wse6{word-spacing:-9.438099px;}
.wse7{word-spacing:-9.421063px;}
.ws40{word-spacing:-9.381312px;}
.ws19b{word-spacing:-9.358596px;}
.ws6c{word-spacing:-9.313166px;}
.ws186{word-spacing:-9.267736px;}
.ws108{word-spacing:-9.222306px;}
.wsae{word-spacing:-9.199591px;}
.wsb5{word-spacing:-9.193912px;}
.ws1f0{word-spacing:-9.130413px;}
.ws3e{word-spacing:-9.125767px;}
.wsbc{word-spacing:-9.103052px;}
.wscb{word-spacing:-9.097374px;}
.wsd5{word-spacing:-9.023550px;}
.ws13e{word-spacing:-8.944047px;}
.ws188{word-spacing:-8.904296px;}
.ws121{word-spacing:-8.853187px;}
.ws1a0{word-spacing:-8.807757px;}
.ws139{word-spacing:-8.677145px;}
.ws84{word-spacing:-8.665788px;}
.ws1bb{word-spacing:-8.648751px;}
.ws159{word-spacing:-8.581693px;}
.ws4e{word-spacing:-8.580606px;}
.ws1a3{word-spacing:-8.523819px;}
.ws7a{word-spacing:-8.512461px;}
.ws51{word-spacing:-8.495425px;}
.ws21f{word-spacing:-8.495298px;}
.ws15d{word-spacing:-8.363928px;}
.ws72{word-spacing:-8.330741px;}
.ws96{word-spacing:-8.228523px;}
.ws1c1{word-spacing:-8.183093px;}
.ws173{word-spacing:-8.177414px;}
.ws155{word-spacing:-8.171736px;}
.ws1ff{word-spacing:-8.159958px;}
.ws74{word-spacing:-8.154699px;}
.ws16b{word-spacing:-7.972206px;}
.ws174{word-spacing:-7.967300px;}
.ws2d{word-spacing:-7.921602px;}
.ws2b{word-spacing:-7.903670px;}
.ws162{word-spacing:-7.764373px;}
.ws9e{word-spacing:-7.762865px;}
.wsf2{word-spacing:-7.757186px;}
.ws1b6{word-spacing:-7.694720px;}
.ws43{word-spacing:-7.672005px;}
.ws50{word-spacing:-7.654968px;}
.ws6b{word-spacing:-7.581145px;}
.wsbf{word-spacing:-7.467569px;}
.ws1fd{word-spacing:-7.433386px;}
.ws1a2{word-spacing:-7.399424px;}
.ws58{word-spacing:-7.297207px;}
.ws1fc{word-spacing:-7.291120px;}
.wsda{word-spacing:-7.263134px;}
.ws9f{word-spacing:-7.257455px;}
.ws12c{word-spacing:-7.244912px;}
.ws83{word-spacing:-7.223383px;}
.ws194{word-spacing:-7.206346px;}
.ws117{word-spacing:-7.160916px;}
.ws13c{word-spacing:-7.149559px;}
.ws85{word-spacing:-7.121165px;}
.ws4f{word-spacing:-7.081414px;}
.wsdf{word-spacing:-7.007590px;}
.ws8d{word-spacing:-7.001911px;}
.ws1a4{word-spacing:-6.956481px;}
.ws18f{word-spacing:-6.916730px;}
.ws165{word-spacing:-6.914946px;}
.wsa4{word-spacing:-6.899693px;}
.ws1bf{word-spacing:-6.882657px;}
.ws140{word-spacing:-6.820191px;}
.ws19a{word-spacing:-6.808833px;}
.ws18e{word-spacing:-6.655507px;}
.ws47{word-spacing:-6.610077px;}
.ws1aa{word-spacing:-6.530574px;}
.ws1a9{word-spacing:-6.468108px;}
.ws1ba{word-spacing:-6.377247px;}
.ws1c0{word-spacing:-6.246636px;}
.ws7b{word-spacing:-6.127382px;}
.wse8{word-spacing:-6.116025px;}
.ws206{word-spacing:-6.112347px;}
.ws185{word-spacing:-6.053558px;}
.ws1f1{word-spacing:-5.995486px;}
.ws204{word-spacing:-5.985324px;}
.ws1f7{word-spacing:-5.949757px;}
.ws1fa{word-spacing:-5.939595px;}
.ws10a{word-spacing:-5.928625px;}
.ws17a{word-spacing:-5.900232px;}
.ws179{word-spacing:-5.815050px;}
.ws107{word-spacing:-5.695796px;}
.ws7d{word-spacing:-5.690118px;}
.ws21d{word-spacing:-5.680469px;}
.ws198{word-spacing:-5.565185px;}
.wsc2{word-spacing:-5.553827px;}
.ws1f2{word-spacing:-5.543284px;}
.ws92{word-spacing:-5.536791px;}
.ws153{word-spacing:-5.457288px;}
.ws14a{word-spacing:-5.394822px;}
.ws22c{word-spacing:-5.385775px;}
.wsb8{word-spacing:-5.298283px;}
.wsc3{word-spacing:-5.275568px;}
.ws190{word-spacing:-5.201744px;}
.ws20{word-spacing:-5.200373px;}
.ws41{word-spacing:-5.179029px;}
.wsd1{word-spacing:-5.116563px;}
.ws79{word-spacing:-5.110884px;}
.ws16a{word-spacing:-5.079412px;}
.ws16c{word-spacing:-5.075186px;}
.ws20e{word-spacing:-5.065677px;}
.ws126{word-spacing:-5.006275px;}
.ws14f{word-spacing:-4.980273px;}
.ws90{word-spacing:-4.968915px;}
.ws1b7{word-spacing:-4.934842px;}
.ws7f{word-spacing:-4.929164px;}
.ws158{word-spacing:-4.906397px;}
.ws161{word-spacing:-4.902013px;}
.wse9{word-spacing:-4.889412px;}
.ws13a{word-spacing:-4.838304px;}
.ws4a{word-spacing:-4.770158px;}
.ws11d{word-spacing:-4.753122px;}
.ws2e{word-spacing:-4.711717px;}
.ws46{word-spacing:-4.702013px;}
.ws19d{word-spacing:-4.673619px;}
.ws197{word-spacing:-4.639547px;}
.ws172{word-spacing:-4.605182px;}
.ws1c4{word-spacing:-4.594117px;}
.wsa2{word-spacing:-4.565723px;}
.ws1c5{word-spacing:-4.543008px;}
.ws1da{word-spacing:-4.455967px;}
.ws19c{word-spacing:-4.423754px;}
.ws12f{word-spacing:-4.409115px;}
.ws5c{word-spacing:-4.389681px;}
.ws1ca{word-spacing:-4.364510px;}
.ws207{word-spacing:-4.359429px;}
.ws20f{word-spacing:-4.328944px;}
.ws1d1{word-spacing:-4.318782px;}
.ws212{word-spacing:-4.298458px;}
.ws227{word-spacing:-4.288296px;}
.ws21a{word-spacing:-4.267973px;}
.ws1ee{word-spacing:-4.257811px;}
.ws12e{word-spacing:-4.222612px;}
.ws169{word-spacing:-4.193919px;}
.ws223{word-spacing:-4.181597px;}
.ws2a{word-spacing:-4.178231px;}
.ws1f5{word-spacing:-4.120626px;}
.ws222{word-spacing:-4.115545px;}
.wsff{word-spacing:-4.065992px;}
.ws145{word-spacing:-4.048956px;}
.ws184{word-spacing:-4.043277px;}
.ws20d{word-spacing:-4.029170px;}
.ws1d3{word-spacing:-4.024089px;}
.ws220{word-spacing:-3.988522px;}
.ws1b{word-spacing:-3.963043px;}
.wse3{word-spacing:-3.952417px;}
.wse4{word-spacing:-3.889951px;}
.ws1d{word-spacing:-3.837516px;}
.ws100{word-spacing:-3.787733px;}
.ws64{word-spacing:-3.747982px;}
.ws1f{word-spacing:-3.667159px;}
.ws11e{word-spacing:-3.651443px;}
.ws136{word-spacing:-3.571940px;}
.wsbb{word-spacing:-3.520831px;}
.ws142{word-spacing:-3.492437px;}
.wsf4{word-spacing:-3.458365px;}
.ws178{word-spacing:-3.429971px;}
.wsee{word-spacing:-3.418614px;}
.wsf6{word-spacing:-3.367505px;}
.wsc5{word-spacing:-3.270966px;}
.wsd0{word-spacing:-3.242572px;}
.ws19f{word-spacing:-3.111960px;}
.ws102{word-spacing:-3.089245px;}
.wse1{word-spacing:-3.083567px;}
.ws1ed{word-spacing:-2.957095px;}
.ws1bd{word-spacing:-2.907525px;}
.ws29{word-spacing:-2.851239px;}
.ws109{word-spacing:-2.822344px;}
.ws10d{word-spacing:-2.799629px;}
.wsc9{word-spacing:-2.776914px;}
.ws168{word-spacing:-2.764065px;}
.ws95{word-spacing:-2.708769px;}
.ws103{word-spacing:-2.686053px;}
.ws144{word-spacing:-2.589515px;}
.ws1ae{word-spacing:-2.549763px;}
.ws4c{word-spacing:-2.510012px;}
.ws5f{word-spacing:-2.396437px;}
.ws3b{word-spacing:-2.390758px;}
.ws1b8{word-spacing:-2.385079px;}
.wse5{word-spacing:-2.373722px;}
.ws141{word-spacing:-2.101141px;}
.ws1d8{word-spacing:-2.078096px;}
.ws16f{word-spacing:-2.065876px;}
.ws14e{word-spacing:-2.061390px;}
.ws39{word-spacing:-2.050032px;}
.ws150{word-spacing:-1.998924px;}
.ws216{word-spacing:-1.935831px;}
.ws10e{word-spacing:-1.885348px;}
.ws13f{word-spacing:-1.856955px;}
.ws106{word-spacing:-1.845597px;}
.ws14d{word-spacing:-1.839918px;}
.ws1ab{word-spacing:-1.697949px;}
.ws218{word-spacing:-1.646218px;}
.ws132{word-spacing:-1.601410px;}
.ws151{word-spacing:-1.419690px;}
.ws146{word-spacing:-1.408332px;}
.ws229{word-spacing:-1.387091px;}
.ws19e{word-spacing:-1.351545px;}
.ws1cb{word-spacing:-1.265149px;}
.ws1ec{word-spacing:-1.229583px;}
.ws67{word-spacing:-1.027856px;}
.ws1d5{word-spacing:-0.985698px;}
.ws1e6{word-spacing:-0.970456px;}
.wsaf{word-spacing:-0.846135px;}
.ws31{word-spacing:-0.815921px;}
.ws33{word-spacing:-0.775573px;}
.ws125{word-spacing:-0.738239px;}
.wsfb{word-spacing:-0.704166px;}
.wsd8{word-spacing:-0.698487px;}
.ws1b2{word-spacing:-0.670094px;}
.ws1b4{word-spacing:-0.641700px;}
.ws1ea{word-spacing:-0.630034px;}
.ws18a{word-spacing:-0.499731px;}
.ws110{word-spacing:-0.465658px;}
.ws1fb{word-spacing:-0.320098px;}
.ws1f6{word-spacing:-0.289612px;}
.ws171{word-spacing:-0.277363px;}
.ws209{word-spacing:-0.248965px;}
.wsb9{word-spacing:-0.215793px;}
.ws6d{word-spacing:-0.124933px;}
.ws1b1{word-spacing:-0.096539px;}
.ws34{word-spacing:-0.059776px;}
.wsad{word-spacing:-0.056788px;}
.ws1c9{word-spacing:-0.050809px;}
.ws163{word-spacing:-0.041159px;}
.ws98{word-spacing:-0.037855px;}
.ws26{word-spacing:-0.029883px;}
.ws1d0{word-spacing:-0.020324px;}
.ws57{word-spacing:0.000000px;}
.ws4d{word-spacing:0.062466px;}
.ws10b{word-spacing:0.193078px;}
.wsb3{word-spacing:0.227150px;}
.ws4b{word-spacing:0.261223px;}
.ws87{word-spacing:0.272580px;}
.ws1af{word-spacing:0.335047px;}
.ws180{word-spacing:0.352083px;}
.wsfd{word-spacing:0.488373px;}
.ws1be{word-spacing:0.533803px;}
.ws219{word-spacing:0.584306px;}
.wsa6{word-spacing:0.630342px;}
.ws68{word-spacing:0.675772px;}
.ws38{word-spacing:0.687130px;}
.ws101{word-spacing:0.766633px;}
.ws17c{word-spacing:0.806384px;}
.ws1f9{word-spacing:0.863756px;}
.wse0{word-spacing:1.050571px;}
.ws104{word-spacing:1.078964px;}
.ws8e{word-spacing:1.141431px;}
.ws30{word-spacing:1.228364px;}
.wsb2{word-spacing:1.243648px;}
.ws14b{word-spacing:1.317472px;}
.ws71{word-spacing:1.345866px;}
.ws175{word-spacing:1.351545px;}
.ws1d7{word-spacing:1.478548px;}
.ws147{word-spacing:1.578695px;}
.ws6f{word-spacing:1.612768px;}
.ws226{word-spacing:1.656380px;}
.ws135{word-spacing:1.692270px;}
.ws1f4{word-spacing:1.697027px;}
.ws88{word-spacing:1.828561px;}
.ws120{word-spacing:1.839918px;}
.ws44{word-spacing:1.919421px;}
.ws191{word-spacing:1.930778px;}
.ws201{word-spacing:1.940911px;}
.ws5d{word-spacing:2.032996px;}
.wsca{word-spacing:2.055711px;}
.ws21c{word-spacing:2.057773px;}
.ws193{word-spacing:2.084105px;}
.wsce{word-spacing:2.203359px;}
.ws1bc{word-spacing:2.209038px;}
.ws9b{word-spacing:2.282862px;}
.wsf0{word-spacing:2.345328px;}
.ws1e8{word-spacing:2.347385px;}
.ws70{word-spacing:2.390758px;}
.ws195{word-spacing:2.413473px;}
.ws20b{word-spacing:2.636997px;}
.ws181{word-spacing:2.651981px;}
.ws11f{word-spacing:2.776914px;}
.ws8c{word-spacing:2.969991px;}
.ws77{word-spacing:3.004064px;}
.ws1b5{word-spacing:3.043815px;}
.ws13d{word-spacing:3.055173px;}
.ws1e1{word-spacing:3.104442px;}
.ws63{word-spacing:3.146033px;}
.ws1dd{word-spacing:3.165413px;}
.ws1dc{word-spacing:3.190818px;}
.ws129{word-spacing:3.235119px;}
.ws1df{word-spacing:3.368650px;}
.ws35{word-spacing:3.384541px;}
.ws5e{word-spacing:3.515152px;}
.ws37{word-spacing:3.532189px;}
.ws1a5{word-spacing:3.747982px;}
.ws189{word-spacing:3.827484px;}
.ws94{word-spacing:3.912666px;}
.ws1a7{word-spacing:3.980811px;}
.ws211{word-spacing:4.181597px;}
.ws1ac{word-spacing:4.230676px;}
.ws148{word-spacing:4.355609px;}
.ws137{word-spacing:4.577081px;}
.ws1e3{word-spacing:4.745579px;}
.ws214{word-spacing:4.811631px;}
.wsf9{word-spacing:4.815588px;}
.wsb4{word-spacing:4.940521px;}
.ws157{word-spacing:5.190387px;}
.ws16d{word-spacing:5.193508px;}
.wse2{word-spacing:5.434573px;}
.ws76{word-spacing:5.451610px;}
.ws196{word-spacing:5.531112px;}
.ws1cc{word-spacing:5.543284px;}
.ws156{word-spacing:5.582221px;}
.ws1c6{word-spacing:5.589012px;}
.ws45{word-spacing:5.707154px;}
.ws78{word-spacing:5.775299px;}
.ws18d{word-spacing:5.843444px;}
.ws48{word-spacing:5.934304px;}
.ws113{word-spacing:5.979734px;}
.ws1e2{word-spacing:5.985324px;}
.ws66{word-spacing:6.076273px;}
.ws17d{word-spacing:6.116025px;}
.ws17f{word-spacing:6.286387px;}
.wsbe{word-spacing:6.320460px;}
.ws176{word-spacing:6.399963px;}
.ws177{word-spacing:6.468108px;}
.ws18c{word-spacing:6.632792px;}
.ws122{word-spacing:6.649828px;}
.ws1ad{word-spacing:6.808833px;}
.ws1b9{word-spacing:6.945123px;}
.ws203{word-spacing:7.011670px;}
.ws200{word-spacing:7.108207px;}
.wsf8{word-spacing:7.126844px;}
.wsdd{word-spacing:7.183631px;}
.ws1e5{word-spacing:7.270797px;}
.ws15e{word-spacing:7.531839px;}
.ws6a{word-spacing:7.541393px;}
.ws183{word-spacing:7.569787px;}
.ws225{word-spacing:8.058339px;}
.ws133{word-spacing:8.086554px;}
.ws182{word-spacing:8.149021px;}
.ws65{word-spacing:8.171736px;}
.ws143{word-spacing:8.580606px;}
.ws3c{word-spacing:8.836151px;}
.ws119{word-spacing:8.898617px;}
.ws215{word-spacing:9.165980px;}
.ws12b{word-spacing:9.339480px;}
.ws86{word-spacing:9.369954px;}
.ws21e{word-spacing:9.491159px;}
.ws1cf{word-spacing:9.917956px;}
.ws14c{word-spacing:10.045726px;}
.wsc8{word-spacing:10.199053px;}
.ws15c{word-spacing:10.243301px;}
.wsde{word-spacing:10.704463px;}
.ws11c{word-spacing:10.880504px;}
.wsf1{word-spacing:10.891862px;}
.wsf3{word-spacing:11.107655px;}
.ws5a{word-spacing:11.164442px;}
.wsa7{word-spacing:11.215551px;}
.ws1c3{word-spacing:11.743676px;}
.ws1c2{word-spacing:11.942432px;}
.wsc7{word-spacing:11.993541px;}
.ws22{word-spacing:12.059485px;}
.ws1db{word-spacing:12.184046px;}
.ws8b{word-spacing:12.635241px;}
.wsf7{word-spacing:12.714744px;}
.wsc6{word-spacing:12.754495px;}
.ws154{word-spacing:13.208796px;}
.ws15f{word-spacing:13.566874px;}
.ws116{word-spacing:13.623345px;}
.ws115{word-spacing:14.617128px;}
.ws61{word-spacing:15.128217px;}
.wsef{word-spacing:15.298579px;}
.ws11a{word-spacing:15.463263px;}
.ws1b0{word-spacing:15.980031px;}
.ws131{word-spacing:16.053264px;}
.wsec{word-spacing:16.085542px;}
.ws59{word-spacing:16.366186px;}
.ws2c{word-spacing:16.977424px;}
.ws10c{word-spacing:17.274788px;}
.ws8a{word-spacing:17.643907px;}
.ws80{word-spacing:17.837039px;}
.ws89{word-spacing:18.183390px;}
.ws17b{word-spacing:18.552509px;}
.ws53{word-spacing:18.614975px;}
.ws54{word-spacing:18.853483px;}
.ws1a8{word-spacing:18.950022px;}
.wsed{word-spacing:19.296426px;}
.ws20c{word-spacing:19.597108px;}
.ws20a{word-spacing:19.652999px;}
.ws1d4{word-spacing:20.765720px;}
.ws18{word-spacing:21.117489px;}
.ws1c{word-spacing:21.151171px;}
.ws17{word-spacing:21.382892px;}
.ws19{word-spacing:21.712853px;}
.ws5b{word-spacing:23.771289px;}
.ws32{word-spacing:23.782739px;}
.ws69{word-spacing:27.655561px;}
.ws75{word-spacing:33.260497px;}
.ws127{word-spacing:142.791601px;}
.ws128{word-spacing:146.725801px;}
.ws15a{word-spacing:388.231024px;}
._17{margin-left:-54.902252px;}
._1b{margin-left:-9.333394px;}
._1c{margin-left:-7.963221px;}
._20{margin-left:-6.006394px;}
._8{margin-left:-1.578044px;}
._1{width:1.297127px;}
._11{width:6.098648px;}
._5{width:7.621236px;}
._b{width:9.029228px;}
._4{width:11.118038px;}
._f{width:12.260262px;}
._0{width:13.586357px;}
._6{width:15.094530px;}
._d{width:16.498598px;}
._7{width:17.891972px;}
._14{width:19.038529px;}
._3{width:20.689414px;}
._2{width:22.537755px;}
._a{width:23.589569px;}
._9{width:24.988688px;}
._e{width:26.488160px;}
._19{width:28.113118px;}
._c{width:29.404619px;}
._15{width:31.411880px;}
._1f{width:33.004953px;}
._18{width:34.174778px;}
._1a{width:35.321887px;}
._13{width:37.388956px;}
._12{width:38.405454px;}
._10{width:39.694532px;}
._21{width:41.454948px;}
._1d{width:47.759032px;}
._16{width:55.260014px;}
._1e{width:101.373102px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:27.928200px;}
.fs14{font-size:27.929400px;}
.fs17{font-size:28.677000px;}
.fs7{font-size:29.883000px;}
.fs11{font-size:30.869400px;}
.fsc{font-size:31.498200px;}
.fse{font-size:31.499400px;}
.fs12{font-size:31.876200px;}
.fs1a{font-size:33.869400px;}
.fs3{font-size:35.866200px;}
.fs9{font-size:37.854600px;}
.fsa{font-size:39.750600px;}
.fs13{font-size:41.158800px;}
.fs2{font-size:41.842800px;}
.fs16{font-size:42.258000px;}
.fs6{font-size:44.830800px;}
.fs10{font-size:47.041200px;}
.fsf{font-size:47.821200px;}
.fsb{font-size:47.998800px;}
.fs18{font-size:48.000600px;}
.fs19{font-size:50.809200px;}
.fs5{font-size:53.797800px;}
.fsd{font-size:53.998800px;}
.fs8{font-size:56.787600px;}
.fs0{font-size:59.775600px;}
.fs4{font-size:65.754000px;}
.fs1{font-size:71.730600px;}
.y0{bottom:0.000000px;}
.y1{bottom:50.343300px;}
.y1f4{bottom:99.484850px;}
.yd0{bottom:99.493507px;}
.y13e{bottom:99.581093px;}
.y1a2{bottom:99.581102px;}
.y17b{bottom:99.748657px;}
.y231{bottom:99.920360px;}
.y1d{bottom:100.181174px;}
.y52{bottom:100.941264px;}
.y88{bottom:101.366383px;}
.y8a{bottom:101.366850px;}
.y89{bottom:107.659800px;}
.y1c{bottom:113.616897px;}
.y13d{bottom:114.463050px;}
.y1a1{bottom:114.547943px;}
.y230{bottom:114.802375px;}
.y50{bottom:114.973200px;}
.y1f3{bottom:115.983068px;}
.ycf{bottom:115.991724px;}
.y17a{bottom:116.246874px;}
.y4f{bottom:117.341660px;}
.y51{bottom:117.354300px;}
.y87{bottom:117.864600px;}
.y1b{bottom:127.052620px;}
.y1a0{bottom:129.429900px;}
.y22f{bottom:129.769495px;}
.y1f2{bottom:132.396104px;}
.yce{bottom:132.404760px;}
.y179{bottom:132.659910px;}
.y4e{bottom:133.839878px;}
.y1a{bottom:140.488343px;}
.y86{bottom:142.440900px;}
.y135{bottom:144.038832px;}
.y137{bottom:144.039825px;}
.y22e{bottom:144.736615px;}
.y1f1{bottom:148.809140px;}
.ycd{bottom:148.817796px;}
.y178{bottom:149.072946px;}
.y4d{bottom:150.252914px;}
.y19{bottom:154.009844px;}
.y191{bottom:158.106383px;}
.y134{bottom:159.038457px;}
.y22d{bottom:159.703735px;}
.y1f0{bottom:165.222176px;}
.ycc{bottom:165.230833px;}
.y136{bottom:165.339450px;}
.y177{bottom:165.571164px;}
.y4c{bottom:166.665950px;}
.y18{bottom:167.445567px;}
.y190{bottom:171.335850px;}
.y133{bottom:174.546869px;}
.y22c{bottom:174.585750px;}
.y192{bottom:176.922000px;}
.y17{bottom:180.881290px;}
.y1ef{bottom:181.720393px;}
.ycb{bottom:181.729050px;}
.y176{bottom:181.984200px;}
.y4b{bottom:183.164168px;}
.y199{bottom:184.384249px;}
.y85{bottom:188.781541px;}
.y22a{bottom:189.546886px;}
.y132{bottom:190.811262px;}
.y138{bottom:193.494450px;}
.y22b{bottom:195.165300px;}
.y19d{bottom:195.568200px;}
.y19a{bottom:196.016700px;}
.y1ee{bottom:198.133429px;}
.y4a{bottom:199.577204px;}
.y229{bottom:204.514006px;}
.y84{bottom:205.279759px;}
.y198{bottom:206.160341px;}
.yca{bottom:206.390550px;}
.y16{bottom:207.753782px;}
.y19b{bottom:208.208537px;}
.y131{bottom:209.894385px;}
.y175{bottom:213.363750px;}
.y1ed{bottom:214.546466px;}
.y19e{bottom:215.854344px;}
.y49{bottom:215.990240px;}
.y228{bottom:219.481126px;}
.y15{bottom:221.189505px;}
.y83{bottom:221.692795px;}
.y130{bottom:226.804363px;}
.y196{bottom:228.547641px;}
.y1ec{bottom:231.044683px;}
.y48{bottom:232.403276px;}
.y227{bottom:234.363141px;}
.y14{bottom:234.711006px;}
.y82{bottom:238.105831px;}
.y19c{bottom:238.522050px;}
.y12f{bottom:244.587918px;}
.y19f{bottom:245.553505px;}
.y1eb{bottom:247.457719px;}
.yc9{bottom:247.462057px;}
.y13{bottom:248.147775px;}
.y47{bottom:248.901493px;}
.y226{bottom:249.330261px;}
.y197{bottom:250.011955px;}
.y81{bottom:254.518867px;}
.y12e{bottom:260.795913px;}
.y12{bottom:261.584544px;}
.y1ea{bottom:263.870755px;}
.yc8{bottom:263.875093px;}
.y225{bottom:264.297381px;}
.y46{bottom:265.314529px;}
.y174{bottom:269.404164px;}
.y80{bottom:271.017085px;}
.y195{bottom:271.859046px;}
.y12d{bottom:278.439072px;}
.y224{bottom:279.179395px;}
.y1e9{bottom:280.368973px;}
.yc7{bottom:280.373310px;}
.y45{bottom:281.727566px;}
.y171{bottom:285.816246px;}
.y173{bottom:285.817200px;}
.y7f{bottom:287.430121px;}
.y139{bottom:288.160500px;}
.y172{bottom:292.110150px;}
.y194{bottom:293.994249px;}
.y223{bottom:294.146516px;}
.y12c{bottom:294.410672px;}
.y1e8{bottom:296.782009px;}
.yc6{bottom:296.786346px;}
.y44{bottom:298.225783px;}
.y11{bottom:301.892760px;}
.y170{bottom:302.229283px;}
.y7e{bottom:303.843157px;}
.y222{bottom:309.113636px;}
.y12b{bottom:312.751014px;}
.y1e7{bottom:313.195045px;}
.yc5{bottom:313.199383px;}
.y13b{bottom:314.199750px;}
.y43{bottom:314.638819px;}
.y10{bottom:315.329529px;}
.y193{bottom:315.811500px;}
.y16d{bottom:318.727014px;}
.y16f{bottom:318.727500px;}
.y7d{bottom:320.341374px;}
.y13a{bottom:321.367050px;}
.y221{bottom:324.080756px;}
.y16e{bottom:325.020300px;}
.y13c{bottom:328.924582px;}
.y12a{bottom:329.350199px;}
.y1e6{bottom:329.693262px;}
.yc2{bottom:329.695188px;}
.yc4{bottom:329.697600px;}
.y42{bottom:331.051855px;}
.y16a{bottom:335.136067px;}
.y16c{bottom:335.140050px;}
.yf{bottom:335.568891px;}
.yc3{bottom:335.990550px;}
.y7c{bottom:336.754410px;}
.y220{bottom:338.962770px;}
.y16b{bottom:341.433000px;}
.y1e5{bottom:346.106298px;}
.yc1{bottom:346.108224px;}
.y129{bottom:347.304150px;}
.y41{bottom:347.550073px;}
.ye{bottom:349.004614px;}
.y169{bottom:351.549103px;}
.y7b{bottom:353.167446px;}
.y21f{bottom:353.929890px;}
.yd{bottom:362.440337px;}
.y1e4{bottom:362.519335px;}
.yc0{bottom:362.521260px;}
.y40{bottom:363.963109px;}
.y14d{bottom:366.348546px;}
.y14f{bottom:366.349500px;}
.y168{bottom:368.047321px;}
.y21e{bottom:368.897011px;}
.y7a{bottom:369.665664px;}
.y14e{bottom:372.642450px;}
.yc{bottom:375.876060px;}
.y1e3{bottom:378.932371px;}
.ybf{bottom:378.934296px;}
.y3f{bottom:380.376145px;}
.y14c{bottom:382.761583px;}
.y21d{bottom:383.864131px;}
.y167{bottom:384.460357px;}
.y79{bottom:386.078700px;}
.yb{bottom:389.311784px;}
.y1e2{bottom:395.430588px;}
.ybe{bottom:395.432514px;}
.y3e{bottom:396.789181px;}
.y21c{bottom:398.746145px;}
.y127{bottom:398.834550px;}
.y149{bottom:399.256435px;}
.y14b{bottom:399.259800px;}
.yf7{bottom:400.619346px;}
.y166{bottom:400.873393px;}
.y126{bottom:401.129646px;}
.y128{bottom:401.130600px;}
.ya{bottom:402.747507px;}
.y14a{bottom:405.552750px;}
.y78{bottom:410.740050px;}
.y1e1{bottom:411.843624px;}
.ybc{bottom:411.845550px;}
.y3d{bottom:413.287398px;}
.y21b{bottom:413.713265px;}
.y148{bottom:415.669471px;}
.yf6{bottom:417.117564px;}
.y165{bottom:417.371610px;}
.y125{bottom:417.627864px;}
.ybd{bottom:418.138500px;}
.y1e0{bottom:428.256660px;}
.y21a{bottom:428.680386px;}
.y3c{bottom:429.700435px;}
.y123{bottom:431.659650px;}
.y147{bottom:432.082507px;}
.yf3{bottom:433.529628px;}
.yf5{bottom:433.530600px;}
.y164{bottom:433.784646px;}
.y122{bottom:434.035945px;}
.y124{bottom:434.040900px;}
.ybb{bottom:436.506900px;}
.yf4{bottom:439.823550px;}
.y77{bottom:441.779400px;}
.y219{bottom:443.647506px;}
.y1df{bottom:444.754878px;}
.y3b{bottom:446.113471px;}
.y146{bottom:448.580724px;}
.yf2{bottom:449.942664px;}
.y163{bottom:450.197683px;}
.y121{bottom:450.448981px;}
.y218{bottom:458.529520px;}
.y1de{bottom:461.167914px;}
.y3a{bottom:462.611688px;}
.y145{bottom:464.993760px;}
.yf1{bottom:466.355233px;}
.y160{bottom:466.689169px;}
.y162{bottom:466.695900px;}
.y120{bottom:466.947198px;}
.y161{bottom:472.988850px;}
.y217{bottom:473.496640px;}
.y1dd{bottom:475.199850px;}
.y1dc{bottom:477.568797px;}
.yb8{bottom:477.579996px;}
.yba{bottom:477.580950px;}
.y39{bottom:479.024724px;}
.y144{bottom:481.406796px;}
.yee{bottom:482.852478px;}
.yf0{bottom:482.853450px;}
.y15f{bottom:483.102205px;}
.y11f{bottom:483.360235px;}
.yb9{bottom:483.873900px;}
.y216{bottom:488.463760px;}
.yef{bottom:489.146400px;}
.y76{bottom:494.061723px;}
.y1db{bottom:494.067014px;}
.yb7{bottom:494.078214px;}
.y38{bottom:495.437760px;}
.y143{bottom:497.905014px;}
.yed{bottom:499.265514px;}
.y15e{bottom:499.515241px;}
.y11e{bottom:499.773271px;}
.y215{bottom:503.345775px;}
.y75{bottom:510.474759px;}
.y1da{bottom:510.480050px;}
.yb6{bottom:510.490764px;}
.y37{bottom:511.935978px;}
.y140{bottom:514.317564px;}
.y142{bottom:514.318050px;}
.yea{bottom:515.675671px;}
.yec{bottom:515.678550px;}
.y15d{bottom:515.928277px;}
.y11d{bottom:516.271488px;}
.y214{bottom:518.312895px;}
.y141{bottom:520.610850px;}
.yeb{bottom:522.056550px;}
.y74{bottom:526.887795px;}
.y1d9{bottom:526.893086px;}
.yb3{bottom:526.903314px;}
.yb5{bottom:526.903800px;}
.y36{bottom:528.349014px;}
.y13f{bottom:530.730600px;}
.ye9{bottom:532.173888px;}
.y15c{bottom:532.426495px;}
.y11c{bottom:532.684524px;}
.yb4{bottom:533.196750px;}
.y213{bottom:533.280015px;}
.y73{bottom:543.300831px;}
.y1d8{bottom:543.306122px;}
.yb2{bottom:543.315396px;}
.y35{bottom:544.762050px;}
.y212{bottom:548.247135px;}
.ye8{bottom:548.586924px;}
.y15b{bottom:548.839531px;}
.y11b{bottom:549.097560px;}
.y72{bottom:559.799049px;}
.y1d7{bottom:559.804340px;}
.yb1{bottom:559.813614px;}
.y211{bottom:563.129150px;}
.ye7{bottom:564.999960px;}
.y15a{bottom:565.252567px;}
.y11a{bottom:565.510596px;}
.y34{bottom:576.141600px;}
.y71{bottom:576.212085px;}
.y1d6{bottom:576.217376px;}
.yb0{bottom:576.226164px;}
.y210{bottom:578.096270px;}
.y18f{bottom:579.628360px;}
.ye6{bottom:581.498178px;}
.y159{bottom:581.750785px;}
.y119{bottom:582.008814px;}
.y18d{bottom:592.554150px;}
.y70{bottom:592.625121px;}
.y1d5{bottom:592.630412px;}
.yae{bottom:592.639200px;}
.y20f{bottom:593.063390px;}
.y18e{bottom:594.595200px;}
.y18c{bottom:594.595202px;}
.ye5{bottom:597.911214px;}
.y158{bottom:598.163821px;}
.y118{bottom:598.421850px;}
.yaf{bottom:599.017200px;}
.y20e{bottom:608.030510px;}
.y6f{bottom:609.123338px;}
.y1d4{bottom:609.128629px;}
.y18b{bottom:609.477160px;}
.ye4{bottom:614.324250px;}
.y157{bottom:614.576857px;}
.yad{bottom:617.300700px;}
.y20d{bottom:622.912525px;}
.y117{bottom:623.083739px;}
.y33{bottom:624.018746px;}
.y18a{bottom:624.444000px;}
.y6e{bottom:625.536374px;}
.y1d3{bottom:625.541666px;}
.y156{bottom:631.075074px;}
.y20c{bottom:637.879645px;}
.ye3{bottom:638.985989px;}
.y32{bottom:640.431302px;}
.y116{bottom:641.026650px;}
.y6d{bottom:641.949410px;}
.y1d2{bottom:641.954702px;}
.y155{bottom:647.488110px;}
.y20b{bottom:652.846765px;}
.y187{bottom:653.367450px;}
.y31{bottom:656.843858px;}
.ye2{bottom:656.928900px;}
.y6c{bottom:658.447628px;}
.y1d1{bottom:658.452919px;}
.yac{bottom:658.457874px;}
.y154{bottom:663.901146px;}
.y20a{bottom:667.728780px;}
.y188{bottom:671.341893px;}
.y30{bottom:673.341592px;}
.y6b{bottom:674.860664px;}
.y1d0{bottom:674.865955px;}
.yab{bottom:674.870910px;}
.y153{bottom:680.314183px;}
.y115{bottom:682.098624px;}
.y209{bottom:682.695900px;}
.ye1{bottom:688.308450px;}
.y2f{bottom:689.754148px;}
.y6a{bottom:691.273700px;}
.y1cf{bottom:691.278991px;}
.yaa{bottom:691.283946px;}
.y152{bottom:696.812400px;}
.y114{bottom:698.511660px;}
.y2e{bottom:706.166704px;}
.y69{bottom:707.771918px;}
.y1ce{bottom:707.777209px;}
.ya9{bottom:707.782164px;}
.y208{bottom:714.500550px;}
.y113{bottom:715.009878px;}
.y151{bottom:721.474289px;}
.y2d{bottom:722.579260px;}
.y68{bottom:724.184954px;}
.y1cd{bottom:724.190245px;}
.ya8{bottom:724.194714px;}
.y112{bottom:731.422914px;}
.y2c{bottom:739.076994px;}
.y150{bottom:739.417200px;}
.y67{bottom:740.597990px;}
.ye0{bottom:740.602795px;}
.y1cc{bottom:740.603281px;}
.ya5{bottom:740.606310px;}
.ya7{bottom:740.607750px;}
.ya6{bottom:746.900550px;}
.y10f{bottom:747.835483px;}
.y111{bottom:747.835950px;}
.y110{bottom:754.213950px;}
.y29{bottom:755.489544px;}
.y2b{bottom:755.489550px;}
.y185{bottom:756.670299px;}
.y66{bottom:757.011026px;}
.ydf{bottom:757.015831px;}
.y1cb{bottom:757.016317px;}
.ya4{bottom:757.019346px;}
.y2a{bottom:760.506900px;}
.y10c{bottom:764.333214px;}
.y10e{bottom:764.333700px;}
.y184{bottom:769.002150px;}
.y27{bottom:770.031300px;}
.y10d{bottom:770.626500px;}
.y28{bottom:771.902100px;}
.y26{bottom:771.902110px;}
.y207{bottom:773.498294px;}
.y65{bottom:773.509243px;}
.yde{bottom:773.514048px;}
.y1ca{bottom:773.514535px;}
.ya3{bottom:773.517564px;}
.y186{bottom:775.176300px;}
.y109{bottom:780.738902px;}
.y10b{bottom:780.746250px;}
.y10a{bottom:787.039200px;}
.y25{bottom:788.399844px;}
.y206{bottom:789.911330px;}
.y64{bottom:789.922279px;}
.ydd{bottom:789.927085px;}
.y1c9{bottom:789.927571px;}
.ya0{bottom:789.929010px;}
.ya2{bottom:789.930600px;}
.y1b8{bottom:792.396602px;}
.ya1{bottom:796.223400px;}
.y108{bottom:797.151938px;}
.y24{bottom:802.941600px;}
.y23{bottom:804.812400px;}
.y205{bottom:806.324366px;}
.y63{bottom:806.335316px;}
.ydc{bottom:806.340121px;}
.y1c8{bottom:806.340607px;}
.y9f{bottom:806.342046px;}
.y1b7{bottom:807.363443px;}
.y107{bottom:813.650155px;}
.y1b6{bottom:822.245400px;}
.y204{bottom:822.822584px;}
.y62{bottom:822.833533px;}
.ydb{bottom:822.838338px;}
.y1c7{bottom:822.838824px;}
.y9e{bottom:822.840264px;}
.y106{bottom:830.063191px;}
.y253{bottom:831.338140px;}
.y242{bottom:831.341950px;}
.y22{bottom:837.722700px;}
.y203{bottom:839.235620px;}
.y61{bottom:839.246569px;}
.yda{bottom:839.251374px;}
.y1c6{bottom:839.251860px;}
.y9d{bottom:839.252964px;}
.y252{bottom:846.305260px;}
.y241{bottom:846.309070px;}
.y105{bottom:846.476227px;}
.y182{bottom:849.383349px;}
.y1af{bottom:851.996801px;}
.y1ad{bottom:851.997790px;}
.y202{bottom:855.648656px;}
.y60{bottom:855.659605px;}
.yd9{bottom:855.664410px;}
.y1c5{bottom:855.664896px;}
.y9c{bottom:855.666000px;}
.y251{bottom:861.187274px;}
.y240{bottom:861.191085px;}
.y181{bottom:861.715200px;}
.y104{bottom:862.974445px;}
.y1ac{bottom:866.353889px;}
.y189{bottom:866.492250px;}
.y183{bottom:867.889350px;}
.y1ae{bottom:872.088750px;}
.y201{bottom:872.146874px;}
.y5f{bottom:872.157823px;}
.yd8{bottom:872.162628px;}
.y1c4{bottom:872.163114px;}
.y250{bottom:876.154394px;}
.y23f{bottom:876.158205px;}
.y1ab{bottom:878.825281px;}
.y103{bottom:879.387481px;}
.y9b{bottom:880.327350px;}
.y200{bottom:888.559910px;}
.y5e{bottom:888.570859px;}
.y1c1{bottom:888.572785px;}
.yd7{bottom:888.575664px;}
.y1c3{bottom:888.576150px;}
.y24f{bottom:891.121514px;}
.y23e{bottom:891.125325px;}
.y1c2{bottom:894.868950px;}
.y21{bottom:895.209300px;}
.y102{bottom:895.800517px;}
.y17f{bottom:902.091471px;}
.y1aa{bottom:903.144760px;}
.y1ff{bottom:904.972946px;}
.y5d{bottom:904.983895px;}
.y1c0{bottom:904.985821px;}
.yd6{bottom:904.988700px;}
.y24e{bottom:906.088635px;}
.y23d{bottom:906.092445px;}
.y101{bottom:912.213553px;}
.y17e{bottom:914.423321px;}
.y180{bottom:920.597700px;}
.y24d{bottom:920.970649px;}
.y23c{bottom:920.974460px;}
.y1fe{bottom:921.471163px;}
.y5c{bottom:921.482112px;}
.y1bf{bottom:921.484038px;}
.y9a{bottom:921.485964px;}
.y1a9{bottom:927.054337px;}
.y100{bottom:928.711771px;}
.y1b0{bottom:928.915500px;}
.yd5{bottom:929.650200px;}
.y24c{bottom:935.937769px;}
.y23b{bottom:935.941580px;}
.y20{bottom:936.283391px;}
.y1fd{bottom:937.884199px;}
.y5b{bottom:937.895148px;}
.y1be{bottom:937.897074px;}
.y99{bottom:937.898028px;}
.yff{bottom:945.124807px;}
.y24b{bottom:950.904889px;}
.y23a{bottom:950.908700px;}
.y1a8{bottom:951.506928px;}
.y1fc{bottom:954.297235px;}
.y5a{bottom:954.308185px;}
.y1bd{bottom:954.310110px;}
.y98{bottom:954.311064px;}
.yfe{bottom:961.537843px;}
.y1f{bottom:961.710096px;}
.y24a{bottom:965.786904px;}
.y239{bottom:965.790715px;}
.y1b5{bottom:968.949601px;}
.y9{bottom:969.195458px;}
.y1fb{bottom:970.710271px;}
.y59{bottom:970.721221px;}
.y95{bottom:970.723146px;}
.yd4{bottom:970.723483px;}
.y97{bottom:970.724100px;}
.y1a7{bottom:974.652691px;}
.y96{bottom:977.102100px;}
.yfd{bottom:978.036060px;}
.y249{bottom:980.754024px;}
.y238{bottom:980.757835px;}
.y8{bottom:982.631181px;}
.y17d{bottom:984.674649px;}
.y1b4{bottom:985.756664px;}
.y1b1{bottom:985.858050px;}
.y1e{bottom:987.136800px;}
.y1fa{bottom:987.208489px;}
.y58{bottom:987.219438px;}
.y94{bottom:987.221364px;}
.yd3{bottom:987.221700px;}
.yd2{bottom:993.514650px;}
.yfc{bottom:994.449096px;}
.y248{bottom:995.721144px;}
.y237{bottom:995.724955px;}
.y7{bottom:996.066904px;}
.y17c{bottom:997.006500px;}
.y1a6{bottom:998.403800px;}
.y1b3{bottom:1001.232600px;}
.y1bc{bottom:1001.253300px;}
.y1f9{bottom:1003.621525px;}
.y57{bottom:1003.632474px;}
.y1bb{bottom:1003.633446px;}
.y91{bottom:1003.634064px;}
.y93{bottom:1003.634400px;}
.y6{bottom:1009.502627px;}
.y92{bottom:1009.927350px;}
.y247{bottom:1010.688264px;}
.y236{bottom:1010.692075px;}
.yfb{bottom:1010.862133px;}
.y1b2{bottom:1015.069500px;}
.y1f8{bottom:1020.034561px;}
.y56{bottom:1020.045510px;}
.y90{bottom:1020.046483px;}
.y1a5{bottom:1022.684191px;}
.y5{bottom:1024.469100px;}
.y246{bottom:1025.570279px;}
.y235{bottom:1025.574090px;}
.yfa{bottom:1027.360350px;}
.y1ba{bottom:1034.163600px;}
.y4{bottom:1036.374600px;}
.y1f7{bottom:1036.532779px;}
.y8d{bottom:1036.543627px;}
.y55{bottom:1036.543728px;}
.y8f{bottom:1036.544700px;}
.y245{bottom:1040.537399px;}
.y234{bottom:1040.541210px;}
.y8e{bottom:1042.837500px;}
.y1a4{bottom:1046.856823px;}
.yf9{bottom:1052.021920px;}
.y1f6{bottom:1052.945815px;}
.y8c{bottom:1052.956663px;}
.y54{bottom:1052.956764px;}
.y244{bottom:1055.504519px;}
.y233{bottom:1055.508330px;}
.y1b9{bottom:1066.988700px;}
.y1f5{bottom:1069.358851px;}
.y8b{bottom:1069.369699px;}
.y53{bottom:1069.369800px;}
.yf8{bottom:1069.880100px;}
.y243{bottom:1070.471639px;}
.y232{bottom:1070.475450px;}
.y1a3{bottom:1070.504400px;}
.y2{bottom:1099.983900px;}
.yd1{bottom:1114.270500px;}
.y3{bottom:1148.796573px;}
.h21{height:19.200240px;}
.h1e{height:21.113719px;}
.h1d{height:21.114626px;}
.h15{height:21.599520px;}
.h20{height:21.679812px;}
.h9{height:22.770846px;}
.h1b{height:22.791483px;}
.h1a{height:23.337266px;}
.h14{height:23.812639px;}
.h16{height:23.813546px;}
.h24{height:24.216621px;}
.h4{height:25.761214px;}
.hb{height:27.066039px;}
.h1c{height:31.116053px;}
.h3{height:31.884214px;}
.h1f{height:31.947048px;}
.h8{height:34.161070px;}
.h18{height:34.192158px;}
.h19{height:35.563147px;}
.h13{height:36.287093px;}
.h22{height:36.328578px;}
.h23{height:36.379387px;}
.h17{height:36.439754px;}
.ha{height:40.603134px;}
.h11{height:40.606948px;}
.h7{height:40.993924px;}
.h1{height:45.549007px;}
.h10{height:46.884844px;}
.he{height:46.886788px;}
.hf{height:47.225044px;}
.hd{height:47.225570px;}
.h12{height:47.233873px;}
.hc{height:47.246734px;}
.h6{height:50.104548px;}
.h5{height:53.797950px;}
.h2{height:54.658717px;}
.h0{height:1170.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:71.773200px;}
.x39{left:79.256700px;}
.x85{left:89.631022px;}
.x16{left:103.833000px;}
.x18{left:111.401550px;}
.x66{left:115.653600px;}
.x71{left:117.941550px;}
.x65{left:118.962000px;}
.x17{left:121.776462px;}
.x73{left:127.056750px;}
.x67{left:128.069250px;}
.x86{left:130.535400px;}
.x72{left:132.641771px;}
.x6e{left:135.919950px;}
.x6f{left:141.641023px;}
.x70{left:147.362096px;}
.x87{left:151.625250px;}
.x57{left:162.680250px;}
.x59{left:179.178000px;}
.x58{left:180.453450px;}
.x68{left:188.266200px;}
.x54{left:197.025600px;}
.x53{left:203.321100px;}
.x3c{left:210.217350px;}
.x3d{left:217.955850px;}
.x4a{left:224.236800px;}
.x4b{left:225.784761px;}
.x82{left:227.055150px;}
.x64{left:230.911500px;}
.x69{left:235.401258px;}
.x19{left:236.834550px;}
.x3e{left:239.045700px;}
.x4c{left:240.712388px;}
.x3f{left:252.566850px;}
.x1a{left:256.903950px;}
.x76{left:264.226208px;}
.x5{left:268.979550px;}
.x4e{left:271.017630px;}
.x84{left:274.336950px;}
.xe{left:276.462900px;}
.xf{left:286.923012px;}
.x6a{left:290.178450px;}
.x83{left:298.743300px;}
.x4d{left:300.020905px;}
.x35{left:304.100700px;}
.x6b{left:308.218861px;}
.x37{left:315.921150px;}
.x36{left:317.622000px;}
.x40{left:320.003100px;}
.x38{left:329.442450px;}
.x75{left:337.044357px;}
.x41{left:340.157400px;}
.x56{left:342.623550px;}
.x3a{left:352.998300px;}
.x33{left:355.804650px;}
.x6c{left:358.705200px;}
.x3b{left:372.047100px;}
.x34{left:374.598300px;}
.x4f{left:375.619015px;}
.x10{left:378.595200px;}
.x6d{left:380.043248px;}
.x61{left:381.140850px;}
.x11{left:389.225100px;}
.x12{left:400.875450px;}
.x60{left:403.205850px;}
.x55{left:407.750700px;}
.x74{left:408.869550px;}
.x13{left:411.590400px;}
.x62{left:432.797400px;}
.x14{left:434.210850px;}
.x63{left:436.066800px;}
.x42{left:439.313250px;}
.x15{left:444.840900px;}
.x89{left:446.796750px;}
.x8a{left:452.068900px;}
.x88{left:457.257115px;}
.x1b{left:471.458860px;}
.x50{left:478.048062px;}
.x80{left:479.635950px;}
.x8b{left:484.213886px;}
.x7f{left:485.368950px;}
.x77{left:497.766450px;}
.x78{left:503.640312px;}
.x7a{left:520.958697px;}
.x29{left:524.267550px;}
.x2a{left:531.921150px;}
.x51{left:537.245850px;}
.x79{left:546.493093px;}
.x2d{left:551.650200px;}
.x2b{left:553.096050px;}
.x2e{left:561.259800px;}
.x2c{left:566.617200px;}
.x5a{left:569.168400px;}
.x31{left:577.842450px;}
.x23{left:580.648650px;}
.x5b{left:587.196750px;}
.x2{left:588.812400px;}
.x32{left:591.703800px;}
.x24{left:594.680250px;}
.x7c{left:596.313162px;}
.x7b{left:597.663306px;}
.x47{left:615.514800px;}
.x81{left:625.910400px;}
.x48{left:627.930600px;}
.x52{left:643.812000px;}
.x2f{left:649.700700px;}
.x7d{left:652.544250px;}
.x30{left:659.140050px;}
.xd{left:671.555700px;}
.x43{left:676.743150px;}
.x5c{left:681.505350px;}
.x6{left:685.587300px;}
.xc{left:689.754150px;}
.x5e{left:693.155700px;}
.x7{left:694.771500px;}
.x5d{left:700.724250px;}
.x8{left:702.255000px;}
.x9{left:711.524250px;}
.x5f{left:713.395050px;}
.x44{left:723.514800px;}
.xa{left:727.086450px;}
.x26{left:733.549500px;}
.xb{left:736.270650px;}
.x3{left:740.606902px;}
.x27{left:747.070650px;}
.x1c{left:748.686450px;}
.x22{left:754.809300px;}
.x1d{left:756.340050px;}
.x49{left:760.081650px;}
.x28{left:765.013950px;}
.x45{left:771.817050px;}
.x1e{left:777.514800px;}
.x1{left:781.766850px;}
.x46{left:785.168400px;}
.x20{left:787.039050px;}
.x1f{left:791.036100px;}
.x21{left:795.628200px;}
.x7e{left:802.190850px;}
.x25{left:809.489550px;}
@media print{
.v4{vertical-align:-22.400000pt;}
.v6{vertical-align:-19.861867pt;}
.v5{vertical-align:-13.209270pt;}
.v1{vertical-align:-5.442667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.326491pt;}
.v2{vertical-align:18.464742pt;}
.ls15{letter-spacing:-1.014605pt;}
.ls11{letter-spacing:-1.009557pt;}
.ls3d{letter-spacing:-0.994414pt;}
.ls2{letter-spacing:-0.989366pt;}
.ls10{letter-spacing:-0.969175pt;}
.ls12{letter-spacing:-0.964127pt;}
.ls14{letter-spacing:-0.959079pt;}
.lsf{letter-spacing:-0.954032pt;}
.ls3f{letter-spacing:-0.952955pt;}
.lse{letter-spacing:-0.943936pt;}
.ls40{letter-spacing:-0.831013pt;}
.ls41{letter-spacing:-0.812947pt;}
.ls13{letter-spacing:-0.802598pt;}
.ls16{letter-spacing:-0.777359pt;}
.ls3e{letter-spacing:-0.754234pt;}
.ls1a{letter-spacing:-0.752120pt;}
.ls20{letter-spacing:-0.742025pt;}
.ls18{letter-spacing:-0.736977pt;}
.ls43{letter-spacing:-0.736169pt;}
.ls1b{letter-spacing:-0.726881pt;}
.ls1c{letter-spacing:-0.716786pt;}
.ls1f{letter-spacing:-0.701642pt;}
.ls19{letter-spacing:-0.696595pt;}
.ls1d{letter-spacing:-0.691547pt;}
.ls17{letter-spacing:-0.681451pt;}
.ls1e{letter-spacing:-0.676403pt;}
.ls2c{letter-spacing:-0.646117pt;}
.ls2d{letter-spacing:-0.641069pt;}
.ls2e{letter-spacing:-0.636021pt;}
.ls2f{letter-spacing:-0.630973pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.158148pt;}
.ls36{letter-spacing:0.212539pt;}
.ls25{letter-spacing:0.302867pt;}
.ls8{letter-spacing:2.591200pt;}
.ls4{letter-spacing:2.591733pt;}
.lsb{letter-spacing:2.893600pt;}
.ls38{letter-spacing:5.931145pt;}
.ls37{letter-spacing:6.762980pt;}
.ls29{letter-spacing:6.877751pt;}
.ls2a{letter-spacing:7.064785pt;}
.ls2b{letter-spacing:7.081788pt;}
.ls33{letter-spacing:7.179556pt;}
.ls30{letter-spacing:7.415281pt;}
.ls26{letter-spacing:7.718066pt;}
.ls27{letter-spacing:8.020933pt;}
.ls3{letter-spacing:8.298561pt;}
.ls21{letter-spacing:8.323800pt;}
.ls22{letter-spacing:8.409613pt;}
.ls23{letter-spacing:8.480282pt;}
.ls24{letter-spacing:8.485329pt;}
.ls6{letter-spacing:8.601428pt;}
.lsa{letter-spacing:8.626667pt;}
.ls3c{letter-spacing:10.179905pt;}
.ls0{letter-spacing:11.054400pt;}
.ls39{letter-spacing:13.508473pt;}
.ls3b{letter-spacing:13.806553pt;}
.ls42{letter-spacing:13.811070pt;}
.lsc{letter-spacing:16.456406pt;}
.ls3a{letter-spacing:21.669559pt;}
.ls9{letter-spacing:24.047656pt;}
.ls7{letter-spacing:48.802001pt;}
.ls31{letter-spacing:57.822537pt;}
.ls32{letter-spacing:59.376670pt;}
.ls34{letter-spacing:61.882923pt;}
.ls35{letter-spacing:67.866923pt;}
.lsd{letter-spacing:89.498372pt;}
.ls28{letter-spacing:345.753489pt;}
.ws99{word-spacing:-68.235980pt;}
.ws1{word-spacing:-38.913053pt;}
.wsd{word-spacing:-35.222339pt;}
.ws1e0{word-spacing:-32.427561pt;}
.ws91{word-spacing:-31.092737pt;}
.wseb{word-spacing:-31.073609pt;}
.wscd{word-spacing:-30.930148pt;}
.wsfe{word-spacing:-30.877546pt;}
.wsdc{word-spacing:-30.858418pt;}
.wsb6{word-spacing:-30.839290pt;}
.wsea{word-spacing:-30.772342pt;}
.wsa3{word-spacing:-30.753213pt;}
.ws81{word-spacing:-30.624099pt;}
.wsc0{word-spacing:-30.609753pt;}
.ws170{word-spacing:-30.520553pt;}
.ws164{word-spacing:-29.721407pt;}
.wsb1{word-spacing:-28.060646pt;}
.wsd7{word-spacing:-27.757779pt;}
.ws114{word-spacing:-27.454912pt;}
.ws10f{word-spacing:-27.152044pt;}
.ws0{word-spacing:-26.620023pt;}
.ws55{word-spacing:-26.182869pt;}
.ws16e{word-spacing:-25.487637pt;}
.ws3f{word-spacing:-25.037022pt;}
.ws187{word-spacing:-24.527195pt;}
.ws1a1{word-spacing:-24.436335pt;}
.ws73{word-spacing:-23.886127pt;}
.ws118{word-spacing:-23.224866pt;}
.ws82{word-spacing:-23.043146pt;}
.ws199{word-spacing:-22.921999pt;}
.ws7c{word-spacing:-22.316265pt;}
.ws1fe{word-spacing:-21.552134pt;}
.ws7e{word-spacing:-21.205752pt;}
.ws166{word-spacing:-20.348452pt;}
.ws205{word-spacing:-20.332713pt;}
.ws1f8{word-spacing:-20.283033pt;}
.ws22b{word-spacing:-20.048181pt;}
.wsf5{word-spacing:-19.898375pt;}
.ws60{word-spacing:-19.545030pt;}
.ws6e{word-spacing:-19.433979pt;}
.ws1ce{word-spacing:-18.968768pt;}
.ws208{word-spacing:-18.901022pt;}
.ws221{word-spacing:-18.878441pt;}
.ws1eb{word-spacing:-18.824244pt;}
.ws210{word-spacing:-18.806179pt;}
.ws112{word-spacing:-18.787862pt;}
.ws1c8{word-spacing:-18.761015pt;}
.ws1d6{word-spacing:-18.751982pt;}
.ws1d2{word-spacing:-18.729400pt;}
.ws213{word-spacing:-18.720367pt;}
.ws228{word-spacing:-18.697786pt;}
.ws21b{word-spacing:-18.684236pt;}
.ws224{word-spacing:-18.670687pt;}
.ws1ef{word-spacing:-18.639073pt;}
.ws3a{word-spacing:-18.495090pt;}
.ws152{word-spacing:-18.086220pt;}
.ws18b{word-spacing:-17.288669pt;}
.ws1b3{word-spacing:-17.273526pt;}
.wsfc{word-spacing:-17.177618pt;}
.ws1d9{word-spacing:-16.638319pt;}
.ws217{word-spacing:-16.403468pt;}
.ws12a{word-spacing:-16.114682pt;}
.ws105{word-spacing:-15.915671pt;}
.ws1e7{word-spacing:-15.798274pt;}
.ws15{word-spacing:-15.788683pt;}
.ws22a{word-spacing:-15.721496pt;}
.wsf{word-spacing:-15.695699pt;}
.wse{word-spacing:-15.688260pt;}
.wsc{word-spacing:-15.647348pt;}
.ws13{word-spacing:-15.636189pt;}
.ws3{word-spacing:-15.617593pt;}
.ws4{word-spacing:-15.595276pt;}
.ws12{word-spacing:-15.591557pt;}
.ws2{word-spacing:-15.565522pt;}
.ws7{word-spacing:-15.554364pt;}
.ws14{word-spacing:-15.506012pt;}
.ws5{word-spacing:-15.502292pt;}
.wsb{word-spacing:-15.487415pt;}
.ws6{word-spacing:-15.483696pt;}
.ws10{word-spacing:-15.401870pt;}
.ws8{word-spacing:-15.368396pt;}
.ws16{word-spacing:-15.338641pt;}
.ws11{word-spacing:-15.308886pt;}
.wsa{word-spacing:-15.305166pt;}
.ws9{word-spacing:-15.215902pt;}
.ws1a{word-spacing:-14.921774pt;}
.ws192{word-spacing:-14.896018pt;}
.ws1e{word-spacing:-14.662592pt;}
.ws15b{word-spacing:-14.601406pt;}
.ws36{word-spacing:-13.947035pt;}
.ws1f3{word-spacing:-13.431694pt;}
.ws1a6{word-spacing:-13.346348pt;}
.ws202{word-spacing:-13.120065pt;}
.ws25{word-spacing:-13.118488pt;}
.ws27{word-spacing:-12.951120pt;}
.ws1e9{word-spacing:-12.654878pt;}
.ws1de{word-spacing:-12.167110pt;}
.ws138{word-spacing:-12.160118pt;}
.ws130{word-spacing:-12.141566pt;}
.wsd3{word-spacing:-12.103309pt;}
.ws13b{word-spacing:-11.857251pt;}
.ws2f{word-spacing:-11.385031pt;}
.ws23{word-spacing:-11.305332pt;}
.wsab{word-spacing:-11.291899pt;}
.ws97{word-spacing:-11.266660pt;}
.wsa1{word-spacing:-11.256564pt;}
.wsbd{word-spacing:-11.255268pt;}
.wsc4{word-spacing:-11.251516pt;}
.wsa0{word-spacing:-11.251217pt;}
.wsb7{word-spacing:-11.245121pt;}
.ws17e{word-spacing:-11.226278pt;}
.wsfa{word-spacing:-11.180847pt;}
.ws3d{word-spacing:-11.135417pt;}
.ws24{word-spacing:-11.122023pt;}
.wsa9{word-spacing:-11.110178pt;}
.wsd9{word-spacing:-11.105131pt;}
.ws93{word-spacing:-11.095035pt;}
.wsb0{word-spacing:-11.089987pt;}
.wsd6{word-spacing:-11.079892pt;}
.wscc{word-spacing:-11.064748pt;}
.ws21{word-spacing:-11.006460pt;}
.ws1e4{word-spacing:-11.001885pt;}
.wscf{word-spacing:-10.989032pt;}
.wsc1{word-spacing:-10.978936pt;}
.ws123{word-spacing:-10.973888pt;}
.wsdb{word-spacing:-10.963793pt;}
.wsba{word-spacing:-10.957868pt;}
.ws9d{word-spacing:-10.953697pt;}
.wsd2{word-spacing:-10.951312pt;}
.ws9a{word-spacing:-10.948352pt;}
.wsa5{word-spacing:-10.945628pt;}
.ws11b{word-spacing:-10.832550pt;}
.wsa8{word-spacing:-10.812359pt;}
.wsaa{word-spacing:-10.807311pt;}
.ws9c{word-spacing:-10.797216pt;}
.wsac{word-spacing:-10.792168pt;}
.ws111{word-spacing:-10.453966pt;}
.ws1cd{word-spacing:-10.356044pt;}
.ws8f{word-spacing:-10.280615pt;}
.ws1c7{word-spacing:-10.148291pt;}
.ws62{word-spacing:-10.024904pt;}
.ws167{word-spacing:-9.721519pt;}
.ws12d{word-spacing:-9.717268pt;}
.ws124{word-spacing:-9.525173pt;}
.ws28{word-spacing:-9.524054pt;}
.ws160{word-spacing:-9.372955pt;}
.wsd4{word-spacing:-9.030490pt;}
.ws149{word-spacing:-8.717528pt;}
.ws42{word-spacing:-8.616572pt;}
.ws134{word-spacing:-8.596381pt;}
.ws52{word-spacing:-8.566094pt;}
.ws49{word-spacing:-8.434852pt;}
.ws56{word-spacing:-8.404565pt;}
.wse6{word-spacing:-8.389421pt;}
.wse7{word-spacing:-8.374278pt;}
.ws40{word-spacing:-8.338944pt;}
.ws19b{word-spacing:-8.318752pt;}
.ws6c{word-spacing:-8.278370pt;}
.ws186{word-spacing:-8.237988pt;}
.ws108{word-spacing:-8.197606pt;}
.wsae{word-spacing:-8.177414pt;}
.wsb5{word-spacing:-8.172367pt;}
.ws1f0{word-spacing:-8.115923pt;}
.ws3e{word-spacing:-8.111793pt;}
.wsbc{word-spacing:-8.091602pt;}
.wscb{word-spacing:-8.086554pt;}
.wsd5{word-spacing:-8.020933pt;}
.ws13e{word-spacing:-7.950264pt;}
.ws188{word-spacing:-7.914929pt;}
.ws121{word-spacing:-7.869499pt;}
.ws1a0{word-spacing:-7.829117pt;}
.ws139{word-spacing:-7.713018pt;}
.ws84{word-spacing:-7.702922pt;}
.ws1bb{word-spacing:-7.687779pt;}
.ws159{word-spacing:-7.628172pt;}
.ws4e{word-spacing:-7.627206pt;}
.ws1a3{word-spacing:-7.576728pt;}
.ws7a{word-spacing:-7.566632pt;}
.ws51{word-spacing:-7.551489pt;}
.ws21f{word-spacing:-7.551376pt;}
.ws15d{word-spacing:-7.434603pt;}
.ws72{word-spacing:-7.405103pt;}
.ws96{word-spacing:-7.314243pt;}
.ws1c1{word-spacing:-7.273861pt;}
.ws173{word-spacing:-7.268813pt;}
.ws155{word-spacing:-7.263765pt;}
.ws1ff{word-spacing:-7.253296pt;}
.ws74{word-spacing:-7.248622pt;}
.ws16b{word-spacing:-7.086405pt;}
.ws174{word-spacing:-7.082045pt;}
.ws2d{word-spacing:-7.041424pt;}
.ws2b{word-spacing:-7.025484pt;}
.ws162{word-spacing:-6.901665pt;}
.ws9e{word-spacing:-6.900324pt;}
.wsf2{word-spacing:-6.895277pt;}
.ws1b6{word-spacing:-6.839751pt;}
.ws43{word-spacing:-6.819560pt;}
.ws50{word-spacing:-6.804416pt;}
.ws6b{word-spacing:-6.738795pt;}
.wsbf{word-spacing:-6.637839pt;}
.ws1fd{word-spacing:-6.607454pt;}
.ws1a2{word-spacing:-6.577266pt;}
.ws58{word-spacing:-6.486406pt;}
.ws1fc{word-spacing:-6.480996pt;}
.wsda{word-spacing:-6.456119pt;}
.ws9f{word-spacing:-6.451071pt;}
.ws12c{word-spacing:-6.439922pt;}
.ws83{word-spacing:-6.420785pt;}
.ws194{word-spacing:-6.405641pt;}
.ws117{word-spacing:-6.365259pt;}
.ws13c{word-spacing:-6.355163pt;}
.ws85{word-spacing:-6.329924pt;}
.ws4f{word-spacing:-6.294590pt;}
.wsdf{word-spacing:-6.228969pt;}
.ws8d{word-spacing:-6.223921pt;}
.ws1a4{word-spacing:-6.183539pt;}
.ws18f{word-spacing:-6.148204pt;}
.ws165{word-spacing:-6.146618pt;}
.wsa4{word-spacing:-6.133061pt;}
.ws1bf{word-spacing:-6.117917pt;}
.ws140{word-spacing:-6.062392pt;}
.ws19a{word-spacing:-6.052296pt;}
.ws18e{word-spacing:-5.916006pt;}
.ws47{word-spacing:-5.875624pt;}
.ws1aa{word-spacing:-5.804955pt;}
.ws1a9{word-spacing:-5.749429pt;}
.ws1ba{word-spacing:-5.668664pt;}
.ws1c0{word-spacing:-5.552565pt;}
.ws7b{word-spacing:-5.446562pt;}
.wse8{word-spacing:-5.436466pt;}
.ws206{word-spacing:-5.433197pt;}
.ws185{word-spacing:-5.380941pt;}
.ws1f1{word-spacing:-5.329321pt;}
.ws204{word-spacing:-5.320288pt;}
.ws1f7{word-spacing:-5.288673pt;}
.ws1fa{word-spacing:-5.279640pt;}
.ws10a{word-spacing:-5.269889pt;}
.ws17a{word-spacing:-5.244650pt;}
.ws179{word-spacing:-5.168934pt;}
.ws107{word-spacing:-5.062930pt;}
.ws7d{word-spacing:-5.057882pt;}
.ws21d{word-spacing:-5.049305pt;}
.ws198{word-spacing:-4.946831pt;}
.wsc2{word-spacing:-4.936735pt;}
.ws1f2{word-spacing:-4.927363pt;}
.ws92{word-spacing:-4.921592pt;}
.ws153{word-spacing:-4.850923pt;}
.ws14a{word-spacing:-4.795397pt;}
.ws22c{word-spacing:-4.787356pt;}
.wsb8{word-spacing:-4.709585pt;}
.wsc3{word-spacing:-4.689394pt;}
.ws190{word-spacing:-4.623773pt;}
.ws20{word-spacing:-4.622554pt;}
.ws41{word-spacing:-4.603581pt;}
.wsd1{word-spacing:-4.548056pt;}
.ws79{word-spacing:-4.543008pt;}
.ws16a{word-spacing:-4.515033pt;}
.ws16c{word-spacing:-4.511276pt;}
.ws20e{word-spacing:-4.502824pt;}
.ws126{word-spacing:-4.450022pt;}
.ws14f{word-spacing:-4.426909pt;}
.ws90{word-spacing:-4.416813pt;}
.ws1b7{word-spacing:-4.386527pt;}
.ws7f{word-spacing:-4.381479pt;}
.ws158{word-spacing:-4.361242pt;}
.ws161{word-spacing:-4.357345pt;}
.wse9{word-spacing:-4.346144pt;}
.ws13a{word-spacing:-4.300714pt;}
.ws4a{word-spacing:-4.240141pt;}
.ws11d{word-spacing:-4.224997pt;}
.ws2e{word-spacing:-4.188193pt;}
.ws46{word-spacing:-4.179567pt;}
.ws19d{word-spacing:-4.154328pt;}
.ws197{word-spacing:-4.124042pt;}
.ws172{word-spacing:-4.093495pt;}
.ws1c4{word-spacing:-4.083659pt;}
.wsa2{word-spacing:-4.058420pt;}
.ws1c5{word-spacing:-4.038229pt;}
.ws1da{word-spacing:-3.960859pt;}
.ws19c{word-spacing:-3.932226pt;}
.ws12f{word-spacing:-3.919213pt;}
.ws5c{word-spacing:-3.901939pt;}
.ws1ca{word-spacing:-3.879565pt;}
.ws207{word-spacing:-3.875048pt;}
.ws20f{word-spacing:-3.847950pt;}
.ws1d1{word-spacing:-3.838917pt;}
.ws212{word-spacing:-3.820852pt;}
.ws227{word-spacing:-3.811819pt;}
.ws21a{word-spacing:-3.793754pt;}
.ws1ee{word-spacing:-3.784721pt;}
.ws12e{word-spacing:-3.753433pt;}
.ws169{word-spacing:-3.727928pt;}
.ws223{word-spacing:-3.716975pt;}
.ws2a{word-spacing:-3.713983pt;}
.ws1f5{word-spacing:-3.662779pt;}
.ws222{word-spacing:-3.658262pt;}
.wsff{word-spacing:-3.614215pt;}
.ws145{word-spacing:-3.599072pt;}
.ws184{word-spacing:-3.594024pt;}
.ws20d{word-spacing:-3.581484pt;}
.ws1d3{word-spacing:-3.576968pt;}
.ws220{word-spacing:-3.545353pt;}
.ws1b{word-spacing:-3.522705pt;}
.wse3{word-spacing:-3.513260pt;}
.wse4{word-spacing:-3.457734pt;}
.ws1d{word-spacing:-3.411126pt;}
.ws100{word-spacing:-3.366874pt;}
.ws64{word-spacing:-3.331539pt;}
.ws1f{word-spacing:-3.259697pt;}
.ws11e{word-spacing:-3.245727pt;}
.ws136{word-spacing:-3.175058pt;}
.wsbb{word-spacing:-3.129628pt;}
.ws142{word-spacing:-3.104389pt;}
.wsf4{word-spacing:-3.074102pt;}
.ws178{word-spacing:-3.048863pt;}
.wsee{word-spacing:-3.038768pt;}
.wsf6{word-spacing:-2.993337pt;}
.wsc5{word-spacing:-2.907525pt;}
.wsd0{word-spacing:-2.882286pt;}
.ws19f{word-spacing:-2.766187pt;}
.ws102{word-spacing:-2.745996pt;}
.wse1{word-spacing:-2.740948pt;}
.ws1ed{word-spacing:-2.628529pt;}
.ws1bd{word-spacing:-2.584467pt;}
.ws29{word-spacing:-2.534435pt;}
.ws109{word-spacing:-2.508750pt;}
.ws10d{word-spacing:-2.488559pt;}
.wsc9{word-spacing:-2.468368pt;}
.ws168{word-spacing:-2.456947pt;}
.ws95{word-spacing:-2.407794pt;}
.ws103{word-spacing:-2.387603pt;}
.ws144{word-spacing:-2.301791pt;}
.ws1ae{word-spacing:-2.266456pt;}
.ws4c{word-spacing:-2.231122pt;}
.ws5f{word-spacing:-2.130166pt;}
.ws3b{word-spacing:-2.125118pt;}
.ws1b8{word-spacing:-2.120070pt;}
.wse5{word-spacing:-2.109975pt;}
.ws141{word-spacing:-1.867681pt;}
.ws1d8{word-spacing:-1.847197pt;}
.ws16f{word-spacing:-1.836334pt;}
.ws14e{word-spacing:-1.832347pt;}
.ws39{word-spacing:-1.822251pt;}
.ws150{word-spacing:-1.776821pt;}
.ws216{word-spacing:-1.720738pt;}
.ws10e{word-spacing:-1.675865pt;}
.ws13f{word-spacing:-1.650626pt;}
.ws106{word-spacing:-1.640531pt;}
.ws14d{word-spacing:-1.635483pt;}
.ws1ab{word-spacing:-1.509288pt;}
.ws218{word-spacing:-1.463305pt;}
.ws132{word-spacing:-1.423476pt;}
.ws151{word-spacing:-1.261947pt;}
.ws146{word-spacing:-1.251851pt;}
.ws229{word-spacing:-1.232970pt;}
.ws19e{word-spacing:-1.201373pt;}
.ws1cb{word-spacing:-1.124577pt;}
.ws1ec{word-spacing:-1.092962pt;}
.ws67{word-spacing:-0.913649pt;}
.ws1d5{word-spacing:-0.876176pt;}
.ws1e6{word-spacing:-0.862627pt;}
.wsaf{word-spacing:-0.752120pt;}
.ws31{word-spacing:-0.725263pt;}
.ws33{word-spacing:-0.689398pt;}
.ws125{word-spacing:-0.656212pt;}
.wsfb{word-spacing:-0.625926pt;}
.wsd8{word-spacing:-0.620878pt;}
.ws1b2{word-spacing:-0.595639pt;}
.ws1b4{word-spacing:-0.570400pt;}
.ws1ea{word-spacing:-0.560030pt;}
.ws18a{word-spacing:-0.444205pt;}
.ws110{word-spacing:-0.413919pt;}
.ws1fb{word-spacing:-0.284532pt;}
.ws1f6{word-spacing:-0.257433pt;}
.ws171{word-spacing:-0.246545pt;}
.ws209{word-spacing:-0.221302pt;}
.wsb9{word-spacing:-0.191816pt;}
.ws6d{word-spacing:-0.111051pt;}
.ws1b1{word-spacing:-0.085812pt;}
.ws34{word-spacing:-0.053134pt;}
.wsad{word-spacing:-0.050478pt;}
.ws1c9{word-spacing:-0.045164pt;}
.ws163{word-spacing:-0.036586pt;}
.ws98{word-spacing:-0.033649pt;}
.ws26{word-spacing:-0.026563pt;}
.ws1d0{word-spacing:-0.018065pt;}
.ws57{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.055526pt;}
.ws10b{word-spacing:0.171625pt;}
.wsb3{word-spacing:0.201911pt;}
.ws4b{word-spacing:0.232198pt;}
.ws87{word-spacing:0.242294pt;}
.ws1af{word-spacing:0.297819pt;}
.ws180{word-spacing:0.312963pt;}
.wsfd{word-spacing:0.434110pt;}
.ws1be{word-spacing:0.474492pt;}
.ws219{word-spacing:0.519383pt;}
.wsa6{word-spacing:0.560304pt;}
.ws68{word-spacing:0.600687pt;}
.ws38{word-spacing:0.610782pt;}
.ws101{word-spacing:0.681451pt;}
.ws17c{word-spacing:0.716786pt;}
.ws1f9{word-spacing:0.767783pt;}
.wse0{word-spacing:0.933841pt;}
.ws104{word-spacing:0.959079pt;}
.ws8e{word-spacing:1.014605pt;}
.ws30{word-spacing:1.091879pt;}
.wsb2{word-spacing:1.105465pt;}
.ws14b{word-spacing:1.171087pt;}
.ws71{word-spacing:1.196325pt;}
.ws175{word-spacing:1.201373pt;}
.ws1d7{word-spacing:1.314265pt;}
.ws147{word-spacing:1.403285pt;}
.ws6f{word-spacing:1.433571pt;}
.ws226{word-spacing:1.472338pt;}
.ws135{word-spacing:1.504240pt;}
.ws1f4{word-spacing:1.508469pt;}
.ws88{word-spacing:1.625387pt;}
.ws120{word-spacing:1.635483pt;}
.ws44{word-spacing:1.706152pt;}
.ws191{word-spacing:1.716247pt;}
.ws201{word-spacing:1.725255pt;}
.ws5d{word-spacing:1.807108pt;}
.wsca{word-spacing:1.827299pt;}
.ws21c{word-spacing:1.829131pt;}
.ws193{word-spacing:1.852538pt;}
.wsce{word-spacing:1.958541pt;}
.ws1bc{word-spacing:1.963589pt;}
.ws9b{word-spacing:2.029210pt;}
.wsf0{word-spacing:2.084736pt;}
.ws1e8{word-spacing:2.086564pt;}
.ws70{word-spacing:2.125118pt;}
.ws195{word-spacing:2.145309pt;}
.ws20b{word-spacing:2.343998pt;}
.ws181{word-spacing:2.357316pt;}
.ws11f{word-spacing:2.468368pt;}
.ws8c{word-spacing:2.639992pt;}
.ws77{word-spacing:2.670279pt;}
.ws1b5{word-spacing:2.705614pt;}
.ws13d{word-spacing:2.715709pt;}
.ws1e1{word-spacing:2.759504pt;}
.ws63{word-spacing:2.796474pt;}
.ws1dd{word-spacing:2.813701pt;}
.ws1dc{word-spacing:2.836282pt;}
.ws129{word-spacing:2.875661pt;}
.ws1df{word-spacing:2.994356pt;}
.ws35{word-spacing:3.008481pt;}
.ws5e{word-spacing:3.124580pt;}
.ws37{word-spacing:3.139723pt;}
.ws1a5{word-spacing:3.331539pt;}
.ws189{word-spacing:3.402208pt;}
.ws94{word-spacing:3.477925pt;}
.ws1a7{word-spacing:3.538498pt;}
.ws211{word-spacing:3.716975pt;}
.ws1ac{word-spacing:3.760601pt;}
.ws148{word-spacing:3.871652pt;}
.ws137{word-spacing:4.068516pt;}
.ws1e3{word-spacing:4.218293pt;}
.ws214{word-spacing:4.277006pt;}
.wsf9{word-spacing:4.280523pt;}
.wsb4{word-spacing:4.391574pt;}
.ws157{word-spacing:4.613677pt;}
.ws16d{word-spacing:4.616452pt;}
.wse2{word-spacing:4.830732pt;}
.ws76{word-spacing:4.845875pt;}
.ws196{word-spacing:4.916544pt;}
.ws1cc{word-spacing:4.927363pt;}
.ws156{word-spacing:4.961974pt;}
.ws1c6{word-spacing:4.968011pt;}
.ws45{word-spacing:5.073026pt;}
.ws78{word-spacing:5.133599pt;}
.ws18d{word-spacing:5.194172pt;}
.ws48{word-spacing:5.274937pt;}
.ws113{word-spacing:5.315319pt;}
.ws1e2{word-spacing:5.320288pt;}
.ws66{word-spacing:5.401132pt;}
.ws17d{word-spacing:5.436466pt;}
.ws17f{word-spacing:5.587900pt;}
.wsbe{word-spacing:5.618187pt;}
.ws176{word-spacing:5.688856pt;}
.ws177{word-spacing:5.749429pt;}
.ws18c{word-spacing:5.895815pt;}
.ws122{word-spacing:5.910958pt;}
.ws1ad{word-spacing:6.052296pt;}
.ws1b9{word-spacing:6.173443pt;}
.ws203{word-spacing:6.232595pt;}
.ws200{word-spacing:6.318406pt;}
.wsf8{word-spacing:6.334972pt;}
.wsdd{word-spacing:6.385450pt;}
.ws1e5{word-spacing:6.462930pt;}
.ws15e{word-spacing:6.694968pt;}
.ws6a{word-spacing:6.703461pt;}
.ws183{word-spacing:6.728700pt;}
.ws225{word-spacing:7.162968pt;}
.ws133{word-spacing:7.188048pt;}
.ws182{word-spacing:7.243574pt;}
.ws65{word-spacing:7.263765pt;}
.ws143{word-spacing:7.627206pt;}
.ws3c{word-spacing:7.854356pt;}
.ws119{word-spacing:7.909882pt;}
.ws215{word-spacing:8.147537pt;}
.ws12b{word-spacing:8.301760pt;}
.ws86{word-spacing:8.328848pt;}
.ws21e{word-spacing:8.436585pt;}
.ws1cf{word-spacing:8.815961pt;}
.ws14c{word-spacing:8.929535pt;}
.wsc8{word-spacing:9.065825pt;}
.ws15c{word-spacing:9.105156pt;}
.wsde{word-spacing:9.515078pt;}
.ws11c{word-spacing:9.671559pt;}
.wsf1{word-spacing:9.681655pt;}
.wsf3{word-spacing:9.873471pt;}
.ws5a{word-spacing:9.923949pt;}
.wsa7{word-spacing:9.969379pt;}
.ws1c3{word-spacing:10.438823pt;}
.ws1c2{word-spacing:10.615495pt;}
.wsc7{word-spacing:10.660925pt;}
.ws22{word-spacing:10.719542pt;}
.ws1db{word-spacing:10.830263pt;}
.ws8b{word-spacing:11.231325pt;}
.wsf7{word-spacing:11.301994pt;}
.wsc6{word-spacing:11.337329pt;}
.ws154{word-spacing:11.741152pt;}
.ws15f{word-spacing:12.059444pt;}
.ws116{word-spacing:12.109640pt;}
.ws115{word-spacing:12.993003pt;}
.ws61{word-spacing:13.447304pt;}
.wsef{word-spacing:13.598737pt;}
.ws11a{word-spacing:13.745123pt;}
.ws1b0{word-spacing:14.204472pt;}
.ws131{word-spacing:14.269568pt;}
.wsec{word-spacing:14.298260pt;}
.ws59{word-spacing:14.547721pt;}
.ws2c{word-spacing:15.091044pt;}
.ws10c{word-spacing:15.355367pt;}
.ws8a{word-spacing:15.683473pt;}
.ws80{word-spacing:15.855146pt;}
.ws89{word-spacing:16.163013pt;}
.ws17b{word-spacing:16.491119pt;}
.ws53{word-spacing:16.546645pt;}
.ws54{word-spacing:16.758652pt;}
.ws1a8{word-spacing:16.844464pt;}
.wsed{word-spacing:17.152379pt;}
.ws20c{word-spacing:17.419652pt;}
.ws20a{word-spacing:17.469332pt;}
.ws1d4{word-spacing:18.458418pt;}
.ws18{word-spacing:18.771101pt;}
.ws1c{word-spacing:18.801041pt;}
.ws17{word-spacing:19.007015pt;}
.ws19{word-spacing:19.300313pt;}
.ws5b{word-spacing:21.130035pt;}
.ws32{word-spacing:21.140213pt;}
.ws69{word-spacing:24.582721pt;}
.ws75{word-spacing:29.564887pt;}
.ws127{word-spacing:126.925868pt;}
.ws128{word-spacing:130.422934pt;}
.ws15a{word-spacing:345.094243pt;}
._17{margin-left:-48.802001pt;}
._1b{margin-left:-8.296350pt;}
._1c{margin-left:-7.078419pt;}
._20{margin-left:-5.339017pt;}
._8{margin-left:-1.402706pt;}
._1{width:1.153002pt;}
._11{width:5.421021pt;}
._5{width:6.774432pt;}
._b{width:8.025981pt;}
._4{width:9.882701pt;}
._f{width:10.898010pt;}
._0{width:12.076762pt;}
._6{width:13.417360pt;}
._d{width:14.665421pt;}
._7{width:15.903975pt;}
._14{width:16.923137pt;}
._3{width:18.390590pt;}
._2{width:20.033560pt;}
._a{width:20.968506pt;}
._9{width:22.212167pt;}
._e{width:23.545031pt;}
._19{width:24.989438pt;}
._c{width:26.137439pt;}
._15{width:27.921671pt;}
._1f{width:29.337736pt;}
._18{width:30.377580pt;}
._1a{width:31.397233pt;}
._13{width:33.234627pt;}
._12{width:34.138181pt;}
._10{width:35.284029pt;}
._21{width:36.848843pt;}
._1d{width:42.452473pt;}
._16{width:49.120012pt;}
._1e{width:90.109424pt;}
.fs15{font-size:24.825067pt;}
.fs14{font-size:24.826133pt;}
.fs17{font-size:25.490667pt;}
.fs7{font-size:26.562667pt;}
.fs11{font-size:27.439467pt;}
.fsc{font-size:27.998400pt;}
.fse{font-size:27.999467pt;}
.fs12{font-size:28.334400pt;}
.fs1a{font-size:30.106133pt;}
.fs3{font-size:31.881067pt;}
.fs9{font-size:33.648533pt;}
.fsa{font-size:35.333867pt;}
.fs13{font-size:36.585600pt;}
.fs2{font-size:37.193600pt;}
.fs16{font-size:37.562667pt;}
.fs6{font-size:39.849600pt;}
.fs10{font-size:41.814400pt;}
.fsf{font-size:42.507733pt;}
.fsb{font-size:42.665600pt;}
.fs18{font-size:42.667200pt;}
.fs19{font-size:45.163733pt;}
.fs5{font-size:47.820267pt;}
.fsd{font-size:47.998933pt;}
.fs8{font-size:50.477867pt;}
.fs0{font-size:53.133867pt;}
.fs4{font-size:58.448000pt;}
.fs1{font-size:63.760533pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:44.749600pt;}
.y1f4{bottom:88.430978pt;}
.yd0{bottom:88.438673pt;}
.y13e{bottom:88.516527pt;}
.y1a2{bottom:88.516536pt;}
.y17b{bottom:88.665473pt;}
.y231{bottom:88.818098pt;}
.y1d{bottom:89.049932pt;}
.y52{bottom:89.725568pt;}
.y88{bottom:90.103451pt;}
.y8a{bottom:90.103867pt;}
.y89{bottom:95.697600pt;}
.y1c{bottom:100.992797pt;}
.y13d{bottom:101.744933pt;}
.y1a1{bottom:101.820393pt;}
.y230{bottom:102.046556pt;}
.y50{bottom:102.198400pt;}
.y1f3{bottom:103.096060pt;}
.ycf{bottom:103.103755pt;}
.y17a{bottom:103.330555pt;}
.y4f{bottom:104.303698pt;}
.y51{bottom:104.314933pt;}
.y87{bottom:104.768533pt;}
.y1b{bottom:112.935662pt;}
.y1a0{bottom:115.048800pt;}
.y22f{bottom:115.350662pt;}
.y1f2{bottom:117.685426pt;}
.yce{bottom:117.693120pt;}
.y179{bottom:117.919920pt;}
.y4e{bottom:118.968780pt;}
.y1a{bottom:124.878527pt;}
.y86{bottom:126.614133pt;}
.y135{bottom:128.034517pt;}
.y137{bottom:128.035400pt;}
.y22e{bottom:128.654769pt;}
.y1f1{bottom:132.274791pt;}
.ycd{bottom:132.282486pt;}
.y178{bottom:132.509286pt;}
.y4d{bottom:133.558146pt;}
.y19{bottom:136.897639pt;}
.y191{bottom:140.539007pt;}
.y134{bottom:141.367517pt;}
.y22d{bottom:141.958876pt;}
.y1f0{bottom:146.864156pt;}
.ycc{bottom:146.871851pt;}
.y136{bottom:146.968400pt;}
.y177{bottom:147.174368pt;}
.y4c{bottom:148.147511pt;}
.y18{bottom:148.840504pt;}
.y190{bottom:152.298533pt;}
.y133{bottom:155.152772pt;}
.y22c{bottom:155.187333pt;}
.y192{bottom:157.264000pt;}
.y17{bottom:160.783369pt;}
.y1ef{bottom:161.529239pt;}
.ycb{bottom:161.536933pt;}
.y176{bottom:161.763733pt;}
.y4b{bottom:162.812593pt;}
.y199{bottom:163.897110pt;}
.y85{bottom:167.805815pt;}
.y22a{bottom:168.486121pt;}
.y132{bottom:169.610011pt;}
.y138{bottom:171.995067pt;}
.y22b{bottom:173.480267pt;}
.y19d{bottom:173.838400pt;}
.y19a{bottom:174.237067pt;}
.y1ee{bottom:176.118604pt;}
.y4a{bottom:177.401959pt;}
.y229{bottom:181.790227pt;}
.y84{bottom:182.470897pt;}
.y198{bottom:183.253636pt;}
.yca{bottom:183.458267pt;}
.y16{bottom:184.670029pt;}
.y19b{bottom:185.074255pt;}
.y131{bottom:186.572787pt;}
.y175{bottom:189.656667pt;}
.y1ed{bottom:190.707969pt;}
.y19e{bottom:191.870528pt;}
.y49{bottom:191.991324pt;}
.y228{bottom:195.094334pt;}
.y15{bottom:196.612894pt;}
.y83{bottom:197.060262pt;}
.y130{bottom:201.603878pt;}
.y196{bottom:203.153459pt;}
.y1ec{bottom:205.373052pt;}
.y48{bottom:206.580690pt;}
.y227{bottom:208.322792pt;}
.y14{bottom:208.632005pt;}
.y82{bottom:211.649628pt;}
.y19c{bottom:212.019600pt;}
.y12f{bottom:217.411483pt;}
.y19f{bottom:218.269782pt;}
.y1eb{bottom:219.962417pt;}
.yc9{bottom:219.966273pt;}
.y13{bottom:220.575800pt;}
.y47{bottom:221.245772pt;}
.y226{bottom:221.626898pt;}
.y197{bottom:222.232849pt;}
.y81{bottom:226.238993pt;}
.y12e{bottom:231.818589pt;}
.y12{bottom:232.519595pt;}
.y1ea{bottom:234.551782pt;}
.yc8{bottom:234.555638pt;}
.y225{bottom:234.931005pt;}
.y46{bottom:235.835137pt;}
.y174{bottom:239.470368pt;}
.y80{bottom:240.904075pt;}
.y195{bottom:241.652486pt;}
.y12d{bottom:247.501397pt;}
.y224{bottom:248.159463pt;}
.y1e9{bottom:249.216865pt;}
.yc7{bottom:249.220720pt;}
.y45{bottom:250.424503pt;}
.y171{bottom:254.058886pt;}
.y173{bottom:254.059733pt;}
.y7f{bottom:255.493441pt;}
.y139{bottom:256.142667pt;}
.y172{bottom:259.653467pt;}
.y194{bottom:261.328221pt;}
.y223{bottom:261.463569pt;}
.y12c{bottom:261.698375pt;}
.y1e8{bottom:263.806230pt;}
.yc6{bottom:263.810086pt;}
.y44{bottom:265.089585pt;}
.y11{bottom:268.349120pt;}
.y170{bottom:268.648251pt;}
.y7e{bottom:270.082806pt;}
.y222{bottom:274.767676pt;}
.y12b{bottom:278.000901pt;}
.y1e7{bottom:278.395595pt;}
.yc5{bottom:278.399451pt;}
.y13b{bottom:279.288667pt;}
.y43{bottom:279.678950pt;}
.y10{bottom:280.292915pt;}
.y193{bottom:280.721333pt;}
.y16d{bottom:283.312901pt;}
.y16f{bottom:283.313333pt;}
.y7d{bottom:284.747888pt;}
.y13a{bottom:285.659600pt;}
.y221{bottom:288.071783pt;}
.y16e{bottom:288.906933pt;}
.y13c{bottom:292.377406pt;}
.y12a{bottom:292.755732pt;}
.y1e6{bottom:293.060678pt;}
.yc2{bottom:293.062389pt;}
.yc4{bottom:293.064533pt;}
.y42{bottom:294.268316pt;}
.y16a{bottom:297.898726pt;}
.y16c{bottom:297.902267pt;}
.yf{bottom:298.283459pt;}
.yc3{bottom:298.658267pt;}
.y7c{bottom:299.337254pt;}
.y220{bottom:301.300240pt;}
.y16b{bottom:303.496000pt;}
.y1e5{bottom:307.650043pt;}
.yc1{bottom:307.651755pt;}
.y129{bottom:308.714800pt;}
.y41{bottom:308.933398pt;}
.ye{bottom:310.226324pt;}
.y169{bottom:312.488092pt;}
.y7b{bottom:313.926619pt;}
.y21f{bottom:314.604347pt;}
.yd{bottom:322.169189pt;}
.y1e4{bottom:322.239409pt;}
.yc0{bottom:322.241120pt;}
.y40{bottom:323.522763pt;}
.y14d{bottom:325.643152pt;}
.y14f{bottom:325.644000pt;}
.y168{bottom:327.153174pt;}
.y21e{bottom:327.908454pt;}
.y7a{bottom:328.591701pt;}
.y14e{bottom:331.237733pt;}
.yc{bottom:334.112054pt;}
.y1e3{bottom:336.828774pt;}
.ybf{bottom:336.830486pt;}
.y3f{bottom:338.112129pt;}
.y14c{bottom:340.232518pt;}
.y21d{bottom:341.212561pt;}
.y167{bottom:341.742539pt;}
.y79{bottom:343.181067pt;}
.yb{bottom:346.054919pt;}
.y1e2{bottom:351.493856pt;}
.ybe{bottom:351.495568pt;}
.y3e{bottom:352.701494pt;}
.y21c{bottom:354.441018pt;}
.y127{bottom:354.519600pt;}
.y149{bottom:354.894609pt;}
.y14b{bottom:354.897600pt;}
.yf7{bottom:356.106086pt;}
.y166{bottom:356.331905pt;}
.y126{bottom:356.559686pt;}
.y128{bottom:356.560533pt;}
.ya{bottom:357.997784pt;}
.y14a{bottom:360.491333pt;}
.y78{bottom:365.102267pt;}
.y1e1{bottom:366.083222pt;}
.ybc{bottom:366.084933pt;}
.y3d{bottom:367.366576pt;}
.y21b{bottom:367.745125pt;}
.y148{bottom:369.483974pt;}
.yf6{bottom:370.771168pt;}
.y165{bottom:370.996987pt;}
.y125{bottom:371.224768pt;}
.ybd{bottom:371.678667pt;}
.y1e0{bottom:380.672587pt;}
.y21a{bottom:381.049232pt;}
.y3c{bottom:381.955942pt;}
.y123{bottom:383.697467pt;}
.y147{bottom:384.073339pt;}
.yf3{bottom:385.359669pt;}
.yf5{bottom:385.360533pt;}
.y164{bottom:385.586352pt;}
.y122{bottom:385.809729pt;}
.y124{bottom:385.814133pt;}
.ybb{bottom:388.006133pt;}
.yf4{bottom:390.954267pt;}
.y77{bottom:392.692800pt;}
.y219{bottom:394.353338pt;}
.y1df{bottom:395.337669pt;}
.y3b{bottom:396.545307pt;}
.y146{bottom:398.738422pt;}
.yf2{bottom:399.949035pt;}
.y163{bottom:400.175718pt;}
.y121{bottom:400.399094pt;}
.y218{bottom:407.581796pt;}
.y1de{bottom:409.927035pt;}
.y3a{bottom:411.210389pt;}
.y145{bottom:413.327787pt;}
.yf1{bottom:414.537984pt;}
.y160{bottom:414.834817pt;}
.y162{bottom:414.840800pt;}
.y120{bottom:415.064176pt;}
.y161{bottom:420.434533pt;}
.y217{bottom:420.885903pt;}
.y1dd{bottom:422.399867pt;}
.y1dc{bottom:424.505597pt;}
.yb8{bottom:424.515552pt;}
.yba{bottom:424.516400pt;}
.y39{bottom:425.799755pt;}
.y144{bottom:427.917152pt;}
.yee{bottom:429.202203pt;}
.yf0{bottom:429.203067pt;}
.y15f{bottom:429.424182pt;}
.y11f{bottom:429.653542pt;}
.yb9{bottom:430.110133pt;}
.y216{bottom:434.190009pt;}
.yef{bottom:434.796800pt;}
.y76{bottom:439.165976pt;}
.y1db{bottom:439.170679pt;}
.yb7{bottom:439.180635pt;}
.y38{bottom:440.389120pt;}
.y143{bottom:442.582235pt;}
.yed{bottom:443.791568pt;}
.y15e{bottom:444.013548pt;}
.y11e{bottom:444.242907pt;}
.y215{bottom:447.418467pt;}
.y75{bottom:453.755341pt;}
.y1da{bottom:453.760045pt;}
.yb6{bottom:453.769568pt;}
.y37{bottom:455.054203pt;}
.y140{bottom:457.171168pt;}
.y142{bottom:457.171600pt;}
.yea{bottom:458.378374pt;}
.yec{bottom:458.380933pt;}
.y15d{bottom:458.602913pt;}
.y11d{bottom:458.907989pt;}
.y214{bottom:460.722574pt;}
.y141{bottom:462.765200pt;}
.yeb{bottom:464.050267pt;}
.y74{bottom:468.344707pt;}
.y1d9{bottom:468.349410pt;}
.yb3{bottom:468.358501pt;}
.yb5{bottom:468.358933pt;}
.y36{bottom:469.643568pt;}
.y13f{bottom:471.760533pt;}
.ye9{bottom:473.043456pt;}
.y15c{bottom:473.267995pt;}
.y11c{bottom:473.497355pt;}
.yb4{bottom:473.952667pt;}
.y213{bottom:474.026680pt;}
.y73{bottom:482.934072pt;}
.y1d8{bottom:482.938775pt;}
.yb2{bottom:482.947019pt;}
.y35{bottom:484.232933pt;}
.y212{bottom:487.330787pt;}
.ye8{bottom:487.632822pt;}
.y15b{bottom:487.857361pt;}
.y11b{bottom:488.086720pt;}
.y72{bottom:497.599154pt;}
.y1d7{bottom:497.603858pt;}
.yb1{bottom:497.612101pt;}
.y211{bottom:500.559245pt;}
.ye7{bottom:502.222187pt;}
.y15a{bottom:502.446726pt;}
.y11a{bottom:502.676086pt;}
.y34{bottom:512.125867pt;}
.y71{bottom:512.188520pt;}
.y1d6{bottom:512.193223pt;}
.yb0{bottom:512.201035pt;}
.y210{bottom:513.863351pt;}
.y18f{bottom:515.225209pt;}
.ye6{bottom:516.887269pt;}
.y159{bottom:517.111809pt;}
.y119{bottom:517.341168pt;}
.y18d{bottom:526.714800pt;}
.y70{bottom:526.777885pt;}
.y1d5{bottom:526.782588pt;}
.yae{bottom:526.790400pt;}
.y20f{bottom:527.167458pt;}
.y18e{bottom:528.529067pt;}
.y18c{bottom:528.529069pt;}
.ye5{bottom:531.476635pt;}
.y158{bottom:531.701174pt;}
.y118{bottom:531.930533pt;}
.yaf{bottom:532.459733pt;}
.y20e{bottom:540.471565pt;}
.y6f{bottom:541.442967pt;}
.y1d4{bottom:541.447671pt;}
.y18b{bottom:541.757475pt;}
.ye4{bottom:546.066000pt;}
.y157{bottom:546.290539pt;}
.yad{bottom:548.711733pt;}
.y20d{bottom:553.700022pt;}
.y117{bottom:553.852212pt;}
.y33{bottom:554.683330pt;}
.y18a{bottom:555.061333pt;}
.y6e{bottom:556.032333pt;}
.y1d3{bottom:556.037036pt;}
.y156{bottom:560.955622pt;}
.y20c{bottom:567.004129pt;}
.ye3{bottom:567.987546pt;}
.y32{bottom:569.272268pt;}
.y116{bottom:569.801467pt;}
.y6d{bottom:570.621698pt;}
.y1d2{bottom:570.626401pt;}
.y155{bottom:575.544987pt;}
.y20b{bottom:580.308236pt;}
.y187{bottom:580.771067pt;}
.y31{bottom:583.861207pt;}
.ye2{bottom:583.936800pt;}
.y6c{bottom:585.286780pt;}
.y1d1{bottom:585.291484pt;}
.yac{bottom:585.295888pt;}
.y154{bottom:590.134352pt;}
.y20a{bottom:593.536693pt;}
.y188{bottom:596.748349pt;}
.y30{bottom:598.525860pt;}
.y6b{bottom:599.876146pt;}
.y1d0{bottom:599.880849pt;}
.yab{bottom:599.885254pt;}
.y153{bottom:604.723718pt;}
.y115{bottom:606.309888pt;}
.y209{bottom:606.840800pt;}
.ye1{bottom:611.829733pt;}
.y2f{bottom:613.114798pt;}
.y6a{bottom:614.465511pt;}
.y1cf{bottom:614.470215pt;}
.yaa{bottom:614.474619pt;}
.y152{bottom:619.388800pt;}
.y114{bottom:620.899254pt;}
.y2e{bottom:627.703737pt;}
.y69{bottom:629.130593pt;}
.y1ce{bottom:629.135297pt;}
.ya9{bottom:629.139701pt;}
.y208{bottom:635.111600pt;}
.y113{bottom:635.564336pt;}
.y151{bottom:641.310479pt;}
.y2d{bottom:642.292675pt;}
.y68{bottom:643.719959pt;}
.y1cd{bottom:643.724662pt;}
.ya8{bottom:643.728635pt;}
.y112{bottom:650.153701pt;}
.y2c{bottom:656.957328pt;}
.y150{bottom:657.259733pt;}
.y67{bottom:658.309324pt;}
.ye0{bottom:658.313595pt;}
.y1cc{bottom:658.314028pt;}
.ya5{bottom:658.316720pt;}
.ya7{bottom:658.318000pt;}
.ya6{bottom:663.911600pt;}
.y10f{bottom:664.742651pt;}
.y111{bottom:664.743067pt;}
.y110{bottom:670.412400pt;}
.y29{bottom:671.546261pt;}
.y2b{bottom:671.546267pt;}
.y185{bottom:672.595822pt;}
.y66{bottom:672.898690pt;}
.ydf{bottom:672.902961pt;}
.y1cb{bottom:672.903393pt;}
.ya4{bottom:672.906086pt;}
.y2a{bottom:676.006133pt;}
.y10c{bottom:679.407301pt;}
.y10e{bottom:679.407733pt;}
.y184{bottom:683.557467pt;}
.y27{bottom:684.472267pt;}
.y10d{bottom:685.001333pt;}
.y28{bottom:686.135200pt;}
.y26{bottom:686.135209pt;}
.y207{bottom:687.554039pt;}
.y65{bottom:687.563772pt;}
.yde{bottom:687.568043pt;}
.y1ca{bottom:687.568475pt;}
.ya3{bottom:687.571168pt;}
.y186{bottom:689.045600pt;}
.y109{bottom:693.990135pt;}
.y10b{bottom:693.996667pt;}
.y10a{bottom:699.590400pt;}
.y25{bottom:700.799861pt;}
.y206{bottom:702.143405pt;}
.y64{bottom:702.153137pt;}
.ydd{bottom:702.157409pt;}
.y1c9{bottom:702.157841pt;}
.ya0{bottom:702.159120pt;}
.ya2{bottom:702.160533pt;}
.y1b8{bottom:704.352536pt;}
.ya1{bottom:707.754133pt;}
.y108{bottom:708.579500pt;}
.y24{bottom:713.725867pt;}
.y23{bottom:715.388800pt;}
.y205{bottom:716.732770pt;}
.y63{bottom:716.742503pt;}
.ydc{bottom:716.746774pt;}
.y1c8{bottom:716.747206pt;}
.y9f{bottom:716.748486pt;}
.y1b7{bottom:717.656393pt;}
.y107{bottom:723.244582pt;}
.y1b6{bottom:730.884800pt;}
.y204{bottom:731.397852pt;}
.y62{bottom:731.407585pt;}
.ydb{bottom:731.411856pt;}
.y1c7{bottom:731.412288pt;}
.y9e{bottom:731.413568pt;}
.y106{bottom:737.833948pt;}
.y253{bottom:738.967235pt;}
.y242{bottom:738.970622pt;}
.y22{bottom:744.642400pt;}
.y203{bottom:745.987218pt;}
.y61{bottom:745.996950pt;}
.yda{bottom:746.001222pt;}
.y1c6{bottom:746.001654pt;}
.y9d{bottom:746.002635pt;}
.y252{bottom:752.271342pt;}
.y241{bottom:752.274729pt;}
.y105{bottom:752.423313pt;}
.y182{bottom:755.007422pt;}
.y1af{bottom:757.330490pt;}
.y1ad{bottom:757.331369pt;}
.y202{bottom:760.576583pt;}
.y60{bottom:760.586316pt;}
.yd9{bottom:760.590587pt;}
.y1c5{bottom:760.591019pt;}
.y9c{bottom:760.592000pt;}
.y251{bottom:765.499799pt;}
.y240{bottom:765.503187pt;}
.y181{bottom:765.969067pt;}
.y104{bottom:767.088395pt;}
.y1ac{bottom:770.092346pt;}
.y189{bottom:770.215333pt;}
.y183{bottom:771.457200pt;}
.y1ae{bottom:775.190000pt;}
.y201{bottom:775.241665pt;}
.y5f{bottom:775.251398pt;}
.yd8{bottom:775.255669pt;}
.y1c4{bottom:775.256101pt;}
.y250{bottom:778.803906pt;}
.y23f{bottom:778.807293pt;}
.y1ab{bottom:781.178028pt;}
.y103{bottom:781.677761pt;}
.y9b{bottom:782.513200pt;}
.y200{bottom:789.831031pt;}
.y5e{bottom:789.840763pt;}
.y1c1{bottom:789.842475pt;}
.yd7{bottom:789.845035pt;}
.y1c3{bottom:789.845467pt;}
.y24f{bottom:792.108013pt;}
.y23e{bottom:792.111400pt;}
.y1c2{bottom:795.439067pt;}
.y21{bottom:795.741600pt;}
.y102{bottom:796.267126pt;}
.y17f{bottom:801.859085pt;}
.y1aa{bottom:802.795343pt;}
.y1ff{bottom:804.420396pt;}
.y5d{bottom:804.430129pt;}
.y1c0{bottom:804.431841pt;}
.yd6{bottom:804.434400pt;}
.y24e{bottom:805.412120pt;}
.y23d{bottom:805.415507pt;}
.y101{bottom:810.856492pt;}
.y17e{bottom:812.820730pt;}
.y180{bottom:818.309067pt;}
.y24d{bottom:818.640577pt;}
.y23c{bottom:818.643964pt;}
.y1fe{bottom:819.085478pt;}
.y5c{bottom:819.095211pt;}
.y1bf{bottom:819.096923pt;}
.y9a{bottom:819.098635pt;}
.y1a9{bottom:824.048299pt;}
.y100{bottom:825.521574pt;}
.y1b0{bottom:825.702667pt;}
.yd5{bottom:826.355733pt;}
.y24c{bottom:831.944684pt;}
.y23b{bottom:831.948071pt;}
.y20{bottom:832.251903pt;}
.y1fd{bottom:833.674844pt;}
.y5b{bottom:833.684576pt;}
.y1be{bottom:833.686288pt;}
.y99{bottom:833.687136pt;}
.yff{bottom:840.110939pt;}
.y24b{bottom:845.248791pt;}
.y23a{bottom:845.252178pt;}
.y1a8{bottom:845.783936pt;}
.y1fc{bottom:848.264209pt;}
.y5a{bottom:848.273942pt;}
.y1bd{bottom:848.275654pt;}
.y98{bottom:848.276501pt;}
.yfe{bottom:854.700305pt;}
.y1f{bottom:854.853418pt;}
.y24a{bottom:858.477248pt;}
.y239{bottom:858.480635pt;}
.y1b5{bottom:861.288534pt;}
.y9{bottom:861.507073pt;}
.y1fb{bottom:862.853575pt;}
.y59{bottom:862.863307pt;}
.y95{bottom:862.865019pt;}
.yd4{bottom:862.865318pt;}
.y97{bottom:862.865867pt;}
.y1a7{bottom:866.357948pt;}
.y96{bottom:868.535200pt;}
.yfd{bottom:869.365387pt;}
.y249{bottom:871.781355pt;}
.y238{bottom:871.784742pt;}
.y8{bottom:873.449938pt;}
.y17d{bottom:875.266355pt;}
.y1b4{bottom:876.228146pt;}
.y1b1{bottom:876.318267pt;}
.y1e{bottom:877.454933pt;}
.y1fa{bottom:877.518657pt;}
.y58{bottom:877.528389pt;}
.y94{bottom:877.530101pt;}
.yd3{bottom:877.530400pt;}
.yd2{bottom:883.124133pt;}
.yfc{bottom:883.954752pt;}
.y248{bottom:885.085462pt;}
.y237{bottom:885.088849pt;}
.y7{bottom:885.392803pt;}
.y17c{bottom:886.228000pt;}
.y1a6{bottom:887.470045pt;}
.y1b3{bottom:889.984533pt;}
.y1bc{bottom:890.002933pt;}
.y1f9{bottom:892.108022pt;}
.y57{bottom:892.117755pt;}
.y1bb{bottom:892.118619pt;}
.y91{bottom:892.119168pt;}
.y93{bottom:892.119467pt;}
.y6{bottom:897.335668pt;}
.y92{bottom:897.713200pt;}
.y247{bottom:898.389568pt;}
.y236{bottom:898.392956pt;}
.yfb{bottom:898.544118pt;}
.y1b2{bottom:902.284000pt;}
.y1f8{bottom:906.697388pt;}
.y56{bottom:906.707120pt;}
.y90{bottom:906.707984pt;}
.y1a5{bottom:909.052614pt;}
.y5{bottom:910.639200pt;}
.y246{bottom:911.618026pt;}
.y235{bottom:911.621413pt;}
.yfa{bottom:913.209200pt;}
.y1ba{bottom:919.256533pt;}
.y4{bottom:921.221867pt;}
.y1f7{bottom:921.362470pt;}
.y8d{bottom:921.372113pt;}
.y55{bottom:921.372203pt;}
.y8f{bottom:921.373067pt;}
.y245{bottom:924.922133pt;}
.y234{bottom:924.925520pt;}
.y8e{bottom:926.966667pt;}
.y1a4{bottom:930.539398pt;}
.yf9{bottom:935.130596pt;}
.y1f6{bottom:935.951835pt;}
.y8c{bottom:935.961478pt;}
.y54{bottom:935.961568pt;}
.y244{bottom:938.226239pt;}
.y233{bottom:938.229627pt;}
.y1b9{bottom:948.434400pt;}
.y1f5{bottom:950.541201pt;}
.y8b{bottom:950.550844pt;}
.y53{bottom:950.550933pt;}
.yf8{bottom:951.004533pt;}
.y243{bottom:951.530346pt;}
.y232{bottom:951.533733pt;}
.y1a3{bottom:951.559467pt;}
.y2{bottom:977.763467pt;}
.yd1{bottom:990.462667pt;}
.y3{bottom:1021.152510pt;}
.h21{height:17.066880pt;}
.h1e{height:18.767750pt;}
.h1d{height:18.768557pt;}
.h15{height:19.199573pt;}
.h20{height:19.270944pt;}
.h9{height:20.240752pt;}
.h1b{height:20.259096pt;}
.h1a{height:20.744237pt;}
.h14{height:21.166790pt;}
.h16{height:21.167597pt;}
.h24{height:21.525885pt;}
.h4{height:22.898857pt;}
.hb{height:24.058701pt;}
.h1c{height:27.658714pt;}
.h3{height:28.341523pt;}
.h1f{height:28.397376pt;}
.h8{height:30.365395pt;}
.h18{height:30.393029pt;}
.h19{height:31.611686pt;}
.h13{height:32.255194pt;}
.h22{height:32.292069pt;}
.h23{height:32.337233pt;}
.h17{height:32.390893pt;}
.ha{height:36.091675pt;}
.h11{height:36.095065pt;}
.h7{height:36.439043pt;}
.h1{height:40.488006pt;}
.h10{height:41.675417pt;}
.he{height:41.677145pt;}
.hf{height:41.977817pt;}
.hd{height:41.978284pt;}
.h12{height:41.985665pt;}
.hc{height:41.997097pt;}
.h6{height:44.537376pt;}
.h5{height:47.820400pt;}
.h2{height:48.585526pt;}
.h0{height:1040.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:63.798400pt;}
.x39{left:70.450400pt;}
.x85{left:79.672019pt;}
.x16{left:92.296000pt;}
.x18{left:99.023600pt;}
.x66{left:102.803200pt;}
.x71{left:104.836933pt;}
.x65{left:105.744000pt;}
.x17{left:108.245744pt;}
.x73{left:112.939333pt;}
.x67{left:113.839333pt;}
.x86{left:116.031467pt;}
.x72{left:117.903796pt;}
.x6e{left:120.817733pt;}
.x6f{left:125.903132pt;}
.x70{left:130.988530pt;}
.x87{left:134.778000pt;}
.x57{left:144.604667pt;}
.x59{left:159.269333pt;}
.x58{left:160.403067pt;}
.x68{left:167.347733pt;}
.x54{left:175.133867pt;}
.x53{left:180.729867pt;}
.x3c{left:186.859867pt;}
.x3d{left:193.738533pt;}
.x4a{left:199.321600pt;}
.x4b{left:200.697566pt;}
.x82{left:201.826800pt;}
.x64{left:205.254667pt;}
.x69{left:209.245562pt;}
.x19{left:210.519600pt;}
.x3e{left:212.485067pt;}
.x4c{left:213.966567pt;}
.x3f{left:224.503867pt;}
.x1a{left:228.359067pt;}
.x76{left:234.867741pt;}
.x5{left:239.092933pt;}
.x4e{left:240.904560pt;}
.x84{left:243.855067pt;}
.xe{left:245.744800pt;}
.xf{left:255.042677pt;}
.x6a{left:257.936400pt;}
.x83{left:265.549600pt;}
.x4d{left:266.685249pt;}
.x35{left:270.311733pt;}
.x6b{left:273.972321pt;}
.x37{left:280.818800pt;}
.x36{left:282.330667pt;}
.x40{left:284.447200pt;}
.x38{left:292.837733pt;}
.x75{left:299.594984pt;}
.x41{left:302.362133pt;}
.x56{left:304.554267pt;}
.x3a{left:313.776267pt;}
.x33{left:316.270800pt;}
.x6c{left:318.849067pt;}
.x3b{left:330.708533pt;}
.x34{left:332.976267pt;}
.x4f{left:333.883569pt;}
.x10{left:336.529067pt;}
.x6d{left:337.816220pt;}
.x61{left:338.791867pt;}
.x11{left:345.977867pt;}
.x12{left:356.333733pt;}
.x60{left:358.405200pt;}
.x55{left:362.445067pt;}
.x74{left:363.439600pt;}
.x13{left:365.858133pt;}
.x62{left:384.708800pt;}
.x14{left:385.965200pt;}
.x63{left:387.614933pt;}
.x42{left:390.500667pt;}
.x15{left:395.414133pt;}
.x89{left:397.152667pt;}
.x8a{left:401.839022pt;}
.x88{left:406.450769pt;}
.x1b{left:419.074543pt;}
.x50{left:424.931611pt;}
.x80{left:426.343067pt;}
.x8b{left:430.412343pt;}
.x7f{left:431.439067pt;}
.x77{left:442.459067pt;}
.x78{left:447.680277pt;}
.x7a{left:463.074397pt;}
.x29{left:466.015600pt;}
.x2a{left:472.818800pt;}
.x51{left:477.551867pt;}
.x79{left:485.771639pt;}
.x2d{left:490.355733pt;}
.x2b{left:491.640933pt;}
.x2e{left:498.897600pt;}
.x2c{left:503.659733pt;}
.x5a{left:505.927467pt;}
.x31{left:513.637733pt;}
.x23{left:516.132133pt;}
.x5b{left:521.952667pt;}
.x2{left:523.388800pt;}
.x32{left:525.958933pt;}
.x24{left:528.604667pt;}
.x7c{left:530.056144pt;}
.x7b{left:531.256272pt;}
.x47{left:547.124267pt;}
.x81{left:556.364800pt;}
.x48{left:558.160533pt;}
.x52{left:572.277333pt;}
.x2f{left:577.511733pt;}
.x7d{left:580.039333pt;}
.x30{left:585.902267pt;}
.xd{left:596.938400pt;}
.x43{left:601.549467pt;}
.x5c{left:605.782533pt;}
.x6{left:609.410933pt;}
.xc{left:613.114800pt;}
.x5e{left:616.138400pt;}
.x7{left:617.574667pt;}
.x5d{left:622.866000pt;}
.x8{left:624.226667pt;}
.x9{left:632.466000pt;}
.x5f{left:634.128933pt;}
.x44{left:643.124267pt;}
.xa{left:646.299067pt;}
.x26{left:652.044000pt;}
.xb{left:654.462800pt;}
.x3{left:658.317247pt;}
.x27{left:664.062800pt;}
.x1c{left:665.499067pt;}
.x22{left:670.941600pt;}
.x1d{left:672.302267pt;}
.x49{left:675.628133pt;}
.x28{left:680.012400pt;}
.x45{left:686.059600pt;}
.x1e{left:691.124267pt;}
.x1{left:694.903867pt;}
.x46{left:697.927467pt;}
.x20{left:699.590267pt;}
.x1f{left:703.143200pt;}
.x21{left:707.225067pt;}
.x7e{left:713.058533pt;}
.x25{left:719.546267pt;}
}




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