
    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_1b0b7700a4d45d29bd686eb3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.778000;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_d768bf3f2d524ba6b5559f5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993000;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_f69d6d2a3a35d898635dc413.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.998000;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_1010afd3a0d8147f9045520c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_f44c6d1c5c5b31aab0ffc8f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2c306e9771d96b2e53ba6774.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_380f26248e5c5cd4e92dc719.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.851000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ddab2f0a832ca493ed46206d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ffe6a8f64ea53c3d2770b4e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e52f6ac32a10fc1af1912b85.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.879000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_845d38a2f0d57e5fd12e71d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2c720c25dba4fcf3329bc0ea.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d5b47d319ff5c87e220fa89f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a7d8b70e423b8b33ce4e5450.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.248409,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248409,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248409,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.248716,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248716,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248716,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249302,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249302,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249302,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249361,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249361,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249361,0.250000,0.000000,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);}
.m9{transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250698,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250701,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251289,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251602,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-22.515840px;}
.v3{vertical-align:-13.433580px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:3.077280px;}
.vd{vertical-align:5.400000px;}
.v1{vertical-align:18.796020px;}
.v7{vertical-align:24.192000px;}
.v4{vertical-align:31.213860px;}
.v9{vertical-align:34.120560px;}
.v5{vertical-align:37.637340px;}
.va{vertical-align:39.746280px;}
.v2{vertical-align:43.038720px;}
.vb{vertical-align:45.090000px;}
.v6{vertical-align:80.676060px;}
.ls9f{letter-spacing:-2.878800px;}
.ls13{letter-spacing:-1.662371px;}
.ls77{letter-spacing:-1.613952px;}
.lsa2{letter-spacing:-1.176387px;}
.ls85{letter-spacing:-0.039363px;}
.ls8a{letter-spacing:-0.021562px;}
.ls76{letter-spacing:-0.021519px;}
.ls17{letter-spacing:-0.020921px;}
.ls89{letter-spacing:-0.017968px;}
.ls67{letter-spacing:-0.016139px;}
.ls9e{letter-spacing:-0.014346px;}
.ls86{letter-spacing:-0.013370px;}
.ls7b{letter-spacing:-0.013184px;}
.ls7d{letter-spacing:-0.012932px;}
.ls8b{letter-spacing:-0.012742px;}
.ls14{letter-spacing:-0.010760px;}
.ls84{letter-spacing:-0.009841px;}
.ls9d{letter-spacing:-0.009564px;}
.ls16{letter-spacing:-0.008369px;}
.lse{letter-spacing:-0.007173px;}
.ls8c{letter-spacing:-0.006874px;}
.ls11{letter-spacing:-0.005828px;}
.lsf{letter-spacing:-0.005380px;}
.ls87{letter-spacing:-0.005301px;}
.ls15{letter-spacing:-0.004782px;}
.ls88{letter-spacing:-0.003594px;}
.ls12{letter-spacing:-0.003587px;}
.ls10{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000024px;}
.ls5c{letter-spacing:0.000041px;}
.ls39{letter-spacing:0.000946px;}
.ls5e{letter-spacing:0.001603px;}
.ls36{letter-spacing:0.001966px;}
.ls1b{letter-spacing:0.003106px;}
.ls23{letter-spacing:0.003526px;}
.ls4d{letter-spacing:0.003564px;}
.ls40{letter-spacing:0.003586px;}
.ls7a{letter-spacing:0.003956px;}
.ls2c{letter-spacing:0.004006px;}
.ls2f{letter-spacing:0.004546px;}
.ls83{letter-spacing:0.004780px;}
.ls7{letter-spacing:0.004782px;}
.ls28{letter-spacing:0.005354px;}
.ls61{letter-spacing:0.005359px;}
.ls19{letter-spacing:0.005380px;}
.ls3c{letter-spacing:0.005414px;}
.ls31{letter-spacing:0.006346px;}
.ls81{letter-spacing:0.006874px;}
.ls3d{letter-spacing:0.007846px;}
.ls3e{letter-spacing:0.007966px;}
.ls0{letter-spacing:0.008369px;}
.ls29{letter-spacing:0.009106px;}
.ls92{letter-spacing:0.009540px;}
.ls8{letter-spacing:0.009564px;}
.ls4f{letter-spacing:0.010754px;}
.ls58{letter-spacing:0.010760px;}
.ls47{letter-spacing:0.011441px;}
.ls82{letter-spacing:0.014346px;}
.ls6c{letter-spacing:0.016139px;}
.ls20{letter-spacing:0.021473px;}
.ls21{letter-spacing:0.023981px;}
.ls25{letter-spacing:0.025361px;}
.ls6b{letter-spacing:0.026880px;}
.ls69{letter-spacing:0.026899px;}
.ls64{letter-spacing:0.026926px;}
.ls6d{letter-spacing:0.026940px;}
.ls2d{letter-spacing:0.028181px;}
.ls2a{letter-spacing:0.036281px;}
.ls7c{letter-spacing:0.059178px;}
.ls7f{letter-spacing:0.063611px;}
.ls79{letter-spacing:0.065819px;}
.ls7e{letter-spacing:0.066743px;}
.ls57{letter-spacing:0.419621px;}
.ls5a{letter-spacing:1.616066px;}
.ls4b{letter-spacing:1.627766px;}
.ls62{letter-spacing:2.146574px;}
.ls50{letter-spacing:2.151914px;}
.ls6e{letter-spacing:2.912280px;}
.ls2b{letter-spacing:2.965200px;}
.ls5{letter-spacing:2.966100px;}
.ls2e{letter-spacing:2.973245px;}
.ls1c{letter-spacing:2.989766px;}
.ls37{letter-spacing:3.019200px;}
.ls3{letter-spacing:3.019860px;}
.lsc{letter-spacing:3.019920px;}
.lsa{letter-spacing:3.023460px;}
.ls1{letter-spacing:3.077280px;}
.ls27{letter-spacing:3.760507px;}
.ls9{letter-spacing:7.168289px;}
.ls9b{letter-spacing:8.091269px;}
.ls24{letter-spacing:8.952029px;}
.ls52{letter-spacing:8.957460px;}
.ls51{letter-spacing:8.968219px;}
.ls53{letter-spacing:8.973554px;}
.ls56{letter-spacing:9.016620px;}
.ls68{letter-spacing:9.081170px;}
.ls93{letter-spacing:9.927569px;}
.lsd{letter-spacing:10.569494px;}
.ls95{letter-spacing:10.630469px;}
.ls9a{letter-spacing:11.548649px;}
.lsa3{letter-spacing:11.639534px;}
.ls8e{letter-spacing:11.869049px;}
.ls8f{letter-spacing:11.869109px;}
.ls9c{letter-spacing:11.916894px;}
.ls94{letter-spacing:11.926409px;}
.ls8d{letter-spacing:11.926469px;}
.ls22{letter-spacing:11.929200px;}
.ls55{letter-spacing:11.964756px;}
.lsa4{letter-spacing:11.979060px;}
.ls54{letter-spacing:11.980920px;}
.lsa0{letter-spacing:12.089048px;}
.ls60{letter-spacing:12.093850px;}
.ls26{letter-spacing:12.261245px;}
.lsb{letter-spacing:13.225020px;}
.ls74{letter-spacing:13.277400px;}
.ls46{letter-spacing:13.637890px;}
.ls43{letter-spacing:13.971418px;}
.ls33{letter-spacing:13.976861px;}
.ls42{letter-spacing:14.014510px;}
.ls96{letter-spacing:14.408369px;}
.ls3f{letter-spacing:14.575200px;}
.ls90{letter-spacing:14.680949px;}
.ls38{letter-spacing:14.934456px;}
.ls1d{letter-spacing:14.945189px;}
.ls5f{letter-spacing:15.086582px;}
.ls91{letter-spacing:15.221309px;}
.lsa1{letter-spacing:15.704285px;}
.ls78{letter-spacing:15.821640px;}
.ls97{letter-spacing:15.976889px;}
.ls35{letter-spacing:15.983580px;}
.ls30{letter-spacing:16.381766px;}
.ls6a{letter-spacing:16.413240px;}
.ls32{letter-spacing:16.435766px;}
.ls48{letter-spacing:16.614307px;}
.ls66{letter-spacing:16.930366px;}
.ls6{letter-spacing:17.005020px;}
.ls98{letter-spacing:17.110229px;}
.ls44{letter-spacing:17.204767px;}
.ls73{letter-spacing:17.812620px;}
.ls4c{letter-spacing:17.948582px;}
.ls72{letter-spacing:17.974020px;}
.ls4a{letter-spacing:17.978160px;}
.ls80{letter-spacing:17.978400px;}
.ls63{letter-spacing:18.571200px;}
.ls41{letter-spacing:19.219200px;}
.ls6f{letter-spacing:19.545060px;}
.ls49{letter-spacing:20.139420px;}
.ls4{letter-spacing:20.245260px;}
.ls5b{letter-spacing:20.432582px;}
.ls5d{letter-spacing:20.448307px;}
.ls45{letter-spacing:20.464906px;}
.ls34{letter-spacing:20.465700px;}
.ls71{letter-spacing:20.513340px;}
.ls70{letter-spacing:20.517180px;}
.ls65{letter-spacing:20.776934px;}
.ls1f{letter-spacing:20.943701px;}
.ls4e{letter-spacing:21.218110px;}
.ls18{letter-spacing:21.867360px;}
.ls1e{letter-spacing:22.116516px;}
.ls2{letter-spacing:23.540400px;}
.ls99{letter-spacing:23.752469px;}
.ls1a{letter-spacing:26.172907px;}
.ls75{letter-spacing:27.265020px;}
.ls59{letter-spacing:195.250529px;}
.ls3b{letter-spacing:1044.614906px;}
.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;}
}
.ws1ee{word-spacing:-41.766512px;}
.ws7f{word-spacing:-40.338040px;}
.ws1eb{word-spacing:-38.151275px;}
.ws200{word-spacing:-38.041287px;}
.ws3{word-spacing:-35.327557px;}
.ws4{word-spacing:-35.303647px;}
.ws2{word-spacing:-35.243871px;}
.wsc5{word-spacing:-31.267630px;}
.ws10b{word-spacing:-31.262250px;}
.ws79{word-spacing:-31.256870px;}
.wsde{word-spacing:-31.235351px;}
.ws11{word-spacing:-29.594500px;}
.ws1{word-spacing:-29.314748px;}
.ws7b{word-spacing:-26.899200px;}
.ws1d8{word-spacing:-26.076573px;}
.ws1ae{word-spacing:-26.071791px;}
.ws22{word-spacing:-26.067009px;}
.ws1db{word-spacing:-24.594135px;}
.ws1af{word-spacing:-24.589353px;}
.ws1f6{word-spacing:-23.403402px;}
.ws5d{word-spacing:-22.783405px;}
.wsc4{word-spacing:-22.310181px;}
.ws7a{word-spacing:-22.283254px;}
.wsc3{word-spacing:-22.224103px;}
.ws7e{word-spacing:-22.202600px;}
.ws7d{word-spacing:-22.175675px;}
.wsbd{word-spacing:-22.138042px;}
.ws112{word-spacing:-22.111142px;}
.ws5{word-spacing:-22.109894px;}
.ws194{word-spacing:-21.847530px;}
.ws6a{word-spacing:-21.809871px;}
.ws6c{word-spacing:-21.799112px;}
.ws157{word-spacing:-21.605437px;}
.ws4d{word-spacing:-21.551639px;}
.ws5e{word-spacing:-21.486278px;}
.ws183{word-spacing:-21.444042px;}
.ws44{word-spacing:-21.427903px;}
.ws15c{word-spacing:-21.390244px;}
.wsed{word-spacing:-21.368724px;}
.ws142{word-spacing:-21.271887px;}
.ws71{word-spacing:-21.266508px;}
.ws4b{word-spacing:-21.029795px;}
.ws4a{word-spacing:-21.002895px;}
.wsd9{word-spacing:-20.965236px;}
.wsd6{word-spacing:-20.943717px;}
.wsa1{word-spacing:-20.906058px;}
.ws10{word-spacing:-20.834327px;}
.wsd2{word-spacing:-20.830740px;}
.ws106{word-spacing:-20.620927px;}
.wsf8{word-spacing:-20.567128px;}
.ws178{word-spacing:-20.524090px;}
.ws145{word-spacing:-20.459532px;}
.ws125{word-spacing:-20.384214px;}
.wsea{word-spacing:-20.351935px;}
.ws121{word-spacing:-20.341175px;}
.wsc{word-spacing:-20.320135px;}
.ws114{word-spacing:-20.298136px;}
.ws12f{word-spacing:-20.292738px;}
.ws123{word-spacing:-20.292638px;}
.ws18b{word-spacing:-20.278890px;}
.ws1a0{word-spacing:-20.272016px;}
.wsd3{word-spacing:-20.265142px;}
.ws198{word-spacing:-20.258267px;}
.ws1a2{word-spacing:-20.223896px;}
.ws130{word-spacing:-20.179780px;}
.ws4f{word-spacing:-20.039904px;}
.ws120{word-spacing:-20.018385px;}
.ws1ac{word-spacing:-20.003357px;}
.wsff{word-spacing:-19.969966px;}
.ws102{word-spacing:-19.964586px;}
.wsec{word-spacing:-19.733253px;}
.ws16d{word-spacing:-19.690234px;}
.ws16e{word-spacing:-19.674075px;}
.ws8c{word-spacing:-19.663315px;}
.ws12d{word-spacing:-19.652556px;}
.ws8b{word-spacing:-19.636415px;}
.wsf6{word-spacing:-19.604137px;}
.ws11a{word-spacing:-19.598757px;}
.ws8d{word-spacing:-19.587997px;}
.wsa5{word-spacing:-19.582618px;}
.wse4{word-spacing:-19.555718px;}
.wsdd{word-spacing:-19.518060px;}
.ws113{word-spacing:-19.507300px;}
.ws1f8{word-spacing:-19.448638px;}
.ws42{word-spacing:-19.448122px;}
.ws64{word-spacing:-19.399703px;}
.ws72{word-spacing:-19.340525px;}
.wsbb{word-spacing:-19.286726px;}
.ws191{word-spacing:-19.222168px;}
.wse9{word-spacing:-19.206029px;}
.wscb{word-spacing:-19.195269px;}
.wsca{word-spacing:-19.173750px;}
.wsc9{word-spacing:-19.162990px;}
.ws9e{word-spacing:-19.141471px;}
.wse2{word-spacing:-19.066153px;}
.ws4c{word-spacing:-19.055393px;}
.ws159{word-spacing:-19.044634px;}
.ws54{word-spacing:-19.023114px;}
.ws136{word-spacing:-18.990835px;}
.ws77{word-spacing:-18.980076px;}
.ws197{word-spacing:-18.958556px;}
.ws25{word-spacing:-18.898701px;}
.ws23{word-spacing:-18.884355px;}
.ws24{word-spacing:-18.870009px;}
.wsab{word-spacing:-18.850959px;}
.wsfa{word-spacing:-18.797161px;}
.wsb6{word-spacing:-18.759502px;}
.ws50{word-spacing:-18.721843px;}
.ws18c{word-spacing:-18.668045px;}
.ws16a{word-spacing:-18.635730px;}
.ws107{word-spacing:-18.614246px;}
.wsc0{word-spacing:-18.576588px;}
.wsc1{word-spacing:-18.549688px;}
.ws105{word-spacing:-18.479750px;}
.ws14f{word-spacing:-18.425952px;}
.ws151{word-spacing:-18.420892px;}
.wsa4{word-spacing:-18.339875px;}
.ws146{word-spacing:-18.302216px;}
.ws87{word-spacing:-18.291456px;}
.ws53{word-spacing:-18.259177px;}
.ws88{word-spacing:-18.248417px;}
.ws18e{word-spacing:-18.237658px;}
.ws43{word-spacing:-18.194619px;}
.ws177{word-spacing:-18.178479px;}
.wse7{word-spacing:-18.113921px;}
.ws147{word-spacing:-18.087022px;}
.ws11b{word-spacing:-18.070883px;}
.ws186{word-spacing:-18.038604px;}
.ws1b8{word-spacing:-18.033148px;}
.ws163{word-spacing:-18.021072px;}
.ws89{word-spacing:-17.990185px;}
.ws205{word-spacing:-17.942274px;}
.ws204{word-spacing:-17.889686px;}
.wsf3{word-spacing:-17.882588px;}
.ws206{word-spacing:-17.880122px;}
.ws12e{word-spacing:-17.871828px;}
.ws13d{word-spacing:-17.861064px;}
.wsf1{word-spacing:-17.855689px;}
.wsf2{word-spacing:-17.855674px;}
.wsb0{word-spacing:-17.834170px;}
.wsfe{word-spacing:-17.828790px;}
.ws17b{word-spacing:-17.825082px;}
.ws96{word-spacing:-17.823424px;}
.ws2e{word-spacing:-17.818030px;}
.ws51{word-spacing:-17.812650px;}
.ws108{word-spacing:-17.807270px;}
.ws8a{word-spacing:-17.801891px;}
.ws30{word-spacing:-17.791131px;}
.ws81{word-spacing:-17.780371px;}
.ws97{word-spacing:-17.769612px;}
.ws45{word-spacing:-17.758852px;}
.ws188{word-spacing:-17.742712px;}
.ws85{word-spacing:-17.737332px;}
.ws9{word-spacing:-17.735091px;}
.ws80{word-spacing:-17.715813px;}
.ws82{word-spacing:-17.715794px;}
.wsd8{word-spacing:-17.651255px;}
.ws52{word-spacing:-17.608216px;}
.ws9b{word-spacing:-17.597457px;}
.ws10d{word-spacing:-17.586697px;}
.ws9a{word-spacing:-17.581319px;}
.ws99{word-spacing:-17.575937px;}
.ws14c{word-spacing:-17.532900px;}
.wsfc{word-spacing:-17.532874px;}
.wsa{word-spacing:-17.513621px;}
.wsd1{word-spacing:-17.500620px;}
.wsee{word-spacing:-17.489860px;}
.wsfb{word-spacing:-17.479100px;}
.ws131{word-spacing:-17.468340px;}
.wse6{word-spacing:-17.436061px;}
.wsac{word-spacing:-17.414542px;}
.ws196{word-spacing:-17.371503px;}
.wsaf{word-spacing:-17.349984px;}
.ws160{word-spacing:-17.339224px;}
.ws1f0{word-spacing:-17.330185px;}
.ws84{word-spacing:-17.328465px;}
.ws176{word-spacing:-17.317714px;}
.ws17{word-spacing:-17.285426px;}
.ws8f{word-spacing:-17.280062px;}
.ws83{word-spacing:-17.280036px;}
.ws141{word-spacing:-17.274666px;}
.ws18{word-spacing:-17.263907px;}
.ws7{word-spacing:-17.245525px;}
.ws175{word-spacing:-17.220868px;}
.ws6{word-spacing:-17.193072px;}
.wsb{word-spacing:-17.175588px;}
.ws8{word-spacing:-17.134790px;}
.ws41{word-spacing:-17.113271px;}
.ws19{word-spacing:-17.075612px;}
.ws3e{word-spacing:-17.059473px;}
.wseb{word-spacing:-17.021814px;}
.wsa3{word-spacing:-16.962636px;}
.ws203{word-spacing:-16.961967px;}
.ws195{word-spacing:-16.881938px;}
.ws11e{word-spacing:-16.871178px;}
.ws100{word-spacing:-16.844279px;}
.wse0{word-spacing:-16.833519px;}
.ws11d{word-spacing:-16.795860px;}
.ws173{word-spacing:-16.790481px;}
.wse1{word-spacing:-16.779721px;}
.ws1e4{word-spacing:-16.770723px;}
.ws126{word-spacing:-16.715163px;}
.ws110{word-spacing:-16.586047px;}
.wsad{word-spacing:-16.553768px;}
.ws1b9{word-spacing:-16.545877px;}
.wse3{word-spacing:-16.532248px;}
.ws1aa{word-spacing:-16.522017px;}
.ws66{word-spacing:-16.499969px;}
.ws192{word-spacing:-16.478450px;}
.wsf0{word-spacing:-16.473070px;}
.wsef{word-spacing:-16.424652px;}
.ws189{word-spacing:-16.408512px;}
.wsf4{word-spacing:-16.333194px;}
.ws182{word-spacing:-16.306295px;}
.ws15e{word-spacing:-16.300915px;}
.wsa9{word-spacing:-16.268636px;}
.wsa8{word-spacing:-16.257876px;}
.ws181{word-spacing:-16.247117px;}
.ws134{word-spacing:-16.204078px;}
.ws10f{word-spacing:-16.193318px;}
.ws14e{word-spacing:-16.182559px;}
.ws1c9{word-spacing:-16.153799px;}
.wsb3{word-spacing:-16.139520px;}
.ws18a{word-spacing:-16.118001px;}
.wsf9{word-spacing:-16.096481px;}
.ws1c7{word-spacing:-16.096414px;}
.ws57{word-spacing:-16.074962px;}
.ws104{word-spacing:-16.042683px;}
.ws149{word-spacing:-15.978125px;}
.wsdf{word-spacing:-15.908187px;}
.wsb7{word-spacing:-15.881288px;}
.ws1f1{word-spacing:-15.876439px;}
.ws60{word-spacing:-15.870528px;}
.ws2c{word-spacing:-15.865148px;}
.wsb1{word-spacing:-15.859768px;}
.wsa0{word-spacing:-15.832869px;}
.ws15a{word-spacing:-15.827524px;}
.wsd4{word-spacing:-15.811350px;}
.ws15b{word-spacing:-15.805954px;}
.ws1fd{word-spacing:-15.761670px;}
.ws1b7{word-spacing:-15.709067px;}
.ws4e{word-spacing:-15.687613px;}
.ws15d{word-spacing:-15.655334px;}
.wsbc{word-spacing:-15.601536px;}
.ws129{word-spacing:-15.536978px;}
.ws1c{word-spacing:-15.504699px;}
.ws11f{word-spacing:-15.483180px;}
.ws1c3{word-spacing:-15.441284px;}
.ws1c4{word-spacing:-15.441272px;}
.ws1cd{word-spacing:-15.383887px;}
.ws6f{word-spacing:-15.370203px;}
.ws19b{word-spacing:-15.297810px;}
.wsa6{word-spacing:-15.289505px;}
.ws101{word-spacing:-15.235707px;}
.ws70{word-spacing:-15.224947px;}
.ws199{word-spacing:-15.192605px;}
.ws1e5{word-spacing:-15.173476px;}
.ws16f{word-spacing:-15.160389px;}
.ws1b{word-spacing:-15.128110px;}
.ws1a3{word-spacing:-15.125656px;}
.ws40{word-spacing:-15.074312px;}
.ws187{word-spacing:-15.058172px;}
.ws39{word-spacing:-15.020513px;}
.ws8e{word-spacing:-15.009754px;}
.ws103{word-spacing:-15.004374px;}
.wsbe{word-spacing:-14.955955px;}
.wsf7{word-spacing:-14.929056px;}
.wsb8{word-spacing:-14.896777px;}
.ws153{word-spacing:-14.857860px;}
.ws55{word-spacing:-14.842979px;}
.ws9f{word-spacing:-14.832219px;}
.ws152{word-spacing:-14.800476px;}
.ws15f{word-spacing:-14.789180px;}
.ws13e{word-spacing:-14.751505px;}
.ws10c{word-spacing:-14.703103px;}
.wsbf{word-spacing:-14.692343px;}
.ws190{word-spacing:-14.681583px;}
.ws1c8{word-spacing:-14.594847px;}
.ws11c{word-spacing:-14.579365px;}
.ws1e2{word-spacing:-14.523116px;}
.ws37{word-spacing:-14.428731px;}
.ws6d{word-spacing:-14.412591px;}
.wsfd{word-spacing:-14.401832px;}
.wsae{word-spacing:-14.380312px;}
.wscf{word-spacing:-14.369553px;}
.wsd0{word-spacing:-14.358793px;}
.ws2b{word-spacing:-14.331834px;}
.ws1f3{word-spacing:-14.303141px;}
.ws180{word-spacing:-14.264885px;}
.ws3d{word-spacing:-14.261956px;}
.ws78{word-spacing:-14.251196px;}
.ws20{word-spacing:-14.236193px;}
.ws1fe{word-spacing:-14.231411px;}
.ws1f4{word-spacing:-14.221846px;}
.ws29{word-spacing:-14.207500px;}
.ws1df{word-spacing:-14.202718px;}
.wsaa{word-spacing:-14.186638px;}
.ws166{word-spacing:-14.183590px;}
.ws28{word-spacing:-14.178808px;}
.ws2a{word-spacing:-14.178783px;}
.ws1e{word-spacing:-14.174026px;}
.ws1ab{word-spacing:-14.164462px;}
.ws1a4{word-spacing:-14.159680px;}
.ws1e7{word-spacing:-14.159666px;}
.ws1d{word-spacing:-14.154898px;}
.ws27{word-spacing:-14.145333px;}
.ws38{word-spacing:-14.143599px;}
.ws1f{word-spacing:-14.121423px;}
.ws94{word-spacing:-14.116700px;}
.ws1ef{word-spacing:-14.116627px;}
.ws9c{word-spacing:-14.105940px;}
.ws148{word-spacing:-14.097513px;}
.ws9d{word-spacing:-14.095181px;}
.ws1a1{word-spacing:-14.092731px;}
.ws1d1{word-spacing:-14.087949px;}
.ws21{word-spacing:-14.073612px;}
.ws1e3{word-spacing:-14.068832px;}
.wsdc{word-spacing:-14.025243px;}
.ws18f{word-spacing:-13.960685px;}
.ws13{word-spacing:-13.944545px;}
.ws1b4{word-spacing:-13.934923px;}
.ws14{word-spacing:-13.933786px;}
.ws1c2{word-spacing:-13.911013px;}
.ws1ce{word-spacing:-13.901448px;}
.ws119{word-spacing:-13.890747px;}
.wsc7{word-spacing:-13.853100px;}
.wsc8{word-spacing:-13.836948px;}
.ws86{word-spacing:-13.831569px;}
.ws139{word-spacing:-13.820809px;}
.wsb2{word-spacing:-13.777770px;}
.ws76{word-spacing:-13.767011px;}
.wsc6{word-spacing:-13.750895px;}
.ws118{word-spacing:-13.750871px;}
.ws117{word-spacing:-13.723972px;}
.wse5{word-spacing:-13.697073px;}
.wsa7{word-spacing:-13.616375px;}
.ws127{word-spacing:-13.551817px;}
.ws161{word-spacing:-13.498019px;}
.ws138{word-spacing:-13.481879px;}
.ws137{word-spacing:-13.471119px;}
.ws17f{word-spacing:-13.471063px;}
.ws26{word-spacing:-13.461499px;}
.ws1d4{word-spacing:-13.432807px;}
.ws1b2{word-spacing:-13.341947px;}
.ws14d{word-spacing:-13.331244px;}
.ws185{word-spacing:-13.320484px;}
.ws174{word-spacing:-13.309724px;}
.wse{word-spacing:-13.266685px;}
.ws133{word-spacing:-13.255926px;}
.ws16{word-spacing:-13.234406px;}
.ws144{word-spacing:-13.223647px;}
.ws158{word-spacing:-13.126810px;}
.ws15{word-spacing:-13.062252px;}
.ws1f9{word-spacing:-12.992857px;}
.wsa2{word-spacing:-12.900856px;}
.ws1a{word-spacing:-12.868577px;}
.ws1f2{word-spacing:-12.806357px;}
.ws2f{word-spacing:-12.804019px;}
.ws49{word-spacing:-12.728701px;}
.wscc{word-spacing:-12.712589px;}
.wscd{word-spacing:-12.696422px;}
.ws156{word-spacing:-12.696369px;}
.wsce{word-spacing:-12.685663px;}
.ws1d2{word-spacing:-12.672455px;}
.ws13b{word-spacing:-12.669514px;}
.ws1cc{word-spacing:-12.662895px;}
.ws1ad{word-spacing:-12.653331px;}
.ws13a{word-spacing:-12.648052px;}
.ws1fa{word-spacing:-12.643730px;}
.ws1f7{word-spacing:-12.610305px;}
.ws13c{word-spacing:-12.588826px;}
.ws1b6{word-spacing:-12.576818px;}
.ws1ea{word-spacing:-12.557690px;}
.ws1b3{word-spacing:-12.552943px;}
.ws1ff{word-spacing:-12.505087px;}
.ws1d3{word-spacing:-12.500299px;}
.ws19d{word-spacing:-12.490741px;}
.ws1b0{word-spacing:-12.485966px;}
.ws1de{word-spacing:-12.485959px;}
.wse8{word-spacing:-12.459709px;}
.ws116{word-spacing:-12.454330px;}
.ws1b5{word-spacing:-12.442920px;}
.ws75{word-spacing:-12.427430px;}
.ws74{word-spacing:-12.395151px;}
.ws18d{word-spacing:-12.325213px;}
.ws61{word-spacing:-12.301783px;}
.wsdb{word-spacing:-12.280862px;}
.ws91{word-spacing:-12.266035px;}
.ws5f{word-spacing:-12.247388px;}
.ws171{word-spacing:-12.233756px;}
.ws165{word-spacing:-12.218163px;}
.ws164{word-spacing:-12.208599px;}
.ws73{word-spacing:-12.201477px;}
.ws115{word-spacing:-12.136919px;}
.ws67{word-spacing:-12.056221px;}
.wsb4{word-spacing:-12.050842px;}
.ws6e{word-spacing:-12.040082px;}
.ws19f{word-spacing:-11.998189px;}
.ws179{word-spacing:-11.927105px;}
.wsb9{word-spacing:-11.916346px;}
.ws48{word-spacing:-11.884067px;}
.ws19e{word-spacing:-11.778214px;}
.ws1ca{word-spacing:-11.768650px;}
.ws3a{word-spacing:-11.674253px;}
.ws1cf{word-spacing:-11.615624px;}
.ws47{word-spacing:-11.528997px;}
.wsb5{word-spacing:-11.453679px;}
.ws58{word-spacing:-11.432160px;}
.ws1bc{word-spacing:-11.390867px;}
.ws14b{word-spacing:-11.276145px;}
.ws14a{word-spacing:-11.260005px;}
.ws128{word-spacing:-11.227726px;}
.ws170{word-spacing:-11.173928px;}
.ws1c0{word-spacing:-11.118289px;}
.wsba{word-spacing:-11.098610px;}
.ws5c{word-spacing:-11.079973px;}
.ws143{word-spacing:-11.077091px;}
.ws95{word-spacing:-11.060951px;}
.ws46{word-spacing:-10.964114px;}
.ws1d5{word-spacing:-10.869622px;}
.ws1c5{word-spacing:-10.860058px;}
.ws98{word-spacing:-10.759680px;}
.ws12b{word-spacing:-10.716641px;}
.wsf{word-spacing:-10.689742px;}
.ws172{word-spacing:-10.668223px;}
.ws122{word-spacing:-10.587525px;}
.wsda{word-spacing:-10.522967px;}
.ws184{word-spacing:-10.512207px;}
.ws5a{word-spacing:-10.415370px;}
.ws1ec{word-spacing:-10.377063px;}
.ws3f{word-spacing:-10.340052px;}
.ws12{word-spacing:-10.318533px;}
.ws1b1{word-spacing:-10.200134px;}
.ws1f5{word-spacing:-10.157095px;}
.ws132{word-spacing:-10.108705px;}
.ws1d6{word-spacing:-10.047108px;}
.ws1d0{word-spacing:-10.037529px;}
.ws1bd{word-spacing:-9.846288px;}
.ws1be{word-spacing:-9.822351px;}
.ws1ba{word-spacing:-9.669325px;}
.ws69{word-spacing:-9.651433px;}
.ws1c1{word-spacing:-9.645415px;}
.wsd7{word-spacing:-9.393201px;}
.ws1c6{word-spacing:-9.301107px;}
.ws155{word-spacing:-9.042875px;}
.ws12a{word-spacing:-9.000472px;}
.ws1d9{word-spacing:-8.851593px;}
.ws1ed{word-spacing:-8.842029px;}
.ws154{word-spacing:-8.746388px;}
.ws19a{word-spacing:-8.645964px;}
.ws1d7{word-spacing:-8.631672px;}
.ws1cb{word-spacing:-8.320768px;}
.ws1dc{word-spacing:-8.311220px;}
.ws1bf{word-spacing:-8.287310px;}
.ws1bb{word-spacing:-8.124720px;}
.ws93{word-spacing:-7.999822px;}
.ws201{word-spacing:-7.986040px;}
.ws2d{word-spacing:-7.773869px;}
.ws17d{word-spacing:-7.622604px;}
.ws17c{word-spacing:-7.512616px;}
.ws12c{word-spacing:-7.504885px;}
.ws56{word-spacing:-7.445699px;}
.ws1da{word-spacing:-7.412193px;}
.ws124{word-spacing:-7.370381px;}
.ws92{word-spacing:-7.284303px;}
.ws1e8{word-spacing:-7.177872px;}
.ws3b{word-spacing:-7.069110px;}
.ws1e6{word-spacing:-7.043974px;}
.ws19c{word-spacing:-6.972243px;}
.ws1dd{word-spacing:-6.828782px;}
.ws1fb{word-spacing:-6.690102px;}
.ws59{word-spacing:-6.461188px;}
.ws202{word-spacing:-6.441435px;}
.ws5b{word-spacing:-5.987762px;}
.wsd{word-spacing:-5.853266px;}
.ws135{word-spacing:-5.837126px;}
.ws1e9{word-spacing:-5.709780px;}
.ws3c{word-spacing:-5.439018px;}
.ws90{word-spacing:-5.347561px;}
.ws65{word-spacing:-5.245344px;}
.ws1fc{word-spacing:-5.198099px;}
.wsf5{word-spacing:-4.809577px;}
.ws68{word-spacing:-4.594383px;}
.ws17e{word-spacing:-4.112572px;}
.ws140{word-spacing:-3.970322px;}
.ws10e{word-spacing:-3.400059px;}
.ws35{word-spacing:-2.899734px;}
.ws193{word-spacing:-2.695300px;}
.ws1e0{word-spacing:-2.271478px;}
.ws16b{word-spacing:-2.147123px;}
.wsd5{word-spacing:-1.366479px;}
.ws16c{word-spacing:-0.889463px;}
.ws13f{word-spacing:-0.823105px;}
.ws1e1{word-spacing:-0.726873px;}
.ws111{word-spacing:-0.688620px;}
.ws10a{word-spacing:-0.414248px;}
.ws1a7{word-spacing:-0.089841px;}
.wsc2{word-spacing:-0.080698px;}
.ws6b{word-spacing:-0.053798px;}
.ws167{word-spacing:-0.011867px;}
.ws62{word-spacing:0.000000px;}
.ws168{word-spacing:0.006466px;}
.ws1a6{word-spacing:0.006685px;}
.ws1a8{word-spacing:0.014375px;}
.ws1a9{word-spacing:0.017968px;}
.ws1a5{word-spacing:0.034443px;}
.ws32{word-spacing:2.377889px;}
.ws34{word-spacing:3.308602px;}
.ws33{word-spacing:8.311853px;}
.ws36{word-spacing:12.610345px;}
.ws109{word-spacing:26.162162px;}
.ws0{word-spacing:29.753853px;}
.ws31{word-spacing:31.488204px;}
.ws17a{word-spacing:56.365534px;}
.ws162{word-spacing:57.219340px;}
.ws150{word-spacing:58.332550px;}
.ws169{word-spacing:59.151232px;}
.ws7c{word-spacing:709.294242px;}
.ws63{word-spacing:1775.008264px;}
._27{margin-left:-111.680293px;}
._2d{margin-left:-104.306435px;}
._2f{margin-left:-100.259192px;}
._22{margin-left:-97.229703px;}
._20{margin-left:-90.105444px;}
._17{margin-left:-88.327513px;}
._2c{margin-left:-86.005934px;}
._26{margin-left:-78.790178px;}
._11{margin-left:-77.062951px;}
._30{margin-left:-74.989243px;}
._12{margin-left:-73.683578px;}
._1e{margin-left:-72.084298px;}
._16{margin-left:-69.906591px;}
._1f{margin-left:-68.454084px;}
._15{margin-left:-66.262200px;}
._19{margin-left:-62.551475px;}
._18{margin-left:-58.966772px;}
._36{margin-left:-57.455114px;}
._28{margin-left:-56.431363px;}
._1d{margin-left:-54.063226px;}
._2e{margin-left:-53.012563px;}
._13{margin-left:-51.684504px;}
._21{margin-left:-50.433002px;}
._29{margin-left:-49.209879px;}
._14{margin-left:-47.841308px;}
._37{margin-left:-46.227639px;}
._38{margin-left:-38.602332px;}
._2b{margin-left:-37.271452px;}
._2a{margin-left:-32.700153px;}
._3e{margin-left:-18.570494px;}
._3c{margin-left:-16.564943px;}
._3d{margin-left:-15.464672px;}
._2{margin-left:-11.919314px;}
._3f{margin-left:-10.778696px;}
._b{margin-left:-9.617396px;}
._3{margin-left:-8.356671px;}
._e{margin-left:-6.477327px;}
._a{margin-left:-5.395980px;}
._1{margin-left:-4.336151px;}
._6{margin-left:-2.652261px;}
._0{margin-left:-1.427439px;}
._5{width:1.646231px;}
._4{width:3.275658px;}
._d{width:9.513639px;}
._8{width:12.293415px;}
._32{width:14.105940px;}
._3a{width:15.758718px;}
._3b{width:18.177816px;}
._c{width:20.448772px;}
._f{width:23.915060px;}
._31{width:25.139289px;}
._39{width:29.887875px;}
._10{width:58.327065px;}
._7{width:63.778003px;}
._9{width:75.953892px;}
._35{width:85.908006px;}
._1c{width:87.195474px;}
._25{width:90.131238px;}
._34{width:100.719000px;}
._1b{width:102.221200px;}
._24{width:105.676860px;}
._33{width:115.461081px;}
._1a{width:117.182368px;}
._23{width:121.144615px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:26.899200px;}
.fsa{font-size:30.120000px;}
.fs14{font-size:33.428400px;}
.fs6{font-size:35.865600px;}
.fs18{font-size:35.936400px;}
.fsc{font-size:39.556200px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs13{font-size:49.203600px;}
.fs17{font-size:53.010000px;}
.fsf{font-size:53.797800px;}
.fs1{font-size:53.798400px;}
.fsb{font-size:54.849600px;}
.fs12{font-size:55.619400px;}
.fs4{font-size:58.281600px;}
.fs1a{font-size:63.711000px;}
.fs19{font-size:64.119000px;}
.fs11{font-size:64.658400px;}
.fs10{font-size:64.824000px;}
.fse{font-size:65.922000px;}
.fsd{font-size:66.262200px;}
.fs16{font-size:66.847800px;}
.fs15{font-size:67.035000px;}
.fs5{font-size:68.742000px;}
.fs0{font-size:71.730600px;}
.fs3{font-size:83.686200px;}
.fs2{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y5e{bottom:47.952000px;}
.y13a{bottom:95.752575px;}
.y102{bottom:95.766540px;}
.yce{bottom:95.766870px;}
.y95{bottom:95.767650px;}
.y2f{bottom:95.769000px;}
.y1d4{bottom:95.769630px;}
.y170{bottom:96.039135px;}
.y1a6{bottom:96.040080px;}
.y15f{bottom:96.040365px;}
.y1d3{bottom:109.971150px;}
.y16f{bottom:110.227500px;}
.y1a5{bottom:110.228460px;}
.y15e{bottom:110.228730px;}
.y139{bottom:112.196055px;}
.y101{bottom:112.210020px;}
.ycd{bottom:112.210365px;}
.y94{bottom:112.211145px;}
.y2e{bottom:118.180155px;}
.y5d{bottom:123.185475px;}
.y1a4{bottom:124.429980px;}
.y15d{bottom:124.430250px;}
.y138{bottom:128.639535px;}
.y100{bottom:128.653500px;}
.ycc{bottom:128.653845px;}
.y93{bottom:128.654625px;}
.y2d{bottom:131.639265px;}
.y16e{bottom:133.471500px;}
.y1d2{bottom:134.635500px;}
.y1a3{bottom:138.631500px;}
.y15c{bottom:138.631785px;}
.y5c{bottom:139.615500px;}
.y137{bottom:145.069560px;}
.yff{bottom:145.083540px;}
.ycb{bottom:145.083870px;}
.y92{bottom:145.084170px;}
.y2c{bottom:145.085235px;}
.y15b{bottom:152.820150px;}
.y5b{bottom:156.058995px;}
.y165{bottom:157.461000px;}
.y2b{bottom:158.531190px;}
.y136{bottom:161.513055px;}
.y91{bottom:161.522010px;}
.yfe{bottom:161.527020px;}
.yca{bottom:161.527350px;}
.y1a2{bottom:161.784000px;}
.y2a{bottom:171.990300px;}
.y5a{bottom:172.502475px;}
.y15a{bottom:176.166000px;}
.yfd{bottom:177.948870px;}
.y135{bottom:177.956535px;}
.y90{bottom:177.965490px;}
.yc9{bottom:177.970830px;}
.y191{bottom:185.419500px;}
.y29{bottom:185.436255px;}
.y166{bottom:187.913250px;}
.y1d1{bottom:188.784000px;}
.y59{bottom:188.932500px;}
.yfc{bottom:194.378895px;}
.y134{bottom:194.386560px;}
.y8f{bottom:194.395515px;}
.y192{bottom:199.370400px;}
.y144{bottom:200.623500px;}
.y28{bottom:203.364195px;}
.y58{bottom:205.373520px;}
.yfb{bottom:210.822375px;}
.y133{bottom:210.830040px;}
.y8e{bottom:210.838995px;}
.yc8{bottom:210.843000px;}
.y1a0{bottom:212.623500px;}
.y1d0{bottom:213.448650px;}
.y145{bottom:215.061285px;}
.y19f{bottom:216.193500px;}
.y27{bottom:216.810150px;}
.y167{bottom:220.567170px;}
.y57{bottom:221.817000px;}
.yfa{bottom:227.265855px;}
.y132{bottom:227.273520px;}
.y8d{bottom:227.282475px;}
.y19e{bottom:231.738000px;}
.y158{bottom:232.265850px;}
.y19d{bottom:235.305000px;}
.y193{bottom:236.897505px;}
.yc7{bottom:237.748500px;}
.y56{bottom:238.247040px;}
.y26{bottom:241.920495px;}
.yf9{bottom:243.695880px;}
.y131{bottom:243.703560px;}
.y8c{bottom:243.712515px;}
.y157{bottom:244.461000px;}
.y19c{bottom:250.851000px;}
.y168{bottom:253.218390px;}
.y19b{bottom:254.419500px;}
.y55{bottom:254.690520px;}
.y25{bottom:255.366450px;}
.y156{bottom:256.657500px;}
.yf8{bottom:260.139375px;}
.y130{bottom:260.147040px;}
.y8b{bottom:260.155995px;}
.y146{bottom:261.668355px;}
.y1cf{bottom:267.599160px;}
.y24{bottom:268.812405px;}
.y155{bottom:268.852500px;}
.y19a{bottom:269.965500px;}
.y54{bottom:271.134000px;}
.y199{bottom:273.532500px;}
.y194{bottom:274.424610px;}
.yf7{bottom:276.582855px;}
.y12f{bottom:276.590520px;}
.y8a{bottom:276.599475px;}
.y154{bottom:281.049000px;}
.y1ce{bottom:281.800695px;}
.yc6{bottom:282.350520px;}
.y23{bottom:285.255525px;}
.y169{bottom:285.872310px;}
.y53{bottom:287.560515px;}
.yf6{bottom:293.012880px;}
.y12e{bottom:293.020545px;}
.y89{bottom:293.029500px;}
.y153{bottom:293.245500px;}
.y1cd{bottom:296.002215px;}
.y22{bottom:298.701480px;}
.yc5{bottom:298.794000px;}
.y52{bottom:304.003995px;}
.y152{bottom:305.442000px;}
.y147{bottom:308.210985px;}
.yf5{bottom:309.456360px;}
.y12d{bottom:309.464025px;}
.y88{bottom:309.472995px;}
.y1cc{bottom:310.190580px;}
.y195{bottom:311.885460px;}
.y21{bottom:312.160590px;}
.yc4{bottom:315.237495px;}
.y151{bottom:317.636400px;}
.y16a{bottom:318.458985px;}
.y51{bottom:320.447475px;}
.y1cb{bottom:324.392100px;}
.y20{bottom:325.606545px;}
.yf4{bottom:325.899840px;}
.y12c{bottom:325.907505px;}
.y87{bottom:325.916475px;}
.y150{bottom:329.833350px;}
.yc3{bottom:331.667520px;}
.y50{bottom:336.877500px;}
.y1ca{bottom:338.580480px;}
.y1f{bottom:339.052500px;}
.y14f{bottom:342.028200px;}
.yf3{bottom:342.329880px;}
.y12b{bottom:342.337545px;}
.y86{bottom:342.346020px;}
.yc2{bottom:348.110520px;}
.y196{bottom:349.412565px;}
.y16b{bottom:351.112905px;}
.y1c9{bottom:352.782000px;}
.y4f{bottom:353.320995px;}
.y14e{bottom:354.224400px;}
.y148{bottom:354.819435px;}
.yf2{bottom:358.773360px;}
.y12a{bottom:358.781025px;}
.y85{bottom:358.788915px;}
.yc1{bottom:359.842500px;}
.y16d{bottom:363.623700px;}
.yc0{bottom:364.554360px;}
.y14d{bottom:366.420750px;}
.y4e{bottom:369.764475px;}
.yf1{bottom:375.216840px;}
.y129{bottom:375.224505px;}
.y1e{bottom:376.661475px;}
.y1c8{bottom:377.433150px;}
.y1a1{bottom:377.860650px;}
.y14c{bottom:378.613350px;}
.y159{bottom:381.891750px;}
.y16c{bottom:383.764140px;}
.y4d{bottom:386.182080px;}
.y197{bottom:386.938335px;}
.y83{bottom:389.932305px;}
.y14b{bottom:390.809550px;}
.yf0{bottom:391.646865px;}
.y128{bottom:391.654530px;}
.y1d{bottom:393.091500px;}
.y84{bottom:395.563110px;}
.ybe{bottom:396.441000px;}
.ybb{bottom:397.696500px;}
.y149{bottom:401.359320px;}
.yba{bottom:402.462000px;}
.y4c{bottom:402.625560px;}
.ybd{bottom:407.092500px;}
.yb9{bottom:407.148360px;}
.ybf{bottom:407.160000px;}
.y127{bottom:408.098010px;}
.y1c{bottom:409.534995px;}
.y4b{bottom:419.055585px;}
.ybc{bottom:420.538410px;}
.y82{bottom:421.090995px;}
.y198{bottom:424.465440px;}
.yef{bottom:424.532490px;}
.y126{bottom:424.541490px;}
.y1b{bottom:425.978475px;}
.y1c7{bottom:431.595480px;}
.y4a{bottom:435.499065px;}
.y81{bottom:437.521020px;}
.y125{bottom:440.971530px;}
.y164{bottom:441.418035px;}
.y1a{bottom:442.407000px;}
.y1c6{bottom:445.797000px;}
.yb8{bottom:447.459495px;}
.y14a{bottom:447.967770px;}
.y49{bottom:451.942545px;}
.y80{bottom:453.964020px;}
.y124{bottom:457.415010px;}
.y163{bottom:457.861515px;}
.y19{bottom:458.850495px;}
.yb7{bottom:463.902975px;}
.yee{bottom:465.775680px;}
.y48{bottom:468.372585px;}
.y7f{bottom:470.405475px;}
.y1c5{bottom:470.448000px;}
.y123{bottom:473.858490px;}
.y162{bottom:474.304995px;}
.y18{bottom:475.293975px;}
.y190{bottom:475.666530px;}
.yb6{bottom:480.346455px;}
.y1f6{bottom:481.531650px;}
.y21d{bottom:481.628820px;}
.yed{bottom:482.205720px;}
.y47{bottom:484.816065px;}
.y7e{bottom:486.835500px;}
.y122{bottom:490.288515px;}
.y161{bottom:490.735035px;}
.y143{bottom:490.737540px;}
.y17{bottom:491.723190px;}
.y18f{bottom:492.110010px;}
.y1f5{bottom:496.475580px;}
.y21c{bottom:496.572750px;}
.yb5{bottom:496.776495px;}
.yec{bottom:498.649200px;}
.y46{bottom:501.259545px;}
.y7d{bottom:503.278995px;}
.y121{bottom:506.731995px;}
.y160{bottom:507.178515px;}
.y142{bottom:507.181020px;}
.y16{bottom:508.166670px;}
.y18e{bottom:508.553490px;}
.y1f4{bottom:511.419525px;}
.y21b{bottom:511.516695px;}
.yb4{bottom:513.219975px;}
.yeb{bottom:515.092680px;}
.y45{bottom:517.689570px;}
.y7c{bottom:519.722475px;}
.y120{bottom:523.175475px;}
.y141{bottom:523.621995px;}
.y1c4{bottom:524.602005px;}
.y15{bottom:524.608995px;}
.y18d{bottom:524.983515px;}
.y1f3{bottom:526.350300px;}
.y21a{bottom:526.460625px;}
.yb3{bottom:529.663455px;}
.yea{bottom:531.522705px;}
.y44{bottom:534.133050px;}
.y7b{bottom:536.151540px;}
.y11f{bottom:539.605515px;}
.y140{bottom:540.052020px;}
.y1c3{bottom:541.032030px;}
.y14{bottom:541.039020px;}
.y1f2{bottom:541.294245px;}
.y219{bottom:541.404570px;}
.y18c{bottom:541.426995px;}
.yb2{bottom:546.093480px;}
.ye9{bottom:547.966185px;}
.y43{bottom:550.576530px;}
.y7a{bottom:552.595020px;}
.y11e{bottom:556.048995px;}
.y1f1{bottom:556.238175px;}
.y218{bottom:556.348500px;}
.y13f{bottom:556.495500px;}
.y1c2{bottom:557.475510px;}
.y13{bottom:557.482500px;}
.y18b{bottom:557.870475px;}
.yb1{bottom:562.536975px;}
.ye8{bottom:564.409665px;}
.y42{bottom:567.006570px;}
.y79{bottom:569.037825px;}
.y1f0{bottom:571.182120px;}
.y217{bottom:571.308255px;}
.y11d{bottom:572.492475px;}
.y13e{bottom:572.938995px;}
.y1c1{bottom:573.918990px;}
.y18a{bottom:574.300515px;}
.yb0{bottom:578.967000px;}
.ye7{bottom:580.839705px;}
.y41{bottom:583.450050px;}
.y12{bottom:584.374500px;}
.y1ef{bottom:586.126050px;}
.y216{bottom:586.252200px;}
.y11c{bottom:588.922500px;}
.y13d{bottom:589.369020px;}
.y1c0{bottom:590.349030px;}
.y189{bottom:590.743995px;}
.y78{bottom:595.161000px;}
.yaf{bottom:595.410480px;}
.ye6{bottom:597.283185px;}
.y40{bottom:599.893530px;}
.y1ee{bottom:601.069995px;}
.y215{bottom:601.196130px;}
.y77{bottom:604.567395px;}
.y11b{bottom:605.365995px;}
.y13c{bottom:605.812500px;}
.y1bf{bottom:606.792510px;}
.y188{bottom:607.174020px;}
.yae{bottom:611.853960px;}
.ye5{bottom:613.726665px;}
.y1ed{bottom:616.013925px;}
.y214{bottom:616.140075px;}
.y3f{bottom:616.323555px;}
.y11a{bottom:621.796020px;}
.y1be{bottom:623.235990px;}
.y187{bottom:623.617500px;}
.yad{bottom:628.283985px;}
.ye4{bottom:630.156690px;}
.y1ec{bottom:630.957870px;}
.y213{bottom:631.084005px;}
.y3e{bottom:632.767035px;}
.y119{bottom:638.239500px;}
.y1bd{bottom:639.666015px;}
.y186{bottom:640.060995px;}
.y76{bottom:641.152995px;}
.yac{bottom:644.727480px;}
.y1eb{bottom:645.901800px;}
.y212{bottom:646.027950px;}
.ye3{bottom:646.600170px;}
.y3d{bottom:649.210515px;}
.y11{bottom:655.180245px;}
.y1bc{bottom:656.109495px;}
.y185{bottom:656.491020px;}
.y75{bottom:657.583020px;}
.y13b{bottom:657.990000px;}
.y1ea{bottom:660.845745px;}
.y211{bottom:660.971880px;}
.yab{bottom:661.170960px;}
.ye2{bottom:663.043650px;}
.y118{bottom:665.145000px;}
.y3c{bottom:665.640555px;}
.y1bb{bottom:672.552975px;}
.y184{bottom:672.934500px;}
.y74{bottom:674.026500px;}
.y10{bottom:674.606955px;}
.y1e9{bottom:675.789675px;}
.y210{bottom:675.915825px;}
.yaa{bottom:677.600985px;}
.ye1{bottom:679.473690px;}
.y3b{bottom:682.084035px;}
.y1ba{bottom:688.983015px;}
.y73{bottom:690.469995px;}
.y1e8{bottom:690.733620px;}
.y20f{bottom:690.859755px;}
.yf{bottom:694.033665px;}
.ya9{bottom:694.044465px;}
.ye0{bottom:695.917170px;}
.y3a{bottom:698.527515px;}
.y1b9{bottom:705.426495px;}
.y1e7{bottom:705.677550px;}
.y20e{bottom:705.803700px;}
.y72{bottom:706.900020px;}
.ya8{bottom:710.487945px;}
.ydf{bottom:712.360650px;}
.ye{bottom:713.460390px;}
.y39{bottom:714.957540px;}
.y183{bottom:717.282480px;}
.y1e6{bottom:720.621495px;}
.y117{bottom:720.731490px;}
.y20d{bottom:720.747630px;}
.y1b8{bottom:721.869975px;}
.y71{bottom:723.335340px;}
.yde{bottom:728.790675px;}
.y38{bottom:731.401020px;}
.y182{bottom:731.484000px;}
.yd{bottom:732.887100px;}
.y1e5{bottom:735.565425px;}
.y20c{bottom:735.691575px;}
.y116{bottom:737.161530px;}
.y1b7{bottom:738.300000px;}
.y70{bottom:739.778820px;}
.ya7{bottom:743.360115px;}
.ydd{bottom:745.234155px;}
.y37{bottom:747.844500px;}
.y1e4{bottom:750.509370px;}
.y20b{bottom:750.622365px;}
.yc{bottom:752.313810px;}
.y115{bottom:753.605010px;}
.y1b6{bottom:754.743495px;}
.y181{bottom:754.893000px;}
.ydc{bottom:761.677635px;}
.y36{bottom:764.274540px;}
.y1e3{bottom:765.453300px;}
.y20a{bottom:765.566295px;}
.y114{bottom:770.048490px;}
.y1b5{bottom:771.186975px;}
.yb{bottom:771.740535px;}
.y6f{bottom:772.650990px;}
.ydb{bottom:778.107675px;}
.y171{bottom:779.694000px;}
.y1e2{bottom:780.397245px;}
.y209{bottom:780.510240px;}
.y35{bottom:780.718020px;}
.y113{bottom:786.478515px;}
.ya6{bottom:786.479535px;}
.y1b4{bottom:787.617000px;}
.ya{bottom:791.167245px;}
.y172{bottom:794.334420px;}
.yda{bottom:794.551155px;}
.y1e1{bottom:795.341175px;}
.y208{bottom:795.454170px;}
.y34{bottom:797.161500px;}
.y112{bottom:802.921995px;}
.ya5{bottom:802.923015px;}
.y1e0{bottom:810.285120px;}
.y207{bottom:810.398115px;}
.y9{bottom:810.607065px;}
.yd9{bottom:810.994635px;}
.y33{bottom:813.591630px;}
.y1b3{bottom:814.522500px;}
.y6e{bottom:819.348000px;}
.y111{bottom:819.352035px;}
.ya4{bottom:819.353040px;}
.y1df{bottom:825.229050px;}
.y206{bottom:825.343245px;}
.yd8{bottom:827.424660px;}
.y8{bottom:830.033790px;}
.y32{bottom:830.035110px;}
.y6d{bottom:835.791480px;}
.y110{bottom:835.795515px;}
.ya3{bottom:835.796520px;}
.y1de{bottom:840.172995px;}
.y205{bottom:840.287175px;}
.y173{bottom:841.594215px;}
.yd7{bottom:843.868155px;}
.y31{bottom:846.478605px;}
.y7{bottom:849.460500px;}
.y6c{bottom:852.234960px;}
.y10f{bottom:852.238995px;}
.ya2{bottom:852.240000px;}
.y1dd{bottom:855.116925px;}
.y204{bottom:855.231120px;}
.yd6{bottom:860.311635px;}
.y30{bottom:862.908630px;}
.y6b{bottom:868.665000px;}
.y1b2{bottom:868.665555px;}
.y10e{bottom:868.669020px;}
.ya1{bottom:868.670040px;}
.y1dc{bottom:870.062070px;}
.y203{bottom:870.175050px;}
.yd5{bottom:876.741660px;}
.y1db{bottom:885.006000px;}
.y6a{bottom:885.108480px;}
.y1b1{bottom:885.109035px;}
.y10d{bottom:885.112500px;}
.ya0{bottom:885.113520px;}
.y202{bottom:885.118995px;}
.y174{bottom:888.790065px;}
.yd4{bottom:893.185140px;}
.y201{bottom:900.062925px;}
.y69{bottom:901.551960px;}
.y1b0{bottom:901.552515px;}
.y9f{bottom:901.553475px;}
.y10c{bottom:901.555995px;}
.yd3{bottom:909.628620px;}
.y200{bottom:915.006870px;}
.y68{bottom:917.981985px;}
.y1af{bottom:917.982555px;}
.y9e{bottom:917.983515px;}
.y10b{bottom:917.986020px;}
.y6{bottom:919.188150px;}
.yd2{bottom:926.058660px;}
.y1ff{bottom:929.952000px;}
.y67{bottom:934.425465px;}
.y10a{bottom:934.425765px;}
.y1ae{bottom:934.426035px;}
.y9d{bottom:934.426995px;}
.y175{bottom:936.052650px;}
.yd1{bottom:942.502140px;}
.y1fe{bottom:944.895945px;}
.y1da{bottom:947.769120px;}
.y66{bottom:950.868960px;}
.y109{bottom:950.869245px;}
.y1ad{bottom:950.869515px;}
.y9c{bottom:950.870475px;}
.y1fd{bottom:959.839875px;}
.y1d9{bottom:961.957485px;}
.y65{bottom:967.298985px;}
.y108{bottom:967.299285px;}
.y1ac{bottom:967.299540px;}
.y9b{bottom:967.300500px;}
.y5{bottom:968.503365px;}
.y1fc{bottom:974.783820px;}
.yd0{bottom:975.374295px;}
.y1d8{bottom:976.159005px;}
.y17f{bottom:978.969000px;}
.y17e{bottom:982.311000px;}
.y176{bottom:983.245710px;}
.y64{bottom:983.742465px;}
.y107{bottom:983.742765px;}
.y1ab{bottom:983.743020px;}
.y9a{bottom:983.743995px;}
.y1fb{bottom:989.727750px;}
.y17d{bottom:996.750000px;}
.y17c{bottom:1000.092000px;}
.y63{bottom:1000.185945px;}
.y106{bottom:1000.186245px;}
.y1aa{bottom:1000.186500px;}
.y99{bottom:1000.187475px;}
.y4{bottom:1002.874515px;}
.y1fa{bottom:1004.671695px;}
.y1d7{bottom:1008.288480px;}
.y17b{bottom:1014.534000px;}
.y62{bottom:1016.615985px;}
.y105{bottom:1016.616270px;}
.y1a9{bottom:1016.616540px;}
.y98{bottom:1016.617500px;}
.y17a{bottom:1017.875250px;}
.y1f9{bottom:1019.615625px;}
.y1d6{bottom:1022.490000px;}
.y177{bottom:1030.508295px;}
.y179{bottom:1032.314250px;}
.y61{bottom:1033.059465px;}
.y104{bottom:1033.059750px;}
.y1a8{bottom:1033.060020px;}
.y97{bottom:1033.060860px;}
.y1f8{bottom:1034.559570px;}
.y178{bottom:1035.655500px;}
.y3{bottom:1037.245650px;}
.y1d5{bottom:1047.141150px;}
.y180{bottom:1048.485300px;}
.y60{bottom:1049.502945px;}
.y103{bottom:1049.503230px;}
.y1a7{bottom:1049.503500px;}
.y96{bottom:1049.504340px;}
.y1f7{bottom:1049.516040px;}
.y5f{bottom:1089.342000px;}
.y2{bottom:1089.544500px;}
.y1{bottom:1116.382500px;}
.ycf{bottom:1150.065000px;}
.h38{height:24.335875px;}
.h19{height:25.464576px;}
.h3c{height:26.161699px;}
.h22{height:26.504678px;}
.h30{height:28.796914px;}
.h28{height:29.561133px;}
.hc{height:35.339423px;}
.h2d{height:35.482885px;}
.h41{height:35.530706px;}
.h37{height:35.820221px;}
.h42{height:35.932343px;}
.h23{height:37.120896px;}
.h3b{height:38.591280px;}
.h33{height:39.164798px;}
.h8{height:39.757018px;}
.h1b{height:39.758938px;}
.h1a{height:39.759358px;}
.h14{height:39.759718px;}
.h15{height:39.760858px;}
.h1c{height:39.779578px;}
.h3{height:39.918413px;}
.h2f{height:39.930509px;}
.h36{height:40.490923px;}
.h6{height:43.244947px;}
.h3f{height:45.296678px;}
.h9{height:45.300698px;}
.h16{height:45.304778px;}
.h2e{height:45.306698px;}
.h1f{height:45.310778px;}
.hd{height:45.348158px;}
.h1e{height:45.349238px;}
.h1d{height:45.351998px;}
.h17{height:45.352598px;}
.ha{height:45.353918px;}
.hb{height:45.356678px;}
.h29{height:45.356738px;}
.h10{height:45.358598px;}
.hf{height:45.363218px;}
.h2b{height:45.365618px;}
.h40{height:45.372458px;}
.h2a{height:45.383198px;}
.h11{height:45.383318px;}
.he{height:45.400358px;}
.h2c{height:45.416378px;}
.h3e{height:46.381608px;}
.h24{height:46.589414px;}
.h18{height:46.595474px;}
.h3d{height:46.678632px;}
.h35{height:47.071315px;}
.h34{height:47.191872px;}
.h32{height:47.991216px;}
.h31{height:48.238882px;}
.h3a{height:48.665198px;}
.h39{height:48.801480px;}
.h25{height:50.470992px;}
.h7{height:51.006564px;}
.h20{height:53.218992px;}
.h2{height:54.945640px;}
.h26{height:58.603018px;}
.h5{height:62.178847px;}
.h12{height:70.982578px;}
.h13{height:84.226754px;}
.h4{height:88.707436px;}
.h21{height:98.295298px;}
.h27{height:1173.540000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:71.964000px;}
.x1{left:76.216500px;}
.x32{left:77.944500px;}
.x9{left:86.151990px;}
.x16{left:90.404340px;}
.x1c{left:95.142900px;}
.x33{left:97.372815px;}
.x2d{left:99.678600px;}
.x1a{left:101.241780px;}
.x3{left:103.189500px;}
.x23{left:106.469895px;}
.x19{left:108.925830px;}
.x2a{left:113.015310px;}
.x18{left:116.609880px;}
.x22{left:118.202250px;}
.x29{left:120.450915px;}
.xa{left:126.139500px;}
.x28{left:131.673000px;}
.x17{left:141.325650px;}
.xb{left:144.945165px;}
.x24{left:158.487750px;}
.x25{left:169.012650px;}
.x26{left:173.235750px;}
.x27{left:199.849050px;}
.x2e{left:209.768250px;}
.x1d{left:217.655100px;}
.x31{left:281.943060px;}
.x2f{left:317.650695px;}
.x30{left:322.078890px;}
.x2b{left:338.832000px;}
.x2c{left:349.989000px;}
.x1b{left:376.612500px;}
.xc{left:454.635855px;}
.x6{left:458.887665px;}
.xe{left:462.424500px;}
.xd{left:468.837000px;}
.x7{left:473.089095px;}
.x20{left:477.505500px;}
.x34{left:480.042360px;}
.x1f{left:483.470625px;}
.xf{left:495.243000px;}
.x14{left:501.399000px;}
.x1e{left:506.092650px;}
.x12{left:530.275500px;}
.x11{left:532.246500px;}
.x10{left:535.445925px;}
.x13{left:545.976000px;}
.x35{left:548.772150px;}
.x4{left:576.946455px;}
.x21{left:585.046950px;}
.x5{left:591.147000px;}
.x2{left:708.462000px;}
.x15{left:870.375000px;}
@media print{
.v8{vertical-align:-20.014080pt;}
.v3{vertical-align:-11.940960pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.735360pt;}
.vd{vertical-align:4.800000pt;}
.v1{vertical-align:16.707573pt;}
.v7{vertical-align:21.504000pt;}
.v4{vertical-align:27.745653pt;}
.v9{vertical-align:30.329387pt;}
.v5{vertical-align:33.455413pt;}
.va{vertical-align:35.330027pt;}
.v2{vertical-align:38.256640pt;}
.vb{vertical-align:40.080000pt;}
.v6{vertical-align:71.712053pt;}
.ls9f{letter-spacing:-2.558933pt;}
.ls13{letter-spacing:-1.477663pt;}
.ls77{letter-spacing:-1.434624pt;}
.lsa2{letter-spacing:-1.045677pt;}
.ls85{letter-spacing:-0.034989pt;}
.ls8a{letter-spacing:-0.019166pt;}
.ls76{letter-spacing:-0.019128pt;}
.ls17{letter-spacing:-0.018597pt;}
.ls89{letter-spacing:-0.015972pt;}
.ls67{letter-spacing:-0.014346pt;}
.ls9e{letter-spacing:-0.012752pt;}
.ls86{letter-spacing:-0.011884pt;}
.ls7b{letter-spacing:-0.011719pt;}
.ls7d{letter-spacing:-0.011495pt;}
.ls8b{letter-spacing:-0.011326pt;}
.ls14{letter-spacing:-0.009564pt;}
.ls84{letter-spacing:-0.008747pt;}
.ls9d{letter-spacing:-0.008501pt;}
.ls16{letter-spacing:-0.007439pt;}
.lse{letter-spacing:-0.006376pt;}
.ls8c{letter-spacing:-0.006110pt;}
.ls11{letter-spacing:-0.005181pt;}
.lsf{letter-spacing:-0.004782pt;}
.ls87{letter-spacing:-0.004712pt;}
.ls15{letter-spacing:-0.004251pt;}
.ls88{letter-spacing:-0.003194pt;}
.ls12{letter-spacing:-0.003188pt;}
.ls10{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000021pt;}
.ls5c{letter-spacing:0.000036pt;}
.ls39{letter-spacing:0.000841pt;}
.ls5e{letter-spacing:0.001425pt;}
.ls36{letter-spacing:0.001747pt;}
.ls1b{letter-spacing:0.002761pt;}
.ls23{letter-spacing:0.003134pt;}
.ls4d{letter-spacing:0.003168pt;}
.ls40{letter-spacing:0.003187pt;}
.ls7a{letter-spacing:0.003516pt;}
.ls2c{letter-spacing:0.003561pt;}
.ls2f{letter-spacing:0.004041pt;}
.ls83{letter-spacing:0.004249pt;}
.ls7{letter-spacing:0.004251pt;}
.ls28{letter-spacing:0.004759pt;}
.ls61{letter-spacing:0.004764pt;}
.ls19{letter-spacing:0.004782pt;}
.ls3c{letter-spacing:0.004813pt;}
.ls31{letter-spacing:0.005641pt;}
.ls81{letter-spacing:0.006110pt;}
.ls3d{letter-spacing:0.006974pt;}
.ls3e{letter-spacing:0.007081pt;}
.ls0{letter-spacing:0.007439pt;}
.ls29{letter-spacing:0.008094pt;}
.ls92{letter-spacing:0.008480pt;}
.ls8{letter-spacing:0.008501pt;}
.ls4f{letter-spacing:0.009559pt;}
.ls58{letter-spacing:0.009564pt;}
.ls47{letter-spacing:0.010170pt;}
.ls82{letter-spacing:0.012752pt;}
.ls6c{letter-spacing:0.014346pt;}
.ls20{letter-spacing:0.019087pt;}
.ls21{letter-spacing:0.021316pt;}
.ls25{letter-spacing:0.022543pt;}
.ls6b{letter-spacing:0.023893pt;}
.ls69{letter-spacing:0.023910pt;}
.ls64{letter-spacing:0.023934pt;}
.ls6d{letter-spacing:0.023947pt;}
.ls2d{letter-spacing:0.025050pt;}
.ls2a{letter-spacing:0.032250pt;}
.ls7c{letter-spacing:0.052602pt;}
.ls7f{letter-spacing:0.056544pt;}
.ls79{letter-spacing:0.058506pt;}
.ls7e{letter-spacing:0.059327pt;}
.ls57{letter-spacing:0.372996pt;}
.ls5a{letter-spacing:1.436503pt;}
.ls4b{letter-spacing:1.446903pt;}
.ls62{letter-spacing:1.908066pt;}
.ls50{letter-spacing:1.912813pt;}
.ls6e{letter-spacing:2.588693pt;}
.ls2b{letter-spacing:2.635733pt;}
.ls5{letter-spacing:2.636533pt;}
.ls2e{letter-spacing:2.642884pt;}
.ls1c{letter-spacing:2.657570pt;}
.ls37{letter-spacing:2.683733pt;}
.ls3{letter-spacing:2.684320pt;}
.lsc{letter-spacing:2.684373pt;}
.lsa{letter-spacing:2.687520pt;}
.ls1{letter-spacing:2.735360pt;}
.ls27{letter-spacing:3.342673pt;}
.ls9{letter-spacing:6.371813pt;}
.ls9b{letter-spacing:7.192239pt;}
.ls24{letter-spacing:7.957359pt;}
.ls52{letter-spacing:7.962187pt;}
.ls51{letter-spacing:7.971750pt;}
.ls53{letter-spacing:7.976493pt;}
.ls56{letter-spacing:8.014773pt;}
.ls68{letter-spacing:8.072151pt;}
.ls93{letter-spacing:8.824506pt;}
.lsd{letter-spacing:9.395106pt;}
.ls95{letter-spacing:9.449306pt;}
.ls9a{letter-spacing:10.265466pt;}
.lsa3{letter-spacing:10.346252pt;}
.ls8e{letter-spacing:10.550266pt;}
.ls8f{letter-spacing:10.550319pt;}
.ls9c{letter-spacing:10.592794pt;}
.ls94{letter-spacing:10.601252pt;}
.ls8d{letter-spacing:10.601306pt;}
.ls22{letter-spacing:10.603733pt;}
.ls55{letter-spacing:10.635339pt;}
.lsa4{letter-spacing:10.648054pt;}
.ls54{letter-spacing:10.649707pt;}
.lsa0{letter-spacing:10.745820pt;}
.ls60{letter-spacing:10.750089pt;}
.ls26{letter-spacing:10.898884pt;}
.lsb{letter-spacing:11.755573pt;}
.ls74{letter-spacing:11.802133pt;}
.ls46{letter-spacing:12.122569pt;}
.ls43{letter-spacing:12.419038pt;}
.ls33{letter-spacing:12.423876pt;}
.ls42{letter-spacing:12.457342pt;}
.ls96{letter-spacing:12.807439pt;}
.ls3f{letter-spacing:12.955733pt;}
.ls90{letter-spacing:13.049732pt;}
.ls38{letter-spacing:13.275072pt;}
.ls1d{letter-spacing:13.284612pt;}
.ls5f{letter-spacing:13.410295pt;}
.ls91{letter-spacing:13.530052pt;}
.lsa1{letter-spacing:13.959364pt;}
.ls78{letter-spacing:14.063680pt;}
.ls97{letter-spacing:14.201679pt;}
.ls35{letter-spacing:14.207627pt;}
.ls30{letter-spacing:14.561570pt;}
.ls6a{letter-spacing:14.589547pt;}
.ls32{letter-spacing:14.609570pt;}
.ls48{letter-spacing:14.768273pt;}
.ls66{letter-spacing:15.049214pt;}
.ls6{letter-spacing:15.115573pt;}
.ls98{letter-spacing:15.209092pt;}
.ls44{letter-spacing:15.293126pt;}
.ls73{letter-spacing:15.833440pt;}
.ls4c{letter-spacing:15.954295pt;}
.ls72{letter-spacing:15.976907pt;}
.ls4a{letter-spacing:15.980587pt;}
.ls80{letter-spacing:15.980800pt;}
.ls63{letter-spacing:16.507733pt;}
.ls41{letter-spacing:17.083733pt;}
.ls6f{letter-spacing:17.373387pt;}
.ls49{letter-spacing:17.901707pt;}
.ls4{letter-spacing:17.995787pt;}
.ls5b{letter-spacing:18.162295pt;}
.ls5d{letter-spacing:18.176273pt;}
.ls45{letter-spacing:18.191027pt;}
.ls34{letter-spacing:18.191733pt;}
.ls71{letter-spacing:18.234080pt;}
.ls70{letter-spacing:18.237493pt;}
.ls65{letter-spacing:18.468386pt;}
.ls1f{letter-spacing:18.616623pt;}
.ls4e{letter-spacing:18.860542pt;}
.ls18{letter-spacing:19.437653pt;}
.ls1e{letter-spacing:19.659125pt;}
.ls2{letter-spacing:20.924800pt;}
.ls99{letter-spacing:21.113306pt;}
.ls1a{letter-spacing:23.264806pt;}
.ls75{letter-spacing:24.235573pt;}
.ls59{letter-spacing:173.556026pt;}
.ls3b{letter-spacing:928.546583pt;}
.ws1ee{word-spacing:-37.125788pt;}
.ws7f{word-spacing:-35.856036pt;}
.ws1eb{word-spacing:-33.912244pt;}
.ws200{word-spacing:-33.814478pt;}
.ws3{word-spacing:-31.402273pt;}
.ws4{word-spacing:-31.381019pt;}
.ws2{word-spacing:-31.327885pt;}
.wsc5{word-spacing:-27.793449pt;}
.ws10b{word-spacing:-27.788667pt;}
.ws79{word-spacing:-27.783885pt;}
.wsde{word-spacing:-27.764756pt;}
.ws11{word-spacing:-26.306222pt;}
.ws1{word-spacing:-26.057554pt;}
.ws7b{word-spacing:-23.910400pt;}
.ws1d8{word-spacing:-23.179176pt;}
.ws1ae{word-spacing:-23.174925pt;}
.ws22{word-spacing:-23.170675pt;}
.ws1db{word-spacing:-21.861453pt;}
.ws1af{word-spacing:-21.857202pt;}
.ws1f6{word-spacing:-20.803024pt;}
.ws5d{word-spacing:-20.251915pt;}
.wsc4{word-spacing:-19.831272pt;}
.ws7a{word-spacing:-19.807337pt;}
.wsc3{word-spacing:-19.754758pt;}
.ws7e{word-spacing:-19.735644pt;}
.ws7d{word-spacing:-19.711711pt;}
.wsbd{word-spacing:-19.678259pt;}
.ws112{word-spacing:-19.654349pt;}
.ws5{word-spacing:-19.653239pt;}
.ws194{word-spacing:-19.420027pt;}
.ws6a{word-spacing:-19.386552pt;}
.ws6c{word-spacing:-19.376988pt;}
.ws157{word-spacing:-19.204833pt;}
.ws4d{word-spacing:-19.157012pt;}
.ws5e{word-spacing:-19.098914pt;}
.ws183{word-spacing:-19.061371pt;}
.ws44{word-spacing:-19.047025pt;}
.ws15c{word-spacing:-19.013550pt;}
.wsed{word-spacing:-18.994422pt;}
.ws142{word-spacing:-18.908344pt;}
.ws71{word-spacing:-18.903562pt;}
.ws4b{word-spacing:-18.693151pt;}
.ws4a{word-spacing:-18.669240pt;}
.wsd9{word-spacing:-18.635766pt;}
.wsd6{word-spacing:-18.616637pt;}
.wsa1{word-spacing:-18.583163pt;}
.ws10{word-spacing:-18.519402pt;}
.wsd2{word-spacing:-18.516214pt;}
.ws106{word-spacing:-18.329713pt;}
.wsf8{word-spacing:-18.281892pt;}
.ws178{word-spacing:-18.243635pt;}
.ws145{word-spacing:-18.186250pt;}
.ws125{word-spacing:-18.119301pt;}
.wsea{word-spacing:-18.090609pt;}
.ws121{word-spacing:-18.081044pt;}
.wsc{word-spacing:-18.062342pt;}
.ws114{word-spacing:-18.042788pt;}
.ws12f{word-spacing:-18.037990pt;}
.ws123{word-spacing:-18.037901pt;}
.ws18b{word-spacing:-18.025680pt;}
.ws1a0{word-spacing:-18.019570pt;}
.wsd3{word-spacing:-18.013459pt;}
.ws198{word-spacing:-18.007349pt;}
.ws1a2{word-spacing:-17.976797pt;}
.ws130{word-spacing:-17.937582pt;}
.ws4f{word-spacing:-17.813248pt;}
.ws120{word-spacing:-17.794120pt;}
.ws1ac{word-spacing:-17.780762pt;}
.wsff{word-spacing:-17.751081pt;}
.ws102{word-spacing:-17.746299pt;}
.wsec{word-spacing:-17.540669pt;}
.ws16d{word-spacing:-17.502430pt;}
.ws16e{word-spacing:-17.488067pt;}
.ws8c{word-spacing:-17.478502pt;}
.ws12d{word-spacing:-17.468938pt;}
.ws8b{word-spacing:-17.454591pt;}
.wsf6{word-spacing:-17.425900pt;}
.ws11a{word-spacing:-17.421117pt;}
.ws8d{word-spacing:-17.411553pt;}
.wsa5{word-spacing:-17.406771pt;}
.wse4{word-spacing:-17.382861pt;}
.wsdd{word-spacing:-17.349386pt;}
.ws113{word-spacing:-17.339822pt;}
.ws1f8{word-spacing:-17.287678pt;}
.ws42{word-spacing:-17.287219pt;}
.ws64{word-spacing:-17.244180pt;}
.ws72{word-spacing:-17.191578pt;}
.wsbb{word-spacing:-17.143757pt;}
.ws191{word-spacing:-17.086372pt;}
.wse9{word-spacing:-17.072026pt;}
.wscb{word-spacing:-17.062461pt;}
.wsca{word-spacing:-17.043333pt;}
.wsc9{word-spacing:-17.033769pt;}
.ws9e{word-spacing:-17.014641pt;}
.wse2{word-spacing:-16.947692pt;}
.ws4c{word-spacing:-16.938127pt;}
.ws159{word-spacing:-16.928563pt;}
.ws54{word-spacing:-16.909435pt;}
.ws136{word-spacing:-16.880742pt;}
.ws77{word-spacing:-16.871178pt;}
.ws197{word-spacing:-16.852050pt;}
.ws25{word-spacing:-16.798845pt;}
.ws23{word-spacing:-16.786093pt;}
.ws24{word-spacing:-16.773341pt;}
.wsab{word-spacing:-16.756408pt;}
.wsfa{word-spacing:-16.708588pt;}
.wsb6{word-spacing:-16.675113pt;}
.ws50{word-spacing:-16.641638pt;}
.ws18c{word-spacing:-16.593818pt;}
.ws16a{word-spacing:-16.565093pt;}
.ws107{word-spacing:-16.545997pt;}
.wsc0{word-spacing:-16.512522pt;}
.wsc1{word-spacing:-16.488612pt;}
.ws105{word-spacing:-16.426445pt;}
.ws14f{word-spacing:-16.378624pt;}
.ws151{word-spacing:-16.374126pt;}
.wsa4{word-spacing:-16.302111pt;}
.ws146{word-spacing:-16.268636pt;}
.ws87{word-spacing:-16.259072pt;}
.ws53{word-spacing:-16.230380pt;}
.ws88{word-spacing:-16.220815pt;}
.ws18e{word-spacing:-16.211251pt;}
.ws43{word-spacing:-16.172995pt;}
.ws177{word-spacing:-16.158648pt;}
.wse7{word-spacing:-16.101263pt;}
.ws147{word-spacing:-16.077353pt;}
.ws11b{word-spacing:-16.063007pt;}
.ws186{word-spacing:-16.034314pt;}
.ws1b8{word-spacing:-16.029465pt;}
.ws163{word-spacing:-16.018731pt;}
.ws89{word-spacing:-15.991276pt;}
.ws205{word-spacing:-15.948688pt;}
.ws204{word-spacing:-15.901944pt;}
.wsf3{word-spacing:-15.895634pt;}
.ws206{word-spacing:-15.893442pt;}
.ws12e{word-spacing:-15.886070pt;}
.ws13d{word-spacing:-15.876501pt;}
.wsf1{word-spacing:-15.871724pt;}
.wsf2{word-spacing:-15.871710pt;}
.wsb0{word-spacing:-15.852595pt;}
.wsfe{word-spacing:-15.847813pt;}
.ws17b{word-spacing:-15.844517pt;}
.ws96{word-spacing:-15.843044pt;}
.ws2e{word-spacing:-15.838249pt;}
.ws51{word-spacing:-15.833467pt;}
.ws108{word-spacing:-15.828685pt;}
.ws8a{word-spacing:-15.823903pt;}
.ws30{word-spacing:-15.814339pt;}
.ws81{word-spacing:-15.804774pt;}
.ws97{word-spacing:-15.795210pt;}
.ws45{word-spacing:-15.785646pt;}
.ws188{word-spacing:-15.771300pt;}
.ws85{word-spacing:-15.766518pt;}
.ws9{word-spacing:-15.764525pt;}
.ws80{word-spacing:-15.747389pt;}
.ws82{word-spacing:-15.747372pt;}
.wsd8{word-spacing:-15.690004pt;}
.ws52{word-spacing:-15.651748pt;}
.ws9b{word-spacing:-15.642184pt;}
.ws10d{word-spacing:-15.632620pt;}
.ws9a{word-spacing:-15.627839pt;}
.ws99{word-spacing:-15.623055pt;}
.ws14c{word-spacing:-15.584800pt;}
.wsfc{word-spacing:-15.584777pt;}
.wsa{word-spacing:-15.567663pt;}
.wsd1{word-spacing:-15.556106pt;}
.wsee{word-spacing:-15.546542pt;}
.wsfb{word-spacing:-15.536978pt;}
.ws131{word-spacing:-15.527414pt;}
.wse6{word-spacing:-15.498721pt;}
.wsac{word-spacing:-15.479593pt;}
.ws196{word-spacing:-15.441336pt;}
.wsaf{word-spacing:-15.422208pt;}
.ws160{word-spacing:-15.412644pt;}
.ws1f0{word-spacing:-15.404609pt;}
.ws84{word-spacing:-15.403080pt;}
.ws176{word-spacing:-15.393523pt;}
.ws17{word-spacing:-15.364823pt;}
.ws8f{word-spacing:-15.360055pt;}
.ws83{word-spacing:-15.360032pt;}
.ws141{word-spacing:-15.355259pt;}
.ws18{word-spacing:-15.345695pt;}
.ws7{word-spacing:-15.329356pt;}
.ws175{word-spacing:-15.307438pt;}
.ws6{word-spacing:-15.282731pt;}
.wsb{word-spacing:-15.267189pt;}
.ws8{word-spacing:-15.230925pt;}
.ws41{word-spacing:-15.211796pt;}
.ws19{word-spacing:-15.178322pt;}
.ws3e{word-spacing:-15.163976pt;}
.wseb{word-spacing:-15.130501pt;}
.wsa3{word-spacing:-15.077898pt;}
.ws203{word-spacing:-15.077304pt;}
.ws195{word-spacing:-15.006167pt;}
.ws11e{word-spacing:-14.996603pt;}
.ws100{word-spacing:-14.972692pt;}
.wse0{word-spacing:-14.963128pt;}
.ws11d{word-spacing:-14.929654pt;}
.ws173{word-spacing:-14.924872pt;}
.wse1{word-spacing:-14.915308pt;}
.ws1e4{word-spacing:-14.907310pt;}
.ws126{word-spacing:-14.857923pt;}
.ws110{word-spacing:-14.743153pt;}
.wsad{word-spacing:-14.714460pt;}
.ws1b9{word-spacing:-14.707447pt;}
.wse3{word-spacing:-14.695332pt;}
.ws1aa{word-spacing:-14.686238pt;}
.ws66{word-spacing:-14.666639pt;}
.ws192{word-spacing:-14.647511pt;}
.wsf0{word-spacing:-14.642729pt;}
.wsef{word-spacing:-14.599690pt;}
.ws189{word-spacing:-14.585344pt;}
.wsf4{word-spacing:-14.518395pt;}
.ws182{word-spacing:-14.494484pt;}
.ws15e{word-spacing:-14.489702pt;}
.wsa9{word-spacing:-14.461010pt;}
.wsa8{word-spacing:-14.451446pt;}
.ws181{word-spacing:-14.441882pt;}
.ws134{word-spacing:-14.403625pt;}
.ws10f{word-spacing:-14.394061pt;}
.ws14e{word-spacing:-14.384497pt;}
.ws1c9{word-spacing:-14.358932pt;}
.wsb3{word-spacing:-14.346240pt;}
.ws18a{word-spacing:-14.327112pt;}
.wsf9{word-spacing:-14.307983pt;}
.ws1c7{word-spacing:-14.307924pt;}
.ws57{word-spacing:-14.288855pt;}
.ws104{word-spacing:-14.260163pt;}
.ws149{word-spacing:-14.202778pt;}
.wsdf{word-spacing:-14.140611pt;}
.wsb7{word-spacing:-14.116700pt;}
.ws1f1{word-spacing:-14.112390pt;}
.ws60{word-spacing:-14.107136pt;}
.ws2c{word-spacing:-14.102354pt;}
.wsb1{word-spacing:-14.097572pt;}
.wsa0{word-spacing:-14.073661pt;}
.ws15a{word-spacing:-14.068911pt;}
.wsd4{word-spacing:-14.054533pt;}
.ws15b{word-spacing:-14.049737pt;}
.ws1fd{word-spacing:-14.010373pt;}
.ws1b7{word-spacing:-13.963615pt;}
.ws4e{word-spacing:-13.944545pt;}
.ws15d{word-spacing:-13.915853pt;}
.wsbc{word-spacing:-13.868032pt;}
.ws129{word-spacing:-13.810647pt;}
.ws1c{word-spacing:-13.781955pt;}
.ws11f{word-spacing:-13.762826pt;}
.ws1c3{word-spacing:-13.725586pt;}
.ws1c4{word-spacing:-13.725575pt;}
.ws1cd{word-spacing:-13.674566pt;}
.ws6f{word-spacing:-13.662403pt;}
.ws19b{word-spacing:-13.598053pt;}
.wsa6{word-spacing:-13.590671pt;}
.ws101{word-spacing:-13.542851pt;}
.ws70{word-spacing:-13.533286pt;}
.ws199{word-spacing:-13.504537pt;}
.ws1e5{word-spacing:-13.487535pt;}
.ws16f{word-spacing:-13.475901pt;}
.ws1b{word-spacing:-13.447209pt;}
.ws1a3{word-spacing:-13.445027pt;}
.ws40{word-spacing:-13.399388pt;}
.ws187{word-spacing:-13.385042pt;}
.ws39{word-spacing:-13.351567pt;}
.ws8e{word-spacing:-13.342003pt;}
.ws103{word-spacing:-13.337221pt;}
.wsbe{word-spacing:-13.294182pt;}
.wsf7{word-spacing:-13.270272pt;}
.wsb8{word-spacing:-13.241580pt;}
.ws153{word-spacing:-13.206987pt;}
.ws55{word-spacing:-13.193759pt;}
.ws9f{word-spacing:-13.184195pt;}
.ws152{word-spacing:-13.155978pt;}
.ws15f{word-spacing:-13.145938pt;}
.ws13e{word-spacing:-13.112449pt;}
.ws10c{word-spacing:-13.069425pt;}
.wsbf{word-spacing:-13.059860pt;}
.ws190{word-spacing:-13.050296pt;}
.ws1c8{word-spacing:-12.973197pt;}
.ws11c{word-spacing:-12.959436pt;}
.ws1e2{word-spacing:-12.909437pt;}
.ws37{word-spacing:-12.825539pt;}
.ws6d{word-spacing:-12.811192pt;}
.wsfd{word-spacing:-12.801628pt;}
.wsae{word-spacing:-12.782500pt;}
.wscf{word-spacing:-12.772936pt;}
.wsd0{word-spacing:-12.763372pt;}
.ws2b{word-spacing:-12.739408pt;}
.ws1f3{word-spacing:-12.713904pt;}
.ws180{word-spacing:-12.679898pt;}
.ws3d{word-spacing:-12.677294pt;}
.ws78{word-spacing:-12.667730pt;}
.ws20{word-spacing:-12.654393pt;}
.ws1fe{word-spacing:-12.650143pt;}
.ws1f4{word-spacing:-12.641641pt;}
.ws29{word-spacing:-12.628889pt;}
.ws1df{word-spacing:-12.624638pt;}
.wsaa{word-spacing:-12.610345pt;}
.ws166{word-spacing:-12.607636pt;}
.ws28{word-spacing:-12.603385pt;}
.ws2a{word-spacing:-12.603362pt;}
.ws1e{word-spacing:-12.599134pt;}
.ws1ab{word-spacing:-12.590633pt;}
.ws1a4{word-spacing:-12.586382pt;}
.ws1e7{word-spacing:-12.586369pt;}
.ws1d{word-spacing:-12.582131pt;}
.ws27{word-spacing:-12.573630pt;}
.ws38{word-spacing:-12.572088pt;}
.ws1f{word-spacing:-12.552376pt;}
.ws94{word-spacing:-12.548178pt;}
.ws1ef{word-spacing:-12.548113pt;}
.ws9c{word-spacing:-12.538614pt;}
.ws148{word-spacing:-12.531123pt;}
.ws9d{word-spacing:-12.529050pt;}
.ws1a1{word-spacing:-12.526872pt;}
.ws1d1{word-spacing:-12.522621pt;}
.ws21{word-spacing:-12.509877pt;}
.ws1e3{word-spacing:-12.505628pt;}
.wsdc{word-spacing:-12.466883pt;}
.ws18f{word-spacing:-12.409498pt;}
.ws13{word-spacing:-12.395151pt;}
.ws1b4{word-spacing:-12.386598pt;}
.ws14{word-spacing:-12.385587pt;}
.ws1c2{word-spacing:-12.365344pt;}
.ws1ce{word-spacing:-12.356843pt;}
.ws119{word-spacing:-12.347331pt;}
.wsc7{word-spacing:-12.313867pt;}
.wsc8{word-spacing:-12.299510pt;}
.ws86{word-spacing:-12.294728pt;}
.ws139{word-spacing:-12.285164pt;}
.wsb2{word-spacing:-12.246907pt;}
.ws76{word-spacing:-12.237343pt;}
.wsc6{word-spacing:-12.223017pt;}
.ws118{word-spacing:-12.222996pt;}
.ws117{word-spacing:-12.199086pt;}
.wse5{word-spacing:-12.175176pt;}
.wsa7{word-spacing:-12.103444pt;}
.ws127{word-spacing:-12.046060pt;}
.ws161{word-spacing:-11.998239pt;}
.ws138{word-spacing:-11.983892pt;}
.ws137{word-spacing:-11.974328pt;}
.ws17f{word-spacing:-11.974278pt;}
.ws26{word-spacing:-11.965777pt;}
.ws1d4{word-spacing:-11.940272pt;}
.ws1b2{word-spacing:-11.859509pt;}
.ws14d{word-spacing:-11.849994pt;}
.ws185{word-spacing:-11.840430pt;}
.ws174{word-spacing:-11.830866pt;}
.wse{word-spacing:-11.792609pt;}
.ws133{word-spacing:-11.783045pt;}
.ws16{word-spacing:-11.763917pt;}
.ws144{word-spacing:-11.754353pt;}
.ws158{word-spacing:-11.668275pt;}
.ws15{word-spacing:-11.610890pt;}
.ws1f9{word-spacing:-11.549206pt;}
.wsa2{word-spacing:-11.467428pt;}
.ws1a{word-spacing:-11.438735pt;}
.ws1f2{word-spacing:-11.383428pt;}
.ws2f{word-spacing:-11.381350pt;}
.ws49{word-spacing:-11.314401pt;}
.wscc{word-spacing:-11.300079pt;}
.wscd{word-spacing:-11.285709pt;}
.ws156{word-spacing:-11.285662pt;}
.wsce{word-spacing:-11.276145pt;}
.ws1d2{word-spacing:-11.264405pt;}
.ws13b{word-spacing:-11.261790pt;}
.ws1cc{word-spacing:-11.255907pt;}
.ws1ad{word-spacing:-11.247405pt;}
.ws13a{word-spacing:-11.242713pt;}
.ws1fa{word-spacing:-11.238871pt;}
.ws1f7{word-spacing:-11.209160pt;}
.ws13c{word-spacing:-11.190067pt;}
.ws1b6{word-spacing:-11.179394pt;}
.ws1ea{word-spacing:-11.162391pt;}
.ws1b3{word-spacing:-11.158171pt;}
.ws1ff{word-spacing:-11.115633pt;}
.ws1d3{word-spacing:-11.111377pt;}
.ws19d{word-spacing:-11.102881pt;}
.ws1b0{word-spacing:-11.098636pt;}
.ws1de{word-spacing:-11.098630pt;}
.wse8{word-spacing:-11.075297pt;}
.ws116{word-spacing:-11.070515pt;}
.ws1b5{word-spacing:-11.060373pt;}
.ws75{word-spacing:-11.046605pt;}
.ws74{word-spacing:-11.017912pt;}
.ws18d{word-spacing:-10.955745pt;}
.ws61{word-spacing:-10.934918pt;}
.wsdb{word-spacing:-10.916322pt;}
.ws91{word-spacing:-10.903142pt;}
.ws5f{word-spacing:-10.886567pt;}
.ws171{word-spacing:-10.874450pt;}
.ws165{word-spacing:-10.860590pt;}
.ws164{word-spacing:-10.852088pt;}
.ws73{word-spacing:-10.845757pt;}
.ws115{word-spacing:-10.788372pt;}
.ws67{word-spacing:-10.716641pt;}
.wsb4{word-spacing:-10.711859pt;}
.ws6e{word-spacing:-10.702295pt;}
.ws19f{word-spacing:-10.665056pt;}
.ws179{word-spacing:-10.601871pt;}
.wsb9{word-spacing:-10.592307pt;}
.ws48{word-spacing:-10.563615pt;}
.ws19e{word-spacing:-10.469523pt;}
.ws1ca{word-spacing:-10.461022pt;}
.ws3a{word-spacing:-10.377114pt;}
.ws1cf{word-spacing:-10.324999pt;}
.ws47{word-spacing:-10.247997pt;}
.wsb5{word-spacing:-10.181048pt;}
.ws58{word-spacing:-10.161920pt;}
.ws1bc{word-spacing:-10.125215pt;}
.ws14b{word-spacing:-10.023240pt;}
.ws14a{word-spacing:-10.008893pt;}
.ws128{word-spacing:-9.980201pt;}
.ws170{word-spacing:-9.932380pt;}
.ws1c0{word-spacing:-9.882924pt;}
.wsba{word-spacing:-9.865431pt;}
.ws5c{word-spacing:-9.848865pt;}
.ws143{word-spacing:-9.846303pt;}
.ws95{word-spacing:-9.831956pt;}
.ws46{word-spacing:-9.745879pt;}
.ws1d5{word-spacing:-9.661887pt;}
.ws1c5{word-spacing:-9.653385pt;}
.ws98{word-spacing:-9.564160pt;}
.ws12b{word-spacing:-9.525903pt;}
.wsf{word-spacing:-9.501993pt;}
.ws172{word-spacing:-9.482865pt;}
.ws122{word-spacing:-9.411133pt;}
.wsda{word-spacing:-9.353748pt;}
.ws184{word-spacing:-9.344184pt;}
.ws5a{word-spacing:-9.258107pt;}
.ws1ec{word-spacing:-9.224056pt;}
.ws3f{word-spacing:-9.191158pt;}
.ws12{word-spacing:-9.172029pt;}
.ws1b1{word-spacing:-9.066786pt;}
.ws1f5{word-spacing:-9.028529pt;}
.ws132{word-spacing:-8.985516pt;}
.ws1d6{word-spacing:-8.930763pt;}
.ws1d0{word-spacing:-8.922248pt;}
.ws1bd{word-spacing:-8.752256pt;}
.ws1be{word-spacing:-8.730979pt;}
.ws1ba{word-spacing:-8.594956pt;}
.ws69{word-spacing:-8.579052pt;}
.ws1c1{word-spacing:-8.573702pt;}
.wsd7{word-spacing:-8.349512pt;}
.ws1c6{word-spacing:-8.267650pt;}
.ws155{word-spacing:-8.038112pt;}
.ws12a{word-spacing:-8.000420pt;}
.ws1d9{word-spacing:-7.868083pt;}
.ws1ed{word-spacing:-7.859581pt;}
.ws154{word-spacing:-7.774567pt;}
.ws19a{word-spacing:-7.685302pt;}
.ws1d7{word-spacing:-7.672597pt;}
.ws1cb{word-spacing:-7.396238pt;}
.ws1dc{word-spacing:-7.387751pt;}
.ws1bf{word-spacing:-7.366498pt;}
.ws1bb{word-spacing:-7.221973pt;}
.ws93{word-spacing:-7.110953pt;}
.ws201{word-spacing:-7.098702pt;}
.ws2d{word-spacing:-6.910106pt;}
.ws17d{word-spacing:-6.775648pt;}
.ws17c{word-spacing:-6.677881pt;}
.ws12c{word-spacing:-6.671009pt;}
.ws56{word-spacing:-6.618399pt;}
.ws1da{word-spacing:-6.588616pt;}
.ws124{word-spacing:-6.551450pt;}
.ws92{word-spacing:-6.474936pt;}
.ws1e8{word-spacing:-6.380331pt;}
.ws3b{word-spacing:-6.283653pt;}
.ws1e6{word-spacing:-6.261311pt;}
.ws19c{word-spacing:-6.197550pt;}
.ws1dd{word-spacing:-6.070028pt;}
.ws1fb{word-spacing:-5.946757pt;}
.ws59{word-spacing:-5.743278pt;}
.ws202{word-spacing:-5.725720pt;}
.ws5b{word-spacing:-5.322455pt;}
.wsd{word-spacing:-5.202903pt;}
.ws135{word-spacing:-5.188557pt;}
.ws1e9{word-spacing:-5.075360pt;}
.ws3c{word-spacing:-4.834683pt;}
.ws90{word-spacing:-4.753388pt;}
.ws65{word-spacing:-4.662528pt;}
.ws1fc{word-spacing:-4.620533pt;}
.wsf5{word-spacing:-4.275180pt;}
.ws68{word-spacing:-4.083896pt;}
.ws17e{word-spacing:-3.655619pt;}
.ws140{word-spacing:-3.529175pt;}
.ws10e{word-spacing:-3.022275pt;}
.ws35{word-spacing:-2.577541pt;}
.ws193{word-spacing:-2.395822pt;}
.ws1e0{word-spacing:-2.019092pt;}
.ws16b{word-spacing:-1.908553pt;}
.wsd5{word-spacing:-1.214648pt;}
.ws16c{word-spacing:-0.790634pt;}
.ws13f{word-spacing:-0.731649pt;}
.ws1e1{word-spacing:-0.646109pt;}
.ws111{word-spacing:-0.612106pt;}
.ws10a{word-spacing:-0.368220pt;}
.ws1a7{word-spacing:-0.079859pt;}
.wsc2{word-spacing:-0.071731pt;}
.ws6b{word-spacing:-0.047821pt;}
.ws167{word-spacing:-0.010548pt;}
.ws62{word-spacing:0.000000pt;}
.ws168{word-spacing:0.005747pt;}
.ws1a6{word-spacing:0.005942pt;}
.ws1a8{word-spacing:0.012777pt;}
.ws1a9{word-spacing:0.015972pt;}
.ws1a5{word-spacing:0.030616pt;}
.ws32{word-spacing:2.113679pt;}
.ws34{word-spacing:2.940979pt;}
.ws33{word-spacing:7.388314pt;}
.ws36{word-spacing:11.209196pt;}
.ws109{word-spacing:23.255255pt;}
.ws0{word-spacing:26.447869pt;}
.ws31{word-spacing:27.989514pt;}
.ws17a{word-spacing:50.102696pt;}
.ws162{word-spacing:50.861636pt;}
.ws150{word-spacing:51.851156pt;}
.ws169{word-spacing:52.578873pt;}
.ws7c{word-spacing:630.483770pt;}
.ws63{word-spacing:1577.785123pt;}
._27{margin-left:-99.271371pt;}
._2d{margin-left:-92.716831pt;}
._2f{margin-left:-89.119282pt;}
._22{margin-left:-86.426403pt;}
._20{margin-left:-80.093728pt;}
._17{margin-left:-78.513345pt;}
._2c{margin-left:-76.449719pt;}
._26{margin-left:-70.035714pt;}
._11{margin-left:-68.500401pt;}
._30{margin-left:-66.657104pt;}
._12{margin-left:-65.496514pt;}
._1e{margin-left:-64.074931pt;}
._16{margin-left:-62.139192pt;}
._1f{margin-left:-60.848075pt;}
._15{margin-left:-58.899733pt;}
._19{margin-left:-55.601311pt;}
._18{margin-left:-52.414909pt;}
._36{margin-left:-51.071213pt;}
._28{margin-left:-50.161211pt;}
._1d{margin-left:-48.056201pt;}
._2e{margin-left:-47.122278pt;}
._13{margin-left:-45.941781pt;}
._21{margin-left:-44.829335pt;}
._29{margin-left:-43.742114pt;}
._14{margin-left:-42.525607pt;}
._37{margin-left:-41.091235pt;}
._38{margin-left:-34.313184pt;}
._2b{margin-left:-33.130179pt;}
._2a{margin-left:-29.066802pt;}
._3e{margin-left:-16.507105pt;}
._3c{margin-left:-14.724394pt;}
._3d{margin-left:-13.746375pt;}
._2{margin-left:-10.594946pt;}
._3f{margin-left:-9.581063pt;}
._b{margin-left:-8.548797pt;}
._3{margin-left:-7.428152pt;}
._e{margin-left:-5.757624pt;}
._a{margin-left:-4.796426pt;}
._1{margin-left:-3.854356pt;}
._6{margin-left:-2.357565pt;}
._0{margin-left:-1.268835pt;}
._5{width:1.463316pt;}
._4{width:2.911696pt;}
._d{width:8.456568pt;}
._8{width:10.927480pt;}
._32{width:12.538614pt;}
._3a{width:14.007749pt;}
._3b{width:16.158058pt;}
._c{width:18.176686pt;}
._f{width:21.257831pt;}
._31{width:22.346035pt;}
._39{width:26.567000pt;}
._10{width:51.846280pt;}
._7{width:56.691558pt;}
._9{width:67.514571pt;}
._35{width:76.362672pt;}
._1c{width:77.507088pt;}
._25{width:80.116656pt;}
._34{width:89.528000pt;}
._1b{width:90.863289pt;}
._24{width:93.934987pt;}
._33{width:102.632072pt;}
._1a{width:104.162105pt;}
._23{width:107.684102pt;}
.fs9{font-size:23.910400pt;}
.fsa{font-size:26.773333pt;}
.fs14{font-size:29.714133pt;}
.fs6{font-size:31.880533pt;}
.fs18{font-size:31.943467pt;}
.fsc{font-size:35.161067pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs13{font-size:43.736533pt;}
.fs17{font-size:47.120000pt;}
.fsf{font-size:47.820267pt;}
.fs1{font-size:47.820800pt;}
.fsb{font-size:48.755200pt;}
.fs12{font-size:49.439467pt;}
.fs4{font-size:51.805867pt;}
.fs1a{font-size:56.632000pt;}
.fs19{font-size:56.994667pt;}
.fs11{font-size:57.474133pt;}
.fs10{font-size:57.621333pt;}
.fse{font-size:58.597333pt;}
.fsd{font-size:58.899733pt;}
.fs16{font-size:59.420267pt;}
.fs15{font-size:59.586667pt;}
.fs5{font-size:61.104000pt;}
.fs0{font-size:63.760533pt;}
.fs3{font-size:74.387733pt;}
.fs2{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:42.624000pt;}
.y13a{bottom:85.113400pt;}
.y102{bottom:85.125813pt;}
.yce{bottom:85.126107pt;}
.y95{bottom:85.126800pt;}
.y2f{bottom:85.128000pt;}
.y1d4{bottom:85.128560pt;}
.y170{bottom:85.368120pt;}
.y1a6{bottom:85.368960pt;}
.y15f{bottom:85.369213pt;}
.y1d3{bottom:97.752133pt;}
.y16f{bottom:97.980000pt;}
.y1a5{bottom:97.980853pt;}
.y15e{bottom:97.981093pt;}
.y139{bottom:99.729827pt;}
.y101{bottom:99.742240pt;}
.ycd{bottom:99.742547pt;}
.y94{bottom:99.743240pt;}
.y2e{bottom:105.049027pt;}
.y5d{bottom:109.498200pt;}
.y1a4{bottom:110.604427pt;}
.y15d{bottom:110.604667pt;}
.y138{bottom:114.346253pt;}
.y100{bottom:114.358667pt;}
.ycc{bottom:114.358973pt;}
.y93{bottom:114.359667pt;}
.y2d{bottom:117.012680pt;}
.y16e{bottom:118.641333pt;}
.y1d2{bottom:119.676000pt;}
.y1a3{bottom:123.228000pt;}
.y15c{bottom:123.228253pt;}
.y5c{bottom:124.102667pt;}
.y137{bottom:128.950720pt;}
.yff{bottom:128.963147pt;}
.ycb{bottom:128.963440pt;}
.y92{bottom:128.963707pt;}
.y2c{bottom:128.964653pt;}
.y15b{bottom:135.840133pt;}
.y5b{bottom:138.719107pt;}
.y165{bottom:139.965333pt;}
.y2b{bottom:140.916613pt;}
.y136{bottom:143.567160pt;}
.y91{bottom:143.575120pt;}
.yfe{bottom:143.579573pt;}
.yca{bottom:143.579867pt;}
.y1a2{bottom:143.808000pt;}
.y2a{bottom:152.880267pt;}
.y5a{bottom:153.335533pt;}
.y15a{bottom:156.592000pt;}
.yfd{bottom:158.176773pt;}
.y135{bottom:158.183587pt;}
.y90{bottom:158.191547pt;}
.yc9{bottom:158.196293pt;}
.y191{bottom:164.817333pt;}
.y29{bottom:164.832227pt;}
.y166{bottom:167.034000pt;}
.y1d1{bottom:167.808000pt;}
.y59{bottom:167.940000pt;}
.yfc{bottom:172.781240pt;}
.y134{bottom:172.788053pt;}
.y8f{bottom:172.796013pt;}
.y192{bottom:177.218133pt;}
.y144{bottom:178.332000pt;}
.y28{bottom:180.768173pt;}
.y58{bottom:182.554240pt;}
.yfb{bottom:187.397667pt;}
.y133{bottom:187.404480pt;}
.y8e{bottom:187.412440pt;}
.yc8{bottom:187.416000pt;}
.y1a0{bottom:188.998667pt;}
.y1d0{bottom:189.732133pt;}
.y145{bottom:191.165587pt;}
.y19f{bottom:192.172000pt;}
.y27{bottom:192.720133pt;}
.y167{bottom:196.059707pt;}
.y57{bottom:197.170667pt;}
.yfa{bottom:202.014093pt;}
.y132{bottom:202.020907pt;}
.y8d{bottom:202.028867pt;}
.y19e{bottom:205.989333pt;}
.y158{bottom:206.458533pt;}
.y19d{bottom:209.160000pt;}
.y193{bottom:210.575560pt;}
.yc7{bottom:211.332000pt;}
.y56{bottom:211.775147pt;}
.y26{bottom:215.040440pt;}
.yf9{bottom:216.618560pt;}
.y131{bottom:216.625387pt;}
.y8c{bottom:216.633347pt;}
.y157{bottom:217.298667pt;}
.y19c{bottom:222.978667pt;}
.y168{bottom:225.083013pt;}
.y19b{bottom:226.150667pt;}
.y55{bottom:226.391573pt;}
.y25{bottom:226.992400pt;}
.y156{bottom:228.140000pt;}
.yf8{bottom:231.235000pt;}
.y130{bottom:231.241813pt;}
.y8b{bottom:231.249773pt;}
.y146{bottom:232.594093pt;}
.y1cf{bottom:237.865920pt;}
.y24{bottom:238.944360pt;}
.y155{bottom:238.980000pt;}
.y19a{bottom:239.969333pt;}
.y54{bottom:241.008000pt;}
.y199{bottom:243.140000pt;}
.y194{bottom:243.932987pt;}
.yf7{bottom:245.851427pt;}
.y12f{bottom:245.858240pt;}
.y8a{bottom:245.866200pt;}
.y154{bottom:249.821333pt;}
.y1ce{bottom:250.489507pt;}
.yc6{bottom:250.978240pt;}
.y23{bottom:253.560467pt;}
.y169{bottom:254.108720pt;}
.y53{bottom:255.609347pt;}
.yf6{bottom:260.455893pt;}
.y12e{bottom:260.462707pt;}
.y89{bottom:260.470667pt;}
.y153{bottom:260.662667pt;}
.y1cd{bottom:263.113080pt;}
.y22{bottom:265.512427pt;}
.yc5{bottom:265.594667pt;}
.y52{bottom:270.225773pt;}
.y152{bottom:271.504000pt;}
.y147{bottom:273.965320pt;}
.yf5{bottom:275.072320pt;}
.y12d{bottom:275.079133pt;}
.y88{bottom:275.087107pt;}
.y1cc{bottom:275.724960pt;}
.y195{bottom:277.231520pt;}
.y21{bottom:277.476080pt;}
.yc4{bottom:280.211107pt;}
.y151{bottom:282.343467pt;}
.y16a{bottom:283.074653pt;}
.y51{bottom:284.842200pt;}
.y1cb{bottom:288.348533pt;}
.y20{bottom:289.428040pt;}
.yf4{bottom:289.688747pt;}
.y12c{bottom:289.695560pt;}
.y87{bottom:289.703533pt;}
.y150{bottom:293.185200pt;}
.yc3{bottom:294.815573pt;}
.y50{bottom:299.446667pt;}
.y1ca{bottom:300.960427pt;}
.y1f{bottom:301.380000pt;}
.y14f{bottom:304.025067pt;}
.yf3{bottom:304.293227pt;}
.y12b{bottom:304.300040pt;}
.y86{bottom:304.307573pt;}
.yc2{bottom:309.431573pt;}
.y196{bottom:310.588947pt;}
.y16b{bottom:312.100360pt;}
.y1c9{bottom:313.584000pt;}
.y4f{bottom:314.063107pt;}
.y14e{bottom:314.866133pt;}
.y148{bottom:315.395053pt;}
.yf2{bottom:318.909653pt;}
.y12a{bottom:318.916467pt;}
.y85{bottom:318.923480pt;}
.yc1{bottom:319.860000pt;}
.y16d{bottom:323.221067pt;}
.yc0{bottom:324.048320pt;}
.y14d{bottom:325.707333pt;}
.y4e{bottom:328.679533pt;}
.yf1{bottom:333.526080pt;}
.y129{bottom:333.532893pt;}
.y1e{bottom:334.810200pt;}
.y1c8{bottom:335.496133pt;}
.y1a1{bottom:335.876133pt;}
.y14c{bottom:336.545200pt;}
.y159{bottom:339.459333pt;}
.y16c{bottom:341.123680pt;}
.y4d{bottom:343.272960pt;}
.y197{bottom:343.945187pt;}
.y83{bottom:346.606493pt;}
.y14b{bottom:347.386267pt;}
.yf0{bottom:348.130547pt;}
.y128{bottom:348.137360pt;}
.y1d{bottom:349.414667pt;}
.y84{bottom:351.611653pt;}
.ybe{bottom:352.392000pt;}
.ybb{bottom:353.508000pt;}
.y149{bottom:356.763840pt;}
.yba{bottom:357.744000pt;}
.y4c{bottom:357.889387pt;}
.ybd{bottom:361.860000pt;}
.yb9{bottom:361.909653pt;}
.ybf{bottom:361.920000pt;}
.y127{bottom:362.753787pt;}
.y1c{bottom:364.031107pt;}
.y4b{bottom:372.493853pt;}
.ybc{bottom:373.811920pt;}
.y82{bottom:374.303107pt;}
.y198{bottom:377.302613pt;}
.yef{bottom:377.362213pt;}
.y126{bottom:377.370213pt;}
.y1b{bottom:378.647533pt;}
.y1c7{bottom:383.640427pt;}
.y4a{bottom:387.110280pt;}
.y81{bottom:388.907573pt;}
.y125{bottom:391.974693pt;}
.y164{bottom:392.371587pt;}
.y1a{bottom:393.250667pt;}
.y1c6{bottom:396.264000pt;}
.yb8{bottom:397.741773pt;}
.y14a{bottom:398.193573pt;}
.y49{bottom:401.726707pt;}
.y80{bottom:403.523573pt;}
.y124{bottom:406.591120pt;}
.y163{bottom:406.988013pt;}
.y19{bottom:407.867107pt;}
.yb7{bottom:412.358200pt;}
.yee{bottom:414.022827pt;}
.y48{bottom:416.331187pt;}
.y7f{bottom:418.138200pt;}
.y1c5{bottom:418.176000pt;}
.y123{bottom:421.207547pt;}
.y162{bottom:421.604440pt;}
.y18{bottom:422.483533pt;}
.y190{bottom:422.814693pt;}
.yb6{bottom:426.974627pt;}
.y1f6{bottom:428.028133pt;}
.y21d{bottom:428.114507pt;}
.yed{bottom:428.627307pt;}
.y47{bottom:430.947613pt;}
.y7e{bottom:432.742667pt;}
.y122{bottom:435.812013pt;}
.y161{bottom:436.208920pt;}
.y143{bottom:436.211147pt;}
.y17{bottom:437.087280pt;}
.y18f{bottom:437.431120pt;}
.y1f5{bottom:441.311627pt;}
.y21c{bottom:441.398000pt;}
.yb5{bottom:441.579107pt;}
.yec{bottom:443.243733pt;}
.y46{bottom:445.564040pt;}
.y7d{bottom:447.359107pt;}
.y121{bottom:450.428440pt;}
.y160{bottom:450.825347pt;}
.y142{bottom:450.827573pt;}
.y16{bottom:451.703707pt;}
.y18e{bottom:452.047547pt;}
.y1f4{bottom:454.595133pt;}
.y21b{bottom:454.681507pt;}
.yb4{bottom:456.195533pt;}
.yeb{bottom:457.860160pt;}
.y45{bottom:460.168507pt;}
.y7c{bottom:461.975533pt;}
.y120{bottom:465.044867pt;}
.y141{bottom:465.441773pt;}
.y1c4{bottom:466.312893pt;}
.y15{bottom:466.319107pt;}
.y18d{bottom:466.652013pt;}
.y1f3{bottom:467.866933pt;}
.y21a{bottom:467.965000pt;}
.yb3{bottom:470.811960pt;}
.yea{bottom:472.464627pt;}
.y44{bottom:474.784933pt;}
.y7b{bottom:476.579147pt;}
.y11f{bottom:479.649347pt;}
.y140{bottom:480.046240pt;}
.y1c3{bottom:480.917360pt;}
.y14{bottom:480.923573pt;}
.y1f2{bottom:481.150440pt;}
.y219{bottom:481.248507pt;}
.y18c{bottom:481.268440pt;}
.yb2{bottom:485.416427pt;}
.ye9{bottom:487.081053pt;}
.y43{bottom:489.401360pt;}
.y7a{bottom:491.195573pt;}
.y11e{bottom:494.265773pt;}
.y1f1{bottom:494.433933pt;}
.y218{bottom:494.532000pt;}
.y13f{bottom:494.662667pt;}
.y1c2{bottom:495.533787pt;}
.y13{bottom:495.540000pt;}
.y18b{bottom:495.884867pt;}
.yb1{bottom:500.032867pt;}
.ye8{bottom:501.697480pt;}
.y42{bottom:504.005840pt;}
.y79{bottom:505.811400pt;}
.y1f0{bottom:507.717440pt;}
.y217{bottom:507.829560pt;}
.y11d{bottom:508.882200pt;}
.y13e{bottom:509.279107pt;}
.y1c1{bottom:510.150213pt;}
.y18a{bottom:510.489347pt;}
.yb0{bottom:514.637333pt;}
.ye7{bottom:516.301960pt;}
.y41{bottom:518.622267pt;}
.y12{bottom:519.444000pt;}
.y1ef{bottom:521.000933pt;}
.y216{bottom:521.113067pt;}
.y11c{bottom:523.486667pt;}
.y13d{bottom:523.883573pt;}
.y1c0{bottom:524.754693pt;}
.y189{bottom:525.105773pt;}
.y78{bottom:529.032000pt;}
.yaf{bottom:529.253760pt;}
.ye6{bottom:530.918387pt;}
.y40{bottom:533.238693pt;}
.y1ee{bottom:534.284440pt;}
.y215{bottom:534.396560pt;}
.y77{bottom:537.393240pt;}
.y11b{bottom:538.103107pt;}
.y13c{bottom:538.500000pt;}
.y1bf{bottom:539.371120pt;}
.y188{bottom:539.710240pt;}
.yae{bottom:543.870187pt;}
.ye5{bottom:545.534813pt;}
.y1ed{bottom:547.567933pt;}
.y214{bottom:547.680067pt;}
.y3f{bottom:547.843160pt;}
.y11a{bottom:552.707573pt;}
.y1be{bottom:553.987547pt;}
.y187{bottom:554.326667pt;}
.yad{bottom:558.474653pt;}
.ye4{bottom:560.139280pt;}
.y1ec{bottom:560.851440pt;}
.y213{bottom:560.963560pt;}
.y3e{bottom:562.459587pt;}
.y119{bottom:567.324000pt;}
.y1bd{bottom:568.592013pt;}
.y186{bottom:568.943107pt;}
.y76{bottom:569.913773pt;}
.yac{bottom:573.091093pt;}
.y1eb{bottom:574.134933pt;}
.y212{bottom:574.247067pt;}
.ye3{bottom:574.755707pt;}
.y3d{bottom:577.076013pt;}
.y11{bottom:582.382440pt;}
.y1bc{bottom:583.208440pt;}
.y185{bottom:583.547573pt;}
.y75{bottom:584.518240pt;}
.y13b{bottom:584.880000pt;}
.y1ea{bottom:587.418440pt;}
.y211{bottom:587.530560pt;}
.yab{bottom:587.707520pt;}
.ye2{bottom:589.372133pt;}
.y118{bottom:591.240000pt;}
.y3c{bottom:591.680493pt;}
.y1bb{bottom:597.824867pt;}
.y184{bottom:598.164000pt;}
.y74{bottom:599.134667pt;}
.y10{bottom:599.650627pt;}
.y1e9{bottom:600.701933pt;}
.y210{bottom:600.814067pt;}
.yaa{bottom:602.311987pt;}
.ye1{bottom:603.976613pt;}
.y3b{bottom:606.296920pt;}
.y1ba{bottom:612.429347pt;}
.y73{bottom:613.751107pt;}
.y1e8{bottom:613.985440pt;}
.y20f{bottom:614.097560pt;}
.yf{bottom:616.918813pt;}
.ya9{bottom:616.928413pt;}
.ye0{bottom:618.593040pt;}
.y3a{bottom:620.913347pt;}
.y1b9{bottom:627.045773pt;}
.y1e7{bottom:627.268933pt;}
.y20e{bottom:627.381067pt;}
.y72{bottom:628.355573pt;}
.ya8{bottom:631.544840pt;}
.ydf{bottom:633.209467pt;}
.ye{bottom:634.187013pt;}
.y39{bottom:635.517813pt;}
.y183{bottom:637.584427pt;}
.y1e6{bottom:640.552440pt;}
.y117{bottom:640.650213pt;}
.y20d{bottom:640.664560pt;}
.y1b8{bottom:641.662200pt;}
.y71{bottom:642.964747pt;}
.yde{bottom:647.813933pt;}
.y38{bottom:650.134240pt;}
.y182{bottom:650.208000pt;}
.yd{bottom:651.455200pt;}
.y1e5{bottom:653.835933pt;}
.y20c{bottom:653.948067pt;}
.y116{bottom:655.254693pt;}
.y1b7{bottom:656.266667pt;}
.y70{bottom:657.581173pt;}
.ya7{bottom:660.764547pt;}
.ydd{bottom:662.430360pt;}
.y37{bottom:664.750667pt;}
.y1e4{bottom:667.119440pt;}
.y20b{bottom:667.219880pt;}
.yc{bottom:668.723387pt;}
.y115{bottom:669.871120pt;}
.y1b6{bottom:670.883107pt;}
.y181{bottom:671.016000pt;}
.ydc{bottom:677.046787pt;}
.y36{bottom:679.355147pt;}
.y1e3{bottom:680.402933pt;}
.y20a{bottom:680.503373pt;}
.y114{bottom:684.487547pt;}
.y1b5{bottom:685.499533pt;}
.yb{bottom:685.991587pt;}
.y6f{bottom:686.800880pt;}
.ydb{bottom:691.651267pt;}
.y171{bottom:693.061333pt;}
.y1e2{bottom:693.686440pt;}
.y209{bottom:693.786880pt;}
.y35{bottom:693.971573pt;}
.y113{bottom:699.092013pt;}
.ya6{bottom:699.092920pt;}
.y1b4{bottom:700.104000pt;}
.ya{bottom:703.259773pt;}
.y172{bottom:706.075040pt;}
.yda{bottom:706.267693pt;}
.y1e1{bottom:706.969933pt;}
.y208{bottom:707.070373pt;}
.y34{bottom:708.588000pt;}
.y112{bottom:713.708440pt;}
.ya5{bottom:713.709347pt;}
.y1e0{bottom:720.253440pt;}
.y207{bottom:720.353880pt;}
.y9{bottom:720.539613pt;}
.yd9{bottom:720.884120pt;}
.y33{bottom:723.192560pt;}
.y1b3{bottom:724.020000pt;}
.y6e{bottom:728.309333pt;}
.y111{bottom:728.312920pt;}
.ya4{bottom:728.313813pt;}
.y1df{bottom:733.536933pt;}
.y206{bottom:733.638440pt;}
.yd8{bottom:735.488587pt;}
.y8{bottom:737.807813pt;}
.y32{bottom:737.808987pt;}
.y6d{bottom:742.925760pt;}
.y110{bottom:742.929347pt;}
.ya3{bottom:742.930240pt;}
.y1de{bottom:746.820440pt;}
.y205{bottom:746.921933pt;}
.y173{bottom:748.083747pt;}
.yd7{bottom:750.105027pt;}
.y31{bottom:752.425427pt;}
.y7{bottom:755.076000pt;}
.y6c{bottom:757.542187pt;}
.y10f{bottom:757.545773pt;}
.ya2{bottom:757.546667pt;}
.y1dd{bottom:760.103933pt;}
.y204{bottom:760.205440pt;}
.yd6{bottom:764.721453pt;}
.y30{bottom:767.029893pt;}
.y6b{bottom:772.146667pt;}
.y1b2{bottom:772.147160pt;}
.y10e{bottom:772.150240pt;}
.ya1{bottom:772.151147pt;}
.y1dc{bottom:773.388507pt;}
.y203{bottom:773.488933pt;}
.yd5{bottom:779.325920pt;}
.y1db{bottom:786.672000pt;}
.y6a{bottom:786.763093pt;}
.y1b1{bottom:786.763587pt;}
.y10d{bottom:786.766667pt;}
.ya0{bottom:786.767573pt;}
.y202{bottom:786.772440pt;}
.y174{bottom:790.035613pt;}
.yd4{bottom:793.942347pt;}
.y201{bottom:800.055933pt;}
.y69{bottom:801.379520pt;}
.y1b0{bottom:801.380013pt;}
.y9f{bottom:801.380867pt;}
.y10c{bottom:801.383107pt;}
.yd3{bottom:808.558773pt;}
.y200{bottom:813.339440pt;}
.y68{bottom:815.983987pt;}
.y1af{bottom:815.984493pt;}
.y9e{bottom:815.985347pt;}
.y10b{bottom:815.987573pt;}
.y6{bottom:817.056133pt;}
.yd2{bottom:823.163253pt;}
.y1ff{bottom:826.624000pt;}
.y67{bottom:830.600413pt;}
.y10a{bottom:830.600680pt;}
.y1ae{bottom:830.600920pt;}
.y9d{bottom:830.601773pt;}
.y175{bottom:832.046800pt;}
.yd1{bottom:837.779680pt;}
.y1fe{bottom:839.907507pt;}
.y1da{bottom:842.461440pt;}
.y66{bottom:845.216853pt;}
.y109{bottom:845.217107pt;}
.y1ad{bottom:845.217347pt;}
.y9c{bottom:845.218200pt;}
.y1fd{bottom:853.191000pt;}
.y1d9{bottom:855.073320pt;}
.y65{bottom:859.821320pt;}
.y108{bottom:859.821587pt;}
.y1ac{bottom:859.821813pt;}
.y9b{bottom:859.822667pt;}
.y5{bottom:860.891880pt;}
.y1fc{bottom:866.474507pt;}
.yd0{bottom:866.999373pt;}
.y1d8{bottom:867.696893pt;}
.y17f{bottom:870.194667pt;}
.y17e{bottom:873.165333pt;}
.y176{bottom:873.996187pt;}
.y64{bottom:874.437747pt;}
.y107{bottom:874.438013pt;}
.y1ab{bottom:874.438240pt;}
.y9a{bottom:874.439107pt;}
.y1fb{bottom:879.758000pt;}
.y17d{bottom:886.000000pt;}
.y17c{bottom:888.970667pt;}
.y63{bottom:889.054173pt;}
.y106{bottom:889.054440pt;}
.y1aa{bottom:889.054667pt;}
.y99{bottom:889.055533pt;}
.y4{bottom:891.444013pt;}
.y1fa{bottom:893.041507pt;}
.y1d7{bottom:896.256427pt;}
.y17b{bottom:901.808000pt;}
.y62{bottom:903.658653pt;}
.y105{bottom:903.658907pt;}
.y1a9{bottom:903.659147pt;}
.y98{bottom:903.660000pt;}
.y17a{bottom:904.778000pt;}
.y1f9{bottom:906.325000pt;}
.y1d6{bottom:908.880000pt;}
.y177{bottom:916.007373pt;}
.y179{bottom:917.612667pt;}
.y61{bottom:918.275080pt;}
.y104{bottom:918.275333pt;}
.y1a8{bottom:918.275573pt;}
.y97{bottom:918.276320pt;}
.y1f8{bottom:919.608507pt;}
.y178{bottom:920.582667pt;}
.y3{bottom:921.996133pt;}
.y1d5{bottom:930.792133pt;}
.y180{bottom:931.986933pt;}
.y60{bottom:932.891507pt;}
.y103{bottom:932.891760pt;}
.y1a7{bottom:932.892000pt;}
.y96{bottom:932.892747pt;}
.y1f7{bottom:932.903147pt;}
.y5f{bottom:968.304000pt;}
.y2{bottom:968.484000pt;}
.y1{bottom:992.340000pt;}
.ycf{bottom:1022.280000pt;}
.h38{height:21.631889pt;}
.h19{height:22.635179pt;}
.h3c{height:23.254844pt;}
.h22{height:23.559714pt;}
.h30{height:25.597257pt;}
.h28{height:26.276562pt;}
.hc{height:31.412821pt;}
.h2d{height:31.540342pt;}
.h41{height:31.582850pt;}
.h37{height:31.840196pt;}
.h42{height:31.939861pt;}
.h23{height:32.996352pt;}
.h3b{height:34.303360pt;}
.h33{height:34.813154pt;}
.h8{height:35.339571pt;}
.h1b{height:35.341278pt;}
.h1a{height:35.341651pt;}
.h14{height:35.341971pt;}
.h15{height:35.342985pt;}
.h1c{height:35.359625pt;}
.h3{height:35.483034pt;}
.h2f{height:35.493786pt;}
.h36{height:35.991932pt;}
.h6{height:38.439953pt;}
.h3f{height:40.263714pt;}
.h9{height:40.267287pt;}
.h16{height:40.270914pt;}
.h2e{height:40.272621pt;}
.h1f{height:40.276247pt;}
.hd{height:40.309474pt;}
.h1e{height:40.310434pt;}
.h1d{height:40.312887pt;}
.h17{height:40.313421pt;}
.ha{height:40.314594pt;}
.hb{height:40.317047pt;}
.h29{height:40.317101pt;}
.h10{height:40.318754pt;}
.hf{height:40.322861pt;}
.h2b{height:40.324994pt;}
.h40{height:40.331074pt;}
.h2a{height:40.340621pt;}
.h11{height:40.340727pt;}
.he{height:40.355874pt;}
.h2c{height:40.370114pt;}
.h3e{height:41.228096pt;}
.h24{height:41.412813pt;}
.h18{height:41.418199pt;}
.h3d{height:41.492117pt;}
.h35{height:41.841169pt;}
.h34{height:41.948331pt;}
.h32{height:42.658859pt;}
.h31{height:42.879006pt;}
.h3a{height:43.257954pt;}
.h39{height:43.379093pt;}
.h25{height:44.863104pt;}
.h7{height:45.339168pt;}
.h20{height:47.305771pt;}
.h2{height:48.840569pt;}
.h26{height:52.091571pt;}
.h5{height:55.270086pt;}
.h12{height:63.095625pt;}
.h13{height:74.868226pt;}
.h4{height:78.851054pt;}
.h21{height:87.373598pt;}
.h27{height:1043.146667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:63.968000pt;}
.x1{left:67.748000pt;}
.x32{left:69.284000pt;}
.x9{left:76.579547pt;}
.x16{left:80.359413pt;}
.x1c{left:84.571467pt;}
.x33{left:86.553613pt;}
.x2d{left:88.603200pt;}
.x1a{left:89.992693pt;}
.x3{left:91.724000pt;}
.x23{left:94.639907pt;}
.x19{left:96.822960pt;}
.x2a{left:100.458053pt;}
.x18{left:103.653227pt;}
.x22{left:105.068667pt;}
.x29{left:107.067480pt;}
.xa{left:112.124000pt;}
.x28{left:117.042667pt;}
.x17{left:125.622800pt;}
.xb{left:128.840147pt;}
.x24{left:140.878000pt;}
.x25{left:150.233467pt;}
.x26{left:153.987333pt;}
.x27{left:177.643600pt;}
.x2e{left:186.460667pt;}
.x1d{left:193.471200pt;}
.x31{left:250.616053pt;}
.x2f{left:282.356173pt;}
.x30{left:286.292347pt;}
.x2b{left:301.184000pt;}
.x2c{left:311.101333pt;}
.x1b{left:334.766667pt;}
.xc{left:404.120760pt;}
.x6{left:407.900147pt;}
.xe{left:411.044000pt;}
.xd{left:416.744000pt;}
.x7{left:420.523640pt;}
.x20{left:424.449333pt;}
.x34{left:426.704320pt;}
.x1f{left:429.751667pt;}
.xf{left:440.216000pt;}
.x14{left:445.688000pt;}
.x1e{left:449.860133pt;}
.x12{left:471.356000pt;}
.x11{left:473.108000pt;}
.x10{left:475.951933pt;}
.x13{left:485.312000pt;}
.x35{left:487.797467pt;}
.x4{left:512.841293pt;}
.x21{left:520.041733pt;}
.x5{left:525.464000pt;}
.x2{left:629.744000pt;}
.x15{left:773.666667pt;}
}




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