
    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_fdbd34e017353d3006b074bd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_0f55bf52764c577918c12d5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121582;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_dae280559f2455d53b896a66.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_cb75a5b3fb2698904059f2f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_1e1bd61483386e68cef8d11b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:11.402700px;}
.ls1e{letter-spacing:-2.700000px;}
.ls75{letter-spacing:-1.145700px;}
.ls72{letter-spacing:-1.140000px;}
.ls73{letter-spacing:-1.122900px;}
.ls74{letter-spacing:-0.997500px;}
.ls28{letter-spacing:-0.860700px;}
.ls25{letter-spacing:-0.855000px;}
.ls32{letter-spacing:-0.575700px;}
.ls27{letter-spacing:-0.570000px;}
.ls6e{letter-spacing:-0.541500px;}
.ls6c{letter-spacing:-0.518700px;}
.ls55{letter-spacing:-0.473100px;}
.ls6d{letter-spacing:-0.467400px;}
.ls71{letter-spacing:-0.381900px;}
.ls4e{letter-spacing:-0.376200px;}
.ls4b{letter-spacing:-0.330600px;}
.ls4a{letter-spacing:-0.313500px;}
.ls6f{letter-spacing:-0.302100px;}
.ls5b{letter-spacing:-0.290700px;}
.ls33{letter-spacing:-0.285000px;}
.ls79{letter-spacing:-0.273600px;}
.ls5f{letter-spacing:-0.239400px;}
.lsa8{letter-spacing:-0.193800px;}
.ls5e{letter-spacing:-0.153900px;}
.lsb0{letter-spacing:-0.142500px;}
.ls7b{letter-spacing:-0.039900px;}
.ls1a{letter-spacing:-0.013200px;}
.ls5{letter-spacing:-0.011400px;}
.ls1b{letter-spacing:-0.006600px;}
.ls7{letter-spacing:-0.005700px;}
.lsd5{letter-spacing:-0.005100px;}
.ls1c{letter-spacing:-0.004800px;}
.ls6{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.011400px;}
.lseb{letter-spacing:0.015300px;}
.ls51{letter-spacing:0.017100px;}
.ls24{letter-spacing:0.022800px;}
.ls36{letter-spacing:0.025200px;}
.ls40{letter-spacing:0.028500px;}
.ls35{letter-spacing:0.034200px;}
.ls30{letter-spacing:0.039900px;}
.ls87{letter-spacing:0.045600px;}
.lsed{letter-spacing:0.051000px;}
.ls2e{letter-spacing:0.062700px;}
.lsf1{letter-spacing:0.066300px;}
.ls8{letter-spacing:0.068400px;}
.lsa0{letter-spacing:0.074100px;}
.ls61{letter-spacing:0.085500px;}
.ls8b{letter-spacing:0.091200px;}
.lsd7{letter-spacing:0.091800px;}
.ls1d{letter-spacing:0.096900px;}
.lse5{letter-spacing:0.102000px;}
.ls77{letter-spacing:0.102600px;}
.lsb5{letter-spacing:0.108300px;}
.lsdf{letter-spacing:0.112200px;}
.ls6a{letter-spacing:0.114000px;}
.lsf0{letter-spacing:0.117300px;}
.ls4d{letter-spacing:0.119700px;}
.ls7f{letter-spacing:0.131100px;}
.lsb9{letter-spacing:0.142500px;}
.ls68{letter-spacing:0.148200px;}
.ls9d{letter-spacing:0.153900px;}
.lsc5{letter-spacing:0.159600px;}
.ls78{letter-spacing:0.165300px;}
.lsd3{letter-spacing:0.168300px;}
.ls98{letter-spacing:0.171000px;}
.ls76{letter-spacing:0.176700px;}
.ls3f{letter-spacing:0.182400px;}
.ls4c{letter-spacing:0.188100px;}
.lsd9{letter-spacing:0.188700px;}
.ls18{letter-spacing:0.193800px;}
.lsc3{letter-spacing:0.198900px;}
.lsac{letter-spacing:0.199500px;}
.ls94{letter-spacing:0.205200px;}
.ls47{letter-spacing:0.210900px;}
.ls9e{letter-spacing:0.216600px;}
.lse9{letter-spacing:0.219300px;}
.ls57{letter-spacing:0.222300px;}
.lsda{letter-spacing:0.224400px;}
.ls81{letter-spacing:0.228000px;}
.ls49{letter-spacing:0.233700px;}
.lsa{letter-spacing:0.239400px;}
.ls8e{letter-spacing:0.245100px;}
.lsd2{letter-spacing:0.250800px;}
.lse3{letter-spacing:0.255000px;}
.ls99{letter-spacing:0.256500px;}
.lsea{letter-spacing:0.270300px;}
.ls9{letter-spacing:0.273600px;}
.ls2c{letter-spacing:0.279300px;}
.lsc1{letter-spacing:0.285000px;}
.ls38{letter-spacing:0.285600px;}
.lse6{letter-spacing:0.295800px;}
.ls2f{letter-spacing:0.296400px;}
.lsf3{letter-spacing:0.300900px;}
.ls7d{letter-spacing:0.313500px;}
.lsb6{letter-spacing:0.319200px;}
.ls17{letter-spacing:0.324900px;}
.ls91{letter-spacing:0.330600px;}
.lsc4{letter-spacing:0.331500px;}
.lse{letter-spacing:0.336300px;}
.lsd1{letter-spacing:0.342000px;}
.ls37{letter-spacing:0.353400px;}
.ls42{letter-spacing:0.359100px;}
.ls19{letter-spacing:0.364800px;}
.ls7e{letter-spacing:0.381900px;}
.lse4{letter-spacing:0.382500px;}
.ls5a{letter-spacing:0.387600px;}
.lsd8{letter-spacing:0.392700px;}
.ls21{letter-spacing:0.399000px;}
.lse8{letter-spacing:0.402900px;}
.ls83{letter-spacing:0.404700px;}
.ls52{letter-spacing:0.410400px;}
.lscb{letter-spacing:0.416100px;}
.ls54{letter-spacing:0.421800px;}
.lscf{letter-spacing:0.427500px;}
.lsd6{letter-spacing:0.443700px;}
.ls56{letter-spacing:0.450300px;}
.ls63{letter-spacing:0.456000px;}
.ls64{letter-spacing:0.467400px;}
.lsa9{letter-spacing:0.473100px;}
.lsef{letter-spacing:0.499800px;}
.ls16{letter-spacing:0.513000px;}
.ls23{letter-spacing:0.514200px;}
.ls95{letter-spacing:0.518700px;}
.ls5c{letter-spacing:0.524400px;}
.ls26{letter-spacing:0.530100px;}
.lsb8{letter-spacing:0.558600px;}
.lsa2{letter-spacing:0.575700px;}
.ls10{letter-spacing:0.581400px;}
.ls84{letter-spacing:0.604200px;}
.ls41{letter-spacing:0.609900px;}
.lsb7{letter-spacing:0.615600px;}
.ls12{letter-spacing:0.621300px;}
.lse2{letter-spacing:0.622200px;}
.ls8f{letter-spacing:0.627000px;}
.lsdb{letter-spacing:0.632400px;}
.ls22{letter-spacing:0.638400px;}
.lsb4{letter-spacing:0.644100px;}
.lsce{letter-spacing:0.649800px;}
.ls48{letter-spacing:0.655500px;}
.ls2d{letter-spacing:0.661200px;}
.lsba{letter-spacing:0.684000px;}
.lsc8{letter-spacing:0.695400px;}
.ls3d{letter-spacing:0.706800px;}
.lsc{letter-spacing:0.718200px;}
.ls1{letter-spacing:0.724200px;}
.ls66{letter-spacing:0.741000px;}
.lsc2{letter-spacing:0.771600px;}
.lsf{letter-spacing:0.775200px;}
.ls62{letter-spacing:0.780900px;}
.ls53{letter-spacing:0.798000px;}
.lsaa{letter-spacing:0.809400px;}
.ls15{letter-spacing:0.820800px;}
.lscc{letter-spacing:0.832200px;}
.lsde{letter-spacing:0.836400px;}
.ls8d{letter-spacing:0.837900px;}
.ls13{letter-spacing:0.855000px;}
.ls8a{letter-spacing:0.860700px;}
.lsb{letter-spacing:0.889200px;}
.ls96{letter-spacing:0.894900px;}
.ls0{letter-spacing:0.900600px;}
.ls9c{letter-spacing:0.912000px;}
.ls45{letter-spacing:0.917700px;}
.lsec{letter-spacing:0.923100px;}
.lsab{letter-spacing:0.929100px;}
.ls8c{letter-spacing:0.934800px;}
.lsb2{letter-spacing:0.940500px;}
.lscd{letter-spacing:0.957600px;}
.lsd{letter-spacing:0.963300px;}
.lsc7{letter-spacing:0.974700px;}
.lsa4{letter-spacing:0.991800px;}
.lsa3{letter-spacing:1.003200px;}
.lse0{letter-spacing:1.030200px;}
.lsbf{letter-spacing:1.048800px;}
.ls7a{letter-spacing:1.054500px;}
.lsc0{letter-spacing:1.065900px;}
.ls82{letter-spacing:1.071600px;}
.lsdd{letter-spacing:1.101600px;}
.lse7{letter-spacing:1.116900px;}
.ls97{letter-spacing:1.122900px;}
.lsc9{letter-spacing:1.134300px;}
.ls65{letter-spacing:1.140000px;}
.ls85{letter-spacing:1.151400px;}
.lsca{letter-spacing:1.157100px;}
.lsaf{letter-spacing:1.168500px;}
.ls3e{letter-spacing:1.174200px;}
.lsbc{letter-spacing:1.208400px;}
.ls14{letter-spacing:1.214100px;}
.ls2{letter-spacing:1.231200px;}
.ls7c{letter-spacing:1.242600px;}
.lsa7{letter-spacing:1.248300px;}
.ls29{letter-spacing:1.259700px;}
.lsf5{letter-spacing:1.264800px;}
.lsb3{letter-spacing:1.265400px;}
.ls9b{letter-spacing:1.271100px;}
.lse1{letter-spacing:1.280100px;}
.ls86{letter-spacing:1.288200px;}
.ls88{letter-spacing:1.322400px;}
.ls44{letter-spacing:1.328100px;}
.lsad{letter-spacing:1.339500px;}
.lsbb{letter-spacing:1.350900px;}
.ls31{letter-spacing:1.362300px;}
.ls69{letter-spacing:1.368000px;}
.ls60{letter-spacing:1.390800px;}
.lsee{letter-spacing:1.417800px;}
.ls89{letter-spacing:1.425000px;}
.ls67{letter-spacing:1.442100px;}
.lsae{letter-spacing:1.447800px;}
.ls2a{letter-spacing:1.470600px;}
.ls9f{letter-spacing:1.476300px;}
.ls58{letter-spacing:1.493400px;}
.ls70{letter-spacing:1.510500px;}
.ls5d{letter-spacing:1.516200px;}
.lsc6{letter-spacing:1.578900px;}
.ls11{letter-spacing:1.590300px;}
.ls4f{letter-spacing:1.596000px;}
.lsd0{letter-spacing:1.647300px;}
.ls43{letter-spacing:1.692900px;}
.ls90{letter-spacing:1.755600px;}
.lsbd{letter-spacing:1.789800px;}
.ls6b{letter-spacing:1.881000px;}
.ls59{letter-spacing:1.938000px;}
.lsf2{letter-spacing:2.050200px;}
.lsf4{letter-spacing:2.060400px;}
.ls93{letter-spacing:2.086200px;}
.lsa1{letter-spacing:2.131800px;}
.ls46{letter-spacing:2.177400px;}
.ls80{letter-spacing:2.342700px;}
.lsd4{letter-spacing:2.417400px;}
.ls9a{letter-spacing:2.701800px;}
.lsa6{letter-spacing:2.713200px;}
.lsdc{letter-spacing:2.718300px;}
.lsa5{letter-spacing:2.736000px;}
.lsb1{letter-spacing:3.095100px;}
.ls3b{letter-spacing:3.705000px;}
.lsbe{letter-spacing:3.807600px;}
.ls2b{letter-spacing:4.275000px;}
.ls1f{letter-spacing:13.539600px;}
.ls3a{letter-spacing:14.250000px;}
.ls92{letter-spacing:14.602800px;}
.ls34{letter-spacing:15.652200px;}
.ls4{letter-spacing:16.155600px;}
.ls39{letter-spacing:17.893200px;}
.ls20{letter-spacing:19.155600px;}
.ls3{letter-spacing:22.363200px;}
.ls3c{letter-spacing:26.106000px;}
.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;}
}
.ws219{word-spacing:-15.213300px;}
.ws3a{word-spacing:-14.649000px;}
.ws21a{word-spacing:-14.244300px;}
.ws64{word-spacing:-13.680000px;}
.ws1d7{word-spacing:-13.674300px;}
.ws0{word-spacing:-11.400000px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.004800px;}
.ws27d{word-spacing:0.005100px;}
.ws29{word-spacing:0.005700px;}
.ws1{word-spacing:0.017100px;}
.ws1c{word-spacing:0.022800px;}
.ws1b6{word-spacing:0.034200px;}
.ws18f{word-spacing:0.045600px;}
.ws20e{word-spacing:0.051300px;}
.wsd5{word-spacing:0.057000px;}
.wsea{word-spacing:0.074100px;}
.wsca{word-spacing:0.085500px;}
.ws123{word-spacing:0.091200px;}
.ws170{word-spacing:0.096900px;}
.ws5f{word-spacing:0.102600px;}
.ws8f{word-spacing:0.125400px;}
.ws1de{word-spacing:0.171000px;}
.ws1ec{word-spacing:0.199500px;}
.wsc6{word-spacing:0.205200px;}
.ws298{word-spacing:0.214200px;}
.wscc{word-spacing:0.216600px;}
.wsf7{word-spacing:0.245100px;}
.ws72{word-spacing:0.250800px;}
.ws76{word-spacing:0.256500px;}
.ws161{word-spacing:0.273600px;}
.ws285{word-spacing:0.285600px;}
.wsf{word-spacing:0.290700px;}
.ws156{word-spacing:0.313500px;}
.ws8c{word-spacing:0.319200px;}
.ws238{word-spacing:0.324900px;}
.ws13b{word-spacing:0.330600px;}
.ws1e{word-spacing:0.336300px;}
.ws169{word-spacing:0.347700px;}
.ws19e{word-spacing:0.353400px;}
.ws61{word-spacing:0.359100px;}
.ws75{word-spacing:0.393300px;}
.ws17f{word-spacing:0.399000px;}
.ws125{word-spacing:0.404700px;}
.ws1ca{word-spacing:0.421800px;}
.ws183{word-spacing:0.438900px;}
.ws20b{word-spacing:0.444600px;}
.ws119{word-spacing:0.456000px;}
.ws7a{word-spacing:0.461700px;}
.ws24e{word-spacing:0.464100px;}
.ws144{word-spacing:0.490200px;}
.ws16c{word-spacing:0.501600px;}
.ws8{word-spacing:0.518700px;}
.ws15c{word-spacing:0.524400px;}
.ws186{word-spacing:0.535800px;}
.ws15b{word-spacing:0.541500px;}
.wsdd{word-spacing:0.570000px;}
.ws223{word-spacing:0.581400px;}
.ws297{word-spacing:0.606900px;}
.ws24d{word-spacing:0.652800px;}
.ws239{word-spacing:0.678300px;}
.ws3{word-spacing:0.684000px;}
.ws205{word-spacing:0.723900px;}
.ws10c{word-spacing:0.729600px;}
.ws284{word-spacing:0.734400px;}
.ws98{word-spacing:0.735300px;}
.ws16e{word-spacing:0.746700px;}
.ws222{word-spacing:0.758100px;}
.ws214{word-spacing:0.803700px;}
.ws41{word-spacing:0.826500px;}
.wsfd{word-spacing:0.837900px;}
.ws12b{word-spacing:0.843600px;}
.ws85{word-spacing:0.849300px;}
.ws10b{word-spacing:0.860700px;}
.ws113{word-spacing:0.866400px;}
.ws1f4{word-spacing:0.872100px;}
.ws80{word-spacing:0.883500px;}
.wsf5{word-spacing:0.900600px;}
.wsee{word-spacing:0.917700px;}
.wsae{word-spacing:0.923400px;}
.ws82{word-spacing:0.951900px;}
.ws29a{word-spacing:0.984300px;}
.ws24c{word-spacing:1.004700px;}
.ws79{word-spacing:1.014600px;}
.ws25d{word-spacing:1.014900px;}
.ws1a4{word-spacing:1.026000px;}
.ws1a3{word-spacing:1.037400px;}
.wsbe{word-spacing:1.043100px;}
.ws2b{word-spacing:1.088700px;}
.ws2c{word-spacing:1.094400px;}
.ws1d2{word-spacing:1.111500px;}
.ws135{word-spacing:1.117200px;}
.ws28e{word-spacing:1.127100px;}
.ws19b{word-spacing:1.145700px;}
.ws27b{word-spacing:1.147500px;}
.ws240{word-spacing:1.152600px;}
.ws18d{word-spacing:1.157100px;}
.ws209{word-spacing:1.168500px;}
.ws159{word-spacing:1.174200px;}
.ws1c7{word-spacing:1.179900px;}
.wsf1{word-spacing:1.191300px;}
.wsab{word-spacing:1.197000px;}
.ws130{word-spacing:1.208400px;}
.ws1cb{word-spacing:1.219800px;}
.ws23d{word-spacing:1.224000px;}
.wse0{word-spacing:1.231200px;}
.wsa9{word-spacing:1.248300px;}
.ws1c1{word-spacing:1.271100px;}
.ws181{word-spacing:1.288200px;}
.ws1fc{word-spacing:1.316700px;}
.ws12e{word-spacing:1.328100px;}
.ws253{word-spacing:1.371900px;}
.ws203{word-spacing:1.373700px;}
.ws3e{word-spacing:1.385100px;}
.ws6a{word-spacing:1.396500px;}
.ws69{word-spacing:1.402200px;}
.wsfb{word-spacing:1.407900px;}
.ws14e{word-spacing:1.425000px;}
.wsd7{word-spacing:1.430700px;}
.ws1e6{word-spacing:1.436400px;}
.ws1b9{word-spacing:1.442100px;}
.ws94{word-spacing:1.447800px;}
.ws60{word-spacing:1.453500px;}
.ws13d{word-spacing:1.459200px;}
.wscf{word-spacing:1.464900px;}
.ws215{word-spacing:1.476300px;}
.ws1e0{word-spacing:1.493400px;}
.wsd4{word-spacing:1.504800px;}
.ws112{word-spacing:1.510500px;}
.ws36{word-spacing:1.516200px;}
.ws25b{word-spacing:1.524900px;}
.ws155{word-spacing:1.533300px;}
.ws26c{word-spacing:1.535100px;}
.ws270{word-spacing:1.540200px;}
.ws91{word-spacing:1.601700px;}
.ws1ab{word-spacing:1.607400px;}
.ws107{word-spacing:1.613100px;}
.ws31{word-spacing:1.618800px;}
.ws7c{word-spacing:1.630200px;}
.ws100{word-spacing:1.635900px;}
.ws1a2{word-spacing:1.641600px;}
.ws3c{word-spacing:1.647300px;}
.ws1f1{word-spacing:1.658700px;}
.ws1ed{word-spacing:1.681500px;}
.ws176{word-spacing:1.698600px;}
.ws1dd{word-spacing:1.704300px;}
.ws11e{word-spacing:1.721400px;}
.ws258{word-spacing:1.728900px;}
.ws24f{word-spacing:1.744200px;}
.ws38{word-spacing:1.755600px;}
.wsc3{word-spacing:1.767000px;}
.ws104{word-spacing:1.818300px;}
.ws290{word-spacing:1.820700px;}
.wsc2{word-spacing:1.824000px;}
.ws15a{word-spacing:1.841100px;}
.ws195{word-spacing:1.846800px;}
.ws24{word-spacing:1.875300px;}
.ws247{word-spacing:1.897200px;}
.ws1a{word-spacing:1.903800px;}
.ws29f{word-spacing:1.907400px;}
.ws271{word-spacing:1.912500px;}
.ws17{word-spacing:1.949400px;}
.ws1db{word-spacing:1.960800px;}
.ws16b{word-spacing:1.983600px;}
.ws141{word-spacing:1.989300px;}
.ws19f{word-spacing:1.995000px;}
.wsc1{word-spacing:2.000700px;}
.ws81{word-spacing:2.006400px;}
.ws47{word-spacing:2.023500px;}
.ws22a{word-spacing:2.029200px;}
.ws157{word-spacing:2.052000px;}
.ws26b{word-spacing:2.055300px;}
.ws1ad{word-spacing:2.069100px;}
.ws18b{word-spacing:2.086200px;}
.ws14d{word-spacing:2.091900px;}
.ws139{word-spacing:2.120400px;}
.ws278{word-spacing:2.147100px;}
.ws111{word-spacing:2.148900px;}
.wsfa{word-spacing:2.154600px;}
.ws1c0{word-spacing:2.160300px;}
.ws200{word-spacing:2.166000px;}
.ws1ea{word-spacing:2.171700px;}
.wsbb{word-spacing:2.177400px;}
.ws96{word-spacing:2.194500px;}
.wsac{word-spacing:2.200200px;}
.ws187{word-spacing:2.211600px;}
.ws53{word-spacing:2.223000px;}
.ws1fa{word-spacing:2.240100px;}
.ws17c{word-spacing:2.245800px;}
.ws2a{word-spacing:2.251500px;}
.ws1f8{word-spacing:2.257200px;}
.ws132{word-spacing:2.308500px;}
.ws30{word-spacing:2.314200px;}
.ws2f{word-spacing:2.319900px;}
.ws1b0{word-spacing:2.331300px;}
.ws1f9{word-spacing:2.337000px;}
.ws114{word-spacing:2.359800px;}
.ws289{word-spacing:2.371500px;}
.ws194{word-spacing:2.411100px;}
.ws5a{word-spacing:2.416800px;}
.ws14{word-spacing:2.422500px;}
.ws188{word-spacing:2.433900px;}
.ws9e{word-spacing:2.445300px;}
.ws15f{word-spacing:2.456700px;}
.wsb2{word-spacing:2.462400px;}
.ws217{word-spacing:2.485200px;}
.ws67{word-spacing:2.508000px;}
.ws120{word-spacing:2.513700px;}
.ws5b{word-spacing:2.519400px;}
.ws185{word-spacing:2.525100px;}
.ws70{word-spacing:2.530800px;}
.ws71{word-spacing:2.536500px;}
.ws102{word-spacing:2.542200px;}
.ws28a{word-spacing:2.560200px;}
.ws1eb{word-spacing:2.582100px;}
.ws1a5{word-spacing:2.599200px;}
.ws5{word-spacing:2.610600px;}
.ws140{word-spacing:2.616300px;}
.ws26f{word-spacing:2.621400px;}
.ws9c{word-spacing:2.622000px;}
.ws19c{word-spacing:2.627700px;}
.wsc4{word-spacing:2.644800px;}
.ws252{word-spacing:2.652000px;}
.ws122{word-spacing:2.661900px;}
.ws1cd{word-spacing:2.667600px;}
.ws8e{word-spacing:2.679000px;}
.ws129{word-spacing:2.684700px;}
.ws128{word-spacing:2.690400px;}
.ws133{word-spacing:2.696100px;}
.ws1e7{word-spacing:2.701800px;}
.ws23{word-spacing:2.707500px;}
.ws1f0{word-spacing:2.713200px;}
.ws22c{word-spacing:2.718900px;}
.wsf3{word-spacing:2.724600px;}
.ws1d8{word-spacing:2.741700px;}
.ws40{word-spacing:2.758800px;}
.ws265{word-spacing:2.759100px;}
.ws266{word-spacing:2.764200px;}
.ws1b5{word-spacing:2.770200px;}
.ws62{word-spacing:2.781600px;}
.ws273{word-spacing:2.789700px;}
.ws131{word-spacing:2.793000px;}
.ws24b{word-spacing:2.794800px;}
.ws210{word-spacing:2.838600px;}
.ws37{word-spacing:2.889900px;}
.ws228{word-spacing:2.895600px;}
.wsa0{word-spacing:2.901300px;}
.wsaf{word-spacing:2.912700px;}
.ws1fe{word-spacing:2.929800px;}
.ws263{word-spacing:2.932500px;}
.ws1da{word-spacing:2.941200px;}
.wsb0{word-spacing:2.946900px;}
.ws26d{word-spacing:2.963100px;}
.ws28b{word-spacing:2.973300px;}
.wsc{word-spacing:2.992500px;}
.ws27c{word-spacing:3.003900px;}
.ws17d{word-spacing:3.032400px;}
.ws127{word-spacing:3.049500px;}
.ws134{word-spacing:3.060900px;}
.ws267{word-spacing:3.080400px;}
.ws272{word-spacing:3.116100px;}
.ws254{word-spacing:3.131400px;}
.wsc9{word-spacing:3.163500px;}
.ws158{word-spacing:3.180600px;}
.ws165{word-spacing:3.203400px;}
.ws231{word-spacing:3.209100px;}
.ws1d5{word-spacing:3.214800px;}
.ws55{word-spacing:3.226200px;}
.ws221{word-spacing:3.231900px;}
.ws202{word-spacing:3.237600px;}
.ws174{word-spacing:3.260400px;}
.ws1a9{word-spacing:3.271800px;}
.ws167{word-spacing:3.277500px;}
.ws12d{word-spacing:3.306000px;}
.ws20c{word-spacing:3.317400px;}
.ws1fd{word-spacing:3.368700px;}
.ws1af{word-spacing:3.374400px;}
.ws145{word-spacing:3.391500px;}
.ws227{word-spacing:3.397200px;}
.ws93{word-spacing:3.420000px;}
.ws22{word-spacing:3.431400px;}
.ws1f5{word-spacing:3.442800px;}
.ws1e2{word-spacing:3.448500px;}
.ws1a1{word-spacing:3.454200px;}
.wsd1{word-spacing:3.459900px;}
.ws117{word-spacing:3.482700px;}
.ws21b{word-spacing:3.494100px;}
.ws32{word-spacing:3.499800px;}
.ws262{word-spacing:3.508800px;}
.ws197{word-spacing:3.511200px;}
.wsc0{word-spacing:3.516900px;}
.ws168{word-spacing:3.539700px;}
.ws208{word-spacing:3.556800px;}
.ws207{word-spacing:3.573900px;}
.ws17b{word-spacing:3.579600px;}
.ws160{word-spacing:3.602400px;}
.wsc5{word-spacing:3.608100px;}
.ws149{word-spacing:3.613800px;}
.ws73{word-spacing:3.642300px;}
.ws19d{word-spacing:3.648000px;}
.ws294{word-spacing:3.656700px;}
.wsc8{word-spacing:3.665100px;}
.ws178{word-spacing:3.682200px;}
.ws95{word-spacing:3.693600px;}
.ws22d{word-spacing:3.710700px;}
.ws218{word-spacing:3.727800px;}
.ws147{word-spacing:3.779100px;}
.ws286{word-spacing:3.804600px;}
.ws213{word-spacing:3.824700px;}
.ws1a8{word-spacing:3.830400px;}
.ws11{word-spacing:3.836100px;}
.ws2d{word-spacing:3.876000px;}
.ws14a{word-spacing:3.881700px;}
.ws13a{word-spacing:3.887400px;}
.ws232{word-spacing:3.893100px;}
.ws1b8{word-spacing:3.915900px;}
.ws257{word-spacing:3.916800px;}
.ws87{word-spacing:3.921600px;}
.ws84{word-spacing:3.950100px;}
.ws23c{word-spacing:3.952500px;}
.ws29b{word-spacing:3.957600px;}
.wsfc{word-spacing:3.990000px;}
.wsf8{word-spacing:4.001400px;}
.ws1d0{word-spacing:4.007100px;}
.ws1e1{word-spacing:4.012800px;}
.ws184{word-spacing:4.024200px;}
.ws245{word-spacing:4.029000px;}
.ws150{word-spacing:4.069800px;}
.ws1e8{word-spacing:4.092600px;}
.ws190{word-spacing:4.109700px;}
.wsec{word-spacing:4.121100px;}
.ws39{word-spacing:4.126800px;}
.ws1b1{word-spacing:4.132500px;}
.ws201{word-spacing:4.138200px;}
.ws11a{word-spacing:4.155300px;}
.ws1ce{word-spacing:4.161000px;}
.ws211{word-spacing:4.166700px;}
.ws274{word-spacing:4.187100px;}
.ws1b7{word-spacing:4.189500px;}
.ws236{word-spacing:4.195200px;}
.wsd6{word-spacing:4.206600px;}
.ws9a{word-spacing:4.218000px;}
.ws4e{word-spacing:4.240800px;}
.ws4d{word-spacing:4.246500px;}
.ws83{word-spacing:4.252200px;}
.wsa7{word-spacing:4.269300px;}
.ws21e{word-spacing:4.275000px;}
.ws126{word-spacing:4.292100px;}
.ws29c{word-spacing:4.309500px;}
.wsdb{word-spacing:4.314900px;}
.ws295{word-spacing:4.324800px;}
.ws20{word-spacing:4.337700px;}
.ws264{word-spacing:4.350300px;}
.wsed{word-spacing:4.354800px;}
.ws1c2{word-spacing:4.360500px;}
.ws1c6{word-spacing:4.389000px;}
.wsf9{word-spacing:4.400400px;}
.ws1c8{word-spacing:4.411800px;}
.ws1ee{word-spacing:4.417500px;}
.ws1ac{word-spacing:4.423200px;}
.wse3{word-spacing:4.434600px;}
.ws50{word-spacing:4.463100px;}
.wsb1{word-spacing:4.485900px;}
.ws226{word-spacing:4.531500px;}
.ws1c4{word-spacing:4.537200px;}
.wse8{word-spacing:4.548600px;}
.ws4b{word-spacing:4.560000px;}
.wsb7{word-spacing:4.571400px;}
.ws1f3{word-spacing:4.582800px;}
.ws136{word-spacing:4.588500px;}
.ws16a{word-spacing:4.594200px;}
.ws22f{word-spacing:4.599900px;}
.ws1d1{word-spacing:4.611300px;}
.ws137{word-spacing:4.617000px;}
.ws192{word-spacing:4.622700px;}
.ws243{word-spacing:4.646100px;}
.ws12c{word-spacing:4.731000px;}
.ws146{word-spacing:4.765200px;}
.ws142{word-spacing:4.776600px;}
.ws153{word-spacing:4.782300px;}
.wseb{word-spacing:4.788000px;}
.wsa8{word-spacing:4.793700px;}
.wsbd{word-spacing:4.805100px;}
.ws12f{word-spacing:4.810800px;}
.ws58{word-spacing:4.822200px;}
.ws1cc{word-spacing:4.827900px;}
.wsc7{word-spacing:4.833600px;}
.ws18e{word-spacing:4.839300px;}
.ws199{word-spacing:4.845000px;}
.wsb5{word-spacing:4.873500px;}
.ws27f{word-spacing:4.890900px;}
.ws7d{word-spacing:4.941900px;}
.ws287{word-spacing:4.957200px;}
.ws99{word-spacing:4.959000px;}
.ws180{word-spacing:4.981800px;}
.ws1ba{word-spacing:4.987500px;}
.wsb8{word-spacing:4.998900px;}
.ws1bb{word-spacing:5.016000px;}
.ws29d{word-spacing:5.018400px;}
.wsd9{word-spacing:5.021700px;}
.ws191{word-spacing:5.038800px;}
.ws11b{word-spacing:5.044500px;}
.ws291{word-spacing:5.069400px;}
.ws49{word-spacing:5.073000px;}
.ws9f{word-spacing:5.084400px;}
.ws259{word-spacing:5.089800px;}
.ws29e{word-spacing:5.110200px;}
.ws109{word-spacing:5.124300px;}
.ws234{word-spacing:5.135700px;}
.ws11f{word-spacing:5.152800px;}
.ws25a{word-spacing:5.171400px;}
.wsbf{word-spacing:5.187000px;}
.ws1df{word-spacing:5.209800px;}
.ws233{word-spacing:5.238300px;}
.ws10e{word-spacing:5.244000px;}
.ws21f{word-spacing:5.249700px;}
.wsa3{word-spacing:5.255400px;}
.ws277{word-spacing:5.258100px;}
.ws292{word-spacing:5.268300px;}
.ws13{word-spacing:5.283900px;}
.ws206{word-spacing:5.295300px;}
.ws21d{word-spacing:5.301000px;}
.ws1c5{word-spacing:5.306700px;}
.ws1f6{word-spacing:5.318100px;}
.wsd2{word-spacing:5.323800px;}
.ws212{word-spacing:5.329500px;}
.ws20a{word-spacing:5.335200px;}
.wse4{word-spacing:5.340900px;}
.ws256{word-spacing:5.344800px;}
.wsf2{word-spacing:5.346600px;}
.ws4{word-spacing:5.352300px;}
.ws18c{word-spacing:5.369400px;}
.ws237{word-spacing:5.375100px;}
.ws1dc{word-spacing:5.386500px;}
.wsf4{word-spacing:5.392200px;}
.ws282{word-spacing:5.395800px;}
.ws35{word-spacing:5.409300px;}
.ws279{word-spacing:5.416200px;}
.ws74{word-spacing:5.432100px;}
.ws189{word-spacing:5.437800px;}
.ws281{word-spacing:5.446800px;}
.ws1e5{word-spacing:5.460600px;}
.ws106{word-spacing:5.472000px;}
.ws1fb{word-spacing:5.477700px;}
.ws15d{word-spacing:5.483400px;}
.ws4f{word-spacing:5.500500px;}
.ws1cf{word-spacing:5.523300px;}
.ws7e{word-spacing:5.529000px;}
.ws296{word-spacing:5.533500px;}
.ws15{word-spacing:5.534700px;}
.ws2a0{word-spacing:5.538600px;}
.ws21c{word-spacing:5.546100px;}
.ws23f{word-spacing:5.564100px;}
.ws10a{word-spacing:5.591700px;}
.ws105{word-spacing:5.597400px;}
.ws255{word-spacing:5.599800px;}
.ws44{word-spacing:5.608800px;}
.ws250{word-spacing:5.620200px;}
.wsba{word-spacing:5.631600px;}
.ws1b4{word-spacing:5.643000px;}
.ws216{word-spacing:5.648700px;}
.ws46{word-spacing:5.654400px;}
.ws1d9{word-spacing:5.671500px;}
.ws25{word-spacing:5.677200px;}
.wsff{word-spacing:5.682900px;}
.ws116{word-spacing:5.688600px;}
.ws33{word-spacing:5.694300px;}
.ws171{word-spacing:5.700000px;}
.ws154{word-spacing:5.722800px;}
.ws90{word-spacing:5.728500px;}
.ws7b{word-spacing:5.734200px;}
.ws275{word-spacing:5.737500px;}
.ws3d{word-spacing:5.739900px;}
.ws276{word-spacing:5.742600px;}
.ws25c{word-spacing:5.747700px;}
.ws20f{word-spacing:5.757000px;}
.ws5e{word-spacing:5.762700px;}
.ws28c{word-spacing:5.763000px;}
.ws204{word-spacing:5.774100px;}
.ws1ef{word-spacing:5.779800px;}
.wsbc{word-spacing:5.785500px;}
.ws261{word-spacing:5.788500px;}
.wscd{word-spacing:5.791200px;}
.ws77{word-spacing:5.796900px;}
.ws16d{word-spacing:5.802600px;}
.ws26a{word-spacing:5.814000px;}
.ws269{word-spacing:5.819100px;}
.ws166{word-spacing:5.831100px;}
.ws173{word-spacing:5.836800px;}
.ws13f{word-spacing:5.853900px;}
.ws45{word-spacing:5.865300px;}
.ws28d{word-spacing:5.875200px;}
.ws1c9{word-spacing:5.876700px;}
.wse1{word-spacing:5.882400px;}
.ws18{word-spacing:5.893800px;}
.ws1b{word-spacing:5.910900px;}
.ws1ff{word-spacing:5.916600px;}
.ws1d3{word-spacing:5.922300px;}
.ws244{word-spacing:5.931300px;}
.wsad{word-spacing:5.933700px;}
.ws66{word-spacing:5.950800px;}
.ws288{word-spacing:5.951700px;}
.ws1f2{word-spacing:5.956500px;}
.ws229{word-spacing:5.967900px;}
.ws27a{word-spacing:5.972100px;}
.ws164{word-spacing:5.973600px;}
.ws248{word-spacing:5.982300px;}
.wsf0{word-spacing:5.985000px;}
.ws1bf{word-spacing:5.990700px;}
.ws24a{word-spacing:5.992500px;}
.ws1a0{word-spacing:6.002100px;}
.ws34{word-spacing:6.007800px;}
.ws1bd{word-spacing:6.019200px;}
.ws242{word-spacing:6.038400px;}
.ws241{word-spacing:6.043500px;}
.ws1e4{word-spacing:6.053400px;}
.ws20d{word-spacing:6.059100px;}
.wsaa{word-spacing:6.070500px;}
.ws299{word-spacing:6.074100px;}
.ws10f{word-spacing:6.076200px;}
.ws26e{word-spacing:6.079200px;}
.ws27e{word-spacing:6.099600px;}
.ws25e{word-spacing:6.114900px;}
.ws51{word-spacing:6.116100px;}
.ws1be{word-spacing:6.121800px;}
.ws1ae{word-spacing:6.127500px;}
.ws1c3{word-spacing:6.133200px;}
.ws19a{word-spacing:6.138900px;}
.ws224{word-spacing:6.144600px;}
.ws25f{word-spacing:6.145500px;}
.ws15e{word-spacing:6.150300px;}
.ws260{word-spacing:6.150600px;}
.wsd{word-spacing:6.161700px;}
.ws148{word-spacing:6.167400px;}
.ws11c{word-spacing:6.173100px;}
.ws23e{word-spacing:6.176100px;}
.wsda{word-spacing:6.178800px;}
.ws249{word-spacing:6.181200px;}
.ws1e3{word-spacing:6.184500px;}
.ws17a{word-spacing:6.190200px;}
.ws1d6{word-spacing:6.195900px;}
.ws63{word-spacing:6.201600px;}
.ws23b{word-spacing:6.206700px;}
.ws78{word-spacing:6.207300px;}
.ws1b2{word-spacing:6.213000px;}
.wsa{word-spacing:6.224400px;}
.wse9{word-spacing:6.230100px;}
.ws8d{word-spacing:6.235800px;}
.ws3b{word-spacing:6.247200px;}
.ws28f{word-spacing:6.252600px;}
.ws251{word-spacing:6.262800px;}
.ws175{word-spacing:6.264300px;}
.ws19{word-spacing:6.270000px;}
.ws268{word-spacing:6.273000px;}
.ws97{word-spacing:6.275700px;}
.ws246{word-spacing:6.278100px;}
.ws17e{word-spacing:6.287100px;}
.ws22e{word-spacing:6.292800px;}
.ws293{word-spacing:6.303600px;}
.ws1d{word-spacing:6.304200px;}
.wsd0{word-spacing:6.315600px;}
.ws283{word-spacing:6.318900px;}
.wsa6{word-spacing:6.327000px;}
.wsdf{word-spacing:6.344100px;}
.ws10{word-spacing:6.349800px;}
.ws280{word-spacing:6.359700px;}
.wse6{word-spacing:6.361200px;}
.ws1d4{word-spacing:6.366900px;}
.wse2{word-spacing:6.372600px;}
.ws1aa{word-spacing:6.378300px;}
.wsf6{word-spacing:6.384000px;}
.wse7{word-spacing:6.389700px;}
.ws52{word-spacing:6.395400px;}
.wsfe{word-spacing:6.401100px;}
.wsb{word-spacing:6.406800px;}
.ws65{word-spacing:6.418200px;}
.ws225{word-spacing:6.429600px;}
.ws92{word-spacing:6.435300px;}
.ws42{word-spacing:6.441000px;}
.ws43{word-spacing:6.446700px;}
.wscb{word-spacing:6.452400px;}
.ws54{word-spacing:6.463800px;}
.ws235{word-spacing:6.475200px;}
.ws1e9{word-spacing:6.480900px;}
.wsde{word-spacing:6.486600px;}
.ws182{word-spacing:6.498000px;}
.ws16{word-spacing:6.503700px;}
.wsa1{word-spacing:6.509400px;}
.ws6d{word-spacing:6.515100px;}
.ws162{word-spacing:6.520800px;}
.ws9b{word-spacing:6.537900px;}
.ws12{word-spacing:6.543600px;}
.ws1bc{word-spacing:6.549300px;}
.ws13e{word-spacing:6.560700px;}
.ws1f7{word-spacing:6.566400px;}
.ws13c{word-spacing:6.577800px;}
.ws88{word-spacing:6.583500px;}
.ws18a{word-spacing:6.589200px;}
.ws8a{word-spacing:6.600600px;}
.ws1f{word-spacing:6.606300px;}
.ws103{word-spacing:6.612000px;}
.ws48{word-spacing:6.617700px;}
.ws193{word-spacing:6.623400px;}
.ws14f{word-spacing:6.629100px;}
.ws108{word-spacing:6.651900px;}
.wsef{word-spacing:6.657600px;}
.wsa4{word-spacing:6.663300px;}
.wsb6{word-spacing:6.669000px;}
.wsd8{word-spacing:6.674700px;}
.ws172{word-spacing:6.686100px;}
.ws110{word-spacing:6.697500px;}
.ws22b{word-spacing:6.703200px;}
.wsa5{word-spacing:6.714600px;}
.ws59{word-spacing:6.720300px;}
.wsb3{word-spacing:6.737400px;}
.ws152{word-spacing:6.743100px;}
.ws27{word-spacing:6.760200px;}
.ws6f{word-spacing:6.765900px;}
.ws6e{word-spacing:6.771600px;}
.ws163{word-spacing:6.777300px;}
.wse{word-spacing:6.788700px;}
.ws124{word-spacing:6.794400px;}
.ws21{word-spacing:6.800100px;}
.ws220{word-spacing:6.805800px;}
.ws151{word-spacing:6.811500px;}
.ws5c{word-spacing:6.828600px;}
.ws3f{word-spacing:6.840000px;}
.ws4c{word-spacing:6.845700px;}
.ws7{word-spacing:6.851400px;}
.ws118{word-spacing:6.857100px;}
.ws1a7{word-spacing:6.868500px;}
.ws23a{word-spacing:6.874200px;}
.ws14c{word-spacing:6.879900px;}
.ws9{word-spacing:6.885600px;}
.ws86{word-spacing:6.891300px;}
.wsb4{word-spacing:6.897000px;}
.wsb9{word-spacing:6.902700px;}
.wsce{word-spacing:6.908400px;}
.ws7f{word-spacing:6.914100px;}
.ws198{word-spacing:6.919800px;}
.ws26{word-spacing:6.925500px;}
.ws8b{word-spacing:6.931200px;}
.ws11d{word-spacing:6.936900px;}
.ws68{word-spacing:6.942600px;}
.ws1a6{word-spacing:6.954000px;}
.ws143{word-spacing:6.959700px;}
.ws1b3{word-spacing:6.971100px;}
.ws101{word-spacing:6.976800px;}
.ws12a{word-spacing:6.982500px;}
.wsd3{word-spacing:6.993900px;}
.ws10d{word-spacing:7.005300px;}
.ws138{word-spacing:7.016700px;}
.ws2e{word-spacing:7.022400px;}
.ws177{word-spacing:7.028100px;}
.ws179{word-spacing:7.033800px;}
.wsdc{word-spacing:7.039500px;}
.ws89{word-spacing:7.045200px;}
.ws56{word-spacing:7.050900px;}
.ws6{word-spacing:7.056600px;}
.ws57{word-spacing:7.062300px;}
.ws115{word-spacing:7.073700px;}
.ws5d{word-spacing:7.079400px;}
.wse5{word-spacing:7.085100px;}
.ws6b{word-spacing:7.090800px;}
.ws6c{word-spacing:7.096500px;}
.ws121{word-spacing:7.102200px;}
.wsa2{word-spacing:7.107900px;}
.ws14b{word-spacing:7.113600px;}
.ws230{word-spacing:7.204800px;}
.ws196{word-spacing:8.299200px;}
.ws9d{word-spacing:13.685700px;}
.ws4a{word-spacing:14.073300px;}
.ws16f{word-spacing:14.506500px;}
._0{margin-left:-1.161600px;}
._1{width:1.926900px;}
._2{width:3.661800px;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:45.600000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:13.500000px;}
.y4b{bottom:66.045150px;}
.y2c{bottom:79.703250px;}
.y72{bottom:80.455050px;}
.y4a{bottom:82.245150px;}
.y73{bottom:83.575950px;}
.y20d{bottom:137.554875px;}
.y341{bottom:139.222350px;}
.y7a{bottom:139.731300px;}
.y306{bottom:140.187000px;}
.y27b{bottom:141.863925px;}
.ye0{bottom:142.137975px;}
.y32{bottom:143.621100px;}
.y18e{bottom:143.674800px;}
.yfb{bottom:143.936850px;}
.y145{bottom:144.072000px;}
.y2c8{bottom:145.358475px;}
.ye3{bottom:145.872450px;}
.y24a{bottom:147.495675px;}
.y1d8{bottom:148.842150px;}
.y2b2{bottom:150.308925px;}
.y17b{bottom:150.692775px;}
.y16d{bottom:153.280800px;}
.y340{bottom:153.622200px;}
.y79{bottom:155.631150px;}
.y305{bottom:156.087150px;}
.y27a{bottom:157.764075px;}
.y262{bottom:157.766925px;}
.y31{bottom:158.021100px;}
.ydf{bottom:158.038125px;}
.y20c{bottom:159.407250px;}
.yfa{bottom:159.837000px;}
.y144{bottom:159.972150px;}
.y2c7{bottom:161.258625px;}
.ye2{bottom:161.772600px;}
.y249{bottom:163.395825px;}
.y2b1{bottom:166.209075px;}
.y17a{bottom:167.988000px;}
.y16c{bottom:169.180950px;}
.y78{bottom:171.531300px;}
.y304{bottom:171.987300px;}
.y30{bottom:172.421100px;}
.y279{bottom:173.664225px;}
.y261{bottom:173.667075px;}
.yde{bottom:173.938275px;}
.y33f{bottom:173.975025px;}
.y20b{bottom:175.307400px;}
.yf9{bottom:175.737150px;}
.y143{bottom:175.872300px;}
.y2c6{bottom:177.158775px;}
.ye1{bottom:177.672750px;}
.y248{bottom:179.295975px;}
.y2b0{bottom:182.109225px;}
.y16b{bottom:185.081100px;}
.y2f{bottom:186.821100px;}
.y77{bottom:187.431450px;}
.y33e{bottom:188.374875px;}
.y278{bottom:189.564375px;}
.y260{bottom:189.567225px;}
.ydd{bottom:189.838425px;}
.y20a{bottom:191.207550px;}
.yf8{bottom:191.637300px;}
.y142{bottom:191.772450px;}
.y303{bottom:193.839675px;}
.y2af{bottom:198.009375px;}
.y2c5{bottom:199.011150px;}
.y16a{bottom:200.981250px;}
.y247{bottom:201.148350px;}
.y33d{bottom:202.774725px;}
.y76{bottom:203.331600px;}
.y277{bottom:205.464525px;}
.y25f{bottom:205.467375px;}
.ydc{bottom:205.738575px;}
.y209{bottom:207.107700px;}
.yf7{bottom:207.537450px;}
.y141{bottom:207.672600px;}
.y302{bottom:209.739825px;}
.y2ae{bottom:213.909525px;}
.y2c4{bottom:214.911300px;}
.y169{bottom:216.881400px;}
.y246{bottom:217.048500px;}
.y33c{bottom:217.174575px;}
.y2b{bottom:218.088375px;}
.y276{bottom:221.364675px;}
.y25e{bottom:221.367525px;}
.ydb{bottom:221.638725px;}
.y208{bottom:223.007850px;}
.yf6{bottom:223.437600px;}
.y15{bottom:225.186075px;}
.y301{bottom:225.639975px;}
.y2ad{bottom:229.809675px;}
.y2c3{bottom:230.811450px;}
.y33b{bottom:231.574425px;}
.y168{bottom:232.781550px;}
.y245{bottom:232.948650px;}
.y2a{bottom:233.988525px;}
.y275{bottom:237.264825px;}
.y25d{bottom:237.267675px;}
.yda{bottom:237.538875px;}
.y207{bottom:238.908000px;}
.yf5{bottom:239.337750px;}
.y14{bottom:241.086225px;}
.y300{bottom:241.540125px;}
.y2ac{bottom:245.709825px;}
.y2c2{bottom:246.711600px;}
.y167{bottom:248.681700px;}
.y244{bottom:248.848800px;}
.y29{bottom:249.888675px;}
.y33a{bottom:251.927250px;}
.y274{bottom:253.164975px;}
.y25c{bottom:253.167825px;}
.yd9{bottom:253.439025px;}
.y206{bottom:254.808150px;}
.yf4{bottom:255.237900px;}
.y2ff{bottom:257.440275px;}
.y37b{bottom:258.777900px;}
.y2ab{bottom:261.609975px;}
.y2c1{bottom:262.611750px;}
.y13{bottom:262.938600px;}
.y166{bottom:264.581850px;}
.y243{bottom:264.748950px;}
.y28{bottom:265.788825px;}
.y339{bottom:266.327100px;}
.y273{bottom:269.065125px;}
.y25b{bottom:269.067975px;}
.yd8{bottom:269.339175px;}
.y205{bottom:270.708300px;}
.y37a{bottom:273.177750px;}
.y2fe{bottom:273.340425px;}
.y3b3{bottom:276.518550px;}
.y2aa{bottom:277.510125px;}
.y2c0{bottom:278.511900px;}
.y12{bottom:278.838750px;}
.y165{bottom:280.482000px;}
.y242{bottom:280.649100px;}
.y338{bottom:280.726950px;}
.y27{bottom:281.688975px;}
.y25a{bottom:284.968125px;}
.yd7{bottom:285.239325px;}
.y204{bottom:286.608450px;}
.y379{bottom:287.577600px;}
.y2fd{bottom:289.240575px;}
.y272{bottom:290.917500px;}
.y3b2{bottom:292.418700px;}
.y2a9{bottom:293.410275px;}
.y2bf{bottom:294.412050px;}
.y11{bottom:294.738900px;}
.y337{bottom:295.126800px;}
.y164{bottom:296.382150px;}
.y241{bottom:296.549250px;}
.y26{bottom:297.589125px;}
.y259{bottom:300.868275px;}
.yd6{bottom:301.139475px;}
.y203{bottom:302.508600px;}
.y2fc{bottom:305.140725px;}
.y271{bottom:306.817650px;}
.y378{bottom:307.930425px;}
.y2a8{bottom:309.310425px;}
.y2be{bottom:310.312200px;}
.y10{bottom:310.639050px;}
.y163{bottom:312.282300px;}
.y240{bottom:312.449400px;}
.y25{bottom:313.489275px;}
.y336{bottom:315.479625px;}
.y258{bottom:316.768425px;}
.yd5{bottom:317.039625px;}
.y202{bottom:318.408750px;}
.y377{bottom:322.330275px;}
.y270{bottom:322.717800px;}
.y2a7{bottom:325.210575px;}
.y2bd{bottom:326.212350px;}
.yf{bottom:326.539200px;}
.y2fb{bottom:326.993100px;}
.y162{bottom:328.182450px;}
.y23f{bottom:328.349550px;}
.y3b1{bottom:329.346300px;}
.y24{bottom:329.389425px;}
.y335{bottom:329.879475px;}
.y3b0{bottom:330.772200px;}
.yd4{bottom:332.939775px;}
.y201{bottom:334.308900px;}
.y376{bottom:336.730125px;}
.y26f{bottom:338.617950px;}
.y257{bottom:338.620800px;}
.y2a6{bottom:341.110725px;}
.y2bc{bottom:342.112500px;}
.ye{bottom:342.439350px;}
.y2fa{bottom:342.893250px;}
.y23e{bottom:344.249700px;}
.y334{bottom:344.279325px;}
.y3af{bottom:345.172050px;}
.y23{bottom:345.289575px;}
.yd3{bottom:348.839925px;}
.y161{bottom:350.034825px;}
.y200{bottom:350.209050px;}
.y375{bottom:351.129975px;}
.y1d7{bottom:353.009475px;}
.y26e{bottom:354.518100px;}
.y256{bottom:354.520950px;}
.y2a5{bottom:357.010875px;}
.y2bb{bottom:358.012650px;}
.yd{bottom:358.339500px;}
.y333{bottom:358.679175px;}
.y2f9{bottom:358.793400px;}
.y3ae{bottom:359.571900px;}
.y23d{bottom:360.149850px;}
.y22{bottom:361.189725px;}
.y71{bottom:363.020325px;}
.y5e{bottom:363.020775px;}
.y160{bottom:365.934975px;}
.y1a5{bottom:366.106650px;}
.y1ff{bottom:366.109200px;}
.y1d6{bottom:368.909625px;}
.y26d{bottom:370.418250px;}
.y255{bottom:370.421100px;}
.yd2{bottom:370.692300px;}
.y374{bottom:371.482800px;}
.y2a4{bottom:372.911025px;}
.y332{bottom:373.079025px;}
.y2ba{bottom:373.912800px;}
.y3ad{bottom:373.971750px;}
.yc{bottom:374.239650px;}
.y2f8{bottom:374.693550px;}
.y23c{bottom:376.050000px;}
.y21{bottom:377.089875px;}
.y70{bottom:378.920475px;}
.y5d{bottom:378.920925px;}
.y1a4{bottom:382.006800px;}
.y1fe{bottom:382.009350px;}
.y1d5{bottom:384.809775px;}
.y373{bottom:385.882650px;}
.y26c{bottom:386.318400px;}
.y254{bottom:386.321250px;}
.yd1{bottom:386.592450px;}
.y3ac{bottom:388.371600px;}
.y2a3{bottom:388.811175px;}
.y2b9{bottom:389.812950px;}
.yb{bottom:390.139800px;}
.y2f7{bottom:390.593700px;}
.y23b{bottom:391.950150px;}
.y20{bottom:392.990025px;}
.y331{bottom:393.431850px;}
.y6f{bottom:394.820625px;}
.y5c{bottom:394.821075px;}
.y1a3{bottom:397.906950px;}
.y1fd{bottom:397.909500px;}
.y372{bottom:400.282500px;}
.y15f{bottom:400.543950px;}
.y1d4{bottom:400.709925px;}
.y26b{bottom:402.218550px;}
.y253{bottom:402.221400px;}
.yd0{bottom:402.492600px;}
.y3ab{bottom:402.771450px;}
.y2a2{bottom:404.711325px;}
.y2b8{bottom:405.713100px;}
.ya{bottom:406.039275px;}
.y2f6{bottom:406.491225px;}
.y330{bottom:407.831700px;}
.y23a{bottom:407.850300px;}
.y6e{bottom:410.720775px;}
.y5b{bottom:410.721225px;}
.y1a2{bottom:413.807100px;}
.y1fc{bottom:413.809650px;}
.y371{bottom:414.682350px;}
.y1f{bottom:414.842400px;}
.y15e{bottom:416.444100px;}
.y1d3{bottom:416.610075px;}
.y3aa{bottom:417.182625px;}
.y26a{bottom:418.118700px;}
.y252{bottom:418.121550px;}
.ycf{bottom:418.392750px;}
.y2a1{bottom:420.611475px;}
.y2b7{bottom:421.613250px;}
.y9{bottom:421.939425px;}
.y32f{bottom:422.231550px;}
.y2f5{bottom:422.391375px;}
.y239{bottom:423.750450px;}
.y6d{bottom:426.620925px;}
.y5a{bottom:426.621375px;}
.y370{bottom:429.082200px;}
.y1a1{bottom:429.707250px;}
.y1fb{bottom:429.709800px;}
.y1e{bottom:430.742550px;}
.y15d{bottom:432.344250px;}
.y1d2{bottom:432.510225px;}
.y269{bottom:434.018850px;}
.y251{bottom:434.021700px;}
.yce{bottom:434.292900px;}
.y2a0{bottom:436.511625px;}
.y32e{bottom:436.631400px;}
.y3a9{bottom:437.535450px;}
.y8{bottom:437.839575px;}
.y2f4{bottom:438.291525px;}
.y238{bottom:439.650600px;}
.y6c{bottom:442.521075px;}
.y59{bottom:442.521525px;}
.y2b6{bottom:443.465625px;}
.y1a0{bottom:445.607400px;}
.y1fa{bottom:445.609950px;}
.y1d{bottom:446.642700px;}
.y15c{bottom:448.244400px;}
.y1d1{bottom:448.410375px;}
.y36f{bottom:449.435025px;}
.y268{bottom:449.919000px;}
.y250{bottom:449.921850px;}
.ycd{bottom:450.193050px;}
.y3a8{bottom:451.935300px;}
.y29f{bottom:452.411775px;}
.y7{bottom:453.739725px;}
.y2f3{bottom:454.191675px;}
.y237{bottom:455.550750px;}
.y32d{bottom:456.984225px;}
.y6b{bottom:458.421225px;}
.y58{bottom:458.421675px;}
.y2b5{bottom:459.365775px;}
.y19f{bottom:461.507550px;}
.y1f9{bottom:461.510100px;}
.y1c{bottom:462.542850px;}
.y36e{bottom:463.834875px;}
.y15b{bottom:464.144550px;}
.y1d0{bottom:464.310525px;}
.y267{bottom:465.819150px;}
.y24f{bottom:465.822000px;}
.ycc{bottom:466.093200px;}
.y3a7{bottom:466.335150px;}
.y29e{bottom:468.311925px;}
.y6{bottom:469.639875px;}
.y32c{bottom:471.384075px;}
.y236{bottom:471.450900px;}
.ya4{bottom:474.265575px;}
.y6a{bottom:474.321375px;}
.y57{bottom:474.321825px;}
.y2b4{bottom:475.265925px;}
.y2f2{bottom:476.044050px;}
.y19e{bottom:477.407700px;}
.y1f8{bottom:477.410250px;}
.y36d{bottom:478.234725px;}
.y1b{bottom:478.442550px;}
.y15a{bottom:480.044700px;}
.y1cf{bottom:480.210675px;}
.y266{bottom:481.719300px;}
.y24e{bottom:481.722150px;}
.ycb{bottom:481.993350px;}
.y29d{bottom:484.212075px;}
.y5{bottom:485.540025px;}
.y32b{bottom:485.783925px;}
.y3a6{bottom:486.687975px;}
.y235{bottom:487.351050px;}
.y69{bottom:490.221525px;}
.y2b3{bottom:491.166075px;}
.y2f1{bottom:491.944200px;}
.y36c{bottom:492.634575px;}
.y19d{bottom:493.307850px;}
.y1f7{bottom:493.310400px;}
.y1a{bottom:494.342700px;}
.y159{bottom:495.944850px;}
.ya3{bottom:496.117950px;}
.y56{bottom:496.174200px;}
.y265{bottom:497.619450px;}
.y24d{bottom:497.622300px;}
.yca{bottom:497.893500px;}
.y29c{bottom:500.112225px;}
.y32a{bottom:500.183775px;}
.y3a5{bottom:501.087825px;}
.y4{bottom:501.440175px;}
.y1ce{bottom:502.063050px;}
.y234{bottom:503.251200px;}
.y68{bottom:506.121675px;}
.y2f0{bottom:507.844350px;}
.y19c{bottom:509.208000px;}
.y19{bottom:510.241650px;}
.y158{bottom:511.845000px;}
.ya2{bottom:512.018100px;}
.y55{bottom:512.074350px;}
.y36b{bottom:512.987400px;}
.y264{bottom:513.519600px;}
.y24c{bottom:513.522450px;}
.yc9{bottom:513.793650px;}
.y1f6{bottom:515.162775px;}
.y3a4{bottom:515.487675px;}
.y29b{bottom:516.012375px;}
.y3{bottom:517.340325px;}
.y1cd{bottom:517.963200px;}
.y329{bottom:520.536600px;}
.y67{bottom:522.021825px;}
.y2ef{bottom:523.744500px;}
.y233{bottom:525.103575px;}
.y19b{bottom:525.108150px;}
.y18{bottom:526.141800px;}
.y36a{bottom:527.387250px;}
.y157{bottom:527.745150px;}
.y140{bottom:527.912550px;}
.ya1{bottom:527.918250px;}
.y54{bottom:527.974500px;}
.y2d3{bottom:528.671100px;}
.y263{bottom:529.419750px;}
.y24b{bottom:529.422600px;}
.y1f5{bottom:531.062925px;}
.y29a{bottom:531.912525px;}
.y1cc{bottom:533.863350px;}
.y119{bottom:533.869050px;}
.y328{bottom:534.936450px;}
.yc8{bottom:535.646025px;}
.y3a3{bottom:535.840500px;}
.y2ee{bottom:539.644650px;}
.y232{bottom:541.003725px;}
.y19a{bottom:541.008300px;}
.y369{bottom:541.787100px;}
.y17{bottom:542.041950px;}
.y156{bottom:543.645300px;}
.y13f{bottom:543.812700px;}
.ya0{bottom:543.818400px;}
.y66{bottom:543.874200px;}
.y53{bottom:543.874500px;}
.y2d2{bottom:544.571250px;}
.y1f4{bottom:546.963075px;}
.y1cb{bottom:549.763500px;}
.y118{bottom:549.769200px;}
.y3a2{bottom:550.240350px;}
.yc7{bottom:551.546175px;}
.y299{bottom:553.764900px;}
.y2{bottom:555.092850px;}
.y2ed{bottom:555.544800px;}
.y368{bottom:556.186950px;}
.y231{bottom:556.903875px;}
.y199{bottom:556.908450px;}
.y16{bottom:557.942100px;}
.y13e{bottom:559.712850px;}
.y9f{bottom:559.718550px;}
.y52{bottom:559.773900px;}
.y65{bottom:559.774350px;}
.y2d1{bottom:560.471400px;}
.y327{bottom:562.086750px;}
.y1f3{bottom:562.863225px;}
.y3a1{bottom:564.640200px;}
.y155{bottom:565.497675px;}
.y1ca{bottom:565.663650px;}
.y117{bottom:565.669350px;}
.yc6{bottom:567.446325px;}
.y280{bottom:568.572000px;}
.y298{bottom:569.665050px;}
.y367{bottom:570.586800px;}
.y2ec{bottom:571.444950px;}
.y230{bottom:572.804025px;}
.y198{bottom:572.808600px;}
.y13d{bottom:575.613000px;}
.y51{bottom:575.674050px;}
.y64{bottom:575.674500px;}
.y2d0{bottom:576.371550px;}
.y1f2{bottom:578.763375px;}
.y3a0{bottom:579.040050px;}
.y154{bottom:581.397825px;}
.y1c9{bottom:581.563800px;}
.y116{bottom:581.569500px;}
.y9e{bottom:581.570925px;}
.yc5{bottom:583.346475px;}
.y27f{bottom:584.472150px;}
.y366{bottom:584.986650px;}
.y297{bottom:585.565200px;}
.y22f{bottom:588.704175px;}
.y197{bottom:588.708750px;}
.y50{bottom:591.574200px;}
.y63{bottom:591.574650px;}
.y2cf{bottom:592.271700px;}
.y2eb{bottom:593.297325px;}
.y1f1{bottom:594.663525px;}
.y153{bottom:597.297975px;}
.y1c8{bottom:597.463950px;}
.y13c{bottom:597.465375px;}
.y115{bottom:597.469650px;}
.y9d{bottom:597.471075px;}
.yc4{bottom:599.246625px;}
.y39f{bottom:599.392875px;}
.y27e{bottom:600.372300px;}
.y296{bottom:601.465350px;}
.y22e{bottom:604.604325px;}
.y196{bottom:604.608900px;}
.y326{bottom:605.200125px;}
.y365{bottom:605.339475px;}
.y4f{bottom:607.474350px;}
.y62{bottom:607.474650px;}
.y2ce{bottom:608.171850px;}
.y2ea{bottom:609.197475px;}
.y183{bottom:610.561125px;}
.y1f0{bottom:610.563675px;}
.y152{bottom:613.198125px;}
.y1c7{bottom:613.364100px;}
.y13b{bottom:613.365525px;}
.y114{bottom:613.369800px;}
.y9c{bottom:613.371225px;}
.y39e{bottom:613.792725px;}
.yc3{bottom:615.146775px;}
.y27d{bottom:616.272450px;}
.y295{bottom:617.365500px;}
.y49{bottom:617.713425px;}
.y364{bottom:619.739325px;}
.y22d{bottom:620.504475px;}
.y195{bottom:620.509050px;}
.y325{bottom:621.100275px;}
.y61{bottom:623.373975px;}
.y4e{bottom:623.374500px;}
.y2cd{bottom:624.072000px;}
.y2e9{bottom:625.097625px;}
.y182{bottom:626.461275px;}
.y1ef{bottom:626.463825px;}
.y39d{bottom:628.192575px;}
.y151{bottom:629.098275px;}
.y1c6{bottom:629.264250px;}
.y13a{bottom:629.265675px;}
.y113{bottom:629.269950px;}
.y9b{bottom:629.271375px;}
.yc2{bottom:631.046925px;}
.y27c{bottom:632.172600px;}
.y294{bottom:633.265650px;}
.y48{bottom:633.613575px;}
.y363{bottom:634.139175px;}
.y22c{bottom:636.404625px;}
.y60{bottom:639.274125px;}
.y4d{bottom:639.274650px;}
.y2cc{bottom:639.972150px;}
.y2e8{bottom:640.997775px;}
.y181{bottom:642.361425px;}
.y1ee{bottom:642.363975px;}
.y39c{bottom:642.592425px;}
.y178{bottom:644.994150px;}
.y150{bottom:644.998425px;}
.y1c5{bottom:645.164400px;}
.y139{bottom:645.165825px;}
.y112{bottom:645.170100px;}
.y9a{bottom:645.171525px;}
.yc1{bottom:646.947075px;}
.y362{bottom:648.539025px;}
.y293{bottom:649.165800px;}
.y324{bottom:649.755600px;}
.y22b{bottom:652.304775px;}
.y5f{bottom:655.174275px;}
.y4c{bottom:655.174800px;}
.y2cb{bottom:655.872300px;}
.y2e7{bottom:656.897925px;}
.y180{bottom:658.261575px;}
.y1ed{bottom:658.264125px;}
.y47{bottom:660.142800px;}
.y177{bottom:660.894300px;}
.y14f{bottom:660.898575px;}
.y1c4{bottom:661.064550px;}
.y138{bottom:661.065975px;}
.y111{bottom:661.070250px;}
.y99{bottom:661.071675px;}
.yc0{bottom:662.847225px;}
.y39b{bottom:662.945250px;}
.y292{bottom:665.065950px;}
.y22a{bottom:668.204925px;}
.y361{bottom:668.891850px;}
.y2ca{bottom:671.772450px;}
.y2e6{bottom:672.798075px;}
.y17f{bottom:674.161725px;}
.y46{bottom:676.042950px;}
.y176{bottom:676.794450px;}
.y14e{bottom:676.798725px;}
.y1c3{bottom:676.964700px;}
.y137{bottom:676.966125px;}
.y110{bottom:676.970400px;}
.y98{bottom:676.971825px;}
.y39a{bottom:677.345100px;}
.ybf{bottom:678.747375px;}
.y1ec{bottom:680.116500px;}
.y291{bottom:680.966100px;}
.y360{bottom:683.291700px;}
.y2c9{bottom:687.672600px;}
.y2e5{bottom:688.698225px;}
.y229{bottom:690.057300px;}
.y399{bottom:691.744950px;}
.y45{bottom:691.943100px;}
.y175{bottom:692.694600px;}
.y1c2{bottom:692.864850px;}
.y136{bottom:692.866275px;}
.y323{bottom:692.868975px;}
.y10f{bottom:692.870550px;}
.y97{bottom:692.871975px;}
.y75{bottom:693.764700px;}
.ybe{bottom:694.647525px;}
.y17e{bottom:696.014100px;}
.y1eb{bottom:696.016650px;}
.y290{bottom:696.866250px;}
.y35f{bottom:697.691550px;}
.y14d{bottom:698.651100px;}
.y228{bottom:705.957450px;}
.y398{bottom:706.144800px;}
.y44{bottom:707.843250px;}
.y1c1{bottom:708.765000px;}
.y135{bottom:708.766425px;}
.y322{bottom:708.769125px;}
.y194{bottom:708.770700px;}
.y96{bottom:708.772125px;}
.y74{bottom:709.664850px;}
.ybd{bottom:710.547675px;}
.y17d{bottom:711.914250px;}
.y1ea{bottom:711.916800px;}
.y35e{bottom:712.091400px;}
.y28f{bottom:712.766400px;}
.y174{bottom:714.546975px;}
.y14c{bottom:714.551250px;}
.y10e{bottom:714.722925px;}
.y2e4{bottom:717.353550px;}
.y397{bottom:720.544650px;}
.y227{bottom:721.857600px;}
.y43{bottom:723.743400px;}
.y1c0{bottom:724.665150px;}
.y134{bottom:724.666575px;}
.y321{bottom:724.669275px;}
.y193{bottom:724.670850px;}
.y95{bottom:724.672275px;}
.ybc{bottom:726.447825px;}
.y35d{bottom:726.491250px;}
.y1e9{bottom:727.816950px;}
.y28e{bottom:728.666550px;}
.y173{bottom:730.447125px;}
.y14b{bottom:730.451400px;}
.y18d{bottom:730.618800px;}
.y10d{bottom:730.623075px;}
.y226{bottom:737.757750px;}
.y42{bottom:739.643550px;}
.y1bf{bottom:740.565300px;}
.y133{bottom:740.566725px;}
.y320{bottom:740.569425px;}
.y192{bottom:740.571000px;}
.y94{bottom:740.572425px;}
.y35c{bottom:740.891100px;}
.y396{bottom:740.897475px;}
.ybb{bottom:742.347975px;}
.y1e8{bottom:743.717100px;}
.y172{bottom:746.347275px;}
.y14a{bottom:746.351550px;}
.y18c{bottom:746.518950px;}
.y10c{bottom:746.523225px;}
.y28d{bottom:750.518925px;}
.y225{bottom:753.657900px;}
.y35b{bottom:755.290950px;}
.y395{bottom:755.297325px;}
.y41{bottom:755.543550px;}
.y1be{bottom:756.465450px;}
.y132{bottom:756.466875px;}
.y191{bottom:756.471150px;}
.y93{bottom:756.472575px;}
.yba{bottom:758.248125px;}
.y1e7{bottom:759.617250px;}
.y2e3{bottom:760.466925px;}
.y171{bottom:762.247425px;}
.y149{bottom:762.251700px;}
.y18b{bottom:762.419100px;}
.y31f{bottom:762.421800px;}
.y10b{bottom:762.423375px;}
.y28c{bottom:766.419075px;}
.y224{bottom:769.558050px;}
.y35a{bottom:769.690800px;}
.y394{bottom:769.697175px;}
.y40{bottom:771.443700px;}
.y1bd{bottom:772.365600px;}
.y131{bottom:772.367025px;}
.y190{bottom:772.371300px;}
.y92{bottom:772.372725px;}
.yb9{bottom:774.148275px;}
.y1e6{bottom:775.517400px;}
.y2e2{bottom:776.367075px;}
.y170{bottom:778.147575px;}
.y148{bottom:778.151850px;}
.y18a{bottom:778.319250px;}
.y31e{bottom:778.321950px;}
.y10a{bottom:778.323525px;}
.y28b{bottom:782.319225px;}
.y393{bottom:784.097025px;}
.y223{bottom:785.458200px;}
.y130{bottom:788.267175px;}
.y91{bottom:788.272875px;}
.y359{bottom:790.043625px;}
.yb8{bottom:790.048425px;}
.y1e5{bottom:791.417550px;}
.y2e1{bottom:792.267225px;}
.y16f{bottom:794.047725px;}
.y147{bottom:794.052000px;}
.y1bc{bottom:794.217975px;}
.y189{bottom:794.219400px;}
.y31d{bottom:794.222100px;}
.y109{bottom:794.223675px;}
.y3f{bottom:797.972925px;}
.y28a{bottom:798.219375px;}
.y392{bottom:798.496875px;}
.y222{bottom:801.358350px;}
.y12f{bottom:804.167325px;}
.y90{bottom:804.173025px;}
.y358{bottom:804.443475px;}
.yb7{bottom:805.948575px;}
.y1e4{bottom:807.317400px;}
.y2e0{bottom:808.167375px;}
.y16e{bottom:809.947875px;}
.y146{bottom:809.952150px;}
.y1bb{bottom:810.118125px;}
.y188{bottom:810.119550px;}
.y31c{bottom:810.122250px;}
.y108{bottom:810.123825px;}
.y391{bottom:812.896725px;}
.y289{bottom:814.119525px;}
.y221{bottom:817.258500px;}
.y357{bottom:818.843325px;}
.y12e{bottom:820.067475px;}
.y8f{bottom:820.073175px;}
.yb6{bottom:821.848725px;}
.y1e3{bottom:823.217550px;}
.y2df{bottom:824.067525px;}
.y1ba{bottom:826.018275px;}
.y187{bottom:826.019700px;}
.y31b{bottom:826.022400px;}
.y107{bottom:826.023975px;}
.y288{bottom:830.019675px;}
.y356{bottom:833.243175px;}
.y390{bottom:833.249550px;}
.y12d{bottom:835.967625px;}
.y8e{bottom:835.973325px;}
.y3e{bottom:837.258750px;}
.yb5{bottom:837.748875px;}
.y220{bottom:839.110875px;}
.y1e2{bottom:839.115450px;}
.y2de{bottom:839.967675px;}
.y1b9{bottom:841.918425px;}
.y186{bottom:841.919850px;}
.y31a{bottom:841.922550px;}
.y106{bottom:841.924125px;}
.y287{bottom:845.919825px;}
.y355{bottom:847.643025px;}
.y38f{bottom:847.649400px;}
.y12c{bottom:851.867775px;}
.y8d{bottom:851.873475px;}
.y179{bottom:852.991650px;}
.y3d{bottom:853.158900px;}
.yb4{bottom:853.649025px;}
.y21f{bottom:855.011025px;}
.y1e1{bottom:855.015600px;}
.y2dd{bottom:855.867825px;}
.y1b8{bottom:857.818575px;}
.y185{bottom:857.820000px;}
.y319{bottom:857.822700px;}
.y105{bottom:857.824275px;}
.y286{bottom:861.819975px;}
.y354{bottom:862.042875px;}
.y38e{bottom:862.049250px;}
.y8c{bottom:867.773625px;}
.y3c{bottom:869.059050px;}
.yb3{bottom:869.549175px;}
.y21e{bottom:870.911175px;}
.y1e0{bottom:870.915750px;}
.y2dc{bottom:871.767975px;}
.y1b7{bottom:873.718725px;}
.y12b{bottom:873.720150px;}
.y318{bottom:873.722850px;}
.y104{bottom:873.724425px;}
.y38d{bottom:876.449100px;}
.y285{bottom:877.720125px;}
.y353{bottom:882.395700px;}
.y8b{bottom:883.673775px;}
.y3b{bottom:884.959200px;}
.yb2{bottom:885.449325px;}
.y21d{bottom:886.811325px;}
.y1df{bottom:886.815900px;}
.y1b6{bottom:889.618875px;}
.y12a{bottom:889.620300px;}
.y317{bottom:889.623000px;}
.y103{bottom:889.624575px;}
.y284{bottom:893.620275px;}
.y2db{bottom:893.620350px;}
.y352{bottom:896.795550px;}
.y38c{bottom:896.801925px;}
.y8a{bottom:899.573925px;}
.y3a{bottom:900.859350px;}
.y21c{bottom:902.711475px;}
.y1de{bottom:902.716050px;}
.y1b5{bottom:905.519025px;}
.y129{bottom:905.520450px;}
.y316{bottom:905.523150px;}
.y102{bottom:905.524725px;}
.y283{bottom:909.520425px;}
.y2da{bottom:909.520500px;}
.y351{bottom:911.195400px;}
.y38b{bottom:911.201775px;}
.yb1{bottom:914.104650px;}
.y39{bottom:916.759050px;}
.y21b{bottom:918.611625px;}
.y1dd{bottom:918.616200px;}
.y1b4{bottom:921.419175px;}
.y128{bottom:921.420600px;}
.y315{bottom:921.423300px;}
.y101{bottom:921.424875px;}
.y89{bottom:921.426150px;}
.y282{bottom:925.420575px;}
.y2d9{bottom:925.420650px;}
.y350{bottom:925.595250px;}
.y38a{bottom:925.601625px;}
.y38{bottom:932.659200px;}
.y1dc{bottom:934.516350px;}
.y1b3{bottom:937.319325px;}
.y127{bottom:937.320750px;}
.y314{bottom:937.323450px;}
.y100{bottom:937.325025px;}
.y88{bottom:937.326300px;}
.y389{bottom:940.001475px;}
.y21a{bottom:940.464000px;}
.y2d8{bottom:941.320800px;}
.y34f{bottom:945.948075px;}
.y281{bottom:947.272950px;}
.y37{bottom:948.559350px;}
.y1db{bottom:950.416500px;}
.y1b2{bottom:953.219475px;}
.y126{bottom:953.220900px;}
.y313{bottom:953.223600px;}
.y17c{bottom:953.225175px;}
.y87{bottom:953.226150px;}
.y219{bottom:956.364150px;}
.yb0{bottom:957.218025px;}
.y2d7{bottom:957.220875px;}
.yff{bottom:959.177400px;}
.y34e{bottom:960.347925px;}
.y388{bottom:960.354300px;}
.yea{bottom:963.173100px;}
.y36{bottom:964.459350px;}
.y1b1{bottom:969.119625px;}
.y125{bottom:969.121050px;}
.y312{bottom:969.123750px;}
.yf3{bottom:969.125325px;}
.y86{bottom:969.126300px;}
.y1da{bottom:972.268875px;}
.yaf{bottom:973.118175px;}
.y2d6{bottom:973.121025px;}
.y34d{bottom:974.747775px;}
.y387{bottom:974.754150px;}
.yfe{bottom:975.077550px;}
.ye9{bottom:979.073250px;}
.y35{bottom:980.360175px;}
.y1b0{bottom:985.019775px;}
.y184{bottom:985.021200px;}
.yf2{bottom:985.025475px;}
.y85{bottom:985.026300px;}
.y1d9{bottom:988.169025px;}
.y34c{bottom:989.147625px;}
.y386{bottom:989.154000px;}
.y218{bottom:990.973125px;}
.y124{bottom:990.973425px;}
.y311{bottom:990.976125px;}
.yfd{bottom:990.977700px;}
.yae{bottom:994.970550px;}
.ye8{bottom:994.973400px;}
.y1af{bottom:1000.919925px;}
.yf1{bottom:1000.925625px;}
.y84{bottom:1000.926300px;}
.y34b{bottom:1003.547475px;}
.y385{bottom:1003.553850px;}
.y217{bottom:1006.873275px;}
.y123{bottom:1006.873575px;}
.y310{bottom:1006.876275px;}
.yfc{bottom:1006.877850px;}
.y34{bottom:1006.889400px;}
.yad{bottom:1010.870700px;}
.ye7{bottom:1010.873550px;}
.y1ae{bottom:1016.820075px;}
.y18f{bottom:1016.825775px;}
.y83{bottom:1016.826450px;}
.y34a{bottom:1017.947325px;}
.y216{bottom:1022.773425px;}
.y122{bottom:1022.773725px;}
.y30f{bottom:1022.776425px;}
.yf0{bottom:1022.778000px;}
.y384{bottom:1023.906675px;}
.yac{bottom:1026.770850px;}
.y2d5{bottom:1026.773700px;}
.y1ad{bottom:1032.720225px;}
.ye6{bottom:1032.725925px;}
.y82{bottom:1032.726450px;}
.y349{bottom:1038.300150px;}
.y383{bottom:1038.306525px;}
.y215{bottom:1038.673575px;}
.y121{bottom:1038.673875px;}
.y30e{bottom:1038.676575px;}
.yef{bottom:1038.678150px;}
.y2d4{bottom:1042.673850px;}
.yab{bottom:1048.623225px;}
.y81{bottom:1048.626075px;}
.y348{bottom:1052.700000px;}
.y382{bottom:1052.706375px;}
.y1ac{bottom:1054.572600px;}
.y214{bottom:1054.573725px;}
.y120{bottom:1054.574025px;}
.y30d{bottom:1054.576725px;}
.yee{bottom:1054.578300px;}
.yaa{bottom:1064.523375px;}
.y80{bottom:1064.526225px;}
.y381{bottom:1067.106225px;}
.y33{bottom:1067.111700px;}
.y1ab{bottom:1070.472750px;}
.y213{bottom:1070.473875px;}
.y11f{bottom:1070.474175px;}
.y30c{bottom:1070.476875px;}
.yed{bottom:1070.478450px;}
.y347{bottom:1073.052825px;}
.ya9{bottom:1080.423525px;}
.y7f{bottom:1080.426375px;}
.y1aa{bottom:1086.372900px;}
.y212{bottom:1086.374025px;}
.y11e{bottom:1086.374325px;}
.y30b{bottom:1086.377025px;}
.yec{bottom:1086.378600px;}
.y346{bottom:1087.452675px;}
.y380{bottom:1087.459050px;}
.ya8{bottom:1096.323675px;}
.y7e{bottom:1096.326525px;}
.y345{bottom:1101.852525px;}
.y37f{bottom:1101.858900px;}
.y1a9{bottom:1102.273050px;}
.y211{bottom:1102.274175px;}
.y11d{bottom:1102.274475px;}
.y30a{bottom:1102.277175px;}
.yeb{bottom:1102.278750px;}
.y2e{bottom:1107.764700px;}
.ye5{bottom:1112.226675px;}
.y344{bottom:1116.252375px;}
.y37e{bottom:1116.258750px;}
.y1a8{bottom:1118.173200px;}
.y210{bottom:1118.174325px;}
.y11c{bottom:1118.174625px;}
.ya7{bottom:1118.176050px;}
.y309{bottom:1118.177325px;}
.y7d{bottom:1118.178900px;}
.ye4{bottom:1128.126825px;}
.y2d{bottom:1130.016600px;}
.y1a7{bottom:1134.073350px;}
.y20f{bottom:1134.074475px;}
.y11b{bottom:1134.074775px;}
.ya6{bottom:1134.076200px;}
.y308{bottom:1134.077475px;}
.y7c{bottom:1134.079050px;}
.y343{bottom:1136.605200px;}
.y37d{bottom:1136.611575px;}
.y1a6{bottom:1149.973500px;}
.y20e{bottom:1149.974625px;}
.y11a{bottom:1149.974925px;}
.ya5{bottom:1149.976350px;}
.y307{bottom:1149.977625px;}
.y7b{bottom:1149.979200px;}
.y342{bottom:1151.005050px;}
.y37c{bottom:1151.011425px;}
.h17{height:45.745605px;}
.ha{height:47.085938px;}
.h18{height:50.028809px;}
.h3{height:51.127441px;}
.h19{height:51.238770px;}
.h15{height:52.301653px;}
.h12{height:52.301953px;}
.h6{height:52.302553px;}
.h13{height:52.303453px;}
.h4{height:52.304653px;}
.h11{height:52.304953px;}
.h5{height:52.306153px;}
.h14{height:52.310953px;}
.h16{height:52.311853px;}
.h10{height:52.971680px;}
.hb{height:55.914551px;}
.hc{height:56.128941px;}
.hf{height:56.131641px;}
.hd{height:56.132241px;}
.he{height:56.133441px;}
.h2{height:57.445312px;}
.h7{height:59.200195px;}
.h9{height:64.743164px;}
.h8{height:66.515625px;}
.h1{height:1236.000000px;}
.h0{height:1264.500000px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.000000px;}
.x2{left:109.352400px;}
.xf{left:110.538900px;}
.x14{left:111.785250px;}
.xa{left:124.652100px;}
.x3{left:130.611975px;}
.x12{left:134.507925px;}
.x13{left:137.875425px;}
.xb{left:145.911675px;}
.x6{left:154.627050px;}
.x9{left:165.485850px;}
.x7{left:224.436900px;}
.x8{left:299.455800px;}
.x4{left:449.509350px;}
.x11{left:450.762000px;}
.xc{left:452.731650px;}
.x5{left:470.768700px;}
.x15{left:476.113200px;}
.x10{left:483.642000px;}
.x16{left:527.065050px;}
.xd{left:633.114330px;}
.xe{left:686.123100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.135733pt;}
.ls1e{letter-spacing:-2.400000pt;}
.ls75{letter-spacing:-1.018400pt;}
.ls72{letter-spacing:-1.013333pt;}
.ls73{letter-spacing:-0.998133pt;}
.ls74{letter-spacing:-0.886667pt;}
.ls28{letter-spacing:-0.765067pt;}
.ls25{letter-spacing:-0.760000pt;}
.ls32{letter-spacing:-0.511733pt;}
.ls27{letter-spacing:-0.506667pt;}
.ls6e{letter-spacing:-0.481333pt;}
.ls6c{letter-spacing:-0.461067pt;}
.ls55{letter-spacing:-0.420533pt;}
.ls6d{letter-spacing:-0.415467pt;}
.ls71{letter-spacing:-0.339467pt;}
.ls4e{letter-spacing:-0.334400pt;}
.ls4b{letter-spacing:-0.293867pt;}
.ls4a{letter-spacing:-0.278667pt;}
.ls6f{letter-spacing:-0.268533pt;}
.ls5b{letter-spacing:-0.258400pt;}
.ls33{letter-spacing:-0.253333pt;}
.ls79{letter-spacing:-0.243200pt;}
.ls5f{letter-spacing:-0.212800pt;}
.lsa8{letter-spacing:-0.172267pt;}
.ls5e{letter-spacing:-0.136800pt;}
.lsb0{letter-spacing:-0.126667pt;}
.ls7b{letter-spacing:-0.035467pt;}
.ls1a{letter-spacing:-0.011733pt;}
.ls5{letter-spacing:-0.010133pt;}
.ls1b{letter-spacing:-0.005867pt;}
.ls7{letter-spacing:-0.005067pt;}
.lsd5{letter-spacing:-0.004533pt;}
.ls1c{letter-spacing:-0.004267pt;}
.ls6{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.010133pt;}
.lseb{letter-spacing:0.013600pt;}
.ls51{letter-spacing:0.015200pt;}
.ls24{letter-spacing:0.020267pt;}
.ls36{letter-spacing:0.022400pt;}
.ls40{letter-spacing:0.025333pt;}
.ls35{letter-spacing:0.030400pt;}
.ls30{letter-spacing:0.035467pt;}
.ls87{letter-spacing:0.040533pt;}
.lsed{letter-spacing:0.045333pt;}
.ls2e{letter-spacing:0.055733pt;}
.lsf1{letter-spacing:0.058933pt;}
.ls8{letter-spacing:0.060800pt;}
.lsa0{letter-spacing:0.065867pt;}
.ls61{letter-spacing:0.076000pt;}
.ls8b{letter-spacing:0.081067pt;}
.lsd7{letter-spacing:0.081600pt;}
.ls1d{letter-spacing:0.086133pt;}
.lse5{letter-spacing:0.090667pt;}
.ls77{letter-spacing:0.091200pt;}
.lsb5{letter-spacing:0.096267pt;}
.lsdf{letter-spacing:0.099733pt;}
.ls6a{letter-spacing:0.101333pt;}
.lsf0{letter-spacing:0.104267pt;}
.ls4d{letter-spacing:0.106400pt;}
.ls7f{letter-spacing:0.116533pt;}
.lsb9{letter-spacing:0.126667pt;}
.ls68{letter-spacing:0.131733pt;}
.ls9d{letter-spacing:0.136800pt;}
.lsc5{letter-spacing:0.141867pt;}
.ls78{letter-spacing:0.146933pt;}
.lsd3{letter-spacing:0.149600pt;}
.ls98{letter-spacing:0.152000pt;}
.ls76{letter-spacing:0.157067pt;}
.ls3f{letter-spacing:0.162133pt;}
.ls4c{letter-spacing:0.167200pt;}
.lsd9{letter-spacing:0.167733pt;}
.ls18{letter-spacing:0.172267pt;}
.lsc3{letter-spacing:0.176800pt;}
.lsac{letter-spacing:0.177333pt;}
.ls94{letter-spacing:0.182400pt;}
.ls47{letter-spacing:0.187467pt;}
.ls9e{letter-spacing:0.192533pt;}
.lse9{letter-spacing:0.194933pt;}
.ls57{letter-spacing:0.197600pt;}
.lsda{letter-spacing:0.199467pt;}
.ls81{letter-spacing:0.202667pt;}
.ls49{letter-spacing:0.207733pt;}
.lsa{letter-spacing:0.212800pt;}
.ls8e{letter-spacing:0.217867pt;}
.lsd2{letter-spacing:0.222933pt;}
.lse3{letter-spacing:0.226667pt;}
.ls99{letter-spacing:0.228000pt;}
.lsea{letter-spacing:0.240267pt;}
.ls9{letter-spacing:0.243200pt;}
.ls2c{letter-spacing:0.248267pt;}
.lsc1{letter-spacing:0.253333pt;}
.ls38{letter-spacing:0.253867pt;}
.lse6{letter-spacing:0.262933pt;}
.ls2f{letter-spacing:0.263467pt;}
.lsf3{letter-spacing:0.267467pt;}
.ls7d{letter-spacing:0.278667pt;}
.lsb6{letter-spacing:0.283733pt;}
.ls17{letter-spacing:0.288800pt;}
.ls91{letter-spacing:0.293867pt;}
.lsc4{letter-spacing:0.294667pt;}
.lse{letter-spacing:0.298933pt;}
.lsd1{letter-spacing:0.304000pt;}
.ls37{letter-spacing:0.314133pt;}
.ls42{letter-spacing:0.319200pt;}
.ls19{letter-spacing:0.324267pt;}
.ls7e{letter-spacing:0.339467pt;}
.lse4{letter-spacing:0.340000pt;}
.ls5a{letter-spacing:0.344533pt;}
.lsd8{letter-spacing:0.349067pt;}
.ls21{letter-spacing:0.354667pt;}
.lse8{letter-spacing:0.358133pt;}
.ls83{letter-spacing:0.359733pt;}
.ls52{letter-spacing:0.364800pt;}
.lscb{letter-spacing:0.369867pt;}
.ls54{letter-spacing:0.374933pt;}
.lscf{letter-spacing:0.380000pt;}
.lsd6{letter-spacing:0.394400pt;}
.ls56{letter-spacing:0.400267pt;}
.ls63{letter-spacing:0.405333pt;}
.ls64{letter-spacing:0.415467pt;}
.lsa9{letter-spacing:0.420533pt;}
.lsef{letter-spacing:0.444267pt;}
.ls16{letter-spacing:0.456000pt;}
.ls23{letter-spacing:0.457067pt;}
.ls95{letter-spacing:0.461067pt;}
.ls5c{letter-spacing:0.466133pt;}
.ls26{letter-spacing:0.471200pt;}
.lsb8{letter-spacing:0.496533pt;}
.lsa2{letter-spacing:0.511733pt;}
.ls10{letter-spacing:0.516800pt;}
.ls84{letter-spacing:0.537067pt;}
.ls41{letter-spacing:0.542133pt;}
.lsb7{letter-spacing:0.547200pt;}
.ls12{letter-spacing:0.552267pt;}
.lse2{letter-spacing:0.553067pt;}
.ls8f{letter-spacing:0.557333pt;}
.lsdb{letter-spacing:0.562133pt;}
.ls22{letter-spacing:0.567467pt;}
.lsb4{letter-spacing:0.572533pt;}
.lsce{letter-spacing:0.577600pt;}
.ls48{letter-spacing:0.582667pt;}
.ls2d{letter-spacing:0.587733pt;}
.lsba{letter-spacing:0.608000pt;}
.lsc8{letter-spacing:0.618133pt;}
.ls3d{letter-spacing:0.628267pt;}
.lsc{letter-spacing:0.638400pt;}
.ls1{letter-spacing:0.643733pt;}
.ls66{letter-spacing:0.658667pt;}
.lsc2{letter-spacing:0.685867pt;}
.lsf{letter-spacing:0.689067pt;}
.ls62{letter-spacing:0.694133pt;}
.ls53{letter-spacing:0.709333pt;}
.lsaa{letter-spacing:0.719467pt;}
.ls15{letter-spacing:0.729600pt;}
.lscc{letter-spacing:0.739733pt;}
.lsde{letter-spacing:0.743467pt;}
.ls8d{letter-spacing:0.744800pt;}
.ls13{letter-spacing:0.760000pt;}
.ls8a{letter-spacing:0.765067pt;}
.lsb{letter-spacing:0.790400pt;}
.ls96{letter-spacing:0.795467pt;}
.ls0{letter-spacing:0.800533pt;}
.ls9c{letter-spacing:0.810667pt;}
.ls45{letter-spacing:0.815733pt;}
.lsec{letter-spacing:0.820533pt;}
.lsab{letter-spacing:0.825867pt;}
.ls8c{letter-spacing:0.830933pt;}
.lsb2{letter-spacing:0.836000pt;}
.lscd{letter-spacing:0.851200pt;}
.lsd{letter-spacing:0.856267pt;}
.lsc7{letter-spacing:0.866400pt;}
.lsa4{letter-spacing:0.881600pt;}
.lsa3{letter-spacing:0.891733pt;}
.lse0{letter-spacing:0.915733pt;}
.lsbf{letter-spacing:0.932267pt;}
.ls7a{letter-spacing:0.937333pt;}
.lsc0{letter-spacing:0.947467pt;}
.ls82{letter-spacing:0.952533pt;}
.lsdd{letter-spacing:0.979200pt;}
.lse7{letter-spacing:0.992800pt;}
.ls97{letter-spacing:0.998133pt;}
.lsc9{letter-spacing:1.008267pt;}
.ls65{letter-spacing:1.013333pt;}
.ls85{letter-spacing:1.023467pt;}
.lsca{letter-spacing:1.028533pt;}
.lsaf{letter-spacing:1.038667pt;}
.ls3e{letter-spacing:1.043733pt;}
.lsbc{letter-spacing:1.074133pt;}
.ls14{letter-spacing:1.079200pt;}
.ls2{letter-spacing:1.094400pt;}
.ls7c{letter-spacing:1.104533pt;}
.lsa7{letter-spacing:1.109600pt;}
.ls29{letter-spacing:1.119733pt;}
.lsf5{letter-spacing:1.124267pt;}
.lsb3{letter-spacing:1.124800pt;}
.ls9b{letter-spacing:1.129867pt;}
.lse1{letter-spacing:1.137867pt;}
.ls86{letter-spacing:1.145067pt;}
.ls88{letter-spacing:1.175467pt;}
.ls44{letter-spacing:1.180533pt;}
.lsad{letter-spacing:1.190667pt;}
.lsbb{letter-spacing:1.200800pt;}
.ls31{letter-spacing:1.210933pt;}
.ls69{letter-spacing:1.216000pt;}
.ls60{letter-spacing:1.236267pt;}
.lsee{letter-spacing:1.260267pt;}
.ls89{letter-spacing:1.266667pt;}
.ls67{letter-spacing:1.281867pt;}
.lsae{letter-spacing:1.286933pt;}
.ls2a{letter-spacing:1.307200pt;}
.ls9f{letter-spacing:1.312267pt;}
.ls58{letter-spacing:1.327467pt;}
.ls70{letter-spacing:1.342667pt;}
.ls5d{letter-spacing:1.347733pt;}
.lsc6{letter-spacing:1.403467pt;}
.ls11{letter-spacing:1.413600pt;}
.ls4f{letter-spacing:1.418667pt;}
.lsd0{letter-spacing:1.464267pt;}
.ls43{letter-spacing:1.504800pt;}
.ls90{letter-spacing:1.560533pt;}
.lsbd{letter-spacing:1.590933pt;}
.ls6b{letter-spacing:1.672000pt;}
.ls59{letter-spacing:1.722667pt;}
.lsf2{letter-spacing:1.822400pt;}
.lsf4{letter-spacing:1.831467pt;}
.ls93{letter-spacing:1.854400pt;}
.lsa1{letter-spacing:1.894933pt;}
.ls46{letter-spacing:1.935467pt;}
.ls80{letter-spacing:2.082400pt;}
.lsd4{letter-spacing:2.148800pt;}
.ls9a{letter-spacing:2.401600pt;}
.lsa6{letter-spacing:2.411733pt;}
.lsdc{letter-spacing:2.416267pt;}
.lsa5{letter-spacing:2.432000pt;}
.lsb1{letter-spacing:2.751200pt;}
.ls3b{letter-spacing:3.293333pt;}
.lsbe{letter-spacing:3.384533pt;}
.ls2b{letter-spacing:3.800000pt;}
.ls1f{letter-spacing:12.035200pt;}
.ls3a{letter-spacing:12.666667pt;}
.ls92{letter-spacing:12.980267pt;}
.ls34{letter-spacing:13.913067pt;}
.ls4{letter-spacing:14.360533pt;}
.ls39{letter-spacing:15.905067pt;}
.ls20{letter-spacing:17.027200pt;}
.ls3{letter-spacing:19.878400pt;}
.ls3c{letter-spacing:23.205333pt;}
.ws219{word-spacing:-13.522933pt;}
.ws3a{word-spacing:-13.021333pt;}
.ws21a{word-spacing:-12.661600pt;}
.ws64{word-spacing:-12.160000pt;}
.ws1d7{word-spacing:-12.154933pt;}
.ws0{word-spacing:-10.133333pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.004267pt;}
.ws27d{word-spacing:0.004533pt;}
.ws29{word-spacing:0.005067pt;}
.ws1{word-spacing:0.015200pt;}
.ws1c{word-spacing:0.020267pt;}
.ws1b6{word-spacing:0.030400pt;}
.ws18f{word-spacing:0.040533pt;}
.ws20e{word-spacing:0.045600pt;}
.wsd5{word-spacing:0.050667pt;}
.wsea{word-spacing:0.065867pt;}
.wsca{word-spacing:0.076000pt;}
.ws123{word-spacing:0.081067pt;}
.ws170{word-spacing:0.086133pt;}
.ws5f{word-spacing:0.091200pt;}
.ws8f{word-spacing:0.111467pt;}
.ws1de{word-spacing:0.152000pt;}
.ws1ec{word-spacing:0.177333pt;}
.wsc6{word-spacing:0.182400pt;}
.ws298{word-spacing:0.190400pt;}
.wscc{word-spacing:0.192533pt;}
.wsf7{word-spacing:0.217867pt;}
.ws72{word-spacing:0.222933pt;}
.ws76{word-spacing:0.228000pt;}
.ws161{word-spacing:0.243200pt;}
.ws285{word-spacing:0.253867pt;}
.wsf{word-spacing:0.258400pt;}
.ws156{word-spacing:0.278667pt;}
.ws8c{word-spacing:0.283733pt;}
.ws238{word-spacing:0.288800pt;}
.ws13b{word-spacing:0.293867pt;}
.ws1e{word-spacing:0.298933pt;}
.ws169{word-spacing:0.309067pt;}
.ws19e{word-spacing:0.314133pt;}
.ws61{word-spacing:0.319200pt;}
.ws75{word-spacing:0.349600pt;}
.ws17f{word-spacing:0.354667pt;}
.ws125{word-spacing:0.359733pt;}
.ws1ca{word-spacing:0.374933pt;}
.ws183{word-spacing:0.390133pt;}
.ws20b{word-spacing:0.395200pt;}
.ws119{word-spacing:0.405333pt;}
.ws7a{word-spacing:0.410400pt;}
.ws24e{word-spacing:0.412533pt;}
.ws144{word-spacing:0.435733pt;}
.ws16c{word-spacing:0.445867pt;}
.ws8{word-spacing:0.461067pt;}
.ws15c{word-spacing:0.466133pt;}
.ws186{word-spacing:0.476267pt;}
.ws15b{word-spacing:0.481333pt;}
.wsdd{word-spacing:0.506667pt;}
.ws223{word-spacing:0.516800pt;}
.ws297{word-spacing:0.539467pt;}
.ws24d{word-spacing:0.580267pt;}
.ws239{word-spacing:0.602933pt;}
.ws3{word-spacing:0.608000pt;}
.ws205{word-spacing:0.643467pt;}
.ws10c{word-spacing:0.648533pt;}
.ws284{word-spacing:0.652800pt;}
.ws98{word-spacing:0.653600pt;}
.ws16e{word-spacing:0.663733pt;}
.ws222{word-spacing:0.673867pt;}
.ws214{word-spacing:0.714400pt;}
.ws41{word-spacing:0.734667pt;}
.wsfd{word-spacing:0.744800pt;}
.ws12b{word-spacing:0.749867pt;}
.ws85{word-spacing:0.754933pt;}
.ws10b{word-spacing:0.765067pt;}
.ws113{word-spacing:0.770133pt;}
.ws1f4{word-spacing:0.775200pt;}
.ws80{word-spacing:0.785333pt;}
.wsf5{word-spacing:0.800533pt;}
.wsee{word-spacing:0.815733pt;}
.wsae{word-spacing:0.820800pt;}
.ws82{word-spacing:0.846133pt;}
.ws29a{word-spacing:0.874933pt;}
.ws24c{word-spacing:0.893067pt;}
.ws79{word-spacing:0.901867pt;}
.ws25d{word-spacing:0.902133pt;}
.ws1a4{word-spacing:0.912000pt;}
.ws1a3{word-spacing:0.922133pt;}
.wsbe{word-spacing:0.927200pt;}
.ws2b{word-spacing:0.967733pt;}
.ws2c{word-spacing:0.972800pt;}
.ws1d2{word-spacing:0.988000pt;}
.ws135{word-spacing:0.993067pt;}
.ws28e{word-spacing:1.001867pt;}
.ws19b{word-spacing:1.018400pt;}
.ws27b{word-spacing:1.020000pt;}
.ws240{word-spacing:1.024533pt;}
.ws18d{word-spacing:1.028533pt;}
.ws209{word-spacing:1.038667pt;}
.ws159{word-spacing:1.043733pt;}
.ws1c7{word-spacing:1.048800pt;}
.wsf1{word-spacing:1.058933pt;}
.wsab{word-spacing:1.064000pt;}
.ws130{word-spacing:1.074133pt;}
.ws1cb{word-spacing:1.084267pt;}
.ws23d{word-spacing:1.088000pt;}
.wse0{word-spacing:1.094400pt;}
.wsa9{word-spacing:1.109600pt;}
.ws1c1{word-spacing:1.129867pt;}
.ws181{word-spacing:1.145067pt;}
.ws1fc{word-spacing:1.170400pt;}
.ws12e{word-spacing:1.180533pt;}
.ws253{word-spacing:1.219467pt;}
.ws203{word-spacing:1.221067pt;}
.ws3e{word-spacing:1.231200pt;}
.ws6a{word-spacing:1.241333pt;}
.ws69{word-spacing:1.246400pt;}
.wsfb{word-spacing:1.251467pt;}
.ws14e{word-spacing:1.266667pt;}
.wsd7{word-spacing:1.271733pt;}
.ws1e6{word-spacing:1.276800pt;}
.ws1b9{word-spacing:1.281867pt;}
.ws94{word-spacing:1.286933pt;}
.ws60{word-spacing:1.292000pt;}
.ws13d{word-spacing:1.297067pt;}
.wscf{word-spacing:1.302133pt;}
.ws215{word-spacing:1.312267pt;}
.ws1e0{word-spacing:1.327467pt;}
.wsd4{word-spacing:1.337600pt;}
.ws112{word-spacing:1.342667pt;}
.ws36{word-spacing:1.347733pt;}
.ws25b{word-spacing:1.355467pt;}
.ws155{word-spacing:1.362933pt;}
.ws26c{word-spacing:1.364533pt;}
.ws270{word-spacing:1.369067pt;}
.ws91{word-spacing:1.423733pt;}
.ws1ab{word-spacing:1.428800pt;}
.ws107{word-spacing:1.433867pt;}
.ws31{word-spacing:1.438933pt;}
.ws7c{word-spacing:1.449067pt;}
.ws100{word-spacing:1.454133pt;}
.ws1a2{word-spacing:1.459200pt;}
.ws3c{word-spacing:1.464267pt;}
.ws1f1{word-spacing:1.474400pt;}
.ws1ed{word-spacing:1.494667pt;}
.ws176{word-spacing:1.509867pt;}
.ws1dd{word-spacing:1.514933pt;}
.ws11e{word-spacing:1.530133pt;}
.ws258{word-spacing:1.536800pt;}
.ws24f{word-spacing:1.550400pt;}
.ws38{word-spacing:1.560533pt;}
.wsc3{word-spacing:1.570667pt;}
.ws104{word-spacing:1.616267pt;}
.ws290{word-spacing:1.618400pt;}
.wsc2{word-spacing:1.621333pt;}
.ws15a{word-spacing:1.636533pt;}
.ws195{word-spacing:1.641600pt;}
.ws24{word-spacing:1.666933pt;}
.ws247{word-spacing:1.686400pt;}
.ws1a{word-spacing:1.692267pt;}
.ws29f{word-spacing:1.695467pt;}
.ws271{word-spacing:1.700000pt;}
.ws17{word-spacing:1.732800pt;}
.ws1db{word-spacing:1.742933pt;}
.ws16b{word-spacing:1.763200pt;}
.ws141{word-spacing:1.768267pt;}
.ws19f{word-spacing:1.773333pt;}
.wsc1{word-spacing:1.778400pt;}
.ws81{word-spacing:1.783467pt;}
.ws47{word-spacing:1.798667pt;}
.ws22a{word-spacing:1.803733pt;}
.ws157{word-spacing:1.824000pt;}
.ws26b{word-spacing:1.826933pt;}
.ws1ad{word-spacing:1.839200pt;}
.ws18b{word-spacing:1.854400pt;}
.ws14d{word-spacing:1.859467pt;}
.ws139{word-spacing:1.884800pt;}
.ws278{word-spacing:1.908533pt;}
.ws111{word-spacing:1.910133pt;}
.wsfa{word-spacing:1.915200pt;}
.ws1c0{word-spacing:1.920267pt;}
.ws200{word-spacing:1.925333pt;}
.ws1ea{word-spacing:1.930400pt;}
.wsbb{word-spacing:1.935467pt;}
.ws96{word-spacing:1.950667pt;}
.wsac{word-spacing:1.955733pt;}
.ws187{word-spacing:1.965867pt;}
.ws53{word-spacing:1.976000pt;}
.ws1fa{word-spacing:1.991200pt;}
.ws17c{word-spacing:1.996267pt;}
.ws2a{word-spacing:2.001333pt;}
.ws1f8{word-spacing:2.006400pt;}
.ws132{word-spacing:2.052000pt;}
.ws30{word-spacing:2.057067pt;}
.ws2f{word-spacing:2.062133pt;}
.ws1b0{word-spacing:2.072267pt;}
.ws1f9{word-spacing:2.077333pt;}
.ws114{word-spacing:2.097600pt;}
.ws289{word-spacing:2.108000pt;}
.ws194{word-spacing:2.143200pt;}
.ws5a{word-spacing:2.148267pt;}
.ws14{word-spacing:2.153333pt;}
.ws188{word-spacing:2.163467pt;}
.ws9e{word-spacing:2.173600pt;}
.ws15f{word-spacing:2.183733pt;}
.wsb2{word-spacing:2.188800pt;}
.ws217{word-spacing:2.209067pt;}
.ws67{word-spacing:2.229333pt;}
.ws120{word-spacing:2.234400pt;}
.ws5b{word-spacing:2.239467pt;}
.ws185{word-spacing:2.244533pt;}
.ws70{word-spacing:2.249600pt;}
.ws71{word-spacing:2.254667pt;}
.ws102{word-spacing:2.259733pt;}
.ws28a{word-spacing:2.275733pt;}
.ws1eb{word-spacing:2.295200pt;}
.ws1a5{word-spacing:2.310400pt;}
.ws5{word-spacing:2.320533pt;}
.ws140{word-spacing:2.325600pt;}
.ws26f{word-spacing:2.330133pt;}
.ws9c{word-spacing:2.330667pt;}
.ws19c{word-spacing:2.335733pt;}
.wsc4{word-spacing:2.350933pt;}
.ws252{word-spacing:2.357333pt;}
.ws122{word-spacing:2.366133pt;}
.ws1cd{word-spacing:2.371200pt;}
.ws8e{word-spacing:2.381333pt;}
.ws129{word-spacing:2.386400pt;}
.ws128{word-spacing:2.391467pt;}
.ws133{word-spacing:2.396533pt;}
.ws1e7{word-spacing:2.401600pt;}
.ws23{word-spacing:2.406667pt;}
.ws1f0{word-spacing:2.411733pt;}
.ws22c{word-spacing:2.416800pt;}
.wsf3{word-spacing:2.421867pt;}
.ws1d8{word-spacing:2.437067pt;}
.ws40{word-spacing:2.452267pt;}
.ws265{word-spacing:2.452533pt;}
.ws266{word-spacing:2.457067pt;}
.ws1b5{word-spacing:2.462400pt;}
.ws62{word-spacing:2.472533pt;}
.ws273{word-spacing:2.479733pt;}
.ws131{word-spacing:2.482667pt;}
.ws24b{word-spacing:2.484267pt;}
.ws210{word-spacing:2.523200pt;}
.ws37{word-spacing:2.568800pt;}
.ws228{word-spacing:2.573867pt;}
.wsa0{word-spacing:2.578933pt;}
.wsaf{word-spacing:2.589067pt;}
.ws1fe{word-spacing:2.604267pt;}
.ws263{word-spacing:2.606667pt;}
.ws1da{word-spacing:2.614400pt;}
.wsb0{word-spacing:2.619467pt;}
.ws26d{word-spacing:2.633867pt;}
.ws28b{word-spacing:2.642933pt;}
.wsc{word-spacing:2.660000pt;}
.ws27c{word-spacing:2.670133pt;}
.ws17d{word-spacing:2.695467pt;}
.ws127{word-spacing:2.710667pt;}
.ws134{word-spacing:2.720800pt;}
.ws267{word-spacing:2.738133pt;}
.ws272{word-spacing:2.769867pt;}
.ws254{word-spacing:2.783467pt;}
.wsc9{word-spacing:2.812000pt;}
.ws158{word-spacing:2.827200pt;}
.ws165{word-spacing:2.847467pt;}
.ws231{word-spacing:2.852533pt;}
.ws1d5{word-spacing:2.857600pt;}
.ws55{word-spacing:2.867733pt;}
.ws221{word-spacing:2.872800pt;}
.ws202{word-spacing:2.877867pt;}
.ws174{word-spacing:2.898133pt;}
.ws1a9{word-spacing:2.908267pt;}
.ws167{word-spacing:2.913333pt;}
.ws12d{word-spacing:2.938667pt;}
.ws20c{word-spacing:2.948800pt;}
.ws1fd{word-spacing:2.994400pt;}
.ws1af{word-spacing:2.999467pt;}
.ws145{word-spacing:3.014667pt;}
.ws227{word-spacing:3.019733pt;}
.ws93{word-spacing:3.040000pt;}
.ws22{word-spacing:3.050133pt;}
.ws1f5{word-spacing:3.060267pt;}
.ws1e2{word-spacing:3.065333pt;}
.ws1a1{word-spacing:3.070400pt;}
.wsd1{word-spacing:3.075467pt;}
.ws117{word-spacing:3.095733pt;}
.ws21b{word-spacing:3.105867pt;}
.ws32{word-spacing:3.110933pt;}
.ws262{word-spacing:3.118933pt;}
.ws197{word-spacing:3.121067pt;}
.wsc0{word-spacing:3.126133pt;}
.ws168{word-spacing:3.146400pt;}
.ws208{word-spacing:3.161600pt;}
.ws207{word-spacing:3.176800pt;}
.ws17b{word-spacing:3.181867pt;}
.ws160{word-spacing:3.202133pt;}
.wsc5{word-spacing:3.207200pt;}
.ws149{word-spacing:3.212267pt;}
.ws73{word-spacing:3.237600pt;}
.ws19d{word-spacing:3.242667pt;}
.ws294{word-spacing:3.250400pt;}
.wsc8{word-spacing:3.257867pt;}
.ws178{word-spacing:3.273067pt;}
.ws95{word-spacing:3.283200pt;}
.ws22d{word-spacing:3.298400pt;}
.ws218{word-spacing:3.313600pt;}
.ws147{word-spacing:3.359200pt;}
.ws286{word-spacing:3.381867pt;}
.ws213{word-spacing:3.399733pt;}
.ws1a8{word-spacing:3.404800pt;}
.ws11{word-spacing:3.409867pt;}
.ws2d{word-spacing:3.445333pt;}
.ws14a{word-spacing:3.450400pt;}
.ws13a{word-spacing:3.455467pt;}
.ws232{word-spacing:3.460533pt;}
.ws1b8{word-spacing:3.480800pt;}
.ws257{word-spacing:3.481600pt;}
.ws87{word-spacing:3.485867pt;}
.ws84{word-spacing:3.511200pt;}
.ws23c{word-spacing:3.513333pt;}
.ws29b{word-spacing:3.517867pt;}
.wsfc{word-spacing:3.546667pt;}
.wsf8{word-spacing:3.556800pt;}
.ws1d0{word-spacing:3.561867pt;}
.ws1e1{word-spacing:3.566933pt;}
.ws184{word-spacing:3.577067pt;}
.ws245{word-spacing:3.581333pt;}
.ws150{word-spacing:3.617600pt;}
.ws1e8{word-spacing:3.637867pt;}
.ws190{word-spacing:3.653067pt;}
.wsec{word-spacing:3.663200pt;}
.ws39{word-spacing:3.668267pt;}
.ws1b1{word-spacing:3.673333pt;}
.ws201{word-spacing:3.678400pt;}
.ws11a{word-spacing:3.693600pt;}
.ws1ce{word-spacing:3.698667pt;}
.ws211{word-spacing:3.703733pt;}
.ws274{word-spacing:3.721867pt;}
.ws1b7{word-spacing:3.724000pt;}
.ws236{word-spacing:3.729067pt;}
.wsd6{word-spacing:3.739200pt;}
.ws9a{word-spacing:3.749333pt;}
.ws4e{word-spacing:3.769600pt;}
.ws4d{word-spacing:3.774667pt;}
.ws83{word-spacing:3.779733pt;}
.wsa7{word-spacing:3.794933pt;}
.ws21e{word-spacing:3.800000pt;}
.ws126{word-spacing:3.815200pt;}
.ws29c{word-spacing:3.830667pt;}
.wsdb{word-spacing:3.835467pt;}
.ws295{word-spacing:3.844267pt;}
.ws20{word-spacing:3.855733pt;}
.ws264{word-spacing:3.866933pt;}
.wsed{word-spacing:3.870933pt;}
.ws1c2{word-spacing:3.876000pt;}
.ws1c6{word-spacing:3.901333pt;}
.wsf9{word-spacing:3.911467pt;}
.ws1c8{word-spacing:3.921600pt;}
.ws1ee{word-spacing:3.926667pt;}
.ws1ac{word-spacing:3.931733pt;}
.wse3{word-spacing:3.941867pt;}
.ws50{word-spacing:3.967200pt;}
.wsb1{word-spacing:3.987467pt;}
.ws226{word-spacing:4.028000pt;}
.ws1c4{word-spacing:4.033067pt;}
.wse8{word-spacing:4.043200pt;}
.ws4b{word-spacing:4.053333pt;}
.wsb7{word-spacing:4.063467pt;}
.ws1f3{word-spacing:4.073600pt;}
.ws136{word-spacing:4.078667pt;}
.ws16a{word-spacing:4.083733pt;}
.ws22f{word-spacing:4.088800pt;}
.ws1d1{word-spacing:4.098933pt;}
.ws137{word-spacing:4.104000pt;}
.ws192{word-spacing:4.109067pt;}
.ws243{word-spacing:4.129867pt;}
.ws12c{word-spacing:4.205333pt;}
.ws146{word-spacing:4.235733pt;}
.ws142{word-spacing:4.245867pt;}
.ws153{word-spacing:4.250933pt;}
.wseb{word-spacing:4.256000pt;}
.wsa8{word-spacing:4.261067pt;}
.wsbd{word-spacing:4.271200pt;}
.ws12f{word-spacing:4.276267pt;}
.ws58{word-spacing:4.286400pt;}
.ws1cc{word-spacing:4.291467pt;}
.wsc7{word-spacing:4.296533pt;}
.ws18e{word-spacing:4.301600pt;}
.ws199{word-spacing:4.306667pt;}
.wsb5{word-spacing:4.332000pt;}
.ws27f{word-spacing:4.347467pt;}
.ws7d{word-spacing:4.392800pt;}
.ws287{word-spacing:4.406400pt;}
.ws99{word-spacing:4.408000pt;}
.ws180{word-spacing:4.428267pt;}
.ws1ba{word-spacing:4.433333pt;}
.wsb8{word-spacing:4.443467pt;}
.ws1bb{word-spacing:4.458667pt;}
.ws29d{word-spacing:4.460800pt;}
.wsd9{word-spacing:4.463733pt;}
.ws191{word-spacing:4.478933pt;}
.ws11b{word-spacing:4.484000pt;}
.ws291{word-spacing:4.506133pt;}
.ws49{word-spacing:4.509333pt;}
.ws9f{word-spacing:4.519467pt;}
.ws259{word-spacing:4.524267pt;}
.ws29e{word-spacing:4.542400pt;}
.ws109{word-spacing:4.554933pt;}
.ws234{word-spacing:4.565067pt;}
.ws11f{word-spacing:4.580267pt;}
.ws25a{word-spacing:4.596800pt;}
.wsbf{word-spacing:4.610667pt;}
.ws1df{word-spacing:4.630933pt;}
.ws233{word-spacing:4.656267pt;}
.ws10e{word-spacing:4.661333pt;}
.ws21f{word-spacing:4.666400pt;}
.wsa3{word-spacing:4.671467pt;}
.ws277{word-spacing:4.673867pt;}
.ws292{word-spacing:4.682933pt;}
.ws13{word-spacing:4.696800pt;}
.ws206{word-spacing:4.706933pt;}
.ws21d{word-spacing:4.712000pt;}
.ws1c5{word-spacing:4.717067pt;}
.ws1f6{word-spacing:4.727200pt;}
.wsd2{word-spacing:4.732267pt;}
.ws212{word-spacing:4.737333pt;}
.ws20a{word-spacing:4.742400pt;}
.wse4{word-spacing:4.747467pt;}
.ws256{word-spacing:4.750933pt;}
.wsf2{word-spacing:4.752533pt;}
.ws4{word-spacing:4.757600pt;}
.ws18c{word-spacing:4.772800pt;}
.ws237{word-spacing:4.777867pt;}
.ws1dc{word-spacing:4.788000pt;}
.wsf4{word-spacing:4.793067pt;}
.ws282{word-spacing:4.796267pt;}
.ws35{word-spacing:4.808267pt;}
.ws279{word-spacing:4.814400pt;}
.ws74{word-spacing:4.828533pt;}
.ws189{word-spacing:4.833600pt;}
.ws281{word-spacing:4.841600pt;}
.ws1e5{word-spacing:4.853867pt;}
.ws106{word-spacing:4.864000pt;}
.ws1fb{word-spacing:4.869067pt;}
.ws15d{word-spacing:4.874133pt;}
.ws4f{word-spacing:4.889333pt;}
.ws1cf{word-spacing:4.909600pt;}
.ws7e{word-spacing:4.914667pt;}
.ws296{word-spacing:4.918667pt;}
.ws15{word-spacing:4.919733pt;}
.ws2a0{word-spacing:4.923200pt;}
.ws21c{word-spacing:4.929867pt;}
.ws23f{word-spacing:4.945867pt;}
.ws10a{word-spacing:4.970400pt;}
.ws105{word-spacing:4.975467pt;}
.ws255{word-spacing:4.977600pt;}
.ws44{word-spacing:4.985600pt;}
.ws250{word-spacing:4.995733pt;}
.wsba{word-spacing:5.005867pt;}
.ws1b4{word-spacing:5.016000pt;}
.ws216{word-spacing:5.021067pt;}
.ws46{word-spacing:5.026133pt;}
.ws1d9{word-spacing:5.041333pt;}
.ws25{word-spacing:5.046400pt;}
.wsff{word-spacing:5.051467pt;}
.ws116{word-spacing:5.056533pt;}
.ws33{word-spacing:5.061600pt;}
.ws171{word-spacing:5.066667pt;}
.ws154{word-spacing:5.086933pt;}
.ws90{word-spacing:5.092000pt;}
.ws7b{word-spacing:5.097067pt;}
.ws275{word-spacing:5.100000pt;}
.ws3d{word-spacing:5.102133pt;}
.ws276{word-spacing:5.104533pt;}
.ws25c{word-spacing:5.109067pt;}
.ws20f{word-spacing:5.117333pt;}
.ws5e{word-spacing:5.122400pt;}
.ws28c{word-spacing:5.122667pt;}
.ws204{word-spacing:5.132533pt;}
.ws1ef{word-spacing:5.137600pt;}
.wsbc{word-spacing:5.142667pt;}
.ws261{word-spacing:5.145333pt;}
.wscd{word-spacing:5.147733pt;}
.ws77{word-spacing:5.152800pt;}
.ws16d{word-spacing:5.157867pt;}
.ws26a{word-spacing:5.168000pt;}
.ws269{word-spacing:5.172533pt;}
.ws166{word-spacing:5.183200pt;}
.ws173{word-spacing:5.188267pt;}
.ws13f{word-spacing:5.203467pt;}
.ws45{word-spacing:5.213600pt;}
.ws28d{word-spacing:5.222400pt;}
.ws1c9{word-spacing:5.223733pt;}
.wse1{word-spacing:5.228800pt;}
.ws18{word-spacing:5.238933pt;}
.ws1b{word-spacing:5.254133pt;}
.ws1ff{word-spacing:5.259200pt;}
.ws1d3{word-spacing:5.264267pt;}
.ws244{word-spacing:5.272267pt;}
.wsad{word-spacing:5.274400pt;}
.ws66{word-spacing:5.289600pt;}
.ws288{word-spacing:5.290400pt;}
.ws1f2{word-spacing:5.294667pt;}
.ws229{word-spacing:5.304800pt;}
.ws27a{word-spacing:5.308533pt;}
.ws164{word-spacing:5.309867pt;}
.ws248{word-spacing:5.317600pt;}
.wsf0{word-spacing:5.320000pt;}
.ws1bf{word-spacing:5.325067pt;}
.ws24a{word-spacing:5.326667pt;}
.ws1a0{word-spacing:5.335200pt;}
.ws34{word-spacing:5.340267pt;}
.ws1bd{word-spacing:5.350400pt;}
.ws242{word-spacing:5.367467pt;}
.ws241{word-spacing:5.372000pt;}
.ws1e4{word-spacing:5.380800pt;}
.ws20d{word-spacing:5.385867pt;}
.wsaa{word-spacing:5.396000pt;}
.ws299{word-spacing:5.399200pt;}
.ws10f{word-spacing:5.401067pt;}
.ws26e{word-spacing:5.403733pt;}
.ws27e{word-spacing:5.421867pt;}
.ws25e{word-spacing:5.435467pt;}
.ws51{word-spacing:5.436533pt;}
.ws1be{word-spacing:5.441600pt;}
.ws1ae{word-spacing:5.446667pt;}
.ws1c3{word-spacing:5.451733pt;}
.ws19a{word-spacing:5.456800pt;}
.ws224{word-spacing:5.461867pt;}
.ws25f{word-spacing:5.462667pt;}
.ws15e{word-spacing:5.466933pt;}
.ws260{word-spacing:5.467200pt;}
.wsd{word-spacing:5.477067pt;}
.ws148{word-spacing:5.482133pt;}
.ws11c{word-spacing:5.487200pt;}
.ws23e{word-spacing:5.489867pt;}
.wsda{word-spacing:5.492267pt;}
.ws249{word-spacing:5.494400pt;}
.ws1e3{word-spacing:5.497333pt;}
.ws17a{word-spacing:5.502400pt;}
.ws1d6{word-spacing:5.507467pt;}
.ws63{word-spacing:5.512533pt;}
.ws23b{word-spacing:5.517067pt;}
.ws78{word-spacing:5.517600pt;}
.ws1b2{word-spacing:5.522667pt;}
.wsa{word-spacing:5.532800pt;}
.wse9{word-spacing:5.537867pt;}
.ws8d{word-spacing:5.542933pt;}
.ws3b{word-spacing:5.553067pt;}
.ws28f{word-spacing:5.557867pt;}
.ws251{word-spacing:5.566933pt;}
.ws175{word-spacing:5.568267pt;}
.ws19{word-spacing:5.573333pt;}
.ws268{word-spacing:5.576000pt;}
.ws97{word-spacing:5.578400pt;}
.ws246{word-spacing:5.580533pt;}
.ws17e{word-spacing:5.588533pt;}
.ws22e{word-spacing:5.593600pt;}
.ws293{word-spacing:5.603200pt;}
.ws1d{word-spacing:5.603733pt;}
.wsd0{word-spacing:5.613867pt;}
.ws283{word-spacing:5.616800pt;}
.wsa6{word-spacing:5.624000pt;}
.wsdf{word-spacing:5.639200pt;}
.ws10{word-spacing:5.644267pt;}
.ws280{word-spacing:5.653067pt;}
.wse6{word-spacing:5.654400pt;}
.ws1d4{word-spacing:5.659467pt;}
.wse2{word-spacing:5.664533pt;}
.ws1aa{word-spacing:5.669600pt;}
.wsf6{word-spacing:5.674667pt;}
.wse7{word-spacing:5.679733pt;}
.ws52{word-spacing:5.684800pt;}
.wsfe{word-spacing:5.689867pt;}
.wsb{word-spacing:5.694933pt;}
.ws65{word-spacing:5.705067pt;}
.ws225{word-spacing:5.715200pt;}
.ws92{word-spacing:5.720267pt;}
.ws42{word-spacing:5.725333pt;}
.ws43{word-spacing:5.730400pt;}
.wscb{word-spacing:5.735467pt;}
.ws54{word-spacing:5.745600pt;}
.ws235{word-spacing:5.755733pt;}
.ws1e9{word-spacing:5.760800pt;}
.wsde{word-spacing:5.765867pt;}
.ws182{word-spacing:5.776000pt;}
.ws16{word-spacing:5.781067pt;}
.wsa1{word-spacing:5.786133pt;}
.ws6d{word-spacing:5.791200pt;}
.ws162{word-spacing:5.796267pt;}
.ws9b{word-spacing:5.811467pt;}
.ws12{word-spacing:5.816533pt;}
.ws1bc{word-spacing:5.821600pt;}
.ws13e{word-spacing:5.831733pt;}
.ws1f7{word-spacing:5.836800pt;}
.ws13c{word-spacing:5.846933pt;}
.ws88{word-spacing:5.852000pt;}
.ws18a{word-spacing:5.857067pt;}
.ws8a{word-spacing:5.867200pt;}
.ws1f{word-spacing:5.872267pt;}
.ws103{word-spacing:5.877333pt;}
.ws48{word-spacing:5.882400pt;}
.ws193{word-spacing:5.887467pt;}
.ws14f{word-spacing:5.892533pt;}
.ws108{word-spacing:5.912800pt;}
.wsef{word-spacing:5.917867pt;}
.wsa4{word-spacing:5.922933pt;}
.wsb6{word-spacing:5.928000pt;}
.wsd8{word-spacing:5.933067pt;}
.ws172{word-spacing:5.943200pt;}
.ws110{word-spacing:5.953333pt;}
.ws22b{word-spacing:5.958400pt;}
.wsa5{word-spacing:5.968533pt;}
.ws59{word-spacing:5.973600pt;}
.wsb3{word-spacing:5.988800pt;}
.ws152{word-spacing:5.993867pt;}
.ws27{word-spacing:6.009067pt;}
.ws6f{word-spacing:6.014133pt;}
.ws6e{word-spacing:6.019200pt;}
.ws163{word-spacing:6.024267pt;}
.wse{word-spacing:6.034400pt;}
.ws124{word-spacing:6.039467pt;}
.ws21{word-spacing:6.044533pt;}
.ws220{word-spacing:6.049600pt;}
.ws151{word-spacing:6.054667pt;}
.ws5c{word-spacing:6.069867pt;}
.ws3f{word-spacing:6.080000pt;}
.ws4c{word-spacing:6.085067pt;}
.ws7{word-spacing:6.090133pt;}
.ws118{word-spacing:6.095200pt;}
.ws1a7{word-spacing:6.105333pt;}
.ws23a{word-spacing:6.110400pt;}
.ws14c{word-spacing:6.115467pt;}
.ws9{word-spacing:6.120533pt;}
.ws86{word-spacing:6.125600pt;}
.wsb4{word-spacing:6.130667pt;}
.wsb9{word-spacing:6.135733pt;}
.wsce{word-spacing:6.140800pt;}
.ws7f{word-spacing:6.145867pt;}
.ws198{word-spacing:6.150933pt;}
.ws26{word-spacing:6.156000pt;}
.ws8b{word-spacing:6.161067pt;}
.ws11d{word-spacing:6.166133pt;}
.ws68{word-spacing:6.171200pt;}
.ws1a6{word-spacing:6.181333pt;}
.ws143{word-spacing:6.186400pt;}
.ws1b3{word-spacing:6.196533pt;}
.ws101{word-spacing:6.201600pt;}
.ws12a{word-spacing:6.206667pt;}
.wsd3{word-spacing:6.216800pt;}
.ws10d{word-spacing:6.226933pt;}
.ws138{word-spacing:6.237067pt;}
.ws2e{word-spacing:6.242133pt;}
.ws177{word-spacing:6.247200pt;}
.ws179{word-spacing:6.252267pt;}
.wsdc{word-spacing:6.257333pt;}
.ws89{word-spacing:6.262400pt;}
.ws56{word-spacing:6.267467pt;}
.ws6{word-spacing:6.272533pt;}
.ws57{word-spacing:6.277600pt;}
.ws115{word-spacing:6.287733pt;}
.ws5d{word-spacing:6.292800pt;}
.wse5{word-spacing:6.297867pt;}
.ws6b{word-spacing:6.302933pt;}
.ws6c{word-spacing:6.308000pt;}
.ws121{word-spacing:6.313067pt;}
.wsa2{word-spacing:6.318133pt;}
.ws14b{word-spacing:6.323200pt;}
.ws230{word-spacing:6.404267pt;}
.ws196{word-spacing:7.377067pt;}
.ws9d{word-spacing:12.165067pt;}
.ws4a{word-spacing:12.509600pt;}
.ws16f{word-spacing:12.894667pt;}
._0{margin-left:-1.032533pt;}
._1{width:1.712800pt;}
._2{width:3.254933pt;}
.fs1{font-size:40.533333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:12.000000pt;}
.y4b{bottom:58.706800pt;}
.y2c{bottom:70.847333pt;}
.y72{bottom:71.515600pt;}
.y4a{bottom:73.106800pt;}
.y73{bottom:74.289733pt;}
.y20d{bottom:122.271000pt;}
.y341{bottom:123.753200pt;}
.y7a{bottom:124.205600pt;}
.y306{bottom:124.610667pt;}
.y27b{bottom:126.101267pt;}
.ye0{bottom:126.344867pt;}
.y32{bottom:127.663200pt;}
.y18e{bottom:127.710933pt;}
.yfb{bottom:127.943867pt;}
.y145{bottom:128.064000pt;}
.y2c8{bottom:129.207533pt;}
.ye3{bottom:129.664400pt;}
.y24a{bottom:131.107267pt;}
.y1d8{bottom:132.304133pt;}
.y2b2{bottom:133.607933pt;}
.y17b{bottom:133.949133pt;}
.y16d{bottom:136.249600pt;}
.y340{bottom:136.553067pt;}
.y79{bottom:138.338800pt;}
.y305{bottom:138.744133pt;}
.y27a{bottom:140.234733pt;}
.y262{bottom:140.237267pt;}
.y31{bottom:140.463200pt;}
.ydf{bottom:140.478333pt;}
.y20c{bottom:141.695333pt;}
.yfa{bottom:142.077333pt;}
.y144{bottom:142.197467pt;}
.y2c7{bottom:143.341000pt;}
.ye2{bottom:143.797867pt;}
.y249{bottom:145.240733pt;}
.y2b1{bottom:147.741400pt;}
.y17a{bottom:149.322667pt;}
.y16c{bottom:150.383067pt;}
.y78{bottom:152.472267pt;}
.y304{bottom:152.877600pt;}
.y30{bottom:153.263200pt;}
.y279{bottom:154.368200pt;}
.y261{bottom:154.370733pt;}
.yde{bottom:154.611800pt;}
.y33f{bottom:154.644467pt;}
.y20b{bottom:155.828800pt;}
.yf9{bottom:156.210800pt;}
.y143{bottom:156.330933pt;}
.y2c6{bottom:157.474467pt;}
.ye1{bottom:157.931333pt;}
.y248{bottom:159.374200pt;}
.y2b0{bottom:161.874867pt;}
.y16b{bottom:164.516533pt;}
.y2f{bottom:166.063200pt;}
.y77{bottom:166.605733pt;}
.y33e{bottom:167.444333pt;}
.y278{bottom:168.501667pt;}
.y260{bottom:168.504200pt;}
.ydd{bottom:168.745267pt;}
.y20a{bottom:169.962267pt;}
.yf8{bottom:170.344267pt;}
.y142{bottom:170.464400pt;}
.y303{bottom:172.301933pt;}
.y2af{bottom:176.008333pt;}
.y2c5{bottom:176.898800pt;}
.y16a{bottom:178.650000pt;}
.y247{bottom:178.798533pt;}
.y33d{bottom:180.244200pt;}
.y76{bottom:180.739200pt;}
.y277{bottom:182.635133pt;}
.y25f{bottom:182.637667pt;}
.ydc{bottom:182.878733pt;}
.y209{bottom:184.095733pt;}
.yf7{bottom:184.477733pt;}
.y141{bottom:184.597867pt;}
.y302{bottom:186.435400pt;}
.y2ae{bottom:190.141800pt;}
.y2c4{bottom:191.032267pt;}
.y169{bottom:192.783467pt;}
.y246{bottom:192.932000pt;}
.y33c{bottom:193.044067pt;}
.y2b{bottom:193.856333pt;}
.y276{bottom:196.768600pt;}
.y25e{bottom:196.771133pt;}
.ydb{bottom:197.012200pt;}
.y208{bottom:198.229200pt;}
.yf6{bottom:198.611200pt;}
.y15{bottom:200.165400pt;}
.y301{bottom:200.568867pt;}
.y2ad{bottom:204.275267pt;}
.y2c3{bottom:205.165733pt;}
.y33b{bottom:205.843933pt;}
.y168{bottom:206.916933pt;}
.y245{bottom:207.065467pt;}
.y2a{bottom:207.989800pt;}
.y275{bottom:210.902067pt;}
.y25d{bottom:210.904600pt;}
.yda{bottom:211.145667pt;}
.y207{bottom:212.362667pt;}
.yf5{bottom:212.744667pt;}
.y14{bottom:214.298867pt;}
.y300{bottom:214.702333pt;}
.y2ac{bottom:218.408733pt;}
.y2c2{bottom:219.299200pt;}
.y167{bottom:221.050400pt;}
.y244{bottom:221.198933pt;}
.y29{bottom:222.123267pt;}
.y33a{bottom:223.935333pt;}
.y274{bottom:225.035533pt;}
.y25c{bottom:225.038067pt;}
.yd9{bottom:225.279133pt;}
.y206{bottom:226.496133pt;}
.yf4{bottom:226.878133pt;}
.y2ff{bottom:228.835800pt;}
.y37b{bottom:230.024800pt;}
.y2ab{bottom:232.542200pt;}
.y2c1{bottom:233.432667pt;}
.y13{bottom:233.723200pt;}
.y166{bottom:235.183867pt;}
.y243{bottom:235.332400pt;}
.y28{bottom:236.256733pt;}
.y339{bottom:236.735200pt;}
.y273{bottom:239.169000pt;}
.y25b{bottom:239.171533pt;}
.yd8{bottom:239.412600pt;}
.y205{bottom:240.629600pt;}
.y37a{bottom:242.824667pt;}
.y2fe{bottom:242.969267pt;}
.y3b3{bottom:245.794267pt;}
.y2aa{bottom:246.675667pt;}
.y2c0{bottom:247.566133pt;}
.y12{bottom:247.856667pt;}
.y165{bottom:249.317333pt;}
.y242{bottom:249.465867pt;}
.y338{bottom:249.535067pt;}
.y27{bottom:250.390200pt;}
.y25a{bottom:253.305000pt;}
.yd7{bottom:253.546067pt;}
.y204{bottom:254.763067pt;}
.y379{bottom:255.624533pt;}
.y2fd{bottom:257.102733pt;}
.y272{bottom:258.593333pt;}
.y3b2{bottom:259.927733pt;}
.y2a9{bottom:260.809133pt;}
.y2bf{bottom:261.699600pt;}
.y11{bottom:261.990133pt;}
.y337{bottom:262.334933pt;}
.y164{bottom:263.450800pt;}
.y241{bottom:263.599333pt;}
.y26{bottom:264.523667pt;}
.y259{bottom:267.438467pt;}
.yd6{bottom:267.679533pt;}
.y203{bottom:268.896533pt;}
.y2fc{bottom:271.236200pt;}
.y271{bottom:272.726800pt;}
.y378{bottom:273.715933pt;}
.y2a8{bottom:274.942600pt;}
.y2be{bottom:275.833067pt;}
.y10{bottom:276.123600pt;}
.y163{bottom:277.584267pt;}
.y240{bottom:277.732800pt;}
.y25{bottom:278.657133pt;}
.y336{bottom:280.426333pt;}
.y258{bottom:281.571933pt;}
.yd5{bottom:281.813000pt;}
.y202{bottom:283.030000pt;}
.y377{bottom:286.515800pt;}
.y270{bottom:286.860267pt;}
.y2a7{bottom:289.076067pt;}
.y2bd{bottom:289.966533pt;}
.yf{bottom:290.257067pt;}
.y2fb{bottom:290.660533pt;}
.y162{bottom:291.717733pt;}
.y23f{bottom:291.866267pt;}
.y3b1{bottom:292.752267pt;}
.y24{bottom:292.790600pt;}
.y335{bottom:293.226200pt;}
.y3b0{bottom:294.019733pt;}
.yd4{bottom:295.946467pt;}
.y201{bottom:297.163467pt;}
.y376{bottom:299.315667pt;}
.y26f{bottom:300.993733pt;}
.y257{bottom:300.996267pt;}
.y2a6{bottom:303.209533pt;}
.y2bc{bottom:304.100000pt;}
.ye{bottom:304.390533pt;}
.y2fa{bottom:304.794000pt;}
.y23e{bottom:305.999733pt;}
.y334{bottom:306.026067pt;}
.y3af{bottom:306.819600pt;}
.y23{bottom:306.924067pt;}
.yd3{bottom:310.079933pt;}
.y161{bottom:311.142067pt;}
.y200{bottom:311.296933pt;}
.y375{bottom:312.115533pt;}
.y1d7{bottom:313.786200pt;}
.y26e{bottom:315.127200pt;}
.y256{bottom:315.129733pt;}
.y2a5{bottom:317.343000pt;}
.y2bb{bottom:318.233467pt;}
.yd{bottom:318.524000pt;}
.y333{bottom:318.825933pt;}
.y2f9{bottom:318.927467pt;}
.y3ae{bottom:319.619467pt;}
.y23d{bottom:320.133200pt;}
.y22{bottom:321.057533pt;}
.y71{bottom:322.684733pt;}
.y5e{bottom:322.685133pt;}
.y160{bottom:325.275533pt;}
.y1a5{bottom:325.428133pt;}
.y1ff{bottom:325.430400pt;}
.y1d6{bottom:327.919667pt;}
.y26d{bottom:329.260667pt;}
.y255{bottom:329.263200pt;}
.yd2{bottom:329.504267pt;}
.y374{bottom:330.206933pt;}
.y2a4{bottom:331.476467pt;}
.y332{bottom:331.625800pt;}
.y2ba{bottom:332.366933pt;}
.y3ad{bottom:332.419333pt;}
.yc{bottom:332.657467pt;}
.y2f8{bottom:333.060933pt;}
.y23c{bottom:334.266667pt;}
.y21{bottom:335.191000pt;}
.y70{bottom:336.818200pt;}
.y5d{bottom:336.818600pt;}
.y1a4{bottom:339.561600pt;}
.y1fe{bottom:339.563867pt;}
.y1d5{bottom:342.053133pt;}
.y373{bottom:343.006800pt;}
.y26c{bottom:343.394133pt;}
.y254{bottom:343.396667pt;}
.yd1{bottom:343.637733pt;}
.y3ac{bottom:345.219200pt;}
.y2a3{bottom:345.609933pt;}
.y2b9{bottom:346.500400pt;}
.yb{bottom:346.790933pt;}
.y2f7{bottom:347.194400pt;}
.y23b{bottom:348.400133pt;}
.y20{bottom:349.324467pt;}
.y331{bottom:349.717200pt;}
.y6f{bottom:350.951667pt;}
.y5c{bottom:350.952067pt;}
.y1a3{bottom:353.695067pt;}
.y1fd{bottom:353.697333pt;}
.y372{bottom:355.806667pt;}
.y15f{bottom:356.039067pt;}
.y1d4{bottom:356.186600pt;}
.y26b{bottom:357.527600pt;}
.y253{bottom:357.530133pt;}
.yd0{bottom:357.771200pt;}
.y3ab{bottom:358.019067pt;}
.y2a2{bottom:359.743400pt;}
.y2b8{bottom:360.633867pt;}
.ya{bottom:360.923800pt;}
.y2f6{bottom:361.325533pt;}
.y330{bottom:362.517067pt;}
.y23a{bottom:362.533600pt;}
.y6e{bottom:365.085133pt;}
.y5b{bottom:365.085533pt;}
.y1a2{bottom:367.828533pt;}
.y1fc{bottom:367.830800pt;}
.y371{bottom:368.606533pt;}
.y1f{bottom:368.748800pt;}
.y15e{bottom:370.172533pt;}
.y1d3{bottom:370.320067pt;}
.y3aa{bottom:370.829000pt;}
.y26a{bottom:371.661067pt;}
.y252{bottom:371.663600pt;}
.ycf{bottom:371.904667pt;}
.y2a1{bottom:373.876867pt;}
.y2b7{bottom:374.767333pt;}
.y9{bottom:375.057267pt;}
.y32f{bottom:375.316933pt;}
.y2f5{bottom:375.459000pt;}
.y239{bottom:376.667067pt;}
.y6d{bottom:379.218600pt;}
.y5a{bottom:379.219000pt;}
.y370{bottom:381.406400pt;}
.y1a1{bottom:381.962000pt;}
.y1fb{bottom:381.964267pt;}
.y1e{bottom:382.882267pt;}
.y15d{bottom:384.306000pt;}
.y1d2{bottom:384.453533pt;}
.y269{bottom:385.794533pt;}
.y251{bottom:385.797067pt;}
.yce{bottom:386.038133pt;}
.y2a0{bottom:388.010333pt;}
.y32e{bottom:388.116800pt;}
.y3a9{bottom:388.920400pt;}
.y8{bottom:389.190733pt;}
.y2f4{bottom:389.592467pt;}
.y238{bottom:390.800533pt;}
.y6c{bottom:393.352067pt;}
.y59{bottom:393.352467pt;}
.y2b6{bottom:394.191667pt;}
.y1a0{bottom:396.095467pt;}
.y1fa{bottom:396.097733pt;}
.y1d{bottom:397.015733pt;}
.y15c{bottom:398.439467pt;}
.y1d1{bottom:398.587000pt;}
.y36f{bottom:399.497800pt;}
.y268{bottom:399.928000pt;}
.y250{bottom:399.930533pt;}
.ycd{bottom:400.171600pt;}
.y3a8{bottom:401.720267pt;}
.y29f{bottom:402.143800pt;}
.y7{bottom:403.324200pt;}
.y2f3{bottom:403.725933pt;}
.y237{bottom:404.934000pt;}
.y32d{bottom:406.208200pt;}
.y6b{bottom:407.485533pt;}
.y58{bottom:407.485933pt;}
.y2b5{bottom:408.325133pt;}
.y19f{bottom:410.228933pt;}
.y1f9{bottom:410.231200pt;}
.y1c{bottom:411.149200pt;}
.y36e{bottom:412.297667pt;}
.y15b{bottom:412.572933pt;}
.y1d0{bottom:412.720467pt;}
.y267{bottom:414.061467pt;}
.y24f{bottom:414.064000pt;}
.ycc{bottom:414.305067pt;}
.y3a7{bottom:414.520133pt;}
.y29e{bottom:416.277267pt;}
.y6{bottom:417.457667pt;}
.y32c{bottom:419.008067pt;}
.y236{bottom:419.067467pt;}
.ya4{bottom:421.569400pt;}
.y6a{bottom:421.619000pt;}
.y57{bottom:421.619400pt;}
.y2b4{bottom:422.458600pt;}
.y2f2{bottom:423.150267pt;}
.y19e{bottom:424.362400pt;}
.y1f8{bottom:424.364667pt;}
.y36d{bottom:425.097533pt;}
.y1b{bottom:425.282267pt;}
.y15a{bottom:426.706400pt;}
.y1cf{bottom:426.853933pt;}
.y266{bottom:428.194933pt;}
.y24e{bottom:428.197467pt;}
.ycb{bottom:428.438533pt;}
.y29d{bottom:430.410733pt;}
.y5{bottom:431.591133pt;}
.y32b{bottom:431.807933pt;}
.y3a6{bottom:432.611533pt;}
.y235{bottom:433.200933pt;}
.y69{bottom:435.752467pt;}
.y2b3{bottom:436.592067pt;}
.y2f1{bottom:437.283733pt;}
.y36c{bottom:437.897400pt;}
.y19d{bottom:438.495867pt;}
.y1f7{bottom:438.498133pt;}
.y1a{bottom:439.415733pt;}
.y159{bottom:440.839867pt;}
.ya3{bottom:440.993733pt;}
.y56{bottom:441.043733pt;}
.y265{bottom:442.328400pt;}
.y24d{bottom:442.330933pt;}
.yca{bottom:442.572000pt;}
.y29c{bottom:444.544200pt;}
.y32a{bottom:444.607800pt;}
.y3a5{bottom:445.411400pt;}
.y4{bottom:445.724600pt;}
.y1ce{bottom:446.278267pt;}
.y234{bottom:447.334400pt;}
.y68{bottom:449.885933pt;}
.y2f0{bottom:451.417200pt;}
.y19c{bottom:452.629333pt;}
.y19{bottom:453.548133pt;}
.y158{bottom:454.973333pt;}
.ya2{bottom:455.127200pt;}
.y55{bottom:455.177200pt;}
.y36b{bottom:455.988800pt;}
.y264{bottom:456.461867pt;}
.y24c{bottom:456.464400pt;}
.yc9{bottom:456.705467pt;}
.y1f6{bottom:457.922467pt;}
.y3a4{bottom:458.211267pt;}
.y29b{bottom:458.677667pt;}
.y3{bottom:459.858067pt;}
.y1cd{bottom:460.411733pt;}
.y329{bottom:462.699200pt;}
.y67{bottom:464.019400pt;}
.y2ef{bottom:465.550667pt;}
.y233{bottom:466.758733pt;}
.y19b{bottom:466.762800pt;}
.y18{bottom:467.681600pt;}
.y36a{bottom:468.788667pt;}
.y157{bottom:469.106800pt;}
.y140{bottom:469.255600pt;}
.ya1{bottom:469.260667pt;}
.y54{bottom:469.310667pt;}
.y2d3{bottom:469.929867pt;}
.y263{bottom:470.595333pt;}
.y24b{bottom:470.597867pt;}
.y1f5{bottom:472.055933pt;}
.y29a{bottom:472.811133pt;}
.y1cc{bottom:474.545200pt;}
.y119{bottom:474.550267pt;}
.y328{bottom:475.499067pt;}
.yc8{bottom:476.129800pt;}
.y3a3{bottom:476.302667pt;}
.y2ee{bottom:479.684133pt;}
.y232{bottom:480.892200pt;}
.y19a{bottom:480.896267pt;}
.y369{bottom:481.588533pt;}
.y17{bottom:481.815067pt;}
.y156{bottom:483.240267pt;}
.y13f{bottom:483.389067pt;}
.ya0{bottom:483.394133pt;}
.y66{bottom:483.443733pt;}
.y53{bottom:483.444000pt;}
.y2d2{bottom:484.063333pt;}
.y1f4{bottom:486.189400pt;}
.y1cb{bottom:488.678667pt;}
.y118{bottom:488.683733pt;}
.y3a2{bottom:489.102533pt;}
.yc7{bottom:490.263267pt;}
.y299{bottom:492.235467pt;}
.y2{bottom:493.415867pt;}
.y2ed{bottom:493.817600pt;}
.y368{bottom:494.388400pt;}
.y231{bottom:495.025667pt;}
.y199{bottom:495.029733pt;}
.y16{bottom:495.948533pt;}
.y13e{bottom:497.522533pt;}
.y9f{bottom:497.527600pt;}
.y52{bottom:497.576800pt;}
.y65{bottom:497.577200pt;}
.y2d1{bottom:498.196800pt;}
.y327{bottom:499.632667pt;}
.y1f3{bottom:500.322867pt;}
.y3a1{bottom:501.902400pt;}
.y155{bottom:502.664600pt;}
.y1ca{bottom:502.812133pt;}
.y117{bottom:502.817200pt;}
.yc6{bottom:504.396733pt;}
.y280{bottom:505.397333pt;}
.y298{bottom:506.368933pt;}
.y367{bottom:507.188267pt;}
.y2ec{bottom:507.951067pt;}
.y230{bottom:509.159133pt;}
.y198{bottom:509.163200pt;}
.y13d{bottom:511.656000pt;}
.y51{bottom:511.710267pt;}
.y64{bottom:511.710667pt;}
.y2d0{bottom:512.330267pt;}
.y1f2{bottom:514.456333pt;}
.y3a0{bottom:514.702267pt;}
.y154{bottom:516.798067pt;}
.y1c9{bottom:516.945600pt;}
.y116{bottom:516.950667pt;}
.y9e{bottom:516.951933pt;}
.yc5{bottom:518.530200pt;}
.y27f{bottom:519.530800pt;}
.y366{bottom:519.988133pt;}
.y297{bottom:520.502400pt;}
.y22f{bottom:523.292600pt;}
.y197{bottom:523.296667pt;}
.y50{bottom:525.843733pt;}
.y63{bottom:525.844133pt;}
.y2cf{bottom:526.463733pt;}
.y2eb{bottom:527.375400pt;}
.y1f1{bottom:528.589800pt;}
.y153{bottom:530.931533pt;}
.y1c8{bottom:531.079067pt;}
.y13c{bottom:531.080333pt;}
.y115{bottom:531.084133pt;}
.y9d{bottom:531.085400pt;}
.yc4{bottom:532.663667pt;}
.y39f{bottom:532.793667pt;}
.y27e{bottom:533.664267pt;}
.y296{bottom:534.635867pt;}
.y22e{bottom:537.426067pt;}
.y196{bottom:537.430133pt;}
.y326{bottom:537.955667pt;}
.y365{bottom:538.079533pt;}
.y4f{bottom:539.977200pt;}
.y62{bottom:539.977467pt;}
.y2ce{bottom:540.597200pt;}
.y2ea{bottom:541.508867pt;}
.y183{bottom:542.721000pt;}
.y1f0{bottom:542.723267pt;}
.y152{bottom:545.065000pt;}
.y1c7{bottom:545.212533pt;}
.y13b{bottom:545.213800pt;}
.y114{bottom:545.217600pt;}
.y9c{bottom:545.218867pt;}
.y39e{bottom:545.593533pt;}
.yc3{bottom:546.797133pt;}
.y27d{bottom:547.797733pt;}
.y295{bottom:548.769333pt;}
.y49{bottom:549.078600pt;}
.y364{bottom:550.879400pt;}
.y22d{bottom:551.559533pt;}
.y195{bottom:551.563600pt;}
.y325{bottom:552.089133pt;}
.y61{bottom:554.110200pt;}
.y4e{bottom:554.110667pt;}
.y2cd{bottom:554.730667pt;}
.y2e9{bottom:555.642333pt;}
.y182{bottom:556.854467pt;}
.y1ef{bottom:556.856733pt;}
.y39d{bottom:558.393400pt;}
.y151{bottom:559.198467pt;}
.y1c6{bottom:559.346000pt;}
.y13a{bottom:559.347267pt;}
.y113{bottom:559.351067pt;}
.y9b{bottom:559.352333pt;}
.yc2{bottom:560.930600pt;}
.y27c{bottom:561.931200pt;}
.y294{bottom:562.902800pt;}
.y48{bottom:563.212067pt;}
.y363{bottom:563.679267pt;}
.y22c{bottom:565.693000pt;}
.y60{bottom:568.243667pt;}
.y4d{bottom:568.244133pt;}
.y2cc{bottom:568.864133pt;}
.y2e8{bottom:569.775800pt;}
.y181{bottom:570.987933pt;}
.y1ee{bottom:570.990200pt;}
.y39c{bottom:571.193267pt;}
.y178{bottom:573.328133pt;}
.y150{bottom:573.331933pt;}
.y1c5{bottom:573.479467pt;}
.y139{bottom:573.480733pt;}
.y112{bottom:573.484533pt;}
.y9a{bottom:573.485800pt;}
.yc1{bottom:575.064067pt;}
.y362{bottom:576.479133pt;}
.y293{bottom:577.036267pt;}
.y324{bottom:577.560533pt;}
.y22b{bottom:579.826467pt;}
.y5f{bottom:582.377133pt;}
.y4c{bottom:582.377600pt;}
.y2cb{bottom:582.997600pt;}
.y2e7{bottom:583.909267pt;}
.y180{bottom:585.121400pt;}
.y1ed{bottom:585.123667pt;}
.y47{bottom:586.793600pt;}
.y177{bottom:587.461600pt;}
.y14f{bottom:587.465400pt;}
.y1c4{bottom:587.612933pt;}
.y138{bottom:587.614200pt;}
.y111{bottom:587.618000pt;}
.y99{bottom:587.619267pt;}
.yc0{bottom:589.197533pt;}
.y39b{bottom:589.284667pt;}
.y292{bottom:591.169733pt;}
.y22a{bottom:593.959933pt;}
.y361{bottom:594.570533pt;}
.y2ca{bottom:597.131067pt;}
.y2e6{bottom:598.042733pt;}
.y17f{bottom:599.254867pt;}
.y46{bottom:600.927067pt;}
.y176{bottom:601.595067pt;}
.y14e{bottom:601.598867pt;}
.y1c3{bottom:601.746400pt;}
.y137{bottom:601.747667pt;}
.y110{bottom:601.751467pt;}
.y98{bottom:601.752733pt;}
.y39a{bottom:602.084533pt;}
.ybf{bottom:603.331000pt;}
.y1ec{bottom:604.548000pt;}
.y291{bottom:605.303200pt;}
.y360{bottom:607.370400pt;}
.y2c9{bottom:611.264533pt;}
.y2e5{bottom:612.176200pt;}
.y229{bottom:613.384267pt;}
.y399{bottom:614.884400pt;}
.y45{bottom:615.060533pt;}
.y175{bottom:615.728533pt;}
.y1c2{bottom:615.879867pt;}
.y136{bottom:615.881133pt;}
.y323{bottom:615.883533pt;}
.y10f{bottom:615.884933pt;}
.y97{bottom:615.886200pt;}
.y75{bottom:616.679733pt;}
.ybe{bottom:617.464467pt;}
.y17e{bottom:618.679200pt;}
.y1eb{bottom:618.681467pt;}
.y290{bottom:619.436667pt;}
.y35f{bottom:620.170267pt;}
.y14d{bottom:621.023200pt;}
.y228{bottom:627.517733pt;}
.y398{bottom:627.684267pt;}
.y44{bottom:629.194000pt;}
.y1c1{bottom:630.013333pt;}
.y135{bottom:630.014600pt;}
.y322{bottom:630.017000pt;}
.y194{bottom:630.018400pt;}
.y96{bottom:630.019667pt;}
.y74{bottom:630.813200pt;}
.ybd{bottom:631.597933pt;}
.y17d{bottom:632.812667pt;}
.y1ea{bottom:632.814933pt;}
.y35e{bottom:632.970133pt;}
.y28f{bottom:633.570133pt;}
.y174{bottom:635.152867pt;}
.y14c{bottom:635.156667pt;}
.y10e{bottom:635.309267pt;}
.y2e4{bottom:637.647600pt;}
.y397{bottom:640.484133pt;}
.y227{bottom:641.651200pt;}
.y43{bottom:643.327467pt;}
.y1c0{bottom:644.146800pt;}
.y134{bottom:644.148067pt;}
.y321{bottom:644.150467pt;}
.y193{bottom:644.151867pt;}
.y95{bottom:644.153133pt;}
.ybc{bottom:645.731400pt;}
.y35d{bottom:645.770000pt;}
.y1e9{bottom:646.948400pt;}
.y28e{bottom:647.703600pt;}
.y173{bottom:649.286333pt;}
.y14b{bottom:649.290133pt;}
.y18d{bottom:649.438933pt;}
.y10d{bottom:649.442733pt;}
.y226{bottom:655.784667pt;}
.y42{bottom:657.460933pt;}
.y1bf{bottom:658.280267pt;}
.y133{bottom:658.281533pt;}
.y320{bottom:658.283933pt;}
.y192{bottom:658.285333pt;}
.y94{bottom:658.286600pt;}
.y35c{bottom:658.569867pt;}
.y396{bottom:658.575533pt;}
.ybb{bottom:659.864867pt;}
.y1e8{bottom:661.081867pt;}
.y172{bottom:663.419800pt;}
.y14a{bottom:663.423600pt;}
.y18c{bottom:663.572400pt;}
.y10c{bottom:663.576200pt;}
.y28d{bottom:667.127933pt;}
.y225{bottom:669.918133pt;}
.y35b{bottom:671.369733pt;}
.y395{bottom:671.375400pt;}
.y41{bottom:671.594267pt;}
.y1be{bottom:672.413733pt;}
.y132{bottom:672.415000pt;}
.y191{bottom:672.418800pt;}
.y93{bottom:672.420067pt;}
.yba{bottom:673.998333pt;}
.y1e7{bottom:675.215333pt;}
.y2e3{bottom:675.970600pt;}
.y171{bottom:677.553267pt;}
.y149{bottom:677.557067pt;}
.y18b{bottom:677.705867pt;}
.y31f{bottom:677.708267pt;}
.y10b{bottom:677.709667pt;}
.y28c{bottom:681.261400pt;}
.y224{bottom:684.051600pt;}
.y35a{bottom:684.169600pt;}
.y394{bottom:684.175267pt;}
.y40{bottom:685.727733pt;}
.y1bd{bottom:686.547200pt;}
.y131{bottom:686.548467pt;}
.y190{bottom:686.552267pt;}
.y92{bottom:686.553533pt;}
.yb9{bottom:688.131800pt;}
.y1e6{bottom:689.348800pt;}
.y2e2{bottom:690.104067pt;}
.y170{bottom:691.686733pt;}
.y148{bottom:691.690533pt;}
.y18a{bottom:691.839333pt;}
.y31e{bottom:691.841733pt;}
.y10a{bottom:691.843133pt;}
.y28b{bottom:695.394867pt;}
.y393{bottom:696.975133pt;}
.y223{bottom:698.185067pt;}
.y130{bottom:700.681933pt;}
.y91{bottom:700.687000pt;}
.y359{bottom:702.261000pt;}
.yb8{bottom:702.265267pt;}
.y1e5{bottom:703.482267pt;}
.y2e1{bottom:704.237533pt;}
.y16f{bottom:705.820200pt;}
.y147{bottom:705.824000pt;}
.y1bc{bottom:705.971533pt;}
.y189{bottom:705.972800pt;}
.y31d{bottom:705.975200pt;}
.y109{bottom:705.976600pt;}
.y3f{bottom:709.309267pt;}
.y28a{bottom:709.528333pt;}
.y392{bottom:709.775000pt;}
.y222{bottom:712.318533pt;}
.y12f{bottom:714.815400pt;}
.y90{bottom:714.820467pt;}
.y358{bottom:715.060867pt;}
.yb7{bottom:716.398733pt;}
.y1e4{bottom:717.615467pt;}
.y2e0{bottom:718.371000pt;}
.y16e{bottom:719.953667pt;}
.y146{bottom:719.957467pt;}
.y1bb{bottom:720.105000pt;}
.y188{bottom:720.106267pt;}
.y31c{bottom:720.108667pt;}
.y108{bottom:720.110067pt;}
.y391{bottom:722.574867pt;}
.y289{bottom:723.661800pt;}
.y221{bottom:726.452000pt;}
.y357{bottom:727.860733pt;}
.y12e{bottom:728.948867pt;}
.y8f{bottom:728.953933pt;}
.yb6{bottom:730.532200pt;}
.y1e3{bottom:731.748933pt;}
.y2df{bottom:732.504467pt;}
.y1ba{bottom:734.238467pt;}
.y187{bottom:734.239733pt;}
.y31b{bottom:734.242133pt;}
.y107{bottom:734.243533pt;}
.y288{bottom:737.795267pt;}
.y356{bottom:740.660600pt;}
.y390{bottom:740.666267pt;}
.y12d{bottom:743.082333pt;}
.y8e{bottom:743.087400pt;}
.y3e{bottom:744.230000pt;}
.yb5{bottom:744.665667pt;}
.y220{bottom:745.876333pt;}
.y1e2{bottom:745.880400pt;}
.y2de{bottom:746.637933pt;}
.y1b9{bottom:748.371933pt;}
.y186{bottom:748.373200pt;}
.y31a{bottom:748.375600pt;}
.y106{bottom:748.377000pt;}
.y287{bottom:751.928733pt;}
.y355{bottom:753.460467pt;}
.y38f{bottom:753.466133pt;}
.y12c{bottom:757.215800pt;}
.y8d{bottom:757.220867pt;}
.y179{bottom:758.214800pt;}
.y3d{bottom:758.363467pt;}
.yb4{bottom:758.799133pt;}
.y21f{bottom:760.009800pt;}
.y1e1{bottom:760.013867pt;}
.y2dd{bottom:760.771400pt;}
.y1b8{bottom:762.505400pt;}
.y185{bottom:762.506667pt;}
.y319{bottom:762.509067pt;}
.y105{bottom:762.510467pt;}
.y286{bottom:766.062200pt;}
.y354{bottom:766.260333pt;}
.y38e{bottom:766.266000pt;}
.y8c{bottom:771.354333pt;}
.y3c{bottom:772.496933pt;}
.yb3{bottom:772.932600pt;}
.y21e{bottom:774.143267pt;}
.y1e0{bottom:774.147333pt;}
.y2dc{bottom:774.904867pt;}
.y1b7{bottom:776.638867pt;}
.y12b{bottom:776.640133pt;}
.y318{bottom:776.642533pt;}
.y104{bottom:776.643933pt;}
.y38d{bottom:779.065867pt;}
.y285{bottom:780.195667pt;}
.y353{bottom:784.351733pt;}
.y8b{bottom:785.487800pt;}
.y3b{bottom:786.630400pt;}
.yb2{bottom:787.066067pt;}
.y21d{bottom:788.276733pt;}
.y1df{bottom:788.280800pt;}
.y1b6{bottom:790.772333pt;}
.y12a{bottom:790.773600pt;}
.y317{bottom:790.776000pt;}
.y103{bottom:790.777400pt;}
.y284{bottom:794.329133pt;}
.y2db{bottom:794.329200pt;}
.y352{bottom:797.151600pt;}
.y38c{bottom:797.157267pt;}
.y8a{bottom:799.621267pt;}
.y3a{bottom:800.763867pt;}
.y21c{bottom:802.410200pt;}
.y1de{bottom:802.414267pt;}
.y1b5{bottom:804.905800pt;}
.y129{bottom:804.907067pt;}
.y316{bottom:804.909467pt;}
.y102{bottom:804.910867pt;}
.y283{bottom:808.462600pt;}
.y2da{bottom:808.462667pt;}
.y351{bottom:809.951467pt;}
.y38b{bottom:809.957133pt;}
.yb1{bottom:812.537467pt;}
.y39{bottom:814.896933pt;}
.y21b{bottom:816.543667pt;}
.y1dd{bottom:816.547733pt;}
.y1b4{bottom:819.039267pt;}
.y128{bottom:819.040533pt;}
.y315{bottom:819.042933pt;}
.y101{bottom:819.044333pt;}
.y89{bottom:819.045467pt;}
.y282{bottom:822.596067pt;}
.y2d9{bottom:822.596133pt;}
.y350{bottom:822.751333pt;}
.y38a{bottom:822.757000pt;}
.y38{bottom:829.030400pt;}
.y1dc{bottom:830.681200pt;}
.y1b3{bottom:833.172733pt;}
.y127{bottom:833.174000pt;}
.y314{bottom:833.176400pt;}
.y100{bottom:833.177800pt;}
.y88{bottom:833.178933pt;}
.y389{bottom:835.556867pt;}
.y21a{bottom:835.968000pt;}
.y2d8{bottom:836.729600pt;}
.y34f{bottom:840.842733pt;}
.y281{bottom:842.020400pt;}
.y37{bottom:843.163867pt;}
.y1db{bottom:844.814667pt;}
.y1b2{bottom:847.306200pt;}
.y126{bottom:847.307467pt;}
.y313{bottom:847.309867pt;}
.y17c{bottom:847.311267pt;}
.y87{bottom:847.312133pt;}
.y219{bottom:850.101467pt;}
.yb0{bottom:850.860467pt;}
.y2d7{bottom:850.863000pt;}
.yff{bottom:852.602133pt;}
.y34e{bottom:853.642600pt;}
.y388{bottom:853.648267pt;}
.yea{bottom:856.153867pt;}
.y36{bottom:857.297200pt;}
.y1b1{bottom:861.439667pt;}
.y125{bottom:861.440933pt;}
.y312{bottom:861.443333pt;}
.yf3{bottom:861.444733pt;}
.y86{bottom:861.445600pt;}
.y1da{bottom:864.239000pt;}
.yaf{bottom:864.993933pt;}
.y2d6{bottom:864.996467pt;}
.y34d{bottom:866.442467pt;}
.y387{bottom:866.448133pt;}
.yfe{bottom:866.735600pt;}
.ye9{bottom:870.287333pt;}
.y35{bottom:871.431267pt;}
.y1b0{bottom:875.573133pt;}
.y184{bottom:875.574400pt;}
.yf2{bottom:875.578200pt;}
.y85{bottom:875.578933pt;}
.y1d9{bottom:878.372467pt;}
.y34c{bottom:879.242333pt;}
.y386{bottom:879.248000pt;}
.y218{bottom:880.865000pt;}
.y124{bottom:880.865267pt;}
.y311{bottom:880.867667pt;}
.yfd{bottom:880.869067pt;}
.yae{bottom:884.418267pt;}
.ye8{bottom:884.420800pt;}
.y1af{bottom:889.706600pt;}
.yf1{bottom:889.711667pt;}
.y84{bottom:889.712267pt;}
.y34b{bottom:892.042200pt;}
.y385{bottom:892.047867pt;}
.y217{bottom:894.998467pt;}
.y123{bottom:894.998733pt;}
.y310{bottom:895.001133pt;}
.yfc{bottom:895.002533pt;}
.y34{bottom:895.012800pt;}
.yad{bottom:898.551733pt;}
.ye7{bottom:898.554267pt;}
.y1ae{bottom:903.840067pt;}
.y18f{bottom:903.845133pt;}
.y83{bottom:903.845733pt;}
.y34a{bottom:904.842067pt;}
.y216{bottom:909.131933pt;}
.y122{bottom:909.132200pt;}
.y30f{bottom:909.134600pt;}
.yf0{bottom:909.136000pt;}
.y384{bottom:910.139267pt;}
.yac{bottom:912.685200pt;}
.y2d5{bottom:912.687733pt;}
.y1ad{bottom:917.973533pt;}
.ye6{bottom:917.978600pt;}
.y82{bottom:917.979067pt;}
.y349{bottom:922.933467pt;}
.y383{bottom:922.939133pt;}
.y215{bottom:923.265400pt;}
.y121{bottom:923.265667pt;}
.y30e{bottom:923.268067pt;}
.yef{bottom:923.269467pt;}
.y2d4{bottom:926.821200pt;}
.yab{bottom:932.109533pt;}
.y81{bottom:932.112067pt;}
.y348{bottom:935.733333pt;}
.y382{bottom:935.739000pt;}
.y1ac{bottom:937.397867pt;}
.y214{bottom:937.398867pt;}
.y120{bottom:937.399133pt;}
.y30d{bottom:937.401533pt;}
.yee{bottom:937.402933pt;}
.yaa{bottom:946.243000pt;}
.y80{bottom:946.245533pt;}
.y381{bottom:948.538867pt;}
.y33{bottom:948.543733pt;}
.y1ab{bottom:951.531333pt;}
.y213{bottom:951.532333pt;}
.y11f{bottom:951.532600pt;}
.y30c{bottom:951.535000pt;}
.yed{bottom:951.536400pt;}
.y347{bottom:953.824733pt;}
.ya9{bottom:960.376467pt;}
.y7f{bottom:960.379000pt;}
.y1aa{bottom:965.664800pt;}
.y212{bottom:965.665800pt;}
.y11e{bottom:965.666067pt;}
.y30b{bottom:965.668467pt;}
.yec{bottom:965.669867pt;}
.y346{bottom:966.624600pt;}
.y380{bottom:966.630267pt;}
.ya8{bottom:974.509933pt;}
.y7e{bottom:974.512467pt;}
.y345{bottom:979.424467pt;}
.y37f{bottom:979.430133pt;}
.y1a9{bottom:979.798267pt;}
.y211{bottom:979.799267pt;}
.y11d{bottom:979.799533pt;}
.y30a{bottom:979.801933pt;}
.yeb{bottom:979.803333pt;}
.y2e{bottom:984.679733pt;}
.ye5{bottom:988.645933pt;}
.y344{bottom:992.224333pt;}
.y37e{bottom:992.230000pt;}
.y1a8{bottom:993.931733pt;}
.y210{bottom:993.932733pt;}
.y11c{bottom:993.933000pt;}
.ya7{bottom:993.934267pt;}
.y309{bottom:993.935400pt;}
.y7d{bottom:993.936800pt;}
.ye4{bottom:1002.779400pt;}
.y2d{bottom:1004.459200pt;}
.y1a7{bottom:1008.065200pt;}
.y20f{bottom:1008.066200pt;}
.y11b{bottom:1008.066467pt;}
.ya6{bottom:1008.067733pt;}
.y308{bottom:1008.068867pt;}
.y7c{bottom:1008.070267pt;}
.y343{bottom:1010.315733pt;}
.y37d{bottom:1010.321400pt;}
.y1a6{bottom:1022.198667pt;}
.y20e{bottom:1022.199667pt;}
.y11a{bottom:1022.199933pt;}
.ya5{bottom:1022.201200pt;}
.y307{bottom:1022.202333pt;}
.y7b{bottom:1022.203733pt;}
.y342{bottom:1023.115600pt;}
.y37c{bottom:1023.121267pt;}
.h17{height:40.662760pt;}
.ha{height:41.854167pt;}
.h18{height:44.470052pt;}
.h3{height:45.446615pt;}
.h19{height:45.545573pt;}
.h15{height:46.490358pt;}
.h12{height:46.490625pt;}
.h6{height:46.491158pt;}
.h13{height:46.491958pt;}
.h4{height:46.493025pt;}
.h11{height:46.493292pt;}
.h5{height:46.494358pt;}
.h14{height:46.498625pt;}
.h16{height:46.499425pt;}
.h10{height:47.085938pt;}
.hb{height:49.701823pt;}
.hc{height:49.892392pt;}
.hf{height:49.894792pt;}
.hd{height:49.895325pt;}
.he{height:49.896392pt;}
.h2{height:51.062500pt;}
.h7{height:52.622396pt;}
.h9{height:57.549479pt;}
.h8{height:59.125000pt;}
.h1{height:1098.666667pt;}
.h0{height:1124.000000pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.000000pt;}
.x2{left:97.202133pt;}
.xf{left:98.256800pt;}
.x14{left:99.364667pt;}
.xa{left:110.801867pt;}
.x3{left:116.099533pt;}
.x12{left:119.562600pt;}
.x13{left:122.555933pt;}
.xb{left:129.699267pt;}
.x6{left:137.446267pt;}
.x9{left:147.098533pt;}
.x7{left:199.499467pt;}
.x8{left:266.182933pt;}
.x4{left:399.563867pt;}
.x11{left:400.677333pt;}
.xc{left:402.428133pt;}
.x5{left:418.461067pt;}
.x15{left:423.211733pt;}
.x10{left:429.904000pt;}
.x16{left:468.502267pt;}
.xd{left:562.768293pt;}
.xe{left:609.887200pt;}
}




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