
    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_7a25aacf57a856aa8003e155.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_b4c167eea3198dd3a8a7ad2d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_a7c0d75193e5b445a21816c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_6761907c014cdc8cc1ea9114.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933000;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_05e727faa00df33c0afe1c97.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_f060d3087506f82b0aa3ade8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_6a450e5ff64b580ab686d093.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_431068d0a95b60917c0cd686.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3b1da151b1366a379fcb0c96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.699000;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_ee8875fd6cade44ba270ae0a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.685000;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_853bbdef24ee6330fe6f2057.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.930000;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_fb69a5b64a283e0abaa18a93.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_af4272429b0ad50b20471eaa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d71d7db72f2dcdb4e7e22675.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5da470043c50dd5e2e020e79.woff2')format("woff");}.fff{font-family:fff;line-height:0.406000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-19.602000px;}
.v5{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.602000px;}
.v4{vertical-align:20.679000px;}
.v1{vertical-align:22.896600px;}
.ls29{letter-spacing:-2.827200px;}
.ls3d{letter-spacing:-0.998400px;}
.ls2d{letter-spacing:-0.052800px;}
.ls3a{letter-spacing:-0.048000px;}
.ls2c{letter-spacing:-0.038400px;}
.ls17{letter-spacing:-0.033600px;}
.ls16{letter-spacing:-0.028800px;}
.ls1d{letter-spacing:-0.028500px;}
.ls50{letter-spacing:-0.027000px;}
.ls2b{letter-spacing:-0.024000px;}
.ls23{letter-spacing:-0.022800px;}
.ls2a{letter-spacing:-0.019200px;}
.ls11{letter-spacing:-0.018900px;}
.ls43{letter-spacing:-0.017100px;}
.ls14{letter-spacing:-0.016200px;}
.ls1c{letter-spacing:-0.014400px;}
.ls15{letter-spacing:-0.013500px;}
.ls12{letter-spacing:-0.012600px;}
.ls38{letter-spacing:-0.011400px;}
.ls1b{letter-spacing:-0.009600px;}
.ls22{letter-spacing:-0.009000px;}
.ls4f{letter-spacing:-0.006300px;}
.ls19{letter-spacing:-0.005700px;}
.ls13{letter-spacing:-0.005400px;}
.ls18{letter-spacing:-0.004800px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.004800px;}
.ls20{letter-spacing:0.005700px;}
.ls4e{letter-spacing:0.006000px;}
.ls24{letter-spacing:0.009600px;}
.ls7{letter-spacing:0.010800px;}
.ls1a{letter-spacing:0.011400px;}
.ls30{letter-spacing:0.014400px;}
.ls31{letter-spacing:0.019200px;}
.ls3c{letter-spacing:0.024000px;}
.ls32{letter-spacing:0.033600px;}
.ls1f{letter-spacing:0.042000px;}
.ls2e{letter-spacing:0.048000px;}
.ls2f{letter-spacing:0.062400px;}
.ls39{letter-spacing:0.460800px;}
.ls3{letter-spacing:2.908910px;}
.ls6{letter-spacing:2.985388px;}
.ls8{letter-spacing:2.987591px;}
.ls42{letter-spacing:2.995148px;}
.ls4{letter-spacing:3.004129px;}
.ls2{letter-spacing:3.016402px;}
.ls40{letter-spacing:3.049148px;}
.ls1{letter-spacing:3.112129px;}
.lsf{letter-spacing:3.192000px;}
.lsa{letter-spacing:4.320000px;}
.ls48{letter-spacing:5.754600px;}
.ls35{letter-spacing:8.949000px;}
.ls21{letter-spacing:12.141000px;}
.ls37{letter-spacing:15.984000px;}
.ls5{letter-spacing:16.342129px;}
.ls4a{letter-spacing:16.421700px;}
.ls41{letter-spacing:16.495148px;}
.ls3f{letter-spacing:16.944000px;}
.ls3b{letter-spacing:16.992000px;}
.ls36{letter-spacing:17.328000px;}
.ls9{letter-spacing:17.388000px;}
.ls25{letter-spacing:17.712000px;}
.lsd{letter-spacing:17.928000px;}
.lsc{letter-spacing:17.982000px;}
.ls26{letter-spacing:18.384000px;}
.ls45{letter-spacing:18.468000px;}
.ls47{letter-spacing:18.525000px;}
.ls4d{letter-spacing:18.981000px;}
.ls34{letter-spacing:19.776000px;}
.ls33{letter-spacing:19.800000px;}
.ls28{letter-spacing:20.640000px;}
.ls27{letter-spacing:20.736000px;}
.ls49{letter-spacing:21.409148px;}
.lsb{letter-spacing:22.302000px;}
.ls4c{letter-spacing:23.062200px;}
.ls4b{letter-spacing:26.334000px;}
.ls44{letter-spacing:27.531000px;}
.ls46{letter-spacing:36.594000px;}
.ls10{letter-spacing:41.838000px;}
.ls1e{letter-spacing:156.033000px;}
.ls3e{letter-spacing:485.880000px;}
.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;}
}
.ws14c{word-spacing:-509.880000px;}
.ws1d4{word-spacing:-35.898600px;}
.ws2c{word-spacing:-28.500000px;}
.ws27b{word-spacing:-28.477200px;}
.ws55{word-spacing:-28.471500px;}
.ws122{word-spacing:-24.460800px;}
.ws46{word-spacing:-24.004800px;}
.ws2b8{word-spacing:-24.000000px;}
.wsd5{word-spacing:-23.995200px;}
.ws123{word-spacing:-23.990400px;}
.ws48{word-spacing:-23.985600px;}
.wsc8{word-spacing:-23.980800px;}
.ws121{word-spacing:-23.961600px;}
.ws0{word-spacing:-23.310000px;}
.ws4{word-spacing:-22.500000px;}
.ws1db{word-spacing:-21.375000px;}
.ws200{word-spacing:-20.394600px;}
.ws24a{word-spacing:-20.354700px;}
.ws17c{word-spacing:-20.349000px;}
.ws119{word-spacing:-20.309100px;}
.ws20b{word-spacing:-20.257800px;}
.ws274{word-spacing:-20.246400px;}
.ws25f{word-spacing:-20.235000px;}
.ws1a5{word-spacing:-20.178000px;}
.ws51{word-spacing:-20.121000px;}
.ws210{word-spacing:-20.046900px;}
.ws130{word-spacing:-20.035500px;}
.ws1d6{word-spacing:-19.978500px;}
.ws13c{word-spacing:-19.961400px;}
.ws1d7{word-spacing:-19.950000px;}
.ws29{word-spacing:-19.910100px;}
.ws21c{word-spacing:-19.904400px;}
.ws10a{word-spacing:-19.881600px;}
.ws7d{word-spacing:-19.841700px;}
.ws62{word-spacing:-19.824600px;}
.ws17a{word-spacing:-19.796100px;}
.ws12e{word-spacing:-19.784700px;}
.ws54{word-spacing:-19.687800px;}
.ws166{word-spacing:-19.551000px;}
.ws1ff{word-spacing:-19.539600px;}
.ws36{word-spacing:-19.533900px;}
.ws254{word-spacing:-19.528200px;}
.ws142{word-spacing:-19.476900px;}
.ws65{word-spacing:-19.437000px;}
.ws66{word-spacing:-19.419900px;}
.ws110{word-spacing:-19.334400px;}
.ws3a{word-spacing:-19.311600px;}
.ws6b{word-spacing:-19.283100px;}
.wsb0{word-spacing:-19.203300px;}
.wsf3{word-spacing:-18.958200px;}
.ws3e{word-spacing:-18.941100px;}
.ws1a0{word-spacing:-18.935400px;}
.ws1a7{word-spacing:-18.895500px;}
.ws8b{word-spacing:-18.889800px;}
.ws3f{word-spacing:-18.861300px;}
.ws10b{word-spacing:-18.844200px;}
.ws16d{word-spacing:-18.827100px;}
.ws95{word-spacing:-18.815700px;}
.ws137{word-spacing:-18.798600px;}
.wsa6{word-spacing:-18.730200px;}
.ws1ae{word-spacing:-18.724500px;}
.ws77{word-spacing:-18.707400px;}
.wsf7{word-spacing:-18.684600px;}
.ws1a2{word-spacing:-18.610500px;}
.ws11a{word-spacing:-18.599100px;}
.ws14{word-spacing:-18.576000px;}
.ws25c{word-spacing:-18.513600px;}
.ws236{word-spacing:-18.456600px;}
.ws242{word-spacing:-18.382500px;}
.ws25e{word-spacing:-18.365400px;}
.ws255{word-spacing:-18.348300px;}
.ws201{word-spacing:-18.331200px;}
.ws63{word-spacing:-18.285600px;}
.ws209{word-spacing:-18.245700px;}
.ws143{word-spacing:-18.234300px;}
.ws52{word-spacing:-18.222900px;}
.wsf2{word-spacing:-18.188700px;}
.ws1e5{word-spacing:-18.160200px;}
.ws9{word-spacing:-18.144000px;}
.ws5a{word-spacing:-18.126000px;}
.ws8{word-spacing:-18.112500px;}
.ws1e6{word-spacing:-18.097500px;}
.ws7{word-spacing:-18.043200px;}
.ws111{word-spacing:-18.017700px;}
.ws116{word-spacing:-18.012000px;}
.ws22c{word-spacing:-18.006300px;}
.ws1f3{word-spacing:-17.977800px;}
.ws13d{word-spacing:-17.966400px;}
.ws7f{word-spacing:-17.909400px;}
.ws11b{word-spacing:-17.903700px;}
.ws108{word-spacing:-17.898000px;}
.ws59{word-spacing:-17.852400px;}
.ws272{word-spacing:-17.732700px;}
.ws6d{word-spacing:-17.687100px;}
.ws1b8{word-spacing:-17.664300px;}
.ws91{word-spacing:-17.584500px;}
.ws1e7{word-spacing:-17.573100px;}
.ws35{word-spacing:-17.544600px;}
.ws83{word-spacing:-17.504700px;}
.ws156{word-spacing:-17.413500px;}
.ws221{word-spacing:-17.396400px;}
.ws257{word-spacing:-17.385000px;}
.ws155{word-spacing:-17.367900px;}
.ws1d8{word-spacing:-17.231100px;}
.ws1be{word-spacing:-17.208300px;}
.ws168{word-spacing:-17.185500px;}
.ws1c7{word-spacing:-17.151300px;}
.ws15c{word-spacing:-17.139900px;}
.ws12f{word-spacing:-17.105700px;}
.ws22e{word-spacing:-17.088600px;}
.ws19d{word-spacing:-17.071500px;}
.ws20e{word-spacing:-17.043000px;}
.ws129{word-spacing:-17.016000px;}
.ws12a{word-spacing:-16.968000px;}
.ws2a5{word-spacing:-16.915200px;}
.ws12b{word-spacing:-16.900800px;}
.ws1a8{word-spacing:-16.889100px;}
.ws21d{word-spacing:-16.792200px;}
.ws23a{word-spacing:-16.718100px;}
.ws1e1{word-spacing:-16.672500px;}
.ws3c{word-spacing:-16.655400px;}
.ws113{word-spacing:-16.598400px;}
.ws184{word-spacing:-16.569600px;}
.ws3b{word-spacing:-16.530000px;}
.ws277{word-spacing:-16.524300px;}
.ws76{word-spacing:-16.518600px;}
.ws2b2{word-spacing:-16.502400px;}
.ws7a{word-spacing:-16.501500px;}
.wsb7{word-spacing:-16.495800px;}
.ws81{word-spacing:-16.490100px;}
.ws10d{word-spacing:-16.484400px;}
.ws39{word-spacing:-16.478700px;}
.ws1b4{word-spacing:-16.473000px;}
.ws5f{word-spacing:-16.467300px;}
.ws4c{word-spacing:-16.461600px;}
.ws19c{word-spacing:-16.455900px;}
.ws5b{word-spacing:-16.450200px;}
.ws40{word-spacing:-16.438800px;}
.wsa{word-spacing:-16.437600px;}
.ws1bb{word-spacing:-16.433100px;}
.ws90{word-spacing:-16.421700px;}
.wsc{word-spacing:-16.416000px;}
.ws78{word-spacing:-16.410300px;}
.wsb{word-spacing:-16.405200px;}
.ws2b{word-spacing:-16.404600px;}
.ws5e{word-spacing:-16.398900px;}
.ws32{word-spacing:-16.393200px;}
.ws69{word-spacing:-16.387500px;}
.wsd{word-spacing:-16.383600px;}
.ws5d{word-spacing:-16.381800px;}
.ws2a4{word-spacing:-16.377600px;}
.ws178{word-spacing:-16.370400px;}
.ws72{word-spacing:-16.364700px;}
.ws16e{word-spacing:-16.359000px;}
.wsa7{word-spacing:-16.353300px;}
.ws8c{word-spacing:-16.347600px;}
.ws1e0{word-spacing:-16.341900px;}
.ws21a{word-spacing:-16.245000px;}
.ws12d{word-spacing:-16.239300px;}
.ws2c5{word-spacing:-16.204800px;}
.ws25b{word-spacing:-16.153800px;}
.wsc2{word-spacing:-16.142400px;}
.ws9d{word-spacing:-16.125300px;}
.ws174{word-spacing:-16.051200px;}
.ws18e{word-spacing:-16.036800px;}
.ws1e{word-spacing:-15.984000px;}
.ws1f{word-spacing:-15.930000px;}
.ws1d0{word-spacing:-15.925800px;}
.ws267{word-spacing:-15.902400px;}
.ws53{word-spacing:-15.891600px;}
.ws1a6{word-spacing:-15.874500px;}
.ws112{word-spacing:-15.817500px;}
.wsf1{word-spacing:-15.789000px;}
.ws299{word-spacing:-15.777600px;}
.ws181{word-spacing:-15.749100px;}
.ws29a{word-spacing:-15.739200px;}
.ws10c{word-spacing:-15.720600px;}
.ws276{word-spacing:-15.640800px;}
.ws80{word-spacing:-15.595200px;}
.ws41{word-spacing:-15.572400px;}
.ws22{word-spacing:-15.552000px;}
.wsee{word-spacing:-15.521100px;}
.ws28d{word-spacing:-15.504000px;}
.ws6a{word-spacing:-15.492600px;}
.ws132{word-spacing:-15.452700px;}
.ws256{word-spacing:-15.447000px;}
.ws1e2{word-spacing:-15.424200px;}
.ws28c{word-spacing:-15.412800px;}
.ws29e{word-spacing:-15.403200px;}
.ws29d{word-spacing:-15.398400px;}
.ws187{word-spacing:-15.379200px;}
.wsba{word-spacing:-15.344400px;}
.ws196{word-spacing:-15.338700px;}
.ws21{word-spacing:-15.336000px;}
.wsdc{word-spacing:-15.331200px;}
.wsdb{word-spacing:-15.321600px;}
.ws213{word-spacing:-15.304500px;}
.ws1d1{word-spacing:-15.298800px;}
.wsd9{word-spacing:-15.288000px;}
.ws1d2{word-spacing:-15.287400px;}
.ws2b3{word-spacing:-15.278400px;}
.wsf4{word-spacing:-15.258900px;}
.ws215{word-spacing:-15.219000px;}
.ws2a7{word-spacing:-15.196800px;}
.wsda{word-spacing:-15.192000px;}
.wsc7{word-spacing:-15.163200px;}
.ws17f{word-spacing:-15.144900px;}
.ws202{word-spacing:-15.105000px;}
.ws2a6{word-spacing:-15.091200px;}
.ws1a1{word-spacing:-15.065100px;}
.ws12c{word-spacing:-15.008100px;}
.ws43{word-spacing:-14.962500px;}
.ws94{word-spacing:-14.928300px;}
.ws79{word-spacing:-14.888400px;}
.ws28a{word-spacing:-14.884800px;}
.ws8d{word-spacing:-14.882700px;}
.ws3d{word-spacing:-14.820000px;}
.ws18f{word-spacing:-14.812800px;}
.ws173{word-spacing:-14.763000px;}
.ws285{word-spacing:-14.745600px;}
.wsd7{word-spacing:-14.736000px;}
.ws157{word-spacing:-14.728800px;}
.wscc{word-spacing:-14.716800px;}
.ws11e{word-spacing:-14.711700px;}
.ws149{word-spacing:-14.702400px;}
.wscb{word-spacing:-14.692800px;}
.wsdf{word-spacing:-14.688000px;}
.wsf9{word-spacing:-14.683200px;}
.ws102{word-spacing:-14.678400px;}
.wsfc{word-spacing:-14.673600px;}
.wsdd{word-spacing:-14.668800px;}
.ws1d3{word-spacing:-14.666100px;}
.wsc9{word-spacing:-14.664000px;}
.wsce{word-spacing:-14.654400px;}
.wsfe{word-spacing:-14.649600px;}
.wscf{word-spacing:-14.644800px;}
.ws170{word-spacing:-14.643300px;}
.wsd2{word-spacing:-14.640000px;}
.ws128{word-spacing:-14.635200px;}
.wsd0{word-spacing:-14.630400px;}
.wsd8{word-spacing:-14.625600px;}
.wsd6{word-spacing:-14.620800px;}
.wscd{word-spacing:-14.616000px;}
.ws27{word-spacing:-14.611200px;}
.ws101{word-spacing:-14.606400px;}
.ws47{word-spacing:-14.601600px;}
.ws1e4{word-spacing:-14.597700px;}
.ws120{word-spacing:-14.592000px;}
.ws45{word-spacing:-14.587200px;}
.ws25{word-spacing:-14.582400px;}
.wsd4{word-spacing:-14.577600px;}
.wsca{word-spacing:-14.572800px;}
.ws148{word-spacing:-14.568000px;}
.wsd1{word-spacing:-14.563200px;}
.wsed{word-spacing:-14.558400px;}
.ws58{word-spacing:-14.557800px;}
.ws107{word-spacing:-14.548800px;}
.wsd3{word-spacing:-14.544000px;}
.wse8{word-spacing:-14.539200px;}
.ws24{word-spacing:-14.534400px;}
.wsde{word-spacing:-14.515200px;}
.ws26{word-spacing:-14.505600px;}
.wsa5{word-spacing:-14.472300px;}
.ws13a{word-spacing:-14.449500px;}
.wse0{word-spacing:-14.438400px;}
.ws8e{word-spacing:-14.438100px;}
.ws275{word-spacing:-14.426700px;}
.ws237{word-spacing:-14.403900px;}
.ws2a{word-spacing:-14.398200px;}
.ws172{word-spacing:-14.386800px;}
.ws26d{word-spacing:-14.385600px;}
.ws1d{word-spacing:-14.364000px;}
.ws98{word-spacing:-14.358300px;}
.ws1cb{word-spacing:-14.295600px;}
.ws4a{word-spacing:-14.289900px;}
.ws198{word-spacing:-14.232900px;}
.ws4f{word-spacing:-14.227200px;}
.ws75{word-spacing:-14.215800px;}
.ws11{word-spacing:-14.202000px;}
.ws145{word-spacing:-14.153100px;}
.ws118{word-spacing:-14.147400px;}
.ws222{word-spacing:-14.141700px;}
.ws223{word-spacing:-14.096100px;}
.ws21f{word-spacing:-14.090400px;}
.ws74{word-spacing:-14.050500px;}
.ws1{word-spacing:-13.986000px;}
.wsa1{word-spacing:-13.982100px;}
.ws175{word-spacing:-13.965000px;}
.ws1dc{word-spacing:-13.936500px;}
.ws22b{word-spacing:-13.908000px;}
.ws2ca{word-spacing:-13.905600px;}
.ws2ad{word-spacing:-13.900800px;}
.ws2c7{word-spacing:-13.848000px;}
.ws2b7{word-spacing:-13.838400px;}
.ws220{word-spacing:-13.828200px;}
.ws262{word-spacing:-13.811100px;}
.ws279{word-spacing:-13.785600px;}
.ws28e{word-spacing:-13.766400px;}
.ws1fe{word-spacing:-13.759800px;}
.ws3{word-spacing:-13.734000px;}
.ws283{word-spacing:-13.732800px;}
.ws2b4{word-spacing:-13.708800px;}
.ws2b6{word-spacing:-13.699200px;}
.ws82{word-spacing:-13.697100px;}
.ws291{word-spacing:-13.689600px;}
.ws23d{word-spacing:-13.685700px;}
.ws26e{word-spacing:-13.684800px;}
.ws244{word-spacing:-13.680000px;}
.ws160{word-spacing:-13.640100px;}
.ws17{word-spacing:-13.608000px;}
.ws20d{word-spacing:-13.548900px;}
.ws194{word-spacing:-13.531200px;}
.ws1b1{word-spacing:-13.520400px;}
.ws193{word-spacing:-13.516800px;}
.ws192{word-spacing:-13.483200px;}
.ws15b{word-spacing:-13.480500px;}
.ws2c8{word-spacing:-13.459200px;}
.ws1c2{word-spacing:-13.423500px;}
.ws6e{word-spacing:-13.383600px;}
.wsf8{word-spacing:-13.320900px;}
.ws10f{word-spacing:-13.263900px;}
.ws105{word-spacing:-13.209600px;}
.ws106{word-spacing:-13.190400px;}
.ws103{word-spacing:-13.180800px;}
.ws269{word-spacing:-13.156800px;}
.ws261{word-spacing:-13.155600px;}
.ws7e{word-spacing:-13.144200px;}
.ws2ac{word-spacing:-13.084800px;}
.ws104{word-spacing:-13.065600px;}
.ws25d{word-spacing:-13.064400px;}
.ws235{word-spacing:-13.047300px;}
.ws42{word-spacing:-12.984600px;}
.wsc5{word-spacing:-12.969000px;}
.ws22a{word-spacing:-12.950400px;}
.ws264{word-spacing:-12.887700px;}
.ws2ce{word-spacing:-12.878400px;}
.ws61{word-spacing:-12.870000px;}
.ws1b6{word-spacing:-12.847800px;}
.ws263{word-spacing:-12.830700px;}
.ws60{word-spacing:-12.826800px;}
.ws11c{word-spacing:-12.779400px;}
.ws17b{word-spacing:-12.768000px;}
.ws282{word-spacing:-12.724800px;}
.ws152{word-spacing:-12.722400px;}
.ws190{word-spacing:-12.676800px;}
.ws191{word-spacing:-12.667200px;}
.wsb4{word-spacing:-12.654000px;}
.ws1ad{word-spacing:-12.602700px;}
.ws19f{word-spacing:-12.597000px;}
.ws1a{word-spacing:-12.582000px;}
.ws1dd{word-spacing:-12.568500px;}
.ws64{word-spacing:-12.562800px;}
.ws19e{word-spacing:-12.505800px;}
.ws158{word-spacing:-12.454500px;}
.ws1cf{word-spacing:-12.397500px;}
.ws2a2{word-spacing:-12.379200px;}
.ws1a9{word-spacing:-12.374700px;}
.wsec{word-spacing:-12.364800px;}
.ws135{word-spacing:-12.363300px;}
.ws2a3{word-spacing:-12.336000px;}
.ws131{word-spacing:-12.312000px;}
.ws188{word-spacing:-12.302400px;}
.wse9{word-spacing:-12.264000px;}
.wsea{word-spacing:-12.240000px;}
.wsa9{word-spacing:-12.237900px;}
.ws234{word-spacing:-12.226500px;}
.wseb{word-spacing:-12.225600px;}
.ws248{word-spacing:-12.220800px;}
.ws20a{word-spacing:-12.192300px;}
.ws162{word-spacing:-12.135300px;}
.ws29b{word-spacing:-12.129600px;}
.ws1d5{word-spacing:-12.066900px;}
.ws15{word-spacing:-12.042000px;}
.ws86{word-spacing:-12.021300px;}
.ws134{word-spacing:-12.009900px;}
.ws138{word-spacing:-11.981400px;}
.ws1b{word-spacing:-11.934000px;}
.wsf5{word-spacing:-11.918700px;}
.ws281{word-spacing:-11.841600px;}
.ws214{word-spacing:-11.793300px;}
.ws5c{word-spacing:-11.753400px;}
.ws2cd{word-spacing:-11.688000px;}
.ws13e{word-spacing:-11.673600px;}
.ws23e{word-spacing:-11.650800px;}
.ws67{word-spacing:-11.645100px;}
.ws109{word-spacing:-11.605200px;}
.ws1c5{word-spacing:-11.553900px;}
.ws24b{word-spacing:-11.536800px;}
.ws87{word-spacing:-11.468400px;}
.ws2ae{word-spacing:-11.433600px;}
.ws4e{word-spacing:-11.371500px;}
.ws23f{word-spacing:-11.320200px;}
.ws2af{word-spacing:-11.212800px;}
.ws249{word-spacing:-11.149200px;}
.wsbe{word-spacing:-11.120700px;}
.wsbf{word-spacing:-11.115000px;}
.wsc4{word-spacing:-11.103600px;}
.ws16a{word-spacing:-11.052300px;}
.ws1c1{word-spacing:-11.012400px;}
.ws6f{word-spacing:-10.938300px;}
.ws22d{word-spacing:-10.932600px;}
.ws253{word-spacing:-10.847100px;}
.ws211{word-spacing:-10.835700px;}
.ws206{word-spacing:-10.807200px;}
.ws2bd{word-spacing:-10.747200px;}
.ws1c0{word-spacing:-10.744500px;}
.ws260{word-spacing:-10.716000px;}
.ws37{word-spacing:-10.670400px;}
.ws163{word-spacing:-10.659000px;}
.wsbb{word-spacing:-10.636200px;}
.ws1a3{word-spacing:-10.624800px;}
.ws1c4{word-spacing:-10.579200px;}
.ws1c8{word-spacing:-10.573500px;}
.ws1ab{word-spacing:-10.493700px;}
.ws9f{word-spacing:-10.470900px;}
.wsa3{word-spacing:-10.442400px;}
.ws18b{word-spacing:-10.358400px;}
.ws1ce{word-spacing:-10.328400px;}
.ws29c{word-spacing:-10.291200px;}
.ws177{word-spacing:-10.237200px;}
.ws232{word-spacing:-10.231500px;}
.ws2c2{word-spacing:-10.185600px;}
.ws2c6{word-spacing:-10.084800px;}
.ws271{word-spacing:-10.077600px;}
.ws16b{word-spacing:-10.066200px;}
.ws89{word-spacing:-10.026300px;}
.ws21e{word-spacing:-9.969300px;}
.ws4b{word-spacing:-9.952200px;}
.ws1b2{word-spacing:-9.935100px;}
.ws1f1{word-spacing:-9.918000px;}
.ws12{word-spacing:-9.882000px;}
.ws2b1{word-spacing:-9.787200px;}
.ws164{word-spacing:-9.758400px;}
.wsb1{word-spacing:-9.752700px;}
.ws7b{word-spacing:-9.690000px;}
.ws13{word-spacing:-9.666000px;}
.ws1ed{word-spacing:-9.655800px;}
.ws84{word-spacing:-9.644400px;}
.ws2f{word-spacing:-9.610200px;}
.ws1c3{word-spacing:-9.593100px;}
.ws1cd{word-spacing:-9.536100px;}
.ws25a{word-spacing:-9.524700px;}
.ws1cc{word-spacing:-9.484800px;}
.ws19a{word-spacing:-9.473400px;}
.ws7c{word-spacing:-9.382200px;}
.ws150{word-spacing:-9.376500px;}
.ws239{word-spacing:-9.342300px;}
.ws1d9{word-spacing:-9.336600px;}
.ws186{word-spacing:-9.312000px;}
.ws19{word-spacing:-9.288000px;}
.ws8f{word-spacing:-9.279600px;}
.ws230{word-spacing:-9.188400px;}
.ws10{word-spacing:-9.180000px;}
.ws117{word-spacing:-9.177000px;}
.ws9e{word-spacing:-9.148500px;}
.ws18{word-spacing:-9.072000px;}
.ws167{word-spacing:-9.068700px;}
.ws169{word-spacing:-9.057300px;}
.ws18a{word-spacing:-9.009600px;}
.ws1f2{word-spacing:-8.943300px;}
.ws2c3{word-spacing:-8.923200px;}
.ws71{word-spacing:-8.897700px;}
.ws259{word-spacing:-8.886300px;}
.ws26b{word-spacing:-8.880000px;}
.wsc1{word-spacing:-8.863500px;}
.ws246{word-spacing:-8.852100px;}
.ws203{word-spacing:-8.840700px;}
.ws29f{word-spacing:-8.774400px;}
.ws18d{word-spacing:-8.755200px;}
.ws99{word-spacing:-8.738100px;}
.ws1b3{word-spacing:-8.607000px;}
.wsae{word-spacing:-8.572800px;}
.wsad{word-spacing:-8.567100px;}
.wsaa{word-spacing:-8.521500px;}
.ws133{word-spacing:-8.510100px;}
.ws1ef{word-spacing:-8.493000px;}
.ws1c9{word-spacing:-8.401800px;}
.wsef{word-spacing:-8.379000px;}
.wsb6{word-spacing:-8.367600px;}
.ws136{word-spacing:-8.350500px;}
.ws183{word-spacing:-8.332800px;}
.ws96{word-spacing:-8.322000px;}
.wsa0{word-spacing:-8.293500px;}
.ws1b7{word-spacing:-8.276400px;}
.ws228{word-spacing:-8.247900px;}
.ws92{word-spacing:-8.242200px;}
.ws1b0{word-spacing:-8.230800px;}
.wsaf{word-spacing:-8.213700px;}
.ws159{word-spacing:-8.190900px;}
.ws2ab{word-spacing:-8.169600px;}
.ws4d{word-spacing:-8.133900px;}
.ws189{word-spacing:-8.131200px;}
.ws34{word-spacing:-8.082600px;}
.ws218{word-spacing:-8.071200px;}
.ws1ca{word-spacing:-8.025600px;}
.ws217{word-spacing:-7.997100px;}
.ws23c{word-spacing:-7.951500px;}
.ws1a4{word-spacing:-7.945800px;}
.ws16c{word-spacing:-7.934400px;}
.wsb8{word-spacing:-7.928700px;}
.ws161{word-spacing:-7.871700px;}
.ws19b{word-spacing:-7.866000px;}
.ws15a{word-spacing:-7.854600px;}
.ws18c{word-spacing:-7.756800px;}
.ws146{word-spacing:-7.729200px;}
.ws247{word-spacing:-7.700700px;}
.ws21b{word-spacing:-7.689300px;}
.ws245{word-spacing:-7.677900px;}
.ws23b{word-spacing:-7.655100px;}
.ws1bd{word-spacing:-7.632300px;}
.ws6c{word-spacing:-7.609500px;}
.ws265{word-spacing:-7.598100px;}
.ws290{word-spacing:-7.593600px;}
.ws1bc{word-spacing:-7.581000px;}
.ws68{word-spacing:-7.552500px;}
.ws298{word-spacing:-7.531200px;}
.ws2e{word-spacing:-7.512600px;}
.ws243{word-spacing:-7.484100px;}
.ws182{word-spacing:-7.478400px;}
.ws165{word-spacing:-7.467000px;}
.ws33{word-spacing:-7.427100px;}
.ws30{word-spacing:-7.364400px;}
.ws216{word-spacing:-7.324500px;}
.ws258{word-spacing:-7.267500px;}
.ws2c0{word-spacing:-7.204800px;}
.ws195{word-spacing:-7.108800px;}
.ws70{word-spacing:-7.079400px;}
.ws1ba{word-spacing:-7.068000px;}
.ws26c{word-spacing:-7.051200px;}
.wsbc{word-spacing:-6.999600px;}
.ws38{word-spacing:-6.988200px;}
.wsac{word-spacing:-6.948300px;}
.wsb5{word-spacing:-6.891300px;}
.ws144{word-spacing:-6.857100px;}
.ws2a0{word-spacing:-6.820800px;}
.ws204{word-spacing:-6.805800px;}
.ws1da{word-spacing:-6.800100px;}
.ws205{word-spacing:-6.771600px;}
.ws289{word-spacing:-6.763200px;}
.ws1fc{word-spacing:-6.663300px;}
.ws15d{word-spacing:-6.623400px;}
.wsc0{word-spacing:-6.543600px;}
.ws1e3{word-spacing:-6.509400px;}
.ws49{word-spacing:-6.486600px;}
.ws1fb{word-spacing:-6.463800px;}
.wsf6{word-spacing:-6.458100px;}
.ws1ea{word-spacing:-6.435300px;}
.ws2a9{word-spacing:-6.393600px;}
.wsf0{word-spacing:-6.378300px;}
.ws185{word-spacing:-6.254400px;}
.ws26a{word-spacing:-6.225600px;}
.ws226{word-spacing:-6.190200px;}
.ws28f{word-spacing:-6.115200px;}
.ws88{word-spacing:-6.110400px;}
.ws208{word-spacing:-6.087600px;}
.ws151{word-spacing:-6.081900px;}
.ws1af{word-spacing:-6.070500px;}
.ws1df{word-spacing:-5.910900px;}
.ws20f{word-spacing:-5.882400px;}
.wsb3{word-spacing:-5.819700px;}
.ws1ac{word-spacing:-5.705700px;}
.ws280{word-spacing:-5.673600px;}
.ws17d{word-spacing:-5.637300px;}
.ws1e9{word-spacing:-5.586000px;}
.ws1f6{word-spacing:-5.574600px;}
.ws1f5{word-spacing:-5.551800px;}
.ws154{word-spacing:-5.540400px;}
.ws1f7{word-spacing:-5.517600px;}
.ws9a{word-spacing:-5.494800px;}
.ws141{word-spacing:-5.489100px;}
.ws219{word-spacing:-5.443500px;}
.ws93{word-spacing:-5.369400px;}
.ws1c6{word-spacing:-5.312400px;}
.ws293{word-spacing:-5.241600px;}
.ws266{word-spacing:-5.217600px;}
.ws1b9{word-spacing:-5.198400px;}
.ws1eb{word-spacing:-5.038800px;}
.ws2b5{word-spacing:-5.035200px;}
.ws28b{word-spacing:-4.948800px;}
.ws1de{word-spacing:-4.936200px;}
.ws140{word-spacing:-4.867800px;}
.ws114{word-spacing:-4.788000px;}
.wsc3{word-spacing:-4.748100px;}
.ws17e{word-spacing:-4.708200px;}
.ws1e8{word-spacing:-4.679700px;}
.ws97{word-spacing:-4.639800px;}
.ws296{word-spacing:-4.603200px;}
.ws57{word-spacing:-4.599900px;}
.ws241{word-spacing:-4.571400px;}
.ws287{word-spacing:-4.540800px;}
.wsab{word-spacing:-4.514400px;}
.ws224{word-spacing:-4.491600px;}
.wsb9{word-spacing:-4.480200px;}
.wsb2{word-spacing:-4.434600px;}
.ws1f0{word-spacing:-4.349100px;}
.ws1fd{word-spacing:-4.309200px;}
.ws288{word-spacing:-4.300800px;}
.ws225{word-spacing:-4.275000px;}
.ws11d{word-spacing:-4.189500px;}
.ws2d{word-spacing:-4.018500px;}
.ws15f{word-spacing:-3.910200px;}
.ws1aa{word-spacing:-3.813300px;}
.ws2bc{word-spacing:-3.686400px;}
.ws14f{word-spacing:-3.633600px;}
.ws284{word-spacing:-3.624000px;}
.ws176{word-spacing:-3.545400px;}
.ws268{word-spacing:-3.379200px;}
.ws207{word-spacing:-3.357300px;}
.ws13f{word-spacing:-3.271800px;}
.ws2ba{word-spacing:-3.091200px;}
.ws1b5{word-spacing:-3.043800px;}
.ws297{word-spacing:-3.004800px;}
.ws13b{word-spacing:-2.724600px;}
.ws233{word-spacing:-2.633400px;}
.ws31{word-spacing:-2.599200px;}
.ws2b0{word-spacing:-2.448000px;}
.ws286{word-spacing:-2.390400px;}
.ws85{word-spacing:-2.234400px;}
.ws179{word-spacing:-2.194500px;}
.ws2cc{word-spacing:-2.155200px;}
.ws10e{word-spacing:-2.097600px;}
.ws250{word-spacing:-2.086200px;}
.ws9b{word-spacing:-1.983600px;}
.ws139{word-spacing:-1.915200px;}
.ws1ee{word-spacing:-1.869600px;}
.ws115{word-spacing:-1.841100px;}
.ws240{word-spacing:-1.601700px;}
.wsa4{word-spacing:-1.242600px;}
.ws2a8{word-spacing:-1.118400px;}
.ws153{word-spacing:-0.826500px;}
.ws292{word-spacing:-0.825600px;}
.ws199{word-spacing:-0.518700px;}
.ws197{word-spacing:-0.410400px;}
.ws273{word-spacing:-0.302100px;}
.ws2b9{word-spacing:-0.192000px;}
.ws180{word-spacing:-0.045600px;}
.ws23{word-spacing:-0.045000px;}
.wse{word-spacing:-0.031500px;}
.ws2{word-spacing:0.000000px;}
.ws15e{word-spacing:0.017100px;}
.ws2bf{word-spacing:0.110400px;}
.ws1fa{word-spacing:0.279300px;}
.ws227{word-spacing:0.387600px;}
.ws9c{word-spacing:0.678300px;}
.ws2c9{word-spacing:0.811200px;}
.ws73{word-spacing:0.940500px;}
.ws50{word-spacing:1.134300px;}
.ws1f4{word-spacing:1.151400px;}
.ws229{word-spacing:1.453500px;}
.ws171{word-spacing:1.630200px;}
.ws20c{word-spacing:1.772700px;}
.ws24c{word-spacing:1.869600px;}
.ws24f{word-spacing:1.977900px;}
.ws1ec{word-spacing:2.787300px;}
.wsa2{word-spacing:2.981100px;}
.ws1f8{word-spacing:3.494100px;}
.ws1f9{word-spacing:3.499800px;}
.ws56{word-spacing:3.921600px;}
.ws251{word-spacing:4.132500px;}
.ws252{word-spacing:4.297800px;}
.ws22f{word-spacing:4.406100px;}
.ws1bf{word-spacing:4.691100px;}
.wsbd{word-spacing:4.850700px;}
.ws295{word-spacing:5.059200px;}
.ws294{word-spacing:5.332800px;}
.ws2a1{word-spacing:6.950400px;}
.ws16f{word-spacing:6.988200px;}
.ws2cb{word-spacing:7.166400px;}
.ws24e{word-spacing:7.518300px;}
.ws2be{word-spacing:8.078400px;}
.ws231{word-spacing:8.168100px;}
.ws27d{word-spacing:8.515200px;}
.ws27e{word-spacing:8.582400px;}
.ws27c{word-spacing:8.592000px;}
.ws238{word-spacing:8.635500px;}
.ws27f{word-spacing:8.640000px;}
.ws14e{word-spacing:9.278400px;}
.ws24d{word-spacing:10.824000px;}
.ws8a{word-spacing:10.914000px;}
.wsa8{word-spacing:10.926000px;}
.ws20{word-spacing:10.962000px;}
.ws2aa{word-spacing:11.270400px;}
.ws212{word-spacing:12.618900px;}
.ws26f{word-spacing:12.625200px;}
.ws27a{word-spacing:12.631500px;}
.ws270{word-spacing:12.663000px;}
.ws278{word-spacing:12.744900px;}
.ws16{word-spacing:14.958000px;}
.ws1c{word-spacing:15.066000px;}
.ws5{word-spacing:17.270277px;}
.ws6{word-spacing:17.320676px;}
.ws147{word-spacing:17.788800px;}
.wsf{word-spacing:17.820000px;}
.ws11f{word-spacing:23.486400px;}
.wsc6{word-spacing:23.534400px;}
.ws2c1{word-spacing:27.902400px;}
.ws28{word-spacing:31.531500px;}
.ws44{word-spacing:33.446400px;}
.ws2c4{word-spacing:48.576000px;}
.ws125{word-spacing:124.886400px;}
.ws124{word-spacing:124.915200px;}
.ws2bb{word-spacing:133.587000px;}
.ws126{word-spacing:157.886400px;}
.ws127{word-spacing:157.915200px;}
.wse5{word-spacing:158.184000px;}
.wse3{word-spacing:158.193600px;}
.wse4{word-spacing:158.203200px;}
.wse2{word-spacing:158.222400px;}
.wse1{word-spacing:158.232000px;}
.wse6{word-spacing:199.564800px;}
.wse7{word-spacing:199.574400px;}
.wsfb{word-spacing:327.427200px;}
.ws14d{word-spacing:352.300800px;}
.ws14a{word-spacing:354.206400px;}
.wsfd{word-spacing:360.408000px;}
.ws100{word-spacing:371.011200px;}
.ws14b{word-spacing:375.052800px;}
.wsfa{word-spacing:392.865600px;}
.wsff{word-spacing:606.782400px;}
._63{margin-left:-485.875200px;}
._61{margin-left:-86.832000px;}
._62{margin-left:-54.268800px;}
._65{margin-left:-31.483200px;}
._66{margin-left:-16.404600px;}
._1{margin-left:-4.656026px;}
._2{margin-left:-3.231000px;}
._0{margin-left:-1.919987px;}
._3{width:1.065026px;}
._5{width:2.243868px;}
._10{width:3.434532px;}
._20{width:8.327987px;}
._11{width:9.892787px;}
._8{width:11.890200px;}
._41{width:12.990300px;}
._a{width:14.284200px;}
._7{width:16.125300px;}
._9{width:18.120300px;}
._42{width:19.915800px;}
._d{width:21.010200px;}
._c{width:22.264200px;}
._69{width:23.434632px;}
._67{width:25.427700px;}
._e{width:27.171900px;}
._b{width:29.988000px;}
._6a{width:31.575600px;}
._68{width:32.592600px;}
._4{width:67.729500px;}
._6b{width:74.284800px;}
._6c{width:75.324000px;}
._50{width:86.275200px;}
._6{width:100.336800px;}
._25{width:117.873600px;}
._2c{width:151.056626px;}
._f{width:156.681000px;}
._32{width:158.006400px;}
._28{width:170.164800px;}
._52{width:171.648000px;}
._37{width:182.184000px;}
._3c{width:190.718400px;}
._58{width:192.192000px;}
._5c{width:194.169587px;}
._27{width:202.905600px;}
._38{width:204.715892px;}
._31{width:206.198400px;}
._53{width:208.416000px;}
._5b{width:209.653694px;}
._57{width:216.005426px;}
._30{width:218.313600px;}
._51{width:222.465600px;}
._3d{width:223.569600px;}
._5d{width:227.232013px;}
._44{width:232.670400px;}
._46{width:246.633626px;}
._35{width:262.325413px;}
._2a{width:281.813987px;}
._2b{width:293.457600px;}
._4a{width:300.773453px;}
._33{width:304.996800px;}
._39{width:311.827226px;}
._40{width:313.238413px;}
._29{width:315.412800px;}
._15{width:333.907200px;}
._59{width:335.006387px;}
._2e{width:336.172800px;}
._3e{width:337.780800px;}
._36{width:347.131266px;}
._5a{width:352.492800px;}
._48{width:359.366400px;}
._26{width:364.262974px;}
._54{width:368.486400px;}
._1f{width:377.068800px;}
._45{width:388.152000px;}
._55{width:400.128000px;}
._21{width:403.545587px;}
._4b{width:407.486400px;}
._60{width:408.782400px;}
._4e{width:410.284787px;}
._56{width:413.265600px;}
._49{width:419.405426px;}
._64{width:431.644800px;}
._1c{width:441.312000px;}
._4f{width:444.979213px;}
._12{width:452.764800px;}
._3a{width:454.943987px;}
._5e{width:456.274747px;}
._3b{width:472.459200px;}
._3f{width:481.838413px;}
._5f{width:485.870400px;}
._1a{width:493.055987px;}
._2d{width:510.278413px;}
._2f{width:519.590413px;}
._19{width:550.680560px;}
._34{width:555.619200px;}
._4c{width:568.488000px;}
._4d{width:576.830400px;}
._24{width:578.707200px;}
._23{width:586.238387px;}
._1e{width:604.075800px;}
._47{width:616.233600px;}
._1b{width:638.813360px;}
._22{width:650.505587px;}
._14{width:660.336000px;}
._43{width:693.177600px;}
._18{width:790.660800px;}
._13{width:799.281600px;}
._1d{width:801.255000px;}
._17{width:847.349400px;}
._16{width:852.475187px;}
.fc2{color:rgb(0,0,132);}
.fc1{color:rgb(4,12,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.039400px;}
.fsc{font-size:42.000000px;}
.fse{font-size:42.750000px;}
.fsd{font-size:43.319400px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:47.879400px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:83.999400px;}
.fs0{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:49.351500px;}
.y329{bottom:52.362150px;}
.y2e0{bottom:55.332150px;}
.y1f1{bottom:60.448500px;}
.y21f{bottom:61.322400px;}
.y159{bottom:61.327650px;}
.ya5{bottom:61.329900px;}
.y28e{bottom:61.352250px;}
.ye0{bottom:61.353750px;}
.y195{bottom:61.356000px;}
.y1df{bottom:64.786500px;}
.y1bb{bottom:65.085750px;}
.y51{bottom:65.848500px;}
.y328{bottom:67.302150px;}
.y16{bottom:67.597501px;}
.y2df{bottom:77.755650px;}
.y21e{bottom:79.248900px;}
.y158{bottom:79.254150px;}
.ya4{bottom:79.256400px;}
.y28d{bottom:79.278750px;}
.ydf{bottom:79.280250px;}
.y194{bottom:79.282500px;}
.y11a{bottom:81.664650px;}
.y121{bottom:81.678900px;}
.y327{bottom:82.554150px;}
.y1de{bottom:82.727250px;}
.y1ba{bottom:83.012250px;}
.y26c{bottom:83.332500px;}
.y245{bottom:83.341500px;}
.y15{bottom:84.097501px;}
.y50{bottom:86.827650px;}
.y21d{bottom:97.189650px;}
.y157{bottom:97.194900px;}
.y28c{bottom:97.219500px;}
.yde{bottom:97.221000px;}
.y193{bottom:97.223250px;}
.y326{bottom:97.470150px;}
.y119{bottom:99.605400px;}
.y120{bottom:99.619650px;}
.y1dd{bottom:100.653750px;}
.y1b9{bottom:100.938750px;}
.y244{bottom:101.268000px;}
.y26b{bottom:101.325000px;}
.y2de{bottom:112.101150px;}
.y325{bottom:112.410150px;}
.y21c{bottom:115.116150px;}
.y156{bottom:115.121400px;}
.ya3{bottom:115.123650px;}
.y28b{bottom:115.146000px;}
.ydd{bottom:115.147500px;}
.y192{bottom:115.149750px;}
.y118{bottom:117.531900px;}
.y11f{bottom:117.546150px;}
.y1dc{bottom:118.580250px;}
.y1b8{bottom:118.879500px;}
.y243{bottom:119.194500px;}
.y26a{bottom:119.251500px;}
.y4f{bottom:125.603250px;}
.y324{bottom:127.350150px;}
.y6b{bottom:127.737750px;}
.y2dd{bottom:130.027650px;}
.y21b{bottom:133.042650px;}
.y155{bottom:133.047900px;}
.ya2{bottom:133.050150px;}
.y28a{bottom:133.072500px;}
.ydc{bottom:133.074000px;}
.y191{bottom:133.076250px;}
.y117{bottom:135.458400px;}
.y11e{bottom:135.472650px;}
.y1db{bottom:136.521000px;}
.y1b7{bottom:136.806000px;}
.y242{bottom:137.135250px;}
.y269{bottom:137.192250px;}
.y323{bottom:142.278150px;}
.y4e{bottom:143.529750px;}
.y6a{bottom:145.664250px;}
.y21a{bottom:150.983400px;}
.y154{bottom:150.988650px;}
.ya1{bottom:150.990900px;}
.y289{bottom:151.013250px;}
.ydb{bottom:151.014750px;}
.y190{bottom:151.017000px;}
.y116{bottom:153.399150px;}
.y11d{bottom:153.413400px;}
.y1da{bottom:154.447500px;}
.y1b6{bottom:154.732500px;}
.y241{bottom:155.061750px;}
.y268{bottom:155.118750px;}
.y2dc{bottom:156.933000px;}
.y322{bottom:157.218150px;}
.y4d{bottom:161.470500px;}
.y69{bottom:163.590750px;}
.y219{bottom:168.909900px;}
.y153{bottom:168.915150px;}
.ya0{bottom:168.917400px;}
.y288{bottom:168.939750px;}
.yda{bottom:168.941250px;}
.y18f{bottom:168.943500px;}
.y115{bottom:171.325650px;}
.y11c{bottom:171.339900px;}
.y321{bottom:172.158150px;}
.y1d9{bottom:172.374000px;}
.y1b5{bottom:172.673250px;}
.y240{bottom:172.988250px;}
.y267{bottom:173.045250px;}
.y4c{bottom:179.397000px;}
.y68{bottom:181.531500px;}
.y218{bottom:186.836400px;}
.y152{bottom:186.841650px;}
.y9f{bottom:186.843900px;}
.y287{bottom:186.866250px;}
.yd9{bottom:186.867750px;}
.y18e{bottom:186.870000px;}
.y320{bottom:187.098150px;}
.y114{bottom:189.252150px;}
.y11b{bottom:189.266400px;}
.y1b4{bottom:190.599750px;}
.y23f{bottom:190.929000px;}
.y266{bottom:190.986000px;}
.y4b{bottom:197.323500px;}
.y67{bottom:199.458000px;}
.y2db{bottom:200.268000px;}
.y31f{bottom:202.038150px;}
.y2c3{bottom:204.777150px;}
.y151{bottom:204.782400px;}
.y9e{bottom:204.784650px;}
.y286{bottom:204.807000px;}
.yd8{bottom:204.808500px;}
.y18d{bottom:204.810750px;}
.y217{bottom:204.818250px;}
.y1d8{bottom:208.241250px;}
.y1b3{bottom:208.526250px;}
.y23e{bottom:208.855500px;}
.y265{bottom:208.912500px;}
.y4a{bottom:215.264250px;}
.y31e{bottom:216.978150px;}
.y2da{bottom:222.691500px;}
.y150{bottom:222.708900px;}
.y9d{bottom:222.711150px;}
.y285{bottom:222.733500px;}
.yd7{bottom:222.735000px;}
.y18c{bottom:222.737250px;}
.y216{bottom:222.744750px;}
.y1d7{bottom:226.167750px;}
.y1b2{bottom:226.467000px;}
.y23d{bottom:226.820400px;}
.y264{bottom:226.839000px;}
.y113{bottom:230.919150px;}
.y2c2{bottom:231.669000px;}
.y31d{bottom:231.918150px;}
.y49{bottom:233.190750px;}
.y66{bottom:235.325250px;}
.y14f{bottom:240.635400px;}
.y9c{bottom:240.637650px;}
.y284{bottom:240.660000px;}
.yd6{bottom:240.661500px;}
.y18b{bottom:240.663750px;}
.y1d6{bottom:244.108500px;}
.y112{bottom:244.359150px;}
.y1b1{bottom:244.393500px;}
.y23c{bottom:244.761150px;}
.y263{bottom:244.779750px;}
.y31c{bottom:246.858150px;}
.y48{bottom:251.117250px;}
.y65{bottom:253.251750px;}
.y14e{bottom:258.576150px;}
.y283{bottom:258.600750px;}
.yd5{bottom:258.602250px;}
.y18a{bottom:258.604500px;}
.y215{bottom:258.612000px;}
.y2d9{bottom:261.554250px;}
.y31b{bottom:261.798150px;}
.y1d5{bottom:262.035000px;}
.y1b0{bottom:262.320000px;}
.y23b{bottom:262.687650px;}
.y262{bottom:262.706250px;}
.y111{bottom:266.509500px;}
.y47{bottom:269.058000px;}
.y64{bottom:271.192500px;}
.y14d{bottom:276.502650px;}
.y9b{bottom:276.504900px;}
.y282{bottom:276.527250px;}
.yd4{bottom:276.528750px;}
.y189{bottom:276.531000px;}
.y214{bottom:276.538500px;}
.y2c1{bottom:276.612750px;}
.y31a{bottom:276.738150px;}
.y2d8{bottom:279.495000px;}
.y1d4{bottom:279.975750px;}
.y1af{bottom:280.260750px;}
.y23a{bottom:280.614150px;}
.y261{bottom:280.632750px;}
.y110{bottom:284.125500px;}
.y46{bottom:286.984500px;}
.y63{bottom:289.119000px;}
.y319{bottom:291.678150px;}
.y9a{bottom:294.431400px;}
.yd3{bottom:294.455250px;}
.y188{bottom:294.457500px;}
.y213{bottom:294.465000px;}
.y2c0{bottom:294.539250px;}
.y14{bottom:295.126501px;}
.y2d7{bottom:297.421500px;}
.y1d3{bottom:297.902250px;}
.y1ae{bottom:298.187250px;}
.y260{bottom:298.573500px;}
.y10f{bottom:301.741500px;}
.y14c{bottom:303.408000px;}
.y45{bottom:304.925250px;}
.y318{bottom:306.618150px;}
.y62{bottom:307.045500px;}
.y99{bottom:312.372150px;}
.y281{bottom:312.394500px;}
.yd2{bottom:312.396000px;}
.y187{bottom:312.398250px;}
.y212{bottom:312.405750px;}
.y2bf{bottom:312.480000px;}
.y2d6{bottom:315.348000px;}
.y1d2{bottom:315.828750px;}
.y1ad{bottom:316.128000px;}
.y239{bottom:316.481400px;}
.y25f{bottom:316.500000px;}
.y10e{bottom:319.357500px;}
.y317{bottom:321.558150px;}
.y44{bottom:322.851750px;}
.y61{bottom:324.986250px;}
.y280{bottom:330.321000px;}
.yd1{bottom:330.322500px;}
.y186{bottom:330.324750px;}
.y211{bottom:330.332250px;}
.y2be{bottom:330.406500px;}
.y2d5{bottom:333.288750px;}
.y1d1{bottom:333.769500px;}
.y1ac{bottom:334.054500px;}
.y238{bottom:334.422150px;}
.y25e{bottom:334.440750px;}
.y316{bottom:336.498150px;}
.y10d{bottom:336.973500px;}
.y98{bottom:339.264000px;}
.y43{bottom:340.778250px;}
.y60{bottom:342.912750px;}
.y27f{bottom:348.261750px;}
.y185{bottom:348.265500px;}
.y210{bottom:348.273000px;}
.y2bd{bottom:348.347250px;}
.y2d4{bottom:351.215250px;}
.y315{bottom:351.438150px;}
.y1ab{bottom:351.981000px;}
.y237{bottom:352.348650px;}
.y25d{bottom:352.367250px;}
.y14b{bottom:354.547500px;}
.y10c{bottom:354.589500px;}
.y42{bottom:358.719000px;}
.y13{bottom:359.476501px;}
.y5f{bottom:360.839250px;}
.y97{bottom:366.169650px;}
.y27e{bottom:366.188250px;}
.yd0{bottom:366.189750px;}
.y184{bottom:366.192000px;}
.y20f{bottom:366.199500px;}
.y2bc{bottom:366.273750px;}
.y314{bottom:366.378150px;}
.y2d3{bottom:369.141750px;}
.y1d0{bottom:369.622500px;}
.y1aa{bottom:369.921750px;}
.y236{bottom:370.275150px;}
.y25c{bottom:370.293750px;}
.y10b{bottom:372.205500px;}
.y14a{bottom:372.474000px;}
.y41{bottom:376.645500px;}
.y5e{bottom:378.780000px;}
.y313{bottom:381.318150px;}
.y27d{bottom:384.114750px;}
.ycf{bottom:384.116250px;}
.y183{bottom:384.118500px;}
.y20e{bottom:384.126000px;}
.y2bb{bottom:384.200250px;}
.y2d2{bottom:387.082500px;}
.y1cf{bottom:387.563250px;}
.y1a9{bottom:387.848250px;}
.y235{bottom:388.215900px;}
.y25b{bottom:388.234500px;}
.y10a{bottom:389.821500px;}
.y149{bottom:390.414750px;}
.y40{bottom:394.572000px;}
.y312{bottom:396.258150px;}
.y5d{bottom:396.706500px;}
.y1f0{bottom:401.890500px;}
.yce{bottom:402.057000px;}
.y182{bottom:402.059250px;}
.y20d{bottom:402.066750px;}
.y2ba{bottom:402.141000px;}
.y2d1{bottom:405.009000px;}
.y1ce{bottom:405.489750px;}
.y1a8{bottom:405.774750px;}
.y234{bottom:406.142400px;}
.y25a{bottom:406.161000px;}
.y109{bottom:407.437500px;}
.y148{bottom:408.341250px;}
.y311{bottom:411.198150px;}
.y3f{bottom:412.512750px;}
.y5c{bottom:414.633000px;}
.y1ef{bottom:415.330500px;}
.y27c{bottom:419.982000px;}
.ycd{bottom:419.983500px;}
.y181{bottom:419.985750px;}
.y20c{bottom:419.993250px;}
.y96{bottom:420.018750px;}
.y2b9{bottom:420.067500px;}
.y1cd{bottom:423.416250px;}
.y1a7{bottom:423.715500px;}
.y12{bottom:423.826501px;}
.y259{bottom:424.087500px;}
.y108{bottom:425.065500px;}
.y310{bottom:426.138150px;}
.y147{bottom:426.282000px;}
.y1ee{bottom:428.794500px;}
.y3e{bottom:430.439250px;}
.y2d0{bottom:431.919150px;}
.y5b{bottom:432.573750px;}
.y27b{bottom:437.908500px;}
.ycc{bottom:437.910000px;}
.y180{bottom:437.912250px;}
.y20b{bottom:437.919750px;}
.y95{bottom:437.945250px;}
.y2b8{bottom:437.994000px;}
.y30f{bottom:441.078150px;}
.y1cc{bottom:441.357000px;}
.y1a6{bottom:441.642000px;}
.y233{bottom:442.009650px;}
.y258{bottom:442.028250px;}
.y1ed{bottom:442.234500px;}
.y107{bottom:442.681500px;}
.y146{bottom:444.208500px;}
.y3d{bottom:448.365750px;}
.y2cf{bottom:449.842650px;}
.y5a{bottom:450.500250px;}
.y1ec{bottom:455.674500px;}
.y27a{bottom:455.849250px;}
.ycb{bottom:455.850750px;}
.y17f{bottom:455.853000px;}
.y20a{bottom:455.860500px;}
.y94{bottom:455.886000px;}
.y2b7{bottom:455.934750px;}
.y30e{bottom:456.018150px;}
.y1cb{bottom:459.283500px;}
.y1a5{bottom:459.568500px;}
.y232{bottom:459.936150px;}
.y257{bottom:459.954750px;}
.y106{bottom:460.297500px;}
.y145{bottom:462.135000px;}
.y3c{bottom:466.306500px;}
.y59{bottom:468.426750px;}
.y1eb{bottom:469.138500px;}
.y30d{bottom:470.958150px;}
.y279{bottom:473.775750px;}
.yca{bottom:473.777250px;}
.y17e{bottom:473.779500px;}
.y93{bottom:473.812500px;}
.y2b6{bottom:473.861250px;}
.y1ca{bottom:477.210000px;}
.y1a4{bottom:477.509250px;}
.y231{bottom:477.862650px;}
.y256{bottom:477.881250px;}
.y105{bottom:477.913500px;}
.y144{bottom:480.075750px;}
.y1ea{bottom:482.578500px;}
.y3b{bottom:484.233000px;}
.y30c{bottom:485.898150px;}
.y58{bottom:486.367500px;}
.y11{bottom:491.107500px;}
.y278{bottom:491.702250px;}
.yc9{bottom:491.703750px;}
.y17d{bottom:491.706000px;}
.y209{bottom:491.713500px;}
.y92{bottom:491.739000px;}
.y2b5{bottom:491.787750px;}
.y2ce{bottom:493.230000px;}
.y1a3{bottom:495.435750px;}
.y104{bottom:495.529500px;}
.y230{bottom:495.803400px;}
.y255{bottom:495.822000px;}
.y1e9{bottom:496.018500px;}
.y30b{bottom:500.838150px;}
.y3a{bottom:502.159500px;}
.y57{bottom:504.294000px;}
.y2cd{bottom:508.170000px;}
.y1e8{bottom:509.458500px;}
.y277{bottom:509.643000px;}
.yc8{bottom:509.644500px;}
.y17c{bottom:509.646750px;}
.y208{bottom:509.654250px;}
.y91{bottom:509.679750px;}
.y2b4{bottom:509.728500px;}
.y1c9{bottom:513.077250px;}
.y103{bottom:513.145500px;}
.y1a2{bottom:513.362250px;}
.y22f{bottom:513.729900px;}
.y254{bottom:513.748500px;}
.y30a{bottom:515.766150px;}
.y143{bottom:515.928750px;}
.y39{bottom:520.100250px;}
.y56{bottom:522.220500px;}
.y1e7{bottom:522.922500px;}
.y2cc{bottom:523.110000px;}
.y276{bottom:527.569500px;}
.yc7{bottom:527.571000px;}
.y17b{bottom:527.573250px;}
.y207{bottom:527.580750px;}
.y90{bottom:527.606250px;}
.y2b3{bottom:527.655000px;}
.y309{bottom:530.706150px;}
.y102{bottom:530.761500px;}
.y1c8{bottom:531.003750px;}
.y1a1{bottom:531.303000px;}
.y22e{bottom:531.656400px;}
.y253{bottom:531.675000px;}
.y142{bottom:533.869500px;}
.y1e6{bottom:536.362500px;}
.y38{bottom:538.026750px;}
.y2cb{bottom:538.038000px;}
.y55{bottom:540.161250px;}
.y275{bottom:545.496000px;}
.yc6{bottom:545.497500px;}
.y17a{bottom:545.499750px;}
.y206{bottom:545.507250px;}
.y8f{bottom:545.532750px;}
.y2b2{bottom:545.581500px;}
.y308{bottom:545.646150px;}
.y1c7{bottom:548.944500px;}
.y1a0{bottom:549.229500px;}
.y22d{bottom:549.597150px;}
.y252{bottom:549.615750px;}
.y1e5{bottom:549.802500px;}
.y141{bottom:551.796000px;}
.y10{bottom:552.526501px;}
.y2ca{bottom:552.978000px;}
.y101{bottom:555.480000px;}
.y37{bottom:555.953250px;}
.y54{bottom:558.087750px;}
.y307{bottom:560.586150px;}
.y1e4{bottom:563.242500px;}
.y274{bottom:563.436750px;}
.yc5{bottom:563.438250px;}
.y179{bottom:563.440500px;}
.y205{bottom:563.448000px;}
.y8e{bottom:563.473500px;}
.y2b1{bottom:563.522250px;}
.y1c6{bottom:566.871000px;}
.y251{bottom:567.542250px;}
.y2c9{bottom:567.918000px;}
.y140{bottom:569.722500px;}
.y36{bottom:573.894000px;}
.y306{bottom:575.526150px;}
.y53{bottom:576.028500px;}
.y1e3{bottom:576.706500px;}
.y100{bottom:580.540500px;}
.y273{bottom:581.363250px;}
.yc4{bottom:581.364750px;}
.y178{bottom:581.367000px;}
.y204{bottom:581.374500px;}
.y8d{bottom:581.400000px;}
.y2b0{bottom:581.448750px;}
.y2c8{bottom:582.858000px;}
.y1c5{bottom:584.811750px;}
.y22c{bottom:585.450150px;}
.y250{bottom:585.468750px;}
.y13f{bottom:587.663250px;}
.y1e2{bottom:590.146500px;}
.y305{bottom:590.466150px;}
.y52{bottom:593.955000px;}
.y2c7{bottom:597.798000px;}
.y19f{bottom:598.666650px;}
.y272{bottom:599.289750px;}
.yc3{bottom:599.291250px;}
.y177{bottom:599.293500px;}
.y8c{bottom:599.326500px;}
.y2af{bottom:599.375250px;}
.y35{bottom:600.786000px;}
.y1c4{bottom:602.738250px;}
.y22b{bottom:603.390900px;}
.y24f{bottom:603.409500px;}
.y1e1{bottom:603.586500px;}
.y304{bottom:605.406150px;}
.y2c6{bottom:612.738000px;}
.y1e0{bottom:617.026500px;}
.y271{bottom:617.230500px;}
.yc2{bottom:617.232000px;}
.y176{bottom:617.234250px;}
.y203{bottom:617.241750px;}
.y8b{bottom:617.267250px;}
.y2ae{bottom:617.316000px;}
.y303{bottom:620.346150px;}
.y1c3{bottom:620.664750px;}
.y19e{bottom:620.787000px;}
.y22a{bottom:621.317400px;}
.y24e{bottom:621.336000px;}
.y13e{bottom:623.516250px;}
.yff{bottom:627.484500px;}
.y2c5{bottom:627.678000px;}
.y270{bottom:635.157000px;}
.yc1{bottom:635.158500px;}
.y175{bottom:635.160750px;}
.y202{bottom:635.168250px;}
.y8a{bottom:635.193750px;}
.y2ad{bottom:635.242500px;}
.y302{bottom:635.286150px;}
.yf{bottom:636.817498px;}
.y19d{bottom:638.415000px;}
.y229{bottom:639.243900px;}
.yfe{bottom:640.948500px;}
.y13d{bottom:641.457000px;}
.y2c4{bottom:650.101500px;}
.y301{bottom:650.226150px;}
.yc0{bottom:653.085000px;}
.y174{bottom:653.087250px;}
.y201{bottom:653.094750px;}
.y89{bottom:653.120250px;}
.y2ac{bottom:653.169000px;}
.y19c{bottom:656.031000px;}
.y1c2{bottom:656.532000px;}
.y228{bottom:657.184650px;}
.y24d{bottom:657.203250px;}
.y13c{bottom:659.383500px;}
.y26f{bottom:662.062650px;}
.yfd{bottom:663.081000px;}
.y300{bottom:665.166150px;}
.y30{bottom:665.356650px;}
.ye{bottom:666.817498px;}
.y173{bottom:671.028000px;}
.y200{bottom:671.035500px;}
.y88{bottom:671.061000px;}
.y2ab{bottom:671.109750px;}
.y19b{bottom:673.647000px;}
.y1c1{bottom:674.458500px;}
.y227{bottom:675.111150px;}
.y24c{bottom:675.129750px;}
.yfc{bottom:676.545000px;}
.y13b{bottom:677.310000px;}
.ybf{bottom:679.990500px;}
.y2ff{bottom:680.106150px;}
.y2f{bottom:680.301150px;}
.yd{bottom:684.817498px;}
.y172{bottom:688.954500px;}
.y1ff{bottom:688.962000px;}
.y87{bottom:688.987500px;}
.y2aa{bottom:689.036250px;}
.y19a{bottom:691.263000px;}
.y1c0{bottom:692.399250px;}
.y226{bottom:693.051900px;}
.y24b{bottom:693.070500px;}
.yfb{bottom:694.161000px;}
.y2fe{bottom:695.046150px;}
.y2e{bottom:695.245650px;}
.y13a{bottom:695.250750px;}
.yc{bottom:702.817498px;}
.y1fe{bottom:706.902750px;}
.y26e{bottom:706.928250px;}
.y2a9{bottom:706.977000px;}
.yfa{bottom:707.601000px;}
.y2fd{bottom:709.986150px;}
.y2d{bottom:710.190150px;}
.y1bf{bottom:710.325750px;}
.y225{bottom:710.978400px;}
.y24a{bottom:710.997000px;}
.y139{bottom:713.177250px;}
.y199{bottom:715.981500px;}
.yb{bottom:720.817498px;}
.y1fd{bottom:724.829250px;}
.y86{bottom:724.854750px;}
.ybe{bottom:724.881150px;}
.y2a8{bottom:724.903500px;}
.y2fc{bottom:724.926150px;}
.y2c{bottom:725.134650px;}
.yf9{bottom:725.217000px;}
.y1be{bottom:728.252250px;}
.y224{bottom:728.904900px;}
.y249{bottom:728.923500px;}
.y138{bottom:731.118000px;}
.yf8{bottom:738.657000px;}
.ya{bottom:738.817498px;}
.y2fb{bottom:739.866150px;}
.y2b{bottom:740.079150px;}
.y198{bottom:740.700000px;}
.y85{bottom:742.781250px;}
.ybd{bottom:742.807650px;}
.y2a7{bottom:742.830000px;}
.y1bd{bottom:746.193000px;}
.y223{bottom:746.845650px;}
.y248{bottom:746.864250px;}
.y137{bottom:749.044500px;}
.y2fa{bottom:754.806150px;}
.y2a{bottom:755.023650px;}
.yf7{bottom:756.273000px;}
.y171{bottom:758.971500px;}
.y1fc{bottom:760.696500px;}
.y84{bottom:760.722000px;}
.ybc{bottom:760.748400px;}
.y2a6{bottom:760.770750px;}
.y1bc{bottom:764.119500px;}
.y222{bottom:764.772150px;}
.y247{bottom:764.790750px;}
.y197{bottom:765.756000px;}
.y136{bottom:766.971000px;}
.yf6{bottom:769.737000px;}
.y2f9{bottom:769.746150px;}
.y29{bottom:769.968150px;}
.y170{bottom:772.411500px;}
.y1fb{bottom:778.623000px;}
.y83{bottom:778.648500px;}
.ybb{bottom:778.674900px;}
.y2a5{bottom:778.697250px;}
.y221{bottom:782.698650px;}
.y246{bottom:782.717250px;}
.y2f8{bottom:784.686150px;}
.y28{bottom:784.912650px;}
.yf5{bottom:787.353000px;}
.y9{bottom:791.289002px;}
.y16f{bottom:794.539500px;}
.y1fa{bottom:796.559250px;}
.y82{bottom:796.575000px;}
.yba{bottom:796.601400px;}
.y2a4{bottom:796.623750px;}
.y2f7{bottom:799.626150px;}
.y27{bottom:799.857150px;}
.yf4{bottom:800.793000px;}
.y16e{bottom:812.155500px;}
.y8{bottom:812.289002px;}
.y1f9{bottom:814.500000px;}
.y26d{bottom:814.515750px;}
.yb9{bottom:814.542150px;}
.y2a3{bottom:814.564500px;}
.y2f6{bottom:814.566150px;}
.y26{bottom:814.801650px;}
.yf3{bottom:818.421000px;}
.y135{bottom:825.189150px;}
.y220{bottom:825.534000px;}
.y196{bottom:826.236000px;}
.y2f5{bottom:829.506150px;}
.y25{bottom:829.746150px;}
.y16d{bottom:829.771500px;}
.yf2{bottom:831.861000px;}
.y1f8{bottom:832.426500px;}
.y81{bottom:832.442250px;}
.yb8{bottom:832.468650px;}
.y2a2{bottom:832.491000px;}
.y134{bottom:838.629150px;}
.y2f4{bottom:844.446150px;}
.y24{bottom:844.690650px;}
.y16c{bottom:847.387500px;}
.yf1{bottom:849.489000px;}
.y1f7{bottom:850.353000px;}
.y80{bottom:850.368750px;}
.yb7{bottom:850.395150px;}
.y2a1{bottom:850.417500px;}
.y34{bottom:850.678500px;}
.y2f3{bottom:859.386150px;}
.y23{bottom:859.635150px;}
.y133{bottom:860.779500px;}
.y33{bottom:864.118500px;}
.y16b{bottom:865.003500px;}
.yf0{bottom:867.105000px;}
.y1f6{bottom:868.293750px;}
.y7f{bottom:868.309500px;}
.yb6{bottom:868.335900px;}
.y2a0{bottom:868.358250px;}
.y2f2{bottom:874.326150px;}
.y22{bottom:874.579650px;}
.y7{bottom:875.940000px;}
.y32{bottom:877.558500px;}
.y132{bottom:878.395500px;}
.y16a{bottom:882.619500px;}
.yef{bottom:884.721000px;}
.y1f5{bottom:886.220250px;}
.y7e{bottom:886.236000px;}
.yb5{bottom:886.262400px;}
.y29f{bottom:886.284750px;}
.y2f1{bottom:889.254150px;}
.y21{bottom:889.524150px;}
.y31{bottom:891.022500px;}
.y131{bottom:896.011500px;}
.y169{bottom:900.235500px;}
.yee{bottom:902.337000px;}
.y1f4{bottom:904.146750px;}
.y7d{bottom:904.162500px;}
.yb4{bottom:904.188900px;}
.y2f0{bottom:904.194150px;}
.y29e{bottom:904.211250px;}
.y20{bottom:904.468500px;}
.y6{bottom:907.440000px;}
.y130{bottom:913.627500px;}
.y168{bottom:913.699500px;}
.y2ef{bottom:919.134150px;}
.yed{bottom:919.953000px;}
.y1f3{bottom:922.087500px;}
.y7c{bottom:922.103250px;}
.yb3{bottom:922.129650px;}
.y29d{bottom:922.152000px;}
.y12f{bottom:931.243500px;}
.y167{bottom:931.315500px;}
.y2ee{bottom:934.074150px;}
.y5{bottom:938.940000px;}
.y1f2{bottom:940.015650px;}
.y7b{bottom:940.029750px;}
.yb2{bottom:940.056150px;}
.y29c{bottom:940.078500px;}
.yec{bottom:941.820000px;}
.y12e{bottom:948.859500px;}
.y166{bottom:948.943500px;}
.y2ed{bottom:949.014150px;}
.y1f{bottom:949.572000px;}
.yeb{bottom:955.260000px;}
.y7a{bottom:957.956250px;}
.yb1{bottom:957.982650px;}
.y29b{bottom:958.005000px;}
.y165{bottom:962.383500px;}
.y2ec{bottom:963.954150px;}
.y1e{bottom:964.516500px;}
.y12d{bottom:966.487500px;}
.y4{bottom:970.440000px;}
.yea{bottom:972.876000px;}
.y79{bottom:975.897000px;}
.yb0{bottom:975.923400px;}
.y29a{bottom:975.945750px;}
.y2eb{bottom:978.894150px;}
.y164{bottom:979.999500px;}
.y12c{bottom:984.103500px;}
.y1d{bottom:986.157000px;}
.ye9{bottom:986.316000px;}
.y78{bottom:993.823500px;}
.y2ea{bottom:993.834150px;}
.yaf{bottom:993.849900px;}
.y299{bottom:993.872250px;}
.y163{bottom:997.615500px;}
.y12b{bottom:1001.719500px;}
.ye8{bottom:1003.932000px;}
.y1c{bottom:1006.465500px;}
.y2e9{bottom:1008.774150px;}
.y334{bottom:1008.805500px;}
.y340{bottom:1008.853500px;}
.y77{bottom:1011.764250px;}
.yae{bottom:1011.790650px;}
.y298{bottom:1011.813000px;}
.y162{bottom:1015.231500px;}
.ye7{bottom:1017.396000px;}
.y12a{bottom:1019.335500px;}
.y2e8{bottom:1023.714150px;}
.y333{bottom:1023.745500px;}
.y33f{bottom:1023.793500px;}
.y1b{bottom:1024.389000px;}
.y76{bottom:1029.690750px;}
.yad{bottom:1029.717150px;}
.y297{bottom:1029.739500px;}
.y161{bottom:1032.847500px;}
.y3{bottom:1035.546001px;}
.y129{bottom:1036.951500px;}
.y2e7{bottom:1038.654150px;}
.y332{bottom:1038.685500px;}
.y33e{bottom:1038.733500px;}
.y160{bottom:1046.311500px;}
.y75{bottom:1047.617250px;}
.yac{bottom:1047.643650px;}
.y296{bottom:1047.666000px;}
.y2e6{bottom:1053.594150px;}
.y331{bottom:1053.625500px;}
.y33d{bottom:1053.673500px;}
.y128{bottom:1054.567500px;}
.y15f{bottom:1063.927500px;}
.y74{bottom:1065.558000px;}
.yab{bottom:1065.584400px;}
.y295{bottom:1065.606750px;}
.y1a{bottom:1067.200671px;}
.y2e5{bottom:1068.534150px;}
.y330{bottom:1068.565500px;}
.y33c{bottom:1068.613500px;}
.y127{bottom:1072.183500px;}
.ye6{bottom:1075.557000px;}
.y15e{bottom:1081.555500px;}
.y73{bottom:1083.484500px;}
.y32f{bottom:1083.505500px;}
.y294{bottom:1083.533250px;}
.y33b{bottom:1083.553500px;}
.y126{bottom:1089.799500px;}
.y2e4{bottom:1090.944000px;}
.y19{bottom:1091.119500px;}
.ye5{bottom:1093.173000px;}
.y15d{bottom:1094.995500px;}
.y32e{bottom:1098.445500px;}
.y33a{bottom:1098.493500px;}
.y72{bottom:1101.411000px;}
.yaa{bottom:1101.437400px;}
.y293{bottom:1101.459750px;}
.y125{bottom:1107.415500px;}
.ye4{bottom:1110.789000px;}
.y15c{bottom:1112.611500px;}
.y32d{bottom:1113.385500px;}
.y339{bottom:1113.433500px;}
.y71{bottom:1119.351750px;}
.ya9{bottom:1119.378150px;}
.y292{bottom:1119.400500px;}
.y124{bottom:1125.031500px;}
.y32c{bottom:1128.325500px;}
.y338{bottom:1128.373500px;}
.y2e3{bottom:1135.207500px;}
.ye3{bottom:1135.507500px;}
.y70{bottom:1137.278250px;}
.ya8{bottom:1137.304650px;}
.y291{bottom:1137.327000px;}
.y15a{bottom:1137.330000px;}
.y2{bottom:1138.122003px;}
.y32b{bottom:1143.265500px;}
.y337{bottom:1143.313500px;}
.y123{bottom:1149.750000px;}
.y15b{bottom:1150.770000px;}
.y2e2{bottom:1152.568500px;}
.y6f{bottom:1155.204750px;}
.ya7{bottom:1155.231150px;}
.y290{bottom:1155.253500px;}
.y32a{bottom:1158.205500px;}
.y336{bottom:1158.253500px;}
.ye2{bottom:1160.583000px;}
.y18{bottom:1164.251250px;}
.y1{bottom:1165.122003px;}
.y2e1{bottom:1169.928150px;}
.y6e{bottom:1173.145500px;}
.ya6{bottom:1173.171900px;}
.y335{bottom:1173.193500px;}
.y28f{bottom:1173.194250px;}
.ye1{bottom:1174.023000px;}
.y122{bottom:1174.819500px;}
.y17{bottom:1177.695000px;}
.y6d{bottom:1213.483500px;}
.he{height:29.343171px;}
.h17{height:30.030000px;}
.h11{height:31.500000px;}
.ha{height:32.175000px;}
.h18{height:32.445000px;}
.h13{height:34.320000px;}
.h16{height:34.608000px;}
.h20{height:34.620000px;}
.h1f{height:34.625400px;}
.h21{height:34.704000px;}
.h3{height:36.773438px;}
.h10{height:38.610000px;}
.h12{height:38.934000px;}
.h15{height:41.097000px;}
.h7{height:41.370117px;}
.h19{height:43.260000px;}
.h14{height:45.423000px;}
.h6{height:45.966797px;}
.hf{height:48.945171px;}
.h1e{height:51.651887px;}
.h1d{height:51.750887px;}
.h1c{height:51.876287px;}
.h1b{height:51.908687px;}
.h1a{height:51.912287px;}
.h5{height:55.160156px;}
.hd{height:57.399047px;}
.hc{height:57.417647px;}
.hb{height:60.563567px;}
.h2{height:68.950195px;}
.h4{height:82.620000px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.h8{height:1262.835000px;}
.h9{height:1263.000000px;}
.w2{width:892.500000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x6{left:71.725500px;}
.x10{left:80.713500px;}
.x7{left:89.667000px;}
.x9{left:90.679500px;}
.x1b{left:96.865500px;}
.x2{left:145.650000px;}
.xe{left:188.413500px;}
.x1{left:191.880000px;}
.x3{left:197.700000px;}
.x5{left:233.515489px;}
.x19{left:273.078000px;}
.x4{left:293.590494px;}
.xc{left:396.022500px;}
.xa{left:455.422500px;}
.xf{left:462.061500px;}
.x17{left:464.386500px;}
.xd{left:471.037500px;}
.xb{left:473.349000px;}
.x1a{left:480.550500px;}
.x12{left:584.734500px;}
.x11{left:591.994500px;}
.x18{left:605.014500px;}
.x8{left:686.178000px;}
.x13{left:714.946500px;}
.x14{left:719.242500px;}
.x16{left:788.026500px;}
.x15{left:789.622500px;}
@media print{
.v2{vertical-align:-17.424000pt;}
.v5{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.424000pt;}
.v4{vertical-align:18.381333pt;}
.v1{vertical-align:20.352533pt;}
.ls29{letter-spacing:-2.513067pt;}
.ls3d{letter-spacing:-0.887467pt;}
.ls2d{letter-spacing:-0.046933pt;}
.ls3a{letter-spacing:-0.042667pt;}
.ls2c{letter-spacing:-0.034133pt;}
.ls17{letter-spacing:-0.029867pt;}
.ls16{letter-spacing:-0.025600pt;}
.ls1d{letter-spacing:-0.025333pt;}
.ls50{letter-spacing:-0.024000pt;}
.ls2b{letter-spacing:-0.021333pt;}
.ls23{letter-spacing:-0.020267pt;}
.ls2a{letter-spacing:-0.017067pt;}
.ls11{letter-spacing:-0.016800pt;}
.ls43{letter-spacing:-0.015200pt;}
.ls14{letter-spacing:-0.014400pt;}
.ls1c{letter-spacing:-0.012800pt;}
.ls15{letter-spacing:-0.012000pt;}
.ls12{letter-spacing:-0.011200pt;}
.ls38{letter-spacing:-0.010133pt;}
.ls1b{letter-spacing:-0.008533pt;}
.ls22{letter-spacing:-0.008000pt;}
.ls4f{letter-spacing:-0.005600pt;}
.ls19{letter-spacing:-0.005067pt;}
.ls13{letter-spacing:-0.004800pt;}
.ls18{letter-spacing:-0.004267pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.004267pt;}
.ls20{letter-spacing:0.005067pt;}
.ls4e{letter-spacing:0.005333pt;}
.ls24{letter-spacing:0.008533pt;}
.ls7{letter-spacing:0.009600pt;}
.ls1a{letter-spacing:0.010133pt;}
.ls30{letter-spacing:0.012800pt;}
.ls31{letter-spacing:0.017067pt;}
.ls3c{letter-spacing:0.021333pt;}
.ls32{letter-spacing:0.029867pt;}
.ls1f{letter-spacing:0.037333pt;}
.ls2e{letter-spacing:0.042667pt;}
.ls2f{letter-spacing:0.055467pt;}
.ls39{letter-spacing:0.409600pt;}
.ls3{letter-spacing:2.585698pt;}
.ls6{letter-spacing:2.653678pt;}
.ls8{letter-spacing:2.655636pt;}
.ls42{letter-spacing:2.662354pt;}
.ls4{letter-spacing:2.670337pt;}
.ls2{letter-spacing:2.681246pt;}
.ls40{letter-spacing:2.710354pt;}
.ls1{letter-spacing:2.766337pt;}
.lsf{letter-spacing:2.837333pt;}
.lsa{letter-spacing:3.840000pt;}
.ls48{letter-spacing:5.115200pt;}
.ls35{letter-spacing:7.954667pt;}
.ls21{letter-spacing:10.792000pt;}
.ls37{letter-spacing:14.208000pt;}
.ls5{letter-spacing:14.526337pt;}
.ls4a{letter-spacing:14.597067pt;}
.ls41{letter-spacing:14.662354pt;}
.ls3f{letter-spacing:15.061333pt;}
.ls3b{letter-spacing:15.104000pt;}
.ls36{letter-spacing:15.402667pt;}
.ls9{letter-spacing:15.456000pt;}
.ls25{letter-spacing:15.744000pt;}
.lsd{letter-spacing:15.936000pt;}
.lsc{letter-spacing:15.984000pt;}
.ls26{letter-spacing:16.341333pt;}
.ls45{letter-spacing:16.416000pt;}
.ls47{letter-spacing:16.466667pt;}
.ls4d{letter-spacing:16.872000pt;}
.ls34{letter-spacing:17.578667pt;}
.ls33{letter-spacing:17.600000pt;}
.ls28{letter-spacing:18.346667pt;}
.ls27{letter-spacing:18.432000pt;}
.ls49{letter-spacing:19.030354pt;}
.lsb{letter-spacing:19.824000pt;}
.ls4c{letter-spacing:20.499733pt;}
.ls4b{letter-spacing:23.408000pt;}
.ls44{letter-spacing:24.472000pt;}
.ls46{letter-spacing:32.528000pt;}
.ls10{letter-spacing:37.189333pt;}
.ls1e{letter-spacing:138.696000pt;}
.ls3e{letter-spacing:431.893333pt;}
.ws14c{word-spacing:-453.226667pt;}
.ws1d4{word-spacing:-31.909867pt;}
.ws2c{word-spacing:-25.333333pt;}
.ws27b{word-spacing:-25.313067pt;}
.ws55{word-spacing:-25.308000pt;}
.ws122{word-spacing:-21.742933pt;}
.ws46{word-spacing:-21.337600pt;}
.ws2b8{word-spacing:-21.333333pt;}
.wsd5{word-spacing:-21.329067pt;}
.ws123{word-spacing:-21.324800pt;}
.ws48{word-spacing:-21.320533pt;}
.wsc8{word-spacing:-21.316267pt;}
.ws121{word-spacing:-21.299200pt;}
.ws0{word-spacing:-20.720000pt;}
.ws4{word-spacing:-20.000000pt;}
.ws1db{word-spacing:-19.000000pt;}
.ws200{word-spacing:-18.128533pt;}
.ws24a{word-spacing:-18.093067pt;}
.ws17c{word-spacing:-18.088000pt;}
.ws119{word-spacing:-18.052533pt;}
.ws20b{word-spacing:-18.006933pt;}
.ws274{word-spacing:-17.996800pt;}
.ws25f{word-spacing:-17.986667pt;}
.ws1a5{word-spacing:-17.936000pt;}
.ws51{word-spacing:-17.885333pt;}
.ws210{word-spacing:-17.819467pt;}
.ws130{word-spacing:-17.809333pt;}
.ws1d6{word-spacing:-17.758667pt;}
.ws13c{word-spacing:-17.743467pt;}
.ws1d7{word-spacing:-17.733333pt;}
.ws29{word-spacing:-17.697867pt;}
.ws21c{word-spacing:-17.692800pt;}
.ws10a{word-spacing:-17.672533pt;}
.ws7d{word-spacing:-17.637067pt;}
.ws62{word-spacing:-17.621867pt;}
.ws17a{word-spacing:-17.596533pt;}
.ws12e{word-spacing:-17.586400pt;}
.ws54{word-spacing:-17.500267pt;}
.ws166{word-spacing:-17.378667pt;}
.ws1ff{word-spacing:-17.368533pt;}
.ws36{word-spacing:-17.363467pt;}
.ws254{word-spacing:-17.358400pt;}
.ws142{word-spacing:-17.312800pt;}
.ws65{word-spacing:-17.277333pt;}
.ws66{word-spacing:-17.262133pt;}
.ws110{word-spacing:-17.186133pt;}
.ws3a{word-spacing:-17.165867pt;}
.ws6b{word-spacing:-17.140533pt;}
.wsb0{word-spacing:-17.069600pt;}
.wsf3{word-spacing:-16.851733pt;}
.ws3e{word-spacing:-16.836533pt;}
.ws1a0{word-spacing:-16.831467pt;}
.ws1a7{word-spacing:-16.796000pt;}
.ws8b{word-spacing:-16.790933pt;}
.ws3f{word-spacing:-16.765600pt;}
.ws10b{word-spacing:-16.750400pt;}
.ws16d{word-spacing:-16.735200pt;}
.ws95{word-spacing:-16.725067pt;}
.ws137{word-spacing:-16.709867pt;}
.wsa6{word-spacing:-16.649067pt;}
.ws1ae{word-spacing:-16.644000pt;}
.ws77{word-spacing:-16.628800pt;}
.wsf7{word-spacing:-16.608533pt;}
.ws1a2{word-spacing:-16.542667pt;}
.ws11a{word-spacing:-16.532533pt;}
.ws14{word-spacing:-16.512000pt;}
.ws25c{word-spacing:-16.456533pt;}
.ws236{word-spacing:-16.405867pt;}
.ws242{word-spacing:-16.340000pt;}
.ws25e{word-spacing:-16.324800pt;}
.ws255{word-spacing:-16.309600pt;}
.ws201{word-spacing:-16.294400pt;}
.ws63{word-spacing:-16.253867pt;}
.ws209{word-spacing:-16.218400pt;}
.ws143{word-spacing:-16.208267pt;}
.ws52{word-spacing:-16.198133pt;}
.wsf2{word-spacing:-16.167733pt;}
.ws1e5{word-spacing:-16.142400pt;}
.ws9{word-spacing:-16.128000pt;}
.ws5a{word-spacing:-16.112000pt;}
.ws8{word-spacing:-16.100000pt;}
.ws1e6{word-spacing:-16.086667pt;}
.ws7{word-spacing:-16.038400pt;}
.ws111{word-spacing:-16.015733pt;}
.ws116{word-spacing:-16.010667pt;}
.ws22c{word-spacing:-16.005600pt;}
.ws1f3{word-spacing:-15.980267pt;}
.ws13d{word-spacing:-15.970133pt;}
.ws7f{word-spacing:-15.919467pt;}
.ws11b{word-spacing:-15.914400pt;}
.ws108{word-spacing:-15.909333pt;}
.ws59{word-spacing:-15.868800pt;}
.ws272{word-spacing:-15.762400pt;}
.ws6d{word-spacing:-15.721867pt;}
.ws1b8{word-spacing:-15.701600pt;}
.ws91{word-spacing:-15.630667pt;}
.ws1e7{word-spacing:-15.620533pt;}
.ws35{word-spacing:-15.595200pt;}
.ws83{word-spacing:-15.559733pt;}
.ws156{word-spacing:-15.478667pt;}
.ws221{word-spacing:-15.463467pt;}
.ws257{word-spacing:-15.453333pt;}
.ws155{word-spacing:-15.438133pt;}
.ws1d8{word-spacing:-15.316533pt;}
.ws1be{word-spacing:-15.296267pt;}
.ws168{word-spacing:-15.276000pt;}
.ws1c7{word-spacing:-15.245600pt;}
.ws15c{word-spacing:-15.235467pt;}
.ws12f{word-spacing:-15.205067pt;}
.ws22e{word-spacing:-15.189867pt;}
.ws19d{word-spacing:-15.174667pt;}
.ws20e{word-spacing:-15.149333pt;}
.ws129{word-spacing:-15.125333pt;}
.ws12a{word-spacing:-15.082667pt;}
.ws2a5{word-spacing:-15.035733pt;}
.ws12b{word-spacing:-15.022933pt;}
.ws1a8{word-spacing:-15.012533pt;}
.ws21d{word-spacing:-14.926400pt;}
.ws23a{word-spacing:-14.860533pt;}
.ws1e1{word-spacing:-14.820000pt;}
.ws3c{word-spacing:-14.804800pt;}
.ws113{word-spacing:-14.754133pt;}
.ws184{word-spacing:-14.728533pt;}
.ws3b{word-spacing:-14.693333pt;}
.ws277{word-spacing:-14.688267pt;}
.ws76{word-spacing:-14.683200pt;}
.ws2b2{word-spacing:-14.668800pt;}
.ws7a{word-spacing:-14.668000pt;}
.wsb7{word-spacing:-14.662933pt;}
.ws81{word-spacing:-14.657867pt;}
.ws10d{word-spacing:-14.652800pt;}
.ws39{word-spacing:-14.647733pt;}
.ws1b4{word-spacing:-14.642667pt;}
.ws5f{word-spacing:-14.637600pt;}
.ws4c{word-spacing:-14.632533pt;}
.ws19c{word-spacing:-14.627467pt;}
.ws5b{word-spacing:-14.622400pt;}
.ws40{word-spacing:-14.612267pt;}
.wsa{word-spacing:-14.611200pt;}
.ws1bb{word-spacing:-14.607200pt;}
.ws90{word-spacing:-14.597067pt;}
.wsc{word-spacing:-14.592000pt;}
.ws78{word-spacing:-14.586933pt;}
.wsb{word-spacing:-14.582400pt;}
.ws2b{word-spacing:-14.581867pt;}
.ws5e{word-spacing:-14.576800pt;}
.ws32{word-spacing:-14.571733pt;}
.ws69{word-spacing:-14.566667pt;}
.wsd{word-spacing:-14.563200pt;}
.ws5d{word-spacing:-14.561600pt;}
.ws2a4{word-spacing:-14.557867pt;}
.ws178{word-spacing:-14.551467pt;}
.ws72{word-spacing:-14.546400pt;}
.ws16e{word-spacing:-14.541333pt;}
.wsa7{word-spacing:-14.536267pt;}
.ws8c{word-spacing:-14.531200pt;}
.ws1e0{word-spacing:-14.526133pt;}
.ws21a{word-spacing:-14.440000pt;}
.ws12d{word-spacing:-14.434933pt;}
.ws2c5{word-spacing:-14.404267pt;}
.ws25b{word-spacing:-14.358933pt;}
.wsc2{word-spacing:-14.348800pt;}
.ws9d{word-spacing:-14.333600pt;}
.ws174{word-spacing:-14.267733pt;}
.ws18e{word-spacing:-14.254933pt;}
.ws1e{word-spacing:-14.208000pt;}
.ws1f{word-spacing:-14.160000pt;}
.ws1d0{word-spacing:-14.156267pt;}
.ws267{word-spacing:-14.135467pt;}
.ws53{word-spacing:-14.125867pt;}
.ws1a6{word-spacing:-14.110667pt;}
.ws112{word-spacing:-14.060000pt;}
.wsf1{word-spacing:-14.034667pt;}
.ws299{word-spacing:-14.024533pt;}
.ws181{word-spacing:-13.999200pt;}
.ws29a{word-spacing:-13.990400pt;}
.ws10c{word-spacing:-13.973867pt;}
.ws276{word-spacing:-13.902933pt;}
.ws80{word-spacing:-13.862400pt;}
.ws41{word-spacing:-13.842133pt;}
.ws22{word-spacing:-13.824000pt;}
.wsee{word-spacing:-13.796533pt;}
.ws28d{word-spacing:-13.781333pt;}
.ws6a{word-spacing:-13.771200pt;}
.ws132{word-spacing:-13.735733pt;}
.ws256{word-spacing:-13.730667pt;}
.ws1e2{word-spacing:-13.710400pt;}
.ws28c{word-spacing:-13.700267pt;}
.ws29e{word-spacing:-13.691733pt;}
.ws29d{word-spacing:-13.687467pt;}
.ws187{word-spacing:-13.670400pt;}
.wsba{word-spacing:-13.639467pt;}
.ws196{word-spacing:-13.634400pt;}
.ws21{word-spacing:-13.632000pt;}
.wsdc{word-spacing:-13.627733pt;}
.wsdb{word-spacing:-13.619200pt;}
.ws213{word-spacing:-13.604000pt;}
.ws1d1{word-spacing:-13.598933pt;}
.wsd9{word-spacing:-13.589333pt;}
.ws1d2{word-spacing:-13.588800pt;}
.ws2b3{word-spacing:-13.580800pt;}
.wsf4{word-spacing:-13.563467pt;}
.ws215{word-spacing:-13.528000pt;}
.ws2a7{word-spacing:-13.508267pt;}
.wsda{word-spacing:-13.504000pt;}
.wsc7{word-spacing:-13.478400pt;}
.ws17f{word-spacing:-13.462133pt;}
.ws202{word-spacing:-13.426667pt;}
.ws2a6{word-spacing:-13.414400pt;}
.ws1a1{word-spacing:-13.391200pt;}
.ws12c{word-spacing:-13.340533pt;}
.ws43{word-spacing:-13.300000pt;}
.ws94{word-spacing:-13.269600pt;}
.ws79{word-spacing:-13.234133pt;}
.ws28a{word-spacing:-13.230933pt;}
.ws8d{word-spacing:-13.229067pt;}
.ws3d{word-spacing:-13.173333pt;}
.ws18f{word-spacing:-13.166933pt;}
.ws173{word-spacing:-13.122667pt;}
.ws285{word-spacing:-13.107200pt;}
.wsd7{word-spacing:-13.098667pt;}
.ws157{word-spacing:-13.092267pt;}
.wscc{word-spacing:-13.081600pt;}
.ws11e{word-spacing:-13.077067pt;}
.ws149{word-spacing:-13.068800pt;}
.wscb{word-spacing:-13.060267pt;}
.wsdf{word-spacing:-13.056000pt;}
.wsf9{word-spacing:-13.051733pt;}
.ws102{word-spacing:-13.047467pt;}
.wsfc{word-spacing:-13.043200pt;}
.wsdd{word-spacing:-13.038933pt;}
.ws1d3{word-spacing:-13.036533pt;}
.wsc9{word-spacing:-13.034667pt;}
.wsce{word-spacing:-13.026133pt;}
.wsfe{word-spacing:-13.021867pt;}
.wscf{word-spacing:-13.017600pt;}
.ws170{word-spacing:-13.016267pt;}
.wsd2{word-spacing:-13.013333pt;}
.ws128{word-spacing:-13.009067pt;}
.wsd0{word-spacing:-13.004800pt;}
.wsd8{word-spacing:-13.000533pt;}
.wsd6{word-spacing:-12.996267pt;}
.wscd{word-spacing:-12.992000pt;}
.ws27{word-spacing:-12.987733pt;}
.ws101{word-spacing:-12.983467pt;}
.ws47{word-spacing:-12.979200pt;}
.ws1e4{word-spacing:-12.975733pt;}
.ws120{word-spacing:-12.970667pt;}
.ws45{word-spacing:-12.966400pt;}
.ws25{word-spacing:-12.962133pt;}
.wsd4{word-spacing:-12.957867pt;}
.wsca{word-spacing:-12.953600pt;}
.ws148{word-spacing:-12.949333pt;}
.wsd1{word-spacing:-12.945067pt;}
.wsed{word-spacing:-12.940800pt;}
.ws58{word-spacing:-12.940267pt;}
.ws107{word-spacing:-12.932267pt;}
.wsd3{word-spacing:-12.928000pt;}
.wse8{word-spacing:-12.923733pt;}
.ws24{word-spacing:-12.919467pt;}
.wsde{word-spacing:-12.902400pt;}
.ws26{word-spacing:-12.893867pt;}
.wsa5{word-spacing:-12.864267pt;}
.ws13a{word-spacing:-12.844000pt;}
.wse0{word-spacing:-12.834133pt;}
.ws8e{word-spacing:-12.833867pt;}
.ws275{word-spacing:-12.823733pt;}
.ws237{word-spacing:-12.803467pt;}
.ws2a{word-spacing:-12.798400pt;}
.ws172{word-spacing:-12.788267pt;}
.ws26d{word-spacing:-12.787200pt;}
.ws1d{word-spacing:-12.768000pt;}
.ws98{word-spacing:-12.762933pt;}
.ws1cb{word-spacing:-12.707200pt;}
.ws4a{word-spacing:-12.702133pt;}
.ws198{word-spacing:-12.651467pt;}
.ws4f{word-spacing:-12.646400pt;}
.ws75{word-spacing:-12.636267pt;}
.ws11{word-spacing:-12.624000pt;}
.ws145{word-spacing:-12.580533pt;}
.ws118{word-spacing:-12.575467pt;}
.ws222{word-spacing:-12.570400pt;}
.ws223{word-spacing:-12.529867pt;}
.ws21f{word-spacing:-12.524800pt;}
.ws74{word-spacing:-12.489333pt;}
.ws1{word-spacing:-12.432000pt;}
.wsa1{word-spacing:-12.428533pt;}
.ws175{word-spacing:-12.413333pt;}
.ws1dc{word-spacing:-12.388000pt;}
.ws22b{word-spacing:-12.362667pt;}
.ws2ca{word-spacing:-12.360533pt;}
.ws2ad{word-spacing:-12.356267pt;}
.ws2c7{word-spacing:-12.309333pt;}
.ws2b7{word-spacing:-12.300800pt;}
.ws220{word-spacing:-12.291733pt;}
.ws262{word-spacing:-12.276533pt;}
.ws279{word-spacing:-12.253867pt;}
.ws28e{word-spacing:-12.236800pt;}
.ws1fe{word-spacing:-12.230933pt;}
.ws3{word-spacing:-12.208000pt;}
.ws283{word-spacing:-12.206933pt;}
.ws2b4{word-spacing:-12.185600pt;}
.ws2b6{word-spacing:-12.177067pt;}
.ws82{word-spacing:-12.175200pt;}
.ws291{word-spacing:-12.168533pt;}
.ws23d{word-spacing:-12.165067pt;}
.ws26e{word-spacing:-12.164267pt;}
.ws244{word-spacing:-12.160000pt;}
.ws160{word-spacing:-12.124533pt;}
.ws17{word-spacing:-12.096000pt;}
.ws20d{word-spacing:-12.043467pt;}
.ws194{word-spacing:-12.027733pt;}
.ws1b1{word-spacing:-12.018133pt;}
.ws193{word-spacing:-12.014933pt;}
.ws192{word-spacing:-11.985067pt;}
.ws15b{word-spacing:-11.982667pt;}
.ws2c8{word-spacing:-11.963733pt;}
.ws1c2{word-spacing:-11.932000pt;}
.ws6e{word-spacing:-11.896533pt;}
.wsf8{word-spacing:-11.840800pt;}
.ws10f{word-spacing:-11.790133pt;}
.ws105{word-spacing:-11.741867pt;}
.ws106{word-spacing:-11.724800pt;}
.ws103{word-spacing:-11.716267pt;}
.ws269{word-spacing:-11.694933pt;}
.ws261{word-spacing:-11.693867pt;}
.ws7e{word-spacing:-11.683733pt;}
.ws2ac{word-spacing:-11.630933pt;}
.ws104{word-spacing:-11.613867pt;}
.ws25d{word-spacing:-11.612800pt;}
.ws235{word-spacing:-11.597600pt;}
.ws42{word-spacing:-11.541867pt;}
.wsc5{word-spacing:-11.528000pt;}
.ws22a{word-spacing:-11.511467pt;}
.ws264{word-spacing:-11.455733pt;}
.ws2ce{word-spacing:-11.447467pt;}
.ws61{word-spacing:-11.440000pt;}
.ws1b6{word-spacing:-11.420267pt;}
.ws263{word-spacing:-11.405067pt;}
.ws60{word-spacing:-11.401600pt;}
.ws11c{word-spacing:-11.359467pt;}
.ws17b{word-spacing:-11.349333pt;}
.ws282{word-spacing:-11.310933pt;}
.ws152{word-spacing:-11.308800pt;}
.ws190{word-spacing:-11.268267pt;}
.ws191{word-spacing:-11.259733pt;}
.wsb4{word-spacing:-11.248000pt;}
.ws1ad{word-spacing:-11.202400pt;}
.ws19f{word-spacing:-11.197333pt;}
.ws1a{word-spacing:-11.184000pt;}
.ws1dd{word-spacing:-11.172000pt;}
.ws64{word-spacing:-11.166933pt;}
.ws19e{word-spacing:-11.116267pt;}
.ws158{word-spacing:-11.070667pt;}
.ws1cf{word-spacing:-11.020000pt;}
.ws2a2{word-spacing:-11.003733pt;}
.ws1a9{word-spacing:-10.999733pt;}
.wsec{word-spacing:-10.990933pt;}
.ws135{word-spacing:-10.989600pt;}
.ws2a3{word-spacing:-10.965333pt;}
.ws131{word-spacing:-10.944000pt;}
.ws188{word-spacing:-10.935467pt;}
.wse9{word-spacing:-10.901333pt;}
.wsea{word-spacing:-10.880000pt;}
.wsa9{word-spacing:-10.878133pt;}
.ws234{word-spacing:-10.868000pt;}
.wseb{word-spacing:-10.867200pt;}
.ws248{word-spacing:-10.862933pt;}
.ws20a{word-spacing:-10.837600pt;}
.ws162{word-spacing:-10.786933pt;}
.ws29b{word-spacing:-10.781867pt;}
.ws1d5{word-spacing:-10.726133pt;}
.ws15{word-spacing:-10.704000pt;}
.ws86{word-spacing:-10.685600pt;}
.ws134{word-spacing:-10.675467pt;}
.ws138{word-spacing:-10.650133pt;}
.ws1b{word-spacing:-10.608000pt;}
.wsf5{word-spacing:-10.594400pt;}
.ws281{word-spacing:-10.525867pt;}
.ws214{word-spacing:-10.482933pt;}
.ws5c{word-spacing:-10.447467pt;}
.ws2cd{word-spacing:-10.389333pt;}
.ws13e{word-spacing:-10.376533pt;}
.ws23e{word-spacing:-10.356267pt;}
.ws67{word-spacing:-10.351200pt;}
.ws109{word-spacing:-10.315733pt;}
.ws1c5{word-spacing:-10.270133pt;}
.ws24b{word-spacing:-10.254933pt;}
.ws87{word-spacing:-10.194133pt;}
.ws2ae{word-spacing:-10.163200pt;}
.ws4e{word-spacing:-10.108000pt;}
.ws23f{word-spacing:-10.062400pt;}
.ws2af{word-spacing:-9.966933pt;}
.ws249{word-spacing:-9.910400pt;}
.wsbe{word-spacing:-9.885067pt;}
.wsbf{word-spacing:-9.880000pt;}
.wsc4{word-spacing:-9.869867pt;}
.ws16a{word-spacing:-9.824267pt;}
.ws1c1{word-spacing:-9.788800pt;}
.ws6f{word-spacing:-9.722933pt;}
.ws22d{word-spacing:-9.717867pt;}
.ws253{word-spacing:-9.641867pt;}
.ws211{word-spacing:-9.631733pt;}
.ws206{word-spacing:-9.606400pt;}
.ws2bd{word-spacing:-9.553067pt;}
.ws1c0{word-spacing:-9.550667pt;}
.ws260{word-spacing:-9.525333pt;}
.ws37{word-spacing:-9.484800pt;}
.ws163{word-spacing:-9.474667pt;}
.wsbb{word-spacing:-9.454400pt;}
.ws1a3{word-spacing:-9.444267pt;}
.ws1c4{word-spacing:-9.403733pt;}
.ws1c8{word-spacing:-9.398667pt;}
.ws1ab{word-spacing:-9.327733pt;}
.ws9f{word-spacing:-9.307467pt;}
.wsa3{word-spacing:-9.282133pt;}
.ws18b{word-spacing:-9.207467pt;}
.ws1ce{word-spacing:-9.180800pt;}
.ws29c{word-spacing:-9.147733pt;}
.ws177{word-spacing:-9.099733pt;}
.ws232{word-spacing:-9.094667pt;}
.ws2c2{word-spacing:-9.053867pt;}
.ws2c6{word-spacing:-8.964267pt;}
.ws271{word-spacing:-8.957867pt;}
.ws16b{word-spacing:-8.947733pt;}
.ws89{word-spacing:-8.912267pt;}
.ws21e{word-spacing:-8.861600pt;}
.ws4b{word-spacing:-8.846400pt;}
.ws1b2{word-spacing:-8.831200pt;}
.ws1f1{word-spacing:-8.816000pt;}
.ws12{word-spacing:-8.784000pt;}
.ws2b1{word-spacing:-8.699733pt;}
.ws164{word-spacing:-8.674133pt;}
.wsb1{word-spacing:-8.669067pt;}
.ws7b{word-spacing:-8.613333pt;}
.ws13{word-spacing:-8.592000pt;}
.ws1ed{word-spacing:-8.582933pt;}
.ws84{word-spacing:-8.572800pt;}
.ws2f{word-spacing:-8.542400pt;}
.ws1c3{word-spacing:-8.527200pt;}
.ws1cd{word-spacing:-8.476533pt;}
.ws25a{word-spacing:-8.466400pt;}
.ws1cc{word-spacing:-8.430933pt;}
.ws19a{word-spacing:-8.420800pt;}
.ws7c{word-spacing:-8.339733pt;}
.ws150{word-spacing:-8.334667pt;}
.ws239{word-spacing:-8.304267pt;}
.ws1d9{word-spacing:-8.299200pt;}
.ws186{word-spacing:-8.277333pt;}
.ws19{word-spacing:-8.256000pt;}
.ws8f{word-spacing:-8.248533pt;}
.ws230{word-spacing:-8.167467pt;}
.ws10{word-spacing:-8.160000pt;}
.ws117{word-spacing:-8.157333pt;}
.ws9e{word-spacing:-8.132000pt;}
.ws18{word-spacing:-8.064000pt;}
.ws167{word-spacing:-8.061067pt;}
.ws169{word-spacing:-8.050933pt;}
.ws18a{word-spacing:-8.008533pt;}
.ws1f2{word-spacing:-7.949600pt;}
.ws2c3{word-spacing:-7.931733pt;}
.ws71{word-spacing:-7.909067pt;}
.ws259{word-spacing:-7.898933pt;}
.ws26b{word-spacing:-7.893333pt;}
.wsc1{word-spacing:-7.878667pt;}
.ws246{word-spacing:-7.868533pt;}
.ws203{word-spacing:-7.858400pt;}
.ws29f{word-spacing:-7.799467pt;}
.ws18d{word-spacing:-7.782400pt;}
.ws99{word-spacing:-7.767200pt;}
.ws1b3{word-spacing:-7.650667pt;}
.wsae{word-spacing:-7.620267pt;}
.wsad{word-spacing:-7.615200pt;}
.wsaa{word-spacing:-7.574667pt;}
.ws133{word-spacing:-7.564533pt;}
.ws1ef{word-spacing:-7.549333pt;}
.ws1c9{word-spacing:-7.468267pt;}
.wsef{word-spacing:-7.448000pt;}
.wsb6{word-spacing:-7.437867pt;}
.ws136{word-spacing:-7.422667pt;}
.ws183{word-spacing:-7.406933pt;}
.ws96{word-spacing:-7.397333pt;}
.wsa0{word-spacing:-7.372000pt;}
.ws1b7{word-spacing:-7.356800pt;}
.ws228{word-spacing:-7.331467pt;}
.ws92{word-spacing:-7.326400pt;}
.ws1b0{word-spacing:-7.316267pt;}
.wsaf{word-spacing:-7.301067pt;}
.ws159{word-spacing:-7.280800pt;}
.ws2ab{word-spacing:-7.261867pt;}
.ws4d{word-spacing:-7.230133pt;}
.ws189{word-spacing:-7.227733pt;}
.ws34{word-spacing:-7.184533pt;}
.ws218{word-spacing:-7.174400pt;}
.ws1ca{word-spacing:-7.133867pt;}
.ws217{word-spacing:-7.108533pt;}
.ws23c{word-spacing:-7.068000pt;}
.ws1a4{word-spacing:-7.062933pt;}
.ws16c{word-spacing:-7.052800pt;}
.wsb8{word-spacing:-7.047733pt;}
.ws161{word-spacing:-6.997067pt;}
.ws19b{word-spacing:-6.992000pt;}
.ws15a{word-spacing:-6.981867pt;}
.ws18c{word-spacing:-6.894933pt;}
.ws146{word-spacing:-6.870400pt;}
.ws247{word-spacing:-6.845067pt;}
.ws21b{word-spacing:-6.834933pt;}
.ws245{word-spacing:-6.824800pt;}
.ws23b{word-spacing:-6.804533pt;}
.ws1bd{word-spacing:-6.784267pt;}
.ws6c{word-spacing:-6.764000pt;}
.ws265{word-spacing:-6.753867pt;}
.ws290{word-spacing:-6.749867pt;}
.ws1bc{word-spacing:-6.738667pt;}
.ws68{word-spacing:-6.713333pt;}
.ws298{word-spacing:-6.694400pt;}
.ws2e{word-spacing:-6.677867pt;}
.ws243{word-spacing:-6.652533pt;}
.ws182{word-spacing:-6.647467pt;}
.ws165{word-spacing:-6.637333pt;}
.ws33{word-spacing:-6.601867pt;}
.ws30{word-spacing:-6.546133pt;}
.ws216{word-spacing:-6.510667pt;}
.ws258{word-spacing:-6.460000pt;}
.ws2c0{word-spacing:-6.404267pt;}
.ws195{word-spacing:-6.318933pt;}
.ws70{word-spacing:-6.292800pt;}
.ws1ba{word-spacing:-6.282667pt;}
.ws26c{word-spacing:-6.267733pt;}
.wsbc{word-spacing:-6.221867pt;}
.ws38{word-spacing:-6.211733pt;}
.wsac{word-spacing:-6.176267pt;}
.wsb5{word-spacing:-6.125600pt;}
.ws144{word-spacing:-6.095200pt;}
.ws2a0{word-spacing:-6.062933pt;}
.ws204{word-spacing:-6.049600pt;}
.ws1da{word-spacing:-6.044533pt;}
.ws205{word-spacing:-6.019200pt;}
.ws289{word-spacing:-6.011733pt;}
.ws1fc{word-spacing:-5.922933pt;}
.ws15d{word-spacing:-5.887467pt;}
.wsc0{word-spacing:-5.816533pt;}
.ws1e3{word-spacing:-5.786133pt;}
.ws49{word-spacing:-5.765867pt;}
.ws1fb{word-spacing:-5.745600pt;}
.wsf6{word-spacing:-5.740533pt;}
.ws1ea{word-spacing:-5.720267pt;}
.ws2a9{word-spacing:-5.683200pt;}
.wsf0{word-spacing:-5.669600pt;}
.ws185{word-spacing:-5.559467pt;}
.ws26a{word-spacing:-5.533867pt;}
.ws226{word-spacing:-5.502400pt;}
.ws28f{word-spacing:-5.435733pt;}
.ws88{word-spacing:-5.431467pt;}
.ws208{word-spacing:-5.411200pt;}
.ws151{word-spacing:-5.406133pt;}
.ws1af{word-spacing:-5.396000pt;}
.ws1df{word-spacing:-5.254133pt;}
.ws20f{word-spacing:-5.228800pt;}
.wsb3{word-spacing:-5.173067pt;}
.ws1ac{word-spacing:-5.071733pt;}
.ws280{word-spacing:-5.043200pt;}
.ws17d{word-spacing:-5.010933pt;}
.ws1e9{word-spacing:-4.965333pt;}
.ws1f6{word-spacing:-4.955200pt;}
.ws1f5{word-spacing:-4.934933pt;}
.ws154{word-spacing:-4.924800pt;}
.ws1f7{word-spacing:-4.904533pt;}
.ws9a{word-spacing:-4.884267pt;}
.ws141{word-spacing:-4.879200pt;}
.ws219{word-spacing:-4.838667pt;}
.ws93{word-spacing:-4.772800pt;}
.ws1c6{word-spacing:-4.722133pt;}
.ws293{word-spacing:-4.659200pt;}
.ws266{word-spacing:-4.637867pt;}
.ws1b9{word-spacing:-4.620800pt;}
.ws1eb{word-spacing:-4.478933pt;}
.ws2b5{word-spacing:-4.475733pt;}
.ws28b{word-spacing:-4.398933pt;}
.ws1de{word-spacing:-4.387733pt;}
.ws140{word-spacing:-4.326933pt;}
.ws114{word-spacing:-4.256000pt;}
.wsc3{word-spacing:-4.220533pt;}
.ws17e{word-spacing:-4.185067pt;}
.ws1e8{word-spacing:-4.159733pt;}
.ws97{word-spacing:-4.124267pt;}
.ws296{word-spacing:-4.091733pt;}
.ws57{word-spacing:-4.088800pt;}
.ws241{word-spacing:-4.063467pt;}
.ws287{word-spacing:-4.036267pt;}
.wsab{word-spacing:-4.012800pt;}
.ws224{word-spacing:-3.992533pt;}
.wsb9{word-spacing:-3.982400pt;}
.wsb2{word-spacing:-3.941867pt;}
.ws1f0{word-spacing:-3.865867pt;}
.ws1fd{word-spacing:-3.830400pt;}
.ws288{word-spacing:-3.822933pt;}
.ws225{word-spacing:-3.800000pt;}
.ws11d{word-spacing:-3.724000pt;}
.ws2d{word-spacing:-3.572000pt;}
.ws15f{word-spacing:-3.475733pt;}
.ws1aa{word-spacing:-3.389600pt;}
.ws2bc{word-spacing:-3.276800pt;}
.ws14f{word-spacing:-3.229867pt;}
.ws284{word-spacing:-3.221333pt;}
.ws176{word-spacing:-3.151467pt;}
.ws268{word-spacing:-3.003733pt;}
.ws207{word-spacing:-2.984267pt;}
.ws13f{word-spacing:-2.908267pt;}
.ws2ba{word-spacing:-2.747733pt;}
.ws1b5{word-spacing:-2.705600pt;}
.ws297{word-spacing:-2.670933pt;}
.ws13b{word-spacing:-2.421867pt;}
.ws233{word-spacing:-2.340800pt;}
.ws31{word-spacing:-2.310400pt;}
.ws2b0{word-spacing:-2.176000pt;}
.ws286{word-spacing:-2.124800pt;}
.ws85{word-spacing:-1.986133pt;}
.ws179{word-spacing:-1.950667pt;}
.ws2cc{word-spacing:-1.915733pt;}
.ws10e{word-spacing:-1.864533pt;}
.ws250{word-spacing:-1.854400pt;}
.ws9b{word-spacing:-1.763200pt;}
.ws139{word-spacing:-1.702400pt;}
.ws1ee{word-spacing:-1.661867pt;}
.ws115{word-spacing:-1.636533pt;}
.ws240{word-spacing:-1.423733pt;}
.wsa4{word-spacing:-1.104533pt;}
.ws2a8{word-spacing:-0.994133pt;}
.ws153{word-spacing:-0.734667pt;}
.ws292{word-spacing:-0.733867pt;}
.ws199{word-spacing:-0.461067pt;}
.ws197{word-spacing:-0.364800pt;}
.ws273{word-spacing:-0.268533pt;}
.ws2b9{word-spacing:-0.170667pt;}
.ws180{word-spacing:-0.040533pt;}
.ws23{word-spacing:-0.040000pt;}
.wse{word-spacing:-0.028000pt;}
.ws2{word-spacing:0.000000pt;}
.ws15e{word-spacing:0.015200pt;}
.ws2bf{word-spacing:0.098133pt;}
.ws1fa{word-spacing:0.248267pt;}
.ws227{word-spacing:0.344533pt;}
.ws9c{word-spacing:0.602933pt;}
.ws2c9{word-spacing:0.721067pt;}
.ws73{word-spacing:0.836000pt;}
.ws50{word-spacing:1.008267pt;}
.ws1f4{word-spacing:1.023467pt;}
.ws229{word-spacing:1.292000pt;}
.ws171{word-spacing:1.449067pt;}
.ws20c{word-spacing:1.575733pt;}
.ws24c{word-spacing:1.661867pt;}
.ws24f{word-spacing:1.758133pt;}
.ws1ec{word-spacing:2.477600pt;}
.wsa2{word-spacing:2.649867pt;}
.ws1f8{word-spacing:3.105867pt;}
.ws1f9{word-spacing:3.110933pt;}
.ws56{word-spacing:3.485867pt;}
.ws251{word-spacing:3.673333pt;}
.ws252{word-spacing:3.820267pt;}
.ws22f{word-spacing:3.916533pt;}
.ws1bf{word-spacing:4.169867pt;}
.wsbd{word-spacing:4.311733pt;}
.ws295{word-spacing:4.497067pt;}
.ws294{word-spacing:4.740267pt;}
.ws2a1{word-spacing:6.178133pt;}
.ws16f{word-spacing:6.211733pt;}
.ws2cb{word-spacing:6.370133pt;}
.ws24e{word-spacing:6.682933pt;}
.ws2be{word-spacing:7.180800pt;}
.ws231{word-spacing:7.260533pt;}
.ws27d{word-spacing:7.569067pt;}
.ws27e{word-spacing:7.628800pt;}
.ws27c{word-spacing:7.637333pt;}
.ws238{word-spacing:7.676000pt;}
.ws27f{word-spacing:7.680000pt;}
.ws14e{word-spacing:8.247467pt;}
.ws24d{word-spacing:9.621333pt;}
.ws8a{word-spacing:9.701333pt;}
.wsa8{word-spacing:9.712000pt;}
.ws20{word-spacing:9.744000pt;}
.ws2aa{word-spacing:10.018133pt;}
.ws212{word-spacing:11.216800pt;}
.ws26f{word-spacing:11.222400pt;}
.ws27a{word-spacing:11.228000pt;}
.ws270{word-spacing:11.256000pt;}
.ws278{word-spacing:11.328800pt;}
.ws16{word-spacing:13.296000pt;}
.ws1c{word-spacing:13.392000pt;}
.ws5{word-spacing:15.351357pt;}
.ws6{word-spacing:15.396157pt;}
.ws147{word-spacing:15.812267pt;}
.wsf{word-spacing:15.840000pt;}
.ws11f{word-spacing:20.876800pt;}
.wsc6{word-spacing:20.919467pt;}
.ws2c1{word-spacing:24.802133pt;}
.ws28{word-spacing:28.028000pt;}
.ws44{word-spacing:29.730133pt;}
.ws2c4{word-spacing:43.178667pt;}
.ws125{word-spacing:111.010133pt;}
.ws124{word-spacing:111.035733pt;}
.ws2bb{word-spacing:118.744000pt;}
.ws126{word-spacing:140.343467pt;}
.ws127{word-spacing:140.369067pt;}
.wse5{word-spacing:140.608000pt;}
.wse3{word-spacing:140.616533pt;}
.wse4{word-spacing:140.625067pt;}
.wse2{word-spacing:140.642133pt;}
.wse1{word-spacing:140.650667pt;}
.wse6{word-spacing:177.390933pt;}
.wse7{word-spacing:177.399467pt;}
.wsfb{word-spacing:291.046400pt;}
.ws14d{word-spacing:313.156267pt;}
.ws14a{word-spacing:314.850133pt;}
.wsfd{word-spacing:320.362667pt;}
.ws100{word-spacing:329.787733pt;}
.ws14b{word-spacing:333.380267pt;}
.wsfa{word-spacing:349.213867pt;}
.wsff{word-spacing:539.362133pt;}
._63{margin-left:-431.889067pt;}
._61{margin-left:-77.184000pt;}
._62{margin-left:-48.238933pt;}
._65{margin-left:-27.985067pt;}
._66{margin-left:-14.581867pt;}
._1{margin-left:-4.138690pt;}
._2{margin-left:-2.872000pt;}
._0{margin-left:-1.706655pt;}
._3{width:0.946690pt;}
._5{width:1.994549pt;}
._10{width:3.052917pt;}
._20{width:7.402655pt;}
._11{width:8.793588pt;}
._8{width:10.569067pt;}
._41{width:11.546933pt;}
._a{width:12.697067pt;}
._7{width:14.333600pt;}
._9{width:16.106933pt;}
._42{width:17.702933pt;}
._d{width:18.675733pt;}
._c{width:19.790400pt;}
._69{width:20.830784pt;}
._67{width:22.602400pt;}
._e{width:24.152800pt;}
._b{width:26.656000pt;}
._6a{width:28.067200pt;}
._68{width:28.971200pt;}
._4{width:60.204000pt;}
._6b{width:66.030933pt;}
._6c{width:66.954667pt;}
._50{width:76.689067pt;}
._6{width:89.188267pt;}
._25{width:104.776533pt;}
._2c{width:134.272557pt;}
._f{width:139.272000pt;}
._32{width:140.450133pt;}
._28{width:151.257600pt;}
._52{width:152.576000pt;}
._37{width:161.941333pt;}
._3c{width:169.527467pt;}
._58{width:170.837333pt;}
._5c{width:172.595188pt;}
._27{width:180.360533pt;}
._38{width:181.969682pt;}
._31{width:183.287467pt;}
._53{width:185.258667pt;}
._5b{width:186.358839pt;}
._57{width:192.004823pt;}
._30{width:194.056533pt;}
._51{width:197.747200pt;}
._3d{width:198.728533pt;}
._5d{width:201.984012pt;}
._44{width:206.818133pt;}
._46{width:219.229890pt;}
._35{width:233.178145pt;}
._2a{width:250.501322pt;}
._2b{width:260.851200pt;}
._4a{width:267.354180pt;}
._33{width:271.108267pt;}
._39{width:277.179757pt;}
._40{width:278.434145pt;}
._29{width:280.366933pt;}
._15{width:296.806400pt;}
._59{width:297.783455pt;}
._2e{width:298.820267pt;}
._3e{width:300.249600pt;}
._36{width:308.561125pt;}
._5a{width:313.326933pt;}
._48{width:319.436800pt;}
._26{width:323.789310pt;}
._54{width:327.543467pt;}
._1f{width:335.172267pt;}
._45{width:345.024000pt;}
._55{width:355.669333pt;}
._21{width:358.707188pt;}
._4b{width:362.210133pt;}
._60{width:363.362133pt;}
._4e{width:364.697588pt;}
._56{width:367.347200pt;}
._49{width:372.804823pt;}
._64{width:383.684267pt;}
._1c{width:392.277333pt;}
._4f{width:395.537078pt;}
._12{width:402.457600pt;}
._3a{width:404.394655pt;}
._5e{width:405.577553pt;}
._3b{width:419.963733pt;}
._3f{width:428.300812pt;}
._5f{width:431.884800pt;}
._1a{width:438.271988pt;}
._2d{width:453.580812pt;}
._2f{width:461.858145pt;}
._19{width:489.493831pt;}
._34{width:493.883733pt;}
._4c{width:505.322667pt;}
._4d{width:512.738133pt;}
._24{width:514.406400pt;}
._23{width:521.100788pt;}
._1e{width:536.956267pt;}
._47{width:547.763200pt;}
._1b{width:567.834098pt;}
._22{width:578.227188pt;}
._14{width:586.965333pt;}
._43{width:616.157867pt;}
._18{width:702.809600pt;}
._13{width:710.472533pt;}
._1d{width:712.226667pt;}
._17{width:753.199467pt;}
._16{width:757.755722pt;}
.fsa{font-size:36.479467pt;}
.fsc{font-size:37.333333pt;}
.fse{font-size:38.000000pt;}
.fsd{font-size:38.506133pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.559467pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:74.666133pt;}
.fs0{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:43.868000pt;}
.y329{bottom:46.544133pt;}
.y2e0{bottom:49.184133pt;}
.y1f1{bottom:53.732000pt;}
.y21f{bottom:54.508800pt;}
.y159{bottom:54.513467pt;}
.ya5{bottom:54.515467pt;}
.y28e{bottom:54.535333pt;}
.ye0{bottom:54.536667pt;}
.y195{bottom:54.538667pt;}
.y1df{bottom:57.588000pt;}
.y1bb{bottom:57.854000pt;}
.y51{bottom:58.532000pt;}
.y328{bottom:59.824133pt;}
.y16{bottom:60.086668pt;}
.y2df{bottom:69.116133pt;}
.y21e{bottom:70.443467pt;}
.y158{bottom:70.448133pt;}
.ya4{bottom:70.450133pt;}
.y28d{bottom:70.470000pt;}
.ydf{bottom:70.471333pt;}
.y194{bottom:70.473333pt;}
.y11a{bottom:72.590800pt;}
.y121{bottom:72.603467pt;}
.y327{bottom:73.381467pt;}
.y1de{bottom:73.535333pt;}
.y1ba{bottom:73.788667pt;}
.y26c{bottom:74.073333pt;}
.y245{bottom:74.081333pt;}
.y15{bottom:74.753335pt;}
.y50{bottom:77.180133pt;}
.y21d{bottom:86.390800pt;}
.y157{bottom:86.395467pt;}
.y28c{bottom:86.417333pt;}
.yde{bottom:86.418667pt;}
.y193{bottom:86.420667pt;}
.y326{bottom:86.640133pt;}
.y119{bottom:88.538133pt;}
.y120{bottom:88.550800pt;}
.y1dd{bottom:89.470000pt;}
.y1b9{bottom:89.723333pt;}
.y244{bottom:90.016000pt;}
.y26b{bottom:90.066667pt;}
.y2de{bottom:99.645467pt;}
.y325{bottom:99.920133pt;}
.y21c{bottom:102.325467pt;}
.y156{bottom:102.330133pt;}
.ya3{bottom:102.332133pt;}
.y28b{bottom:102.352000pt;}
.ydd{bottom:102.353333pt;}
.y192{bottom:102.355333pt;}
.y118{bottom:104.472800pt;}
.y11f{bottom:104.485467pt;}
.y1dc{bottom:105.404667pt;}
.y1b8{bottom:105.670667pt;}
.y243{bottom:105.950667pt;}
.y26a{bottom:106.001333pt;}
.y4f{bottom:111.647333pt;}
.y324{bottom:113.200133pt;}
.y6b{bottom:113.544667pt;}
.y2dd{bottom:115.580133pt;}
.y21b{bottom:118.260133pt;}
.y155{bottom:118.264800pt;}
.ya2{bottom:118.266800pt;}
.y28a{bottom:118.286667pt;}
.ydc{bottom:118.288000pt;}
.y191{bottom:118.290000pt;}
.y117{bottom:120.407467pt;}
.y11e{bottom:120.420133pt;}
.y1db{bottom:121.352000pt;}
.y1b7{bottom:121.605333pt;}
.y242{bottom:121.898000pt;}
.y269{bottom:121.948667pt;}
.y323{bottom:126.469467pt;}
.y4e{bottom:127.582000pt;}
.y6a{bottom:129.479333pt;}
.y21a{bottom:134.207467pt;}
.y154{bottom:134.212133pt;}
.ya1{bottom:134.214133pt;}
.y289{bottom:134.234000pt;}
.ydb{bottom:134.235333pt;}
.y190{bottom:134.237333pt;}
.y116{bottom:136.354800pt;}
.y11d{bottom:136.367467pt;}
.y1da{bottom:137.286667pt;}
.y1b6{bottom:137.540000pt;}
.y241{bottom:137.832667pt;}
.y268{bottom:137.883333pt;}
.y2dc{bottom:139.496000pt;}
.y322{bottom:139.749467pt;}
.y4d{bottom:143.529333pt;}
.y69{bottom:145.414000pt;}
.y219{bottom:150.142133pt;}
.y153{bottom:150.146800pt;}
.ya0{bottom:150.148800pt;}
.y288{bottom:150.168667pt;}
.yda{bottom:150.170000pt;}
.y18f{bottom:150.172000pt;}
.y115{bottom:152.289467pt;}
.y11c{bottom:152.302133pt;}
.y321{bottom:153.029467pt;}
.y1d9{bottom:153.221333pt;}
.y1b5{bottom:153.487333pt;}
.y240{bottom:153.767333pt;}
.y267{bottom:153.818000pt;}
.y4c{bottom:159.464000pt;}
.y68{bottom:161.361333pt;}
.y218{bottom:166.076800pt;}
.y152{bottom:166.081467pt;}
.y9f{bottom:166.083467pt;}
.y287{bottom:166.103333pt;}
.yd9{bottom:166.104667pt;}
.y18e{bottom:166.106667pt;}
.y320{bottom:166.309467pt;}
.y114{bottom:168.224133pt;}
.y11b{bottom:168.236800pt;}
.y1b4{bottom:169.422000pt;}
.y23f{bottom:169.714667pt;}
.y266{bottom:169.765333pt;}
.y4b{bottom:175.398667pt;}
.y67{bottom:177.296000pt;}
.y2db{bottom:178.016000pt;}
.y31f{bottom:179.589467pt;}
.y2c3{bottom:182.024133pt;}
.y151{bottom:182.028800pt;}
.y9e{bottom:182.030800pt;}
.y286{bottom:182.050667pt;}
.yd8{bottom:182.052000pt;}
.y18d{bottom:182.054000pt;}
.y217{bottom:182.060667pt;}
.y1d8{bottom:185.103333pt;}
.y1b3{bottom:185.356667pt;}
.y23e{bottom:185.649333pt;}
.y265{bottom:185.700000pt;}
.y4a{bottom:191.346000pt;}
.y31e{bottom:192.869467pt;}
.y2da{bottom:197.948000pt;}
.y150{bottom:197.963467pt;}
.y9d{bottom:197.965467pt;}
.y285{bottom:197.985333pt;}
.yd7{bottom:197.986667pt;}
.y18c{bottom:197.988667pt;}
.y216{bottom:197.995333pt;}
.y1d7{bottom:201.038000pt;}
.y1b2{bottom:201.304000pt;}
.y23d{bottom:201.618133pt;}
.y264{bottom:201.634667pt;}
.y113{bottom:205.261467pt;}
.y2c2{bottom:205.928000pt;}
.y31d{bottom:206.149467pt;}
.y49{bottom:207.280667pt;}
.y66{bottom:209.178000pt;}
.y14f{bottom:213.898133pt;}
.y9c{bottom:213.900133pt;}
.y284{bottom:213.920000pt;}
.yd6{bottom:213.921333pt;}
.y18b{bottom:213.923333pt;}
.y1d6{bottom:216.985333pt;}
.y112{bottom:217.208133pt;}
.y1b1{bottom:217.238667pt;}
.y23c{bottom:217.565467pt;}
.y263{bottom:217.582000pt;}
.y31c{bottom:219.429467pt;}
.y48{bottom:223.215333pt;}
.y65{bottom:225.112667pt;}
.y14e{bottom:229.845467pt;}
.y283{bottom:229.867333pt;}
.yd5{bottom:229.868667pt;}
.y18a{bottom:229.870667pt;}
.y215{bottom:229.877333pt;}
.y2d9{bottom:232.492667pt;}
.y31b{bottom:232.709467pt;}
.y1d5{bottom:232.920000pt;}
.y1b0{bottom:233.173333pt;}
.y23b{bottom:233.500133pt;}
.y262{bottom:233.516667pt;}
.y111{bottom:236.897333pt;}
.y47{bottom:239.162667pt;}
.y64{bottom:241.060000pt;}
.y14d{bottom:245.780133pt;}
.y9b{bottom:245.782133pt;}
.y282{bottom:245.802000pt;}
.yd4{bottom:245.803333pt;}
.y189{bottom:245.805333pt;}
.y214{bottom:245.812000pt;}
.y2c1{bottom:245.878000pt;}
.y31a{bottom:245.989467pt;}
.y2d8{bottom:248.440000pt;}
.y1d4{bottom:248.867333pt;}
.y1af{bottom:249.120667pt;}
.y23a{bottom:249.434800pt;}
.y261{bottom:249.451333pt;}
.y110{bottom:252.556000pt;}
.y46{bottom:255.097333pt;}
.y63{bottom:256.994667pt;}
.y319{bottom:259.269467pt;}
.y9a{bottom:261.716800pt;}
.yd3{bottom:261.738000pt;}
.y188{bottom:261.740000pt;}
.y213{bottom:261.746667pt;}
.y2c0{bottom:261.812667pt;}
.y14{bottom:262.334667pt;}
.y2d7{bottom:264.374667pt;}
.y1d3{bottom:264.802000pt;}
.y1ae{bottom:265.055333pt;}
.y260{bottom:265.398667pt;}
.y10f{bottom:268.214667pt;}
.y14c{bottom:269.696000pt;}
.y45{bottom:271.044667pt;}
.y318{bottom:272.549467pt;}
.y62{bottom:272.929333pt;}
.y99{bottom:277.664133pt;}
.y281{bottom:277.684000pt;}
.yd2{bottom:277.685333pt;}
.y187{bottom:277.687333pt;}
.y212{bottom:277.694000pt;}
.y2bf{bottom:277.760000pt;}
.y2d6{bottom:280.309333pt;}
.y1d2{bottom:280.736667pt;}
.y1ad{bottom:281.002667pt;}
.y239{bottom:281.316800pt;}
.y25f{bottom:281.333333pt;}
.y10e{bottom:283.873333pt;}
.y317{bottom:285.829467pt;}
.y44{bottom:286.979333pt;}
.y61{bottom:288.876667pt;}
.y280{bottom:293.618667pt;}
.yd1{bottom:293.620000pt;}
.y186{bottom:293.622000pt;}
.y211{bottom:293.628667pt;}
.y2be{bottom:293.694667pt;}
.y2d5{bottom:296.256667pt;}
.y1d1{bottom:296.684000pt;}
.y1ac{bottom:296.937333pt;}
.y238{bottom:297.264133pt;}
.y25e{bottom:297.280667pt;}
.y316{bottom:299.109467pt;}
.y10d{bottom:299.532000pt;}
.y98{bottom:301.568000pt;}
.y43{bottom:302.914000pt;}
.y60{bottom:304.811333pt;}
.y27f{bottom:309.566000pt;}
.y185{bottom:309.569333pt;}
.y210{bottom:309.576000pt;}
.y2bd{bottom:309.642000pt;}
.y2d4{bottom:312.191333pt;}
.y315{bottom:312.389467pt;}
.y1ab{bottom:312.872000pt;}
.y237{bottom:313.198800pt;}
.y25d{bottom:313.215333pt;}
.y14b{bottom:315.153333pt;}
.y10c{bottom:315.190667pt;}
.y42{bottom:318.861333pt;}
.y13{bottom:319.534667pt;}
.y5f{bottom:320.746000pt;}
.y97{bottom:325.484133pt;}
.y27e{bottom:325.500667pt;}
.yd0{bottom:325.502000pt;}
.y184{bottom:325.504000pt;}
.y20f{bottom:325.510667pt;}
.y2bc{bottom:325.576667pt;}
.y314{bottom:325.669467pt;}
.y2d3{bottom:328.126000pt;}
.y1d0{bottom:328.553333pt;}
.y1aa{bottom:328.819333pt;}
.y236{bottom:329.133467pt;}
.y25c{bottom:329.150000pt;}
.y10b{bottom:330.849333pt;}
.y14a{bottom:331.088000pt;}
.y41{bottom:334.796000pt;}
.y5e{bottom:336.693333pt;}
.y313{bottom:338.949467pt;}
.y27d{bottom:341.435333pt;}
.ycf{bottom:341.436667pt;}
.y183{bottom:341.438667pt;}
.y20e{bottom:341.445333pt;}
.y2bb{bottom:341.511333pt;}
.y2d2{bottom:344.073333pt;}
.y1cf{bottom:344.500667pt;}
.y1a9{bottom:344.754000pt;}
.y235{bottom:345.080800pt;}
.y25b{bottom:345.097333pt;}
.y10a{bottom:346.508000pt;}
.y149{bottom:347.035333pt;}
.y40{bottom:350.730667pt;}
.y312{bottom:352.229467pt;}
.y5d{bottom:352.628000pt;}
.y1f0{bottom:357.236000pt;}
.yce{bottom:357.384000pt;}
.y182{bottom:357.386000pt;}
.y20d{bottom:357.392667pt;}
.y2ba{bottom:357.458667pt;}
.y2d1{bottom:360.008000pt;}
.y1ce{bottom:360.435333pt;}
.y1a8{bottom:360.688667pt;}
.y234{bottom:361.015467pt;}
.y25a{bottom:361.032000pt;}
.y109{bottom:362.166667pt;}
.y148{bottom:362.970000pt;}
.y311{bottom:365.509467pt;}
.y3f{bottom:366.678000pt;}
.y5c{bottom:368.562667pt;}
.y1ef{bottom:369.182667pt;}
.y27c{bottom:373.317333pt;}
.ycd{bottom:373.318667pt;}
.y181{bottom:373.320667pt;}
.y20c{bottom:373.327333pt;}
.y96{bottom:373.350000pt;}
.y2b9{bottom:373.393333pt;}
.y1cd{bottom:376.370000pt;}
.y1a7{bottom:376.636000pt;}
.y12{bottom:376.734667pt;}
.y259{bottom:376.966667pt;}
.y108{bottom:377.836000pt;}
.y310{bottom:378.789467pt;}
.y147{bottom:378.917333pt;}
.y1ee{bottom:381.150667pt;}
.y3e{bottom:382.612667pt;}
.y2d0{bottom:383.928133pt;}
.y5b{bottom:384.510000pt;}
.y27b{bottom:389.252000pt;}
.ycc{bottom:389.253333pt;}
.y180{bottom:389.255333pt;}
.y20b{bottom:389.262000pt;}
.y95{bottom:389.284667pt;}
.y2b8{bottom:389.328000pt;}
.y30f{bottom:392.069467pt;}
.y1cc{bottom:392.317333pt;}
.y1a6{bottom:392.570667pt;}
.y233{bottom:392.897467pt;}
.y258{bottom:392.914000pt;}
.y1ed{bottom:393.097333pt;}
.y107{bottom:393.494667pt;}
.y146{bottom:394.852000pt;}
.y3d{bottom:398.547333pt;}
.y2cf{bottom:399.860133pt;}
.y5a{bottom:400.444667pt;}
.y1ec{bottom:405.044000pt;}
.y27a{bottom:405.199333pt;}
.ycb{bottom:405.200667pt;}
.y17f{bottom:405.202667pt;}
.y20a{bottom:405.209333pt;}
.y94{bottom:405.232000pt;}
.y2b7{bottom:405.275333pt;}
.y30e{bottom:405.349467pt;}
.y1cb{bottom:408.252000pt;}
.y1a5{bottom:408.505333pt;}
.y232{bottom:408.832133pt;}
.y257{bottom:408.848667pt;}
.y106{bottom:409.153333pt;}
.y145{bottom:410.786667pt;}
.y3c{bottom:414.494667pt;}
.y59{bottom:416.379333pt;}
.y1eb{bottom:417.012000pt;}
.y30d{bottom:418.629467pt;}
.y279{bottom:421.134000pt;}
.yca{bottom:421.135333pt;}
.y17e{bottom:421.137333pt;}
.y93{bottom:421.166667pt;}
.y2b6{bottom:421.210000pt;}
.y1ca{bottom:424.186667pt;}
.y1a4{bottom:424.452667pt;}
.y231{bottom:424.766800pt;}
.y256{bottom:424.783333pt;}
.y105{bottom:424.812000pt;}
.y144{bottom:426.734000pt;}
.y1ea{bottom:428.958667pt;}
.y3b{bottom:430.429333pt;}
.y30c{bottom:431.909467pt;}
.y58{bottom:432.326667pt;}
.y11{bottom:436.540000pt;}
.y278{bottom:437.068667pt;}
.yc9{bottom:437.070000pt;}
.y17d{bottom:437.072000pt;}
.y209{bottom:437.078667pt;}
.y92{bottom:437.101333pt;}
.y2b5{bottom:437.144667pt;}
.y2ce{bottom:438.426667pt;}
.y1a3{bottom:440.387333pt;}
.y104{bottom:440.470667pt;}
.y230{bottom:440.714133pt;}
.y255{bottom:440.730667pt;}
.y1e9{bottom:440.905333pt;}
.y30b{bottom:445.189467pt;}
.y3a{bottom:446.364000pt;}
.y57{bottom:448.261333pt;}
.y2cd{bottom:451.706667pt;}
.y1e8{bottom:452.852000pt;}
.y277{bottom:453.016000pt;}
.yc8{bottom:453.017333pt;}
.y17c{bottom:453.019333pt;}
.y208{bottom:453.026000pt;}
.y91{bottom:453.048667pt;}
.y2b4{bottom:453.092000pt;}
.y1c9{bottom:456.068667pt;}
.y103{bottom:456.129333pt;}
.y1a2{bottom:456.322000pt;}
.y22f{bottom:456.648800pt;}
.y254{bottom:456.665333pt;}
.y30a{bottom:458.458800pt;}
.y143{bottom:458.603333pt;}
.y39{bottom:462.311333pt;}
.y56{bottom:464.196000pt;}
.y1e7{bottom:464.820000pt;}
.y2cc{bottom:464.986667pt;}
.y276{bottom:468.950667pt;}
.yc7{bottom:468.952000pt;}
.y17b{bottom:468.954000pt;}
.y207{bottom:468.960667pt;}
.y90{bottom:468.983333pt;}
.y2b3{bottom:469.026667pt;}
.y309{bottom:471.738800pt;}
.y102{bottom:471.788000pt;}
.y1c8{bottom:472.003333pt;}
.y1a1{bottom:472.269333pt;}
.y22e{bottom:472.583467pt;}
.y253{bottom:472.600000pt;}
.y142{bottom:474.550667pt;}
.y1e6{bottom:476.766667pt;}
.y38{bottom:478.246000pt;}
.y2cb{bottom:478.256000pt;}
.y55{bottom:480.143333pt;}
.y275{bottom:484.885333pt;}
.yc6{bottom:484.886667pt;}
.y17a{bottom:484.888667pt;}
.y206{bottom:484.895333pt;}
.y8f{bottom:484.918000pt;}
.y2b2{bottom:484.961333pt;}
.y308{bottom:485.018800pt;}
.y1c7{bottom:487.950667pt;}
.y1a0{bottom:488.204000pt;}
.y22d{bottom:488.530800pt;}
.y252{bottom:488.547333pt;}
.y1e5{bottom:488.713333pt;}
.y141{bottom:490.485333pt;}
.y10{bottom:491.134667pt;}
.y2ca{bottom:491.536000pt;}
.y101{bottom:493.760000pt;}
.y37{bottom:494.180667pt;}
.y54{bottom:496.078000pt;}
.y307{bottom:498.298800pt;}
.y1e4{bottom:500.660000pt;}
.y274{bottom:500.832667pt;}
.yc5{bottom:500.834000pt;}
.y179{bottom:500.836000pt;}
.y205{bottom:500.842667pt;}
.y8e{bottom:500.865333pt;}
.y2b1{bottom:500.908667pt;}
.y1c6{bottom:503.885333pt;}
.y251{bottom:504.482000pt;}
.y2c9{bottom:504.816000pt;}
.y140{bottom:506.420000pt;}
.y36{bottom:510.128000pt;}
.y306{bottom:511.578800pt;}
.y53{bottom:512.025333pt;}
.y1e3{bottom:512.628000pt;}
.y100{bottom:516.036000pt;}
.y273{bottom:516.767333pt;}
.yc4{bottom:516.768667pt;}
.y178{bottom:516.770667pt;}
.y204{bottom:516.777333pt;}
.y8d{bottom:516.800000pt;}
.y2b0{bottom:516.843333pt;}
.y2c8{bottom:518.096000pt;}
.y1c5{bottom:519.832667pt;}
.y22c{bottom:520.400133pt;}
.y250{bottom:520.416667pt;}
.y13f{bottom:522.367333pt;}
.y1e2{bottom:524.574667pt;}
.y305{bottom:524.858800pt;}
.y52{bottom:527.960000pt;}
.y2c7{bottom:531.376000pt;}
.y19f{bottom:532.148133pt;}
.y272{bottom:532.702000pt;}
.yc3{bottom:532.703333pt;}
.y177{bottom:532.705333pt;}
.y8c{bottom:532.734667pt;}
.y2af{bottom:532.778000pt;}
.y35{bottom:534.032000pt;}
.y1c4{bottom:535.767333pt;}
.y22b{bottom:536.347467pt;}
.y24f{bottom:536.364000pt;}
.y1e1{bottom:536.521333pt;}
.y304{bottom:538.138800pt;}
.y2c6{bottom:544.656000pt;}
.y1e0{bottom:548.468000pt;}
.y271{bottom:548.649333pt;}
.yc2{bottom:548.650667pt;}
.y176{bottom:548.652667pt;}
.y203{bottom:548.659333pt;}
.y8b{bottom:548.682000pt;}
.y2ae{bottom:548.725333pt;}
.y303{bottom:551.418800pt;}
.y1c3{bottom:551.702000pt;}
.y19e{bottom:551.810667pt;}
.y22a{bottom:552.282133pt;}
.y24e{bottom:552.298667pt;}
.y13e{bottom:554.236667pt;}
.yff{bottom:557.764000pt;}
.y2c5{bottom:557.936000pt;}
.y270{bottom:564.584000pt;}
.yc1{bottom:564.585333pt;}
.y175{bottom:564.587333pt;}
.y202{bottom:564.594000pt;}
.y8a{bottom:564.616667pt;}
.y2ad{bottom:564.660000pt;}
.y302{bottom:564.698800pt;}
.yf{bottom:566.059998pt;}
.y19d{bottom:567.480000pt;}
.y229{bottom:568.216800pt;}
.yfe{bottom:569.732000pt;}
.y13d{bottom:570.184000pt;}
.y2c4{bottom:577.868000pt;}
.y301{bottom:577.978800pt;}
.yc0{bottom:580.520000pt;}
.y174{bottom:580.522000pt;}
.y201{bottom:580.528667pt;}
.y89{bottom:580.551333pt;}
.y2ac{bottom:580.594667pt;}
.y19c{bottom:583.138667pt;}
.y1c2{bottom:583.584000pt;}
.y228{bottom:584.164133pt;}
.y24d{bottom:584.180667pt;}
.y13c{bottom:586.118667pt;}
.y26f{bottom:588.500133pt;}
.yfd{bottom:589.405333pt;}
.y300{bottom:591.258800pt;}
.y30{bottom:591.428133pt;}
.ye{bottom:592.726665pt;}
.y173{bottom:596.469333pt;}
.y200{bottom:596.476000pt;}
.y88{bottom:596.498667pt;}
.y2ab{bottom:596.542000pt;}
.y19b{bottom:598.797333pt;}
.y1c1{bottom:599.518667pt;}
.y227{bottom:600.098800pt;}
.y24c{bottom:600.115333pt;}
.yfc{bottom:601.373333pt;}
.y13b{bottom:602.053333pt;}
.ybf{bottom:604.436000pt;}
.y2ff{bottom:604.538800pt;}
.y2f{bottom:604.712133pt;}
.yd{bottom:608.726665pt;}
.y172{bottom:612.404000pt;}
.y1ff{bottom:612.410667pt;}
.y87{bottom:612.433333pt;}
.y2aa{bottom:612.476667pt;}
.y19a{bottom:614.456000pt;}
.y1c0{bottom:615.466000pt;}
.y226{bottom:616.046133pt;}
.y24b{bottom:616.062667pt;}
.yfb{bottom:617.032000pt;}
.y2fe{bottom:617.818800pt;}
.y2e{bottom:617.996133pt;}
.y13a{bottom:618.000667pt;}
.yc{bottom:624.726665pt;}
.y1fe{bottom:628.358000pt;}
.y26e{bottom:628.380667pt;}
.y2a9{bottom:628.424000pt;}
.yfa{bottom:628.978667pt;}
.y2fd{bottom:631.098800pt;}
.y2d{bottom:631.280133pt;}
.y1bf{bottom:631.400667pt;}
.y225{bottom:631.980800pt;}
.y24a{bottom:631.997333pt;}
.y139{bottom:633.935333pt;}
.y199{bottom:636.428000pt;}
.yb{bottom:640.726665pt;}
.y1fd{bottom:644.292667pt;}
.y86{bottom:644.315333pt;}
.ybe{bottom:644.338800pt;}
.y2a8{bottom:644.358667pt;}
.y2fc{bottom:644.378800pt;}
.y2c{bottom:644.564133pt;}
.yf9{bottom:644.637333pt;}
.y1be{bottom:647.335333pt;}
.y224{bottom:647.915467pt;}
.y249{bottom:647.932000pt;}
.y138{bottom:649.882667pt;}
.yf8{bottom:656.584000pt;}
.ya{bottom:656.726665pt;}
.y2fb{bottom:657.658800pt;}
.y2b{bottom:657.848133pt;}
.y198{bottom:658.400000pt;}
.y85{bottom:660.250000pt;}
.ybd{bottom:660.273467pt;}
.y2a7{bottom:660.293333pt;}
.y1bd{bottom:663.282667pt;}
.y223{bottom:663.862800pt;}
.y248{bottom:663.879333pt;}
.y137{bottom:665.817333pt;}
.y2fa{bottom:670.938800pt;}
.y2a{bottom:671.132133pt;}
.yf7{bottom:672.242667pt;}
.y171{bottom:674.641333pt;}
.y1fc{bottom:676.174667pt;}
.y84{bottom:676.197333pt;}
.ybc{bottom:676.220800pt;}
.y2a6{bottom:676.240667pt;}
.y1bc{bottom:679.217333pt;}
.y222{bottom:679.797467pt;}
.y247{bottom:679.814000pt;}
.y197{bottom:680.672000pt;}
.y136{bottom:681.752000pt;}
.yf6{bottom:684.210667pt;}
.y2f9{bottom:684.218800pt;}
.y29{bottom:684.416133pt;}
.y170{bottom:686.588000pt;}
.y1fb{bottom:692.109333pt;}
.y83{bottom:692.132000pt;}
.ybb{bottom:692.155467pt;}
.y2a5{bottom:692.175333pt;}
.y221{bottom:695.732133pt;}
.y246{bottom:695.748667pt;}
.y2f8{bottom:697.498800pt;}
.y28{bottom:697.700133pt;}
.yf5{bottom:699.869333pt;}
.y9{bottom:703.368002pt;}
.y16f{bottom:706.257333pt;}
.y1fa{bottom:708.052667pt;}
.y82{bottom:708.066667pt;}
.yba{bottom:708.090133pt;}
.y2a4{bottom:708.110000pt;}
.y2f7{bottom:710.778800pt;}
.y27{bottom:710.984133pt;}
.yf4{bottom:711.816000pt;}
.y16e{bottom:721.916000pt;}
.y8{bottom:722.034669pt;}
.y1f9{bottom:724.000000pt;}
.y26d{bottom:724.014000pt;}
.yb9{bottom:724.037467pt;}
.y2a3{bottom:724.057333pt;}
.y2f6{bottom:724.058800pt;}
.y26{bottom:724.268133pt;}
.yf3{bottom:727.485333pt;}
.y135{bottom:733.501467pt;}
.y220{bottom:733.808000pt;}
.y196{bottom:734.432000pt;}
.y2f5{bottom:737.338800pt;}
.y25{bottom:737.552133pt;}
.y16d{bottom:737.574667pt;}
.yf2{bottom:739.432000pt;}
.y1f8{bottom:739.934667pt;}
.y81{bottom:739.948667pt;}
.yb8{bottom:739.972133pt;}
.y2a2{bottom:739.992000pt;}
.y134{bottom:745.448133pt;}
.y2f4{bottom:750.618800pt;}
.y24{bottom:750.836133pt;}
.y16c{bottom:753.233333pt;}
.yf1{bottom:755.101333pt;}
.y1f7{bottom:755.869333pt;}
.y80{bottom:755.883333pt;}
.yb7{bottom:755.906800pt;}
.y2a1{bottom:755.926667pt;}
.y34{bottom:756.158667pt;}
.y2f3{bottom:763.898800pt;}
.y23{bottom:764.120133pt;}
.y133{bottom:765.137333pt;}
.y33{bottom:768.105333pt;}
.y16b{bottom:768.892000pt;}
.yf0{bottom:770.760000pt;}
.y1f6{bottom:771.816667pt;}
.y7f{bottom:771.830667pt;}
.yb6{bottom:771.854133pt;}
.y2a0{bottom:771.874000pt;}
.y2f2{bottom:777.178800pt;}
.y22{bottom:777.404133pt;}
.y7{bottom:778.613333pt;}
.y32{bottom:780.052000pt;}
.y132{bottom:780.796000pt;}
.y16a{bottom:784.550667pt;}
.yef{bottom:786.418667pt;}
.y1f5{bottom:787.751333pt;}
.y7e{bottom:787.765333pt;}
.yb5{bottom:787.788800pt;}
.y29f{bottom:787.808667pt;}
.y2f1{bottom:790.448133pt;}
.y21{bottom:790.688133pt;}
.y31{bottom:792.020000pt;}
.y131{bottom:796.454667pt;}
.y169{bottom:800.209333pt;}
.yee{bottom:802.077333pt;}
.y1f4{bottom:803.686000pt;}
.y7d{bottom:803.700000pt;}
.yb4{bottom:803.723467pt;}
.y2f0{bottom:803.728133pt;}
.y29e{bottom:803.743333pt;}
.y20{bottom:803.972000pt;}
.y6{bottom:806.613333pt;}
.y130{bottom:812.113333pt;}
.y168{bottom:812.177333pt;}
.y2ef{bottom:817.008133pt;}
.yed{bottom:817.736000pt;}
.y1f3{bottom:819.633333pt;}
.y7c{bottom:819.647333pt;}
.yb3{bottom:819.670800pt;}
.y29d{bottom:819.690667pt;}
.y12f{bottom:827.772000pt;}
.y167{bottom:827.836000pt;}
.y2ee{bottom:830.288133pt;}
.y5{bottom:834.613333pt;}
.y1f2{bottom:835.569467pt;}
.y7b{bottom:835.582000pt;}
.yb2{bottom:835.605467pt;}
.y29c{bottom:835.625333pt;}
.yec{bottom:837.173333pt;}
.y12e{bottom:843.430667pt;}
.y166{bottom:843.505333pt;}
.y2ed{bottom:843.568133pt;}
.y1f{bottom:844.064000pt;}
.yeb{bottom:849.120000pt;}
.y7a{bottom:851.516667pt;}
.yb1{bottom:851.540133pt;}
.y29b{bottom:851.560000pt;}
.y165{bottom:855.452000pt;}
.y2ec{bottom:856.848133pt;}
.y1e{bottom:857.348000pt;}
.y12d{bottom:859.100000pt;}
.y4{bottom:862.613333pt;}
.yea{bottom:864.778667pt;}
.y79{bottom:867.464000pt;}
.yb0{bottom:867.487467pt;}
.y29a{bottom:867.507333pt;}
.y2eb{bottom:870.128133pt;}
.y164{bottom:871.110667pt;}
.y12c{bottom:874.758667pt;}
.y1d{bottom:876.584000pt;}
.ye9{bottom:876.725333pt;}
.y78{bottom:883.398667pt;}
.y2ea{bottom:883.408133pt;}
.yaf{bottom:883.422133pt;}
.y299{bottom:883.442000pt;}
.y163{bottom:886.769333pt;}
.y12b{bottom:890.417333pt;}
.ye8{bottom:892.384000pt;}
.y1c{bottom:894.636000pt;}
.y2e9{bottom:896.688133pt;}
.y334{bottom:896.716000pt;}
.y340{bottom:896.758667pt;}
.y77{bottom:899.346000pt;}
.yae{bottom:899.369467pt;}
.y298{bottom:899.389333pt;}
.y162{bottom:902.428000pt;}
.ye7{bottom:904.352000pt;}
.y12a{bottom:906.076000pt;}
.y2e8{bottom:909.968133pt;}
.y333{bottom:909.996000pt;}
.y33f{bottom:910.038667pt;}
.y1b{bottom:910.568000pt;}
.y76{bottom:915.280667pt;}
.yad{bottom:915.304133pt;}
.y297{bottom:915.324000pt;}
.y161{bottom:918.086667pt;}
.y3{bottom:920.485335pt;}
.y129{bottom:921.734667pt;}
.y2e7{bottom:923.248133pt;}
.y332{bottom:923.276000pt;}
.y33e{bottom:923.318667pt;}
.y160{bottom:930.054667pt;}
.y75{bottom:931.215333pt;}
.yac{bottom:931.238800pt;}
.y296{bottom:931.258667pt;}
.y2e6{bottom:936.528133pt;}
.y331{bottom:936.556000pt;}
.y33d{bottom:936.598667pt;}
.y128{bottom:937.393333pt;}
.y15f{bottom:945.713333pt;}
.y74{bottom:947.162667pt;}
.yab{bottom:947.186133pt;}
.y295{bottom:947.206000pt;}
.y1a{bottom:948.622819pt;}
.y2e5{bottom:949.808133pt;}
.y330{bottom:949.836000pt;}
.y33c{bottom:949.878667pt;}
.y127{bottom:953.052000pt;}
.ye6{bottom:956.050667pt;}
.y15e{bottom:961.382667pt;}
.y73{bottom:963.097333pt;}
.y32f{bottom:963.116000pt;}
.y294{bottom:963.140667pt;}
.y33b{bottom:963.158667pt;}
.y126{bottom:968.710667pt;}
.y2e4{bottom:969.728000pt;}
.y19{bottom:969.884000pt;}
.ye5{bottom:971.709333pt;}
.y15d{bottom:973.329333pt;}
.y32e{bottom:976.396000pt;}
.y33a{bottom:976.438667pt;}
.y72{bottom:979.032000pt;}
.yaa{bottom:979.055467pt;}
.y293{bottom:979.075333pt;}
.y125{bottom:984.369333pt;}
.ye4{bottom:987.368000pt;}
.y15c{bottom:988.988000pt;}
.y32d{bottom:989.676000pt;}
.y339{bottom:989.718667pt;}
.y71{bottom:994.979333pt;}
.ya9{bottom:995.002800pt;}
.y292{bottom:995.022667pt;}
.y124{bottom:1000.028000pt;}
.y32c{bottom:1002.956000pt;}
.y338{bottom:1002.998667pt;}
.y2e3{bottom:1009.073333pt;}
.ye3{bottom:1009.340000pt;}
.y70{bottom:1010.914000pt;}
.ya8{bottom:1010.937467pt;}
.y291{bottom:1010.957333pt;}
.y15a{bottom:1010.960000pt;}
.y2{bottom:1011.664002pt;}
.y32b{bottom:1016.236000pt;}
.y337{bottom:1016.278667pt;}
.y123{bottom:1022.000000pt;}
.y15b{bottom:1022.906667pt;}
.y2e2{bottom:1024.505333pt;}
.y6f{bottom:1026.848667pt;}
.ya7{bottom:1026.872133pt;}
.y290{bottom:1026.892000pt;}
.y32a{bottom:1029.516000pt;}
.y336{bottom:1029.558667pt;}
.ye2{bottom:1031.629333pt;}
.y18{bottom:1034.890000pt;}
.y1{bottom:1035.664002pt;}
.y2e1{bottom:1039.936133pt;}
.y6e{bottom:1042.796000pt;}
.ya6{bottom:1042.819467pt;}
.y335{bottom:1042.838667pt;}
.y28f{bottom:1042.839333pt;}
.ye1{bottom:1043.576000pt;}
.y122{bottom:1044.284000pt;}
.y17{bottom:1046.840000pt;}
.y6d{bottom:1078.652000pt;}
.he{height:26.082819pt;}
.h17{height:26.693333pt;}
.h11{height:28.000000pt;}
.ha{height:28.600000pt;}
.h18{height:28.840000pt;}
.h13{height:30.506667pt;}
.h16{height:30.762667pt;}
.h20{height:30.773333pt;}
.h1f{height:30.778133pt;}
.h21{height:30.848000pt;}
.h3{height:32.687500pt;}
.h10{height:34.320000pt;}
.h12{height:34.608000pt;}
.h15{height:36.530667pt;}
.h7{height:36.773438pt;}
.h19{height:38.453333pt;}
.h14{height:40.376000pt;}
.h6{height:40.859375pt;}
.hf{height:43.506819pt;}
.h1e{height:45.912789pt;}
.h1d{height:46.000789pt;}
.h1c{height:46.112255pt;}
.h1b{height:46.141055pt;}
.h1a{height:46.144255pt;}
.h5{height:49.031250pt;}
.hd{height:51.021375pt;}
.hc{height:51.037909pt;}
.hb{height:53.834282pt;}
.h2{height:61.289062pt;}
.h4{height:73.440000pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.h8{height:1122.520000pt;}
.h9{height:1122.666667pt;}
.w2{width:793.333333pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x6{left:63.756000pt;}
.x10{left:71.745333pt;}
.x7{left:79.704000pt;}
.x9{left:80.604000pt;}
.x1b{left:86.102667pt;}
.x2{left:129.466667pt;}
.xe{left:167.478667pt;}
.x1{left:170.560000pt;}
.x3{left:175.733333pt;}
.x5{left:207.569324pt;}
.x19{left:242.736000pt;}
.x4{left:260.969328pt;}
.xc{left:352.020000pt;}
.xa{left:404.820000pt;}
.xf{left:410.721333pt;}
.x17{left:412.788000pt;}
.xd{left:418.700000pt;}
.xb{left:420.754667pt;}
.x1a{left:427.156000pt;}
.x12{left:519.764000pt;}
.x11{left:526.217333pt;}
.x18{left:537.790667pt;}
.x8{left:609.936000pt;}
.x13{left:635.508000pt;}
.x14{left:639.326667pt;}
.x16{left:700.468000pt;}
.x15{left:701.886667pt;}
}




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