
    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_dd3c5f46815a4a90d854e31a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_8092850a5d847d2e3a53d136.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_0b4d2b271045aab2fe9686a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_eedb69ba1c15922d83b31021.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_50ac12ad11f8557985042cb3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_d0c0ca3fa4239d3698006c6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024902;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_d0a7cae811b5ff8574b01ec9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_f4006e27b4a842068577d5af.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_d708696b7d7e9bf8994bccdb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_39e2a38d2d6dd13924a94dc7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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);}
.v5{vertical-align:-33.120600px;}
.v2{vertical-align:-30.240000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:30.204120px;}
.ls29{letter-spacing:-0.920736px;}
.ls8{letter-spacing:-0.914112px;}
.ls3d{letter-spacing:-0.907488px;}
.ls1a{letter-spacing:-0.894240px;}
.ls1d{letter-spacing:-0.887616px;}
.ls62{letter-spacing:-0.880992px;}
.ls49{letter-spacing:-0.874368px;}
.ls3e{letter-spacing:-0.854496px;}
.ls66{letter-spacing:-0.395568px;}
.ls55{letter-spacing:-0.377568px;}
.ls57{letter-spacing:-0.371448px;}
.ls5e{letter-spacing:-0.366624px;}
.ls42{letter-spacing:-0.357696px;}
.ls5f{letter-spacing:-0.356976px;}
.ls23{letter-spacing:-0.351072px;}
.ls61{letter-spacing:-0.347328px;}
.ls31{letter-spacing:-0.344448px;}
.ls4a{letter-spacing:-0.337824px;}
.ls33{letter-spacing:-0.331200px;}
.ls3c{letter-spacing:-0.324576px;}
.ls18{letter-spacing:-0.317952px;}
.ls27{letter-spacing:-0.311328px;}
.ls1f{letter-spacing:-0.304704px;}
.ls28{letter-spacing:-0.298080px;}
.ls35{letter-spacing:-0.291456px;}
.ls16{letter-spacing:-0.284832px;}
.ls34{letter-spacing:-0.278208px;}
.ls24{letter-spacing:-0.271584px;}
.ls7{letter-spacing:-0.264960px;}
.ls39{letter-spacing:-0.258336px;}
.ls37{letter-spacing:-0.251712px;}
.ls2a{letter-spacing:-0.245088px;}
.ls5{letter-spacing:-0.238464px;}
.ls48{letter-spacing:-0.231840px;}
.ls65{letter-spacing:-0.192096px;}
.ls58{letter-spacing:-0.172224px;}
.ls56{letter-spacing:-0.167040px;}
.ls68{letter-spacing:-0.165600px;}
.lsa0{letter-spacing:-0.161352px;}
.ls4c{letter-spacing:-0.158976px;}
.ls3f{letter-spacing:-0.152352px;}
.ls22{letter-spacing:-0.145728px;}
.ls3a{letter-spacing:-0.139104px;}
.ls15{letter-spacing:-0.132480px;}
.ls40{letter-spacing:-0.125856px;}
.ls41{letter-spacing:-0.120600px;}
.ls9{letter-spacing:-0.119232px;}
.ls20{letter-spacing:-0.112608px;}
.ls12{letter-spacing:-0.105984px;}
.ls14{letter-spacing:-0.099360px;}
.ls4{letter-spacing:-0.092736px;}
.ls21{letter-spacing:-0.086112px;}
.ls7e{letter-spacing:-0.083664px;}
.lsc{letter-spacing:-0.079488px;}
.ls3{letter-spacing:-0.075816px;}
.ls11{letter-spacing:-0.072864px;}
.ls6{letter-spacing:-0.066240px;}
.lse{letter-spacing:-0.059616px;}
.lsb{letter-spacing:-0.052992px;}
.lsd{letter-spacing:-0.046368px;}
.lsa{letter-spacing:-0.039744px;}
.lsf{letter-spacing:-0.033120px;}
.ls9b{letter-spacing:-0.029880px;}
.lsa8{letter-spacing:-0.028800px;}
.ls10{letter-spacing:-0.026496px;}
.ls63{letter-spacing:-0.024120px;}
.ls9c{letter-spacing:-0.023904px;}
.ls13{letter-spacing:-0.019872px;}
.ls9e{letter-spacing:-0.017928px;}
.ls47{letter-spacing:-0.014472px;}
.ls1e{letter-spacing:-0.013248px;}
.ls1b{letter-spacing:-0.012000px;}
.lsa7{letter-spacing:-0.007200px;}
.ls43{letter-spacing:-0.006624px;}
.ls9d{letter-spacing:-0.005976px;}
.ls17{letter-spacing:0.000000px;}
.ls99{letter-spacing:0.005976px;}
.ls4e{letter-spacing:0.006624px;}
.ls81{letter-spacing:0.007200px;}
.ls9a{letter-spacing:0.011952px;}
.ls30{letter-spacing:0.013248px;}
.ls97{letter-spacing:0.017928px;}
.ls69{letter-spacing:0.019296px;}
.ls5d{letter-spacing:0.019872px;}
.ls82{letter-spacing:0.023904px;}
.ls2f{letter-spacing:0.024120px;}
.ls26{letter-spacing:0.026496px;}
.ls84{letter-spacing:0.029880px;}
.ls1{letter-spacing:0.033120px;}
.ls80{letter-spacing:0.035856px;}
.ls25{letter-spacing:0.038592px;}
.ls2c{letter-spacing:0.039744px;}
.ls73{letter-spacing:0.041832px;}
.ls4b{letter-spacing:0.043416px;}
.ls79{letter-spacing:0.047808px;}
.ls2b{letter-spacing:0.048240px;}
.ls74{letter-spacing:0.053784px;}
.ls6a{letter-spacing:0.057888px;}
.ls6d{letter-spacing:0.059760px;}
.ls8a{letter-spacing:0.065736px;}
.ls3b{letter-spacing:0.067536px;}
.ls71{letter-spacing:0.071712px;}
.ls38{letter-spacing:0.077184px;}
.ls7b{letter-spacing:0.077688px;}
.ls1c{letter-spacing:0.080640px;}
.ls2{letter-spacing:0.081240px;}
.ls6e{letter-spacing:0.083664px;}
.ls5c{letter-spacing:0.086832px;}
.ls94{letter-spacing:0.089640px;}
.ls50{letter-spacing:0.091656px;}
.ls36{letter-spacing:0.091872px;}
.ls0{letter-spacing:0.092736px;}
.ls7d{letter-spacing:0.095616px;}
.ls2e{letter-spacing:0.096480px;}
.ls4f{letter-spacing:0.099360px;}
.ls86{letter-spacing:0.101592px;}
.ls5a{letter-spacing:0.102816px;}
.ls64{letter-spacing:0.105984px;}
.ls67{letter-spacing:0.106128px;}
.ls6f{letter-spacing:0.107568px;}
.ls59{letter-spacing:0.110952px;}
.ls85{letter-spacing:0.113544px;}
.ls6c{letter-spacing:0.119520px;}
.ls5b{letter-spacing:0.125424px;}
.ls77{letter-spacing:0.125496px;}
.ls7a{letter-spacing:0.131472px;}
.ls54{letter-spacing:0.135072px;}
.ls90{letter-spacing:0.137448px;}
.ls6b{letter-spacing:0.139104px;}
.ls83{letter-spacing:0.143424px;}
.ls45{letter-spacing:0.144720px;}
.ls32{letter-spacing:0.145728px;}
.ls87{letter-spacing:0.149400px;}
.ls91{letter-spacing:0.155376px;}
.ls76{letter-spacing:0.161352px;}
.ls78{letter-spacing:0.167328px;}
.ls8b{letter-spacing:0.173304px;}
.ls92{letter-spacing:0.179280px;}
.ls95{letter-spacing:0.185256px;}
.ls8f{letter-spacing:0.191232px;}
.lsa1{letter-spacing:0.197208px;}
.ls8e{letter-spacing:0.203184px;}
.ls96{letter-spacing:0.209160px;}
.ls44{letter-spacing:0.211968px;}
.ls72{letter-spacing:0.215136px;}
.ls9f{letter-spacing:0.221112px;}
.lsa3{letter-spacing:0.227088px;}
.ls93{letter-spacing:0.233064px;}
.lsa4{letter-spacing:0.239040px;}
.ls70{letter-spacing:0.245016px;}
.ls88{letter-spacing:0.256968px;}
.lsa2{letter-spacing:0.268920px;}
.ls7f{letter-spacing:0.274896px;}
.lsa6{letter-spacing:0.292824px;}
.ls98{letter-spacing:0.298800px;}
.ls75{letter-spacing:0.310752px;}
.ls8c{letter-spacing:0.322704px;}
.lsa9{letter-spacing:0.340632px;}
.ls8d{letter-spacing:0.358560px;}
.lsa5{letter-spacing:0.361800px;}
.ls19{letter-spacing:0.397440px;}
.ls4d{letter-spacing:0.470304px;}
.ls53{letter-spacing:4.703040px;}
.ls52{letter-spacing:4.709664px;}
.ls2d{letter-spacing:10.525536px;}
.ls51{letter-spacing:11.903328px;}
.ls46{letter-spacing:17.725824px;}
.ls89{letter-spacing:28.800000px;}
.ls60{letter-spacing:41.426496px;}
.ls7c{letter-spacing:189.101952px;}
.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;}
}
.ws1cb{word-spacing:-23.323104px;}
.ws68{word-spacing:-23.316480px;}
.wse4{word-spacing:-23.289984px;}
.wsa9{word-spacing:-23.044896px;}
.ws1db{word-spacing:-22.965408px;}
.wscb{word-spacing:-22.654080px;}
.ws27b{word-spacing:-15.298560px;}
.wsaa{word-spacing:-14.791392px;}
.ws183{word-spacing:-14.114880px;}
.ws2de{word-spacing:-12.421800px;}
.ws193{word-spacing:-10.444896px;}
.ws252{word-spacing:-9.720000px;}
.ws5e{word-spacing:-0.900864px;}
.ws2ef{word-spacing:-0.806760px;}
.ws2c7{word-spacing:-0.758952px;}
.ws178{word-spacing:-0.757368px;}
.ws14e{word-spacing:-0.709128px;}
.wsc7{word-spacing:-0.689832px;}
.ws246{word-spacing:-0.685008px;}
.ws2df{word-spacing:-0.663336px;}
.ws2d1{word-spacing:-0.621504px;}
.ws194{word-spacing:-0.529920px;}
.ws1b2{word-spacing:-0.483552px;}
.ws3{word-spacing:-0.476928px;}
.wsb6{word-spacing:-0.463680px;}
.ws12e{word-spacing:-0.404064px;}
.ws90{word-spacing:-0.344448px;}
.ws63{word-spacing:-0.317952px;}
.ws105{word-spacing:-0.311328px;}
.ws1c8{word-spacing:-0.284832px;}
.ws250{word-spacing:-0.264960px;}
.wsc8{word-spacing:-0.258336px;}
.ws15f{word-spacing:-0.245088px;}
.ws5f{word-spacing:-0.238464px;}
.wsf8{word-spacing:-0.231840px;}
.ws302{word-spacing:-0.221112px;}
.ws201{word-spacing:-0.218592px;}
.ws12{word-spacing:-0.211968px;}
.ws182{word-spacing:-0.205344px;}
.ws3d{word-spacing:-0.198720px;}
.wse2{word-spacing:-0.192096px;}
.ws14d{word-spacing:-0.185472px;}
.ws271{word-spacing:-0.185256px;}
.ws1ab{word-spacing:-0.178848px;}
.ws2f3{word-spacing:-0.173304px;}
.wsb9{word-spacing:-0.172224px;}
.ws1{word-spacing:-0.158976px;}
.ws28c{word-spacing:-0.155376px;}
.ws59{word-spacing:-0.152352px;}
.ws2{word-spacing:-0.145728px;}
.ws28f{word-spacing:-0.137448px;}
.ws117{word-spacing:-0.135072px;}
.ws155{word-spacing:-0.132480px;}
.ws26e{word-spacing:-0.131472px;}
.ws60{word-spacing:-0.125856px;}
.ws269{word-spacing:-0.125496px;}
.ws301{word-spacing:-0.119520px;}
.wsfa{word-spacing:-0.119232px;}
.ws1b1{word-spacing:-0.115776px;}
.ws2b8{word-spacing:-0.113544px;}
.ws5c{word-spacing:-0.112608px;}
.ws2f4{word-spacing:-0.107568px;}
.wsd6{word-spacing:-0.105984px;}
.ws1a2{word-spacing:-0.101304px;}
.ws57{word-spacing:-0.099360px;}
.ws184{word-spacing:-0.096480px;}
.ws26c{word-spacing:-0.095616px;}
.ws30{word-spacing:-0.092736px;}
.ws91{word-spacing:-0.086832px;}
.ws3c{word-spacing:-0.086112px;}
.ws1a9{word-spacing:-0.077184px;}
.ws106{word-spacing:-0.072864px;}
.ws2c0{word-spacing:-0.071712px;}
.wsd3{word-spacing:-0.067536px;}
.ws2d9{word-spacing:-0.059760px;}
.ws1ef{word-spacing:-0.059616px;}
.wse5{word-spacing:-0.057888px;}
.ws29a{word-spacing:-0.053784px;}
.ws16c{word-spacing:-0.052992px;}
.ws253{word-spacing:-0.048240px;}
.ws2c2{word-spacing:-0.047808px;}
.ws200{word-spacing:-0.043416px;}
.ws2a5{word-spacing:-0.041832px;}
.ws50{word-spacing:-0.039744px;}
.wsf5{word-spacing:-0.038592px;}
.ws2b5{word-spacing:-0.035856px;}
.ws1ce{word-spacing:-0.033768px;}
.ws27{word-spacing:-0.033120px;}
.ws28e{word-spacing:-0.029880px;}
.ws75{word-spacing:-0.028944px;}
.ws167{word-spacing:-0.026496px;}
.ws2e5{word-spacing:-0.023904px;}
.ws29f{word-spacing:-0.017928px;}
.ws1cf{word-spacing:-0.013248px;}
.ws299{word-spacing:-0.011952px;}
.ws8d{word-spacing:-0.009648px;}
.ws27e{word-spacing:-0.007200px;}
.ws8f{word-spacing:-0.006624px;}
.ws2e3{word-spacing:-0.005976px;}
.ws4{word-spacing:0.000000px;}
.ws285{word-spacing:0.005976px;}
.ws263{word-spacing:0.011952px;}
.ws73{word-spacing:0.013248px;}
.ws37{word-spacing:0.014400px;}
.ws2b6{word-spacing:0.017928px;}
.ws1a7{word-spacing:0.019872px;}
.ws297{word-spacing:0.023904px;}
.ws11e{word-spacing:0.024120px;}
.wsd2{word-spacing:0.026496px;}
.ws2fc{word-spacing:0.028800px;}
.ws1a6{word-spacing:0.033120px;}
.ws1f7{word-spacing:0.033768px;}
.ws265{word-spacing:0.035856px;}
.ws218{word-spacing:0.039744px;}
.ws26a{word-spacing:0.041832px;}
.ws8e{word-spacing:0.046368px;}
.ws268{word-spacing:0.047808px;}
.ws2e4{word-spacing:0.053784px;}
.ws26f{word-spacing:0.059760px;}
.ws298{word-spacing:0.071712px;}
.ws22e{word-spacing:0.072864px;}
.ws2b7{word-spacing:0.077688px;}
.ws10b{word-spacing:0.079488px;}
.ws2e0{word-spacing:0.083664px;}
.ws61{word-spacing:0.086112px;}
.ws267{word-spacing:0.089640px;}
.ws0{word-spacing:0.092664px;}
.ws1f9{word-spacing:0.092736px;}
.ws264{word-spacing:0.095616px;}
.ws296{word-spacing:0.101592px;}
.ws279{word-spacing:0.107568px;}
.ws270{word-spacing:0.113544px;}
.ws13d{word-spacing:0.119232px;}
.ws266{word-spacing:0.119520px;}
.ws26b{word-spacing:0.125496px;}
.ws247{word-spacing:0.125856px;}
.ws104{word-spacing:0.130248px;}
.ws44{word-spacing:0.132480px;}
.ws2e9{word-spacing:0.137448px;}
.wsc9{word-spacing:0.145728px;}
.ws2c1{word-spacing:0.155376px;}
.ws137{word-spacing:0.158976px;}
.ws1d0{word-spacing:0.165600px;}
.wsb5{word-spacing:0.172224px;}
.wsbd{word-spacing:0.178848px;}
.wsb7{word-spacing:0.192096px;}
.ws28d{word-spacing:0.209160px;}
.wse3{word-spacing:0.211968px;}
.ws24{word-spacing:0.218592px;}
.ws2c6{word-spacing:0.233064px;}
.wscd{word-spacing:0.251712px;}
.ws26d{word-spacing:0.262944px;}
.ws11d{word-spacing:0.331200px;}
.ws1bd{word-spacing:0.351072px;}
.ws1dc{word-spacing:0.356976px;}
.ws1cc{word-spacing:0.366624px;}
.ws1c5{word-spacing:0.376272px;}
.ws18d{word-spacing:0.381096px;}
.ws226{word-spacing:0.414864px;}
.ws1ad{word-spacing:0.430560px;}
.wse1{word-spacing:0.437184px;}
.ws1c4{word-spacing:0.443808px;}
.ws9d{word-spacing:0.457056px;}
.ws156{word-spacing:0.463680px;}
.ws9e{word-spacing:0.470304px;}
.ws15{word-spacing:0.476928px;}
.ws1ac{word-spacing:0.490176px;}
.ws12a{word-spacing:0.496800px;}
.ws16{word-spacing:0.503424px;}
.ws32{word-spacing:0.510048px;}
.wsd0{word-spacing:0.516672px;}
.ws23{word-spacing:0.523296px;}
.wsdc{word-spacing:0.529920px;}
.wseb{word-spacing:0.543168px;}
.wsc2{word-spacing:0.549792px;}
.wsf0{word-spacing:0.563040px;}
.wsd7{word-spacing:0.576288px;}
.ws33{word-spacing:0.582912px;}
.ws239{word-spacing:0.616032px;}
.ws136{word-spacing:0.622656px;}
.ws177{word-spacing:0.649152px;}
.ws2af{word-spacing:0.669312px;}
.ws19b{word-spacing:0.682272px;}
.ws237{word-spacing:0.702144px;}
.wsbe{word-spacing:0.722016px;}
.ws24c{word-spacing:0.735264px;}
.ws31{word-spacing:0.741888px;}
.ws236{word-spacing:0.768384px;}
.ws74{word-spacing:0.775008px;}
.ws2ce{word-spacing:0.782856px;}
.ws16e{word-spacing:0.788256px;}
.ws2eb{word-spacing:0.794808px;}
.ws1d1{word-spacing:0.808128px;}
.ws2d0{word-spacing:0.818712px;}
.ws228{word-spacing:0.821376px;}
.ws2cf{word-spacing:0.848592px;}
.ws2ec{word-spacing:0.884448px;}
.ws25c{word-spacing:0.914112px;}
.wsc6{word-spacing:0.927360px;}
.wsa8{word-spacing:1.152576px;}
.ws17d{word-spacing:1.159200px;}
.ws88{word-spacing:1.179072px;}
.ws18a{word-spacing:1.185696px;}
.wsa7{word-spacing:1.192320px;}
.ws58{word-spacing:1.198944px;}
.ws93{word-spacing:1.205568px;}
.ws92{word-spacing:1.218816px;}
.wscc{word-spacing:1.238688px;}
.ws1ed{word-spacing:1.251936px;}
.ws89{word-spacing:1.258560px;}
.ws1a{word-spacing:1.265184px;}
.ws25b{word-spacing:1.271808px;}
.ws17c{word-spacing:1.285056px;}
.ws36{word-spacing:1.304928px;}
.ws19{word-spacing:1.324800px;}
.wsd5{word-spacing:1.338048px;}
.ws1e6{word-spacing:1.371168px;}
.ws6c{word-spacing:1.377792px;}
.ws166{word-spacing:1.417536px;}
.ws1e3{word-spacing:1.450656px;}
.ws289{word-spacing:1.470096px;}
.ws28b{word-spacing:1.482048px;}
.ws28a{word-spacing:1.505952px;}
.ws9f{word-spacing:1.854720px;}
.ws179{word-spacing:1.861344px;}
.wsf7{word-spacing:1.867968px;}
.ws204{word-spacing:1.881216px;}
.wsde{word-spacing:1.887840px;}
.ws83{word-spacing:1.894464px;}
.ws157{word-spacing:1.901088px;}
.ws4c{word-spacing:1.907712px;}
.wsa0{word-spacing:1.927584px;}
.ws4b{word-spacing:1.940832px;}
.ws199{word-spacing:1.947456px;}
.ws84{word-spacing:1.960704px;}
.ws25d{word-spacing:1.980576px;}
.ws202{word-spacing:2.026944px;}
.wsed{word-spacing:2.033568px;}
.ws205{word-spacing:2.066688px;}
.wsf6{word-spacing:2.073312px;}
.wsb8{word-spacing:2.099808px;}
.ws2b2{word-spacing:2.115504px;}
.ws2e1{word-spacing:2.133432px;}
.ws2b1{word-spacing:2.145384px;}
.ws282{word-spacing:2.151360px;}
.ws2f8{word-spacing:2.163312px;}
.wsba{word-spacing:2.179296px;}
.ws2ab{word-spacing:2.187216px;}
.ws2e2{word-spacing:2.217096px;}
.ws2f9{word-spacing:2.223072px;}
.ws283{word-spacing:2.241000px;}
.ws41{word-spacing:2.543616px;}
.ws225{word-spacing:2.563488px;}
.ws241{word-spacing:2.576736px;}
.ws132{word-spacing:2.596608px;}
.ws207{word-spacing:2.603232px;}
.ws208{word-spacing:2.609856px;}
.ws151{word-spacing:2.623104px;}
.ws192{word-spacing:2.636352px;}
.ws1f6{word-spacing:2.642976px;}
.ws133{word-spacing:2.649600px;}
.ws6f{word-spacing:2.656224px;}
.ws206{word-spacing:2.662848px;}
.ws6d{word-spacing:2.669472px;}
.wsf1{word-spacing:2.676096px;}
.ws16d{word-spacing:2.682720px;}
.ws191{word-spacing:2.689344px;}
.ws42{word-spacing:2.715840px;}
.ws1a4{word-spacing:2.722464px;}
.ws2c4{word-spacing:2.731032px;}
.ws15b{word-spacing:2.735712px;}
.ws135{word-spacing:2.795328px;}
.ws24f{word-spacing:2.861568px;}
.ws2b0{word-spacing:2.868480px;}
.ws1a5{word-spacing:2.874816px;}
.ws6e{word-spacing:2.894688px;}
.ws146{word-spacing:2.907936px;}
.ws284{word-spacing:2.946168px;}
.ws2c5{word-spacing:2.958120px;}
.ws2c3{word-spacing:3.005928px;}
.ws16a{word-spacing:3.278880px;}
.ws258{word-spacing:3.298752px;}
.ws17{word-spacing:3.305376px;}
.wsa2{word-spacing:3.318624px;}
.ws25f{word-spacing:3.325248px;}
.wsa3{word-spacing:3.331872px;}
.ws21f{word-spacing:3.345120px;}
.ws1d{word-spacing:3.351744px;}
.ws1c{word-spacing:3.364992px;}
.wscf{word-spacing:3.371616px;}
.ws21e{word-spacing:3.391488px;}
.ws169{word-spacing:3.431232px;}
.ws273{word-spacing:3.561696px;}
.ws2a4{word-spacing:3.585600px;}
.ws274{word-spacing:3.591576px;}
.ws2d8{word-spacing:3.597552px;}
.wsb4{word-spacing:3.603456px;}
.ws2ae{word-spacing:3.609504px;}
.ws2a3{word-spacing:3.621456px;}
.ws295{word-spacing:3.627432px;}
.ws1b6{word-spacing:3.656448px;}
.ws2d6{word-spacing:3.669264px;}
.ws287{word-spacing:3.675240px;}
.ws294{word-spacing:3.681216px;}
.ws2d7{word-spacing:3.693168px;}
.ws288{word-spacing:3.705120px;}
.ws2d5{word-spacing:3.717072px;}
.ws286{word-spacing:3.735000px;}
.ws272{word-spacing:3.746952px;}
.ws94{word-spacing:3.974400px;}
.ws174{word-spacing:4.007520px;}
.ws176{word-spacing:4.014144px;}
.ws53{word-spacing:4.027392px;}
.ws126{word-spacing:4.034016px;}
.ws14c{word-spacing:4.060512px;}
.ws52{word-spacing:4.073760px;}
.ws72{word-spacing:4.080384px;}
.ws161{word-spacing:4.087008px;}
.ws14b{word-spacing:4.106880px;}
.ws17e{word-spacing:4.113504px;}
.ws95{word-spacing:4.126752px;}
.ws17f{word-spacing:4.140000px;}
.ws14a{word-spacing:4.159872px;}
.wsec{word-spacing:4.173120px;}
.ws12f{word-spacing:4.239360px;}
.ws1b8{word-spacing:4.332096px;}
.ws2ac{word-spacing:4.386384px;}
.ws160{word-spacing:4.411584px;}
.ws2ad{word-spacing:4.422240px;}
.wsf9{word-spacing:4.703040px;}
.ws8c{word-spacing:4.722912px;}
.ws10e{word-spacing:4.736160px;}
.ws231{word-spacing:4.762656px;}
.wsdd{word-spacing:4.782528px;}
.ws1fd{word-spacing:4.789152px;}
.ws76{word-spacing:4.795776px;}
.ws1b{word-spacing:4.815648px;}
.wsf3{word-spacing:4.822272px;}
.ws1e{word-spacing:4.848768px;}
.ws77{word-spacing:4.895136px;}
.ws144{word-spacing:4.915008px;}
.ws175{word-spacing:4.941504px;}
.ws18b{word-spacing:5.040864px;}
.ws18c{word-spacing:5.067360px;}
.wsdb{word-spacing:5.073984px;}
.ws262{word-spacing:5.372064px;}
.ws129{word-spacing:5.471424px;}
.ws15d{word-spacing:5.484672px;}
.ws1be{word-spacing:5.491296px;}
.ws1d2{word-spacing:5.497920px;}
.ws1b5{word-spacing:5.511168px;}
.ws112{word-spacing:5.517792px;}
.ws1e9{word-spacing:5.531040px;}
.ws102{word-spacing:5.537664px;}
.ws203{word-spacing:5.544288px;}
.ws113{word-spacing:5.564160px;}
.ws103{word-spacing:5.570784px;}
.ws1f{word-spacing:5.577408px;}
.ws1bf{word-spacing:5.584032px;}
.ws15c{word-spacing:5.597280px;}
.ws1d3{word-spacing:5.603904px;}
.ws69{word-spacing:5.643648px;}
.ws277{word-spacing:5.695128px;}
.ws2fe{word-spacing:5.725008px;}
.ws13a{word-spacing:5.782752px;}
.ws276{word-spacing:5.790744px;}
.ws2fd{word-spacing:5.796720px;}
.ws29e{word-spacing:5.826600px;}
.ws2ff{word-spacing:5.832576px;}
.ws29d{word-spacing:5.904288px;}
.ws27a{word-spacing:5.981976px;}
.ws2dc{word-spacing:6.120000px;}
.wsea{word-spacing:6.153696px;}
.ws255{word-spacing:6.166944px;}
.ws47{word-spacing:6.186816px;}
.ws1aa{word-spacing:6.193440px;}
.ws2f{word-spacing:6.233184px;}
.ws22c{word-spacing:6.239808px;}
.wsae{word-spacing:6.253056px;}
.ws100{word-spacing:6.266304px;}
.ws18{word-spacing:6.272928px;}
.wsbb{word-spacing:6.279552px;}
.wsbc{word-spacing:6.292800px;}
.ws101{word-spacing:6.312672px;}
.wsfd{word-spacing:6.359040px;}
.ws6b{word-spacing:6.365664px;}
.wsce{word-spacing:6.445152px;}
.ws278{word-spacing:6.448104px;}
.wsd8{word-spacing:6.471648px;}
.ws29c{word-spacing:6.477984px;}
.ws29b{word-spacing:6.525792px;}
.ws275{word-spacing:6.585552px;}
.ws165{word-spacing:6.809472px;}
.ws22a{word-spacing:6.922080px;}
.wsa1{word-spacing:6.948576px;}
.ws13b{word-spacing:6.961824px;}
.ws1bb{word-spacing:6.968448px;}
.ws4e{word-spacing:6.975072px;}
.ws13c{word-spacing:6.981696px;}
.ws1e8{word-spacing:6.988320px;}
.wsd9{word-spacing:6.994944px;}
.wsbf{word-spacing:7.008192px;}
.ws1e7{word-spacing:7.047936px;}
.ws164{word-spacing:7.087680px;}
.ws23b{word-spacing:7.094304px;}
.ws2cd{word-spacing:7.105464px;}
.ws292{word-spacing:7.201080px;}
.ws2cc{word-spacing:7.213032px;}
.ws13e{word-spacing:7.240032px;}
.ws293{word-spacing:7.254864px;}
.ws2cb{word-spacing:7.278768px;}
.ws181{word-spacing:7.557984px;}
.ws27d{word-spacing:7.560000px;}
.ws80{word-spacing:7.604352px;}
.ws21{word-spacing:7.624224px;}
.ws43{word-spacing:7.630848px;}
.ws22{word-spacing:7.637472px;}
.ws159{word-spacing:7.644096px;}
.ws24b{word-spacing:7.657344px;}
.ws81{word-spacing:7.670592px;}
.wsf{word-spacing:7.677216px;}
.ws227{word-spacing:7.683840px;}
.ws39{word-spacing:7.690464px;}
.ws4a{word-spacing:7.710336px;}
.wse0{word-spacing:7.716960px;}
.ws1f1{word-spacing:7.750080px;}
.wsdf{word-spacing:7.763328px;}
.ws22f{word-spacing:7.816320px;}
.ws28{word-spacing:7.922304px;}
.ws2ea{word-spacing:7.960032px;}
.ws254{word-spacing:8.366112px;}
.ws1f0{word-spacing:8.372736px;}
.ws230{word-spacing:8.399232px;}
.wsa{word-spacing:8.412480px;}
.ws15e{word-spacing:8.432352px;}
.ws240{word-spacing:8.445600px;}
.ws23e{word-spacing:8.452224px;}
.ws24d{word-spacing:8.465472px;}
.ws24e{word-spacing:8.472096px;}
.ws110{word-spacing:8.478720px;}
.ws38{word-spacing:8.485344px;}
.ws23d{word-spacing:8.498592px;}
.ws49{word-spacing:8.558208px;}
.ws162{word-spacing:8.664192px;}
.ws229{word-spacing:8.690688px;}
.ws1e4{word-spacing:9.101376px;}
.ws125{word-spacing:9.114624px;}
.ws123{word-spacing:9.127872px;}
.ws124{word-spacing:9.141120px;}
.ws17a{word-spacing:9.160992px;}
.ws1b9{word-spacing:9.247104px;}
.ws2d4{word-spacing:9.298656px;}
.ws2d3{word-spacing:9.334512px;}
.ws2c9{word-spacing:9.346464px;}
.ws2bb{word-spacing:9.364392px;}
.wsda{word-spacing:9.392832px;}
.ws2ba{word-spacing:9.412200px;}
.ws1ba{word-spacing:9.432576px;}
.ws2f6{word-spacing:9.460008px;}
.ws2f7{word-spacing:9.465984px;}
.ws2ca{word-spacing:9.501840px;}
.ws2d2{word-spacing:9.507816px;}
.ws2f5{word-spacing:9.513792px;}
.ws2b9{word-spacing:9.519768px;}
.ws27c{word-spacing:9.720000px;}
.wsb{word-spacing:9.750528px;}
.ws10{word-spacing:9.869760px;}
.wsb3{word-spacing:9.876384px;}
.wsb2{word-spacing:9.896256px;}
.ws2a1{word-spacing:10.015776px;}
.ws2a7{word-spacing:10.021752px;}
.ws2a2{word-spacing:10.069560px;}
.ws2a8{word-spacing:10.075536px;}
.ws1dd{word-spacing:10.081728px;}
.ws130{word-spacing:10.088352px;}
.ws2a0{word-spacing:10.123344px;}
.ws300{word-spacing:10.129320px;}
.ws2a6{word-spacing:10.171152px;}
.ws2c8{word-spacing:10.380312px;}
.ws54{word-spacing:10.485792px;}
.ws141{word-spacing:10.492416px;}
.wsac{word-spacing:10.505664px;}
.ws11c{word-spacing:10.525536px;}
.ws235{word-spacing:10.532160px;}
.ws259{word-spacing:10.538784px;}
.ws55{word-spacing:10.545408px;}
.ws18e{word-spacing:10.552032px;}
.ws13f{word-spacing:10.558656px;}
.ws20{word-spacing:10.565280px;}
.ws23f{word-spacing:10.571904px;}
.ws25a{word-spacing:10.585152px;}
.ws140{word-spacing:10.605024px;}
.ws96{word-spacing:10.618272px;}
.ws116{word-spacing:10.624896px;}
.ws56{word-spacing:10.638144px;}
.ws11{word-spacing:10.671264px;}
.wsab{word-spacing:10.677888px;}
.ws238{word-spacing:10.691136px;}
.ws190{word-spacing:11.227680px;}
.ws3f{word-spacing:11.260800px;}
.ws1df{word-spacing:11.274048px;}
.ws1b4{word-spacing:11.280672px;}
.wsc5{word-spacing:11.293920px;}
.ws122{word-spacing:11.320416px;}
.ws1f5{word-spacing:11.327040px;}
.wsc4{word-spacing:11.406528px;}
.ws4f{word-spacing:11.512512px;}
.ws108{word-spacing:11.585376px;}
.ws114{word-spacing:11.969568px;}
.ws11a{word-spacing:11.976192px;}
.wsc1{word-spacing:11.989440px;}
.ws20a{word-spacing:12.002688px;}
.ws20b{word-spacing:12.009312px;}
.wsa5{word-spacing:12.015936px;}
.wsa4{word-spacing:12.022560px;}
.ws187{word-spacing:12.029184px;}
.ws244{word-spacing:12.035808px;}
.ws11b{word-spacing:12.055680px;}
.wsef{word-spacing:12.062304px;}
.ws120{word-spacing:12.068928px;}
.ws121{word-spacing:12.075552px;}
.ws1e5{word-spacing:12.115296px;}
.ws11f{word-spacing:12.128544px;}
.ws195{word-spacing:12.227904px;}
.ws2fb{word-spacing:12.232800px;}
.ws2b4{word-spacing:12.346416px;}
.ws2b3{word-spacing:12.352392px;}
.ws111{word-spacing:12.631968px;}
.ws168{word-spacing:12.665088px;}
.ws86{word-spacing:12.698208px;}
.ws1d5{word-spacing:12.704832px;}
.ws85{word-spacing:12.724704px;}
.ws109{word-spacing:12.737952px;}
.ws4d{word-spacing:12.751200px;}
.ws2fa{word-spacing:12.967200px;}
.ws15a{word-spacing:13.360608px;}
.ws12c{word-spacing:13.367232px;}
.wsf2{word-spacing:13.373856px;}
.wsd{word-spacing:13.400352px;}
.ws1c9{word-spacing:13.413600px;}
.ws40{word-spacing:13.433472px;}
.ws119{word-spacing:13.440096px;}
.wsfe{word-spacing:13.446720px;}
.ws5a{word-spacing:13.453344px;}
.ws8{word-spacing:13.459968px;}
.ws70{word-spacing:13.466592px;}
.ws1fc{word-spacing:13.479840px;}
.ws1ca{word-spacing:13.493088px;}
.wsc{word-spacing:13.519584px;}
.ws1d4{word-spacing:13.539456px;}
.ws67{word-spacing:13.678560px;}
.ws71{word-spacing:13.685184px;}
.ws291{word-spacing:13.780656px;}
.ws23c{word-spacing:14.109120px;}
.ws1c3{word-spacing:14.128992px;}
.ws9b{word-spacing:14.168736px;}
.ws9c{word-spacing:14.228352px;}
.ws2bd{word-spacing:14.348376px;}
.ws7{word-spacing:14.360832px;}
.ws2bc{word-spacing:14.449968px;}
.ws290{word-spacing:14.527656px;}
.ws170{word-spacing:14.831136px;}
.ws171{word-spacing:14.877504px;}
.wsd1{word-spacing:14.884128px;}
.ws243{word-spacing:14.963616px;}
.ws2e8{word-spacing:15.113304px;}
.ws51{word-spacing:15.129216px;}
.ws10a{word-spacing:15.142464px;}
.ws2e7{word-spacing:15.149160px;}
.ws2e6{word-spacing:15.190992px;}
.ws1b7{word-spacing:15.533280px;}
.ws1ee{word-spacing:15.546528px;}
.ws212{word-spacing:15.559776px;}
.ws1da{word-spacing:15.566400px;}
.ws173{word-spacing:15.586272px;}
.ws48{word-spacing:15.626016px;}
.ws186{word-spacing:15.632640px;}
.ws172{word-spacing:15.639264px;}
.ws5b{word-spacing:15.652512px;}
.ws185{word-spacing:15.665760px;}
.ws1d9{word-spacing:15.692256px;}
.wsca{word-spacing:15.818112px;}
.ws280{word-spacing:15.818472px;}
.ws281{word-spacing:15.836400px;}
.ws27f{word-spacing:15.961896px;}
.ws22d{word-spacing:16.341408px;}
.ws1ec{word-spacing:16.361280px;}
.wse7{word-spacing:16.374528px;}
.ws2aa{word-spacing:16.499736px;}
.ws150{word-spacing:16.593120px;}
.ws14f{word-spacing:16.612992px;}
.wse6{word-spacing:16.626240px;}
.ws2a9{word-spacing:16.679016px;}
.ws13{word-spacing:16.977312px;}
.ws16f{word-spacing:17.050176px;}
.ws118{word-spacing:17.070048px;}
.ws2bf{word-spacing:17.276616px;}
.ws2be{word-spacing:17.324424px;}
.ws2ee{word-spacing:17.354304px;}
.ws2ed{word-spacing:17.366256px;}
.ws2a{word-spacing:17.566848px;}
.ws10d{word-spacing:17.652960px;}
.wsaf{word-spacing:17.699328px;}
.ws29{word-spacing:17.712576px;}
.wsb0{word-spacing:17.719200px;}
.ws65{word-spacing:17.739072px;}
.ws23a{word-spacing:17.778816px;}
.ws16b{word-spacing:17.811936px;}
.ws12b{word-spacing:17.825184px;}
.ws66{word-spacing:17.838432px;}
.ws2b{word-spacing:17.845056px;}
.ws10c{word-spacing:17.871552px;}
.wsd4{word-spacing:17.977536px;}
.ws2f2{word-spacing:17.993736px;}
.ws209{word-spacing:18.010656px;}
.ws2f1{word-spacing:18.059472px;}
.ws2f0{word-spacing:18.071424px;}
.ws233{word-spacing:18.090144px;}
.ws158{word-spacing:18.421344px;}
.ws79{word-spacing:18.434592px;}
.ws1f4{word-spacing:18.441216px;}
.ws1a3{word-spacing:18.494208px;}
.ws139{word-spacing:18.507456px;}
.wse8{word-spacing:18.514080px;}
.ws78{word-spacing:18.520704px;}
.wsee{word-spacing:18.553824px;}
.ws3e{word-spacing:18.659808px;}
.ws138{word-spacing:18.699552px;}
.ws1d7{word-spacing:19.077120px;}
.ws242{word-spacing:19.103616px;}
.ws6a{word-spacing:19.123488px;}
.ws46{word-spacing:19.149984px;}
.ws1d8{word-spacing:19.169856px;}
.ws197{word-spacing:19.183104px;}
.ws222{word-spacing:19.202976px;}
.wse9{word-spacing:19.209600px;}
.ws223{word-spacing:19.242720px;}
.ws1eb{word-spacing:19.249344px;}
.ws45{word-spacing:19.282464px;}
.ws19d{word-spacing:19.481184px;}
.ws189{word-spacing:19.838880px;}
.ws143{word-spacing:19.878624px;}
.ws87{word-spacing:19.891872px;}
.ws153{word-spacing:19.924992px;}
.ws188{word-spacing:19.938240px;}
.ws1c2{word-spacing:19.951488px;}
.ws152{word-spacing:19.958112px;}
.ws221{word-spacing:19.971360px;}
.ws220{word-spacing:19.991232px;}
.ws1b3{word-spacing:20.136960px;}
.ws19a{word-spacing:20.189952px;}
.ws2db{word-spacing:20.520000px;}
.ws1af{word-spacing:20.567520px;}
.ws19f{word-spacing:20.613888px;}
.ws1ae{word-spacing:20.620512px;}
.ws1c7{word-spacing:20.640384px;}
.ws20c{word-spacing:20.666880px;}
.ws21d{word-spacing:20.700000px;}
.ws1a8{word-spacing:20.878848px;}
.ws134{word-spacing:21.309408px;}
.ws35{word-spacing:21.335904px;}
.ws128{word-spacing:21.342528px;}
.ws34{word-spacing:21.355776px;}
.ws26{word-spacing:21.362400px;}
.ws131{word-spacing:21.375648px;}
.ws127{word-spacing:21.395520px;}
.ws224{word-spacing:21.455136px;}
.wsfb{word-spacing:21.475008px;}
.ws1fb{word-spacing:21.488256px;}
.ws7c{word-spacing:22.064544px;}
.ws1a0{word-spacing:22.077792px;}
.ws163{word-spacing:22.084416px;}
.ws17b{word-spacing:22.150656px;}
.ws1f3{word-spacing:22.157280px;}
.ws7d{word-spacing:22.163904px;}
.wsfc{word-spacing:22.177152px;}
.ws1f2{word-spacing:22.197024px;}
.ws248{word-spacing:22.283136px;}
.ws256{word-spacing:22.773312px;}
.ws62{word-spacing:22.779936px;}
.ws1d6{word-spacing:22.799808px;}
.wse{word-spacing:22.839552px;}
.ws1c1{word-spacing:23.442336px;}
.ws3b{word-spacing:23.495328px;}
.ws3a{word-spacing:23.528448px;}
.ws245{word-spacing:23.535072px;}
.ws7b{word-spacing:23.554944px;}
.ws1c0{word-spacing:23.561568px;}
.ws2dd{word-spacing:23.574600px;}
.ws7a{word-spacing:23.607936px;}
.ws234{word-spacing:23.813280px;}
.ws21c{word-spacing:24.197472px;}
.ws82{word-spacing:24.217344px;}
.ws21b{word-spacing:24.276960px;}
.wsad{word-spacing:24.296832px;}
.ws12d{word-spacing:24.700896px;}
.ws2da{word-spacing:24.840000px;}
.ws1e0{word-spacing:24.932736px;}
.ws154{word-spacing:24.965856px;}
.ws5d{word-spacing:24.979104px;}
.ws10f{word-spacing:24.985728px;}
.ws145{word-spacing:25.005600px;}
.ws64{word-spacing:25.138080px;}
.ws1bc{word-spacing:25.177824px;}
.ws210{word-spacing:25.595136px;}
.ws211{word-spacing:25.767360px;}
.ws261{word-spacing:26.303904px;}
.ws1fa{word-spacing:26.390016px;}
.ws2d{word-spacing:26.681472px;}
.ws2e{word-spacing:27.098784px;}
.ws1ea{word-spacing:27.105408px;}
.ws1f8{word-spacing:27.118656px;}
.ws215{word-spacing:27.131904px;}
.ws180{word-spacing:27.158400px;}
.ws198{word-spacing:27.191520px;}
.ws1c6{word-spacing:27.198144px;}
.ws214{word-spacing:27.257760px;}
.ws19e{word-spacing:27.853920px;}
.ws2c{word-spacing:28.609056px;}
.ws107{word-spacing:28.787904px;}
.ws25e{word-spacing:29.211840px;}
.ws1de{word-spacing:29.264832px;}
.ws115{word-spacing:30.000096px;}
.wsff{word-spacing:30.735360px;}
.ws5{word-spacing:30.775104px;}
.ws251{word-spacing:30.821472px;}
.ws1a1{word-spacing:30.947328px;}
.ws6{word-spacing:30.960576px;}
.ws14{word-spacing:31.437504px;}
.ws217{word-spacing:31.457376px;}
.ws216{word-spacing:31.523616px;}
.ws21a{word-spacing:32.146272px;}
.ws7f{word-spacing:32.159520px;}
.ws257{word-spacing:32.199264px;}
.ws7e{word-spacing:32.212512px;}
.wsf4{word-spacing:32.219136px;}
.ws219{word-spacing:32.311872px;}
.ws213{word-spacing:32.868288px;}
.ws19c{word-spacing:33.590304px;}
.ws1fe{word-spacing:34.451424px;}
.ws9{word-spacing:34.987968px;}
.wsc3{word-spacing:35.001216px;}
.ws1ff{word-spacing:35.027712px;}
.wsa6{word-spacing:35.034336px;}
.ws20e{word-spacing:36.471744px;}
.ws20d{word-spacing:36.571104px;}
.ws232{word-spacing:37.491840px;}
.ws8a{word-spacing:39.373056px;}
.ws8b{word-spacing:39.439296px;}
.ws1b0{word-spacing:40.022208px;}
.ws1cd{word-spacing:40.075200px;}
.ws147{word-spacing:40.081824px;}
.ws18f{word-spacing:40.121568px;}
.ws249{word-spacing:40.167936px;}
.ws24a{word-spacing:40.181184px;}
.ws1e1{word-spacing:41.486112px;}
.ws1e2{word-spacing:41.519232px;}
.ws9a{word-spacing:42.194880px;}
.ws99{word-spacing:42.274368px;}
.wsb1{word-spacing:43.658784px;}
.ws142{word-spacing:43.778016px;}
.ws98{word-spacing:46.540224px;}
.ws97{word-spacing:46.560096px;}
.ws196{word-spacing:49.428288px;}
.ws148{word-spacing:52.263360px;}
.ws149{word-spacing:52.329600px;}
.ws260{word-spacing:53.025120px;}
.ws25{word-spacing:54.515520px;}
.ws22b{word-spacing:60.304896px;}
.ws20f{word-spacing:63.822240px;}
.wsc0{word-spacing:73.181952px;}
._7{margin-left:-39.944880px;}
._8{margin-left:-27.008208px;}
._4{margin-left:-20.787192px;}
._5{margin-left:-18.674136px;}
._0{margin-left:-1.389960px;}
._1{width:1.258560px;}
._2{width:2.536992px;}
._3{width:5.504544px;}
._6{width:12.737952px;}
._b{width:16.072992px;}
._9{width:17.823960px;}
._c{width:19.866528px;}
._a{width:29.646864px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:30.240000px;}
.fs8{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:40.729050px;}
.y7b{bottom:109.910568px;}
.y25d{bottom:110.808384px;}
.y118{bottom:116.389038px;}
.y53{bottom:117.471132px;}
.yd4{bottom:118.188390px;}
.y1bd{bottom:118.551132px;}
.y189{bottom:119.089692px;}
.y15c{bottom:121.609116px;}
.y2db{bottom:121.969398px;}
.y2a0{bottom:122.870910px;}
.y29{bottom:129.709476px;}
.y7a{bottom:130.070712px;}
.y25c{bottom:130.968528px;}
.y117{bottom:136.368678px;}
.y52{bottom:137.450772px;}
.yd3{bottom:138.348534px;}
.y1bc{bottom:138.530772px;}
.y2da{bottom:139.249002px;}
.y188{bottom:139.249836px;}
.y29f{bottom:140.150514px;}
.y15b{bottom:141.769260px;}
.y97{bottom:144.289404px;}
.y22d{bottom:146.089620px;}
.y13a{bottom:147.712008px;}
.y28{bottom:149.869620px;}
.y79{bottom:150.050352px;}
.y25b{bottom:150.943200px;}
.y24b{bottom:153.105378px;}
.y20c{bottom:153.643566px;}
.y116{bottom:156.345528px;}
.ybf{bottom:156.523200px;}
.y29e{bottom:157.424142px;}
.y51{bottom:157.604292px;}
.yd2{bottom:158.323206px;}
.y1bb{bottom:158.684292px;}
.y187{bottom:159.224508px;}
.y15a{bottom:161.743932px;}
.y2d9{bottom:163.183200px;}
.y96{bottom:164.264076px;}
.y22c{bottom:166.064292px;}
.y139{bottom:167.865528px;}
.y25a{bottom:169.663350px;}
.y27{bottom:169.844292px;}
.y78{bottom:170.025024px;}
.y1e8{bottom:172.723356px;}
.y24a{bottom:173.265522px;}
.y2d8{bottom:173.623746px;}
.y20b{bottom:173.803710px;}
.y29d{bottom:174.703746px;}
.y115{bottom:176.505672px;}
.y50{bottom:177.583932px;}
.yd1{bottom:178.483350px;}
.y1ba{bottom:178.663932px;}
.y186{bottom:179.204148px;}
.y159{bottom:181.904076px;}
.y95{bottom:184.424220px;}
.y259{bottom:185.503500px;}
.y22b{bottom:186.224436px;}
.y138{bottom:187.845168px;}
.y77{bottom:190.185168px;}
.y1e7{bottom:192.886032px;}
.y249{bottom:193.245162px;}
.y20a{bottom:193.787970px;}
.y114{bottom:196.485312px;}
.yd0{bottom:197.203350px;}
.y2d7{bottom:197.743500px;}
.y29c{bottom:198.823350px;}
.y1b9{bottom:198.824076px;}
.y185{bottom:199.364292px;}
.y158{bottom:201.883716px;}
.y258{bottom:202.063500px;}
.y22a{bottom:206.204076px;}
.y137{bottom:207.824808px;}
.y2d6{bottom:208.183896px;}
.y29b{bottom:209.263026px;}
.y26{bottom:209.984076px;}
.y76{bottom:210.164808px;}
.y1e6{bottom:212.865672px;}
.ycf{bottom:213.044004px;}
.y248{bottom:213.405306px;}
.y209{bottom:213.948114px;}
.y113{bottom:216.645456px;}
.y4f{bottom:217.723716px;}
.y1b8{bottom:218.803716px;}
.y184{bottom:219.343932px;}
.y157{bottom:221.863356px;}
.y94{bottom:224.383500px;}
.y229{bottom:226.364220px;}
.y136{bottom:227.984952px;}
.yce{bottom:229.423500px;}
.y25{bottom:229.963716px;}
.y75{bottom:230.324952px;}
.y2d5{bottom:232.303500px;}
.y1e5{bottom:233.025816px;}
.y29a{bottom:233.203350px;}
.y247{bottom:233.384946px;}
.y208{bottom:233.927754px;}
.y112{bottom:236.625096px;}
.y4e{bottom:237.703356px;}
.y1b7{bottom:238.783356px;}
.y183{bottom:239.504076px;}
.y156{bottom:242.024076px;}
.y2d4{bottom:242.744118px;}
.y299{bottom:243.643896px;}
.y228{bottom:246.343860px;}
.y135{bottom:247.964592px;}
.y24{bottom:250.123860px;}
.y74{bottom:250.304592px;}
.yef{bottom:250.844226px;}
.y172{bottom:252.103860px;}
.y1e4{bottom:253.005456px;}
.y246{bottom:253.364586px;}
.y207{bottom:253.907394px;}
.y111{bottom:256.604736px;}
.y93{bottom:257.863500px;}
.y4d{bottom:257.871522px;}
.y1b6{bottom:258.944736px;}
.y182{bottom:259.483716px;}
.y2d3{bottom:259.844442px;}
.y155{bottom:262.003716px;}
.y227{bottom:266.324880px;}
.y298{bottom:267.763500px;}
.y134{bottom:268.124736px;}
.y23{bottom:270.112470px;}
.y73{bottom:270.284232px;}
.yee{bottom:270.823866px;}
.y171{bottom:272.085096px;}
.y1e3{bottom:272.985096px;}
.y245{bottom:273.524730px;}
.y206{bottom:274.067538px;}
.y110{bottom:276.764880px;}
.y2d2{bottom:277.124046px;}
.y297{bottom:278.203722px;}
.y1b5{bottom:278.924376px;}
.y181{bottom:279.463356px;}
.y154{bottom:282.163860px;}
.y226{bottom:286.485024px;}
.y133{bottom:288.104376px;}
.y22{bottom:290.272614px;}
.y72{bottom:290.444376px;}
.yed{bottom:290.984010px;}
.y1cf{bottom:291.523860px;}
.y170{bottom:292.064736px;}
.y1e2{bottom:293.145240px;}
.y244{bottom:293.504370px;}
.y205{bottom:294.047178px;}
.y296{bottom:295.483326px;}
.y10f{bottom:296.744520px;}
.y1a1{bottom:296.744880px;}
.y4c{bottom:298.011306px;}
.y1b4{bottom:299.084520px;}
.y180{bottom:299.623500px;}
.y2d1{bottom:301.243650px;}
.y153{bottom:302.146914px;}
.y225{bottom:306.464664px;}
.y132{bottom:308.084016px;}
.y21{bottom:310.252254px;}
.y71{bottom:310.424016px;}
.yec{bottom:310.964664px;}
.y1ce{bottom:311.505246px;}
.y16f{bottom:312.224880px;}
.y1e1{bottom:313.124880px;}
.y243{bottom:313.664514px;}
.y204{bottom:314.207322px;}
.y1a0{bottom:316.724520px;}
.y10e{bottom:316.904664px;}
.y6a{bottom:317.087106px;}
.y17f{bottom:318.343500px;}
.y2d0{bottom:318.523500px;}
.y1b3{bottom:319.064160px;}
.y295{bottom:319.423650px;}
.y152{bottom:322.126554px;}
.y277{bottom:322.664010px;}
.yac{bottom:325.364304px;}
.y224{bottom:326.624808px;}
.y131{bottom:328.244160px;}
.y2cf{bottom:328.963476px;}
.y20{bottom:330.231894px;}
.y294{bottom:330.583650px;}
.y70{bottom:330.584160px;}
.yeb{bottom:331.124808px;}
.y1cd{bottom:331.665390px;}
.y16e{bottom:332.204520px;}
.y1e0{bottom:333.285024px;}
.y242{bottom:333.644154px;}
.y17e{bottom:334.184304px;}
.y203{bottom:334.186962px;}
.y19f{bottom:336.704160px;}
.y10d{bottom:336.884304px;}
.y69{bottom:337.066746px;}
.y4b{bottom:337.970586px;}
.y1b2{bottom:339.043800px;}
.y151{bottom:342.286698px;}
.y276{bottom:342.645828px;}
.y223{bottom:346.604448px;}
.y130{bottom:348.223944px;}
.y6f{bottom:350.563800px;}
.yea{bottom:351.104448px;}
.y1cc{bottom:351.645030px;}
.y16d{bottom:352.364664px;}
.y2ce{bottom:352.903650px;}
.y1df{bottom:353.264664px;}
.y241{bottom:353.804298px;}
.y202{bottom:354.166602px;}
.y10c{bottom:356.908656px;}
.y19e{bottom:356.909016px;}
.y68{bottom:357.271602px;}
.y1b1{bottom:357.808650px;}
.y150{bottom:362.311050px;}
.y275{bottom:362.850684px;}
.yab{bottom:365.551098px;}
.y222{bottom:366.628800px;}
.y12f{bottom:368.428800px;}
.y2cd{bottom:370.228800px;}
.y1f{bottom:370.416390px;}
.ye9{bottom:371.128800px;}
.y293{bottom:371.310828px;}
.y1cb{bottom:371.849886px;}
.y16c{bottom:372.389016px;}
.y1de{bottom:373.289016px;}
.y240{bottom:373.828650px;}
.y1b0{bottom:373.829304px;}
.y201{bottom:374.371458px;}
.y19d{bottom:376.888656px;}
.y10b{bottom:377.070102px;}
.y67{bottom:377.251242px;}
.y4a{bottom:378.155082px;}
.y2cc{bottom:380.669592px;}
.y14f{bottom:382.471194px;}
.y274{bottom:382.830324px;}
.y6e{bottom:383.908650px;}
.y221{bottom:385.348800px;}
.yaa{bottom:385.711242px;}
.y12e{bottom:387.148800px;}
.ye8{bottom:389.848800px;}
.y1af{bottom:390.208800px;}
.y1e{bottom:390.576534px;}
.y292{bottom:391.290468px;}
.y1ca{bottom:391.829526px;}
.y16b{bottom:392.368656px;}
.y23f{bottom:392.548800px;}
.y1dd{bottom:393.449160px;}
.y200{bottom:394.351098px;}
.y19c{bottom:397.049526px;}
.y10a{bottom:397.049742px;}
.y66{bottom:397.411386px;}
.y2cb{bottom:397.949196px;}
.y49{bottom:398.315226px;}
.y220{bottom:401.369304px;}
.y14e{bottom:402.450834px;}
.y273{bottom:402.809964px;}
.y12d{bottom:402.989304px;}
.ya9{bottom:405.690882px;}
.ye7{bottom:405.869304px;}
.y23e{bottom:408.389304px;}
.y1d{bottom:410.556174px;}
.y291{bottom:411.450612px;}
.y1c9{bottom:411.809166px;}
.y16a{bottom:412.528800px;}
.y1dc{bottom:413.429526px;}
.y1ff{bottom:414.511242px;}
.y19b{bottom:417.029166px;}
.y109{bottom:417.209886px;}
.y65{bottom:417.391026px;}
.y21f{bottom:417.748800px;}
.y12c{bottom:419.368800px;}
.y2ca{bottom:422.068800px;}
.ye6{bottom:422.248800px;}
.y14d{bottom:422.430474px;}
.y272{bottom:422.970108px;}
.y23d{bottom:424.768800px;}
.ya8{bottom:425.851026px;}
.y301{bottom:428.908800px;}
.y169{bottom:431.248260px;}
.y290{bottom:431.430252px;}
.y1c8{bottom:431.969310px;}
.y2c9{bottom:432.508626px;}
.y1db{bottom:433.589670px;}
.y1fe{bottom:434.490882px;}
.y19a{bottom:437.008806px;}
.y108{bottom:437.189526px;}
.y64{bottom:437.370666px;}
.y48{bottom:438.274506px;}
.y300{bottom:439.349742px;}
.y14c{bottom:442.590618px;}
.y271{bottom:442.949748px;}
.y168{bottom:445.828800px;}
.ya7{bottom:445.830666px;}
.y1c{bottom:450.695958px;}
.y28f{bottom:451.409892px;}
.y1c7{bottom:451.948950px;}
.y1da{bottom:453.569310px;}
.y1fd{bottom:454.651026px;}
.y2c8{bottom:456.448950px;}
.y2ff{bottom:456.629346px;}
.y199{bottom:457.168950px;}
.y107{bottom:457.169166px;}
.y63{bottom:457.530810px;}
.y47{bottom:458.434650px;}
.ybe{bottom:459.689532px;}
.y167{bottom:461.669454px;}
.y14b{bottom:462.570258px;}
.y270{bottom:463.109892px;}
.y2c7{bottom:466.889742px;}
.y1c6{bottom:470.668950px;}
.y1b{bottom:470.675598px;}
.y28e{bottom:471.570036px;}
.y1d9{bottom:473.548950px;}
.y1fc{bottom:474.630666px;}
.y198{bottom:475.888950px;}
.y106{bottom:477.329310px;}
.y62{bottom:477.510450px;}
.y166{bottom:478.048950px;}
.y92{bottom:478.409898px;}
.y257{bottom:478.411392px;}
.y46{bottom:478.414290px;}
.ybd{bottom:479.849676px;}
.y2fe{bottom:480.748950px;}
.y14a{bottom:482.730402px;}
.y26f{bottom:483.089532px;}
.y2c6{bottom:484.169346px;}
.ya6{bottom:485.970450px;}
.y1c5{bottom:486.689454px;}
.y1a{bottom:490.835742px;}
.y28d{bottom:491.549676px;}
.y197{bottom:491.729454px;}
.y2fd{bottom:491.908950px;}
.y1d8{bottom:492.268950px;}
.y1fb{bottom:494.610306px;}
.y105{bottom:497.311176px;}
.y61{bottom:497.670594px;}
.y91{bottom:498.570042px;}
.y256{bottom:498.571536px;}
.ybc{bottom:499.829316px;}
.y149{bottom:502.710042px;}
.y1c4{bottom:503.068950px;}
.y26e{bottom:503.069172px;}
.ycd{bottom:505.770450px;}
.ya5{bottom:505.950090px;}
.y196{bottom:508.108950px;}
.y2c5{bottom:508.288950px;}
.y1d7{bottom:508.289454px;}
.y28c{bottom:511.709820px;}
.y1fa{bottom:514.770450px;}
.y104{bottom:517.471320px;}
.y60{bottom:517.650234px;}
.y90{bottom:518.549682px;}
.y255{bottom:518.551176px;}
.y45{bottom:518.554074px;}
.y2c4{bottom:518.729172px;}
.ybb{bottom:519.989460px;}
.y2fc{bottom:520.888950px;}
.y148{bottom:522.689682px;}
.y26d{bottom:523.229316px;}
.y1d6{bottom:524.668950px;}
.ycc{bottom:525.930594px;}
.ya4{bottom:526.110234px;}
.y19{bottom:530.975526px;}
.y28b{bottom:531.689460px;}
.y1f9{bottom:534.750090px;}
.y2c3{bottom:536.008776px;}
.y103{bottom:537.450960px;}
.y5f{bottom:537.810378px;}
.y8f{bottom:538.529322px;}
.y254{bottom:538.530816px;}
.y44{bottom:538.533714px;}
.y2fb{bottom:539.249100px;}
.yba{bottom:539.971902px;}
.y147{bottom:542.849826px;}
.y26c{bottom:543.208956px;}
.ycb{bottom:545.910234px;}
.ya3{bottom:546.089874px;}
.y2fa{bottom:549.689892px;}
.y18{bottom:550.955166px;}
.y28a{bottom:551.669100px;}
.y1f8{bottom:554.910234px;}
.y102{bottom:557.611104px;}
.y5e{bottom:557.790018px;}
.y8e{bottom:558.689466px;}
.y253{bottom:558.690960px;}
.y2c2{bottom:559.949100px;}
.yb9{bottom:559.951542px;}
.y146{bottom:562.829466px;}
.y26b{bottom:563.371326px;}
.yca{bottom:565.889874px;}
.ya2{bottom:566.069514px;}
.y2f9{bottom:566.969496px;}
.y17{bottom:570.934806px;}
.y289{bottom:571.829100px;}
.y1f7{bottom:574.889874px;}
.y101{bottom:577.590744px;}
.y5d{bottom:577.769658px;}
.y252{bottom:578.670600px;}
.y43{bottom:578.673498px;}
.yb8{bottom:580.111686px;}
.y145{bottom:582.989610px;}
.y26a{bottom:583.350966px;}
.yc9{bottom:586.050018px;}
.ya1{bottom:586.229658px;}
.y2c1{bottom:587.669838px;}
.y2f8{bottom:591.089100px;}
.y16{bottom:591.094950px;}
.y288{bottom:591.809250px;}
.y1f6{bottom:594.869514px;}
.y100{bottom:597.570384px;}
.y5c{bottom:597.929802px;}
.y251{bottom:598.830744px;}
.y8d{bottom:598.831992px;}
.y42{bottom:598.833642px;}
.yb7{bottom:600.091326px;}
.y144{bottom:602.970024px;}
.y269{bottom:603.330606px;}
.y2c0{bottom:604.949442px;}
.yc8{bottom:606.029658px;}
.ya0{bottom:606.209298px;}
.y2f7{bottom:608.369250px;}
.y15{bottom:611.074590px;}
.y287{bottom:611.969250px;}
.y1f5{bottom:615.029658px;}
.yff{bottom:617.760336px;}
.y5b{bottom:617.939250px;}
.y250{bottom:618.840192px;}
.y8c{bottom:618.841440px;}
.y41{bottom:618.843090px;}
.yb6{bottom:620.281278px;}
.y2bf{bottom:622.258926px;}
.y143{bottom:623.159976px;}
.y268{bottom:623.520558px;}
.y2f6{bottom:625.499250px;}
.yc7{bottom:626.219610px;}
.y9f{bottom:626.399250px;}
.y286{bottom:631.979250px;}
.y1f4{bottom:635.039106px;}
.y2f5{bottom:635.939646px;}
.yfe{bottom:637.739976px;}
.y23c{bottom:638.819106px;}
.y24f{bottom:638.819832px;}
.y8b{bottom:638.821080px;}
.y40{bottom:638.822730px;}
.yb5{bottom:640.260918px;}
.y142{bottom:643.139616px;}
.y267{bottom:643.500198px;}
.y2be{bottom:646.199250px;}
.yc6{bottom:646.199610px;}
.y14{bottom:651.244182px;}
.y285{bottom:652.139250px;}
.y1f3{bottom:655.201062px;}
.y2bd{bottom:656.640192px;}
.y5a{bottom:656.819250px;}
.yfd{bottom:657.900120px;}
.y12b{bottom:658.979616px;}
.y24e{bottom:658.979976px;}
.y8a{bottom:658.981224px;}
.ye5{bottom:658.981284px;}
.y23b{bottom:658.984380px;}
.y2f4{bottom:660.059250px;}
.yb4{bottom:660.240558px;}
.y141{bottom:663.119256px;}
.y266{bottom:663.660342px;}
.y9e{bottom:665.099250px;}
.yc5{bottom:666.179250px;}
.y2f3{bottom:670.499538px;}
.y13{bottom:671.223822px;}
.y284{bottom:672.119250px;}
.y2bc{bottom:673.919796px;}
.y1f2{bottom:675.180702px;}
.yfc{bottom:677.879760px;}
.y12a{bottom:678.959256px;}
.y24d{bottom:678.959616px;}
.ye4{bottom:678.960924px;}
.y3f{bottom:678.962514px;}
.y23a{bottom:678.964020px;}
.y1ae{bottom:680.759976px;}
.y140{bottom:683.279760px;}
.y265{bottom:683.639982px;}
.yc4{bottom:684.898860px;}
.y21e{bottom:688.319256px;}
.y12{bottom:691.383966px;}
.y283{bottom:692.099250px;}
.y1f1{bottom:695.160342px;}
.y17d{bottom:695.339616px;}
.y2f2{bottom:696.779400px;}
.yfb{bottom:697.860564px;}
.y2bb{bottom:698.039400px;}
.y24c{bottom:699.119760px;}
.y129{bottom:699.120702px;}
.y89{bottom:699.121008px;}
.ye3{bottom:699.121068px;}
.y3e{bottom:699.122658px;}
.y239{bottom:699.124164px;}
.yc3{bottom:699.479400px;}
.yb3{bottom:700.380342px;}
.y1ad{bottom:700.739616px;}
.y13f{bottom:703.259400px;}
.y264{bottom:703.619622px;}
.y2ba{bottom:708.479796px;}
.y21d{bottom:708.482298px;}
.y11{bottom:711.363606px;}
.y282{bottom:712.259400px;}
.y2f1{bottom:715.319400px;}
.y1f0{bottom:715.320486px;}
.y17c{bottom:715.499760px;}
.yc2{bottom:715.499904px;}
.yfa{bottom:718.020708px;}
.y128{bottom:719.100342px;}
.y88{bottom:719.100648px;}
.ye2{bottom:719.100708px;}
.y238{bottom:719.103804px;}
.yb2{bottom:720.540486px;}
.y1ac{bottom:720.899760px;}
.y13e{bottom:721.978860px;}
.y263{bottom:723.779766px;}
.y2f0{bottom:725.759622px;}
.y21c{bottom:728.461938px;}
.y10{bottom:731.523750px;}
.yc1{bottom:731.879400px;}
.y281{bottom:732.239400px;}
.y2b9{bottom:732.599400px;}
.y1ef{bottom:735.300126px;}
.y17b{bottom:735.480492px;}
.y13d{bottom:736.559400px;}
.yf9{bottom:738.000348px;}
.y127{bottom:739.079982px;}
.y87{bottom:739.080288px;}
.ye1{bottom:739.080348px;}
.y3d{bottom:739.081938px;}
.y195{bottom:739.082670px;}
.y237{bottom:739.083444px;}
.yb1{bottom:740.520126px;}
.y1ab{bottom:740.880852px;}
.y2ef{bottom:742.859946px;}
.y262{bottom:743.759406px;}
.y21b{bottom:748.622082px;}
.y2b8{bottom:749.699550px;}
.yf{bottom:751.503390px;}
.y280{bottom:752.399400px;}
.y13c{bottom:752.579904px;}
.y1ee{bottom:755.460270px;}
.y17a{bottom:755.640636px;}
.y165{bottom:757.799910px;}
.yf8{bottom:758.160492px;}
.y126{bottom:759.240126px;}
.y86{bottom:759.240432px;}
.ye0{bottom:759.240492px;}
.y3c{bottom:759.242082px;}
.y194{bottom:759.242814px;}
.y236{bottom:759.243588px;}
.y2b7{bottom:760.139946px;}
.yb0{bottom:760.680270px;}
.y1aa{bottom:760.860492px;}
.y261{bottom:763.919550px;}
.y2ee{bottom:766.979550px;}
.y21a{bottom:768.601722px;}
.y13b{bottom:768.959400px;}
.y27f{bottom:772.379550px;}
.y1ed{bottom:775.439910px;}
.y179{bottom:775.620276px;}
.y2ed{bottom:777.419946px;}
.y164{bottom:777.780126px;}
.yf7{bottom:778.140132px;}
.y125{bottom:779.219766px;}
.ydf{bottom:779.220132px;}
.y3b{bottom:779.221722px;}
.y193{bottom:779.222454px;}
.y235{bottom:779.223228px;}
.yaf{bottom:780.659910px;}
.y1a9{bottom:781.020636px;}
.y260{bottom:782.639550px;}
.y2b6{bottom:784.259550px;}
.y1d5{bottom:786.960126px;}
.y219{bottom:788.581362px;}
.ye{bottom:791.643174px;}
.y27e{bottom:792.359550px;}
.y2b5{bottom:794.699946px;}
.y1ec{bottom:795.419550px;}
.y178{bottom:795.599916px;}
.y163{bottom:797.940270px;}
.yf6{bottom:798.119772px;}
.y25f{bottom:798.480054px;}
.y124{bottom:799.379910px;}
.y85{bottom:799.380216px;}
.yde{bottom:799.380276px;}
.y1c3{bottom:799.381872px;}
.y192{bottom:799.382598px;}
.y234{bottom:799.383372px;}
.yae{bottom:800.639550px;}
.y1a8{bottom:801.000276px;}
.y2ec{bottom:801.539550px;}
.y1d4{bottom:806.939766px;}
.y218{bottom:808.741506px;}
.y6d{bottom:809.279406px;}
.yd{bottom:811.622814px;}
.y2eb{bottom:811.979946px;}
.y27d{bottom:812.519916px;}
.y1eb{bottom:814.140216px;}
.y25e{bottom:814.859550px;}
.y177{bottom:815.760060px;}
.y162{bottom:817.919910px;}
.yf5{bottom:818.279916px;}
.y2b4{bottom:818.819700px;}
.y84{bottom:819.359856px;}
.ydd{bottom:819.359916px;}
.y3a{bottom:819.361506px;}
.y1c2{bottom:819.361512px;}
.y123{bottom:819.361728px;}
.y191{bottom:819.362238px;}
.y233{bottom:819.363012px;}
.y1a7{bottom:821.160420px;}
.y1d3{bottom:826.919406px;}
.y1ea{bottom:828.719550px;}
.y217{bottom:828.721146px;}
.y6c{bottom:829.439550px;}
.yc{bottom:831.782958px;}
.y27c{bottom:832.499556px;}
.y176{bottom:835.739700px;}
.y2b3{bottom:836.099700px;}
.y161{bottom:837.899550px;}
.yf4{bottom:838.259556px;}
.yad{bottom:839.519550px;}
.y83{bottom:839.520000px;}
.ydc{bottom:839.520060px;}
.y39{bottom:839.521650px;}
.y1c1{bottom:839.521656px;}
.y122{bottom:839.521872px;}
.y190{bottom:839.522382px;}
.y232{bottom:839.523156px;}
.y1a6{bottom:841.140060px;}
.y1e9{bottom:844.740204px;}
.y2b2{bottom:846.360096px;}
.y1d2{bottom:847.079550px;}
.y216{bottom:848.881290px;}
.yb{bottom:851.762598px;}
.y27b{bottom:852.659700px;}
.y2ea{bottom:853.199550px;}
.y175{bottom:854.459700px;}
.y160{bottom:856.618998px;}
.yf3{bottom:858.419700px;}
.ydb{bottom:859.500570px;}
.y38{bottom:859.501290px;}
.y1c0{bottom:859.501296px;}
.y121{bottom:859.501512px;}
.y18f{bottom:859.502022px;}
.y231{bottom:859.502796px;}
.y1a5{bottom:861.119700px;}
.y6b{bottom:862.739700px;}
.y2e9{bottom:863.640276px;}
.y1d1{bottom:865.799700px;}
.y215{bottom:868.860930px;}
.y2b1{bottom:870.479700px;}
.y174{bottom:870.480492px;}
.y15f{bottom:871.199538px;}
.y27a{bottom:871.379700px;}
.ya{bottom:871.742238px;}
.yf2{bottom:877.184700px;}
.yda{bottom:879.524922px;}
.y37{bottom:879.525642px;}
.y82{bottom:879.525648px;}
.y120{bottom:879.525864px;}
.y18e{bottom:879.526374px;}
.y230{bottom:879.527148px;}
.y1a4{bottom:880.064700px;}
.y2b0{bottom:880.965642px;}
.y1d0{bottom:881.684700px;}
.y15e{bottom:885.824700px;}
.y173{bottom:886.904700px;}
.y279{bottom:887.265204px;}
.y2e8{bottom:887.804700px;}
.y214{bottom:888.885282px;}
.y9{bottom:891.947094px;}
.yf1{bottom:893.025204px;}
.y1a3{bottom:895.905204px;}
.y15d{bottom:898.244700px;}
.y2af{bottom:898.245246px;}
.yd9{bottom:899.685066px;}
.y36{bottom:899.685786px;}
.y1bf{bottom:899.685792px;}
.y11f{bottom:899.686008px;}
.y18d{bottom:899.686518px;}
.y22f{bottom:899.687292px;}
.y278{bottom:903.644700px;}
.y2e7{bottom:905.084700px;}
.y213{bottom:909.045426px;}
.yf0{bottom:909.404700px;}
.y8{bottom:911.926734px;}
.y1a2{bottom:912.284700px;}
.yd8{bottom:919.664706px;}
.y35{bottom:919.665426px;}
.y81{bottom:919.665432px;}
.y11e{bottom:919.665648px;}
.y18c{bottom:919.666158px;}
.y22e{bottom:919.666932px;}
.y2ae{bottom:922.364850px;}
.y212{bottom:929.025066px;}
.y7{bottom:932.086878px;}
.y2ad{bottom:932.805318px;}
.y2e6{bottom:939.644850px;}
.y80{bottom:939.825576px;}
.y11d{bottom:939.825792px;}
.y18b{bottom:939.826302px;}
.yd7{bottom:939.827076px;}
.y211{bottom:949.185210px;}
.y2e5{bottom:949.905246px;}
.y2ac{bottom:949.905642px;}
.y6{bottom:952.066518px;}
.y34{bottom:959.805210px;}
.y7f{bottom:959.805216px;}
.y11c{bottom:959.805432px;}
.y59{bottom:959.805942px;}
.yd6{bottom:959.806716px;}
.y2ab{bottom:967.185246px;}
.y210{bottom:969.164850px;}
.y5{bottom:972.046158px;}
.y2e4{bottom:974.025000px;}
.y1be{bottom:979.784856px;}
.y11b{bottom:979.785072px;}
.y58{bottom:979.785582px;}
.y33{bottom:979.785798px;}
.y9d{bottom:979.786308px;}
.yd5{bottom:979.786356px;}
.y2e3{bottom:984.465792px;}
.y20f{bottom:987.885000px;}
.y2aa{bottom:991.304850px;}
.y11a{bottom:999.945216px;}
.yc0{bottom:999.945360px;}
.y18a{bottom:999.945726px;}
.y32{bottom:999.945942px;}
.y9c{bottom:999.946452px;}
.y7e{bottom:999.946500px;}
.y2e2{bottom:1001.745396px;}
.y20e{bottom:1003.725000px;}
.y2a9{bottom:1008.585000px;}
.y4{bottom:1012.185942px;}
.y2a8{bottom:1019.025468px;}
.y119{bottom:1019.924856px;}
.y57{bottom:1019.925366px;}
.y31{bottom:1019.925582px;}
.y9b{bottom:1019.926092px;}
.y7d{bottom:1019.926140px;}
.y20d{bottom:1020.285000px;}
.y2e1{bottom:1025.865000px;}
.y2a7{bottom:1036.125792px;}
.y56{bottom:1040.085510px;}
.y30{bottom:1040.085726px;}
.y9a{bottom:1040.086236px;}
.y7c{bottom:1040.086284px;}
.y2e0{bottom:1042.965150px;}
.y2a6{bottom:1053.405396px;}
.y2f{bottom:1060.065366px;}
.y99{bottom:1060.065876px;}
.y55{bottom:1060.065924px;}
.y2df{bottom:1060.245000px;}
.y2de{bottom:1070.685546px;}
.y2a5{bottom:1077.525150px;}
.y98{bottom:1080.045516px;}
.y54{bottom:1080.045564px;}
.y2a4{bottom:1087.965942px;}
.y3{bottom:1092.465510px;}
.y2dd{bottom:1094.805150px;}
.y2e{bottom:1100.205708px;}
.y2a3{bottom:1105.245546px;}
.y2dc{bottom:1112.085150px;}
.y2{bottom:1112.445150px;}
.y2d{bottom:1120.185348px;}
.y2a2{bottom:1129.365300px;}
.y1{bottom:1135.695300px;}
.y2c{bottom:1140.375300px;}
.y2a1{bottom:1140.555300px;}
.y2b{bottom:1211.481300px;}
.h30{height:34.114922px;}
.h33{height:34.209844px;}
.h34{height:42.327773px;}
.h6{height:43.031250px;}
.hc{height:48.263555px;}
.h25{height:51.134766px;}
.h32{height:52.435898px;}
.h31{height:52.581797px;}
.h5{height:53.789062px;}
.h3{height:54.208125px;}
.h2f{height:63.175781px;}
.h4{height:64.378807px;}
.h9{height:64.382599px;}
.h2d{height:64.394167px;}
.h2a{height:64.396208px;}
.h2e{height:64.397071px;}
.hd{height:64.400863px;}
.h21{height:64.401031px;}
.h14{height:64.402879px;}
.h2b{height:64.403095px;}
.h10{height:64.403719px;}
.h28{height:64.403960px;}
.h12{height:64.405496px;}
.h18{height:64.405784px;}
.h1c{height:64.405975px;}
.h29{height:64.407439px;}
.h23{height:64.408303px;}
.hf{height:64.408688px;}
.h2c{height:64.409168px;}
.h1b{height:64.409479px;}
.h27{height:64.409743px;}
.h1a{height:64.410032px;}
.h16{height:64.410128px;}
.h1d{height:64.410151px;}
.hb{height:64.410319px;}
.h8{height:64.410896px;}
.h20{height:64.410991px;}
.h19{height:64.411208px;}
.ha{height:64.411591px;}
.h26{height:64.411783px;}
.h13{height:64.412071px;}
.h15{height:64.412359px;}
.h22{height:64.412383px;}
.h7{height:64.412455px;}
.h1f{height:64.412647px;}
.h17{height:64.413247px;}
.h1e{height:64.413512px;}
.h11{height:64.414495px;}
.he{height:64.594688px;}
.h2{height:66.272344px;}
.h24{height:72.016023px;}
.h1{height:84.281133px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x7{left:74.416500px;}
.x18{left:127.511526px;}
.x4{left:170.085864px;}
.x1b{left:173.590800px;}
.xf{left:204.099450px;}
.xd{left:216.070950px;}
.x2a{left:220.930950px;}
.xe{left:222.099450px;}
.x1{left:224.619450px;}
.x11{left:228.715950px;}
.xa{left:233.979450px;}
.xb{left:237.535950px;}
.x30{left:240.955950px;}
.x13{left:251.935950px;}
.x17{left:260.035950px;}
.x2e{left:268.855950px;}
.x33{left:296.756100px;}
.x2{left:315.699600px;}
.x21{left:321.416100px;}
.x28{left:328.436100px;}
.x26{left:335.996100px;}
.x1d{left:339.685314px;}
.x24{left:344.904750px;}
.x9{left:355.371750px;}
.x2c{left:379.644750px;}
.x8{left:384.908250px;}
.xc{left:391.884750px;}
.x29{left:397.284750px;}
.x31{left:402.504750px;}
.x19{left:417.084750px;}
.x1f{left:423.924750px;}
.x15{left:436.164900px;}
.x6{left:451.040400px;}
.x5{left:480.576900px;}
.x1c{left:488.904900px;}
.x3{left:553.375344px;}
.x1a{left:577.946550px;}
.x25{left:580.826700px;}
.x16{left:583.706700px;}
.x27{left:585.326700px;}
.x32{left:586.586700px;}
.x20{left:588.026700px;}
.x2d{left:589.466700px;}
.x10{left:592.166700px;}
.x12{left:593.786700px;}
.x2b{left:679.375350px;}
.x14{left:683.695350px;}
.x23{left:685.135350px;}
.x1e{left:686.575350px;}
.x2f{left:687.835350px;}
.x22{left:694.451850px;}
@media print{
.v5{vertical-align:-29.440533pt;}
.v2{vertical-align:-26.880000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:26.848107pt;}
.ls29{letter-spacing:-0.818432pt;}
.ls8{letter-spacing:-0.812544pt;}
.ls3d{letter-spacing:-0.806656pt;}
.ls1a{letter-spacing:-0.794880pt;}
.ls1d{letter-spacing:-0.788992pt;}
.ls62{letter-spacing:-0.783104pt;}
.ls49{letter-spacing:-0.777216pt;}
.ls3e{letter-spacing:-0.759552pt;}
.ls66{letter-spacing:-0.351616pt;}
.ls55{letter-spacing:-0.335616pt;}
.ls57{letter-spacing:-0.330176pt;}
.ls5e{letter-spacing:-0.325888pt;}
.ls42{letter-spacing:-0.317952pt;}
.ls5f{letter-spacing:-0.317312pt;}
.ls23{letter-spacing:-0.312064pt;}
.ls61{letter-spacing:-0.308736pt;}
.ls31{letter-spacing:-0.306176pt;}
.ls4a{letter-spacing:-0.300288pt;}
.ls33{letter-spacing:-0.294400pt;}
.ls3c{letter-spacing:-0.288512pt;}
.ls18{letter-spacing:-0.282624pt;}
.ls27{letter-spacing:-0.276736pt;}
.ls1f{letter-spacing:-0.270848pt;}
.ls28{letter-spacing:-0.264960pt;}
.ls35{letter-spacing:-0.259072pt;}
.ls16{letter-spacing:-0.253184pt;}
.ls34{letter-spacing:-0.247296pt;}
.ls24{letter-spacing:-0.241408pt;}
.ls7{letter-spacing:-0.235520pt;}
.ls39{letter-spacing:-0.229632pt;}
.ls37{letter-spacing:-0.223744pt;}
.ls2a{letter-spacing:-0.217856pt;}
.ls5{letter-spacing:-0.211968pt;}
.ls48{letter-spacing:-0.206080pt;}
.ls65{letter-spacing:-0.170752pt;}
.ls58{letter-spacing:-0.153088pt;}
.ls56{letter-spacing:-0.148480pt;}
.ls68{letter-spacing:-0.147200pt;}
.lsa0{letter-spacing:-0.143424pt;}
.ls4c{letter-spacing:-0.141312pt;}
.ls3f{letter-spacing:-0.135424pt;}
.ls22{letter-spacing:-0.129536pt;}
.ls3a{letter-spacing:-0.123648pt;}
.ls15{letter-spacing:-0.117760pt;}
.ls40{letter-spacing:-0.111872pt;}
.ls41{letter-spacing:-0.107200pt;}
.ls9{letter-spacing:-0.105984pt;}
.ls20{letter-spacing:-0.100096pt;}
.ls12{letter-spacing:-0.094208pt;}
.ls14{letter-spacing:-0.088320pt;}
.ls4{letter-spacing:-0.082432pt;}
.ls21{letter-spacing:-0.076544pt;}
.ls7e{letter-spacing:-0.074368pt;}
.lsc{letter-spacing:-0.070656pt;}
.ls3{letter-spacing:-0.067392pt;}
.ls11{letter-spacing:-0.064768pt;}
.ls6{letter-spacing:-0.058880pt;}
.lse{letter-spacing:-0.052992pt;}
.lsb{letter-spacing:-0.047104pt;}
.lsd{letter-spacing:-0.041216pt;}
.lsa{letter-spacing:-0.035328pt;}
.lsf{letter-spacing:-0.029440pt;}
.ls9b{letter-spacing:-0.026560pt;}
.lsa8{letter-spacing:-0.025600pt;}
.ls10{letter-spacing:-0.023552pt;}
.ls63{letter-spacing:-0.021440pt;}
.ls9c{letter-spacing:-0.021248pt;}
.ls13{letter-spacing:-0.017664pt;}
.ls9e{letter-spacing:-0.015936pt;}
.ls47{letter-spacing:-0.012864pt;}
.ls1e{letter-spacing:-0.011776pt;}
.ls1b{letter-spacing:-0.010667pt;}
.lsa7{letter-spacing:-0.006400pt;}
.ls43{letter-spacing:-0.005888pt;}
.ls9d{letter-spacing:-0.005312pt;}
.ls17{letter-spacing:0.000000pt;}
.ls99{letter-spacing:0.005312pt;}
.ls4e{letter-spacing:0.005888pt;}
.ls81{letter-spacing:0.006400pt;}
.ls9a{letter-spacing:0.010624pt;}
.ls30{letter-spacing:0.011776pt;}
.ls97{letter-spacing:0.015936pt;}
.ls69{letter-spacing:0.017152pt;}
.ls5d{letter-spacing:0.017664pt;}
.ls82{letter-spacing:0.021248pt;}
.ls2f{letter-spacing:0.021440pt;}
.ls26{letter-spacing:0.023552pt;}
.ls84{letter-spacing:0.026560pt;}
.ls1{letter-spacing:0.029440pt;}
.ls80{letter-spacing:0.031872pt;}
.ls25{letter-spacing:0.034304pt;}
.ls2c{letter-spacing:0.035328pt;}
.ls73{letter-spacing:0.037184pt;}
.ls4b{letter-spacing:0.038592pt;}
.ls79{letter-spacing:0.042496pt;}
.ls2b{letter-spacing:0.042880pt;}
.ls74{letter-spacing:0.047808pt;}
.ls6a{letter-spacing:0.051456pt;}
.ls6d{letter-spacing:0.053120pt;}
.ls8a{letter-spacing:0.058432pt;}
.ls3b{letter-spacing:0.060032pt;}
.ls71{letter-spacing:0.063744pt;}
.ls38{letter-spacing:0.068608pt;}
.ls7b{letter-spacing:0.069056pt;}
.ls1c{letter-spacing:0.071680pt;}
.ls2{letter-spacing:0.072213pt;}
.ls6e{letter-spacing:0.074368pt;}
.ls5c{letter-spacing:0.077184pt;}
.ls94{letter-spacing:0.079680pt;}
.ls50{letter-spacing:0.081472pt;}
.ls36{letter-spacing:0.081664pt;}
.ls0{letter-spacing:0.082432pt;}
.ls7d{letter-spacing:0.084992pt;}
.ls2e{letter-spacing:0.085760pt;}
.ls4f{letter-spacing:0.088320pt;}
.ls86{letter-spacing:0.090304pt;}
.ls5a{letter-spacing:0.091392pt;}
.ls64{letter-spacing:0.094208pt;}
.ls67{letter-spacing:0.094336pt;}
.ls6f{letter-spacing:0.095616pt;}
.ls59{letter-spacing:0.098624pt;}
.ls85{letter-spacing:0.100928pt;}
.ls6c{letter-spacing:0.106240pt;}
.ls5b{letter-spacing:0.111488pt;}
.ls77{letter-spacing:0.111552pt;}
.ls7a{letter-spacing:0.116864pt;}
.ls54{letter-spacing:0.120064pt;}
.ls90{letter-spacing:0.122176pt;}
.ls6b{letter-spacing:0.123648pt;}
.ls83{letter-spacing:0.127488pt;}
.ls45{letter-spacing:0.128640pt;}
.ls32{letter-spacing:0.129536pt;}
.ls87{letter-spacing:0.132800pt;}
.ls91{letter-spacing:0.138112pt;}
.ls76{letter-spacing:0.143424pt;}
.ls78{letter-spacing:0.148736pt;}
.ls8b{letter-spacing:0.154048pt;}
.ls92{letter-spacing:0.159360pt;}
.ls95{letter-spacing:0.164672pt;}
.ls8f{letter-spacing:0.169984pt;}
.lsa1{letter-spacing:0.175296pt;}
.ls8e{letter-spacing:0.180608pt;}
.ls96{letter-spacing:0.185920pt;}
.ls44{letter-spacing:0.188416pt;}
.ls72{letter-spacing:0.191232pt;}
.ls9f{letter-spacing:0.196544pt;}
.lsa3{letter-spacing:0.201856pt;}
.ls93{letter-spacing:0.207168pt;}
.lsa4{letter-spacing:0.212480pt;}
.ls70{letter-spacing:0.217792pt;}
.ls88{letter-spacing:0.228416pt;}
.lsa2{letter-spacing:0.239040pt;}
.ls7f{letter-spacing:0.244352pt;}
.lsa6{letter-spacing:0.260288pt;}
.ls98{letter-spacing:0.265600pt;}
.ls75{letter-spacing:0.276224pt;}
.ls8c{letter-spacing:0.286848pt;}
.lsa9{letter-spacing:0.302784pt;}
.ls8d{letter-spacing:0.318720pt;}
.lsa5{letter-spacing:0.321600pt;}
.ls19{letter-spacing:0.353280pt;}
.ls4d{letter-spacing:0.418048pt;}
.ls53{letter-spacing:4.180480pt;}
.ls52{letter-spacing:4.186368pt;}
.ls2d{letter-spacing:9.356032pt;}
.ls51{letter-spacing:10.580736pt;}
.ls46{letter-spacing:15.756288pt;}
.ls89{letter-spacing:25.600000pt;}
.ls60{letter-spacing:36.823552pt;}
.ls7c{letter-spacing:168.090624pt;}
.ws1cb{word-spacing:-20.731648pt;}
.ws68{word-spacing:-20.725760pt;}
.wse4{word-spacing:-20.702208pt;}
.wsa9{word-spacing:-20.484352pt;}
.ws1db{word-spacing:-20.413696pt;}
.wscb{word-spacing:-20.136960pt;}
.ws27b{word-spacing:-13.598720pt;}
.wsaa{word-spacing:-13.147904pt;}
.ws183{word-spacing:-12.546560pt;}
.ws2de{word-spacing:-11.041600pt;}
.ws193{word-spacing:-9.284352pt;}
.ws252{word-spacing:-8.640000pt;}
.ws5e{word-spacing:-0.800768pt;}
.ws2ef{word-spacing:-0.717120pt;}
.ws2c7{word-spacing:-0.674624pt;}
.ws178{word-spacing:-0.673216pt;}
.ws14e{word-spacing:-0.630336pt;}
.wsc7{word-spacing:-0.613184pt;}
.ws246{word-spacing:-0.608896pt;}
.ws2df{word-spacing:-0.589632pt;}
.ws2d1{word-spacing:-0.552448pt;}
.ws194{word-spacing:-0.471040pt;}
.ws1b2{word-spacing:-0.429824pt;}
.ws3{word-spacing:-0.423936pt;}
.wsb6{word-spacing:-0.412160pt;}
.ws12e{word-spacing:-0.359168pt;}
.ws90{word-spacing:-0.306176pt;}
.ws63{word-spacing:-0.282624pt;}
.ws105{word-spacing:-0.276736pt;}
.ws1c8{word-spacing:-0.253184pt;}
.ws250{word-spacing:-0.235520pt;}
.wsc8{word-spacing:-0.229632pt;}
.ws15f{word-spacing:-0.217856pt;}
.ws5f{word-spacing:-0.211968pt;}
.wsf8{word-spacing:-0.206080pt;}
.ws302{word-spacing:-0.196544pt;}
.ws201{word-spacing:-0.194304pt;}
.ws12{word-spacing:-0.188416pt;}
.ws182{word-spacing:-0.182528pt;}
.ws3d{word-spacing:-0.176640pt;}
.wse2{word-spacing:-0.170752pt;}
.ws14d{word-spacing:-0.164864pt;}
.ws271{word-spacing:-0.164672pt;}
.ws1ab{word-spacing:-0.158976pt;}
.ws2f3{word-spacing:-0.154048pt;}
.wsb9{word-spacing:-0.153088pt;}
.ws1{word-spacing:-0.141312pt;}
.ws28c{word-spacing:-0.138112pt;}
.ws59{word-spacing:-0.135424pt;}
.ws2{word-spacing:-0.129536pt;}
.ws28f{word-spacing:-0.122176pt;}
.ws117{word-spacing:-0.120064pt;}
.ws155{word-spacing:-0.117760pt;}
.ws26e{word-spacing:-0.116864pt;}
.ws60{word-spacing:-0.111872pt;}
.ws269{word-spacing:-0.111552pt;}
.ws301{word-spacing:-0.106240pt;}
.wsfa{word-spacing:-0.105984pt;}
.ws1b1{word-spacing:-0.102912pt;}
.ws2b8{word-spacing:-0.100928pt;}
.ws5c{word-spacing:-0.100096pt;}
.ws2f4{word-spacing:-0.095616pt;}
.wsd6{word-spacing:-0.094208pt;}
.ws1a2{word-spacing:-0.090048pt;}
.ws57{word-spacing:-0.088320pt;}
.ws184{word-spacing:-0.085760pt;}
.ws26c{word-spacing:-0.084992pt;}
.ws30{word-spacing:-0.082432pt;}
.ws91{word-spacing:-0.077184pt;}
.ws3c{word-spacing:-0.076544pt;}
.ws1a9{word-spacing:-0.068608pt;}
.ws106{word-spacing:-0.064768pt;}
.ws2c0{word-spacing:-0.063744pt;}
.wsd3{word-spacing:-0.060032pt;}
.ws2d9{word-spacing:-0.053120pt;}
.ws1ef{word-spacing:-0.052992pt;}
.wse5{word-spacing:-0.051456pt;}
.ws29a{word-spacing:-0.047808pt;}
.ws16c{word-spacing:-0.047104pt;}
.ws253{word-spacing:-0.042880pt;}
.ws2c2{word-spacing:-0.042496pt;}
.ws200{word-spacing:-0.038592pt;}
.ws2a5{word-spacing:-0.037184pt;}
.ws50{word-spacing:-0.035328pt;}
.wsf5{word-spacing:-0.034304pt;}
.ws2b5{word-spacing:-0.031872pt;}
.ws1ce{word-spacing:-0.030016pt;}
.ws27{word-spacing:-0.029440pt;}
.ws28e{word-spacing:-0.026560pt;}
.ws75{word-spacing:-0.025728pt;}
.ws167{word-spacing:-0.023552pt;}
.ws2e5{word-spacing:-0.021248pt;}
.ws29f{word-spacing:-0.015936pt;}
.ws1cf{word-spacing:-0.011776pt;}
.ws299{word-spacing:-0.010624pt;}
.ws8d{word-spacing:-0.008576pt;}
.ws27e{word-spacing:-0.006400pt;}
.ws8f{word-spacing:-0.005888pt;}
.ws2e3{word-spacing:-0.005312pt;}
.ws4{word-spacing:0.000000pt;}
.ws285{word-spacing:0.005312pt;}
.ws263{word-spacing:0.010624pt;}
.ws73{word-spacing:0.011776pt;}
.ws37{word-spacing:0.012800pt;}
.ws2b6{word-spacing:0.015936pt;}
.ws1a7{word-spacing:0.017664pt;}
.ws297{word-spacing:0.021248pt;}
.ws11e{word-spacing:0.021440pt;}
.wsd2{word-spacing:0.023552pt;}
.ws2fc{word-spacing:0.025600pt;}
.ws1a6{word-spacing:0.029440pt;}
.ws1f7{word-spacing:0.030016pt;}
.ws265{word-spacing:0.031872pt;}
.ws218{word-spacing:0.035328pt;}
.ws26a{word-spacing:0.037184pt;}
.ws8e{word-spacing:0.041216pt;}
.ws268{word-spacing:0.042496pt;}
.ws2e4{word-spacing:0.047808pt;}
.ws26f{word-spacing:0.053120pt;}
.ws298{word-spacing:0.063744pt;}
.ws22e{word-spacing:0.064768pt;}
.ws2b7{word-spacing:0.069056pt;}
.ws10b{word-spacing:0.070656pt;}
.ws2e0{word-spacing:0.074368pt;}
.ws61{word-spacing:0.076544pt;}
.ws267{word-spacing:0.079680pt;}
.ws0{word-spacing:0.082368pt;}
.ws1f9{word-spacing:0.082432pt;}
.ws264{word-spacing:0.084992pt;}
.ws296{word-spacing:0.090304pt;}
.ws279{word-spacing:0.095616pt;}
.ws270{word-spacing:0.100928pt;}
.ws13d{word-spacing:0.105984pt;}
.ws266{word-spacing:0.106240pt;}
.ws26b{word-spacing:0.111552pt;}
.ws247{word-spacing:0.111872pt;}
.ws104{word-spacing:0.115776pt;}
.ws44{word-spacing:0.117760pt;}
.ws2e9{word-spacing:0.122176pt;}
.wsc9{word-spacing:0.129536pt;}
.ws2c1{word-spacing:0.138112pt;}
.ws137{word-spacing:0.141312pt;}
.ws1d0{word-spacing:0.147200pt;}
.wsb5{word-spacing:0.153088pt;}
.wsbd{word-spacing:0.158976pt;}
.wsb7{word-spacing:0.170752pt;}
.ws28d{word-spacing:0.185920pt;}
.wse3{word-spacing:0.188416pt;}
.ws24{word-spacing:0.194304pt;}
.ws2c6{word-spacing:0.207168pt;}
.wscd{word-spacing:0.223744pt;}
.ws26d{word-spacing:0.233728pt;}
.ws11d{word-spacing:0.294400pt;}
.ws1bd{word-spacing:0.312064pt;}
.ws1dc{word-spacing:0.317312pt;}
.ws1cc{word-spacing:0.325888pt;}
.ws1c5{word-spacing:0.334464pt;}
.ws18d{word-spacing:0.338752pt;}
.ws226{word-spacing:0.368768pt;}
.ws1ad{word-spacing:0.382720pt;}
.wse1{word-spacing:0.388608pt;}
.ws1c4{word-spacing:0.394496pt;}
.ws9d{word-spacing:0.406272pt;}
.ws156{word-spacing:0.412160pt;}
.ws9e{word-spacing:0.418048pt;}
.ws15{word-spacing:0.423936pt;}
.ws1ac{word-spacing:0.435712pt;}
.ws12a{word-spacing:0.441600pt;}
.ws16{word-spacing:0.447488pt;}
.ws32{word-spacing:0.453376pt;}
.wsd0{word-spacing:0.459264pt;}
.ws23{word-spacing:0.465152pt;}
.wsdc{word-spacing:0.471040pt;}
.wseb{word-spacing:0.482816pt;}
.wsc2{word-spacing:0.488704pt;}
.wsf0{word-spacing:0.500480pt;}
.wsd7{word-spacing:0.512256pt;}
.ws33{word-spacing:0.518144pt;}
.ws239{word-spacing:0.547584pt;}
.ws136{word-spacing:0.553472pt;}
.ws177{word-spacing:0.577024pt;}
.ws2af{word-spacing:0.594944pt;}
.ws19b{word-spacing:0.606464pt;}
.ws237{word-spacing:0.624128pt;}
.wsbe{word-spacing:0.641792pt;}
.ws24c{word-spacing:0.653568pt;}
.ws31{word-spacing:0.659456pt;}
.ws236{word-spacing:0.683008pt;}
.ws74{word-spacing:0.688896pt;}
.ws2ce{word-spacing:0.695872pt;}
.ws16e{word-spacing:0.700672pt;}
.ws2eb{word-spacing:0.706496pt;}
.ws1d1{word-spacing:0.718336pt;}
.ws2d0{word-spacing:0.727744pt;}
.ws228{word-spacing:0.730112pt;}
.ws2cf{word-spacing:0.754304pt;}
.ws2ec{word-spacing:0.786176pt;}
.ws25c{word-spacing:0.812544pt;}
.wsc6{word-spacing:0.824320pt;}
.wsa8{word-spacing:1.024512pt;}
.ws17d{word-spacing:1.030400pt;}
.ws88{word-spacing:1.048064pt;}
.ws18a{word-spacing:1.053952pt;}
.wsa7{word-spacing:1.059840pt;}
.ws58{word-spacing:1.065728pt;}
.ws93{word-spacing:1.071616pt;}
.ws92{word-spacing:1.083392pt;}
.wscc{word-spacing:1.101056pt;}
.ws1ed{word-spacing:1.112832pt;}
.ws89{word-spacing:1.118720pt;}
.ws1a{word-spacing:1.124608pt;}
.ws25b{word-spacing:1.130496pt;}
.ws17c{word-spacing:1.142272pt;}
.ws36{word-spacing:1.159936pt;}
.ws19{word-spacing:1.177600pt;}
.wsd5{word-spacing:1.189376pt;}
.ws1e6{word-spacing:1.218816pt;}
.ws6c{word-spacing:1.224704pt;}
.ws166{word-spacing:1.260032pt;}
.ws1e3{word-spacing:1.289472pt;}
.ws289{word-spacing:1.306752pt;}
.ws28b{word-spacing:1.317376pt;}
.ws28a{word-spacing:1.338624pt;}
.ws9f{word-spacing:1.648640pt;}
.ws179{word-spacing:1.654528pt;}
.wsf7{word-spacing:1.660416pt;}
.ws204{word-spacing:1.672192pt;}
.wsde{word-spacing:1.678080pt;}
.ws83{word-spacing:1.683968pt;}
.ws157{word-spacing:1.689856pt;}
.ws4c{word-spacing:1.695744pt;}
.wsa0{word-spacing:1.713408pt;}
.ws4b{word-spacing:1.725184pt;}
.ws199{word-spacing:1.731072pt;}
.ws84{word-spacing:1.742848pt;}
.ws25d{word-spacing:1.760512pt;}
.ws202{word-spacing:1.801728pt;}
.wsed{word-spacing:1.807616pt;}
.ws205{word-spacing:1.837056pt;}
.wsf6{word-spacing:1.842944pt;}
.wsb8{word-spacing:1.866496pt;}
.ws2b2{word-spacing:1.880448pt;}
.ws2e1{word-spacing:1.896384pt;}
.ws2b1{word-spacing:1.907008pt;}
.ws282{word-spacing:1.912320pt;}
.ws2f8{word-spacing:1.922944pt;}
.wsba{word-spacing:1.937152pt;}
.ws2ab{word-spacing:1.944192pt;}
.ws2e2{word-spacing:1.970752pt;}
.ws2f9{word-spacing:1.976064pt;}
.ws283{word-spacing:1.992000pt;}
.ws41{word-spacing:2.260992pt;}
.ws225{word-spacing:2.278656pt;}
.ws241{word-spacing:2.290432pt;}
.ws132{word-spacing:2.308096pt;}
.ws207{word-spacing:2.313984pt;}
.ws208{word-spacing:2.319872pt;}
.ws151{word-spacing:2.331648pt;}
.ws192{word-spacing:2.343424pt;}
.ws1f6{word-spacing:2.349312pt;}
.ws133{word-spacing:2.355200pt;}
.ws6f{word-spacing:2.361088pt;}
.ws206{word-spacing:2.366976pt;}
.ws6d{word-spacing:2.372864pt;}
.wsf1{word-spacing:2.378752pt;}
.ws16d{word-spacing:2.384640pt;}
.ws191{word-spacing:2.390528pt;}
.ws42{word-spacing:2.414080pt;}
.ws1a4{word-spacing:2.419968pt;}
.ws2c4{word-spacing:2.427584pt;}
.ws15b{word-spacing:2.431744pt;}
.ws135{word-spacing:2.484736pt;}
.ws24f{word-spacing:2.543616pt;}
.ws2b0{word-spacing:2.549760pt;}
.ws1a5{word-spacing:2.555392pt;}
.ws6e{word-spacing:2.573056pt;}
.ws146{word-spacing:2.584832pt;}
.ws284{word-spacing:2.618816pt;}
.ws2c5{word-spacing:2.629440pt;}
.ws2c3{word-spacing:2.671936pt;}
.ws16a{word-spacing:2.914560pt;}
.ws258{word-spacing:2.932224pt;}
.ws17{word-spacing:2.938112pt;}
.wsa2{word-spacing:2.949888pt;}
.ws25f{word-spacing:2.955776pt;}
.wsa3{word-spacing:2.961664pt;}
.ws21f{word-spacing:2.973440pt;}
.ws1d{word-spacing:2.979328pt;}
.ws1c{word-spacing:2.991104pt;}
.wscf{word-spacing:2.996992pt;}
.ws21e{word-spacing:3.014656pt;}
.ws169{word-spacing:3.049984pt;}
.ws273{word-spacing:3.165952pt;}
.ws2a4{word-spacing:3.187200pt;}
.ws274{word-spacing:3.192512pt;}
.ws2d8{word-spacing:3.197824pt;}
.wsb4{word-spacing:3.203072pt;}
.ws2ae{word-spacing:3.208448pt;}
.ws2a3{word-spacing:3.219072pt;}
.ws295{word-spacing:3.224384pt;}
.ws1b6{word-spacing:3.250176pt;}
.ws2d6{word-spacing:3.261568pt;}
.ws287{word-spacing:3.266880pt;}
.ws294{word-spacing:3.272192pt;}
.ws2d7{word-spacing:3.282816pt;}
.ws288{word-spacing:3.293440pt;}
.ws2d5{word-spacing:3.304064pt;}
.ws286{word-spacing:3.320000pt;}
.ws272{word-spacing:3.330624pt;}
.ws94{word-spacing:3.532800pt;}
.ws174{word-spacing:3.562240pt;}
.ws176{word-spacing:3.568128pt;}
.ws53{word-spacing:3.579904pt;}
.ws126{word-spacing:3.585792pt;}
.ws14c{word-spacing:3.609344pt;}
.ws52{word-spacing:3.621120pt;}
.ws72{word-spacing:3.627008pt;}
.ws161{word-spacing:3.632896pt;}
.ws14b{word-spacing:3.650560pt;}
.ws17e{word-spacing:3.656448pt;}
.ws95{word-spacing:3.668224pt;}
.ws17f{word-spacing:3.680000pt;}
.ws14a{word-spacing:3.697664pt;}
.wsec{word-spacing:3.709440pt;}
.ws12f{word-spacing:3.768320pt;}
.ws1b8{word-spacing:3.850752pt;}
.ws2ac{word-spacing:3.899008pt;}
.ws160{word-spacing:3.921408pt;}
.ws2ad{word-spacing:3.930880pt;}
.wsf9{word-spacing:4.180480pt;}
.ws8c{word-spacing:4.198144pt;}
.ws10e{word-spacing:4.209920pt;}
.ws231{word-spacing:4.233472pt;}
.wsdd{word-spacing:4.251136pt;}
.ws1fd{word-spacing:4.257024pt;}
.ws76{word-spacing:4.262912pt;}
.ws1b{word-spacing:4.280576pt;}
.wsf3{word-spacing:4.286464pt;}
.ws1e{word-spacing:4.310016pt;}
.ws77{word-spacing:4.351232pt;}
.ws144{word-spacing:4.368896pt;}
.ws175{word-spacing:4.392448pt;}
.ws18b{word-spacing:4.480768pt;}
.ws18c{word-spacing:4.504320pt;}
.wsdb{word-spacing:4.510208pt;}
.ws262{word-spacing:4.775168pt;}
.ws129{word-spacing:4.863488pt;}
.ws15d{word-spacing:4.875264pt;}
.ws1be{word-spacing:4.881152pt;}
.ws1d2{word-spacing:4.887040pt;}
.ws1b5{word-spacing:4.898816pt;}
.ws112{word-spacing:4.904704pt;}
.ws1e9{word-spacing:4.916480pt;}
.ws102{word-spacing:4.922368pt;}
.ws203{word-spacing:4.928256pt;}
.ws113{word-spacing:4.945920pt;}
.ws103{word-spacing:4.951808pt;}
.ws1f{word-spacing:4.957696pt;}
.ws1bf{word-spacing:4.963584pt;}
.ws15c{word-spacing:4.975360pt;}
.ws1d3{word-spacing:4.981248pt;}
.ws69{word-spacing:5.016576pt;}
.ws277{word-spacing:5.062336pt;}
.ws2fe{word-spacing:5.088896pt;}
.ws13a{word-spacing:5.140224pt;}
.ws276{word-spacing:5.147328pt;}
.ws2fd{word-spacing:5.152640pt;}
.ws29e{word-spacing:5.179200pt;}
.ws2ff{word-spacing:5.184512pt;}
.ws29d{word-spacing:5.248256pt;}
.ws27a{word-spacing:5.317312pt;}
.ws2dc{word-spacing:5.440000pt;}
.wsea{word-spacing:5.469952pt;}
.ws255{word-spacing:5.481728pt;}
.ws47{word-spacing:5.499392pt;}
.ws1aa{word-spacing:5.505280pt;}
.ws2f{word-spacing:5.540608pt;}
.ws22c{word-spacing:5.546496pt;}
.wsae{word-spacing:5.558272pt;}
.ws100{word-spacing:5.570048pt;}
.ws18{word-spacing:5.575936pt;}
.wsbb{word-spacing:5.581824pt;}
.wsbc{word-spacing:5.593600pt;}
.ws101{word-spacing:5.611264pt;}
.wsfd{word-spacing:5.652480pt;}
.ws6b{word-spacing:5.658368pt;}
.wsce{word-spacing:5.729024pt;}
.ws278{word-spacing:5.731648pt;}
.wsd8{word-spacing:5.752576pt;}
.ws29c{word-spacing:5.758208pt;}
.ws29b{word-spacing:5.800704pt;}
.ws275{word-spacing:5.853824pt;}
.ws165{word-spacing:6.052864pt;}
.ws22a{word-spacing:6.152960pt;}
.wsa1{word-spacing:6.176512pt;}
.ws13b{word-spacing:6.188288pt;}
.ws1bb{word-spacing:6.194176pt;}
.ws4e{word-spacing:6.200064pt;}
.ws13c{word-spacing:6.205952pt;}
.ws1e8{word-spacing:6.211840pt;}
.wsd9{word-spacing:6.217728pt;}
.wsbf{word-spacing:6.229504pt;}
.ws1e7{word-spacing:6.264832pt;}
.ws164{word-spacing:6.300160pt;}
.ws23b{word-spacing:6.306048pt;}
.ws2cd{word-spacing:6.315968pt;}
.ws292{word-spacing:6.400960pt;}
.ws2cc{word-spacing:6.411584pt;}
.ws13e{word-spacing:6.435584pt;}
.ws293{word-spacing:6.448768pt;}
.ws2cb{word-spacing:6.470016pt;}
.ws181{word-spacing:6.718208pt;}
.ws27d{word-spacing:6.720000pt;}
.ws80{word-spacing:6.759424pt;}
.ws21{word-spacing:6.777088pt;}
.ws43{word-spacing:6.782976pt;}
.ws22{word-spacing:6.788864pt;}
.ws159{word-spacing:6.794752pt;}
.ws24b{word-spacing:6.806528pt;}
.ws81{word-spacing:6.818304pt;}
.wsf{word-spacing:6.824192pt;}
.ws227{word-spacing:6.830080pt;}
.ws39{word-spacing:6.835968pt;}
.ws4a{word-spacing:6.853632pt;}
.wse0{word-spacing:6.859520pt;}
.ws1f1{word-spacing:6.888960pt;}
.wsdf{word-spacing:6.900736pt;}
.ws22f{word-spacing:6.947840pt;}
.ws28{word-spacing:7.042048pt;}
.ws2ea{word-spacing:7.075584pt;}
.ws254{word-spacing:7.436544pt;}
.ws1f0{word-spacing:7.442432pt;}
.ws230{word-spacing:7.465984pt;}
.wsa{word-spacing:7.477760pt;}
.ws15e{word-spacing:7.495424pt;}
.ws240{word-spacing:7.507200pt;}
.ws23e{word-spacing:7.513088pt;}
.ws24d{word-spacing:7.524864pt;}
.ws24e{word-spacing:7.530752pt;}
.ws110{word-spacing:7.536640pt;}
.ws38{word-spacing:7.542528pt;}
.ws23d{word-spacing:7.554304pt;}
.ws49{word-spacing:7.607296pt;}
.ws162{word-spacing:7.701504pt;}
.ws229{word-spacing:7.725056pt;}
.ws1e4{word-spacing:8.090112pt;}
.ws125{word-spacing:8.101888pt;}
.ws123{word-spacing:8.113664pt;}
.ws124{word-spacing:8.125440pt;}
.ws17a{word-spacing:8.143104pt;}
.ws1b9{word-spacing:8.219648pt;}
.ws2d4{word-spacing:8.265472pt;}
.ws2d3{word-spacing:8.297344pt;}
.ws2c9{word-spacing:8.307968pt;}
.ws2bb{word-spacing:8.323904pt;}
.wsda{word-spacing:8.349184pt;}
.ws2ba{word-spacing:8.366400pt;}
.ws1ba{word-spacing:8.384512pt;}
.ws2f6{word-spacing:8.408896pt;}
.ws2f7{word-spacing:8.414208pt;}
.ws2ca{word-spacing:8.446080pt;}
.ws2d2{word-spacing:8.451392pt;}
.ws2f5{word-spacing:8.456704pt;}
.ws2b9{word-spacing:8.462016pt;}
.ws27c{word-spacing:8.640000pt;}
.wsb{word-spacing:8.667136pt;}
.ws10{word-spacing:8.773120pt;}
.wsb3{word-spacing:8.779008pt;}
.wsb2{word-spacing:8.796672pt;}
.ws2a1{word-spacing:8.902912pt;}
.ws2a7{word-spacing:8.908224pt;}
.ws2a2{word-spacing:8.950720pt;}
.ws2a8{word-spacing:8.956032pt;}
.ws1dd{word-spacing:8.961536pt;}
.ws130{word-spacing:8.967424pt;}
.ws2a0{word-spacing:8.998528pt;}
.ws300{word-spacing:9.003840pt;}
.ws2a6{word-spacing:9.041024pt;}
.ws2c8{word-spacing:9.226944pt;}
.ws54{word-spacing:9.320704pt;}
.ws141{word-spacing:9.326592pt;}
.wsac{word-spacing:9.338368pt;}
.ws11c{word-spacing:9.356032pt;}
.ws235{word-spacing:9.361920pt;}
.ws259{word-spacing:9.367808pt;}
.ws55{word-spacing:9.373696pt;}
.ws18e{word-spacing:9.379584pt;}
.ws13f{word-spacing:9.385472pt;}
.ws20{word-spacing:9.391360pt;}
.ws23f{word-spacing:9.397248pt;}
.ws25a{word-spacing:9.409024pt;}
.ws140{word-spacing:9.426688pt;}
.ws96{word-spacing:9.438464pt;}
.ws116{word-spacing:9.444352pt;}
.ws56{word-spacing:9.456128pt;}
.ws11{word-spacing:9.485568pt;}
.wsab{word-spacing:9.491456pt;}
.ws238{word-spacing:9.503232pt;}
.ws190{word-spacing:9.980160pt;}
.ws3f{word-spacing:10.009600pt;}
.ws1df{word-spacing:10.021376pt;}
.ws1b4{word-spacing:10.027264pt;}
.wsc5{word-spacing:10.039040pt;}
.ws122{word-spacing:10.062592pt;}
.ws1f5{word-spacing:10.068480pt;}
.wsc4{word-spacing:10.139136pt;}
.ws4f{word-spacing:10.233344pt;}
.ws108{word-spacing:10.298112pt;}
.ws114{word-spacing:10.639616pt;}
.ws11a{word-spacing:10.645504pt;}
.wsc1{word-spacing:10.657280pt;}
.ws20a{word-spacing:10.669056pt;}
.ws20b{word-spacing:10.674944pt;}
.wsa5{word-spacing:10.680832pt;}
.wsa4{word-spacing:10.686720pt;}
.ws187{word-spacing:10.692608pt;}
.ws244{word-spacing:10.698496pt;}
.ws11b{word-spacing:10.716160pt;}
.wsef{word-spacing:10.722048pt;}
.ws120{word-spacing:10.727936pt;}
.ws121{word-spacing:10.733824pt;}
.ws1e5{word-spacing:10.769152pt;}
.ws11f{word-spacing:10.780928pt;}
.ws195{word-spacing:10.869248pt;}
.ws2fb{word-spacing:10.873600pt;}
.ws2b4{word-spacing:10.974592pt;}
.ws2b3{word-spacing:10.979904pt;}
.ws111{word-spacing:11.228416pt;}
.ws168{word-spacing:11.257856pt;}
.ws86{word-spacing:11.287296pt;}
.ws1d5{word-spacing:11.293184pt;}
.ws85{word-spacing:11.310848pt;}
.ws109{word-spacing:11.322624pt;}
.ws4d{word-spacing:11.334400pt;}
.ws2fa{word-spacing:11.526400pt;}
.ws15a{word-spacing:11.876096pt;}
.ws12c{word-spacing:11.881984pt;}
.wsf2{word-spacing:11.887872pt;}
.wsd{word-spacing:11.911424pt;}
.ws1c9{word-spacing:11.923200pt;}
.ws40{word-spacing:11.940864pt;}
.ws119{word-spacing:11.946752pt;}
.wsfe{word-spacing:11.952640pt;}
.ws5a{word-spacing:11.958528pt;}
.ws8{word-spacing:11.964416pt;}
.ws70{word-spacing:11.970304pt;}
.ws1fc{word-spacing:11.982080pt;}
.ws1ca{word-spacing:11.993856pt;}
.wsc{word-spacing:12.017408pt;}
.ws1d4{word-spacing:12.035072pt;}
.ws67{word-spacing:12.158720pt;}
.ws71{word-spacing:12.164608pt;}
.ws291{word-spacing:12.249472pt;}
.ws23c{word-spacing:12.541440pt;}
.ws1c3{word-spacing:12.559104pt;}
.ws9b{word-spacing:12.594432pt;}
.ws9c{word-spacing:12.647424pt;}
.ws2bd{word-spacing:12.754112pt;}
.ws7{word-spacing:12.765184pt;}
.ws2bc{word-spacing:12.844416pt;}
.ws290{word-spacing:12.913472pt;}
.ws170{word-spacing:13.183232pt;}
.ws171{word-spacing:13.224448pt;}
.wsd1{word-spacing:13.230336pt;}
.ws243{word-spacing:13.300992pt;}
.ws2e8{word-spacing:13.434048pt;}
.ws51{word-spacing:13.448192pt;}
.ws10a{word-spacing:13.459968pt;}
.ws2e7{word-spacing:13.465920pt;}
.ws2e6{word-spacing:13.503104pt;}
.ws1b7{word-spacing:13.807360pt;}
.ws1ee{word-spacing:13.819136pt;}
.ws212{word-spacing:13.830912pt;}
.ws1da{word-spacing:13.836800pt;}
.ws173{word-spacing:13.854464pt;}
.ws48{word-spacing:13.889792pt;}
.ws186{word-spacing:13.895680pt;}
.ws172{word-spacing:13.901568pt;}
.ws5b{word-spacing:13.913344pt;}
.ws185{word-spacing:13.925120pt;}
.ws1d9{word-spacing:13.948672pt;}
.wsca{word-spacing:14.060544pt;}
.ws280{word-spacing:14.060864pt;}
.ws281{word-spacing:14.076800pt;}
.ws27f{word-spacing:14.188352pt;}
.ws22d{word-spacing:14.525696pt;}
.ws1ec{word-spacing:14.543360pt;}
.wse7{word-spacing:14.555136pt;}
.ws2aa{word-spacing:14.666432pt;}
.ws150{word-spacing:14.749440pt;}
.ws14f{word-spacing:14.767104pt;}
.wse6{word-spacing:14.778880pt;}
.ws2a9{word-spacing:14.825792pt;}
.ws13{word-spacing:15.090944pt;}
.ws16f{word-spacing:15.155712pt;}
.ws118{word-spacing:15.173376pt;}
.ws2bf{word-spacing:15.356992pt;}
.ws2be{word-spacing:15.399488pt;}
.ws2ee{word-spacing:15.426048pt;}
.ws2ed{word-spacing:15.436672pt;}
.ws2a{word-spacing:15.614976pt;}
.ws10d{word-spacing:15.691520pt;}
.wsaf{word-spacing:15.732736pt;}
.ws29{word-spacing:15.744512pt;}
.wsb0{word-spacing:15.750400pt;}
.ws65{word-spacing:15.768064pt;}
.ws23a{word-spacing:15.803392pt;}
.ws16b{word-spacing:15.832832pt;}
.ws12b{word-spacing:15.844608pt;}
.ws66{word-spacing:15.856384pt;}
.ws2b{word-spacing:15.862272pt;}
.ws10c{word-spacing:15.885824pt;}
.wsd4{word-spacing:15.980032pt;}
.ws2f2{word-spacing:15.994432pt;}
.ws209{word-spacing:16.009472pt;}
.ws2f1{word-spacing:16.052864pt;}
.ws2f0{word-spacing:16.063488pt;}
.ws233{word-spacing:16.080128pt;}
.ws158{word-spacing:16.374528pt;}
.ws79{word-spacing:16.386304pt;}
.ws1f4{word-spacing:16.392192pt;}
.ws1a3{word-spacing:16.439296pt;}
.ws139{word-spacing:16.451072pt;}
.wse8{word-spacing:16.456960pt;}
.ws78{word-spacing:16.462848pt;}
.wsee{word-spacing:16.492288pt;}
.ws3e{word-spacing:16.586496pt;}
.ws138{word-spacing:16.621824pt;}
.ws1d7{word-spacing:16.957440pt;}
.ws242{word-spacing:16.980992pt;}
.ws6a{word-spacing:16.998656pt;}
.ws46{word-spacing:17.022208pt;}
.ws1d8{word-spacing:17.039872pt;}
.ws197{word-spacing:17.051648pt;}
.ws222{word-spacing:17.069312pt;}
.wse9{word-spacing:17.075200pt;}
.ws223{word-spacing:17.104640pt;}
.ws1eb{word-spacing:17.110528pt;}
.ws45{word-spacing:17.139968pt;}
.ws19d{word-spacing:17.316608pt;}
.ws189{word-spacing:17.634560pt;}
.ws143{word-spacing:17.669888pt;}
.ws87{word-spacing:17.681664pt;}
.ws153{word-spacing:17.711104pt;}
.ws188{word-spacing:17.722880pt;}
.ws1c2{word-spacing:17.734656pt;}
.ws152{word-spacing:17.740544pt;}
.ws221{word-spacing:17.752320pt;}
.ws220{word-spacing:17.769984pt;}
.ws1b3{word-spacing:17.899520pt;}
.ws19a{word-spacing:17.946624pt;}
.ws2db{word-spacing:18.240000pt;}
.ws1af{word-spacing:18.282240pt;}
.ws19f{word-spacing:18.323456pt;}
.ws1ae{word-spacing:18.329344pt;}
.ws1c7{word-spacing:18.347008pt;}
.ws20c{word-spacing:18.370560pt;}
.ws21d{word-spacing:18.400000pt;}
.ws1a8{word-spacing:18.558976pt;}
.ws134{word-spacing:18.941696pt;}
.ws35{word-spacing:18.965248pt;}
.ws128{word-spacing:18.971136pt;}
.ws34{word-spacing:18.982912pt;}
.ws26{word-spacing:18.988800pt;}
.ws131{word-spacing:19.000576pt;}
.ws127{word-spacing:19.018240pt;}
.ws224{word-spacing:19.071232pt;}
.wsfb{word-spacing:19.088896pt;}
.ws1fb{word-spacing:19.100672pt;}
.ws7c{word-spacing:19.612928pt;}
.ws1a0{word-spacing:19.624704pt;}
.ws163{word-spacing:19.630592pt;}
.ws17b{word-spacing:19.689472pt;}
.ws1f3{word-spacing:19.695360pt;}
.ws7d{word-spacing:19.701248pt;}
.wsfc{word-spacing:19.713024pt;}
.ws1f2{word-spacing:19.730688pt;}
.ws248{word-spacing:19.807232pt;}
.ws256{word-spacing:20.242944pt;}
.ws62{word-spacing:20.248832pt;}
.ws1d6{word-spacing:20.266496pt;}
.wse{word-spacing:20.301824pt;}
.ws1c1{word-spacing:20.837632pt;}
.ws3b{word-spacing:20.884736pt;}
.ws3a{word-spacing:20.914176pt;}
.ws245{word-spacing:20.920064pt;}
.ws7b{word-spacing:20.937728pt;}
.ws1c0{word-spacing:20.943616pt;}
.ws2dd{word-spacing:20.955200pt;}
.ws7a{word-spacing:20.984832pt;}
.ws234{word-spacing:21.167360pt;}
.ws21c{word-spacing:21.508864pt;}
.ws82{word-spacing:21.526528pt;}
.ws21b{word-spacing:21.579520pt;}
.wsad{word-spacing:21.597184pt;}
.ws12d{word-spacing:21.956352pt;}
.ws2da{word-spacing:22.080000pt;}
.ws1e0{word-spacing:22.162432pt;}
.ws154{word-spacing:22.191872pt;}
.ws5d{word-spacing:22.203648pt;}
.ws10f{word-spacing:22.209536pt;}
.ws145{word-spacing:22.227200pt;}
.ws64{word-spacing:22.344960pt;}
.ws1bc{word-spacing:22.380288pt;}
.ws210{word-spacing:22.751232pt;}
.ws211{word-spacing:22.904320pt;}
.ws261{word-spacing:23.381248pt;}
.ws1fa{word-spacing:23.457792pt;}
.ws2d{word-spacing:23.716864pt;}
.ws2e{word-spacing:24.087808pt;}
.ws1ea{word-spacing:24.093696pt;}
.ws1f8{word-spacing:24.105472pt;}
.ws215{word-spacing:24.117248pt;}
.ws180{word-spacing:24.140800pt;}
.ws198{word-spacing:24.170240pt;}
.ws1c6{word-spacing:24.176128pt;}
.ws214{word-spacing:24.229120pt;}
.ws19e{word-spacing:24.759040pt;}
.ws2c{word-spacing:25.430272pt;}
.ws107{word-spacing:25.589248pt;}
.ws25e{word-spacing:25.966080pt;}
.ws1de{word-spacing:26.013184pt;}
.ws115{word-spacing:26.666752pt;}
.wsff{word-spacing:27.320320pt;}
.ws5{word-spacing:27.355648pt;}
.ws251{word-spacing:27.396864pt;}
.ws1a1{word-spacing:27.508736pt;}
.ws6{word-spacing:27.520512pt;}
.ws14{word-spacing:27.944448pt;}
.ws217{word-spacing:27.962112pt;}
.ws216{word-spacing:28.020992pt;}
.ws21a{word-spacing:28.574464pt;}
.ws7f{word-spacing:28.586240pt;}
.ws257{word-spacing:28.621568pt;}
.ws7e{word-spacing:28.633344pt;}
.wsf4{word-spacing:28.639232pt;}
.ws219{word-spacing:28.721664pt;}
.ws213{word-spacing:29.216256pt;}
.ws19c{word-spacing:29.858048pt;}
.ws1fe{word-spacing:30.623488pt;}
.ws9{word-spacing:31.100416pt;}
.wsc3{word-spacing:31.112192pt;}
.ws1ff{word-spacing:31.135744pt;}
.wsa6{word-spacing:31.141632pt;}
.ws20e{word-spacing:32.419328pt;}
.ws20d{word-spacing:32.507648pt;}
.ws232{word-spacing:33.326080pt;}
.ws8a{word-spacing:34.998272pt;}
.ws8b{word-spacing:35.057152pt;}
.ws1b0{word-spacing:35.575296pt;}
.ws1cd{word-spacing:35.622400pt;}
.ws147{word-spacing:35.628288pt;}
.ws18f{word-spacing:35.663616pt;}
.ws249{word-spacing:35.704832pt;}
.ws24a{word-spacing:35.716608pt;}
.ws1e1{word-spacing:36.876544pt;}
.ws1e2{word-spacing:36.905984pt;}
.ws9a{word-spacing:37.506560pt;}
.ws99{word-spacing:37.577216pt;}
.wsb1{word-spacing:38.807808pt;}
.ws142{word-spacing:38.913792pt;}
.ws98{word-spacing:41.369088pt;}
.ws97{word-spacing:41.386752pt;}
.ws196{word-spacing:43.936256pt;}
.ws148{word-spacing:46.456320pt;}
.ws149{word-spacing:46.515200pt;}
.ws260{word-spacing:47.133440pt;}
.ws25{word-spacing:48.458240pt;}
.ws22b{word-spacing:53.604352pt;}
.ws20f{word-spacing:56.730880pt;}
.wsc0{word-spacing:65.050624pt;}
._7{margin-left:-35.506560pt;}
._8{margin-left:-24.007296pt;}
._4{margin-left:-18.477504pt;}
._5{margin-left:-16.599232pt;}
._0{margin-left:-1.235520pt;}
._1{width:1.118720pt;}
._2{width:2.255104pt;}
._3{width:4.892928pt;}
._6{width:11.322624pt;}
._b{width:14.287104pt;}
._9{width:15.843520pt;}
._c{width:17.659136pt;}
._a{width:26.352768pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:36.203600pt;}
.y7b{bottom:97.698283pt;}
.y25d{bottom:98.496341pt;}
.y118{bottom:103.456923pt;}
.y53{bottom:104.418784pt;}
.yd4{bottom:105.056347pt;}
.y1bd{bottom:105.378784pt;}
.y189{bottom:105.857504pt;}
.y15c{bottom:108.096992pt;}
.y2db{bottom:108.417243pt;}
.y2a0{bottom:109.218587pt;}
.y29{bottom:115.297312pt;}
.y7a{bottom:115.618411pt;}
.y25c{bottom:116.416469pt;}
.y117{bottom:121.216603pt;}
.y52{bottom:122.178464pt;}
.yd3{bottom:122.976475pt;}
.y1bc{bottom:123.138464pt;}
.y2da{bottom:123.776891pt;}
.y188{bottom:123.777632pt;}
.y29f{bottom:124.578235pt;}
.y15b{bottom:126.017120pt;}
.y97{bottom:128.257248pt;}
.y22d{bottom:129.857440pt;}
.y13a{bottom:131.299563pt;}
.y28{bottom:133.217440pt;}
.y79{bottom:133.378091pt;}
.y25b{bottom:134.171733pt;}
.y24b{bottom:136.093669pt;}
.y20c{bottom:136.572059pt;}
.y116{bottom:138.973803pt;}
.ybf{bottom:139.131733pt;}
.y29e{bottom:139.932571pt;}
.y51{bottom:140.092704pt;}
.yd2{bottom:140.731739pt;}
.y1bb{bottom:141.052704pt;}
.y187{bottom:141.532896pt;}
.y15a{bottom:143.772384pt;}
.y2d9{bottom:145.051733pt;}
.y96{bottom:146.012512pt;}
.y22c{bottom:147.612704pt;}
.y139{bottom:149.213803pt;}
.y25a{bottom:150.811867pt;}
.y27{bottom:150.972704pt;}
.y78{bottom:151.133355pt;}
.y1e8{bottom:153.531872pt;}
.y24a{bottom:154.013797pt;}
.y2d8{bottom:154.332219pt;}
.y20b{bottom:154.492187pt;}
.y29d{bottom:155.292219pt;}
.y115{bottom:156.893931pt;}
.y50{bottom:157.852384pt;}
.yd1{bottom:158.651867pt;}
.y1ba{bottom:158.812384pt;}
.y186{bottom:159.292576pt;}
.y159{bottom:161.692512pt;}
.y95{bottom:163.932640pt;}
.y259{bottom:164.892000pt;}
.y22b{bottom:165.532832pt;}
.y138{bottom:166.973483pt;}
.y77{bottom:169.053483pt;}
.y1e7{bottom:171.454251pt;}
.y249{bottom:171.773477pt;}
.y20a{bottom:172.255973pt;}
.y114{bottom:174.653611pt;}
.yd0{bottom:175.291867pt;}
.y2d7{bottom:175.772000pt;}
.y29c{bottom:176.731867pt;}
.y1b9{bottom:176.732512pt;}
.y185{bottom:177.212704pt;}
.y158{bottom:179.452192pt;}
.y258{bottom:179.612000pt;}
.y22a{bottom:183.292512pt;}
.y137{bottom:184.733163pt;}
.y2d6{bottom:185.052352pt;}
.y29b{bottom:186.011579pt;}
.y26{bottom:186.652512pt;}
.y76{bottom:186.813163pt;}
.y1e6{bottom:189.213931pt;}
.ycf{bottom:189.372448pt;}
.y248{bottom:189.693605pt;}
.y209{bottom:190.176101pt;}
.y113{bottom:192.573739pt;}
.y4f{bottom:193.532192pt;}
.y1b8{bottom:194.492192pt;}
.y184{bottom:194.972384pt;}
.y157{bottom:197.211872pt;}
.y94{bottom:199.452000pt;}
.y229{bottom:201.212640pt;}
.y136{bottom:202.653291pt;}
.yce{bottom:203.932000pt;}
.y25{bottom:204.412192pt;}
.y75{bottom:204.733291pt;}
.y2d5{bottom:206.492000pt;}
.y1e5{bottom:207.134059pt;}
.y29a{bottom:207.291867pt;}
.y247{bottom:207.453285pt;}
.y208{bottom:207.935781pt;}
.y112{bottom:210.333419pt;}
.y4e{bottom:211.291872pt;}
.y1b7{bottom:212.251872pt;}
.y183{bottom:212.892512pt;}
.y156{bottom:215.132512pt;}
.y2d4{bottom:215.772549pt;}
.y299{bottom:216.572352pt;}
.y228{bottom:218.972320pt;}
.y135{bottom:220.412971pt;}
.y24{bottom:222.332320pt;}
.y74{bottom:222.492971pt;}
.yef{bottom:222.972645pt;}
.y172{bottom:224.092320pt;}
.y1e4{bottom:224.893739pt;}
.y246{bottom:225.212965pt;}
.y207{bottom:225.695461pt;}
.y111{bottom:228.093099pt;}
.y93{bottom:229.212000pt;}
.y4d{bottom:229.219131pt;}
.y1b6{bottom:230.173099pt;}
.y182{bottom:230.652192pt;}
.y2d3{bottom:230.972837pt;}
.y155{bottom:232.892192pt;}
.y227{bottom:236.733227pt;}
.y298{bottom:238.012000pt;}
.y134{bottom:238.333099pt;}
.y23{bottom:240.099973pt;}
.y73{bottom:240.252651pt;}
.yee{bottom:240.732325pt;}
.y171{bottom:241.853419pt;}
.y1e3{bottom:242.653419pt;}
.y245{bottom:243.133093pt;}
.y206{bottom:243.615589pt;}
.y110{bottom:246.013227pt;}
.y2d2{bottom:246.332485pt;}
.y297{bottom:247.292197pt;}
.y1b5{bottom:247.932779pt;}
.y181{bottom:248.411872pt;}
.y154{bottom:250.812320pt;}
.y226{bottom:254.653355pt;}
.y133{bottom:256.092779pt;}
.y22{bottom:258.020101pt;}
.y72{bottom:258.172779pt;}
.yed{bottom:258.652453pt;}
.y1cf{bottom:259.132320pt;}
.y170{bottom:259.613099pt;}
.y1e2{bottom:260.573547pt;}
.y244{bottom:260.892773pt;}
.y205{bottom:261.375269pt;}
.y296{bottom:262.651845pt;}
.y10f{bottom:263.772907pt;}
.y1a1{bottom:263.773227pt;}
.y4c{bottom:264.898939pt;}
.y1b4{bottom:265.852907pt;}
.y180{bottom:266.332000pt;}
.y2d1{bottom:267.772133pt;}
.y153{bottom:268.575035pt;}
.y225{bottom:272.413035pt;}
.y132{bottom:273.852459pt;}
.y21{bottom:275.779781pt;}
.y71{bottom:275.932459pt;}
.yec{bottom:276.413035pt;}
.y1ce{bottom:276.893552pt;}
.y16f{bottom:277.533227pt;}
.y1e1{bottom:278.333227pt;}
.y243{bottom:278.812901pt;}
.y204{bottom:279.295397pt;}
.y1a0{bottom:281.532907pt;}
.y10e{bottom:281.693035pt;}
.y6a{bottom:281.855205pt;}
.y17f{bottom:282.972000pt;}
.y2d0{bottom:283.132000pt;}
.y1b3{bottom:283.612587pt;}
.y295{bottom:283.932133pt;}
.y152{bottom:286.334715pt;}
.y277{bottom:286.812453pt;}
.yac{bottom:289.212715pt;}
.y224{bottom:290.333163pt;}
.y131{bottom:291.772587pt;}
.y2cf{bottom:292.411979pt;}
.y20{bottom:293.539461pt;}
.y294{bottom:293.852133pt;}
.y70{bottom:293.852587pt;}
.yeb{bottom:294.333163pt;}
.y1cd{bottom:294.813680pt;}
.y16e{bottom:295.292907pt;}
.y1e0{bottom:296.253355pt;}
.y242{bottom:296.572581pt;}
.y17e{bottom:297.052715pt;}
.y203{bottom:297.055077pt;}
.y19f{bottom:299.292587pt;}
.y10d{bottom:299.452715pt;}
.y69{bottom:299.614885pt;}
.y4b{bottom:300.418299pt;}
.y1b2{bottom:301.372267pt;}
.y151{bottom:304.254843pt;}
.y276{bottom:304.574069pt;}
.y223{bottom:308.092843pt;}
.y130{bottom:309.532395pt;}
.y6f{bottom:311.612267pt;}
.yea{bottom:312.092843pt;}
.y1cc{bottom:312.573360pt;}
.y16d{bottom:313.213035pt;}
.y2ce{bottom:313.692133pt;}
.y1df{bottom:314.013035pt;}
.y241{bottom:314.492709pt;}
.y202{bottom:314.814757pt;}
.y10c{bottom:317.252139pt;}
.y19e{bottom:317.252459pt;}
.y68{bottom:317.574757pt;}
.y1b1{bottom:318.052133pt;}
.y150{bottom:322.054267pt;}
.y275{bottom:322.533941pt;}
.yab{bottom:324.934309pt;}
.y222{bottom:325.892267pt;}
.y12f{bottom:327.492267pt;}
.y2cd{bottom:329.092267pt;}
.y1f{bottom:329.259013pt;}
.ye9{bottom:329.892267pt;}
.y293{bottom:330.054069pt;}
.y1cb{bottom:330.533232pt;}
.y16c{bottom:331.012459pt;}
.y1de{bottom:331.812459pt;}
.y240{bottom:332.292133pt;}
.y1b0{bottom:332.292715pt;}
.y201{bottom:332.774629pt;}
.y19d{bottom:335.012139pt;}
.y10b{bottom:335.173424pt;}
.y67{bottom:335.334437pt;}
.y4a{bottom:336.137851pt;}
.y2cc{bottom:338.372971pt;}
.y14f{bottom:339.974395pt;}
.y274{bottom:340.293621pt;}
.y6e{bottom:341.252133pt;}
.y221{bottom:342.532267pt;}
.yaa{bottom:342.854437pt;}
.y12e{bottom:344.132267pt;}
.ye8{bottom:346.532267pt;}
.y1af{bottom:346.852267pt;}
.y1e{bottom:347.179141pt;}
.y292{bottom:347.813749pt;}
.y1ca{bottom:348.292912pt;}
.y16b{bottom:348.772139pt;}
.y23f{bottom:348.932267pt;}
.y1dd{bottom:349.732587pt;}
.y200{bottom:350.534309pt;}
.y19c{bottom:352.932912pt;}
.y10a{bottom:352.933104pt;}
.y66{bottom:353.254565pt;}
.y2cb{bottom:353.732619pt;}
.y49{bottom:354.057979pt;}
.y220{bottom:356.772715pt;}
.y14e{bottom:357.734075pt;}
.y273{bottom:358.053301pt;}
.y12d{bottom:358.212715pt;}
.ya9{bottom:360.614117pt;}
.ye7{bottom:360.772715pt;}
.y23e{bottom:363.012715pt;}
.y1d{bottom:364.938821pt;}
.y291{bottom:365.733877pt;}
.y1c9{bottom:366.052592pt;}
.y16a{bottom:366.692267pt;}
.y1dc{bottom:367.492912pt;}
.y1ff{bottom:368.454437pt;}
.y19b{bottom:370.692592pt;}
.y109{bottom:370.853232pt;}
.y65{bottom:371.014245pt;}
.y21f{bottom:371.332267pt;}
.y12c{bottom:372.772267pt;}
.y2ca{bottom:375.172267pt;}
.ye6{bottom:375.332267pt;}
.y14d{bottom:375.493755pt;}
.y272{bottom:375.973429pt;}
.y23d{bottom:377.572267pt;}
.ya8{bottom:378.534245pt;}
.y301{bottom:381.252267pt;}
.y169{bottom:383.331787pt;}
.y290{bottom:383.493557pt;}
.y1c8{bottom:383.972720pt;}
.y2c9{bottom:384.452112pt;}
.y1db{bottom:385.413040pt;}
.y1fe{bottom:386.214117pt;}
.y19a{bottom:388.452272pt;}
.y108{bottom:388.612912pt;}
.y64{bottom:388.773925pt;}
.y48{bottom:389.577339pt;}
.y300{bottom:390.533104pt;}
.y14c{bottom:393.413883pt;}
.y271{bottom:393.733109pt;}
.y168{bottom:396.292267pt;}
.ya7{bottom:396.293925pt;}
.y1c{bottom:400.618629pt;}
.y28f{bottom:401.253237pt;}
.y1c7{bottom:401.732400pt;}
.y1da{bottom:403.172720pt;}
.y1fd{bottom:404.134245pt;}
.y2c8{bottom:405.732400pt;}
.y2ff{bottom:405.892752pt;}
.y199{bottom:406.372400pt;}
.y107{bottom:406.372592pt;}
.y63{bottom:406.694053pt;}
.y47{bottom:407.497467pt;}
.ybe{bottom:408.612917pt;}
.y167{bottom:410.372848pt;}
.y14b{bottom:411.173563pt;}
.y270{bottom:411.653237pt;}
.y2c7{bottom:415.013104pt;}
.y1c6{bottom:418.372400pt;}
.y1b{bottom:418.378309pt;}
.y28e{bottom:419.173365pt;}
.y1d9{bottom:420.932400pt;}
.y1fc{bottom:421.893925pt;}
.y198{bottom:423.012400pt;}
.y106{bottom:424.292720pt;}
.y62{bottom:424.453733pt;}
.y166{bottom:424.932400pt;}
.y92{bottom:425.253243pt;}
.y257{bottom:425.254571pt;}
.y46{bottom:425.257147pt;}
.ybd{bottom:426.533045pt;}
.y2fe{bottom:427.332400pt;}
.y14a{bottom:429.093691pt;}
.y26f{bottom:429.412917pt;}
.y2c6{bottom:430.372752pt;}
.ya6{bottom:431.973733pt;}
.y1c5{bottom:432.612848pt;}
.y1a{bottom:436.298437pt;}
.y28d{bottom:436.933045pt;}
.y197{bottom:437.092848pt;}
.y2fd{bottom:437.252400pt;}
.y1d8{bottom:437.572400pt;}
.y1fb{bottom:439.653605pt;}
.y105{bottom:442.054379pt;}
.y61{bottom:442.373861pt;}
.y91{bottom:443.173371pt;}
.y256{bottom:443.174699pt;}
.ybc{bottom:444.292725pt;}
.y149{bottom:446.853371pt;}
.y1c4{bottom:447.172400pt;}
.y26e{bottom:447.172597pt;}
.ycd{bottom:449.573733pt;}
.ya5{bottom:449.733413pt;}
.y196{bottom:451.652400pt;}
.y2c5{bottom:451.812400pt;}
.y1d7{bottom:451.812848pt;}
.y28c{bottom:454.853173pt;}
.y1fa{bottom:457.573733pt;}
.y104{bottom:459.974507pt;}
.y60{bottom:460.133541pt;}
.y90{bottom:460.933051pt;}
.y255{bottom:460.934379pt;}
.y45{bottom:460.936955pt;}
.y2c4{bottom:461.092597pt;}
.ybb{bottom:462.212853pt;}
.y2fc{bottom:463.012400pt;}
.y148{bottom:464.613051pt;}
.y26d{bottom:465.092725pt;}
.y1d6{bottom:466.372400pt;}
.ycc{bottom:467.493861pt;}
.ya4{bottom:467.653541pt;}
.y19{bottom:471.978245pt;}
.y28b{bottom:472.612853pt;}
.y1f9{bottom:475.333413pt;}
.y2c3{bottom:476.452245pt;}
.y103{bottom:477.734187pt;}
.y5f{bottom:478.053669pt;}
.y8f{bottom:478.692731pt;}
.y254{bottom:478.694059pt;}
.y44{bottom:478.696635pt;}
.y2fb{bottom:479.332533pt;}
.yba{bottom:479.975024pt;}
.y147{bottom:482.533179pt;}
.y26c{bottom:482.852405pt;}
.ycb{bottom:485.253541pt;}
.ya3{bottom:485.413221pt;}
.y2fa{bottom:488.613237pt;}
.y18{bottom:489.737925pt;}
.y28a{bottom:490.372533pt;}
.y1f8{bottom:493.253541pt;}
.y102{bottom:495.654315pt;}
.y5e{bottom:495.813349pt;}
.y8e{bottom:496.612859pt;}
.y253{bottom:496.614187pt;}
.y2c2{bottom:497.732533pt;}
.yb9{bottom:497.734704pt;}
.y146{bottom:500.292859pt;}
.y26b{bottom:500.774512pt;}
.yca{bottom:503.013221pt;}
.ya2{bottom:503.172901pt;}
.y2f9{bottom:503.972885pt;}
.y17{bottom:507.497605pt;}
.y289{bottom:508.292533pt;}
.y1f7{bottom:511.013221pt;}
.y101{bottom:513.413995pt;}
.y5d{bottom:513.573029pt;}
.y252{bottom:514.373867pt;}
.y43{bottom:514.376443pt;}
.yb8{bottom:515.654832pt;}
.y145{bottom:518.212987pt;}
.y26a{bottom:518.534192pt;}
.yc9{bottom:520.933349pt;}
.ya1{bottom:521.093029pt;}
.y2c1{bottom:522.373189pt;}
.y2f8{bottom:525.412533pt;}
.y16{bottom:525.417733pt;}
.y288{bottom:526.052667pt;}
.y1f6{bottom:528.772901pt;}
.y100{bottom:531.173675pt;}
.y5c{bottom:531.493157pt;}
.y251{bottom:532.293995pt;}
.y8d{bottom:532.295104pt;}
.y42{bottom:532.296571pt;}
.yb7{bottom:533.414512pt;}
.y144{bottom:535.973355pt;}
.y269{bottom:536.293872pt;}
.y2c0{bottom:537.732837pt;}
.yc8{bottom:538.693029pt;}
.ya0{bottom:538.852709pt;}
.y2f7{bottom:540.772667pt;}
.y15{bottom:543.177413pt;}
.y287{bottom:543.972667pt;}
.y1f5{bottom:546.693029pt;}
.yff{bottom:549.120299pt;}
.y5b{bottom:549.279333pt;}
.y250{bottom:550.080171pt;}
.y8c{bottom:550.081280pt;}
.y41{bottom:550.082747pt;}
.yb6{bottom:551.361136pt;}
.y2bf{bottom:553.119045pt;}
.y143{bottom:553.919979pt;}
.y268{bottom:554.240496pt;}
.y2f6{bottom:555.999333pt;}
.yc7{bottom:556.639653pt;}
.y9f{bottom:556.799333pt;}
.y286{bottom:561.759333pt;}
.y1f4{bottom:564.479205pt;}
.y2f5{bottom:565.279685pt;}
.yfe{bottom:566.879979pt;}
.y23c{bottom:567.839205pt;}
.y24f{bottom:567.839851pt;}
.y8b{bottom:567.840960pt;}
.y40{bottom:567.842427pt;}
.yb5{bottom:569.120816pt;}
.y142{bottom:571.679659pt;}
.y267{bottom:572.000176pt;}
.y2be{bottom:574.399333pt;}
.yc6{bottom:574.399653pt;}
.y14{bottom:578.883717pt;}
.y285{bottom:579.679333pt;}
.y1f3{bottom:582.400944pt;}
.y2bd{bottom:583.680171pt;}
.y5a{bottom:583.839333pt;}
.yfd{bottom:584.800107pt;}
.y12b{bottom:585.759659pt;}
.y24e{bottom:585.759979pt;}
.y8a{bottom:585.761088pt;}
.ye5{bottom:585.761141pt;}
.y23b{bottom:585.763893pt;}
.y2f4{bottom:586.719333pt;}
.yb4{bottom:586.880496pt;}
.y141{bottom:589.439339pt;}
.y266{bottom:589.920304pt;}
.y9e{bottom:591.199333pt;}
.yc5{bottom:592.159333pt;}
.y2f3{bottom:595.999589pt;}
.y13{bottom:596.643397pt;}
.y284{bottom:597.439333pt;}
.y2bc{bottom:599.039819pt;}
.y1f2{bottom:600.160624pt;}
.yfc{bottom:602.559787pt;}
.y12a{bottom:603.519339pt;}
.y24d{bottom:603.519659pt;}
.ye4{bottom:603.520821pt;}
.y3f{bottom:603.522235pt;}
.y23a{bottom:603.523573pt;}
.y1ae{bottom:605.119979pt;}
.y140{bottom:607.359787pt;}
.y265{bottom:607.679984pt;}
.yc4{bottom:608.798987pt;}
.y21e{bottom:611.839339pt;}
.y12{bottom:614.563525pt;}
.y283{bottom:615.199333pt;}
.y1f1{bottom:617.920304pt;}
.y17d{bottom:618.079659pt;}
.y2f2{bottom:619.359467pt;}
.yfb{bottom:620.320501pt;}
.y2bb{bottom:620.479467pt;}
.y24c{bottom:621.439787pt;}
.y129{bottom:621.440624pt;}
.y89{bottom:621.440896pt;}
.ye3{bottom:621.440949pt;}
.y3e{bottom:621.442363pt;}
.y239{bottom:621.443701pt;}
.yc3{bottom:621.759467pt;}
.yb3{bottom:622.560304pt;}
.y1ad{bottom:622.879659pt;}
.y13f{bottom:625.119467pt;}
.y264{bottom:625.439664pt;}
.y2ba{bottom:629.759819pt;}
.y21d{bottom:629.762043pt;}
.y11{bottom:632.323205pt;}
.y282{bottom:633.119467pt;}
.y2f1{bottom:635.839467pt;}
.y1f0{bottom:635.840432pt;}
.y17c{bottom:635.999787pt;}
.yc2{bottom:635.999915pt;}
.yfa{bottom:638.240629pt;}
.y128{bottom:639.200304pt;}
.y88{bottom:639.200576pt;}
.ye2{bottom:639.200629pt;}
.y238{bottom:639.203381pt;}
.yb2{bottom:640.480432pt;}
.y1ac{bottom:640.799787pt;}
.y13e{bottom:641.758987pt;}
.y263{bottom:643.359792pt;}
.y2f0{bottom:645.119664pt;}
.y21c{bottom:647.521723pt;}
.y10{bottom:650.243333pt;}
.yc1{bottom:650.559467pt;}
.y281{bottom:650.879467pt;}
.y2b9{bottom:651.199467pt;}
.y1ef{bottom:653.600112pt;}
.y17b{bottom:653.760437pt;}
.y13d{bottom:654.719467pt;}
.yf9{bottom:656.000309pt;}
.y127{bottom:656.959984pt;}
.y87{bottom:656.960256pt;}
.ye1{bottom:656.960309pt;}
.y3d{bottom:656.961723pt;}
.y195{bottom:656.962373pt;}
.y237{bottom:656.963061pt;}
.yb1{bottom:658.240112pt;}
.y1ab{bottom:658.560757pt;}
.y2ef{bottom:660.319952pt;}
.y262{bottom:661.119472pt;}
.y21b{bottom:665.441851pt;}
.y2b8{bottom:666.399600pt;}
.yf{bottom:668.003013pt;}
.y280{bottom:668.799467pt;}
.y13c{bottom:668.959915pt;}
.y1ee{bottom:671.520240pt;}
.y17a{bottom:671.680565pt;}
.y165{bottom:673.599920pt;}
.yf8{bottom:673.920437pt;}
.y126{bottom:674.880112pt;}
.y86{bottom:674.880384pt;}
.ye0{bottom:674.880437pt;}
.y3c{bottom:674.881851pt;}
.y194{bottom:674.882501pt;}
.y236{bottom:674.883189pt;}
.y2b7{bottom:675.679952pt;}
.yb0{bottom:676.160240pt;}
.y1aa{bottom:676.320437pt;}
.y261{bottom:679.039600pt;}
.y2ee{bottom:681.759600pt;}
.y21a{bottom:683.201531pt;}
.y13b{bottom:683.519467pt;}
.y27f{bottom:686.559600pt;}
.y1ed{bottom:689.279920pt;}
.y179{bottom:689.440245pt;}
.y2ed{bottom:691.039952pt;}
.y164{bottom:691.360112pt;}
.yf7{bottom:691.680117pt;}
.y125{bottom:692.639792pt;}
.ydf{bottom:692.640117pt;}
.y3b{bottom:692.641531pt;}
.y193{bottom:692.642181pt;}
.y235{bottom:692.642869pt;}
.yaf{bottom:693.919920pt;}
.y1a9{bottom:694.240565pt;}
.y260{bottom:695.679600pt;}
.y2b6{bottom:697.119600pt;}
.y1d5{bottom:699.520112pt;}
.y219{bottom:700.961211pt;}
.ye{bottom:703.682821pt;}
.y27e{bottom:704.319600pt;}
.y2b5{bottom:706.399952pt;}
.y1ec{bottom:707.039600pt;}
.y178{bottom:707.199925pt;}
.y163{bottom:709.280240pt;}
.yf6{bottom:709.439797pt;}
.y25f{bottom:709.760048pt;}
.y124{bottom:710.559920pt;}
.y85{bottom:710.560192pt;}
.yde{bottom:710.560245pt;}
.y1c3{bottom:710.561664pt;}
.y192{bottom:710.562309pt;}
.y234{bottom:710.562997pt;}
.yae{bottom:711.679600pt;}
.y1a8{bottom:712.000245pt;}
.y2ec{bottom:712.479600pt;}
.y1d4{bottom:717.279792pt;}
.y218{bottom:718.881339pt;}
.y6d{bottom:719.359472pt;}
.yd{bottom:721.442501pt;}
.y2eb{bottom:721.759952pt;}
.y27d{bottom:722.239925pt;}
.y1eb{bottom:723.680192pt;}
.y25e{bottom:724.319600pt;}
.y177{bottom:725.120053pt;}
.y162{bottom:727.039920pt;}
.yf5{bottom:727.359925pt;}
.y2b4{bottom:727.839733pt;}
.y84{bottom:728.319872pt;}
.ydd{bottom:728.319925pt;}
.y3a{bottom:728.321339pt;}
.y1c2{bottom:728.321344pt;}
.y123{bottom:728.321536pt;}
.y191{bottom:728.321989pt;}
.y233{bottom:728.322677pt;}
.y1a7{bottom:729.920373pt;}
.y1d3{bottom:735.039472pt;}
.y1ea{bottom:736.639600pt;}
.y217{bottom:736.641019pt;}
.y6c{bottom:737.279600pt;}
.yc{bottom:739.362629pt;}
.y27c{bottom:739.999605pt;}
.y176{bottom:742.879733pt;}
.y2b3{bottom:743.199733pt;}
.y161{bottom:744.799600pt;}
.yf4{bottom:745.119605pt;}
.yad{bottom:746.239600pt;}
.y83{bottom:746.240000pt;}
.ydc{bottom:746.240053pt;}
.y39{bottom:746.241467pt;}
.y1c1{bottom:746.241472pt;}
.y122{bottom:746.241664pt;}
.y190{bottom:746.242117pt;}
.y232{bottom:746.242805pt;}
.y1a6{bottom:747.680053pt;}
.y1e9{bottom:750.880181pt;}
.y2b2{bottom:752.320085pt;}
.y1d2{bottom:752.959600pt;}
.y216{bottom:754.561147pt;}
.yb{bottom:757.122309pt;}
.y27b{bottom:757.919733pt;}
.y2ea{bottom:758.399600pt;}
.y175{bottom:759.519733pt;}
.y160{bottom:761.439109pt;}
.yf3{bottom:763.039733pt;}
.ydb{bottom:764.000507pt;}
.y38{bottom:764.001147pt;}
.y1c0{bottom:764.001152pt;}
.y121{bottom:764.001344pt;}
.y18f{bottom:764.001797pt;}
.y231{bottom:764.002485pt;}
.y1a5{bottom:765.439733pt;}
.y6b{bottom:766.879733pt;}
.y2e9{bottom:767.680245pt;}
.y1d1{bottom:769.599733pt;}
.y215{bottom:772.320827pt;}
.y2b1{bottom:773.759733pt;}
.y174{bottom:773.760437pt;}
.y15f{bottom:774.399589pt;}
.y27a{bottom:774.559733pt;}
.ya{bottom:774.881989pt;}
.yf2{bottom:779.719733pt;}
.yda{bottom:781.799931pt;}
.y37{bottom:781.800571pt;}
.y82{bottom:781.800576pt;}
.y120{bottom:781.800768pt;}
.y18e{bottom:781.801221pt;}
.y230{bottom:781.801909pt;}
.y1a4{bottom:782.279733pt;}
.y2b0{bottom:783.080571pt;}
.y1d0{bottom:783.719733pt;}
.y15e{bottom:787.399733pt;}
.y173{bottom:788.359733pt;}
.y279{bottom:788.680181pt;}
.y2e8{bottom:789.159733pt;}
.y214{bottom:790.120251pt;}
.y9{bottom:792.841861pt;}
.yf1{bottom:793.800181pt;}
.y1a3{bottom:796.360181pt;}
.y15d{bottom:798.439733pt;}
.y2af{bottom:798.440219pt;}
.yd9{bottom:799.720059pt;}
.y36{bottom:799.720699pt;}
.y1bf{bottom:799.720704pt;}
.y11f{bottom:799.720896pt;}
.y18d{bottom:799.721349pt;}
.y22f{bottom:799.722037pt;}
.y278{bottom:803.239733pt;}
.y2e7{bottom:804.519733pt;}
.y213{bottom:808.040379pt;}
.yf0{bottom:808.359733pt;}
.y8{bottom:810.601541pt;}
.y1a2{bottom:810.919733pt;}
.yd8{bottom:817.479739pt;}
.y35{bottom:817.480379pt;}
.y81{bottom:817.480384pt;}
.y11e{bottom:817.480576pt;}
.y18c{bottom:817.481029pt;}
.y22e{bottom:817.481717pt;}
.y2ae{bottom:819.879867pt;}
.y212{bottom:825.800059pt;}
.y7{bottom:828.521669pt;}
.y2ad{bottom:829.160283pt;}
.y2e6{bottom:835.239867pt;}
.y80{bottom:835.400512pt;}
.y11d{bottom:835.400704pt;}
.y18b{bottom:835.401157pt;}
.yd7{bottom:835.401845pt;}
.y211{bottom:843.720187pt;}
.y2e5{bottom:844.360219pt;}
.y2ac{bottom:844.360571pt;}
.y6{bottom:846.281349pt;}
.y34{bottom:853.160187pt;}
.y7f{bottom:853.160192pt;}
.y11c{bottom:853.160384pt;}
.y59{bottom:853.160837pt;}
.yd6{bottom:853.161525pt;}
.y2ab{bottom:859.720219pt;}
.y210{bottom:861.479867pt;}
.y5{bottom:864.041029pt;}
.y2e4{bottom:865.800000pt;}
.y1be{bottom:870.919872pt;}
.y11b{bottom:870.920064pt;}
.y58{bottom:870.920517pt;}
.y33{bottom:870.920709pt;}
.y9d{bottom:870.921163pt;}
.yd5{bottom:870.921205pt;}
.y2e3{bottom:875.080704pt;}
.y20f{bottom:878.120000pt;}
.y2aa{bottom:881.159867pt;}
.y11a{bottom:888.840192pt;}
.yc0{bottom:888.840320pt;}
.y18a{bottom:888.840645pt;}
.y32{bottom:888.840837pt;}
.y9c{bottom:888.841291pt;}
.y7e{bottom:888.841333pt;}
.y2e2{bottom:890.440352pt;}
.y20e{bottom:892.200000pt;}
.y2a9{bottom:896.520000pt;}
.y4{bottom:899.720837pt;}
.y2a8{bottom:905.800416pt;}
.y119{bottom:906.599872pt;}
.y57{bottom:906.600325pt;}
.y31{bottom:906.600517pt;}
.y9b{bottom:906.600971pt;}
.y7d{bottom:906.601013pt;}
.y20d{bottom:906.920000pt;}
.y2e1{bottom:911.880000pt;}
.y2a7{bottom:921.000704pt;}
.y56{bottom:924.520453pt;}
.y30{bottom:924.520645pt;}
.y9a{bottom:924.521099pt;}
.y7c{bottom:924.521141pt;}
.y2e0{bottom:927.080133pt;}
.y2a6{bottom:936.360352pt;}
.y2f{bottom:942.280325pt;}
.y99{bottom:942.280779pt;}
.y55{bottom:942.280821pt;}
.y2df{bottom:942.440000pt;}
.y2de{bottom:951.720485pt;}
.y2a5{bottom:957.800133pt;}
.y98{bottom:960.040459pt;}
.y54{bottom:960.040501pt;}
.y2a4{bottom:967.080837pt;}
.y3{bottom:971.080453pt;}
.y2dd{bottom:973.160133pt;}
.y2e{bottom:977.960629pt;}
.y2a3{bottom:982.440485pt;}
.y2dc{bottom:988.520133pt;}
.y2{bottom:988.840133pt;}
.y2d{bottom:995.720309pt;}
.y2a2{bottom:1003.880267pt;}
.y1{bottom:1009.506933pt;}
.y2c{bottom:1013.666933pt;}
.y2a1{bottom:1013.826933pt;}
.y2b{bottom:1076.872267pt;}
.h30{height:30.324375pt;}
.h33{height:30.408750pt;}
.h34{height:37.624687pt;}
.h6{height:38.250000pt;}
.hc{height:42.900937pt;}
.h25{height:45.453125pt;}
.h32{height:46.609688pt;}
.h31{height:46.739375pt;}
.h5{height:47.812500pt;}
.h3{height:48.185000pt;}
.h2f{height:56.156250pt;}
.h4{height:57.225607pt;}
.h9{height:57.228977pt;}
.h2d{height:57.239260pt;}
.h2a{height:57.241073pt;}
.h2e{height:57.241841pt;}
.hd{height:57.245212pt;}
.h21{height:57.245361pt;}
.h14{height:57.247004pt;}
.h2b{height:57.247196pt;}
.h10{height:57.247751pt;}
.h28{height:57.247964pt;}
.h12{height:57.249329pt;}
.h18{height:57.249585pt;}
.h1c{height:57.249756pt;}
.h29{height:57.251057pt;}
.h23{height:57.251825pt;}
.hf{height:57.252167pt;}
.h2c{height:57.252593pt;}
.h1b{height:57.252871pt;}
.h27{height:57.253105pt;}
.h1a{height:57.253361pt;}
.h16{height:57.253447pt;}
.h1d{height:57.253468pt;}
.hb{height:57.253617pt;}
.h8{height:57.254129pt;}
.h20{height:57.254215pt;}
.h19{height:57.254407pt;}
.ha{height:57.254748pt;}
.h26{height:57.254919pt;}
.h13{height:57.255175pt;}
.h15{height:57.255431pt;}
.h22{height:57.255452pt;}
.h7{height:57.255516pt;}
.h1f{height:57.255687pt;}
.h17{height:57.256220pt;}
.h1e{height:57.256455pt;}
.h11{height:57.257329pt;}
.he{height:57.417500pt;}
.h2{height:58.908750pt;}
.h24{height:64.014242pt;}
.h1{height:74.916562pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x7{left:66.148000pt;}
.x18{left:113.343579pt;}
.x4{left:151.187435pt;}
.x1b{left:154.302933pt;}
.xf{left:181.421733pt;}
.xd{left:192.063067pt;}
.x2a{left:196.383067pt;}
.xe{left:197.421733pt;}
.x1{left:199.661733pt;}
.x11{left:203.303067pt;}
.xa{left:207.981733pt;}
.xb{left:211.143067pt;}
.x30{left:214.183067pt;}
.x13{left:223.943067pt;}
.x17{left:231.143067pt;}
.x2e{left:238.983067pt;}
.x33{left:263.783200pt;}
.x2{left:280.621867pt;}
.x21{left:285.703200pt;}
.x28{left:291.943200pt;}
.x26{left:298.663200pt;}
.x1d{left:301.942501pt;}
.x24{left:306.582000pt;}
.x9{left:315.886000pt;}
.x2c{left:337.462000pt;}
.x8{left:342.140667pt;}
.xc{left:348.342000pt;}
.x29{left:353.142000pt;}
.x31{left:357.782000pt;}
.x19{left:370.742000pt;}
.x1f{left:376.822000pt;}
.x15{left:387.702133pt;}
.x6{left:400.924800pt;}
.x5{left:427.179467pt;}
.x1c{left:434.582133pt;}
.x3{left:491.889195pt;}
.x1a{left:513.730267pt;}
.x25{left:516.290400pt;}
.x16{left:518.850400pt;}
.x27{left:520.290400pt;}
.x32{left:521.410400pt;}
.x20{left:522.690400pt;}
.x2d{left:523.970400pt;}
.x10{left:526.370400pt;}
.x12{left:527.810400pt;}
.x2b{left:603.889200pt;}
.x14{left:607.729200pt;}
.x23{left:609.009200pt;}
.x1e{left:610.289200pt;}
.x2f{left:611.409200pt;}
.x22{left:617.290533pt;}
}




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