
    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_4f2e6f68bc007e97cf2ae27b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_1d77627635fe985393988d6d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.136719;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_0bc1c0a9c91b2fd3e204beb2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.188000;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_a48faa8219487f191488f673.woff')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_7b0235e8e559f4b0c59bdb7d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.804000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1029b85cab2bdb8e1f45f567.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_76b339f9fbac6e0d830c54a5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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_f244104bcee5e8d80c9f361f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.109863;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_8cdbb72a048b9eeb031fa44a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_757ef6e3381ccc125516913a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_e61492c831a62c82526c4a6c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.578000;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_1794f65db55d95e7c6c92355.woff')format("woff");}.ffc{font-family:ffc;line-height:0.883000;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;}
.m4{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m5{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,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.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-7.139873px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.379486px;}
.v1{vertical-align:3.738382px;}
.v8{vertical-align:12.588127px;}
.v5{vertical-align:13.942759px;}
.v3{vertical-align:15.633274px;}
.v4{vertical-align:17.339607px;}
.v9{vertical-align:32.652190px;}
.v6{vertical-align:41.157233px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.124808px;}
.ls13{letter-spacing:0.143638px;}
.ls0{letter-spacing:1.651467px;}
.ls2e{letter-spacing:2.649600px;}
.ls29{letter-spacing:2.652000px;}
.ls2b{letter-spacing:2.652600px;}
.ls8{letter-spacing:2.655600px;}
.ls11{letter-spacing:2.824500px;}
.ls1a{letter-spacing:2.936700px;}
.ls20{letter-spacing:2.937900px;}
.ls1f{letter-spacing:2.938500px;}
.ls1e{letter-spacing:2.942700px;}
.ls2c{letter-spacing:2.967000px;}
.ls6{letter-spacing:2.991600px;}
.ls23{letter-spacing:2.992800px;}
.ls2f{letter-spacing:2.997600px;}
.ls16{letter-spacing:3.166500px;}
.ls2d{letter-spacing:3.278700px;}
.ls2{letter-spacing:3.309000px;}
.ls18{letter-spacing:7.730593px;}
.ls1b{letter-spacing:7.737373px;}
.ls17{letter-spacing:7.966912px;}
.lsc{letter-spacing:8.076899px;}
.ls12{letter-spacing:8.081681px;}
.ls30{letter-spacing:9.779313px;}
.ls3a{letter-spacing:9.785731px;}
.ls31{letter-spacing:10.506186px;}
.ls39{letter-spacing:10.715338px;}
.lsb{letter-spacing:11.361854px;}
.ls22{letter-spacing:11.694676px;}
.ls21{letter-spacing:11.702327px;}
.ls3b{letter-spacing:12.505690px;}
.ls10{letter-spacing:13.179357px;}
.ls9{letter-spacing:13.313255px;}
.lsf{letter-spacing:13.361076px;}
.ls35{letter-spacing:14.159680px;}
.ls34{letter-spacing:14.188372px;}
.ls25{letter-spacing:14.197936px;}
.lsa{letter-spacing:14.504700px;}
.ls5{letter-spacing:16.823287px;}
.ls36{letter-spacing:16.904582px;}
.ls38{letter-spacing:16.909364px;}
.ls2a{letter-spacing:16.918928px;}
.ls37{letter-spacing:17.220198px;}
.ls24{letter-spacing:17.602763px;}
.ls4{letter-spacing:17.841866px;}
.lse{letter-spacing:18.137161px;}
.ls1{letter-spacing:19.038201px;}
.ls33{letter-spacing:19.262138px;}
.ls32{letter-spacing:19.290830px;}
.ls27{letter-spacing:19.690054px;}
.ls26{letter-spacing:20.026702px;}
.ls28{letter-spacing:20.030527px;}
.ls7{letter-spacing:24.780635px;}
.ls15{letter-spacing:25.086687px;}
.ls14{letter-spacing:25.263623px;}
.ls1c{letter-spacing:35.329859px;}
.ls19{letter-spacing:41.413938px;}
.ls1d{letter-spacing:250.924820px;}
.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;}
}
.ws165{word-spacing:-273.074696px;}
.wsc8{word-spacing:-47.820600px;}
.ws1e3{word-spacing:-38.255400px;}
.ws104{word-spacing:-37.204427px;}
.ws113{word-spacing:-31.083000px;}
.ws10f{word-spacing:-30.844287px;}
.wsf{word-spacing:-29.310461px;}
.ws40{word-spacing:-27.688127px;}
.ws7d{word-spacing:-24.919002px;}
.ws177{word-spacing:-24.674733px;}
.ws8{word-spacing:-24.455223px;}
.ws2{word-spacing:-24.230394px;}
.ws25a{word-spacing:-22.657400px;}
.wsfb{word-spacing:-22.465836px;}
.ws25d{word-spacing:-22.274835px;}
.wsf8{word-spacing:-22.149877px;}
.ws253{word-spacing:-21.045846px;}
.ws264{word-spacing:-21.041064px;}
.ws26b{word-spacing:-20.787615px;}
.ws37{word-spacing:-20.695300px;}
.ws16a{word-spacing:-20.425835px;}
.wsfa{word-spacing:-20.262290px;}
.ws3{word-spacing:-20.109692px;}
.wse1{word-spacing:-20.085835px;}
.ws111{word-spacing:-20.048535px;}
.ws4{word-spacing:-19.980577px;}
.ws25e{word-spacing:-19.797728px;}
.ws5{word-spacing:-19.794974px;}
.ws262{word-spacing:-19.721215px;}
.ws261{word-spacing:-19.682959px;}
.wsb6{word-spacing:-18.919505px;}
.wsdf{word-spacing:-18.579505px;}
.ws21c{word-spacing:-18.339200px;}
.ws8f{word-spacing:-18.305726px;}
.ws11d{word-spacing:-18.296162px;}
.ws1ac{word-spacing:-18.267469px;}
.ws11c{word-spacing:-18.233995px;}
.wsb2{word-spacing:-18.224431px;}
.ws59{word-spacing:-18.143136px;}
.ws227{word-spacing:-18.133572px;}
.wsa4{word-spacing:-18.124007px;}
.ws109{word-spacing:-18.109661px;}
.wsfc{word-spacing:-18.106281px;}
.wscf{word-spacing:-18.104879px;}
.wsf7{word-spacing:-18.094804px;}
.wse7{word-spacing:-18.090979px;}
.ws58{word-spacing:-18.090533px;}
.ws10b{word-spacing:-18.080969px;}
.ws21b{word-spacing:-18.076187px;}
.wsf3{word-spacing:-18.048898px;}
.ws244{word-spacing:-18.018802px;}
.ws197{word-spacing:-18.014020px;}
.ws4f{word-spacing:-18.009238px;}
.ws110{word-spacing:-17.997057px;}
.wsce{word-spacing:-17.975764px;}
.ws57{word-spacing:-17.956635px;}
.ws3e{word-spacing:-17.951853px;}
.wsa5{word-spacing:-17.927943px;}
.ws107{word-spacing:-17.918379px;}
.ws99{word-spacing:-17.884904px;}
.ws98{word-spacing:-17.875340px;}
.wsf5{word-spacing:-17.869097px;}
.ws221{word-spacing:-17.865776px;}
.ws1cb{word-spacing:-17.860994px;}
.ws207{word-spacing:-17.846648px;}
.wscd{word-spacing:-17.827520px;}
.wsd1{word-spacing:-17.822738px;}
.ws82{word-spacing:-17.789263px;}
.ws108{word-spacing:-17.770135px;}
.ws10a{word-spacing:-17.765353px;}
.ws232{word-spacing:-17.760571px;}
.ws254{word-spacing:-17.751007px;}
.ws1b4{word-spacing:-17.746225px;}
.wsae{word-spacing:-17.674494px;}
.ws10c{word-spacing:-17.660148px;}
.ws1cc{word-spacing:-17.631455px;}
.wsc2{word-spacing:-17.612327px;}
.ws182{word-spacing:-17.588417px;}
.wsa2{word-spacing:-17.559724px;}
.ws209{word-spacing:-17.526250px;}
.wsa3{word-spacing:-17.487993px;}
.ws219{word-spacing:-17.444955px;}
.ws21d{word-spacing:-17.387570px;}
.ws21e{word-spacing:-17.349314px;}
.ws4b{word-spacing:-17.344532px;}
.ws24f{word-spacing:-17.339750px;}
.ws1d5{word-spacing:-17.320621px;}
.wsde{word-spacing:-17.315839px;}
.ws223{word-spacing:-17.296711px;}
.ws1ad{word-spacing:-17.287147px;}
.ws1f2{word-spacing:-17.282365px;}
.ws68{word-spacing:-17.272801px;}
.ws21f{word-spacing:-17.268019px;}
.ws231{word-spacing:-17.241715px;}
.ws188{word-spacing:-17.234544px;}
.ws121{word-spacing:-17.220198px;}
.ws196{word-spacing:-17.210634px;}
.ws127{word-spacing:-17.205852px;}
.ws20e{word-spacing:-17.201070px;}
.ws195{word-spacing:-17.196288px;}
.ws1d4{word-spacing:-17.181942px;}
.ws6c{word-spacing:-17.119775px;}
.ws66{word-spacing:-17.105429px;}
.ws20d{word-spacing:-17.086300px;}
.ws67{word-spacing:-17.081518px;}
.ws1f1{word-spacing:-17.071954px;}
.wsb3{word-spacing:-17.005005px;}
.ws126{word-spacing:-16.995441px;}
.ws125{word-spacing:-16.990659px;}
.ws4c{word-spacing:-16.942839px;}
.ws6b{word-spacing:-16.938057px;}
.ws10d{word-spacing:-16.933274px;}
.wsbd{word-spacing:-16.909364px;}
.ws124{word-spacing:-16.899800px;}
.ws85{word-spacing:-16.895018px;}
.ws7a{word-spacing:-16.879504px;}
.ws13f{word-spacing:-16.871108px;}
.ws1d0{word-spacing:-16.842415px;}
.ws266{word-spacing:-16.751556px;}
.ws1d1{word-spacing:-16.741992px;}
.ws47{word-spacing:-16.698954px;}
.ws148{word-spacing:-16.684607px;}
.ws9a{word-spacing:-16.670261px;}
.ws48{word-spacing:-16.655915px;}
.ws1f4{word-spacing:-16.651133px;}
.ws86{word-spacing:-16.636787px;}
.ws22f{word-spacing:-16.612876px;}
.ws65{word-spacing:-16.593748px;}
.ws147{word-spacing:-16.588966px;}
.ws210{word-spacing:-16.588720px;}
.ws143{word-spacing:-16.569838px;}
.ws1ff{word-spacing:-16.565056px;}
.ws187{word-spacing:-16.555492px;}
.ws1f3{word-spacing:-16.522017px;}
.ws202{word-spacing:-16.517235px;}
.ws1c2{word-spacing:-16.435940px;}
.ws212{word-spacing:-16.407248px;}
.ws1c3{word-spacing:-16.397684px;}
.ws213{word-spacing:-16.388120px;}
.ws226{word-spacing:-16.354645px;}
.ws14b{word-spacing:-16.316389px;}
.ws151{word-spacing:-16.311607px;}
.wsa7{word-spacing:-16.306825px;}
.ws211{word-spacing:-16.297260px;}
.ws191{word-spacing:-16.254222px;}
.wsbb{word-spacing:-16.230312px;}
.ws20f{word-spacing:-16.215965px;}
.ws153{word-spacing:-16.177709px;}
.ws201{word-spacing:-16.172927px;}
.ws200{word-spacing:-16.088926px;}
.ws251{word-spacing:-16.067722px;}
.ws1ef{word-spacing:-16.062940px;}
.ws146{word-spacing:-16.048593px;}
.ws94{word-spacing:-15.991209px;}
.ws1b0{word-spacing:-15.972080px;}
.ws15c{word-spacing:-15.957734px;}
.ws15d{word-spacing:-15.933824px;}
.ws17d{word-spacing:-15.929042px;}
.wsbc{word-spacing:-15.914696px;}
.ws95{word-spacing:-15.909914px;}
.ws1bb{word-spacing:-15.895567px;}
.ws1c7{word-spacing:-15.890785px;}
.ws114{word-spacing:-15.881221px;}
.ws1af{word-spacing:-15.833401px;}
.ws10e{word-spacing:-15.780798px;}
.ws15b{word-spacing:-15.776016px;}
.ws6{word-spacing:-15.732884px;}
.ws1c8{word-spacing:-15.723413px;}
.ws15e{word-spacing:-15.713849px;}
.ws15a{word-spacing:-15.685157px;}
.ws249{word-spacing:-15.666029px;}
.ws7{word-spacing:-15.656849px;}
.ws90{word-spacing:-15.651682px;}
.ws248{word-spacing:-15.632554px;}
.ws160{word-spacing:-15.622990px;}
.ws9e{word-spacing:-15.618208px;}
.ws6a{word-spacing:-15.575169px;}
.ws14d{word-spacing:-15.570387px;}
.ws14c{word-spacing:-15.560823px;}
.ws17e{word-spacing:-15.536913px;}
.ws22b{word-spacing:-15.513003px;}
.ws9{word-spacing:-15.504779px;}
.ws1b5{word-spacing:-15.493874px;}
.ws190{word-spacing:-15.407797px;}
.ws117{word-spacing:-15.383887px;}
.ws235{word-spacing:-15.369541px;}
.ws118{word-spacing:-15.312156px;}
.ws1ea{word-spacing:-15.297810px;}
.ws73{word-spacing:-15.293028px;}
.ws75{word-spacing:-15.278682px;}
.ws119{word-spacing:-15.254771px;}
.ws1b6{word-spacing:-15.230861px;}
.ws220{word-spacing:-15.206951px;}
.ws22a{word-spacing:-15.202169px;}
.ws1bc{word-spacing:-15.192605px;}
.ws14f{word-spacing:-15.168694px;}
.wsab{word-spacing:-15.077835px;}
.wsc7{word-spacing:-15.030015px;}
.ws243{word-spacing:-15.006104px;}
.ws150{word-spacing:-14.967848px;}
.ws97{word-spacing:-14.963066px;}
.wsaa{word-spacing:-14.953502px;}
.ws217{word-spacing:-14.939155px;}
.ws218{word-spacing:-14.934373px;}
.ws106{word-spacing:-14.915245px;}
.ws103{word-spacing:-14.900899px;}
.ws15f{word-spacing:-14.891335px;}
.ws83{word-spacing:-14.867425px;}
.ws205{word-spacing:-14.853145px;}
.ws203{word-spacing:-14.853078px;}
.ws105{word-spacing:-14.838732px;}
.wsa0{word-spacing:-14.829168px;}
.ws1fc{word-spacing:-14.814822px;}
.wsd2{word-spacing:-14.709617px;}
.ws239{word-spacing:-14.704834px;}
.ws8e{word-spacing:-14.700052px;}
.wsd3{word-spacing:-14.661796px;}
.wsd4{word-spacing:-14.623539px;}
.ws12a{word-spacing:-14.609193px;}
.ws1b9{word-spacing:-14.599629px;}
.wsa1{word-spacing:-14.594847px;}
.ws14e{word-spacing:-14.551809px;}
.ws129{word-spacing:-14.527898px;}
.ws1b7{word-spacing:-14.523116px;}
.ws234{word-spacing:-14.508770px;}
.ws23a{word-spacing:-14.480078px;}
.ws204{word-spacing:-14.475296px;}
.ws1f6{word-spacing:-14.470514px;}
.ws265{word-spacing:-14.370090px;}
.ws1a{word-spacing:-14.366084px;}
.wsc6{word-spacing:-14.365308px;}
.ws4a{word-spacing:-14.350962px;}
.ws19b{word-spacing:-14.274449px;}
.ws19a{word-spacing:-14.269667px;}
.ws20a{word-spacing:-14.231411px;}
.ws185{word-spacing:-14.212282px;}
.ws13d{word-spacing:-14.197936px;}
.ws230{word-spacing:-14.188372px;}
.ws186{word-spacing:-14.183590px;}
.ws17f{word-spacing:-14.174026px;}
.ws198{word-spacing:-14.169244px;}
.ws89{word-spacing:-14.159680px;}
.ws142{word-spacing:-14.154898px;}
.ws20b{word-spacing:-14.145333px;}
.ws1b8{word-spacing:-14.130987px;}
.ws199{word-spacing:-14.040128px;}
.ws1fd{word-spacing:-14.030564px;}
.ws88{word-spacing:-13.973179px;}
.wsc5{word-spacing:-13.954051px;}
.ws87{word-spacing:-13.930141px;}
.ws1bf{word-spacing:-13.915795px;}
.wsa6{word-spacing:-13.906230px;}
.ws84{word-spacing:-13.872756px;}
.ws1be{word-spacing:-13.853628px;}
.ws1fe{word-spacing:-13.848846px;}
.ws180{word-spacing:-13.844064px;}
.ws140{word-spacing:-13.786679px;}
.ws194{word-spacing:-13.753205px;}
.ws24a{word-spacing:-13.734076px;}
.ws2b{word-spacing:-13.720514px;}
.ws20{word-spacing:-13.703299px;}
.ws156{word-spacing:-13.662345px;}
.ws149{word-spacing:-13.647999px;}
.wsca{word-spacing:-13.638435px;}
.ws96{word-spacing:-13.604961px;}
.ws183{word-spacing:-13.595397px;}
.ws49{word-spacing:-13.590615px;}
.ws13b{word-spacing:-13.585832px;}
.ws1cf{word-spacing:-13.581050px;}
.ws56{word-spacing:-13.576268px;}
.ws36{word-spacing:-13.571486px;}
.ws152{word-spacing:-13.566704px;}
.ws259{word-spacing:-13.561922px;}
.ws71{word-spacing:-13.552358px;}
.ws17b{word-spacing:-13.542794px;}
.wsc9{word-spacing:-13.538012px;}
.wsb8{word-spacing:-13.533230px;}
.ws70{word-spacing:-13.528448px;}
.ws22e{word-spacing:-13.523666px;}
.ws1c0{word-spacing:-13.518884px;}
.ws1ae{word-spacing:-13.514102px;}
.wsdd{word-spacing:-13.509319px;}
.ws3f{word-spacing:-13.504537px;}
.ws1f0{word-spacing:-13.499755px;}
.ws69{word-spacing:-13.494973px;}
.ws1aa{word-spacing:-13.490937px;}
.wscb{word-spacing:-13.490191px;}
.ws13c{word-spacing:-13.471063px;}
.ws18e{word-spacing:-13.461499px;}
.ws9f{word-spacing:-13.456717px;}
.ws8b{word-spacing:-13.451935px;}
.wsfe{word-spacing:-13.447153px;}
.ws141{word-spacing:-13.442371px;}
.ws39{word-spacing:-13.437589px;}
.ws208{word-spacing:-13.408896px;}
.wsbf{word-spacing:-13.404114px;}
.ws1d3{word-spacing:-13.399332px;}
.ws52{word-spacing:-13.394550px;}
.ws241{word-spacing:-13.392324px;}
.ws189{word-spacing:-13.365858px;}
.ws250{word-spacing:-13.361076px;}
.ws7f{word-spacing:-13.346729px;}
.wsc3{word-spacing:-13.341947px;}
.ws25c{word-spacing:-13.332383px;}
.ws8a{word-spacing:-13.327601px;}
.ws222{word-spacing:-13.322819px;}
.ws54{word-spacing:-13.318037px;}
.ws245{word-spacing:-13.289345px;}
.wscc{word-spacing:-13.286445px;}
.ws233{word-spacing:-13.255870px;}
.ws41{word-spacing:-13.251088px;}
.ws1ab{word-spacing:-13.236742px;}
.ws157{word-spacing:-13.208050px;}
.ws55{word-spacing:-13.198486px;}
.ws11e{word-spacing:-13.193704px;}
.ws242{word-spacing:-13.188921px;}
.ws25b{word-spacing:-13.184139px;}
.ws53{word-spacing:-13.165011px;}
.ws1a9{word-spacing:-13.162323px;}
.ws2b4{word-spacing:-13.113951px;}
.ws1ba{word-spacing:-13.112409px;}
.ws246{word-spacing:-13.102844px;}
.ws216{word-spacing:-13.026331px;}
.ws27{word-spacing:-13.010387px;}
.ws2af{word-spacing:-13.006836px;}
.ws1fa{word-spacing:-13.002421px;}
.ws8d{word-spacing:-12.988075px;}
.ws2a4{word-spacing:-12.968581px;}
.ws8c{word-spacing:-12.954601px;}
.ws2b6{word-spacing:-12.915023px;}
.ws275{word-spacing:-12.911198px;}
.wsbe{word-spacing:-12.906780px;}
.ws2a1{word-spacing:-12.861465px;}
.ws1c5{word-spacing:-12.854177px;}
.ws2c9{word-spacing:-12.834687px;}
.ws24e{word-spacing:-12.825485px;}
.ws2ae{word-spacing:-12.815559px;}
.ws1b{word-spacing:-12.799501px;}
.ws154{word-spacing:-12.787228px;}
.ws28{word-spacing:-12.786590px;}
.ws1f8{word-spacing:-12.772882px;}
.ws2a7{word-spacing:-12.762001px;}
.ws1c4{word-spacing:-12.744190px;}
.ws2a8{word-spacing:-12.708444px;}
.ws299{word-spacing:-12.689316px;}
.ws20c{word-spacing:-12.662895px;}
.ws2ce{word-spacing:-12.639584px;}
.ws228{word-spacing:-12.610292px;}
.ws2a3{word-spacing:-12.608980px;}
.ws247{word-spacing:-12.600728px;}
.ws1f9{word-spacing:-12.586382px;}
.ws2cf{word-spacing:-12.578376px;}
.ws286{word-spacing:-12.574550px;}
.ws144{word-spacing:-12.509869px;}
.wsc1{word-spacing:-12.485959px;}
.ws1d6{word-spacing:-12.481020px;}
.ws1f7{word-spacing:-12.471612px;}
.ws122{word-spacing:-12.462048px;}
.ws206{word-spacing:-12.452484px;}
.ws278{word-spacing:-12.448307px;}
.ws33{word-spacing:-12.446590px;}
.ws1c6{word-spacing:-12.438138px;}
.ws2a2{word-spacing:-12.436831px;}
.ws31{word-spacing:-12.429374px;}
.ws100{word-spacing:-12.428574px;}
.ws289{word-spacing:-12.383273px;}
.ws2f{word-spacing:-12.382033px;}
.ws32{word-spacing:-12.334691px;}
.ws229{word-spacing:-12.318587px;}
.ws29{word-spacing:-12.291653px;}
.ws28a{word-spacing:-12.287634px;}
.ws1d8{word-spacing:-12.252919px;}
.ws276{word-spacing:-12.234077px;}
.ws101{word-spacing:-12.232509px;}
.wsfd{word-spacing:-12.214184px;}
.ws24{word-spacing:-12.209881px;}
.ws12b{word-spacing:-12.201273px;}
.ws134{word-spacing:-12.196969px;}
.ws2e{word-spacing:-12.179754px;}
.ws24b{word-spacing:-12.170343px;}
.ws30{word-spacing:-12.166843px;}
.ws277{word-spacing:-12.157566px;}
.ws267{word-spacing:-12.146432px;}
.ws123{word-spacing:-12.141650px;}
.ws4e{word-spacing:-12.074702px;}
.ws102{word-spacing:-12.007753px;}
.wse2{word-spacing:-12.003298px;}
.ws135{word-spacing:-11.990387px;}
.ws1ce{word-spacing:-11.983842px;}
.ws1cd{word-spacing:-11.979060px;}
.ws1f5{word-spacing:-11.964714px;}
.ws1d7{word-spacing:-11.955956px;}
.ws44{word-spacing:-11.955150px;}
.ws16b{word-spacing:-11.938741px;}
.ws2ca{word-spacing:-11.912732px;}
.ws1fb{word-spacing:-11.892983px;}
.ws4d{word-spacing:-11.883419px;}
.ws5d{word-spacing:-11.864291px;}
.wsff{word-spacing:-11.845163px;}
.ws128{word-spacing:-11.830816px;}
.wsad{word-spacing:-11.816470px;}
.ws2b9{word-spacing:-11.809442px;}
.ws2ba{word-spacing:-11.767361px;}
.ws24c{word-spacing:-11.711265px;}
.ws155{word-spacing:-11.653880px;}
.ws0{word-spacing:-11.620260px;}
.ws2c6{word-spacing:-11.614339px;}
.ws2a6{word-spacing:-11.564607px;}
.ws5c{word-spacing:-11.553457px;}
.ws2bb{word-spacing:-11.553131px;}
.wsba{word-spacing:-11.543893px;}
.ws23e{word-spacing:-11.539111px;}
.ws161{word-spacing:-11.491290px;}
.ws29d{word-spacing:-11.468969px;}
.ws2c8{word-spacing:-11.442190px;}
.ws2a9{word-spacing:-11.407760px;}
.ws21a{word-spacing:-11.376521px;}
.ws11f{word-spacing:-11.362175px;}
.ws2a5{word-spacing:-11.315947px;}
.ws23f{word-spacing:-11.314719px;}
.wsac{word-spacing:-11.309572px;}
.ws1c9{word-spacing:-11.304790px;}
.ws2c7{word-spacing:-11.300645px;}
.ws5f{word-spacing:-11.300008px;}
.ws2cb{word-spacing:-11.262390px;}
.ws23d{word-spacing:-11.259920px;}
.ws18d{word-spacing:-11.242623px;}
.ws269{word-spacing:-11.223495px;}
.ws6e{word-spacing:-11.218713px;}
.ws91{word-spacing:-11.209149px;}
.ws11a{word-spacing:-11.199585px;}
.ws240{word-spacing:-11.194802px;}
.ws268{word-spacing:-11.190020px;}
.ws6d{word-spacing:-11.185238px;}
.ws11b{word-spacing:-11.170892px;}
.ws22{word-spacing:-11.164057px;}
.ws26a{word-spacing:-11.161328px;}
.ws60{word-spacing:-11.156546px;}
.ws1ca{word-spacing:-11.151764px;}
.ws18c{word-spacing:-11.146982px;}
.ws23c{word-spacing:-11.142200px;}
.ws9b{word-spacing:-11.127854px;}
.ws5e{word-spacing:-11.123072px;}
.ws1d2{word-spacing:-11.118289px;}
.ws23b{word-spacing:-11.108725px;}
.ws297{word-spacing:-11.097892px;}
.ws12e{word-spacing:-10.967823px;}
.ws1b3{word-spacing:-10.960482px;}
.wsef{word-spacing:-10.956347px;}
.ws274{word-spacing:-10.948695px;}
.wse8{word-spacing:-10.918091px;}
.ws1d9{word-spacing:-10.910440px;}
.ws130{word-spacing:-10.898963px;}
.wse3{word-spacing:-10.891312px;}
.wsf2{word-spacing:-10.879836px;}
.ws296{word-spacing:-10.876010px;}
.wse9{word-spacing:-10.872185px;}
.ws145{word-spacing:-10.869622px;}
.wsf1{word-spacing:-10.864534px;}
.ws12f{word-spacing:-10.853057px;}
.ws132{word-spacing:-10.849231px;}
.ws131{word-spacing:-10.841580px;}
.ws2c{word-spacing:-10.841272px;}
.ws7c{word-spacing:-10.836968px;}
.ws173{word-spacing:-10.830104px;}
.ws1e1{word-spacing:-10.822916px;}
.ws137{word-spacing:-10.818627px;}
.ws1b1{word-spacing:-10.815449px;}
.ws1b2{word-spacing:-10.812238px;}
.wsf0{word-spacing:-10.810976px;}
.ws176{word-spacing:-10.807920px;}
.ws16f{word-spacing:-10.807151px;}
.ws136{word-spacing:-10.803325px;}
.ws18a{word-spacing:-10.802538px;}
.ws1db{word-spacing:-10.800113px;}
.ws27b{word-spacing:-10.799499px;}
.ws174{word-spacing:-10.799283px;}
.ws1da{word-spacing:-10.796587px;}
.ws1dd{word-spacing:-10.794113px;}
.ws171{word-spacing:-10.791848px;}
.wse0{word-spacing:-10.785323px;}
.ws1ee{word-spacing:-10.783545px;}
.ws133{word-spacing:-10.780372px;}
.ws271{word-spacing:-10.765070px;}
.ws34{word-spacing:-10.763804px;}
.ws13a{word-spacing:-10.761244px;}
.ws3a{word-spacing:-10.755196px;}
.ws184{word-spacing:-10.746589px;}
.wse5{word-spacing:-10.738291px;}
.ws2b5{word-spacing:-10.734465px;}
.ws19e{word-spacing:-10.728956px;}
.ws12c{word-spacing:-10.726814px;}
.ws19c{word-spacing:-10.725070px;}
.wse4{word-spacing:-10.715338px;}
.ws168{word-spacing:-10.711512px;}
.ws166{word-spacing:-10.707686px;}
.ws12d{word-spacing:-10.700035px;}
.wsa9{word-spacing:-10.697468px;}
.wsea{word-spacing:-10.688559px;}
.wseb{word-spacing:-10.669431px;}
.ws1e4{word-spacing:-10.665606px;}
.ws19d{word-spacing:-10.657954px;}
.ws162{word-spacing:-10.654129px;}
.ws2c0{word-spacing:-10.646478px;}
.ws18b{word-spacing:-10.626082px;}
.ws2c2{word-spacing:-10.619699px;}
.wsa8{word-spacing:-10.611391px;}
.ws260{word-spacing:-10.606609px;}
.ws61{word-spacing:-10.601827px;}
.ws138{word-spacing:-10.589095px;}
.ws2c1{word-spacing:-10.566141px;}
.ws139{word-spacing:-10.547014px;}
.wsc0{word-spacing:-10.544442px;}
.ws285{word-spacing:-10.535537px;}
.wsf6{word-spacing:-10.531712px;}
.ws1e0{word-spacing:-10.482443px;}
.wsb7{word-spacing:-10.479753px;}
.ws21{word-spacing:-10.475449px;}
.ws1df{word-spacing:-10.474887px;}
.ws263{word-spacing:-10.467929px;}
.ws1e8{word-spacing:-10.466279px;}
.ws25f{word-spacing:-10.463147px;}
.ws1dc{word-spacing:-10.453640px;}
.ws1de{word-spacing:-10.452113px;}
.ws1ed{word-spacing:-10.444019px;}
.ws164{word-spacing:-10.428422px;}
.ws6f{word-spacing:-10.400981px;}
.ws35{word-spacing:-10.385069px;}
.ws291{word-spacing:-10.191239px;}
.ws74{word-spacing:-10.176224px;}
.ws192{word-spacing:-10.128403px;}
.ws1e9{word-spacing:-10.094929px;}
.ws2ab{word-spacing:-10.087949px;}
.ws3c{word-spacing:-10.061328px;}
.ws290{word-spacing:-10.061170px;}
.ws224{word-spacing:-10.018416px;}
.ws193{word-spacing:-9.994505px;}
.ws2d{word-spacing:-9.967601px;}
.ws45{word-spacing:-9.937121px;}
.ws28f{word-spacing:-9.934927px;}
.ws2c5{word-spacing:-9.900498px;}
.ws42{word-spacing:-9.860608px;}
.ws43{word-spacing:-9.812787px;}
.ws18{word-spacing:-9.799753px;}
.wsd0{word-spacing:-9.788877px;}
.wsb5{word-spacing:-9.764967px;}
.ws292{word-spacing:-9.758953px;}
.ws252{word-spacing:-9.741056px;}
.ws225{word-spacing:-9.717146px;}
.ws27e{word-spacing:-9.716872px;}
.ws2c4{word-spacing:-9.705395px;}
.ws28c{word-spacing:-9.697744px;}
.ws27f{word-spacing:-9.690093px;}
.ws282{word-spacing:-9.682442px;}
.ws2b3{word-spacing:-9.674791px;}
.ws26e{word-spacing:-9.670965px;}
.ws2ad{word-spacing:-9.659488px;}
.ws2bf{word-spacing:-9.648012px;}
.ws270{word-spacing:-9.632710px;}
.ws27d{word-spacing:-9.613582px;}
.ws281{word-spacing:-9.605931px;}
.ws22d{word-spacing:-9.602376px;}
.ws280{word-spacing:-9.602105px;}
.ws2b1{word-spacing:-9.598280px;}
.ws28e{word-spacing:-9.594454px;}
.ws181{word-spacing:-9.592812px;}
.ws283{word-spacing:-9.590629px;}
.ws284{word-spacing:-9.586803px;}
.ws2cc{word-spacing:-9.582978px;}
.ws273{word-spacing:-9.579152px;}
.ws5b{word-spacing:-9.578466px;}
.ws29f{word-spacing:-9.575327px;}
.ws287{word-spacing:-9.567676px;}
.wsed{word-spacing:-9.563850px;}
.ws26f{word-spacing:-9.560024px;}
.ws29b{word-spacing:-9.552373px;}
.ws288{word-spacing:-9.548548px;}
.ws77{word-spacing:-9.544992px;}
.ws29c{word-spacing:-9.544722px;}
.ws295{word-spacing:-9.533246px;}
.ws293{word-spacing:-9.517944px;}
.ws2b7{word-spacing:-9.514118px;}
.ws26d{word-spacing:-9.510292px;}
.ws76{word-spacing:-9.506735px;}
.ws272{word-spacing:-9.502641px;}
.ws2b0{word-spacing:-9.475863px;}
.ws51{word-spacing:-9.449351px;}
.ws12{word-spacing:-9.449084px;}
.ws2be{word-spacing:-9.445258px;}
.ws5a{word-spacing:-9.439786px;}
.ws279{word-spacing:-9.437607px;}
.ws2c3{word-spacing:-9.426131px;}
.ws22c{word-spacing:-9.425440px;}
.ws11{word-spacing:-9.422305px;}
.ws2bd{word-spacing:-9.410828px;}
.ws29e{word-spacing:-9.407003px;}
.ws10{word-spacing:-9.387875px;}
.ws1c{word-spacing:-9.386588px;}
.ws2cd{word-spacing:-9.376399px;}
.ws1bd{word-spacing:-9.372838px;}
.ws2ac{word-spacing:-9.372573px;}
.ws238{word-spacing:-9.368056px;}
.ws29a{word-spacing:-9.357271px;}
.ws28b{word-spacing:-9.322841px;}
.ws2b8{word-spacing:-9.315190px;}
.ws294{word-spacing:-9.311364px;}
.ws2bc{word-spacing:-9.307539px;}
.ws13{word-spacing:-9.296062px;}
.wsc4{word-spacing:-9.272414px;}
.ws237{word-spacing:-9.262850px;}
.ws27a{word-spacing:-9.257807px;}
.ws28d{word-spacing:-9.253981px;}
.ws72{word-spacing:-9.215030px;}
.ws17c{word-spacing:-9.205465px;}
.ws2b2{word-spacing:-9.204249px;}
.ws26{word-spacing:-9.149879px;}
.ws14a{word-spacing:-9.128953px;}
.ws236{word-spacing:-9.109824px;}
.ws2aa{word-spacing:-9.097134px;}
.ws1c1{word-spacing:-9.018965px;}
.ws24d{word-spacing:-8.952016px;}
.ws62{word-spacing:-8.942452px;}
.wsb9{word-spacing:-8.923324px;}
.ws1ec{word-spacing:-8.904196px;}
.ws63{word-spacing:-8.889850px;}
.ws214{word-spacing:-8.865939px;}
.ws17{word-spacing:-8.809879px;}
.ws18f{word-spacing:-8.770298px;}
.wsd7{word-spacing:-8.722477px;}
.ws1eb{word-spacing:-8.698567px;}
.ws257{word-spacing:-8.655529px;}
.wsd5{word-spacing:-8.607708px;}
.ws7b{word-spacing:-8.586081px;}
.wsf9{word-spacing:-8.584512px;}
.ws258{word-spacing:-8.574234px;}
.ws64{word-spacing:-8.569452px;}
.wsd6{word-spacing:-8.568035px;}
.ws215{word-spacing:-8.473810px;}
.ws255{word-spacing:-8.425990px;}
.ws9c{word-spacing:-8.392515px;}
.ws256{word-spacing:-8.229925px;}
.wsd8{word-spacing:-8.210797px;}
.ws9d{word-spacing:-8.162976px;}
.ws23{word-spacing:-8.048106px;}
.wsdc{word-spacing:-7.895181px;}
.wsdb{word-spacing:-7.822221px;}
.wsb4{word-spacing:-7.727809px;}
.wsda{word-spacing:-7.718245px;}
.wsd9{word-spacing:-7.699117px;}
.wsc{word-spacing:-7.482756px;}
.wsb1{word-spacing:-7.460014px;}
.wse{word-spacing:-7.452152px;}
.ws50{word-spacing:-7.445667px;}
.wsa{word-spacing:-7.425373px;}
.wsb{word-spacing:-7.371816px;}
.wsd{word-spacing:-7.276177px;}
.ws298{word-spacing:-7.245573px;}
.ws7e{word-spacing:-7.241747px;}
.ws93{word-spacing:-7.144398px;}
.ws92{word-spacing:-7.005718px;}
.ws3d{word-spacing:-6.919641px;}
.wsb0{word-spacing:-6.914859px;}
.ws1f{word-spacing:-6.847346px;}
.ws158{word-spacing:-6.824000px;}
.ws159{word-spacing:-6.800089px;}
.ws16{word-spacing:-6.718232px;}
.ws1d{word-spacing:-6.163042px;}
.ws112{word-spacing:-6.061185px;}
.ws25{word-spacing:-5.452915px;}
.wsaf{word-spacing:-5.073766px;}
.ws2a{word-spacing:-5.065573px;}
.ws1e{word-spacing:-4.841775px;}
.ws19{word-spacing:-4.704053px;}
.ws80{word-spacing:-4.452098px;}
.ws81{word-spacing:-4.346893px;}
.ws15{word-spacing:-2.285318px;}
.ws79{word-spacing:-1.625900px;}
.ws46{word-spacing:-1.549387px;}
.ws78{word-spacing:-1.448964px;}
.ws14{word-spacing:-1.002785px;}
.ws3b{word-spacing:0.000000px;}
.ws27c{word-spacing:1.729144px;}
.ws2a0{word-spacing:1.732970px;}
.ws26c{word-spacing:1.840085px;}
.ws38{word-spacing:2.309735px;}
.ws1{word-spacing:13.040514px;}
.ws1a0{word-spacing:59.785539px;}
.ws1a4{word-spacing:68.178774px;}
.ws1a2{word-spacing:68.182599px;}
.ws1a5{word-spacing:68.519247px;}
.ws1a7{word-spacing:76.342476px;}
.ws1e7{word-spacing:96.522200px;}
.ws1e5{word-spacing:96.644617px;}
.ws1e6{word-spacing:96.751732px;}
.ws1a6{word-spacing:97.773151px;}
.ws172{word-spacing:100.152637px;}
.ws170{word-spacing:100.156463px;}
.ws19f{word-spacing:108.714196px;}
.ws1e2{word-spacing:117.841934px;}
.ws178{word-spacing:121.690427px;}
.ws175{word-spacing:121.694253px;}
.ws16e{word-spacing:148.851761px;}
.ws179{word-spacing:153.939730px;}
.ws17a{word-spacing:153.943555px;}
.ws1a3{word-spacing:167.845568px;}
.ws169{word-spacing:174.987851px;}
.ws163{word-spacing:179.961053px;}
.ws167{word-spacing:196.525641px;}
.wsf4{word-spacing:218.331219px;}
.ws1a8{word-spacing:269.513119px;}
.ws1a1{word-spacing:338.984925px;}
.wse6{word-spacing:345.105789px;}
.wsec{word-spacing:345.109614px;}
.ws16d{word-spacing:351.570952px;}
.wsee{word-spacing:416.475063px;}
.ws16c{word-spacing:698.356153px;}
.ws116{word-spacing:1859.097556px;}
.ws115{word-spacing:1883.246959px;}
.ws13e{word-spacing:2292.859090px;}
.ws120{word-spacing:2345.753456px;}
._31{margin-left:-251.601940px;}
._30{margin-left:-31.572182px;}
._b{margin-left:-1.004233px;}
._3{width:1.078802px;}
._61{width:2.230290px;}
._23{width:6.124307px;}
._d{width:8.660311px;}
._10{width:9.694521px;}
._c{width:10.739221px;}
._9{width:11.865577px;}
._2{width:13.584493px;}
._e{width:15.135220px;}
._7{width:16.259756px;}
._a{width:18.024314px;}
._6{width:19.336973px;}
._8{width:21.277987px;}
._5{width:23.645077px;}
._4{width:25.009382px;}
._1{width:27.896953px;}
._f{width:29.911785px;}
._5a{width:67.853603px;}
._53{width:81.926081px;}
._0{width:90.724104px;}
._5c{width:97.130461px;}
._5b{width:118.905434px;}
._48{width:121.962041px;}
._43{width:123.312456px;}
._59{width:124.968915px;}
._41{width:133.526648px;}
._4b{width:136.599805px;}
._5e{width:139.421805px;}
._5f{width:140.443224px;}
._42{width:143.840304px;}
._4d{width:144.884676px;}
._4c{width:148.294481px;}
._47{width:155.064438px;}
._60{width:161.870074px;}
._3f{width:174.662680px;}
._3d{width:175.664971px;}
._4e{width:177.322997px;}
._54{width:180.684080px;}
._3e{width:181.889125px;}
._4f{width:186.977093px;}
._5d{width:194.964821px;}
._34{width:196.123959px;}
._57{width:219.249348px;}
._46{width:225.060344px;}
._11{width:240.477270px;}
._4a{width:276.010452px;}
._22{width:285.897906px;}
._37{width:290.233810px;}
._58{width:291.662995px;}
._36{width:295.933865px;}
._17{width:301.314833px;}
._33{width:313.310740px;}
._32{width:319.010218px;}
._38{width:323.095199px;}
._3a{width:324.906938px;}
._13{width:326.089030px;}
._49{width:330.830440px;}
._39{width:336.131072px;}
._35{width:346.169802px;}
._55{width:361.134802px;}
._15{width:367.255666px;}
._16{width:385.874569px;}
._25{width:387.355053px;}
._51{width:391.842411px;}
._1c{width:408.414650px;}
._52{width:420.660204px;}
._45{width:422.238926px;}
._1a{width:423.709159px;}
._20{width:438.624940px;}
._56{width:451.501707px;}
._2d{width:454.757242px;}
._2b{width:457.297401px;}
._12{width:460.587365px;}
._2f{width:473.896419px;}
._44{width:476.943562px;}
._40{width:482.486835px;}
._50{width:487.702792px;}
._2a{width:496.436500px;}
._1e{width:500.832046px;}
._28{width:502.163334px;}
._2c{width:511.034761px;}
._27{width:532.572551px;}
._21{width:542.714058px;}
._3b{width:565.032258px;}
._2e{width:570.231167px;}
._3c{width:575.896792px;}
._1f{width:593.410114px;}
._29{width:650.433613px;}
._26{width:782.288500px;}
._1d{width:806.071785px;}
._14{width:969.154653px;}
._19{width:1106.602479px;}
._18{width:1138.851781px;}
._1b{width:1160.389572px;}
._24{width:2393.980531px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs4{font-size:26.761800px;}
.fsc{font-size:26.778600px;}
.fs7{font-size:30.126000px;}
.fsd{font-size:31.083000px;}
.fsb{font-size:33.472800px;}
.fsf{font-size:35.867400px;}
.fs5{font-size:38.255400px;}
.fsa{font-size:38.256000px;}
.fs6{font-size:41.842200px;}
.fs3{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs8{font-size:47.820600px;}
.fse{font-size:51.168000px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fs9{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:0.001489px;}
.y3a{bottom:53.097757px;}
.y4{bottom:79.392757px;}
.y8c{bottom:84.188850px;}
.y66{bottom:84.189036px;}
.y178{bottom:84.189200px;}
.y235{bottom:84.189858px;}
.y1e5{bottom:84.190040px;}
.y147{bottom:84.190198px;}
.y198{bottom:84.190586px;}
.y269{bottom:84.195333px;}
.y2a8{bottom:84.195533px;}
.y183{bottom:89.548258px;}
.y116{bottom:91.077625px;}
.y3{bottom:93.732757px;}
.y2a7{bottom:96.100613px;}
.y1b6{bottom:96.519950px;}
.y65{bottom:98.560500px;}
.y234{bottom:99.836758px;}
.y146{bottom:99.837098px;}
.y177{bottom:99.837158px;}
.y197{bottom:99.837486px;}
.y1e4{bottom:99.838136px;}
.y115{bottom:103.918525px;}
.y182{bottom:105.195158px;}
.y2{bottom:108.012757px;}
.y2a6{bottom:108.090812px;}
.y1b5{bottom:112.166850px;}
.y1b3{bottom:112.167368px;}
.y233{bottom:115.568540px;}
.y196{bottom:115.569268px;}
.y1e3{bottom:115.569917px;}
.y145{bottom:115.570076px;}
.y176{bottom:115.570136px;}
.y268{bottom:115.574015px;}
.y114{bottom:116.759575px;}
.y1b4{bottom:117.524400px;}
.y2a5{bottom:119.996849px;}
.y181{bottom:120.928136px;}
.y38{bottom:122.456736px;}
.y1b2{bottom:127.899150px;}
.y113{bottom:129.600475px;}
.y195{bottom:131.216168px;}
.y232{bottom:131.216636px;}
.y1e2{bottom:131.216818px;}
.y144{bottom:131.216976px;}
.y175{bottom:131.217036px;}
.y2a4{bottom:131.987048px;}
.y180{bottom:136.575036px;}
.y37{bottom:136.828200px;}
.y112{bottom:142.441457px;}
.y1b0{bottom:143.547218px;}
.y2a3{bottom:143.892128px;}
.ycc{bottom:146.442119px;}
.y194{bottom:146.947950px;}
.y231{bottom:146.948417px;}
.y192{bottom:146.948600px;}
.y143{bottom:146.948758px;}
.y174{bottom:146.948818px;}
.y267{bottom:146.953893px;}
.y1b1{bottom:148.903800px;}
.y193{bottom:152.220000px;}
.y17f{bottom:152.306818px;}
.y111{bottom:155.366575px;}
.y2a2{bottom:155.882327px;}
.y1af{bottom:159.279000px;}
.y1e1{bottom:162.595318px;}
.y191{bottom:162.595500px;}
.y142{bottom:162.595658px;}
.y173{bottom:162.595718px;}
.y18f{bottom:162.597251px;}
.y266{bottom:162.685675px;}
.y2a1{bottom:167.873482px;}
.y190{bottom:167.953500px;}
.y17e{bottom:167.953718px;}
.y33{bottom:168.208072px;}
.y110{bottom:168.208075px;}
.ycb{bottom:169.997882px;}
.y172{bottom:178.327100px;}
.y141{bottom:178.328636px;}
.y18e{bottom:178.329033px;}
.y265{bottom:178.332575px;}
.y2a0{bottom:179.778563px;}
.y10f{bottom:181.049575px;}
.y32{bottom:182.494536px;}
.y17d{bottom:183.685100px;}
.yca{bottom:189.726192px;}
.y2f0{bottom:190.497803px;}
.y29f{bottom:191.768761px;}
.y1b7{bottom:192.868500px;}
.y10e{bottom:193.889575px;}
.y1e0{bottom:193.974000px;}
.y140{bottom:193.975536px;}
.y1de{bottom:193.975658px;}
.y230{bottom:193.975718px;}
.y18d{bottom:193.975933px;}
.y171{bottom:193.976369px;}
.y264{bottom:194.065553px;}
.y31{bottom:196.866000px;}
.y1df{bottom:199.332000px;}
.y17c{bottom:199.332218px;}
.y2ef{bottom:202.488001px;}
.yc9{bottom:202.567573px;}
.y29e{bottom:203.673842px;}
.y10d{bottom:206.731075px;}
.y13f{bottom:209.707318px;}
.y22f{bottom:209.708417px;}
.y1dd{bottom:209.708636px;}
.yd2{bottom:211.918500px;}
.y2ee{bottom:214.393082px;}
.y17b{bottom:215.064000px;}
.yc8{bottom:215.407998px;}
.y29d{bottom:215.664997px;}
.y16d{bottom:216.852575px;}
.y10c{bottom:219.572575px;}
.y13e{bottom:225.354218px;}
.y170{bottom:225.355051px;}
.y22e{bottom:225.355318px;}
.y1dc{bottom:225.355536px;}
.y18c{bottom:225.355811px;}
.y263{bottom:225.444235px;}
.y2ed{bottom:226.383281px;}
.y29c{bottom:227.655196px;}
.yc7{bottom:228.249380px;}
.y16c{bottom:229.693956px;}
.y10b{bottom:232.412575px;}
.y2ec{bottom:238.289317px;}
.y29b{bottom:239.560276px;}
.y13d{bottom:241.087100px;}
.y1db{bottom:241.087318px;}
.yc6{bottom:241.089805px;}
.y16b{bottom:242.534381px;}
.y10a{bottom:245.254457px;}
.y186{bottom:248.655000px;}
.y2eb{bottom:250.279516px;}
.y29a{bottom:251.551431px;}
.yc5{bottom:254.015348px;}
.y16a{bottom:255.375762px;}
.y16f{bottom:256.733733px;}
.y1da{bottom:256.734218px;}
.y22d{bottom:256.735136px;}
.y13c{bottom:256.735598px;}
.y262{bottom:256.908994px;}
.y109{bottom:258.179690px;}
.y18b{bottom:258.945000px;}
.y189{bottom:258.945218px;}
.y2ea{bottom:262.184597px;}
.y299{bottom:263.456512px;}
.y18a{bottom:264.303000px;}
.ya8{bottom:267.495000px;}
.y169{bottom:268.216187px;}
.y22c{bottom:272.466917px;}
.y1d9{bottom:272.467136px;}
.y13b{bottom:272.468576px;}
.y261{bottom:272.555894px;}
.yc4{bottom:273.744614px;}
.y2e9{bottom:274.175752px;}
.y187{bottom:274.677000px;}
.y298{bottom:275.446710px;}
.y108{bottom:277.908000px;}
.y188{bottom:279.949500px;}
.y168{bottom:281.056612px;}
.y30{bottom:284.542143px;}
.y2e8{bottom:286.165951px;}
.y297{bottom:287.436909px;}
.y22b{bottom:288.113818px;}
.y1d8{bottom:288.114036px;}
.y13a{bottom:288.115476px;}
.y260{bottom:288.287676px;}
.y16e{bottom:290.409000px;}
.yc3{bottom:293.473880px;}
.y167{bottom:293.897994px;}
.y107{bottom:297.638536px;}
.y2e7{bottom:298.071031px;}
.y2f{bottom:298.913608px;}
.y296{bottom:299.342946px;}
.y22a{bottom:303.845600px;}
.y1d7{bottom:303.845818px;}
.y139{bottom:303.847258px;}
.y25f{bottom:303.934577px;}
.y8b{bottom:303.936874px;}
.yc2{bottom:306.314305px;}
.y166{bottom:306.823537px;}
.y2e6{bottom:310.061230px;}
.y295{bottom:311.333145px;}
.y106{bottom:311.925000px;}
.y2e{bottom:313.285072px;}
.y1ad{bottom:315.157999px;}
.yc1{bottom:319.154730px;}
.y229{bottom:319.492500px;}
.y1d6{bottom:319.492718px;}
.y227{bottom:319.493818px;}
.y138{bottom:319.494158px;}
.y165{bottom:319.664919px;}
.y25e{bottom:319.667554px;}
.y8a{bottom:319.668656px;}
.y2e5{bottom:321.967267px;}
.y294{bottom:323.238225px;}
.y17a{bottom:324.000000px;}
.y228{bottom:324.850500px;}
.y64{bottom:325.197120px;}
.y2d{bottom:327.571536px;}
.y1ac{bottom:327.999380px;}
.yc0{bottom:331.996112px;}
.y164{bottom:332.505344px;}
.y2e4{bottom:333.957465px;}
.y1d5{bottom:335.224500px;}
.y1d3{bottom:335.225600px;}
.y137{bottom:335.227136px;}
.y293{bottom:335.228424px;}
.y25d{bottom:335.314454px;}
.y89{bottom:335.315557px;}
.y1d4{bottom:340.497000px;}
.y1ab{bottom:340.839805px;}
.y63{bottom:340.845216px;}
.y2c{bottom:341.946681px;}
.ybf{bottom:344.836537px;}
.y163{bottom:345.345769px;}
.yf1{bottom:345.940500px;}
.yf0{bottom:345.940730px;}
.y2e3{bottom:345.947664px;}
.y292{bottom:347.134461px;}
.y1d2{bottom:350.872500px;}
.y136{bottom:350.874036px;}
.y1d0{bottom:350.874449px;}
.y25c{bottom:351.046236px;}
.y88{bottom:351.048534px;}
.yf2{bottom:351.297000px;}
.y1aa{bottom:353.680230px;}
.y1d1{bottom:356.230500px;}
.y2b{bottom:356.318146px;}
.y62{bottom:356.576998px;}
.ybe{bottom:357.677918px;}
.y2e2{bottom:357.852745px;}
.y162{bottom:358.187150px;}
.y291{bottom:359.124660px;}
.y135{bottom:366.605818px;}
.y1cf{bottom:366.606231px;}
.y1a9{bottom:366.606730px;}
.y25b{bottom:366.693137px;}
.y87{bottom:366.695434px;}
.yef{bottom:366.859852px;}
.y2e1{bottom:369.843900px;}
.ybd{bottom:370.518343px;}
.y2a{bottom:370.604610px;}
.y161{bottom:371.027575px;}
.y290{bottom:371.114858px;}
.yd1{bottom:371.793000px;}
.y61{bottom:372.223898px;}
.yee{bottom:375.108000px;}
.y1a8{bottom:379.447155px;}
.y2e0{bottom:381.748980px;}
.y134{bottom:382.252718px;}
.y25a{bottom:382.426114px;}
.y28f{bottom:383.020895px;}
.y160{bottom:383.869075px;}
.y29{bottom:384.976074px;}
.y60{bottom:387.955680px;}
.ybc{bottom:390.247609px;}
.y1a7{bottom:392.287580px;}
.y2df{bottom:393.739179px;}
.y28e{bottom:395.011094px;}
.y15f{bottom:396.709457px;}
.y133{bottom:397.984100px;}
.y226{bottom:397.984500px;}
.y224{bottom:397.985417px;}
.y1ce{bottom:397.986108px;}
.y259{bottom:398.073014px;}
.y86{bottom:398.074116px;}
.y28{bottom:399.347538px;}
.y225{bottom:403.257000px;}
.y1a6{bottom:405.128961px;}
.y2de{bottom:405.730334px;}
.yed{bottom:405.978000px;}
.yec{bottom:405.978218px;}
.y28d{bottom:406.916174px;}
.y15e{bottom:409.636075px;}
.ybb{bottom:409.975919px;}
.ya9{bottom:411.120000px;}
.y223{bottom:413.632318px;}
.y132{bottom:413.632718px;}
.y27{bottom:413.634002px;}
.y258{bottom:413.804796px;}
.y2dd{bottom:417.635415px;}
.y1a5{bottom:417.969386px;}
.y28c{bottom:418.906373px;}
.y5f{bottom:419.335558px;}
.yea{bottom:421.710000px;}
.ye9{bottom:421.711318px;}
.y15d{bottom:422.476075px;}
.yba{bottom:422.817300px;}
.yeb{bottom:426.982500px;}
.y26{bottom:428.005466px;}
.y131{bottom:429.364100px;}
.y257{bottom:429.451697px;}
.y85{bottom:429.453994px;}
.y2dc{bottom:429.625613px;}
.y1a4{bottom:430.810768px;}
.y28b{bottom:430.897528px;}
.y15c{bottom:435.317575px;}
.yb9{bottom:435.657725px;}
.ye8{bottom:437.358218px;}
.y1cd{bottom:438.718718px;}
.y2db{bottom:441.530694px;}
.y25{bottom:442.376930px;}
.y28a{bottom:442.802609px;}
.y1a3{bottom:443.651193px;}
.y222{bottom:445.012318px;}
.y130{bottom:445.013637px;}
.y256{bottom:445.183478px;}
.y84{bottom:445.185776px;}
.y15b{bottom:448.157575px;}
.yb8{bottom:448.583269px;}
.y185{bottom:452.325000px;}
.ye6{bottom:453.090000px;}
.ye5{bottom:453.090230px;}
.y2da{bottom:453.521849px;}
.y1cc{bottom:454.450658px;}
.y289{bottom:454.792808px;}
.y1a2{bottom:456.576736px;}
.y24{bottom:456.748395px;}
.ye7{bottom:458.362500px;}
.y221{bottom:460.744100px;}
.y12f{bottom:460.745419px;}
.y255{bottom:460.831574px;}
.y83{bottom:460.832676px;}
.y5e{bottom:460.834275px;}
.y15a{bottom:460.999075px;}
.yb7{bottom:461.424650px;}
.y2d9{bottom:465.426929px;}
.y288{bottom:466.697888px;}
.y1a1{bottom:469.418117px;}
.y1cb{bottom:470.097559px;}
.y23{bottom:471.034859px;}
.y159{bottom:473.841268px;}
.ye4{bottom:474.009352px;}
.yb6{bottom:474.265075px;}
.y220{bottom:476.392598px;}
.y12e{bottom:476.393515px;}
.y254{bottom:476.563356px;}
.y82{bottom:476.564458px;}
.y5d{bottom:476.566057px;}
.y2d8{bottom:477.417128px;}
.y287{bottom:478.689043px;}
.ye3{bottom:482.173452px;}
.y1a0{bottom:482.258542px;}
.y22{bottom:485.406323px;}
.y1ca{bottom:485.830536px;}
.y158{bottom:486.681693px;}
.yb5{bottom:487.107310px;}
.y2d7{bottom:489.407327px;}
.y286{bottom:490.594124px;}
.y12d{bottom:492.125297px;}
.y21f{bottom:492.125576px;}
.y253{bottom:492.210256px;}
.y81{bottom:492.212554px;}
.y5c{bottom:492.212957px;}
.y157{bottom:499.522118px;}
.y21{bottom:499.777787px;}
.y2d6{bottom:501.313364px;}
.y1c9{bottom:501.562318px;}
.y19f{bottom:501.987808px;}
.y285{bottom:502.584322px;}
.yb4{bottom:506.836576px;}
.y12c{bottom:507.772197px;}
.y21e{bottom:507.772476px;}
.y252{bottom:507.942038px;}
.y80{bottom:507.944336px;}
.y5b{bottom:507.945934px;}
.y156{bottom:512.448617px;}
.ye2{bottom:513.127727px;}
.y2d5{bottom:513.303562px;}
.y20{bottom:514.064251px;}
.y284{bottom:514.574521px;}
.y1c8{bottom:517.209218px;}
.yd0{bottom:518.570690px;}
.y19e{bottom:521.632190px;}
.y21d{bottom:523.504258px;}
.y251{bottom:523.590134px;}
.y7f{bottom:523.591236px;}
.y5a{bottom:523.592835px;}
.y2d4{bottom:525.208643px;}
.y155{bottom:525.289042px;}
.y283{bottom:526.480558px;}
.yb3{bottom:526.564886px;}
.y1f{bottom:528.435715px;}
.ye1{bottom:528.774627px;}
.y1c7{bottom:532.941000px;}
.y1c5{bottom:532.942100px;}
.y2d3{bottom:537.198842px;}
.y1c6{bottom:538.213500px;}
.ycf{bottom:538.299000px;}
.y282{bottom:538.470757px;}
.y12b{bottom:539.150880px;}
.y21c{bottom:539.151158px;}
.y250{bottom:539.321916px;}
.y7e{bottom:539.323018px;}
.y59{bottom:539.324616px;}
.yb2{bottom:539.406268px;}
.y19d{bottom:541.360500px;}
.ya6{bottom:542.636818px;}
.y1e{bottom:542.807179px;}
.ye0{bottom:544.507605px;}
.y154{bottom:545.018308px;}
.y1c4{bottom:548.589000px;}
.y1c2{bottom:548.590536px;}
.y2d2{bottom:549.189997px;}
.y281{bottom:550.375837px;}
.y18{bottom:551.736300px;}
.yb1{bottom:552.246693px;}
.y1c3{bottom:553.947000px;}
.y21b{bottom:554.884136px;}
.y24f{bottom:554.968816px;}
.y7d{bottom:554.971114px;}
.y58{bottom:554.971517px;}
.y1d{bottom:557.093643px;}
.yce{bottom:558.028500px;}
.ya5{bottom:558.283718px;}
.ydf{bottom:560.154505px;}
.y19c{bottom:561.090036px;}
.y2d1{bottom:561.095077px;}
.y280{bottom:562.366992px;}
.y1c1{bottom:564.322318px;}
.y17{bottom:564.576725px;}
.y153{bottom:564.661500px;}
.yb0{bottom:565.087118px;}
.y21a{bottom:570.615917px;}
.y24e{bottom:570.700598px;}
.y7c{bottom:570.702896px;}
.y57{bottom:570.704494px;}
.y1c{bottom:571.465108px;}
.y2d0{bottom:573.085276px;}
.ya4{bottom:574.016600px;}
.y27f{bottom:574.357191px;}
.y19b{bottom:575.461500px;}
.y16{bottom:577.417150px;}
.yaf{bottom:577.928499px;}
.y1c0{bottom:579.969218px;}
.y12a{bottom:582.776417px;}
.ydd{bottom:583.882200px;}
.y152{bottom:584.391036px;}
.y2cf{bottom:584.991313px;}
.yde{bottom:585.751447px;}
.y1b{bottom:585.836572px;}
.y27e{bottom:586.262272px;}
.y219{bottom:586.262818px;}
.y24d{bottom:586.348694px;}
.y7b{bottom:586.349796px;}
.y56{bottom:586.351394px;}
.ya3{bottom:589.664758px;}
.y15{bottom:590.343650px;}
.yae{bottom:590.854042px;}
.y1bd{bottom:595.700600px;}
.y1bf{bottom:595.701000px;}
.y2ce{bottom:596.981512px;}
.y27d{bottom:598.252470px;}
.y129{bottom:598.423318px;}
.y151{bottom:598.762500px;}
.y1a{bottom:600.208036px;}
.y1be{bottom:600.973500px;}
.y218{bottom:601.994600px;}
.y24c{bottom:602.080476px;}
.y7a{bottom:602.081578px;}
.y55{bottom:602.083176px;}
.y14{bottom:603.184075px;}
.ya2{bottom:605.396540px;}
.y2cd{bottom:608.886592px;}
.y27c{bottom:610.158507px;}
.yad{bottom:610.583308px;}
.y1bc{bottom:611.347500px;}
.y1ba{bottom:611.347718px;}
.y128{bottom:614.155100px;}
.y19{bottom:614.494500px;}
.y13{bottom:616.024500px;}
.y1bb{bottom:616.705500px;}
.y217{bottom:617.641718px;}
.y24b{bottom:617.727376px;}
.y79{bottom:617.728478px;}
.y54{bottom:617.730077px;}
.y19a{bottom:618.916500px;}
.ydb{bottom:620.106692px;}
.y2cc{bottom:620.876791px;}
.ya1{bottom:621.044636px;}
.ydc{bottom:621.892468px;}
.y27b{bottom:622.148706px;}
.y1b8{bottom:627.079500px;}
.y127{bottom:629.802000px;}
.y125{bottom:629.803703px;}
.yac{bottom:630.226500px;}
.y1b9{bottom:632.352000px;}
.y2cb{bottom:632.867946px;}
.y216{bottom:633.373318px;}
.y24a{bottom:633.459158px;}
.y78{bottom:633.461456px;}
.y53{bottom:633.463054px;}
.y27a{bottom:634.053786px;}
.y126{bottom:635.158500px;}
.ya0{bottom:636.776417px;}
.y12{bottom:643.833000px;}
.y2ca{bottom:644.773027px;}
.y124{bottom:645.535485px;}
.y279{bottom:646.043985px;}
.y215{bottom:649.020218px;}
.y249{bottom:649.192136px;}
.y77{bottom:649.193238px;}
.y52{bottom:649.194836px;}
.yab{bottom:649.956036px;}
.yda{bottom:650.465600px;}
.y9f{bottom:652.423318px;}
.y2c9{bottom:656.763225px;}
.y278{bottom:658.035140px;}
.y123{bottom:661.182385px;}
.yaa{bottom:664.327500px;}
.y214{bottom:664.753318px;}
.y248{bottom:664.839036px;}
.y76{bottom:664.840138px;}
.y51{bottom:664.841736px;}
.yd9{bottom:666.115683px;}
.y200{bottom:667.562259px;}
.y9e{bottom:668.155100px;}
.y2c8{bottom:668.668306px;}
.y277{bottom:669.940221px;}
.y122{bottom:676.914167px;}
.y213{bottom:680.400218px;}
.y1ff{bottom:680.402684px;}
.y247{bottom:680.570818px;}
.y75{bottom:680.573115px;}
.y50{bottom:680.573518px;}
.y2c7{bottom:680.659461px;}
.y184{bottom:681.505500px;}
.yd8{bottom:681.847464px;}
.y276{bottom:681.930420px;}
.y9d{bottom:683.804995px;}
.y121{bottom:692.561067px;}
.y2c6{bottom:692.649660px;}
.y11{bottom:693.241500px;}
.y1fe{bottom:693.244066px;}
.y275{bottom:693.835500px;}
.y212{bottom:696.133100px;}
.y246{bottom:696.217718px;}
.y74{bottom:696.220016px;}
.y4f{bottom:696.221614px;}
.y10{bottom:697.492500px;}
.yd7{bottom:697.494365px;}
.y179{bottom:698.343000px;}
.y9c{bottom:699.537973px;}
.y2c5{bottom:704.554740px;}
.yf{bottom:706.081500px;}
.y1fd{bottom:706.169609px;}
.y120{bottom:708.294045px;}
.ye{bottom:710.334000px;}
.y211{bottom:711.780717px;}
.y245{bottom:711.950600px;}
.y73{bottom:711.951798px;}
.y4e{bottom:711.953396px;}
.yd6{bottom:713.227342px;}
.y9b{bottom:715.184873px;}
.y2c4{bottom:716.545895px;}
.yd{bottom:719.008500px;}
.y1fc{bottom:719.010034px;}
.y274{bottom:721.391987px;}
.yc{bottom:723.259500px;}
.y11f{bottom:723.940945px;}
.y210{bottom:727.513694px;}
.y244{bottom:727.597318px;}
.y72{bottom:727.598698px;}
.y4d{bottom:727.600296px;}
.y2c3{bottom:728.450976px;}
.yd5{bottom:728.874243px;}
.y9a{bottom:730.916655px;}
.y1fb{bottom:731.851415px;}
.y11e{bottom:739.672727px;}
.y2c2{bottom:740.441174px;}
.y20f{bottom:743.160594px;}
.y243{bottom:743.329100px;}
.y71{bottom:743.330480px;}
.y4c{bottom:743.332078px;}
.ya{bottom:743.670190px;}
.y1fa{bottom:744.691840px;}
.y99{bottom:746.563555px;}
.yb{bottom:750.642000px;}
.y2c1{bottom:752.346255px;}
.y11d{bottom:755.319627px;}
.y273{bottom:755.918460px;}
.y1f9{bottom:757.532265px;}
.ycd{bottom:757.870950px;}
.y242{bottom:758.976000px;}
.y240{bottom:758.976218px;}
.y70{bottom:758.978576px;}
.y4b{bottom:758.978978px;}
.yd4{bottom:760.252925px;}
.y8{bottom:763.057500px;}
.y241{bottom:764.334000px;}
.y2c0{bottom:764.337410px;}
.y9{bottom:770.116500px;}
.y1f8{bottom:770.373647px;}
.y11c{bottom:771.052605px;}
.y20e{bottom:774.539277px;}
.y23f{bottom:774.708000px;}
.y6f{bottom:774.710358px;}
.y23d{bottom:774.710636px;}
.y4a{bottom:774.711956px;}
.y2bf{bottom:776.327609px;}
.y98{bottom:777.943433px;}
.y23e{bottom:779.980500px;}
.y1f7{bottom:783.214072px;}
.y11b{bottom:786.699505px;}
.y272{bottom:787.297142px;}
.y2be{bottom:788.232689px;}
.y6e{bottom:790.357258px;}
.y23c{bottom:790.357536px;}
.y49{bottom:790.358856px;}
.y1f6{bottom:796.055453px;}
.y2bd{bottom:800.222888px;}
.y7{bottom:800.561432px;}
.yd3{bottom:805.068000px;}
.y20d{bottom:806.088917px;}
.y6d{bottom:806.089040px;}
.y23b{bottom:806.089318px;}
.y48{bottom:806.090638px;}
.y1f5{bottom:808.980996px;}
.y11a{bottom:810.424500px;}
.y119{bottom:810.426505px;}
.y2bc{bottom:812.128925px;}
.y97{bottom:815.530424px;}
.y271{bottom:818.677020px;}
.y20c{bottom:821.735818px;}
.y23a{bottom:821.736218px;}
.y6c{bottom:821.737136px;}
.y47{bottom:821.737538px;}
.y1f4{bottom:821.821421px;}
.y2bb{bottom:824.119124px;}
.y6{bottom:826.412716px;}
.y96{bottom:831.262206px;}
.y118{bottom:834.151500px;}
.y270{bottom:834.323920px;}
.y1f3{bottom:834.662803px;}
.y2ba{bottom:836.109322px;}
.y20b{bottom:837.467600px;}
.y237{bottom:837.467818px;}
.y239{bottom:837.468000px;}
.y6b{bottom:837.468917px;}
.y46{bottom:837.470516px;}
.y105{bottom:838.659000px;}
.y238{bottom:842.740500px;}
.y95{bottom:846.909107px;}
.y1f2{bottom:847.503228px;}
.y2b9{bottom:848.014403px;}
.y26f{bottom:850.055702px;}
.y5{bottom:852.264000px;}
.y236{bottom:853.114718px;}
.y6a{bottom:853.115818px;}
.y20a{bottom:853.116158px;}
.y45{bottom:853.117416px;}
.y2b8{bottom:860.005558px;}
.y1f1{bottom:860.344609px;}
.y94{bottom:862.642084px;}
.y26e{bottom:865.702602px;}
.y69{bottom:868.847600px;}
.y209{bottom:868.849136px;}
.y44{bottom:868.849198px;}
.y2b7{bottom:871.910638px;}
.y1f0{bottom:873.185034px;}
.y14f{bottom:874.715269px;}
.y93{bottom:878.288984px;}
.y199{bottom:880.668000px;}
.y26d{bottom:881.435580px;}
.y2b6{bottom:883.900837px;}
.y208{bottom:884.496036px;}
.y43{bottom:884.496098px;}
.y1ef{bottom:886.025459px;}
.y14e{bottom:887.556650px;}
.y92{bottom:894.020766px;}
.y2b5{bottom:895.806874px;}
.y26c{bottom:897.082480px;}
.y1ee{bottom:898.866841px;}
.y207{bottom:900.227818px;}
.y42{bottom:900.229076px;}
.y14d{bottom:900.397075px;}
.y2b4{bottom:907.797073px;}
.y91{bottom:909.667667px;}
.y1ed{bottom:911.792384px;}
.y26b{bottom:912.814262px;}
.y14c{bottom:913.238575px;}
.y206{bottom:915.874718px;}
.y41{bottom:915.875976px;}
.y2b3{bottom:919.787272px;}
.y1ec{bottom:924.632809px;}
.y90{bottom:925.400644px;}
.y14b{bottom:926.078575px;}
.y102{bottom:926.929075px;}
.y104{bottom:926.929500px;}
.y36{bottom:931.096500px;}
.y103{bottom:931.180500px;}
.y205{bottom:931.606100px;}
.y40{bottom:931.607758px;}
.y2b2{bottom:931.692352px;}
.y14a{bottom:938.921499px;}
.y101{bottom:939.769500px;}
.yff{bottom:939.770575px;}
.y8f{bottom:941.047544px;}
.y2b1{bottom:943.683507px;}
.y100{bottom:944.022000px;}
.y26a{bottom:944.194140px;}
.y1e9{bottom:944.362309px;}
.y1eb{bottom:944.362500px;}
.y204{bottom:947.253218px;}
.y3f{bottom:947.254658px;}
.y149{bottom:951.847042px;}
.yfe{bottom:952.611000px;}
.yfc{bottom:952.612075px;}
.y2b0{bottom:955.588588px;}
.y8e{bottom:956.779326px;}
.yfd{bottom:956.863500px;}
.y1ea{bottom:957.202925px;}
.y1e8{bottom:957.203690px;}
.y203{bottom:962.986100px;}
.y3e{bottom:962.987636px;}
.yf9{bottom:965.452075px;}
.yfb{bottom:965.452500px;}
.y2af{bottom:967.578786px;}
.yfa{bottom:969.703500px;}
.y35{bottom:971.490000px;}
.y148{bottom:971.576308px;}
.y1e7{bottom:976.932000px;}
.yf8{bottom:978.292500px;}
.yf6{bottom:978.293957px;}
.y202{bottom:978.633218px;}
.y3d{bottom:978.634536px;}
.y2ae{bottom:979.568985px;}
.yf7{bottom:982.545000px;}
.y8d{bottom:988.158008px;}
.yf5{bottom:991.219500px;}
.y2ad{bottom:991.475022px;}
.y3c{bottom:994.366318px;}
.y1e6{bottom:996.576072px;}
.y2ac{bottom:1003.465221px;}
.y68{bottom:1010.013218px;}
.yf4{bottom:1010.947536px;}
.y34{bottom:1014.009000px;}
.y2ab{bottom:1015.370301px;}
.yf3{bottom:1025.319000px;}
.y3b{bottom:1025.745000px;}
.y2aa{bottom:1027.360500px;}
.y1{bottom:1054.632757px;}
.y117{bottom:1055.074975px;}
.y1ae{bottom:1055.076731px;}
.y2a9{bottom:1055.079329px;}
.y201{bottom:1055.080854px;}
.y150{bottom:1055.080872px;}
.y2f1{bottom:1055.082276px;}
.y67{bottom:1055.083500px;}
.y39{bottom:1055.097757px;}
.h6{height:23.521113px;}
.h17{height:31.524082px;}
.h20{height:31.848520px;}
.h1d{height:32.661470px;}
.h7{height:33.622910px;}
.h1f{height:33.623083px;}
.hc{height:33.623438px;}
.h22{height:33.623675px;}
.h1b{height:33.624149px;}
.h1c{height:33.624610px;}
.hb{height:34.526473px;}
.h13{height:34.542038px;}
.h18{height:34.691904px;}
.h11{height:34.889951px;}
.h16{height:34.947744px;}
.h8{height:36.775371px;}
.h5{height:37.122363px;}
.h2{height:37.826367px;}
.h9{height:42.029824px;}
.h21{height:42.030553px;}
.h1e{height:42.031425px;}
.h4{height:55.689609px;}
.h12{height:68.468243px;}
.h10{height:68.476276px;}
.h3{height:70.925098px;}
.ha{height:73.551270px;}
.h19{height:74.345824px;}
.h14{height:74.682015px;}
.h15{height:74.686512px;}
.h1a{height:75.026038px;}
.hf{height:816.375000px;}
.hd{height:816.378000px;}
.he{height:816.750000px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w2{width:816.375000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.w4{width:1113.750000px;}
.w3{width:1114.015500px;}
.x0{left:0.000000px;}
.x1b{left:53.097757px;}
.x2{left:58.335000px;}
.x84{left:63.609300px;}
.xb{left:64.800000px;}
.x10{left:66.075450px;}
.x3a{left:67.436100px;}
.x7d{left:68.626650px;}
.x4e{left:70.752750px;}
.x7e{left:73.729050px;}
.x11{left:76.449760px;}
.x4f{left:80.192100px;}
.x1c{left:84.018750px;}
.x6e{left:85.386900px;}
.x1d{left:93.033000px;}
.x20{left:94.400597px;}
.x87{left:100.430122px;}
.x2f{left:101.962200px;}
.x3e{left:102.982650px;}
.x3f{left:110.636100px;}
.x30{left:113.188410px;}
.x9{left:115.317405px;}
.x60{left:118.629900px;}
.x22{left:121.605765px;}
.x7f{left:140.484900px;}
.x65{left:142.184282px;}
.x80{left:145.502250px;}
.x6f{left:147.550012px;}
.x54{left:157.918500px;}
.x44{left:159.703500px;}
.x43{left:163.701000px;}
.x21{left:164.976440px;}
.x45{left:172.119000px;}
.x12{left:177.901085px;}
.x70{left:183.940500px;}
.x71{left:189.042000px;}
.x66{left:190.657664px;}
.x93{left:200.861132px;}
.x19{left:205.285500px;}
.xa{left:209.281500px;}
.x46{left:222.037500px;}
.x47{left:224.503500px;}
.x53{left:233.857500px;}
.x5f{left:238.705500px;}
.x3{left:241.597500px;}
.x5d{left:243.892500px;}
.x4{left:248.145000px;}
.x41{left:253.499845px;}
.x14{left:260.391000px;}
.x42{left:261.833928px;}
.x72{left:263.791500px;}
.x15{left:269.064000px;}
.x73{left:275.527500px;}
.x31{left:276.973500px;}
.x55{left:279.354414px;}
.x94{left:281.307456px;}
.x1{left:282.915000px;}
.x89{left:284.878534px;}
.x67{left:287.686664px;}
.x92{left:288.791169px;}
.x8f{left:293.808364px;}
.xf{left:296.617500px;}
.x3b{left:302.569500px;}
.x13{left:304.270500px;}
.x3c{left:308.013000px;}
.x62{left:311.329500px;}
.x86{left:313.791965px;}
.x63{left:316.347000px;}
.x8a{left:318.044117px;}
.x81{left:322.299000px;}
.x27{left:331.908000px;}
.x5b{left:333.439500px;}
.x68{left:336.159164px;}
.x28{left:337.351500px;}
.xc{left:339.133572px;}
.x5c{left:342.114000px;}
.x88{left:352.058842px;}
.x52{left:383.358000px;}
.x69{left:384.631664px;}
.x82{left:389.055000px;}
.x8b{left:391.091847px;}
.x18{left:392.793368px;}
.x83{left:394.072500px;}
.x90{left:396.109042px;}
.x76{left:399.259500px;}
.x2d{left:403.086000px;}
.x17{left:405.255000px;}
.x74{left:406.914000px;}
.x2e{left:408.529500px;}
.x8c{left:409.800650px;}
.x75{left:412.015500px;}
.x8d{left:419.494568px;}
.x5{left:425.281500px;}
.x48{left:429.108000px;}
.x6{left:431.830500px;}
.x6a{left:433.104546px;}
.x49{left:434.211000px;}
.x91{left:438.288490px;}
.x8e{left:442.455459px;}
.xd{left:451.723996px;}
.x77{left:471.457500px;}
.x78{left:476.560500px;}
.x29{left:480.132000px;}
.x6b{left:481.662164px;}
.x2a{left:485.149500px;}
.x23{left:489.996000px;}
.x24{left:495.439500px;}
.x40{left:500.031000px;}
.x85{left:515.077534px;}
.x6c{left:530.134664px;}
.x32{left:536.598000px;}
.x57{left:537.874500px;}
.x33{left:541.615500px;}
.x3d{left:547.483500px;}
.x16{left:548.880000px;}
.xe{left:561.848860px;}
.x37{left:565.171500px;}
.x79{left:568.233000px;}
.x7a{left:573.336000px;}
.x6d{left:578.606046px;}
.x5a{left:579.714000px;}
.x34{left:584.560500px;}
.x7{left:588.982500px;}
.x5e{left:591.874500px;}
.x35{left:593.235000px;}
.x36{left:597.316500px;}
.x38{left:603.609000px;}
.x8{left:605.820000px;}
.x39{left:607.690500px;}
.x50{left:617.641500px;}
.x4c{left:619.426500px;}
.x4d{left:624.529500px;}
.x51{left:627.079500px;}
.x4a{left:642.558000px;}
.x4b{left:647.574000px;}
.x61{left:653.272500px;}
.x7b{left:692.560500px;}
.x7c{left:697.663500px;}
.x2b{left:720.028500px;}
.x2c{left:725.470500px;}
.x58{left:740.352000px;}
.x25{left:745.030500px;}
.x59{left:748.686000px;}
.x26{left:750.046500px;}
.x56{left:752.853000px;}
.x64{left:754.554000px;}
.x1e{left:760.159357px;}
.x1f{left:925.051124px;}
.x1a{left:1055.097757px;}
@media print{
.v7{vertical-align:-6.346554pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.115099pt;}
.v1{vertical-align:3.323006pt;}
.v8{vertical-align:11.189446pt;}
.v5{vertical-align:12.393563pt;}
.v3{vertical-align:13.896244pt;}
.v4{vertical-align:15.412984pt;}
.v9{vertical-align:29.024169pt;}
.v6{vertical-align:36.584207pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.110941pt;}
.ls13{letter-spacing:0.127678pt;}
.ls0{letter-spacing:1.467970pt;}
.ls2e{letter-spacing:2.355200pt;}
.ls29{letter-spacing:2.357333pt;}
.ls2b{letter-spacing:2.357867pt;}
.ls8{letter-spacing:2.360533pt;}
.ls11{letter-spacing:2.510667pt;}
.ls1a{letter-spacing:2.610400pt;}
.ls20{letter-spacing:2.611467pt;}
.ls1f{letter-spacing:2.612000pt;}
.ls1e{letter-spacing:2.615733pt;}
.ls2c{letter-spacing:2.637333pt;}
.ls6{letter-spacing:2.659200pt;}
.ls23{letter-spacing:2.660267pt;}
.ls2f{letter-spacing:2.664533pt;}
.ls16{letter-spacing:2.814667pt;}
.ls2d{letter-spacing:2.914400pt;}
.ls2{letter-spacing:2.941333pt;}
.ls18{letter-spacing:6.871639pt;}
.ls1b{letter-spacing:6.877665pt;}
.ls17{letter-spacing:7.081700pt;}
.lsc{letter-spacing:7.179466pt;}
.ls12{letter-spacing:7.183717pt;}
.ls30{letter-spacing:8.692722pt;}
.ls3a{letter-spacing:8.698428pt;}
.ls31{letter-spacing:9.338832pt;}
.ls39{letter-spacing:9.524744pt;}
.lsb{letter-spacing:10.099426pt;}
.ls22{letter-spacing:10.395267pt;}
.ls21{letter-spacing:10.402068pt;}
.ls3b{letter-spacing:11.116169pt;}
.ls10{letter-spacing:11.714984pt;}
.ls9{letter-spacing:11.834004pt;}
.lsf{letter-spacing:11.876512pt;}
.ls35{letter-spacing:12.586382pt;}
.ls34{letter-spacing:12.611886pt;}
.ls25{letter-spacing:12.620388pt;}
.lsa{letter-spacing:12.893067pt;}
.ls5{letter-spacing:14.954033pt;}
.ls36{letter-spacing:15.026295pt;}
.ls38{letter-spacing:15.030546pt;}
.ls2a{letter-spacing:15.039047pt;}
.ls37{letter-spacing:15.306843pt;}
.ls24{letter-spacing:15.646900pt;}
.ls4{letter-spacing:15.859436pt;}
.lse{letter-spacing:16.121921pt;}
.ls1{letter-spacing:16.922845pt;}
.ls33{letter-spacing:17.121900pt;}
.ls32{letter-spacing:17.147404pt;}
.ls27{letter-spacing:17.502271pt;}
.ls26{letter-spacing:17.801513pt;}
.ls28{letter-spacing:17.804913pt;}
.ls7{letter-spacing:22.027231pt;}
.ls15{letter-spacing:22.299277pt;}
.ls14{letter-spacing:22.456554pt;}
.ls1c{letter-spacing:31.404319pt;}
.ls19{letter-spacing:36.812389pt;}
.ls1d{letter-spacing:223.044284pt;}
.ws165{word-spacing:-242.733063pt;}
.wsc8{word-spacing:-42.507200pt;}
.ws1e3{word-spacing:-34.004800pt;}
.ws104{word-spacing:-33.070602pt;}
.ws113{word-spacing:-27.629333pt;}
.ws10f{word-spacing:-27.417144pt;}
.wsf{word-spacing:-26.053743pt;}
.ws40{word-spacing:-24.611669pt;}
.ws7d{word-spacing:-22.150224pt;}
.ws177{word-spacing:-21.933096pt;}
.ws8{word-spacing:-21.737976pt;}
.ws2{word-spacing:-21.538128pt;}
.ws25a{word-spacing:-20.139911pt;}
.wsfb{word-spacing:-19.969632pt;}
.ws25d{word-spacing:-19.799854pt;}
.wsf8{word-spacing:-19.688779pt;}
.ws253{word-spacing:-18.707419pt;}
.ws264{word-spacing:-18.703168pt;}
.ws26b{word-spacing:-18.477880pt;}
.ws37{word-spacing:-18.395823pt;}
.ws16a{word-spacing:-18.156298pt;}
.wsfa{word-spacing:-18.010925pt;}
.ws3{word-spacing:-17.875282pt;}
.wse1{word-spacing:-17.854075pt;}
.ws111{word-spacing:-17.820920pt;}
.ws4{word-spacing:-17.760513pt;}
.ws25e{word-spacing:-17.597981pt;}
.ws5{word-spacing:-17.595533pt;}
.ws262{word-spacing:-17.529969pt;}
.ws261{word-spacing:-17.495964pt;}
.wsb6{word-spacing:-16.817338pt;}
.wsdf{word-spacing:-16.515115pt;}
.ws21c{word-spacing:-16.301511pt;}
.ws8f{word-spacing:-16.271756pt;}
.ws11d{word-spacing:-16.263255pt;}
.ws1ac{word-spacing:-16.237750pt;}
.ws11c{word-spacing:-16.207995pt;}
.wsb2{word-spacing:-16.199494pt;}
.ws59{word-spacing:-16.127232pt;}
.ws227{word-spacing:-16.118730pt;}
.wsa4{word-spacing:-16.110229pt;}
.ws109{word-spacing:-16.097477pt;}
.wsfc{word-spacing:-16.094472pt;}
.wscf{word-spacing:-16.093226pt;}
.wsf7{word-spacing:-16.084270pt;}
.wse7{word-spacing:-16.080870pt;}
.ws58{word-spacing:-16.080474pt;}
.ws10b{word-spacing:-16.071972pt;}
.ws21b{word-spacing:-16.067722pt;}
.wsf3{word-spacing:-16.043465pt;}
.ws244{word-spacing:-16.016713pt;}
.ws197{word-spacing:-16.012462pt;}
.ws4f{word-spacing:-16.008212pt;}
.ws110{word-spacing:-15.997384pt;}
.wsce{word-spacing:-15.978456pt;}
.ws57{word-spacing:-15.961454pt;}
.ws3e{word-spacing:-15.957203pt;}
.wsa5{word-spacing:-15.935949pt;}
.ws107{word-spacing:-15.927448pt;}
.ws99{word-spacing:-15.897693pt;}
.ws98{word-spacing:-15.889191pt;}
.wsf5{word-spacing:-15.883642pt;}
.ws221{word-spacing:-15.880690pt;}
.ws1cb{word-spacing:-15.876439pt;}
.ws207{word-spacing:-15.863687pt;}
.wscd{word-spacing:-15.846684pt;}
.wsd1{word-spacing:-15.842433pt;}
.ws82{word-spacing:-15.812678pt;}
.ws108{word-spacing:-15.795676pt;}
.ws10a{word-spacing:-15.791425pt;}
.ws232{word-spacing:-15.787174pt;}
.ws254{word-spacing:-15.778673pt;}
.ws1b4{word-spacing:-15.774422pt;}
.wsae{word-spacing:-15.710661pt;}
.ws10c{word-spacing:-15.697909pt;}
.ws1cc{word-spacing:-15.672405pt;}
.wsc2{word-spacing:-15.655402pt;}
.ws182{word-spacing:-15.634148pt;}
.wsa2{word-spacing:-15.608644pt;}
.ws209{word-spacing:-15.578889pt;}
.wsa3{word-spacing:-15.544883pt;}
.ws219{word-spacing:-15.506627pt;}
.ws21d{word-spacing:-15.455618pt;}
.ws21e{word-spacing:-15.421612pt;}
.ws4b{word-spacing:-15.417361pt;}
.ws24f{word-spacing:-15.413111pt;}
.ws1d5{word-spacing:-15.396108pt;}
.wsde{word-spacing:-15.391857pt;}
.ws223{word-spacing:-15.374854pt;}
.ws1ad{word-spacing:-15.366353pt;}
.ws1f2{word-spacing:-15.362102pt;}
.ws68{word-spacing:-15.353601pt;}
.ws21f{word-spacing:-15.349350pt;}
.ws231{word-spacing:-15.325969pt;}
.ws188{word-spacing:-15.319595pt;}
.ws121{word-spacing:-15.306843pt;}
.ws196{word-spacing:-15.298341pt;}
.ws127{word-spacing:-15.294091pt;}
.ws20e{word-spacing:-15.289840pt;}
.ws195{word-spacing:-15.285589pt;}
.ws1d4{word-spacing:-15.272837pt;}
.ws6c{word-spacing:-15.217578pt;}
.ws66{word-spacing:-15.204825pt;}
.ws20d{word-spacing:-15.187823pt;}
.ws67{word-spacing:-15.183572pt;}
.ws1f1{word-spacing:-15.175070pt;}
.wsb3{word-spacing:-15.115560pt;}
.ws126{word-spacing:-15.107059pt;}
.ws125{word-spacing:-15.102808pt;}
.ws4c{word-spacing:-15.060301pt;}
.ws6b{word-spacing:-15.056050pt;}
.ws10d{word-spacing:-15.051800pt;}
.wsbd{word-spacing:-15.030546pt;}
.ws124{word-spacing:-15.022044pt;}
.ws85{word-spacing:-15.017794pt;}
.ws7a{word-spacing:-15.004003pt;}
.ws13f{word-spacing:-14.996540pt;}
.ws1d0{word-spacing:-14.971036pt;}
.ws266{word-spacing:-14.890272pt;}
.ws1d1{word-spacing:-14.881771pt;}
.ws47{word-spacing:-14.843514pt;}
.ws148{word-spacing:-14.830762pt;}
.ws9a{word-spacing:-14.818010pt;}
.ws48{word-spacing:-14.805258pt;}
.ws1f4{word-spacing:-14.801007pt;}
.ws86{word-spacing:-14.788255pt;}
.ws22f{word-spacing:-14.767001pt;}
.ws65{word-spacing:-14.749998pt;}
.ws147{word-spacing:-14.745748pt;}
.ws210{word-spacing:-14.745529pt;}
.ws143{word-spacing:-14.728745pt;}
.ws1ff{word-spacing:-14.724494pt;}
.ws187{word-spacing:-14.715993pt;}
.ws1f3{word-spacing:-14.686238pt;}
.ws202{word-spacing:-14.681987pt;}
.ws1c2{word-spacing:-14.609725pt;}
.ws212{word-spacing:-14.584220pt;}
.ws1c3{word-spacing:-14.575719pt;}
.ws213{word-spacing:-14.567217pt;}
.ws226{word-spacing:-14.537462pt;}
.ws14b{word-spacing:-14.503457pt;}
.ws151{word-spacing:-14.499206pt;}
.wsa7{word-spacing:-14.494955pt;}
.ws211{word-spacing:-14.486454pt;}
.ws191{word-spacing:-14.448197pt;}
.wsbb{word-spacing:-14.426944pt;}
.ws20f{word-spacing:-14.414192pt;}
.ws153{word-spacing:-14.380186pt;}
.ws201{word-spacing:-14.375935pt;}
.ws200{word-spacing:-14.301267pt;}
.ws251{word-spacing:-14.282419pt;}
.ws1ef{word-spacing:-14.278168pt;}
.ws146{word-spacing:-14.265416pt;}
.ws94{word-spacing:-14.214408pt;}
.ws1b0{word-spacing:-14.197405pt;}
.ws15c{word-spacing:-14.184653pt;}
.ws15d{word-spacing:-14.163399pt;}
.ws17d{word-spacing:-14.159148pt;}
.wsbc{word-spacing:-14.146396pt;}
.ws95{word-spacing:-14.142145pt;}
.ws1bb{word-spacing:-14.129393pt;}
.ws1c7{word-spacing:-14.125143pt;}
.ws114{word-spacing:-14.116641pt;}
.ws1af{word-spacing:-14.074134pt;}
.ws10e{word-spacing:-14.027376pt;}
.ws15b{word-spacing:-14.023125pt;}
.ws6{word-spacing:-13.984786pt;}
.ws1c8{word-spacing:-13.976367pt;}
.ws15e{word-spacing:-13.967866pt;}
.ws15a{word-spacing:-13.942362pt;}
.ws249{word-spacing:-13.925359pt;}
.ws7{word-spacing:-13.917199pt;}
.ws90{word-spacing:-13.912607pt;}
.ws248{word-spacing:-13.895604pt;}
.ws160{word-spacing:-13.887102pt;}
.ws9e{word-spacing:-13.882852pt;}
.ws6a{word-spacing:-13.844595pt;}
.ws14d{word-spacing:-13.840344pt;}
.ws14c{word-spacing:-13.831843pt;}
.ws17e{word-spacing:-13.810589pt;}
.ws22b{word-spacing:-13.789336pt;}
.ws9{word-spacing:-13.782026pt;}
.ws1b5{word-spacing:-13.772333pt;}
.ws190{word-spacing:-13.695820pt;}
.ws117{word-spacing:-13.674566pt;}
.ws235{word-spacing:-13.661814pt;}
.ws118{word-spacing:-13.610805pt;}
.ws1ea{word-spacing:-13.598053pt;}
.ws73{word-spacing:-13.593803pt;}
.ws75{word-spacing:-13.581050pt;}
.ws119{word-spacing:-13.559797pt;}
.ws1b6{word-spacing:-13.538543pt;}
.ws220{word-spacing:-13.517290pt;}
.ws22a{word-spacing:-13.513039pt;}
.ws1bc{word-spacing:-13.504537pt;}
.ws14f{word-spacing:-13.483284pt;}
.wsab{word-spacing:-13.402520pt;}
.wsc7{word-spacing:-13.360013pt;}
.ws243{word-spacing:-13.338759pt;}
.ws150{word-spacing:-13.304754pt;}
.ws97{word-spacing:-13.300503pt;}
.wsaa{word-spacing:-13.292001pt;}
.ws217{word-spacing:-13.279249pt;}
.ws218{word-spacing:-13.274999pt;}
.ws106{word-spacing:-13.257996pt;}
.ws103{word-spacing:-13.245244pt;}
.ws15f{word-spacing:-13.236742pt;}
.ws83{word-spacing:-13.215488pt;}
.ws205{word-spacing:-13.202796pt;}
.ws203{word-spacing:-13.202736pt;}
.ws105{word-spacing:-13.189984pt;}
.wsa0{word-spacing:-13.181483pt;}
.ws1fc{word-spacing:-13.168731pt;}
.wsd2{word-spacing:-13.075215pt;}
.ws239{word-spacing:-13.070964pt;}
.ws8e{word-spacing:-13.066713pt;}
.wsd3{word-spacing:-13.032708pt;}
.wsd4{word-spacing:-12.998702pt;}
.ws12a{word-spacing:-12.985950pt;}
.ws1b9{word-spacing:-12.977448pt;}
.wsa1{word-spacing:-12.973197pt;}
.ws14e{word-spacing:-12.934941pt;}
.ws129{word-spacing:-12.913687pt;}
.ws1b7{word-spacing:-12.909437pt;}
.ws234{word-spacing:-12.896684pt;}
.ws23a{word-spacing:-12.871180pt;}
.ws204{word-spacing:-12.866929pt;}
.ws1f6{word-spacing:-12.862679pt;}
.ws265{word-spacing:-12.773414pt;}
.ws1a{word-spacing:-12.769853pt;}
.wsc6{word-spacing:-12.769163pt;}
.ws4a{word-spacing:-12.756411pt;}
.ws19b{word-spacing:-12.688399pt;}
.ws19a{word-spacing:-12.684148pt;}
.ws20a{word-spacing:-12.650143pt;}
.ws185{word-spacing:-12.633140pt;}
.ws13d{word-spacing:-12.620388pt;}
.ws230{word-spacing:-12.611886pt;}
.ws186{word-spacing:-12.607636pt;}
.ws17f{word-spacing:-12.599134pt;}
.ws198{word-spacing:-12.594883pt;}
.ws89{word-spacing:-12.586382pt;}
.ws142{word-spacing:-12.582131pt;}
.ws20b{word-spacing:-12.573630pt;}
.ws1b8{word-spacing:-12.560878pt;}
.ws199{word-spacing:-12.480114pt;}
.ws1fd{word-spacing:-12.471612pt;}
.ws88{word-spacing:-12.420604pt;}
.wsc5{word-spacing:-12.403601pt;}
.ws87{word-spacing:-12.382347pt;}
.ws1bf{word-spacing:-12.369595pt;}
.wsa6{word-spacing:-12.361094pt;}
.ws84{word-spacing:-12.331339pt;}
.ws1be{word-spacing:-12.314336pt;}
.ws1fe{word-spacing:-12.310085pt;}
.ws180{word-spacing:-12.305834pt;}
.ws140{word-spacing:-12.254826pt;}
.ws194{word-spacing:-12.225071pt;}
.ws24a{word-spacing:-12.208068pt;}
.ws2b{word-spacing:-12.196013pt;}
.ws20{word-spacing:-12.180710pt;}
.ws156{word-spacing:-12.144307pt;}
.ws149{word-spacing:-12.131555pt;}
.wsca{word-spacing:-12.123053pt;}
.ws96{word-spacing:-12.093298pt;}
.ws183{word-spacing:-12.084797pt;}
.ws49{word-spacing:-12.080546pt;}
.ws13b{word-spacing:-12.076296pt;}
.ws1cf{word-spacing:-12.072045pt;}
.ws56{word-spacing:-12.067794pt;}
.ws36{word-spacing:-12.063543pt;}
.ws152{word-spacing:-12.059293pt;}
.ws259{word-spacing:-12.055042pt;}
.ws71{word-spacing:-12.046540pt;}
.ws17b{word-spacing:-12.038039pt;}
.wsc9{word-spacing:-12.033788pt;}
.wsb8{word-spacing:-12.029538pt;}
.ws70{word-spacing:-12.025287pt;}
.ws22e{word-spacing:-12.021036pt;}
.ws1c0{word-spacing:-12.016785pt;}
.ws1ae{word-spacing:-12.012535pt;}
.wsdd{word-spacing:-12.008284pt;}
.ws3f{word-spacing:-12.004033pt;}
.ws1f0{word-spacing:-11.999783pt;}
.ws69{word-spacing:-11.995532pt;}
.ws1aa{word-spacing:-11.991944pt;}
.wscb{word-spacing:-11.991281pt;}
.ws13c{word-spacing:-11.974278pt;}
.ws18e{word-spacing:-11.965777pt;}
.ws9f{word-spacing:-11.961526pt;}
.ws8b{word-spacing:-11.957275pt;}
.wsfe{word-spacing:-11.953025pt;}
.ws141{word-spacing:-11.948774pt;}
.ws39{word-spacing:-11.944523pt;}
.ws208{word-spacing:-11.919019pt;}
.wsbf{word-spacing:-11.914768pt;}
.ws1d3{word-spacing:-11.910517pt;}
.ws52{word-spacing:-11.906267pt;}
.ws241{word-spacing:-11.904288pt;}
.ws189{word-spacing:-11.880762pt;}
.ws250{word-spacing:-11.876512pt;}
.ws7f{word-spacing:-11.863760pt;}
.wsc3{word-spacing:-11.859509pt;}
.ws25c{word-spacing:-11.851007pt;}
.ws8a{word-spacing:-11.846757pt;}
.ws222{word-spacing:-11.842506pt;}
.ws54{word-spacing:-11.838255pt;}
.ws245{word-spacing:-11.812751pt;}
.wscc{word-spacing:-11.810174pt;}
.ws233{word-spacing:-11.782996pt;}
.ws41{word-spacing:-11.778745pt;}
.ws1ab{word-spacing:-11.765993pt;}
.ws157{word-spacing:-11.740489pt;}
.ws55{word-spacing:-11.731987pt;}
.ws11e{word-spacing:-11.727736pt;}
.ws242{word-spacing:-11.723486pt;}
.ws25b{word-spacing:-11.719235pt;}
.ws53{word-spacing:-11.702232pt;}
.ws1a9{word-spacing:-11.699843pt;}
.ws2b4{word-spacing:-11.656845pt;}
.ws1ba{word-spacing:-11.655474pt;}
.ws246{word-spacing:-11.646973pt;}
.ws216{word-spacing:-11.578961pt;}
.ws27{word-spacing:-11.564789pt;}
.ws2af{word-spacing:-11.561632pt;}
.ws1fa{word-spacing:-11.557708pt;}
.ws8d{word-spacing:-11.544956pt;}
.ws2a4{word-spacing:-11.527627pt;}
.ws8c{word-spacing:-11.515200pt;}
.ws2b6{word-spacing:-11.480020pt;}
.ws275{word-spacing:-11.476620pt;}
.wsbe{word-spacing:-11.472693pt;}
.ws2a1{word-spacing:-11.432414pt;}
.ws1c5{word-spacing:-11.425935pt;}
.ws2c9{word-spacing:-11.408610pt;}
.ws24e{word-spacing:-11.400431pt;}
.ws2ae{word-spacing:-11.391608pt;}
.ws1b{word-spacing:-11.377334pt;}
.ws154{word-spacing:-11.366425pt;}
.ws28{word-spacing:-11.365858pt;}
.ws1f8{word-spacing:-11.353673pt;}
.ws2a7{word-spacing:-11.344001pt;}
.ws1c4{word-spacing:-11.328169pt;}
.ws2a8{word-spacing:-11.296395pt;}
.ws299{word-spacing:-11.279392pt;}
.ws20c{word-spacing:-11.255907pt;}
.ws2ce{word-spacing:-11.235186pt;}
.ws228{word-spacing:-11.209149pt;}
.ws2a3{word-spacing:-11.207982pt;}
.ws247{word-spacing:-11.200647pt;}
.ws1f9{word-spacing:-11.187895pt;}
.ws2cf{word-spacing:-11.180778pt;}
.ws286{word-spacing:-11.177378pt;}
.ws144{word-spacing:-11.119884pt;}
.wsc1{word-spacing:-11.098630pt;}
.ws1d6{word-spacing:-11.094240pt;}
.ws1f7{word-spacing:-11.085878pt;}
.ws122{word-spacing:-11.077376pt;}
.ws206{word-spacing:-11.068875pt;}
.ws278{word-spacing:-11.065162pt;}
.ws33{word-spacing:-11.063635pt;}
.ws1c6{word-spacing:-11.056123pt;}
.ws2a2{word-spacing:-11.054960pt;}
.ws31{word-spacing:-11.048333pt;}
.ws100{word-spacing:-11.047621pt;}
.ws289{word-spacing:-11.007354pt;}
.ws2f{word-spacing:-11.006251pt;}
.ws32{word-spacing:-10.964170pt;}
.ws229{word-spacing:-10.949855pt;}
.ws29{word-spacing:-10.925914pt;}
.ws28a{word-spacing:-10.922342pt;}
.ws1d8{word-spacing:-10.891483pt;}
.ws276{word-spacing:-10.874735pt;}
.ws101{word-spacing:-10.873342pt;}
.wsfd{word-spacing:-10.857053pt;}
.ws24{word-spacing:-10.853227pt;}
.ws12b{word-spacing:-10.845576pt;}
.ws134{word-spacing:-10.841750pt;}
.ws2e{word-spacing:-10.826448pt;}
.ws24b{word-spacing:-10.818082pt;}
.ws30{word-spacing:-10.814971pt;}
.ws277{word-spacing:-10.806725pt;}
.ws267{word-spacing:-10.796829pt;}
.ws123{word-spacing:-10.792578pt;}
.ws4e{word-spacing:-10.733068pt;}
.ws102{word-spacing:-10.673558pt;}
.wse2{word-spacing:-10.669598pt;}
.ws135{word-spacing:-10.658122pt;}
.ws1ce{word-spacing:-10.652304pt;}
.ws1cd{word-spacing:-10.648054pt;}
.ws1f5{word-spacing:-10.635301pt;}
.ws1d7{word-spacing:-10.627517pt;}
.ws44{word-spacing:-10.626800pt;}
.ws16b{word-spacing:-10.612214pt;}
.ws2ca{word-spacing:-10.589095pt;}
.ws1fb{word-spacing:-10.571541pt;}
.ws4d{word-spacing:-10.563039pt;}
.ws5d{word-spacing:-10.546036pt;}
.wsff{word-spacing:-10.529033pt;}
.ws128{word-spacing:-10.516281pt;}
.wsad{word-spacing:-10.503529pt;}
.ws2b9{word-spacing:-10.497282pt;}
.ws2ba{word-spacing:-10.459876pt;}
.ws24c{word-spacing:-10.410013pt;}
.ws155{word-spacing:-10.359005pt;}
.ws0{word-spacing:-10.329120pt;}
.ws2c6{word-spacing:-10.323857pt;}
.ws2a6{word-spacing:-10.279651pt;}
.ws5c{word-spacing:-10.269740pt;}
.ws2bb{word-spacing:-10.269450pt;}
.wsba{word-spacing:-10.261238pt;}
.ws23e{word-spacing:-10.256987pt;}
.ws161{word-spacing:-10.214480pt;}
.ws29d{word-spacing:-10.194639pt;}
.ws2c8{word-spacing:-10.170836pt;}
.ws2a9{word-spacing:-10.140231pt;}
.ws21a{word-spacing:-10.112463pt;}
.ws11f{word-spacing:-10.099711pt;}
.ws2a5{word-spacing:-10.058620pt;}
.ws23f{word-spacing:-10.057528pt;}
.wsac{word-spacing:-10.052953pt;}
.ws1c9{word-spacing:-10.048702pt;}
.ws2c7{word-spacing:-10.045018pt;}
.ws5f{word-spacing:-10.044451pt;}
.ws2cb{word-spacing:-10.011013pt;}
.ws23d{word-spacing:-10.008818pt;}
.ws18d{word-spacing:-9.993443pt;}
.ws269{word-spacing:-9.976440pt;}
.ws6e{word-spacing:-9.972189pt;}
.ws91{word-spacing:-9.963688pt;}
.ws11a{word-spacing:-9.955186pt;}
.ws240{word-spacing:-9.950936pt;}
.ws268{word-spacing:-9.946685pt;}
.ws6d{word-spacing:-9.942434pt;}
.ws11b{word-spacing:-9.929682pt;}
.ws22{word-spacing:-9.923606pt;}
.ws26a{word-spacing:-9.921180pt;}
.ws60{word-spacing:-9.916930pt;}
.ws1ca{word-spacing:-9.912679pt;}
.ws18c{word-spacing:-9.908428pt;}
.ws23c{word-spacing:-9.904178pt;}
.ws9b{word-spacing:-9.891425pt;}
.ws5e{word-spacing:-9.887175pt;}
.ws1d2{word-spacing:-9.882924pt;}
.ws23b{word-spacing:-9.874423pt;}
.ws297{word-spacing:-9.864792pt;}
.ws12e{word-spacing:-9.749176pt;}
.ws1b3{word-spacing:-9.742650pt;}
.wsef{word-spacing:-9.738975pt;}
.ws274{word-spacing:-9.732174pt;}
.wse8{word-spacing:-9.704970pt;}
.ws1d9{word-spacing:-9.698169pt;}
.ws130{word-spacing:-9.687968pt;}
.wse3{word-spacing:-9.681167pt;}
.wsf2{word-spacing:-9.670965pt;}
.ws296{word-spacing:-9.667565pt;}
.wse9{word-spacing:-9.664164pt;}
.ws145{word-spacing:-9.661887pt;}
.wsf1{word-spacing:-9.657363pt;}
.ws12f{word-spacing:-9.647162pt;}
.ws132{word-spacing:-9.643761pt;}
.ws131{word-spacing:-9.636960pt;}
.ws2c{word-spacing:-9.636686pt;}
.ws7c{word-spacing:-9.632861pt;}
.ws173{word-spacing:-9.626759pt;}
.ws1e1{word-spacing:-9.620370pt;}
.ws137{word-spacing:-9.616557pt;}
.ws1b1{word-spacing:-9.613733pt;}
.ws1b2{word-spacing:-9.610878pt;}
.wsf0{word-spacing:-9.609756pt;}
.ws176{word-spacing:-9.607040pt;}
.ws16f{word-spacing:-9.606356pt;}
.ws136{word-spacing:-9.602956pt;}
.ws18a{word-spacing:-9.602256pt;}
.ws1db{word-spacing:-9.600100pt;}
.ws27b{word-spacing:-9.599555pt;}
.ws174{word-spacing:-9.599363pt;}
.ws1da{word-spacing:-9.596966pt;}
.ws1dd{word-spacing:-9.594767pt;}
.ws171{word-spacing:-9.592754pt;}
.wse0{word-spacing:-9.586954pt;}
.ws1ee{word-spacing:-9.585374pt;}
.ws133{word-spacing:-9.582553pt;}
.ws271{word-spacing:-9.568951pt;}
.ws34{word-spacing:-9.567826pt;}
.ws13a{word-spacing:-9.565550pt;}
.ws3a{word-spacing:-9.560174pt;}
.ws184{word-spacing:-9.552523pt;}
.wse5{word-spacing:-9.545147pt;}
.ws2b5{word-spacing:-9.541747pt;}
.ws19e{word-spacing:-9.536850pt;}
.ws12c{word-spacing:-9.534946pt;}
.ws19c{word-spacing:-9.533395pt;}
.wse4{word-spacing:-9.524744pt;}
.ws168{word-spacing:-9.521344pt;}
.ws166{word-spacing:-9.517944pt;}
.ws12d{word-spacing:-9.511143pt;}
.wsa9{word-spacing:-9.508861pt;}
.wsea{word-spacing:-9.500941pt;}
.wseb{word-spacing:-9.483939pt;}
.ws1e4{word-spacing:-9.480538pt;}
.ws19d{word-spacing:-9.473737pt;}
.ws162{word-spacing:-9.470337pt;}
.ws2c0{word-spacing:-9.463536pt;}
.ws18b{word-spacing:-9.445406pt;}
.ws2c2{word-spacing:-9.439732pt;}
.wsa8{word-spacing:-9.432348pt;}
.ws260{word-spacing:-9.428097pt;}
.ws61{word-spacing:-9.423846pt;}
.ws138{word-spacing:-9.412529pt;}
.ws2c1{word-spacing:-9.392126pt;}
.ws139{word-spacing:-9.375123pt;}
.wsc0{word-spacing:-9.372838pt;}
.ws285{word-spacing:-9.364922pt;}
.wsf6{word-spacing:-9.361521pt;}
.ws1e0{word-spacing:-9.317727pt;}
.wsb7{word-spacing:-9.315336pt;}
.ws21{word-spacing:-9.311510pt;}
.ws1df{word-spacing:-9.311011pt;}
.ws263{word-spacing:-9.304826pt;}
.ws1e8{word-spacing:-9.303359pt;}
.ws25f{word-spacing:-9.300575pt;}
.ws1dc{word-spacing:-9.292124pt;}
.ws1de{word-spacing:-9.290767pt;}
.ws1ed{word-spacing:-9.283572pt;}
.ws164{word-spacing:-9.269708pt;}
.ws6f{word-spacing:-9.245316pt;}
.ws35{word-spacing:-9.231173pt;}
.ws291{word-spacing:-9.058879pt;}
.ws74{word-spacing:-9.045532pt;}
.ws192{word-spacing:-9.003025pt;}
.ws1e9{word-spacing:-8.973270pt;}
.ws2ab{word-spacing:-8.967066pt;}
.ws3c{word-spacing:-8.943403pt;}
.ws290{word-spacing:-8.943262pt;}
.ws224{word-spacing:-8.905258pt;}
.ws193{word-spacing:-8.884005pt;}
.ws2d{word-spacing:-8.860090pt;}
.ws45{word-spacing:-8.832996pt;}
.ws28f{word-spacing:-8.831047pt;}
.ws2c5{word-spacing:-8.800442pt;}
.ws42{word-spacing:-8.764985pt;}
.ws43{word-spacing:-8.722477pt;}
.ws18{word-spacing:-8.710891pt;}
.wsd0{word-spacing:-8.701224pt;}
.wsb5{word-spacing:-8.679970pt;}
.ws292{word-spacing:-8.674624pt;}
.ws252{word-spacing:-8.658717pt;}
.ws225{word-spacing:-8.637463pt;}
.ws27e{word-spacing:-8.637219pt;}
.ws2c4{word-spacing:-8.627018pt;}
.ws28c{word-spacing:-8.620217pt;}
.ws27f{word-spacing:-8.613416pt;}
.ws282{word-spacing:-8.606615pt;}
.ws2b3{word-spacing:-8.599814pt;}
.ws26e{word-spacing:-8.596413pt;}
.ws2ad{word-spacing:-8.586212pt;}
.ws2bf{word-spacing:-8.576011pt;}
.ws270{word-spacing:-8.562409pt;}
.ws27d{word-spacing:-8.545406pt;}
.ws281{word-spacing:-8.538605pt;}
.ws22d{word-spacing:-8.535446pt;}
.ws280{word-spacing:-8.535205pt;}
.ws2b1{word-spacing:-8.531804pt;}
.ws28e{word-spacing:-8.528404pt;}
.ws181{word-spacing:-8.526944pt;}
.ws283{word-spacing:-8.525003pt;}
.ws284{word-spacing:-8.521603pt;}
.ws2cc{word-spacing:-8.518202pt;}
.ws273{word-spacing:-8.514802pt;}
.ws5b{word-spacing:-8.514192pt;}
.ws29f{word-spacing:-8.511401pt;}
.ws287{word-spacing:-8.504600pt;}
.wsed{word-spacing:-8.501200pt;}
.ws26f{word-spacing:-8.497800pt;}
.ws29b{word-spacing:-8.490999pt;}
.ws288{word-spacing:-8.487598pt;}
.ws77{word-spacing:-8.484437pt;}
.ws29c{word-spacing:-8.484198pt;}
.ws295{word-spacing:-8.473996pt;}
.ws293{word-spacing:-8.460394pt;}
.ws2b7{word-spacing:-8.456994pt;}
.ws26d{word-spacing:-8.453593pt;}
.ws76{word-spacing:-8.450431pt;}
.ws272{word-spacing:-8.446792pt;}
.ws2b0{word-spacing:-8.422989pt;}
.ws51{word-spacing:-8.399423pt;}
.ws12{word-spacing:-8.399186pt;}
.ws2be{word-spacing:-8.395785pt;}
.ws5a{word-spacing:-8.390921pt;}
.ws279{word-spacing:-8.388984pt;}
.ws2c3{word-spacing:-8.378783pt;}
.ws22c{word-spacing:-8.378169pt;}
.ws11{word-spacing:-8.375382pt;}
.ws2bd{word-spacing:-8.365181pt;}
.ws29e{word-spacing:-8.361780pt;}
.ws10{word-spacing:-8.344778pt;}
.ws1c{word-spacing:-8.343634pt;}
.ws2cd{word-spacing:-8.334576pt;}
.ws1bd{word-spacing:-8.331411pt;}
.ws2ac{word-spacing:-8.331176pt;}
.ws238{word-spacing:-8.327160pt;}
.ws29a{word-spacing:-8.317574pt;}
.ws28b{word-spacing:-8.286970pt;}
.ws2b8{word-spacing:-8.280169pt;}
.ws294{word-spacing:-8.276768pt;}
.ws2bc{word-spacing:-8.273368pt;}
.ws13{word-spacing:-8.263166pt;}
.wsc4{word-spacing:-8.242146pt;}
.ws237{word-spacing:-8.233645pt;}
.ws27a{word-spacing:-8.229162pt;}
.ws28d{word-spacing:-8.225761pt;}
.ws72{word-spacing:-8.191137pt;}
.ws17c{word-spacing:-8.182636pt;}
.ws2b2{word-spacing:-8.181555pt;}
.ws26{word-spacing:-8.133226pt;}
.ws14a{word-spacing:-8.114624pt;}
.ws236{word-spacing:-8.097622pt;}
.ws2aa{word-spacing:-8.086341pt;}
.ws1c1{word-spacing:-8.016858pt;}
.ws24d{word-spacing:-7.957348pt;}
.ws62{word-spacing:-7.948846pt;}
.wsb9{word-spacing:-7.931844pt;}
.ws1ec{word-spacing:-7.914841pt;}
.ws63{word-spacing:-7.902088pt;}
.ws214{word-spacing:-7.880835pt;}
.ws17{word-spacing:-7.831003pt;}
.ws18f{word-spacing:-7.795820pt;}
.wsd7{word-spacing:-7.753313pt;}
.ws1eb{word-spacing:-7.732060pt;}
.ws257{word-spacing:-7.693803pt;}
.wsd5{word-spacing:-7.651296pt;}
.ws7b{word-spacing:-7.632072pt;}
.wsf9{word-spacing:-7.630677pt;}
.ws258{word-spacing:-7.621541pt;}
.ws64{word-spacing:-7.617290pt;}
.wsd6{word-spacing:-7.616031pt;}
.ws215{word-spacing:-7.532276pt;}
.ws255{word-spacing:-7.489769pt;}
.ws9c{word-spacing:-7.460014pt;}
.ws256{word-spacing:-7.315489pt;}
.wsd8{word-spacing:-7.298486pt;}
.ws9d{word-spacing:-7.255979pt;}
.ws23{word-spacing:-7.153872pt;}
.wsdc{word-spacing:-7.017939pt;}
.wsdb{word-spacing:-6.953086pt;}
.wsb4{word-spacing:-6.869164pt;}
.wsda{word-spacing:-6.860662pt;}
.wsd9{word-spacing:-6.843659pt;}
.wsc{word-spacing:-6.651339pt;}
.wsb1{word-spacing:-6.631123pt;}
.wse{word-spacing:-6.624135pt;}
.ws50{word-spacing:-6.618371pt;}
.wsa{word-spacing:-6.600332pt;}
.wsb{word-spacing:-6.552725pt;}
.wsd{word-spacing:-6.467713pt;}
.ws298{word-spacing:-6.440509pt;}
.ws7e{word-spacing:-6.437109pt;}
.ws93{word-spacing:-6.350576pt;}
.ws92{word-spacing:-6.227305pt;}
.ws3d{word-spacing:-6.150792pt;}
.wsb0{word-spacing:-6.146541pt;}
.ws1f{word-spacing:-6.086530pt;}
.ws158{word-spacing:-6.065777pt;}
.ws159{word-spacing:-6.044524pt;}
.ws16{word-spacing:-5.971762pt;}
.ws1d{word-spacing:-5.478259pt;}
.ws112{word-spacing:-5.387720pt;}
.ws25{word-spacing:-4.847035pt;}
.wsaf{word-spacing:-4.510014pt;}
.ws2a{word-spacing:-4.502731pt;}
.ws1e{word-spacing:-4.303800pt;}
.ws19{word-spacing:-4.181381pt;}
.ws80{word-spacing:-3.957420pt;}
.ws81{word-spacing:-3.863904pt;}
.ws15{word-spacing:-2.031394pt;}
.ws79{word-spacing:-1.445245pt;}
.ws46{word-spacing:-1.377233pt;}
.ws78{word-spacing:-1.287968pt;}
.ws14{word-spacing:-0.891365pt;}
.ws3b{word-spacing:0.000000pt;}
.ws27c{word-spacing:1.537017pt;}
.ws2a0{word-spacing:1.540417pt;}
.ws26c{word-spacing:1.635631pt;}
.ws38{word-spacing:2.053098pt;}
.ws1{word-spacing:11.591568pt;}
.ws1a0{word-spacing:53.142701pt;}
.ws1a4{word-spacing:60.603355pt;}
.ws1a2{word-spacing:60.606755pt;}
.ws1a5{word-spacing:60.905997pt;}
.ws1a7{word-spacing:67.859979pt;}
.ws1e7{word-spacing:85.797511pt;}
.ws1e5{word-spacing:85.906326pt;}
.ws1e6{word-spacing:86.001540pt;}
.ws1a6{word-spacing:86.909468pt;}
.ws172{word-spacing:89.024566pt;}
.ws170{word-spacing:89.027967pt;}
.ws19f{word-spacing:96.634841pt;}
.ws1e2{word-spacing:104.748386pt;}
.ws178{word-spacing:108.169269pt;}
.ws175{word-spacing:108.172669pt;}
.ws16e{word-spacing:132.312677pt;}
.ws179{word-spacing:136.835315pt;}
.ws17a{word-spacing:136.838716pt;}
.ws1a3{word-spacing:149.196060pt;}
.ws169{word-spacing:155.544756pt;}
.ws163{word-spacing:159.965380pt;}
.ws167{word-spacing:174.689459pt;}
.wsf4{word-spacing:194.072195pt;}
.ws1a8{word-spacing:239.567216pt;}
.ws1a1{word-spacing:301.319933pt;}
.wse6{word-spacing:306.760701pt;}
.wsec{word-spacing:306.764102pt;}
.ws16d{word-spacing:312.507512pt;}
.wsee{word-spacing:370.200056pt;}
.ws16c{word-spacing:620.761024pt;}
.ws116{word-spacing:1652.531161pt;}
.ws115{word-spacing:1673.997297pt;}
.ws13e{word-spacing:2038.096969pt;}
.ws120{word-spacing:2085.114183pt;}
._31{margin-left:-223.646169pt;}
._30{margin-left:-28.064161pt;}
._b{margin-left:-0.892651pt;}
._3{width:0.958935pt;}
._61{width:1.982480pt;}
._23{width:5.443829pt;}
._d{width:7.698054pt;}
._10{width:8.617352pt;}
._c{width:9.545974pt;}
._9{width:10.547179pt;}
._2{width:12.075104pt;}
._e{width:13.453529pt;}
._7{width:14.453117pt;}
._a{width:16.021613pt;}
._6{width:17.188421pt;}
._8{width:18.913766pt;}
._5{width:21.017846pt;}
._4{width:22.230562pt;}
._1{width:24.797291pt;}
._f{width:26.588254pt;}
._5a{width:60.314314pt;}
._53{width:72.823183pt;}
._0{width:80.643648pt;}
._5c{width:86.338187pt;}
._5b{width:105.693719pt;}
._48{width:108.410703pt;}
._43{width:109.611072pt;}
._59{width:111.083480pt;}
._41{width:118.690354pt;}
._4b{width:121.422049pt;}
._5e{width:123.930494pt;}
._5f{width:124.838422pt;}
._42{width:127.858048pt;}
._4d{width:128.786379pt;}
._4c{width:131.817316pt;}
._47{width:137.835056pt;}
._60{width:143.884510pt;}
._3f{width:155.255715pt;}
._3d{width:156.146641pt;}
._4e{width:157.620442pt;}
._54{width:160.608071pt;}
._3e{width:161.679222pt;}
._4f{width:166.201860pt;}
._5d{width:173.302063pt;}
._34{width:174.332408pt;}
._57{width:194.888310pt;}
._46{width:200.053639pt;}
._11{width:213.757573pt;}
._4a{width:245.342624pt;}
._22{width:254.131472pt;}
._37{width:257.985609pt;}
._58{width:259.255996pt;}
._36{width:263.052324pt;}
._17{width:267.835407pt;}
._33{width:278.498435pt;}
._32{width:283.564638pt;}
._38{width:287.195732pt;}
._3a{width:288.806167pt;}
._13{width:289.856915pt;}
._49{width:294.071503pt;}
._39{width:298.783175pt;}
._35{width:307.706491pt;}
._55{width:321.008712pt;}
._15{width:326.449480pt;}
._16{width:342.999617pt;}
._25{width:344.315602pt;}
._51{width:348.304365pt;}
._1c{width:363.035245pt;}
._52{width:373.920181pt;}
._45{width:375.323490pt;}
._1a{width:376.630364pt;}
._20{width:389.888835pt;}
._56{width:401.334851pt;}
._2d{width:404.228660pt;}
._2b{width:406.486578pt;}
._12{width:409.410991pt;}
._2f{width:421.241261pt;}
._44{width:423.949833pt;}
._40{width:428.877187pt;}
._50{width:433.513593pt;}
._2a{width:441.276889pt;}
._1e{width:445.184041pt;}
._28{width:446.367408pt;}
._2c{width:454.253121pt;}
._27{width:473.397823pt;}
._21{width:482.412496pt;}
._3b{width:502.250896pt;}
._2e{width:506.872148pt;}
._3c{width:511.908259pt;}
._1f{width:527.475657pt;}
._29{width:578.163212pt;}
._26{width:695.367556pt;}
._1d{width:716.508253pt;}
._14{width:861.470802pt;}
._19{width:983.646648pt;}
._18{width:1012.312695pt;}
._1b{width:1031.457397pt;}
._24{width:2127.982694pt;}
.fs4{font-size:23.788267pt;}
.fsc{font-size:23.803200pt;}
.fs7{font-size:26.778667pt;}
.fsd{font-size:27.629333pt;}
.fsb{font-size:29.753600pt;}
.fsf{font-size:31.882133pt;}
.fs5{font-size:34.004800pt;}
.fsa{font-size:34.005333pt;}
.fs6{font-size:37.193067pt;}
.fs3{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs8{font-size:42.507200pt;}
.fse{font-size:45.482667pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fs9{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:0.001324pt;}
.y3a{bottom:47.198006pt;}
.y4{bottom:70.571340pt;}
.y8c{bottom:74.834533pt;}
.y66{bottom:74.834699pt;}
.y178{bottom:74.834844pt;}
.y235{bottom:74.835429pt;}
.y1e5{bottom:74.835591pt;}
.y147{bottom:74.835732pt;}
.y198{bottom:74.836076pt;}
.y269{bottom:74.840296pt;}
.y2a8{bottom:74.840474pt;}
.y183{bottom:79.598451pt;}
.y116{bottom:80.957889pt;}
.y3{bottom:83.318006pt;}
.y2a7{bottom:85.422767pt;}
.y1b6{bottom:85.795511pt;}
.y65{bottom:87.609333pt;}
.y234{bottom:88.743785pt;}
.y146{bottom:88.744087pt;}
.y177{bottom:88.744141pt;}
.y197{bottom:88.744432pt;}
.y1e4{bottom:88.745009pt;}
.y115{bottom:92.372022pt;}
.y182{bottom:93.506807pt;}
.y2{bottom:96.011340pt;}
.y2a6{bottom:96.080722pt;}
.y1b5{bottom:99.703867pt;}
.y1b3{bottom:99.704327pt;}
.y233{bottom:102.727591pt;}
.y196{bottom:102.728238pt;}
.y1e3{bottom:102.728816pt;}
.y145{bottom:102.728956pt;}
.y176{bottom:102.729009pt;}
.y268{bottom:102.732458pt;}
.y114{bottom:103.786289pt;}
.y1b4{bottom:104.466133pt;}
.y2a5{bottom:106.663866pt;}
.y181{bottom:107.491676pt;}
.y38{bottom:108.850432pt;}
.y1b2{bottom:113.688133pt;}
.y113{bottom:115.200422pt;}
.y195{bottom:116.636594pt;}
.y232{bottom:116.637009pt;}
.y1e2{bottom:116.637171pt;}
.y144{bottom:116.637312pt;}
.y175{bottom:116.637365pt;}
.y2a4{bottom:117.321820pt;}
.y180{bottom:121.400032pt;}
.y37{bottom:121.625067pt;}
.y112{bottom:126.614628pt;}
.y1b0{bottom:127.597527pt;}
.y2a3{bottom:127.904114pt;}
.ycc{bottom:130.170773pt;}
.y194{bottom:130.620400pt;}
.y231{bottom:130.620816pt;}
.y192{bottom:130.620977pt;}
.y143{bottom:130.621118pt;}
.y174{bottom:130.621171pt;}
.y267{bottom:130.625683pt;}
.y1b1{bottom:132.358933pt;}
.y193{bottom:135.306667pt;}
.y17f{bottom:135.383838pt;}
.y111{bottom:138.103622pt;}
.y2a2{bottom:138.562068pt;}
.y1af{bottom:141.581333pt;}
.y1e1{bottom:144.529171pt;}
.y191{bottom:144.529333pt;}
.y142{bottom:144.529474pt;}
.y173{bottom:144.529527pt;}
.y18f{bottom:144.530889pt;}
.y266{bottom:144.609489pt;}
.y2a1{bottom:149.220873pt;}
.y190{bottom:149.292000pt;}
.y17e{bottom:149.292194pt;}
.y33{bottom:149.518286pt;}
.y110{bottom:149.518289pt;}
.ycb{bottom:151.109228pt;}
.y172{bottom:158.512977pt;}
.y141{bottom:158.514343pt;}
.y18e{bottom:158.514696pt;}
.y265{bottom:158.517845pt;}
.y2a0{bottom:159.803167pt;}
.y10f{bottom:160.932956pt;}
.y32{bottom:162.217365pt;}
.y17d{bottom:163.275644pt;}
.yca{bottom:168.645504pt;}
.y2f0{bottom:169.331380pt;}
.y29f{bottom:170.461121pt;}
.y1b7{bottom:171.438667pt;}
.y10e{bottom:172.346289pt;}
.y1e0{bottom:172.421333pt;}
.y140{bottom:172.422699pt;}
.y1de{bottom:172.422807pt;}
.y230{bottom:172.422861pt;}
.y18d{bottom:172.423051pt;}
.y171{bottom:172.423439pt;}
.y264{bottom:172.502713pt;}
.y31{bottom:174.992000pt;}
.y1df{bottom:177.184000pt;}
.y17c{bottom:177.184194pt;}
.y2ef{bottom:179.989335pt;}
.yc9{bottom:180.060065pt;}
.y29e{bottom:181.043415pt;}
.y10d{bottom:183.760956pt;}
.y13f{bottom:186.406505pt;}
.y22f{bottom:186.407482pt;}
.y1dd{bottom:186.407676pt;}
.yd2{bottom:188.372000pt;}
.y2ee{bottom:190.571628pt;}
.y17b{bottom:191.168000pt;}
.yc8{bottom:191.473776pt;}
.y29d{bottom:191.702219pt;}
.y16d{bottom:192.757844pt;}
.y10c{bottom:195.175622pt;}
.y13e{bottom:200.314861pt;}
.y170{bottom:200.315601pt;}
.y22e{bottom:200.315838pt;}
.y1dc{bottom:200.316032pt;}
.y18c{bottom:200.316276pt;}
.y263{bottom:200.394875pt;}
.y2ed{bottom:201.229583pt;}
.y29c{bottom:202.360174pt;}
.yc7{bottom:202.888337pt;}
.y16c{bottom:204.172405pt;}
.y10b{bottom:206.588956pt;}
.y2ec{bottom:211.812727pt;}
.y29b{bottom:212.942468pt;}
.y13d{bottom:214.299644pt;}
.y1db{bottom:214.299838pt;}
.yc6{bottom:214.302048pt;}
.y16b{bottom:215.586117pt;}
.y10a{bottom:218.003962pt;}
.y186{bottom:221.026667pt;}
.y2eb{bottom:222.470681pt;}
.y29a{bottom:223.601272pt;}
.yc5{bottom:225.791420pt;}
.y16a{bottom:227.000678pt;}
.y16f{bottom:228.207763pt;}
.y1da{bottom:228.208194pt;}
.y22d{bottom:228.209009pt;}
.y13c{bottom:228.209421pt;}
.y262{bottom:228.363550pt;}
.y109{bottom:229.493058pt;}
.y18b{bottom:230.173333pt;}
.y189{bottom:230.173527pt;}
.y2ea{bottom:233.052975pt;}
.y299{bottom:234.183566pt;}
.y18a{bottom:234.936000pt;}
.ya8{bottom:237.773333pt;}
.y169{bottom:238.414389pt;}
.y22c{bottom:242.192816pt;}
.y1d9{bottom:242.193009pt;}
.y13b{bottom:242.194289pt;}
.y261{bottom:242.271906pt;}
.yc4{bottom:243.328546pt;}
.y2e9{bottom:243.711779pt;}
.y187{bottom:244.157333pt;}
.y298{bottom:244.841520pt;}
.y108{bottom:247.029333pt;}
.y188{bottom:248.844000pt;}
.y168{bottom:249.828100pt;}
.y30{bottom:252.926350pt;}
.y2e8{bottom:254.369734pt;}
.y297{bottom:255.499475pt;}
.y22b{bottom:256.101171pt;}
.y1d8{bottom:256.101365pt;}
.y13a{bottom:256.102645pt;}
.y260{bottom:256.255712pt;}
.y16e{bottom:258.141333pt;}
.yc3{bottom:260.865671pt;}
.y167{bottom:261.242661pt;}
.y107{bottom:264.567587pt;}
.y2e7{bottom:264.952028pt;}
.y2f{bottom:265.700985pt;}
.y296{bottom:266.082619pt;}
.y22a{bottom:270.084977pt;}
.y1d7{bottom:270.085171pt;}
.y139{bottom:270.086451pt;}
.y25f{bottom:270.164068pt;}
.y8b{bottom:270.166110pt;}
.yc2{bottom:272.279382pt;}
.y166{bottom:272.732033pt;}
.y2e6{bottom:275.609982pt;}
.y295{bottom:276.740573pt;}
.y106{bottom:277.266667pt;}
.y2e{bottom:278.475619pt;}
.y1ad{bottom:280.140443pt;}
.yc1{bottom:283.693093pt;}
.y229{bottom:283.993333pt;}
.y1d6{bottom:283.993527pt;}
.y227{bottom:283.994505pt;}
.y138{bottom:283.994807pt;}
.y165{bottom:284.146594pt;}
.y25e{bottom:284.148937pt;}
.y8a{bottom:284.149917pt;}
.y2e5{bottom:286.193126pt;}
.y294{bottom:287.322867pt;}
.y17a{bottom:288.000000pt;}
.y228{bottom:288.756000pt;}
.y64{bottom:289.064107pt;}
.y2d{bottom:291.174699pt;}
.y1ac{bottom:291.555005pt;}
.yc0{bottom:295.107655pt;}
.y164{bottom:295.560305pt;}
.y2e4{bottom:296.851080pt;}
.y1d5{bottom:297.977333pt;}
.y1d3{bottom:297.978311pt;}
.y137{bottom:297.979676pt;}
.y293{bottom:297.980821pt;}
.y25d{bottom:298.057293pt;}
.y89{bottom:298.058272pt;}
.y1d4{bottom:302.664000pt;}
.y1ab{bottom:302.968716pt;}
.y63{bottom:302.973525pt;}
.y2c{bottom:303.952606pt;}
.ybf{bottom:306.521366pt;}
.y163{bottom:306.974017pt;}
.yf1{bottom:307.502667pt;}
.yf0{bottom:307.502871pt;}
.y2e3{bottom:307.509035pt;}
.y292{bottom:308.563965pt;}
.y1d2{bottom:311.886667pt;}
.y136{bottom:311.888032pt;}
.y1d0{bottom:311.888399pt;}
.y25c{bottom:312.041099pt;}
.y88{bottom:312.043141pt;}
.yf2{bottom:312.264000pt;}
.y1aa{bottom:314.382427pt;}
.y1d1{bottom:316.649333pt;}
.y2b{bottom:316.727241pt;}
.y62{bottom:316.957332pt;}
.ybe{bottom:317.935927pt;}
.y2e2{bottom:318.091329pt;}
.y162{bottom:318.388578pt;}
.y291{bottom:319.221920pt;}
.y135{bottom:325.871838pt;}
.y1cf{bottom:325.872205pt;}
.y1a9{bottom:325.872649pt;}
.y25b{bottom:325.949455pt;}
.y87{bottom:325.951497pt;}
.yef{bottom:326.097646pt;}
.y2e1{bottom:328.750133pt;}
.ybd{bottom:329.349638pt;}
.y2a{bottom:329.426320pt;}
.y161{bottom:329.802289pt;}
.y290{bottom:329.879874pt;}
.yd1{bottom:330.482667pt;}
.y61{bottom:330.865687pt;}
.yee{bottom:333.429333pt;}
.y1a8{bottom:337.286360pt;}
.y2e0{bottom:339.332427pt;}
.y134{bottom:339.780194pt;}
.y25a{bottom:339.934324pt;}
.y28f{bottom:340.463018pt;}
.y160{bottom:341.216956pt;}
.y29{bottom:342.200955pt;}
.y60{bottom:344.849494pt;}
.ybc{bottom:346.886764pt;}
.y1a7{bottom:348.700071pt;}
.y2df{bottom:349.990381pt;}
.y28e{bottom:351.120972pt;}
.y15f{bottom:352.630628pt;}
.y133{bottom:353.763644pt;}
.y226{bottom:353.764000pt;}
.y224{bottom:353.764816pt;}
.y1ce{bottom:353.765430pt;}
.y259{bottom:353.842679pt;}
.y86{bottom:353.843659pt;}
.y28{bottom:354.975589pt;}
.y225{bottom:358.450667pt;}
.y1a6{bottom:360.114632pt;}
.y2de{bottom:360.649186pt;}
.yed{bottom:360.869333pt;}
.yec{bottom:360.869527pt;}
.y28d{bottom:361.703266pt;}
.y15e{bottom:364.120956pt;}
.ybb{bottom:364.423039pt;}
.ya9{bottom:365.440000pt;}
.y223{bottom:367.673171pt;}
.y132{bottom:367.673527pt;}
.y27{bottom:367.674669pt;}
.y258{bottom:367.826486pt;}
.y2dd{bottom:371.231480pt;}
.y1a5{bottom:371.528343pt;}
.y28c{bottom:372.361221pt;}
.y5f{bottom:372.742718pt;}
.yea{bottom:374.853333pt;}
.ye9{bottom:374.854505pt;}
.y15d{bottom:375.534289pt;}
.yba{bottom:375.837600pt;}
.yeb{bottom:379.540000pt;}
.y26{bottom:380.449303pt;}
.y131{bottom:381.656977pt;}
.y257{bottom:381.734841pt;}
.y85{bottom:381.736884pt;}
.y2dc{bottom:381.889434pt;}
.y1a4{bottom:382.942905pt;}
.y28b{bottom:383.020025pt;}
.y15c{bottom:386.948956pt;}
.yb9{bottom:387.251311pt;}
.ye8{bottom:388.762861pt;}
.y1cd{bottom:389.972194pt;}
.y2db{bottom:392.471728pt;}
.y25{bottom:393.223938pt;}
.y28a{bottom:393.602319pt;}
.y1a3{bottom:394.356616pt;}
.y222{bottom:395.566505pt;}
.y130{bottom:395.567678pt;}
.y256{bottom:395.718647pt;}
.y84{bottom:395.720690pt;}
.y15b{bottom:398.362289pt;}
.yb8{bottom:398.740683pt;}
.y185{bottom:402.066667pt;}
.ye6{bottom:402.746667pt;}
.ye5{bottom:402.746871pt;}
.y2da{bottom:403.130532pt;}
.y1cc{bottom:403.956141pt;}
.y289{bottom:404.260273pt;}
.y1a2{bottom:405.845987pt;}
.y24{bottom:405.998573pt;}
.ye7{bottom:407.433333pt;}
.y221{bottom:409.550311pt;}
.y12f{bottom:409.551484pt;}
.y255{bottom:409.628066pt;}
.y83{bottom:409.629046pt;}
.y5e{bottom:409.630466pt;}
.y15a{bottom:409.776956pt;}
.yb7{bottom:410.155244pt;}
.y2d9{bottom:413.712826pt;}
.y288{bottom:414.842567pt;}
.y1a1{bottom:417.260549pt;}
.y1cb{bottom:417.864496pt;}
.y23{bottom:418.697652pt;}
.y159{bottom:421.192238pt;}
.ye4{bottom:421.341646pt;}
.yb6{bottom:421.568956pt;}
.y220{bottom:423.460087pt;}
.y12e{bottom:423.460902pt;}
.y254{bottom:423.611872pt;}
.y82{bottom:423.612852pt;}
.y5d{bottom:423.614272pt;}
.y2d8{bottom:424.370781pt;}
.y287{bottom:425.501372pt;}
.ye3{bottom:428.598624pt;}
.y1a0{bottom:428.674260pt;}
.y22{bottom:431.472287pt;}
.y1ca{bottom:431.849365pt;}
.y158{bottom:432.605949pt;}
.yb5{bottom:432.984276pt;}
.y2d7{bottom:435.028735pt;}
.y286{bottom:436.083665pt;}
.y12d{bottom:437.444709pt;}
.y21f{bottom:437.444956pt;}
.y253{bottom:437.520228pt;}
.y81{bottom:437.522270pt;}
.y5c{bottom:437.522628pt;}
.y157{bottom:444.019660pt;}
.y21{bottom:444.246922pt;}
.y2d6{bottom:445.611879pt;}
.y1c9{bottom:445.833171pt;}
.y19f{bottom:446.211385pt;}
.y285{bottom:446.741620pt;}
.yb4{bottom:450.521401pt;}
.y12c{bottom:451.353064pt;}
.y21e{bottom:451.353312pt;}
.y252{bottom:451.504034pt;}
.y80{bottom:451.506076pt;}
.y5b{bottom:451.507497pt;}
.y156{bottom:455.509882pt;}
.ye2{bottom:456.113535pt;}
.y2d5{bottom:456.269833pt;}
.y20{bottom:456.946001pt;}
.y284{bottom:457.399574pt;}
.y1c8{bottom:459.741527pt;}
.yd0{bottom:460.951725pt;}
.y19e{bottom:463.673058pt;}
.y21d{bottom:465.337118pt;}
.y251{bottom:465.413453pt;}
.y7f{bottom:465.414432pt;}
.y5a{bottom:465.415853pt;}
.y2d4{bottom:466.852127pt;}
.y155{bottom:466.923593pt;}
.y283{bottom:467.982718pt;}
.yb3{bottom:468.057677pt;}
.y1f{bottom:469.720636pt;}
.ye1{bottom:470.021891pt;}
.y1c7{bottom:473.725333pt;}
.y1c5{bottom:473.726311pt;}
.y2d3{bottom:477.510082pt;}
.y1c6{bottom:478.412000pt;}
.ycf{bottom:478.488000pt;}
.y282{bottom:478.640673pt;}
.y12b{bottom:479.245226pt;}
.y21c{bottom:479.245474pt;}
.y250{bottom:479.397259pt;}
.y7e{bottom:479.398238pt;}
.y59{bottom:479.399659pt;}
.yb2{bottom:479.472238pt;}
.y19d{bottom:481.209333pt;}
.ya6{bottom:482.343838pt;}
.y1e{bottom:482.495271pt;}
.ye0{bottom:484.006760pt;}
.y154{bottom:484.460719pt;}
.y1c4{bottom:487.634667pt;}
.y1c2{bottom:487.636032pt;}
.y2d2{bottom:488.168886pt;}
.y281{bottom:489.222966pt;}
.y18{bottom:490.432267pt;}
.yb1{bottom:490.885949pt;}
.y1c3{bottom:492.397333pt;}
.y21b{bottom:493.230343pt;}
.y24f{bottom:493.305615pt;}
.y7d{bottom:493.307657pt;}
.y58{bottom:493.308015pt;}
.y1d{bottom:495.194350pt;}
.yce{bottom:496.025333pt;}
.ya5{bottom:496.252194pt;}
.ydf{bottom:497.915115pt;}
.y19c{bottom:498.746699pt;}
.y2d1{bottom:498.751180pt;}
.y280{bottom:499.881771pt;}
.y1c1{bottom:501.619838pt;}
.y17{bottom:501.845978pt;}
.y153{bottom:501.921333pt;}
.yb0{bottom:502.299660pt;}
.y21a{bottom:507.214149pt;}
.y24e{bottom:507.289421pt;}
.y7c{bottom:507.291463pt;}
.y57{bottom:507.292884pt;}
.y1c{bottom:507.968985pt;}
.y2d0{bottom:509.409134pt;}
.ya4{bottom:510.236977pt;}
.y27f{bottom:510.539725pt;}
.y19b{bottom:511.521333pt;}
.y16{bottom:513.259689pt;}
.yaf{bottom:513.714221pt;}
.y1c0{bottom:515.528194pt;}
.y12a{bottom:518.023482pt;}
.ydd{bottom:519.006400pt;}
.y152{bottom:519.458699pt;}
.y2cf{bottom:519.992278pt;}
.yde{bottom:520.667952pt;}
.y1b{bottom:520.743619pt;}
.y27e{bottom:521.122019pt;}
.y219{bottom:521.122505pt;}
.y24d{bottom:521.198839pt;}
.y7b{bottom:521.199819pt;}
.y56{bottom:521.201240pt;}
.ya3{bottom:524.146451pt;}
.y15{bottom:524.749911pt;}
.yae{bottom:525.203593pt;}
.y1bd{bottom:529.511644pt;}
.y1bf{bottom:529.512000pt;}
.y2ce{bottom:530.650233pt;}
.y27d{bottom:531.779974pt;}
.y129{bottom:531.931838pt;}
.y151{bottom:532.233333pt;}
.y1a{bottom:533.518254pt;}
.y1be{bottom:534.198667pt;}
.y218{bottom:535.106311pt;}
.y24c{bottom:535.182645pt;}
.y7a{bottom:535.183625pt;}
.y55{bottom:535.185046pt;}
.y14{bottom:536.163622pt;}
.ya2{bottom:538.130258pt;}
.y2cd{bottom:541.232526pt;}
.y27c{bottom:542.363118pt;}
.yad{bottom:542.740719pt;}
.y1bc{bottom:543.420000pt;}
.y1ba{bottom:543.420194pt;}
.y128{bottom:545.915644pt;}
.y19{bottom:546.217333pt;}
.y13{bottom:547.577333pt;}
.y1bb{bottom:548.182667pt;}
.y217{bottom:549.014861pt;}
.y24b{bottom:549.091001pt;}
.y79{bottom:549.091981pt;}
.y54{bottom:549.093401pt;}
.y19a{bottom:550.148000pt;}
.ydb{bottom:551.205948pt;}
.y2cc{bottom:551.890481pt;}
.ya1{bottom:552.039676pt;}
.ydc{bottom:552.793305pt;}
.y27b{bottom:553.021072pt;}
.y1b8{bottom:557.404000pt;}
.y127{bottom:559.824000pt;}
.y125{bottom:559.825514pt;}
.yac{bottom:560.201333pt;}
.y1b9{bottom:562.090667pt;}
.y2cb{bottom:562.549285pt;}
.y216{bottom:562.998505pt;}
.y24a{bottom:563.074807pt;}
.y78{bottom:563.076850pt;}
.y53{bottom:563.078270pt;}
.y27a{bottom:563.603366pt;}
.y126{bottom:564.585333pt;}
.ya0{bottom:566.023482pt;}
.y12{bottom:572.296000pt;}
.y2ca{bottom:573.131579pt;}
.y124{bottom:573.809320pt;}
.y279{bottom:574.261320pt;}
.y215{bottom:576.906861pt;}
.y249{bottom:577.059676pt;}
.y77{bottom:577.060656pt;}
.y52{bottom:577.062076pt;}
.yab{bottom:577.738699pt;}
.yda{bottom:578.191644pt;}
.y9f{bottom:579.931838pt;}
.y2c9{bottom:583.789534pt;}
.y278{bottom:584.920125pt;}
.y123{bottom:587.717676pt;}
.yaa{bottom:590.513333pt;}
.y214{bottom:590.891838pt;}
.y248{bottom:590.968032pt;}
.y76{bottom:590.969012pt;}
.y51{bottom:590.970432pt;}
.yd9{bottom:592.102829pt;}
.y200{bottom:593.388675pt;}
.y9e{bottom:593.915644pt;}
.y2c8{bottom:594.371827pt;}
.y277{bottom:595.502418pt;}
.y122{bottom:601.701482pt;}
.y213{bottom:604.800194pt;}
.y1ff{bottom:604.802386pt;}
.y247{bottom:604.951838pt;}
.y75{bottom:604.953880pt;}
.y50{bottom:604.954238pt;}
.y2c7{bottom:605.030632pt;}
.y184{bottom:605.782667pt;}
.yd8{bottom:606.086635pt;}
.y276{bottom:606.160373pt;}
.y9d{bottom:607.826662pt;}
.y121{bottom:615.609837pt;}
.y2c6{bottom:615.688586pt;}
.y11{bottom:616.214667pt;}
.y1fe{bottom:616.216947pt;}
.y275{bottom:616.742667pt;}
.y212{bottom:618.784977pt;}
.y246{bottom:618.860194pt;}
.y74{bottom:618.862236pt;}
.y4f{bottom:618.863657pt;}
.y10{bottom:619.993333pt;}
.yd7{bottom:619.994991pt;}
.y179{bottom:620.749333pt;}
.y9c{bottom:621.811531pt;}
.y2c5{bottom:626.270880pt;}
.yf{bottom:627.628000pt;}
.y1fd{bottom:627.706319pt;}
.y120{bottom:629.594706pt;}
.ye{bottom:631.408000pt;}
.y211{bottom:632.693970pt;}
.y245{bottom:632.844977pt;}
.y73{bottom:632.846042pt;}
.y4e{bottom:632.847463pt;}
.yd6{bottom:633.979860pt;}
.y9b{bottom:635.719887pt;}
.y2c4{bottom:636.929685pt;}
.yd{bottom:639.118667pt;}
.y1fc{bottom:639.120030pt;}
.y274{bottom:641.237322pt;}
.yc{bottom:642.897333pt;}
.y11f{bottom:643.503062pt;}
.y210{bottom:646.678839pt;}
.y244{bottom:646.753171pt;}
.y72{bottom:646.754398pt;}
.y4d{bottom:646.755819pt;}
.y2c3{bottom:647.511978pt;}
.yd5{bottom:647.888216pt;}
.y9a{bottom:649.703693pt;}
.y1fb{bottom:650.534591pt;}
.y11e{bottom:657.486868pt;}
.y2c2{bottom:658.169933pt;}
.y20f{bottom:660.587195pt;}
.y243{bottom:660.736977pt;}
.y71{bottom:660.738204pt;}
.y4c{bottom:660.739625pt;}
.ya{bottom:661.040169pt;}
.y1fa{bottom:661.948302pt;}
.y99{bottom:663.612049pt;}
.yb{bottom:667.237333pt;}
.y2c1{bottom:668.752227pt;}
.y11d{bottom:671.395224pt;}
.y273{bottom:671.927520pt;}
.y1f9{bottom:673.362014pt;}
.ycd{bottom:673.663067pt;}
.y242{bottom:674.645333pt;}
.y240{bottom:674.645527pt;}
.y70{bottom:674.647623pt;}
.y4b{bottom:674.647981pt;}
.yd4{bottom:675.780378pt;}
.y8{bottom:678.273333pt;}
.y241{bottom:679.408000pt;}
.y2c0{bottom:679.411031pt;}
.y9{bottom:684.548000pt;}
.y1f8{bottom:684.776575pt;}
.y11c{bottom:685.380093pt;}
.y20e{bottom:688.479357pt;}
.y23f{bottom:688.629333pt;}
.y6f{bottom:688.631429pt;}
.y23d{bottom:688.631676pt;}
.y4a{bottom:688.632850pt;}
.y2bf{bottom:690.068986pt;}
.y98{bottom:691.505274pt;}
.y23e{bottom:693.316000pt;}
.y1f7{bottom:696.190286pt;}
.y11b{bottom:699.288449pt;}
.y272{bottom:699.819682pt;}
.y2be{bottom:700.651279pt;}
.y6e{bottom:702.539785pt;}
.y23c{bottom:702.540032pt;}
.y49{bottom:702.541205pt;}
.y1f6{bottom:707.604847pt;}
.y2bd{bottom:711.309234pt;}
.y7{bottom:711.610162pt;}
.yd3{bottom:715.616000pt;}
.y20d{bottom:716.523482pt;}
.y6d{bottom:716.523591pt;}
.y23b{bottom:716.523838pt;}
.y48{bottom:716.525012pt;}
.y1f5{bottom:719.094219pt;}
.y11a{bottom:720.377333pt;}
.y119{bottom:720.379115pt;}
.y2bc{bottom:721.892378pt;}
.y97{bottom:724.915933pt;}
.y271{bottom:727.712907pt;}
.y20c{bottom:730.431838pt;}
.y23a{bottom:730.432194pt;}
.y6c{bottom:730.433009pt;}
.y47{bottom:730.433367pt;}
.y1f4{bottom:730.507930pt;}
.y2bb{bottom:732.550332pt;}
.y6{bottom:734.589081pt;}
.y96{bottom:738.899739pt;}
.y118{bottom:741.468000pt;}
.y270{bottom:741.621262pt;}
.y1f3{bottom:741.922491pt;}
.y2ba{bottom:743.208287pt;}
.y20b{bottom:744.415644pt;}
.y237{bottom:744.415838pt;}
.y239{bottom:744.416000pt;}
.y6b{bottom:744.416816pt;}
.y46{bottom:744.418236pt;}
.y105{bottom:745.474667pt;}
.y238{bottom:749.102667pt;}
.y95{bottom:752.808095pt;}
.y1f2{bottom:753.336202pt;}
.y2b9{bottom:753.790580pt;}
.y26f{bottom:755.605069pt;}
.y5{bottom:757.568000pt;}
.y236{bottom:758.324194pt;}
.y6a{bottom:758.325171pt;}
.y20a{bottom:758.325474pt;}
.y45{bottom:758.326592pt;}
.y2b8{bottom:764.449385pt;}
.y1f1{bottom:764.750764pt;}
.y94{bottom:766.792964pt;}
.y26e{bottom:769.513424pt;}
.y69{bottom:772.308977pt;}
.y209{bottom:772.310343pt;}
.y44{bottom:772.310398pt;}
.y2b7{bottom:775.031679pt;}
.y1f0{bottom:776.164475pt;}
.y14f{bottom:777.524683pt;}
.y93{bottom:780.701319pt;}
.y199{bottom:782.816000pt;}
.y26d{bottom:783.498293pt;}
.y2b6{bottom:785.689633pt;}
.y208{bottom:786.218699pt;}
.y43{bottom:786.218754pt;}
.y1ef{bottom:787.578186pt;}
.y14e{bottom:788.939244pt;}
.y92{bottom:794.685126pt;}
.y2b5{bottom:796.272777pt;}
.y26c{bottom:797.406649pt;}
.y1ee{bottom:798.992747pt;}
.y207{bottom:800.202505pt;}
.y42{bottom:800.203623pt;}
.y14d{bottom:800.352956pt;}
.y2b4{bottom:806.930731pt;}
.y91{bottom:808.593481pt;}
.y1ed{bottom:810.482119pt;}
.y26b{bottom:811.390455pt;}
.y14c{bottom:811.767622pt;}
.y206{bottom:814.110861pt;}
.y41{bottom:814.111979pt;}
.y2b3{bottom:817.588686pt;}
.y1ec{bottom:821.895830pt;}
.y90{bottom:822.578350pt;}
.y14b{bottom:823.180956pt;}
.y102{bottom:823.936956pt;}
.y104{bottom:823.937333pt;}
.y36{bottom:827.641333pt;}
.y103{bottom:827.716000pt;}
.y205{bottom:828.094311pt;}
.y40{bottom:828.095785pt;}
.y2b2{bottom:828.170980pt;}
.y14a{bottom:834.596888pt;}
.y101{bottom:835.350667pt;}
.yff{bottom:835.351622pt;}
.y8f{bottom:836.486706pt;}
.y2b1{bottom:838.829784pt;}
.y100{bottom:839.130667pt;}
.y26a{bottom:839.283680pt;}
.y1e9{bottom:839.433163pt;}
.y1eb{bottom:839.433333pt;}
.y204{bottom:842.002861pt;}
.y3f{bottom:842.004141pt;}
.y149{bottom:846.086260pt;}
.yfe{bottom:846.765333pt;}
.yfc{bottom:846.766289pt;}
.y2b0{bottom:849.412078pt;}
.y8e{bottom:850.470512pt;}
.yfd{bottom:850.545333pt;}
.y1ea{bottom:850.847044pt;}
.y1e8{bottom:850.847725pt;}
.y203{bottom:855.987644pt;}
.y3e{bottom:855.989009pt;}
.yf9{bottom:858.179622pt;}
.yfb{bottom:858.180000pt;}
.y2af{bottom:860.070032pt;}
.yfa{bottom:861.958667pt;}
.y35{bottom:863.546667pt;}
.y148{bottom:863.623385pt;}
.y1e7{bottom:868.384000pt;}
.yf8{bottom:869.593333pt;}
.yf6{bottom:869.594628pt;}
.y202{bottom:869.896194pt;}
.y3d{bottom:869.897365pt;}
.y2ae{bottom:870.727987pt;}
.yf7{bottom:873.373333pt;}
.y8d{bottom:878.362674pt;}
.yf5{bottom:881.084000pt;}
.y2ad{bottom:881.311131pt;}
.y3c{bottom:883.881171pt;}
.y1e6{bottom:885.845397pt;}
.y2ac{bottom:891.969085pt;}
.y68{bottom:897.789527pt;}
.yf4{bottom:898.620032pt;}
.y34{bottom:901.341333pt;}
.y2ab{bottom:902.551379pt;}
.yf3{bottom:911.394667pt;}
.y3b{bottom:911.773333pt;}
.y2aa{bottom:913.209333pt;}
.y1{bottom:937.451340pt;}
.y117{bottom:937.844422pt;}
.y1ae{bottom:937.845983pt;}
.y2a9{bottom:937.848293pt;}
.y201{bottom:937.849648pt;}
.y150{bottom:937.849664pt;}
.y2f1{bottom:937.850912pt;}
.y67{bottom:937.852000pt;}
.y39{bottom:937.864673pt;}
.h6{height:20.907656pt;}
.h17{height:28.021406pt;}
.h20{height:28.309795pt;}
.h1d{height:29.032418pt;}
.h7{height:29.887031pt;}
.h1f{height:29.887185pt;}
.hc{height:29.887500pt;}
.h22{height:29.887711pt;}
.h1b{height:29.888133pt;}
.h1c{height:29.888542pt;}
.hb{height:30.690198pt;}
.h13{height:30.704034pt;}
.h18{height:30.837248pt;}
.h11{height:31.013290pt;}
.h16{height:31.064661pt;}
.h8{height:32.689219pt;}
.h5{height:32.997656pt;}
.h2{height:33.623437pt;}
.h9{height:37.359844pt;}
.h21{height:37.360492pt;}
.h1e{height:37.361267pt;}
.h4{height:49.501875pt;}
.h12{height:60.860660pt;}
.h10{height:60.867801pt;}
.h3{height:63.044531pt;}
.ha{height:65.378906pt;}
.h19{height:66.085177pt;}
.h14{height:66.384013pt;}
.h15{height:66.388011pt;}
.h1a{height:66.689812pt;}
.hf{height:725.666667pt;}
.hd{height:725.669333pt;}
.he{height:726.000000pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w2{width:725.666667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.w4{width:990.000000pt;}
.w3{width:990.236000pt;}
.x0{left:0.000000pt;}
.x1b{left:47.198006pt;}
.x2{left:51.853333pt;}
.x84{left:56.541600pt;}
.xb{left:57.600000pt;}
.x10{left:58.733733pt;}
.x3a{left:59.943200pt;}
.x7d{left:61.001467pt;}
.x4e{left:62.891333pt;}
.x7e{left:65.536933pt;}
.x11{left:67.955342pt;}
.x4f{left:71.281867pt;}
.x1c{left:74.683333pt;}
.x6e{left:75.899466pt;}
.x1d{left:82.696000pt;}
.x20{left:83.911642pt;}
.x87{left:89.271220pt;}
.x2f{left:90.633067pt;}
.x3e{left:91.540133pt;}
.x3f{left:98.343200pt;}
.x30{left:100.611920pt;}
.x9{left:102.504360pt;}
.x60{left:105.448800pt;}
.x22{left:108.094014pt;}
.x7f{left:124.875467pt;}
.x65{left:126.386029pt;}
.x80{left:129.335333pt;}
.x6f{left:131.155566pt;}
.x54{left:140.372000pt;}
.x44{left:141.958667pt;}
.x43{left:145.512000pt;}
.x21{left:146.645724pt;}
.x45{left:152.994667pt;}
.x12{left:158.134298pt;}
.x70{left:163.502667pt;}
.x71{left:168.037333pt;}
.x66{left:169.473479pt;}
.x93{left:178.543228pt;}
.x19{left:182.476000pt;}
.xa{left:186.028000pt;}
.x46{left:197.366667pt;}
.x47{left:199.558667pt;}
.x53{left:207.873333pt;}
.x5f{left:212.182667pt;}
.x3{left:214.753333pt;}
.x5d{left:216.793333pt;}
.x4{left:220.573333pt;}
.x41{left:225.333196pt;}
.x14{left:231.458667pt;}
.x42{left:232.741269pt;}
.x72{left:234.481333pt;}
.x15{left:239.168000pt;}
.x73{left:244.913333pt;}
.x31{left:246.198667pt;}
.x55{left:248.315035pt;}
.x94{left:250.051072pt;}
.x1{left:251.480000pt;}
.x89{left:253.225363pt;}
.x67{left:255.721479pt;}
.x92{left:256.703261pt;}
.x8f{left:261.162991pt;}
.xf{left:263.660000pt;}
.x3b{left:268.950667pt;}
.x13{left:270.462667pt;}
.x3c{left:273.789333pt;}
.x62{left:276.737333pt;}
.x86{left:278.926191pt;}
.x63{left:281.197333pt;}
.x8a{left:282.705881pt;}
.x81{left:286.488000pt;}
.x27{left:295.029333pt;}
.x5b{left:296.390667pt;}
.x68{left:298.808146pt;}
.x28{left:299.868000pt;}
.xc{left:301.452064pt;}
.x5c{left:304.101333pt;}
.x88{left:312.941192pt;}
.x52{left:340.762667pt;}
.x69{left:341.894812pt;}
.x82{left:345.826667pt;}
.x8b{left:347.637197pt;}
.x18{left:349.149660pt;}
.x83{left:350.286667pt;}
.x90{left:352.096926pt;}
.x76{left:354.897333pt;}
.x2d{left:358.298667pt;}
.x17{left:360.226667pt;}
.x74{left:361.701333pt;}
.x2e{left:363.137333pt;}
.x8c{left:364.267244pt;}
.x75{left:366.236000pt;}
.x8d{left:372.884061pt;}
.x5{left:378.028000pt;}
.x48{left:381.429333pt;}
.x6{left:383.849333pt;}
.x6a{left:384.981818pt;}
.x49{left:385.965333pt;}
.x91{left:389.589769pt;}
.x8e{left:393.293742pt;}
.xd{left:401.532441pt;}
.x77{left:419.073333pt;}
.x78{left:423.609333pt;}
.x29{left:426.784000pt;}
.x6b{left:428.144146pt;}
.x2a{left:431.244000pt;}
.x23{left:435.552000pt;}
.x24{left:440.390667pt;}
.x40{left:444.472000pt;}
.x85{left:457.846697pt;}
.x6c{left:471.230812pt;}
.x32{left:476.976000pt;}
.x57{left:478.110667pt;}
.x33{left:481.436000pt;}
.x3d{left:486.652000pt;}
.x16{left:487.893333pt;}
.xe{left:499.421209pt;}
.x37{left:502.374667pt;}
.x79{left:505.096000pt;}
.x7a{left:509.632000pt;}
.x6d{left:514.316485pt;}
.x5a{left:515.301333pt;}
.x34{left:519.609333pt;}
.x7{left:523.540000pt;}
.x5e{left:526.110667pt;}
.x35{left:527.320000pt;}
.x36{left:530.948000pt;}
.x38{left:536.541333pt;}
.x8{left:538.506667pt;}
.x39{left:540.169333pt;}
.x50{left:549.014667pt;}
.x4c{left:550.601333pt;}
.x4d{left:555.137333pt;}
.x51{left:557.404000pt;}
.x4a{left:571.162667pt;}
.x4b{left:575.621333pt;}
.x61{left:580.686667pt;}
.x7b{left:615.609333pt;}
.x7c{left:620.145333pt;}
.x2b{left:640.025333pt;}
.x2c{left:644.862667pt;}
.x58{left:658.090667pt;}
.x25{left:662.249333pt;}
.x59{left:665.498667pt;}
.x26{left:666.708000pt;}
.x56{left:669.202667pt;}
.x64{left:670.714667pt;}
.x1e{left:675.697206pt;}
.x1f{left:822.267665pt;}
.x1a{left:937.864673pt;}
}




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