
    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_b6b299db3d9b0aae93bc4642.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966000;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_ff66e4642bfb4fd29c5b2b4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994000;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_a36794e3db4571ce48e43280.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966138;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_86945a9cb987e26cab827d96.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.956000;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_55e4e859f82fc6ff7c4d4239.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_56907ca3845d5b24d21bc1b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:2.399000;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_dc56938fe27635bde9a37b16.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.774000;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_1428534d8795c661260142b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.773000;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_2656f6dea49c098f27063911.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.483000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.224992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224992,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.224997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224997,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247493,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-75.854898px;}
.vb{vertical-align:-32.654844px;}
.v1{vertical-align:-8.160938px;}
.vc{vertical-align:-1.018592px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.104417px;}
.v7{vertical-align:8.163600px;}
.v9{vertical-align:19.729800px;}
.v6{vertical-align:27.888118px;}
.v4{vertical-align:32.995522px;}
.v2{vertical-align:36.736800px;}
.v8{vertical-align:73.477035px;}
.va{vertical-align:93.203400px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.003586px;}
.ls64{letter-spacing:0.010760px;}
.ls65{letter-spacing:0.025103px;}
.ls14{letter-spacing:0.037658px;}
.ls3a{letter-spacing:0.102216px;}
.ls67{letter-spacing:0.112975px;}
.ls33{letter-spacing:0.117369px;}
.ls38{letter-spacing:0.124878px;}
.ls2f{letter-spacing:0.131400px;}
.ls2{letter-spacing:0.150634px;}
.ls68{letter-spacing:0.157788px;}
.ls5c{letter-spacing:0.161393px;}
.ls41{letter-spacing:0.180513px;}
.ls46{letter-spacing:0.180536px;}
.lse{letter-spacing:0.181278px;}
.ls3e{letter-spacing:0.181382px;}
.ls45{letter-spacing:0.181982px;}
.ls4a{letter-spacing:0.182004px;}
.ls4f{letter-spacing:0.182008px;}
.ls3b{letter-spacing:0.182258px;}
.ls8{letter-spacing:0.182913px;}
.ls43{letter-spacing:0.183746px;}
.ls36{letter-spacing:0.188292px;}
.ls31{letter-spacing:0.193800px;}
.ls34{letter-spacing:0.194400px;}
.ls3{letter-spacing:0.225951px;}
.ls37{letter-spacing:0.236710px;}
.ls20{letter-spacing:0.266552px;}
.ls18{letter-spacing:0.268989px;}
.ls4b{letter-spacing:2.684327px;}
.ls47{letter-spacing:3.024527px;}
.ls5f{letter-spacing:3.288001px;}
.ls6d{letter-spacing:3.806568px;}
.ls5d{letter-spacing:4.232715px;}
.ls11{letter-spacing:4.949670px;}
.ls13{letter-spacing:4.953566px;}
.ls39{letter-spacing:7.709225px;}
.ls3d{letter-spacing:11.980770px;}
.ls5e{letter-spacing:11.981679px;}
.ls51{letter-spacing:12.007669px;}
.ls57{letter-spacing:12.282038px;}
.lsc{letter-spacing:13.164322px;}
.ls6{letter-spacing:13.191752px;}
.ls24{letter-spacing:13.192352px;}
.ls35{letter-spacing:13.379513px;}
.ls4e{letter-spacing:13.386669px;}
.ls4d{letter-spacing:13.387269px;}
.ls22{letter-spacing:13.531952px;}
.ls1a{letter-spacing:13.532552px;}
.ls26{letter-spacing:13.535526px;}
.ls2a{letter-spacing:13.567805px;}
.ls40{letter-spacing:13.831414px;}
.ls30{letter-spacing:14.062745px;}
.ls32{letter-spacing:14.401671px;}
.ls28{letter-spacing:14.553152px;}
.ls44{letter-spacing:14.847000px;}
.ls3f{letter-spacing:14.921330px;}
.ls3c{letter-spacing:14.930327px;}
.ls56{letter-spacing:15.041865px;}
.ls54{letter-spacing:15.068764px;}
.ls4c{letter-spacing:15.187200px;}
.ls25{letter-spacing:15.203258px;}
.ls10{letter-spacing:15.722094px;}
.ls2d{letter-spacing:15.735351px;}
.ls2e{letter-spacing:15.758463px;}
.lsa{letter-spacing:15.913352px;}
.ls69{letter-spacing:15.913952px;}
.ls16{letter-spacing:16.176998px;}
.ls15{letter-spacing:16.225416px;}
.ls17{letter-spacing:16.553583px;}
.ls6c{letter-spacing:16.778463px;}
.lsd{letter-spacing:16.860231px;}
.ls6b{letter-spacing:16.908371px;}
.ls63{letter-spacing:17.274152px;}
.ls27{letter-spacing:17.614352px;}
.ls6a{letter-spacing:17.953952px;}
.lsf{letter-spacing:17.983130px;}
.ls59{letter-spacing:18.598777px;}
.ls12{letter-spacing:19.123494px;}
.ls5a{letter-spacing:19.159863px;}
.ls19{letter-spacing:19.315352px;}
.ls1{letter-spacing:20.676152px;}
.ls1b{letter-spacing:22.036352px;}
.ls1f{letter-spacing:22.376552px;}
.ls5b{letter-spacing:22.675773px;}
.ls5{letter-spacing:22.716752px;}
.ls1c{letter-spacing:23.396552px;}
.ls61{letter-spacing:23.622614px;}
.ls7{letter-spacing:25.097552px;}
.ls29{letter-spacing:25.437752px;}
.ls0{letter-spacing:27.819152px;}
.ls2c{letter-spacing:28.839152px;}
.lsb{letter-spacing:33.942152px;}
.ls2b{letter-spacing:36.663152px;}
.ls1d{letter-spacing:40.404752px;}
.ls49{letter-spacing:61.329492px;}
.ls42{letter-spacing:81.372894px;}
.ls52{letter-spacing:99.059449px;}
.ls50{letter-spacing:123.891894px;}
.ls1e{letter-spacing:140.724285px;}
.ls55{letter-spacing:160.113012px;}
.ls66{letter-spacing:178.942242px;}
.ls23{letter-spacing:195.176552px;}
.ls21{letter-spacing:224.770352px;}
.ls62{letter-spacing:233.245742px;}
.ls53{letter-spacing:472.855763px;}
.ls58{letter-spacing:475.239006px;}
.ls48{letter-spacing:522.032332px;}
.ls60{letter-spacing:849.865366px;}
.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;}
}
.ws1ad{word-spacing:-475.292803px;}
.ws17e{word-spacing:-50.231006px;}
.ws17d{word-spacing:-49.892080px;}
.ws15a{word-spacing:-49.364861px;}
.ws17f{word-spacing:-49.208848px;}
.ws139{word-spacing:-42.918881px;}
.ws2{word-spacing:-39.332232px;}
.ws1{word-spacing:-39.290389px;}
.ws4{word-spacing:-39.231809px;}
.wsc7{word-spacing:-39.164861px;}
.ws3{word-spacing:-39.072807px;}
.ws0{word-spacing:-38.989121px;}
.ws12{word-spacing:-35.829335px;}
.ws59{word-spacing:-34.335622px;}
.ws56{word-spacing:-31.848919px;}
.wsfe{word-spacing:-30.976709px;}
.ws84{word-spacing:-30.970134px;}
.ws2b{word-spacing:-29.696386px;}
.wsff{word-spacing:-28.094532px;}
.wsdc{word-spacing:-27.951071px;}
.ws135{word-spacing:-27.915205px;}
.ws85{word-spacing:-27.885317px;}
.ws136{word-spacing:-27.849452px;}
.ws134{word-spacing:-27.753811px;}
.ws137{word-spacing:-27.628282px;}
.ws100{word-spacing:-27.544596px;}
.ws226{word-spacing:-26.397302px;}
.ws20{word-spacing:-25.258067px;}
.ws154{word-spacing:-25.112813px;}
.ws16e{word-spacing:-25.079695px;}
.ws1f{word-spacing:-25.069775px;}
.ws176{word-spacing:-25.010597px;}
.ws1e{word-spacing:-24.924521px;}
.ws179{word-spacing:-24.332745px;}
.ws191{word-spacing:-23.988439px;}
.ws157{word-spacing:-23.883293px;}
.ws10f{word-spacing:-23.213751px;}
.ws16b{word-spacing:-23.159953px;}
.wsad{word-spacing:-23.025458px;}
.wsc9{word-spacing:-22.939382px;}
.wsbd{word-spacing:-22.928622px;}
.wsb8{word-spacing:-22.885584px;}
.ws55{word-spacing:-22.868098px;}
.ws1a3{word-spacing:-22.815647px;}
.ws75{word-spacing:-22.761849px;}
.ws74{word-spacing:-22.756469px;}
.wsb7{word-spacing:-22.702672px;}
.ws11c{word-spacing:-22.691912px;}
.ws76{word-spacing:-22.675773px;}
.ws15c{word-spacing:-22.654254px;}
.ws11d{word-spacing:-22.638114px;}
.wsde{word-spacing:-22.632734px;}
.ws169{word-spacing:-22.595076px;}
.ws1bc{word-spacing:-22.589696px;}
.wsec{word-spacing:-22.578937px;}
.ws15f{word-spacing:-22.573557px;}
.ws21{word-spacing:-22.562797px;}
.ws158{word-spacing:-22.552038px;}
.ws57{word-spacing:-22.547696px;}
.ws8e{word-spacing:-22.541278px;}
.ws12b{word-spacing:-22.535898px;}
.ws1a0{word-spacing:-22.530519px;}
.ws23{word-spacing:-22.519759px;}
.ws2c{word-spacing:-22.509000px;}
.ws204{word-spacing:-22.498240px;}
.wsdb{word-spacing:-22.487480px;}
.ws7c{word-spacing:-22.476721px;}
.ws15b{word-spacing:-22.471341px;}
.ws1f6{word-spacing:-22.465961px;}
.ws199{word-spacing:-22.449822px;}
.wsc4{word-spacing:-22.444442px;}
.ws1fb{word-spacing:-22.439014px;}
.ws22{word-spacing:-22.433683px;}
.ws24{word-spacing:-22.428303px;}
.ws25{word-spacing:-22.422923px;}
.ws15d{word-spacing:-22.417543px;}
.ws159{word-spacing:-22.401404px;}
.wsc0{word-spacing:-22.396024px;}
.ws70{word-spacing:-22.390644px;}
.ws26{word-spacing:-22.374505px;}
.ws1e1{word-spacing:-22.352986px;}
.ws1ce{word-spacing:-22.342226px;}
.ws1c3{word-spacing:-22.336346px;}
.ws1be{word-spacing:-22.330966px;}
.ws177{word-spacing:-22.309948px;}
.ws4e{word-spacing:-22.288429px;}
.ws1d3{word-spacing:-22.266909px;}
.ws1f7{word-spacing:-22.256150px;}
.wsfc{word-spacing:-22.250770px;}
.ws1ae{word-spacing:-22.240011px;}
.ws195{word-spacing:-22.223871px;}
.wseb{word-spacing:-22.207732px;}
.ws1bf{word-spacing:-22.203957px;}
.ws1fc{word-spacing:-22.202905px;}
.ws83{word-spacing:-22.202352px;}
.ws1cb{word-spacing:-22.201852px;}
.ws3e{word-spacing:-22.196972px;}
.ws1ca{word-spacing:-22.196472px;}
.ws18{word-spacing:-22.164694px;}
.ws155{word-spacing:-22.153934px;}
.ws171{word-spacing:-22.148554px;}
.wsd2{word-spacing:-22.137795px;}
.ws63{word-spacing:-22.105516px;}
.ws1bd{word-spacing:-22.102037px;}
.ws1c9{word-spacing:-22.088457px;}
.ws1ef{word-spacing:-22.073237px;}
.ws20a{word-spacing:-22.051718px;}
.ws1ee{word-spacing:-22.030199px;}
.ws20f{word-spacing:-22.003300px;}
.ws9c{word-spacing:-21.938743px;}
.ws42{word-spacing:-21.901084px;}
.ws4a{word-spacing:-21.879565px;}
.ws9a{word-spacing:-21.841907px;}
.ws210{word-spacing:-21.809628px;}
.ws47{word-spacing:-21.798869px;}
.ws41{word-spacing:-21.750451px;}
.ws37{word-spacing:-21.739691px;}
.wsf9{word-spacing:-21.728931px;}
.ws17b{word-spacing:-21.653614px;}
.ws17c{word-spacing:-21.621336px;}
.wsda{word-spacing:-21.605196px;}
.ws19c{word-spacing:-21.583677px;}
.wsd6{word-spacing:-21.562158px;}
.ws9b{word-spacing:-21.546019px;}
.ws110{word-spacing:-21.540639px;}
.ws80{word-spacing:-21.513740px;}
.ws68{word-spacing:-21.502981px;}
.ws1d2{word-spacing:-21.486841px;}
.wscb{word-spacing:-21.454563px;}
.ws181{word-spacing:-21.438423px;}
.ws38{word-spacing:-21.433044px;}
.ws1e7{word-spacing:-21.390005px;}
.ws143{word-spacing:-21.379246px;}
.ws6f{word-spacing:-21.277030px;}
.ws1e6{word-spacing:-21.260891px;}
.ws2a{word-spacing:-21.228612px;}
.ws192{word-spacing:-21.174814px;}
.ws9e{word-spacing:-21.153295px;}
.wsb6{word-spacing:-21.142535px;}
.ws9d{word-spacing:-21.115637px;}
.ws14e{word-spacing:-21.088738px;}
.wsc2{word-spacing:-21.002661px;}
.ws170{word-spacing:-20.948863px;}
.ws1dc{word-spacing:-20.938104px;}
.ws165{word-spacing:-20.921964px;}
.ws3c{word-spacing:-20.830508px;}
.ws111{word-spacing:-20.814369px;}
.ws7b{word-spacing:-20.776710px;}
.ws147{word-spacing:-20.771331px;}
.ws66{word-spacing:-20.755191px;}
.ws77{word-spacing:-20.728292px;}
.wsa0{word-spacing:-20.717533px;}
.ws11{word-spacing:-20.701393px;}
.ws1b5{word-spacing:-20.685254px;}
.ws183{word-spacing:-20.636836px;}
.wsd1{word-spacing:-20.626077px;}
.wsc8{word-spacing:-20.595913px;}
.ws13d{word-spacing:-20.593798px;}
.wsa8{word-spacing:-20.540000px;}
.ws222{word-spacing:-20.491384px;}
.ws13a{word-spacing:-20.475443px;}
.wsb3{word-spacing:-20.470063px;}
.ws122{word-spacing:-20.389366px;}
.ws211{word-spacing:-20.324809px;}
.ws233{word-spacing:-20.309664px;}
.wse5{word-spacing:-20.303290px;}
.ws21a{word-spacing:-20.287150px;}
.ws223{word-spacing:-20.276189px;}
.ws244{word-spacing:-20.261842px;}
.ws225{word-spacing:-20.257060px;}
.ws22b{word-spacing:-20.214021px;}
.ws112{word-spacing:-20.201074px;}
.ws1b0{word-spacing:-20.190314px;}
.ws229{word-spacing:-20.175764px;}
.ws22d{word-spacing:-20.166200px;}
.ws142{word-spacing:-20.152656px;}
.ws5f{word-spacing:-20.137507px;}
.ws227{word-spacing:-20.113597px;}
.ws49{word-spacing:-20.093478px;}
.wsb1{word-spacing:-20.050440px;}
.ws1d{word-spacing:-20.022736px;}
.ws24a{word-spacing:-20.013172px;}
.ws190{word-spacing:-20.012782px;}
.ws1b2{word-spacing:-19.996642px;}
.ws18f{word-spacing:-19.958984px;}
.ws242{word-spacing:-19.946223px;}
.wsf0{word-spacing:-19.937465px;}
.ws114{word-spacing:-19.910566px;}
.wsee{word-spacing:-19.883667px;}
.ws1d0{word-spacing:-19.813730px;}
.wsef{word-spacing:-19.808350px;}
.ws60{word-spacing:-19.774066px;}
.wsb5{word-spacing:-19.770691px;}
.ws4c{word-spacing:-19.754552px;}
.ws217{word-spacing:-19.727653px;}
.ws13e{word-spacing:-19.652336px;}
.ws185{word-spacing:-19.636197px;}
.ws16a{word-spacing:-19.614678px;}
.ws141{word-spacing:-19.603918px;}
.ws1cf{word-spacing:-19.533981px;}
.ws14f{word-spacing:-19.517842px;}
.ws6e{word-spacing:-19.426386px;}
.ws214{word-spacing:-19.415626px;}
.wsf4{word-spacing:-19.302651px;}
.ws18e{word-spacing:-19.275752px;}
.ws12d{word-spacing:-19.270372px;}
.wsf1{word-spacing:-19.264992px;}
.ws21f{word-spacing:-19.259612px;}
.wsf2{word-spacing:-19.254233px;}
.wse4{word-spacing:-19.221954px;}
.ws11e{word-spacing:-19.205815px;}
.wsf5{word-spacing:-19.178916px;}
.ws12e{word-spacing:-19.141257px;}
.wse3{word-spacing:-19.130498px;}
.ws12f{word-spacing:-19.103599px;}
.wsd4{word-spacing:-19.087459px;}
.ws14d{word-spacing:-19.076700px;}
.wsf3{word-spacing:-19.012143px;}
.ws1f2{word-spacing:-18.963724px;}
.ws140{word-spacing:-18.931446px;}
.ws19f{word-spacing:-18.915306px;}
.wsbf{word-spacing:-18.839990px;}
.ws19e{word-spacing:-18.791572px;}
.ws90{word-spacing:-18.748533px;}
.ws1b1{word-spacing:-18.737774px;}
.ws202{word-spacing:-18.705495px;}
.ws19d{word-spacing:-18.662457px;}
.ws53{word-spacing:-18.655050px;}
.ws8f{word-spacing:-18.608659px;}
.ws87{word-spacing:-18.587140px;}
.ws144{word-spacing:-18.495684px;}
.ws14b{word-spacing:-18.393468px;}
.ws1a8{word-spacing:-18.361189px;}
.ws196{word-spacing:-18.345050px;}
.ws163{word-spacing:-18.328910px;}
.wsae{word-spacing:-18.307391px;}
.ws162{word-spacing:-18.253594px;}
.ws14a{word-spacing:-18.156758px;}
.ws1db{word-spacing:-18.070681px;}
.ws13b{word-spacing:-18.065301px;}
.ws218{word-spacing:-18.054542px;}
.ws102{word-spacing:-17.930807px;}
.ws219{word-spacing:-17.893148px;}
.wsb9{word-spacing:-17.817831px;}
.ws160{word-spacing:-17.790932px;}
.ws10a{word-spacing:-17.769413px;}
.ws109{word-spacing:-17.726375px;}
.ws103{word-spacing:-17.720995px;}
.ws10b{word-spacing:-17.715616px;}
.ws65{word-spacing:-17.591881px;}
.ws1d8{word-spacing:-17.575741px;}
.wsd{word-spacing:-17.570361px;}
.ws18c{word-spacing:-17.564982px;}
.ws35{word-spacing:-17.527323px;}
.ws7a{word-spacing:-17.516564px;}
.ws1d7{word-spacing:-17.511184px;}
.wsfd{word-spacing:-17.478905px;}
.ws51{word-spacing:-17.406917px;}
.ws11f{word-spacing:-17.387449px;}
.ws1a5{word-spacing:-17.365930px;}
.ws1de{word-spacing:-17.279853px;}
.ws21d{word-spacing:-17.220676px;}
.ws1dd{word-spacing:-17.177638px;}
.ws133{word-spacing:-17.139979px;}
.ws19{word-spacing:-17.119990px;}
.ws178{word-spacing:-17.091561px;}
.ws108{word-spacing:-17.075422px;}
.ws9f{word-spacing:-17.064662px;}
.ws1e5{word-spacing:-17.048523px;}
.ws7{word-spacing:-17.032383px;}
.ws5{word-spacing:-17.027004px;}
.ws1b4{word-spacing:-16.892509px;}
.wse2{word-spacing:-16.887129px;}
.ws1e4{word-spacing:-16.822572px;}
.wscc{word-spacing:-16.795673px;}
.ws11a{word-spacing:-16.779534px;}
.wse1{word-spacing:-16.747255px;}
.ws220{word-spacing:-16.693457px;}
.ws81{word-spacing:-16.612761px;}
.ws119{word-spacing:-16.602001px;}
.ws1af{word-spacing:-16.580482px;}
.wse0{word-spacing:-16.483646px;}
.ws113{word-spacing:-16.456747px;}
.wsb4{word-spacing:-16.451367px;}
.ws12c{word-spacing:-16.445987px;}
.ws23d{word-spacing:-16.436146px;}
.ws18d{word-spacing:-16.402949px;}
.ws173{word-spacing:-16.295354px;}
.ws221{word-spacing:-16.289974px;}
.wsab{word-spacing:-16.246936px;}
.ws4f{word-spacing:-16.230796px;}
.ws1d9{word-spacing:-16.220037px;}
.ws1a7{word-spacing:-16.203897px;}
.ws180{word-spacing:-16.155479px;}
.ws62{word-spacing:-16.123201px;}
.ws43{word-spacing:-16.117821px;}
.ws18a{word-spacing:-16.069403px;}
.ws121{word-spacing:-16.042504px;}
.ws36{word-spacing:-16.015605px;}
.wse{word-spacing:-15.988706px;}
.ws1f3{word-spacing:-15.929529px;}
.wsba{word-spacing:-15.789654px;}
.ws31{word-spacing:-15.730477px;}
.ws32{word-spacing:-15.703578px;}
.ws1c{word-spacing:-15.694918px;}
.ws82{word-spacing:-15.687438px;}
.ws30{word-spacing:-15.671299px;}
.ws189{word-spacing:-15.569083px;}
.ws17a{word-spacing:-15.552944px;}
.wsf7{word-spacing:-15.547564px;}
.ws188{word-spacing:-15.520665px;}
.ws40{word-spacing:-15.493766px;}
.ws45{word-spacing:-15.477627px;}
.ws7d{word-spacing:-15.434589px;}
.ws13{word-spacing:-15.391551px;}
.ws234{word-spacing:-15.388862px;}
.ws14{word-spacing:-15.267816px;}
.ws1ba{word-spacing:-15.251676px;}
.ws194{word-spacing:-15.219398px;}
.ws193{word-spacing:-15.208638px;}
.ws14c{word-spacing:-15.181739px;}
.ws52{word-spacing:-15.149756px;}
.ws48{word-spacing:-15.095663px;}
.ws22c{word-spacing:-15.082806px;}
.ws71{word-spacing:-15.004206px;}
.ws153{word-spacing:-14.993447px;}
.ws95{word-spacing:-14.880471px;}
.ws21e{word-spacing:-14.858952px;}
.ws22a{word-spacing:-14.834136px;}
.wsc5{word-spacing:-14.805155px;}
.ws243{word-spacing:-14.791097px;}
.wsf6{word-spacing:-14.735217px;}
.ws22e{word-spacing:-14.690673px;}
.ws1a{word-spacing:-14.671544px;}
.ws236{word-spacing:-14.614159px;}
.ws198{word-spacing:-14.606103px;}
.ws150{word-spacing:-14.568444px;}
.ws96{word-spacing:-14.493127px;}
.ws224{word-spacing:-14.465913px;}
.ws151{word-spacing:-14.428570px;}
.ws228{word-spacing:-14.422874px;}
.ws128{word-spacing:-14.380152px;}
.ws245{word-spacing:-14.341578px;}
.ws1d1{word-spacing:-14.154201px;}
.ws8d{word-spacing:-14.051985px;}
.wsac{word-spacing:-14.019707px;}
.ws107{word-spacing:-14.003567px;}
.ws15{word-spacing:-13.971289px;}
.ws54{word-spacing:-13.892059px;}
.ws131{word-spacing:-13.879832px;}
.ws132{word-spacing:-13.847554px;}
.wsc3{word-spacing:-13.831414px;}
.ws216{word-spacing:-13.826035px;}
.ws247{word-spacing:-13.815545px;}
.wscd{word-spacing:-13.788376px;}
.wsa5{word-spacing:-13.772237px;}
.ws28{word-spacing:-13.691540px;}
.ws164{word-spacing:-13.643122px;}
.ws3d{word-spacing:-13.594704px;}
.ws44{word-spacing:-13.573185px;}
.ws2f{word-spacing:-13.546286px;}
.ws8c{word-spacing:-13.503248px;}
.ws1f4{word-spacing:-13.497868px;}
.ws1f5{word-spacing:-13.304196px;}
.ws73{word-spacing:-13.169701px;}
.ws1a2{word-spacing:-13.056726px;}
.ws50{word-spacing:-12.954510px;}
.wsca{word-spacing:-12.755458px;}
.wsa7{word-spacing:-12.717800px;}
.ws91{word-spacing:-12.626344px;}
.ws2d{word-spacing:-12.594065px;}
.ws1bb{word-spacing:-12.524128px;}
.ws124{word-spacing:-12.432672px;}
.wsdd{word-spacing:-12.389633px;}
.wsc6{word-spacing:-12.373494px;}
.ws125{word-spacing:-12.346595px;}
.ws1ac{word-spacing:-12.335836px;}
.wsb2{word-spacing:-12.330456px;}
.ws126{word-spacing:-12.287418px;}
.ws123{word-spacing:-12.282038px;}
.wsb{word-spacing:-12.271278px;}
.ws79{word-spacing:-12.255139px;}
.ws10e{word-spacing:-12.147543px;}
.wsa{word-spacing:-12.115265px;}
.ws8{word-spacing:-12.104505px;}
.ws1e8{word-spacing:-12.034568px;}
.ws10d{word-spacing:-11.986150px;}
.ws3a{word-spacing:-11.910833px;}
.ws1e9{word-spacing:-11.867795px;}
.ws10c{word-spacing:-11.840896px;}
.ws21c{word-spacing:-11.765579px;}
.ws7e{word-spacing:-11.754819px;}
.ws2e{word-spacing:-11.695642px;}
.ws1b8{word-spacing:-11.684882px;}
.ws7f{word-spacing:-11.593426px;}
.ws209{word-spacing:-11.469691px;}
.wsf8{word-spacing:-11.458931px;}
.ws29{word-spacing:-11.437412px;}
.ws130{word-spacing:-11.206082px;}
.ws1b9{word-spacing:-11.055448px;}
.ws27{word-spacing:-11.053247px;}
.wsea{word-spacing:-10.910194px;}
.ws78{word-spacing:-10.748800px;}
.ws39{word-spacing:-10.743421px;}
.ws23e{word-spacing:-10.726295px;}
.ws6{word-spacing:-10.587407px;}
.ws4d{word-spacing:-10.571268px;}
.ws1e2{word-spacing:-10.479811px;}
.ws168{word-spacing:-10.393735px;}
.ws24d{word-spacing:-10.391547px;}
.ws1a1{word-spacing:-10.334557px;}
.ws6c{word-spacing:-10.323798px;}
.ws201{word-spacing:-10.291519px;}
.ws129{word-spacing:-10.280760px;}
.ws6a{word-spacing:-10.259240px;}
.ws24b{word-spacing:-10.233737px;}
.wsd7{word-spacing:-10.200063px;}
.ws235{word-spacing:-10.195480px;}
.ws1b7{word-spacing:-10.124746px;}
.ws11b{word-spacing:-10.108607px;}
.ws174{word-spacing:-10.065568px;}
.ws120{word-spacing:-10.006391px;}
.ws21b{word-spacing:-9.941833px;}
.ws86{word-spacing:-9.893415px;}
.ws34{word-spacing:-9.871896px;}
.ws1b6{word-spacing:-9.861137px;}
.ws16{word-spacing:-9.753541px;}
.wsaa{word-spacing:-9.713535px;}
.ws89{word-spacing:-9.629806px;}
.ws17{word-spacing:-9.554489px;}
.ws13f{word-spacing:-9.436134px;}
.ws186{word-spacing:-9.425375px;}
.ws237{word-spacing:-9.387302px;}
.ws239{word-spacing:-9.368173px;}
.ws187{word-spacing:-9.220943px;}
.ws149{word-spacing:-9.183284px;}
.ws1da{word-spacing:-9.038030px;}
.ws105{word-spacing:-9.032651px;}
.ws241{word-spacing:-9.028643px;}
.ws148{word-spacing:-8.989612px;}
.ws106{word-spacing:-8.973473px;}
.ws172{word-spacing:-8.946574px;}
.ws1ff{word-spacing:-8.941194px;}
.ws152{word-spacing:-8.887397px;}
.ws23f{word-spacing:-8.870833px;}
.ws182{word-spacing:-8.844358px;}
.ws13c{word-spacing:-8.731383px;}
.ws246{word-spacing:-8.641291px;}
.ws1a6{word-spacing:-8.634547px;}
.ws166{word-spacing:-8.586129px;}
.ws248{word-spacing:-8.564777px;}
.wsa1{word-spacing:-8.257962px;}
.wsbe{word-spacing:-8.220304px;}
.ws1a4{word-spacing:-8.188025px;}
.ws1ec{word-spacing:-8.171886px;}
.ws10{word-spacing:-8.161126px;}
.ws127{word-spacing:-8.144987px;}
.ws99{word-spacing:-8.015872px;}
.ws97{word-spacing:-8.010492px;}
.ws3f{word-spacing:-7.913656px;}
.ws1df{word-spacing:-7.908277px;}
.wsf{word-spacing:-7.849099px;}
.ws1f1{word-spacing:-7.698465px;}
.ws98{word-spacing:-7.693085px;}
.ws33{word-spacing:-7.596249px;}
.ws1f0{word-spacing:-7.563971px;}
.ws1a9{word-spacing:-7.160487px;}
.ws1aa{word-spacing:-7.063651px;}
.ws118{word-spacing:-6.832321px;}
.ws69{word-spacing:-6.821561px;}
.ws23a{word-spacing:-6.819303px;}
.ws23c{word-spacing:-6.647147px;}
.wsd0{word-spacing:-6.633269px;}
.ws184{word-spacing:-6.590231px;}
.ws1e0{word-spacing:-6.385799px;}
.wse9{word-spacing:-6.353520px;}
.wsbc{word-spacing:-6.294343px;}
.wsbb{word-spacing:-6.251304px;}
.ws205{word-spacing:-6.186747px;}
.wsa2{word-spacing:-6.036113px;}
.ws1c4{word-spacing:-5.998455px;}
.ws1d4{word-spacing:-5.928518px;}
.ws145{word-spacing:-5.863960px;}
.ws146{word-spacing:-5.820922px;}
.wsa4{word-spacing:-5.810162px;}
.ws24e{word-spacing:-5.733762px;}
.wsaf{word-spacing:-5.654149px;}
.ws22f{word-spacing:-5.528131px;}
.wsb0{word-spacing:-5.519654px;}
.wsd3{word-spacing:-5.471236px;}
.ws1ea{word-spacing:-5.336742px;}
.ws212{word-spacing:-5.229146px;}
.ws213{word-spacing:-5.143070px;}
.ws197{word-spacing:-5.126930px;}
.wsc{word-spacing:-5.008575px;}
.ws46{word-spacing:-4.997816px;}
.ws1eb{word-spacing:-4.922499px;}
.ws20e{word-spacing:-4.847182px;}
.ws20d{word-spacing:-4.809523px;}
.ws24c{word-spacing:-4.557360px;}
.wscf{word-spacing:-4.551294px;}
.wsce{word-spacing:-4.131671px;}
.ws88{word-spacing:-3.911100px;}
.ws240{word-spacing:-3.892646px;}
.ws6b{word-spacing:-3.674390px;}
.ws72{word-spacing:-3.642111px;}
.ws238{word-spacing:-3.581808px;}
.ws20b{word-spacing:-3.416160px;}
.ws20c{word-spacing:-3.313944px;}
.ws104{word-spacing:-3.077234px;}
.wsd8{word-spacing:-2.081975px;}
.ws3b{word-spacing:-2.065836px;}
.wsd5{word-spacing:-1.603174px;}
.ws6d{word-spacing:-1.506338px;}
.wse6{word-spacing:-1.468680px;}
.ws117{word-spacing:-1.420262px;}
.wse7{word-spacing:-1.414882px;}
.ws115{word-spacing:-1.285767px;}
.ws18b{word-spacing:-1.151273px;}
.ws116{word-spacing:-1.102855px;}
.ws1ed{word-spacing:-1.049057px;}
.wsd9{word-spacing:-0.887664px;}
.ws23b{word-spacing:-0.817743px;}
.ws1b3{word-spacing:-0.634814px;}
.ws200{word-spacing:-0.500320px;}
.wsfa{word-spacing:-0.301268px;}
.ws138{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.053798px;}
.ws1b{word-spacing:-0.047821px;}
.ws64{word-spacing:0.000000px;}
.ws1e3{word-spacing:0.010760px;}
.wsa9{word-spacing:0.564877px;}
.ws67{word-spacing:0.801587px;}
.ws167{word-spacing:0.823106px;}
.ws175{word-spacing:1.022158px;}
.wsc1{word-spacing:1.231970px;}
.ws1d6{word-spacing:1.463300px;}
.wsa6{word-spacing:1.549377px;}
.ws1d5{word-spacing:1.662352px;}
.ws101{word-spacing:2.786726px;}
.ws250{word-spacing:3.218367px;}
.ws12a{word-spacing:4.427559px;}
.ws5c{word-spacing:4.643439px;}
.ws5b{word-spacing:4.715170px;}
.ws4b{word-spacing:5.906998px;}
.ws249{word-spacing:6.111549px;}
.ws1fd{word-spacing:7.262751px;}
.ws1c5{word-spacing:7.492428px;}
.ws1fe{word-spacing:7.493480px;}
.ws1c8{word-spacing:7.494534px;}
.ws1c7{word-spacing:7.499914px;}
.ws1c2{word-spacing:7.594348px;}
.ws1c1{word-spacing:7.607929px;}
.ws24f{word-spacing:8.387838px;}
.ws5d{word-spacing:8.450006px;}
.ws5e{word-spacing:8.459570px;}
.ws215{word-spacing:9.619047px;}
.wsfb{word-spacing:10.044049px;}
.ws58{word-spacing:11.730540px;}
.ws232{word-spacing:12.739568px;}
.ws230{word-spacing:12.839992px;}
.ws161{word-spacing:13.578565px;}
.ws8a{word-spacing:13.971289px;}
.ws8b{word-spacing:13.987428px;}
.ws5a{word-spacing:14.241153px;}
.ws207{word-spacing:14.552305px;}
.ws93{word-spacing:15.439969px;}
.ws92{word-spacing:15.735856px;}
.ws94{word-spacing:15.795034px;}
.wse8{word-spacing:16.731116px;}
.ws231{word-spacing:18.296391px;}
.wsa3{word-spacing:27.011875px;}
.ws19a{word-spacing:28.049848px;}
.ws208{word-spacing:28.916318px;}
.ws1cd{word-spacing:49.219607px;}
.ws1c0{word-spacing:51.468355px;}
.ws1cc{word-spacing:55.686103px;}
.ws1c6{word-spacing:81.170121px;}
.ws206{word-spacing:83.558743px;}
.ws15e{word-spacing:88.104657px;}
.ws1ab{word-spacing:96.759292px;}
.ws1fa{word-spacing:100.020870px;}
.ws16c{word-spacing:103.221839px;}
.ws16f{word-spacing:137.189770px;}
.ws16d{word-spacing:137.577114px;}
.ws1f9{word-spacing:174.853610px;}
.ws1f8{word-spacing:247.647413px;}
.ws203{word-spacing:279.511850px;}
.ws156{word-spacing:350.363552px;}
.ws19b{word-spacing:556.893306px;}
.wsed{word-spacing:623.559540px;}
.wsdf{word-spacing:652.766366px;}
.ws61{word-spacing:1851.300653px;}
._43{margin-left:-475.172591px;}
._42{margin-left:-14.624057px;}
._31{margin-left:-13.535526px;}
._4f{margin-left:-6.028890px;}
._7{margin-left:-1.224223px;}
._11{width:1.046820px;}
._6{width:12.588685px;}
._14{width:13.895972px;}
._5{width:15.101042px;}
._a{width:16.155479px;}
._c{width:17.183017px;}
._15{width:18.527962px;}
._1{width:20.131137px;}
._0{width:21.774993px;}
._9{width:23.138434px;}
._2{width:24.919141px;}
._4{width:26.920419px;}
._12{width:28.303023px;}
._e{width:30.293541px;}
._3{width:31.923615px;}
._f{width:33.521409px;}
._3f{width:35.080922px;}
._10{width:36.158125px;}
._13{width:38.395490px;}
._16{width:39.476826px;}
._19{width:41.042342px;}
._b{width:42.780011px;}
._56{width:44.287213px;}
._55{width:45.835726px;}
._54{width:46.857884px;}
._24{width:73.353300px;}
._1f{width:79.765998px;}
._4e{width:80.836574px;}
._2c{width:86.856548px;}
._47{width:87.873327px;}
._4d{width:92.123353px;}
._48{width:94.442038px;}
._52{width:95.803122px;}
._1c{width:100.117706px;}
._2b{width:101.823096px;}
._46{width:103.065344px;}
._51{width:109.408586px;}
._27{width:110.437850px;}
._45{width:113.723169px;}
._4c{width:117.575092px;}
._36{width:120.689985px;}
._49{width:121.819738px;}
._26{width:124.036208px;}
._3d{width:127.144670px;}
._25{width:131.519482px;}
._4b{width:132.541640px;}
._18{width:136.743248px;}
._39{width:139.260985px;}
._3a{width:145.073677px;}
._3b{width:161.255749px;}
._3c{width:162.490875px;}
._37{width:165.067034px;}
._28{width:168.957371px;}
._2f{width:176.338429px;}
._41{width:181.524537px;}
._40{width:188.243882px;}
._35{width:195.236840px;}
._1e{width:207.218366px;}
._53{width:227.387161px;}
._4a{width:230.862499px;}
._2a{width:246.512279px;}
._22{width:252.554575px;}
._23{width:276.106449px;}
._44{width:288.630577px;}
._17{width:293.606873px;}
._50{width:306.001886px;}
._34{width:320.505017px;}
._29{width:326.377642px;}
._2e{width:365.069020px;}
._33{width:386.150166px;}
._38{width:397.716376px;}
._3e{width:404.979079px;}
._1b{width:424.927303px;}
._21{width:433.448875px;}
._2d{width:470.795307px;}
._1a{width:562.924040px;}
._32{width:607.269566px;}
._30{width:653.765094px;}
._1d{width:660.185082px;}
._d{width:696.272647px;}
._20{width:1291.830432px;}
._8{width:1369.063571px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.860800px;}
.fs2{font-size:37.657200px;}
.fs8{font-size:40.347600px;}
.fs9{font-size:45.727200px;}
.fs4{font-size:47.821200px;}
.fs1{font-size:53.797800px;}
.fs6{font-size:59.775600px;}
.fs7{font-size:64.557000px;}
.fs5{font-size:65.754000px;}
.fs0{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.y5d{bottom:102.979263px;}
.y5b{bottom:144.566740px;}
.y1c4{bottom:144.566850px;}
.ybc{bottom:144.567186px;}
.y8e{bottom:144.568166px;}
.y128{bottom:144.568555px;}
.y13a{bottom:144.568625px;}
.yf7{bottom:144.569014px;}
.y150{bottom:144.652439px;}
.y1aa{bottom:145.417350px;}
.y1a8{bottom:145.417536px;}
.y220{bottom:145.417722px;}
.y51{bottom:145.771309px;}
.y244{bottom:146.352750px;}
.y284{bottom:148.394677px;}
.y1c3{bottom:150.519600px;}
.y1a9{bottom:151.370100px;}
.y243{bottom:155.622509px;}
.y5a{bottom:159.533580px;}
.ybb{bottom:160.979550px;}
.y1a1{bottom:160.980055px;}
.y1c2{bottom:160.980241px;}
.y1a5{bottom:161.829396px;}
.y1a7{bottom:161.829900px;}
.y21f{bottom:161.830086px;}
.y8d{bottom:162.511078px;}
.y127{bottom:162.511466px;}
.y139{bottom:162.511537px;}
.yf6{bottom:162.511925px;}
.y14f{bottom:162.595350px;}
.y14d{bottom:162.602562px;}
.y50{bottom:163.714220px;}
.y283{bottom:164.807041px;}
.y1a2{bottom:167.017350px;}
.y1a6{bottom:167.867700px;}
.y14e{bottom:168.633000px;}
.y59{bottom:174.415537px;}
.y1a0{bottom:177.477336px;}
.y21d{bottom:178.242450px;}
.y1a4{bottom:178.327836px;}
.y8c{bottom:180.453989px;}
.y126{bottom:180.454378px;}
.y138{bottom:180.454448px;}
.yf5{bottom:180.454837px;}
.y14c{bottom:180.545474px;}
.y282{bottom:181.304136px;}
.y4f{bottom:181.657131px;}
.y21e{bottom:184.195200px;}
.y58{bottom:189.382377px;}
.y21c{bottom:192.444150px;}
.y19f{bottom:193.889700px;}
.y1a3{bottom:194.740200px;}
.y21b{bottom:194.740386px;}
.y281{bottom:197.716500px;}
.y8b{bottom:198.396900px;}
.y125{bottom:198.397289px;}
.y137{bottom:198.397359px;}
.yf4{bottom:198.397748px;}
.y14b{bottom:198.488385px;}
.y4e{bottom:199.515311px;}
.y19e{bottom:210.302905px;}
.y218{bottom:211.152657px;}
.y21a{bottom:211.152750px;}
.y8a{bottom:216.340200px;}
.y124{bottom:216.340270px;}
.yf3{bottom:216.340659px;}
.y14a{bottom:216.431296px;}
.y219{bottom:217.105500px;}
.y4d{bottom:217.458222px;}
.y280{bottom:223.313250px;}
.y27e{bottom:223.313586px;}
.y19d{bottom:226.800000px;}
.y242{bottom:227.481575px;}
.y27f{bottom:229.266150px;}
.y136{bottom:234.198450px;}
.yf2{bottom:234.198839px;}
.y123{bottom:234.201196px;}
.y89{bottom:234.201242px;}
.y149{bottom:234.374207px;}
.y4c{bottom:235.401133px;}
.y217{bottom:236.749836px;}
.y57{bottom:238.450515px;}
.y27d{bottom:239.725950px;}
.y27b{bottom:239.726136px;}
.y241{bottom:245.339755px;}
.y27c{bottom:245.678700px;}
.yf0{bottom:249.930600px;}
.yf1{bottom:252.141750px;}
.yef{bottom:252.142139px;}
.y122{bottom:252.144107px;}
.y88{bottom:252.144153px;}
.y148{bottom:252.317119px;}
.y216{bottom:253.162386px;}
.y56{bottom:253.332472px;}
.y4b{bottom:253.344045px;}
.y278{bottom:256.137810px;}
.y27a{bottom:256.138500px;}
.y279{bottom:262.176300px;}
.y135{bottom:262.773158px;}
.yed{bottom:267.873900px;}
.y55{bottom:268.299312px;}
.y215{bottom:269.575255px;}
.yee{bottom:270.085050px;}
.yec{bottom:270.085562px;}
.y87{bottom:270.087064px;}
.y147{bottom:270.260030px;}
.y4a{bottom:271.286956px;}
.y277{bottom:272.636250px;}
.y275{bottom:272.636254px;}
.y276{bottom:278.589000px;}
.y134{bottom:278.674962px;}
.y240{bottom:279.270028px;}
.y54{bottom:283.266152px;}
.y212{bottom:286.071938px;}
.y214{bottom:286.072350px;}
.yeb{bottom:288.028473px;}
.y86{bottom:288.029975px;}
.y146{bottom:288.118210px;}
.y49{bottom:289.229867px;}
.y121{bottom:289.391014px;}
.y213{bottom:292.025100px;}
.y133{bottom:294.661946px;}
.y23f{bottom:297.212939px;}
.y53{bottom:298.148110px;}
.y273{bottom:298.658250px;}
.y274{bottom:304.611000px;}
.y85{bottom:305.972887px;}
.y145{bottom:306.061121px;}
.y48{bottom:307.172778px;}
.y120{bottom:307.333925px;}
.y132{bottom:310.563750px;}
.y211{bottom:311.584705px;}
.y23d{bottom:312.859800px;}
.y52{bottom:313.114950px;}
.y271{bottom:315.070800px;}
.y23e{bottom:315.155850px;}
.y23c{bottom:315.156698px;}
.y272{bottom:321.023550px;}
.y84{bottom:323.915798px;}
.y144{bottom:324.004032px;}
.y47{bottom:325.115690px;}
.y11f{bottom:325.276837px;}
.y210{bottom:328.082136px;}
.ye7{bottom:328.677636px;}
.y23b{bottom:333.014878px;}
.ye6{bottom:337.860684px;}
.ye9{bottom:337.861350px;}
.y270{bottom:340.667886px;}
.y83{bottom:341.858709px;}
.y143{bottom:341.946943px;}
.y46{bottom:342.973869px;}
.y11e{bottom:343.219748px;}
.y20f{bottom:344.494686px;}
.ye8{bottom:347.045550px;}
.y23a{bottom:350.957789px;}
.yea{bottom:356.825100px;}
.y26f{bottom:357.081091px;}
.y82{bottom:359.801620px;}
.y131{bottom:359.889003px;}
.y142{bottom:359.889855px;}
.y20c{bottom:360.906957px;}
.y20e{bottom:360.907050px;}
.y45{bottom:360.916781px;}
.y11d{bottom:361.162659px;}
.y20d{bottom:366.944850px;}
.yb9{bottom:367.370878px;}
.y239{bottom:368.904817px;}
.y26e{bottom:373.493455px;}
.y81{bottom:377.659800px;}
.y130{bottom:377.831914px;}
.y141{bottom:377.832766px;}
.y44{bottom:378.859692px;}
.y11c{bottom:379.105570px;}
.yb8{bottom:385.313789px;}
.y20b{bottom:386.504136px;}
.y238{bottom:386.847728px;}
.y36{bottom:386.933397px;}
.ye4{bottom:389.310150px;}
.y26d{bottom:389.990550px;}
.ye5{bottom:391.521300px;}
.ye3{bottom:391.523483px;}
.y80{bottom:395.603100px;}
.y12f{bottom:395.774825px;}
.y140{bottom:395.775677px;}
.y11b{bottom:396.968051px;}
.y20a{bottom:402.917005px;}
.yb7{bottom:403.256700px;}
.y237{bottom:404.790639px;}
.y35{bottom:404.876308px;}
.ye2{bottom:409.466394px;}
.y7f{bottom:413.547178px;}
.y12e{bottom:413.717737px;}
.y13f{bottom:413.718588px;}
.y11a{bottom:414.910962px;}
.y43{bottom:417.977417px;}
.y209{bottom:419.414286px;}
.y236{bottom:422.733551px;}
.y34{bottom:422.819219px;}
.ye1{bottom:427.409305px;}
.yb6{bottom:431.319600px;}
.y7e{bottom:431.490089px;}
.y12d{bottom:431.575916px;}
.y13e{bottom:431.576768px;}
.y119{bottom:432.853874px;}
.y206{bottom:435.826557px;}
.y208{bottom:435.826650px;}
.y42{bottom:435.920328px;}
.y257{bottom:438.633778px;}
.y235{bottom:440.676462px;}
.y33{bottom:440.762130px;}
.y207{bottom:441.779400px;}
.ye0{bottom:445.352216px;}
.y7d{bottom:449.433000px;}
.y12c{bottom:449.518828px;}
.y13d{bottom:449.519679px;}
.y118{bottom:450.796785px;}
.ybd{bottom:453.599850px;}
.y41{bottom:453.863240px;}
.y256{bottom:456.576689px;}
.y32{bottom:458.705042px;}
.y205{bottom:461.423736px;}
.ydf{bottom:463.295128px;}
.y12b{bottom:467.461739px;}
.y13c{bottom:467.462591px;}
.y117{bottom:468.739696px;}
.y40{bottom:471.806151px;}
.y254{bottom:474.519600px;}
.y234{bottom:474.522003px;}
.y31{bottom:476.563221px;}
.y7c{bottom:477.495900px;}
.y204{bottom:477.836286px;}
.yb5{bottom:479.878555px;}
.y255{bottom:480.472350px;}
.yde{bottom:481.238039px;}
.y12a{bottom:485.404650px;}
.y13b{bottom:485.405502px;}
.y116{bottom:486.682607px;}
.y3f{bottom:489.749062px;}
.y233{bottom:492.464914px;}
.y252{bottom:492.466469px;}
.y203{bottom:494.249305px;}
.y30{bottom:494.506133px;}
.y2a5{bottom:494.929050px;}
.ydc{bottom:496.884900px;}
.yb4{bottom:497.821466px;}
.y253{bottom:498.415650px;}
.ydd{bottom:499.180950px;}
.ydb{bottom:499.181020px;}
.y115{bottom:504.625518px;}
.y3e{bottom:507.607242px;}
.y232{bottom:510.407825px;}
.y251{bottom:510.409380px;}
.y201{bottom:510.746400px;}
.y7b{bottom:511.766850px;}
.y2f{bottom:512.449044px;}
.yd9{bottom:514.828200px;}
.yb3{bottom:515.764378px;}
.y202{bottom:516.699150px;}
.yda{bottom:517.039200px;}
.yd8{bottom:517.039791px;}
.y114{bottom:522.568430px;}
.y2a4{bottom:525.459496px;}
.y3d{bottom:525.550153px;}
.y231{bottom:528.350737px;}
.y250{bottom:528.352292px;}
.y2e{bottom:530.391955px;}
.yb2{bottom:533.707289px;}
.y1fe{bottom:534.472350px;}
.y1fd{bottom:536.767988px;}
.y1ff{bottom:536.768400px;}
.y176{bottom:536.938686px;}
.y200{bottom:542.721150px;}
.y2a3{bottom:543.317675px;}
.y3c{bottom:543.493064px;}
.y230{bottom:546.293648px;}
.y24f{bottom:546.295203px;}
.y2d{bottom:548.334866px;}
.yb1{bottom:551.650200px;}
.yaf{bottom:551.652364px;}
.yd6{bottom:552.500700px;}
.y175{bottom:553.351050px;}
.y173{bottom:553.351984px;}
.yd7{bottom:554.711700px;}
.yd5{bottom:554.712361px;}
.y7a{bottom:555.140589px;}
.yb0{bottom:557.603100px;}
.y174{bottom:559.388850px;}
.y113{bottom:559.815337px;}
.y3b{bottom:561.435976px;}
.y1fc{bottom:562.280250px;}
.y2c6{bottom:563.895671px;}
.y22f{bottom:564.151828px;}
.y24e{bottom:564.153383px;}
.y2c{bottom:566.277778px;}
.yae{bottom:569.510544px;}
.y172{bottom:569.849079px;}
.y79{bottom:572.998769px;}
.y2a2{bottom:577.247948px;}
.y112{bottom:577.673516px;}
.y1fb{bottom:578.777850px;}
.y2c5{bottom:578.862511px;}
.y3a{bottom:579.378887px;}
.y22e{bottom:582.094739px;}
.y24d{bottom:582.096294px;}
.y2b{bottom:584.220689px;}
.y171{bottom:586.261443px;}
.yad{bottom:587.453455px;}
.y78{bottom:590.941680px;}
.yd4{bottom:592.299539px;}
.y2a1{bottom:595.190859px;}
.y111{bottom:595.616428px;}
.y19c{bottom:596.892277px;}
.y2c4{bottom:596.975986px;}
.y39{bottom:597.321798px;}
.y22c{bottom:597.826650px;}
.y22d{bottom:600.037650px;}
.y22b{bottom:600.038816px;}
.y24c{bottom:600.039205px;}
.y2a{bottom:602.163600px;}
.y170{bottom:602.673807px;}
.yac{bottom:605.396366px;}
.y1f9{bottom:608.883152px;}
.y77{bottom:608.884592px;}
.yd3{bottom:610.242450px;}
.y2c3{bottom:611.942826px;}
.y2a0{bottom:613.133770px;}
.y19b{bottom:613.304641px;}
.y110{bottom:613.559339px;}
.y38{bottom:615.264709px;}
.y222{bottom:617.725091px;}
.y22a{bottom:617.981728px;}
.y24b{bottom:617.982116px;}
.yab{bottom:623.339278px;}
.y1f8{bottom:626.485793px;}
.y76{bottom:626.827503px;}
.y223{bottom:626.995200px;}
.y16f{bottom:628.270557px;}
.y19a{bottom:629.717005px;}
.y2c2{bottom:630.056301px;}
.y29f{bottom:630.995908px;}
.y29{bottom:631.162050px;}
.y10f{bottom:631.508222px;}
.y37{bottom:633.207620px;}
.y229{bottom:635.924639px;}
.y24a{bottom:635.925028px;}
.y221{bottom:636.094350px;}
.yd2{bottom:638.305350px;}
.yaa{bottom:641.282189px;}
.y1f7{bottom:644.003701px;}
.y75{bottom:644.770414px;}
.y2c1{bottom:645.023141px;}
.y199{bottom:646.218527px;}
.y29e{bottom:648.938819px;}
.y10e{bottom:649.451133px;}
.y227{bottom:651.656550px;}
.y228{bottom:653.867550px;}
.y16e{bottom:653.867886px;}
.y249{bottom:653.867939px;}
.y226{bottom:653.868328px;}
.ya9{bottom:659.225100px;}
.ya7{bottom:659.227114px;}
.y1f6{bottom:661.521610px;}
.y198{bottom:662.630891px;}
.y74{bottom:662.713325px;}
.y2c0{bottom:663.136616px;}
.ya8{bottom:665.177850px;}
.y29d{bottom:666.881730px;}
.y10d{bottom:667.394044px;}
.y16d{bottom:670.280436px;}
.y1de{bottom:671.389807px;}
.y248{bottom:671.810850px;}
.y225{bottom:671.811239px;}
.y1f4{bottom:676.913250px;}
.ya6{bottom:677.170025px;}
.y247{bottom:677.763600px;}
.y2bf{bottom:678.103456px;}
.y197{bottom:679.043255px;}
.y1f5{bottom:679.124250px;}
.y1f3{bottom:679.127205px;}
.y73{bottom:680.656237px;}
.y29c{bottom:684.824642px;}
.y16{bottom:685.076180px;}
.y10c{bottom:685.336956px;}
.y16c{bottom:686.693305px;}
.y1dd{bottom:688.907716px;}
.y224{bottom:689.754150px;}
.y245{bottom:689.756258px;}
.y2be{bottom:693.070296px;}
.ya5{bottom:695.112937px;}
.y196{bottom:695.540350px;}
.y246{bottom:695.706900px;}
.y1f2{bottom:696.645113px;}
.y72{bottom:698.599148px;}
.yd1{bottom:699.960116px;}
.y29b{bottom:702.767553px;}
.y15{bottom:703.019890px;}
.y16b{bottom:703.190586px;}
.y10b{bottom:703.279867px;}
.y1dc{bottom:706.510356px;}
.y2bd{bottom:711.183771px;}
.y195{bottom:711.952714px;}
.ya4{bottom:712.971116px;}
.y1f1{bottom:714.247754px;}
.y71{bottom:716.457328px;}
.yd0{bottom:717.903028px;}
.y16a{bottom:719.603286px;}
.y29a{bottom:720.710464px;}
.y14{bottom:720.963600px;}
.y10a{bottom:721.138047px;}
.y1db{bottom:724.028265px;}
.y2bc{bottom:726.150611px;}
.y26c{bottom:726.916257px;}
.y194{bottom:728.365078px;}
.ya3{bottom:730.914028px;}
.y1f0{bottom:731.765662px;}
.y70{bottom:734.400239px;}
.ycf{bottom:735.845939px;}
.y169{bottom:736.015407px;}
.y299{bottom:738.653375px;}
.y109{bottom:739.080958px;}
.y1da{bottom:741.630905px;}
.y2bb{bottom:744.264087px;}
.y193{bottom:744.862173px;}
.ya2{bottom:748.856939px;}
.y1ef{bottom:749.368302px;}
.y6f{bottom:752.343539px;}
.y26b{bottom:752.513436px;}
.yce{bottom:753.795599px;}
.y298{bottom:756.596287px;}
.y13{bottom:756.766316px;}
.y108{bottom:757.023869px;}
.y2ba{bottom:759.146044px;}
.y1d9{bottom:759.148813px;}
.y192{bottom:761.274537px;}
.y168{bottom:761.612586px;}
.ya1{bottom:766.799850px;}
.y9f{bottom:766.801405px;}
.y1ee{bottom:766.886211px;}
.y26a{bottom:768.926136px;}
.y6e{bottom:770.286839px;}
.ycd{bottom:771.738511px;}
.ya0{bottom:772.752600px;}
.y297{bottom:774.454466px;}
.y12{bottom:774.709228px;}
.y107{bottom:774.966780px;}
.y1d8{bottom:776.751454px;}
.y2b9{bottom:777.344402px;}
.y167{bottom:778.025605px;}
.y1ed{bottom:784.488851px;}
.y9e{bottom:784.744316px;}
.y269{bottom:785.339005px;}
.y191{bottom:786.871530px;}
.y6d{bottom:788.235606px;}
.ycc{bottom:789.681422px;}
.y2b8{bottom:792.226359px;}
.y296{bottom:792.397378px;}
.y11{bottom:792.652139px;}
.y106{bottom:792.909692px;}
.y1d7{bottom:794.269362px;}
.y166{bottom:794.522886px;}
.y266{bottom:801.835538px;}
.y268{bottom:801.836100px;}
.y1ec{bottom:802.006760px;}
.y9d{bottom:802.687228px;}
.y190{bottom:803.283894px;}
.y6c{bottom:806.178517px;}
.ycb{bottom:807.624333px;}
.y267{bottom:807.788850px;}
.y295{bottom:810.340289px;}
.y2b7{bottom:810.424717px;}
.y10{bottom:810.595050px;}
.ye{bottom:810.595439px;}
.y105{bottom:810.852603px;}
.y165{bottom:810.935436px;}
.y1d6{bottom:811.872002px;}
.yf{bottom:816.547800px;}
.y1eb{bottom:819.609400px;}
.y18f{bottom:819.696258px;}
.y9c{bottom:820.630139px;}
.y6b{bottom:824.121429px;}
.y2b6{bottom:825.306674px;}
.yca{bottom:825.482513px;}
.y164{bottom:827.347800px;}
.y163{bottom:827.348455px;}
.y294{bottom:828.283200px;}
.y292{bottom:828.283739px;}
.yd{bottom:828.540903px;}
.y104{bottom:828.795514px;}
.y1d5{bottom:829.389911px;}
.y293{bottom:834.235950px;}
.y18e{bottom:836.193353px;}
.y1ea{bottom:837.127309px;}
.y9b{bottom:838.573050px;}
.y1b3{bottom:843.421466px;}
.y1c0{bottom:843.421537px;}
.yc9{bottom:843.425424px;}
.y2b5{bottom:843.505032px;}
.y162{bottom:843.844988px;}
.y265{bottom:843.845736px;}
.y291{bottom:846.227816px;}
.yc{bottom:846.483814px;}
.y103{bottom:846.738425px;}
.y1d4{bottom:846.992551px;}
.y18d{bottom:852.605717px;}
.y2b4{bottom:858.386989px;}
.y264{bottom:860.258286px;}
.y6a{bottom:860.687793px;}
.y1bf{bottom:861.279716px;}
.y1b2{bottom:861.364378px;}
.yc8{bottom:861.368335px;}
.y290{bottom:864.170728px;}
.yb{bottom:864.426725px;}
.y1d3{bottom:864.510460px;}
.y102{bottom:864.596605px;}
.y9a{bottom:866.635950px;}
.y18c{bottom:869.018081px;}
.y161{bottom:869.357755px;}
.y1e9{bottom:873.184050px;}
.y2b3{bottom:876.585347px;}
.y261{bottom:876.670557px;}
.y263{bottom:876.670650px;}
.y69{bottom:878.630704px;}
.y1be{bottom:879.222628px;}
.y1b1{bottom:879.307289px;}
.yc7{bottom:879.311247px;}
.y1d1{bottom:879.817050px;}
.y1d0{bottom:882.113022px;}
.y1d2{bottom:882.113100px;}
.y28f{bottom:882.113639px;}
.ya{bottom:882.284905px;}
.y101{bottom:882.539516px;}
.y262{bottom:882.708450px;}
.y28{bottom:885.004068px;}
.y18b{bottom:885.430445px;}
.y160{bottom:885.855186px;}
.y2b2{bottom:891.467304px;}
.y1e8{bottom:891.552450px;}
.y1af{bottom:895.039050px;}
.y68{bottom:896.573616px;}
.y1bd{bottom:897.165539px;}
.y1b0{bottom:897.250200px;}
.y1ae{bottom:897.250978px;}
.yc6{bottom:897.254158px;}
.y28e{bottom:900.056550px;}
.y9{bottom:900.227816px;}
.y100{bottom:900.482428px;}
.y27{bottom:900.906698px;}
.y18a{bottom:901.927540px;}
.y15f{bottom:902.267736px;}
.y1ce{bottom:908.730450px;}
.y2b1{bottom:909.665662px;}
.y1cf{bottom:911.026650px;}
.y1cd{bottom:911.027109px;}
.y67{bottom:914.431795px;}
.y1bc{bottom:915.108450px;}
.y1ad{bottom:915.193889px;}
.yc5{bottom:915.197069px;}
.y99{bottom:915.201477px;}
.y26{bottom:916.894059px;}
.y1e7{bottom:917.489548px;}
.y8{bottom:918.170728px;}
.y189{bottom:918.339904px;}
.yff{bottom:918.425339px;}
.y15e{bottom:918.679260px;}
.y2b0{bottom:924.547619px;}
.y28d{bottom:928.374600px;}
.y1cc{bottom:928.885289px;}
.y1ab{bottom:930.840750px;}
.y66{bottom:932.374707px;}
.y25{bottom:932.796689px;}
.y1ac{bottom:933.136800px;}
.y17f{bottom:933.137259px;}
.yc4{bottom:933.139980px;}
.y98{bottom:933.144388px;}
.y15d{bottom:935.177700px;}
.y15c{bottom:935.178036px;}
.y7{bottom:936.113639px;}
.yfe{bottom:936.368250px;}
.y2af{bottom:942.745977px;}
.y1bb{bottom:943.171816px;}
.y188{bottom:944.361900px;}
.y1ca{bottom:944.617200px;}
.y1c9{bottom:946.827686px;}
.y1cb{bottom:946.828200px;}
.y24{bottom:948.784050px;}
.y65{bottom:950.317618px;}
.y17e{bottom:951.080170px;}
.yc3{bottom:951.082892px;}
.y97{bottom:951.087300px;}
.y25e{bottom:951.590157px;}
.y260{bottom:951.590400px;}
.y15b{bottom:951.590586px;}
.y1e5{bottom:953.885591px;}
.y6{bottom:954.056550px;}
.y23{bottom:954.736800px;}
.y25f{bottom:957.543150px;}
.y187{bottom:958.563600px;}
.y1ba{bottom:959.158800px;}
.y186{bottom:960.774600px;}
.y184{bottom:960.775198px;}
.y2ae{bottom:960.859452px;}
.y1e6{bottom:963.070650px;}
.yfd{bottom:964.431896px;}
.y22{bottom:964.685868px;}
.y1c8{bottom:964.770597px;}
.y185{bottom:966.727350px;}
.y15a{bottom:968.002857px;}
.y64{bottom:968.260529px;}
.y17d{bottom:968.938350px;}
.y28c{bottom:968.938739px;}
.yc2{bottom:968.941071px;}
.y96{bottom:968.945479px;}
.y1e4{bottom:972.254850px;}
.y2ac{bottom:975.741410px;}
.y2ad{bottom:975.996057px;}
.y25d{bottom:977.187486px;}
.yfc{bottom:980.333700px;}
.y21{bottom:980.673229px;}
.y63{bottom:986.203440px;}
.y183{bottom:986.372191px;}
.y17c{bottom:986.881650px;}
.y28b{bottom:986.883205px;}
.yc1{bottom:986.883983px;}
.y95{bottom:986.888391px;}
.y5{bottom:988.073229px;}
.y17b{bottom:992.919450px;}
.y159{bottom:993.600036px;}
.y2ab{bottom:993.939767px;}
.y20{bottom:996.575859px;}
.y1e3{bottom:1001.508914px;}
.y182{bottom:1002.784555px;}
.y62{bottom:1004.146352px;}
.y28a{bottom:1004.826116px;}
.yc0{bottom:1004.826894px;}
.y1b9{bottom:1004.829661px;}
.y94{bottom:1004.831302px;}
.y1c6{bottom:1005.420300px;}
.y158{bottom:1010.012905px;}
.y2aa{bottom:1012.053242px;}
.y1f{bottom:1012.563220px;}
.y4{bottom:1013.584785px;}
.yfb{bottom:1014.689550px;}
.y1c5{bottom:1014.690720px;}
.y181{bottom:1019.281650px;}
.y61{bottom:1022.089263px;}
.y289{bottom:1022.769028px;}
.ybf{bottom:1022.769805px;}
.y1b8{bottom:1022.772572px;}
.y93{bottom:1022.774213px;}
.y157{bottom:1026.510000px;}
.y25b{bottom:1026.510004px;}
.y1e{bottom:1028.465850px;}
.y2a9{bottom:1030.166717px;}
.y1e2{bottom:1030.507274px;}
.y25c{bottom:1032.462750px;}
.y1c7{bottom:1033.653300px;}
.y1d{bottom:1034.504284px;}
.y3{bottom:1039.096340px;}
.y288{bottom:1040.711939px;}
.ybe{bottom:1040.712716px;}
.y1b7{bottom:1040.715483px;}
.y92{bottom:1040.717124px;}
.y2a8{bottom:1048.280192px;}
.y156{bottom:1050.235950px;}
.y155{bottom:1052.532000px;}
.y153{bottom:1052.532093px;}
.y154{bottom:1058.484750px;}
.y287{bottom:1058.654850px;}
.y179{bottom:1058.655239px;}
.y60{bottom:1058.655628px;}
.y1b6{bottom:1058.658394px;}
.y91{bottom:1058.660036px;}
.yfa{bottom:1058.660883px;}
.y1e1{bottom:1059.420901px;}
.y1b{bottom:1060.355700px;}
.y286{bottom:1064.607600px;}
.y2{bottom:1064.607895px;}
.y1c{bottom:1066.393500px;}
.y2a7{bottom:1066.478550px;}
.y152{bottom:1068.944457px;}
.y19{bottom:1076.343000px;}
.y178{bottom:1076.598150px;}
.y5f{bottom:1076.598539px;}
.y1b5{bottom:1076.601306px;}
.y90{bottom:1076.602947px;}
.yf9{bottom:1076.603795px;}
.y1e0{bottom:1076.938810px;}
.y259{bottom:1078.043850px;}
.y1a{bottom:1082.295750px;}
.y177{bottom:1082.550900px;}
.y25a{bottom:1084.081650px;}
.y1{bottom:1090.119450px;}
.y17{bottom:1092.245400px;}
.y2a6{bottom:1092.500550px;}
.y5e{bottom:1094.541450px;}
.y17a{bottom:1094.542406px;}
.y1b4{bottom:1094.544217px;}
.y8f{bottom:1094.545858px;}
.yf8{bottom:1094.546706px;}
.y1df{bottom:1094.547163px;}
.y18{bottom:1098.283200px;}
.y285{bottom:1100.494200px;}
.y5c{bottom:1126.431300px;}
.y180{bottom:1126.432754px;}
.y1c1{bottom:1126.432933px;}
.y1fa{bottom:1126.434128px;}
.y129{bottom:1126.434533px;}
.y258{bottom:1126.434616px;}
.yba{bottom:1126.434971px;}
.y151{bottom:1126.435390px;}
.hc{height:2.151912px;}
.h19{height:25.446359px;}
.h6{height:26.895600px;}
.h3{height:27.792120px;}
.h4{height:37.061430px;}
.h9{height:39.648979px;}
.h1a{height:39.864170px;}
.h5{height:40.348350px;}
.h1f{height:40.351185px;}
.h16{height:40.351785px;}
.h2{height:41.693295px;}
.he{height:41.693668px;}
.h11{height:41.694268px;}
.h14{height:41.695312px;}
.h10{height:41.695542px;}
.hf{height:41.696656px;}
.h8{height:44.831700px;}
.h23{height:47.820269px;}
.h29{height:47.820906px;}
.h13{height:47.835992px;}
.h7{height:49.315500px;}
.h1b{height:50.029056px;}
.h1d{height:50.029656px;}
.h1e{height:50.030330px;}
.h1c{height:50.030930px;}
.h28{height:50.031675px;}
.h27{height:50.035036px;}
.h12{height:60.446964px;}
.hd{height:60.787642px;}
.h1{height:62.764200px;}
.ha{height:76.388441px;}
.h15{height:76.740268px;}
.h20{height:78.089895px;}
.hb{height:78.430095px;}
.h17{height:78.435248px;}
.h18{height:78.770295px;}
.h26{height:78.770739px;}
.h22{height:78.773574px;}
.h24{height:85.308694px;}
.h21{height:115.170330px;}
.h25{height:122.387730px;}
.h0{height:1191.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:63.779550px;}
.x3a{left:66.671182px;}
.x8{left:69.392100px;}
.xe{left:73.474050px;}
.x7c{left:77.215460px;}
.x7b{left:78.661350px;}
.xf{left:81.892800px;}
.x42{left:83.763750px;}
.xb6{left:86.059800px;}
.x44{left:90.396157px;}
.x1f{left:92.097210px;}
.x54{left:94.818900px;}
.x43{left:97.794700px;}
.x1a{left:99.921300px;}
.x56{left:102.387300px;}
.x1b{left:105.448800px;}
.x59{left:107.234550px;}
.x17{left:108.765300px;}
.x20{left:115.143300px;}
.x1e{left:116.589000px;}
.x18{left:119.140200px;}
.x39{left:121.606805px;}
.x1c{left:123.136950px;}
.x21{left:125.773200px;}
.x10{left:130.705500px;}
.x1d{left:132.831450px;}
.x11{left:139.719600px;}
.x19{left:150.009450px;}
.x12{left:154.261350px;}
.xb7{left:155.707050px;}
.x88{left:158.598300px;}
.x7{left:160.809450px;}
.x57{left:163.445550px;}
.x58{left:169.058250px;}
.xb3{left:173.055000px;}
.x89{left:176.966850px;}
.x3b{left:179.773200px;}
.x13{left:182.239350px;}
.x3c{left:185.300700px;}
.xb4{left:186.746400px;}
.x14{left:187.851900px;}
.x85{left:189.552750px;}
.x6{left:191.678700px;}
.x7d{left:204.094350px;}
.x15{left:205.369950px;}
.x5{left:208.346400px;}
.x16{left:210.897600px;}
.x7e{left:215.319600px;}
.x86{left:216.934875px;}
.x30{left:228.584644px;}
.x8a{left:234.538500px;}
.x31{left:236.069263px;}
.x8b{left:243.467700px;}
.x3d{left:246.614100px;}
.x5e{left:255.543300px;}
.x24{left:257.669250px;}
.x68{left:258.689700px;}
.x5f{left:260.560500px;}
.xb5{left:262.006200px;}
.x96{left:263.111700px;}
.x87{left:264.642450px;}
.x25{left:267.363750px;}
.x1{left:276.377850px;}
.x5a{left:277.653450px;}
.x5b{left:284.796750px;}
.x8c{left:286.922700px;}
.x8d{left:298.403100px;}
.x8e{left:303.505350px;}
.x4e{left:310.478700px;}
.x4f{left:312.689700px;}
.x3e{left:314.220450px;}
.x3f{left:318.047100px;}
.x5c{left:319.067550px;}
.x32{left:322.468530px;}
.x50{left:323.914950px;}
.x5d{left:328.422000px;}
.x51{left:329.527500px;}
.x69{left:337.436100px;}
.x97{left:341.858250px;}
.x35{left:357.505350px;}
.x36{left:363.118050px;}
.x22{left:365.073900px;}
.x6a{left:367.540050px;}
.x23{left:371.451900px;}
.x40{left:378.340050px;}
.x45{left:384.888000px;}
.x52{left:386.929050px;}
.x41{left:388.034550px;}
.x46{left:390.500700px;}
.x53{left:394.242450px;}
.x95{left:418.648800px;}
.x6b{left:428.088150px;}
.x98{left:432.510150px;}
.x6c{left:435.486450px;}
.x9{left:446.456751px;}
.xb8{left:453.004650px;}
.x80{left:454.960500px;}
.x62{left:458.106900px;}
.x37{left:461.338500px;}
.x81{left:464.569950px;}
.xb2{left:465.760546px;}
.x38{left:466.866000px;}
.xb9{left:472.898269px;}
.x26{left:475.455188px;}
.x7f{left:479.622000px;}
.x4c{left:485.064450px;}
.x63{left:488.125800px;}
.x4d{left:490.677000px;}
.x94{left:492.888000px;}
.x6d{left:493.993500px;}
.x82{left:495.524250px;}
.x64{left:502.241928px;}
.x8f{left:505.388850px;}
.x9e{left:509.130987px;}
.x6e{left:510.151050px;}
.xab{left:512.532150px;}
.x99{left:514.318050px;}
.x90{left:515.678550px;}
.x83{left:517.124250px;}
.x6f{left:526.563600px;}
.x60{left:528.944700px;}
.x84{left:532.346400px;}
.x61{left:533.962050px;}
.xac{left:537.363600px;}
.xa4{left:541.785750px;}
.x66{left:546.207750px;}
.x65{left:547.313250px;}
.x67{left:548.418750px;}
.x27{left:558.283350px;}
.x28{left:563.810850px;}
.xad{left:570.529050px;}
.x9f{left:573.590400px;}
.x55{left:578.522700px;}
.xa5{left:580.308450px;}
.xae{left:582.009300px;}
.xa{left:583.199850px;}
.xb1{left:585.325800px;}
.xa6{left:590.343150px;}
.x70{left:597.316350px;}
.xc{left:598.762050px;}
.xb{left:603.609300px;}
.x71{left:605.055000px;}
.x91{left:608.626650px;}
.x72{left:613.473900px;}
.x29{left:616.110150px;}
.x92{left:617.895900px;}
.x73{left:629.886450px;}
.x33{left:632.777850px;}
.x34{left:638.305350px;}
.x2{left:640.006200px;}
.xaf{left:641.962050px;}
.x3{left:645.618750px;}
.xa0{left:648.084900px;}
.x47{left:650.295900px;}
.xa7{left:652.591950px;}
.x2a{left:654.292650px;}
.xa8{left:660.670650px;}
.x2b{left:663.987150px;}
.xa9{left:670.705350px;}
.x74{left:682.185600px;}
.x75{left:686.692800px;}
.xa1{left:689.158950px;}
.x9a{left:691.114800px;}
.xa2{left:693.155700px;}
.x76{left:695.621850px;}
.x9b{left:700.128900px;}
.x48{left:706.166700px;}
.x49{left:711.694350px;}
.x2c{left:713.905350px;}
.x2d{left:719.432850px;}
.xa3{left:733.804500px;}
.x77{left:745.965150px;}
.x78{left:750.472200px;}
.x9c{left:754.894200px;}
.x79{left:759.401400px;}
.x2e{left:761.017050px;}
.x9d{left:763.908450px;}
.xb0{left:766.119450px;}
.x4a{left:767.565150px;}
.x2f{left:770.711550px;}
.x4b{left:773.177700px;}
.xaa{left:774.453300px;}
.x7a{left:775.814100px;}
.x93{left:781.001400px;}
.xd{left:862.043850px;}
@media print{
.v3{vertical-align:-67.426576pt;}
.vb{vertical-align:-29.026528pt;}
.v1{vertical-align:-7.254167pt;}
.vc{vertical-align:-0.905415pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.537259pt;}
.v7{vertical-align:7.256533pt;}
.v9{vertical-align:17.537600pt;}
.v6{vertical-align:24.789439pt;}
.v4{vertical-align:29.329353pt;}
.v2{vertical-align:32.654933pt;}
.v8{vertical-align:65.312920pt;}
.va{vertical-align:82.847467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.003188pt;}
.ls64{letter-spacing:0.009564pt;}
.ls65{letter-spacing:0.022313pt;}
.ls14{letter-spacing:0.033474pt;}
.ls3a{letter-spacing:0.090859pt;}
.ls67{letter-spacing:0.100423pt;}
.ls33{letter-spacing:0.104328pt;}
.ls38{letter-spacing:0.111002pt;}
.ls2f{letter-spacing:0.116800pt;}
.ls2{letter-spacing:0.133897pt;}
.ls68{letter-spacing:0.140256pt;}
.ls5c{letter-spacing:0.143461pt;}
.ls41{letter-spacing:0.160456pt;}
.ls46{letter-spacing:0.160476pt;}
.lse{letter-spacing:0.161136pt;}
.ls3e{letter-spacing:0.161229pt;}
.ls45{letter-spacing:0.161762pt;}
.ls4a{letter-spacing:0.161781pt;}
.ls4f{letter-spacing:0.161785pt;}
.ls3b{letter-spacing:0.162007pt;}
.ls8{letter-spacing:0.162589pt;}
.ls43{letter-spacing:0.163330pt;}
.ls36{letter-spacing:0.167371pt;}
.ls31{letter-spacing:0.172267pt;}
.ls34{letter-spacing:0.172800pt;}
.ls3{letter-spacing:0.200845pt;}
.ls37{letter-spacing:0.210409pt;}
.ls20{letter-spacing:0.236935pt;}
.ls18{letter-spacing:0.239101pt;}
.ls4b{letter-spacing:2.386068pt;}
.ls47{letter-spacing:2.688468pt;}
.ls5f{letter-spacing:2.922667pt;}
.ls6d{letter-spacing:3.383616pt;}
.ls5d{letter-spacing:3.762413pt;}
.ls11{letter-spacing:4.399707pt;}
.ls13{letter-spacing:4.403170pt;}
.ls39{letter-spacing:6.852644pt;}
.ls3d{letter-spacing:10.649573pt;}
.ls5e{letter-spacing:10.650382pt;}
.ls51{letter-spacing:10.673484pt;}
.ls57{letter-spacing:10.917367pt;}
.lsc{letter-spacing:11.701619pt;}
.ls6{letter-spacing:11.726002pt;}
.ls24{letter-spacing:11.726535pt;}
.ls35{letter-spacing:11.892900pt;}
.ls4e{letter-spacing:11.899261pt;}
.ls4d{letter-spacing:11.899795pt;}
.ls22{letter-spacing:12.028402pt;}
.ls1a{letter-spacing:12.028935pt;}
.ls26{letter-spacing:12.031579pt;}
.ls2a{letter-spacing:12.060271pt;}
.ls40{letter-spacing:12.294591pt;}
.ls30{letter-spacing:12.500218pt;}
.ls32{letter-spacing:12.801485pt;}
.ls28{letter-spacing:12.936135pt;}
.ls44{letter-spacing:13.197333pt;}
.ls3f{letter-spacing:13.263405pt;}
.ls3c{letter-spacing:13.271402pt;}
.ls56{letter-spacing:13.370547pt;}
.ls54{letter-spacing:13.394457pt;}
.ls4c{letter-spacing:13.499733pt;}
.ls25{letter-spacing:13.514007pt;}
.ls10{letter-spacing:13.975195pt;}
.ls2d{letter-spacing:13.986979pt;}
.ls2e{letter-spacing:14.007523pt;}
.lsa{letter-spacing:14.145202pt;}
.ls69{letter-spacing:14.145735pt;}
.ls16{letter-spacing:14.379554pt;}
.ls15{letter-spacing:14.422592pt;}
.ls17{letter-spacing:14.714296pt;}
.ls6c{letter-spacing:14.914189pt;}
.lsd{letter-spacing:14.986872pt;}
.ls6b{letter-spacing:15.029663pt;}
.ls63{letter-spacing:15.354802pt;}
.ls27{letter-spacing:15.657202pt;}
.ls6a{letter-spacing:15.959069pt;}
.lsf{letter-spacing:15.985005pt;}
.ls59{letter-spacing:16.532246pt;}
.ls12{letter-spacing:16.998661pt;}
.ls5a{letter-spacing:17.030989pt;}
.ls19{letter-spacing:17.169202pt;}
.ls1{letter-spacing:18.378802pt;}
.ls1b{letter-spacing:19.587869pt;}
.ls1f{letter-spacing:19.890269pt;}
.ls5b{letter-spacing:20.156242pt;}
.ls5{letter-spacing:20.192669pt;}
.ls1c{letter-spacing:20.796935pt;}
.ls61{letter-spacing:20.997879pt;}
.ls7{letter-spacing:22.308935pt;}
.ls29{letter-spacing:22.611335pt;}
.ls0{letter-spacing:24.728135pt;}
.ls2c{letter-spacing:25.634802pt;}
.lsb{letter-spacing:30.170802pt;}
.ls2b{letter-spacing:32.589469pt;}
.ls1d{letter-spacing:35.915335pt;}
.ls49{letter-spacing:54.515104pt;}
.ls42{letter-spacing:72.331461pt;}
.ls52{letter-spacing:88.052844pt;}
.ls50{letter-spacing:110.126128pt;}
.ls1e{letter-spacing:125.088254pt;}
.ls55{letter-spacing:142.322678pt;}
.ls66{letter-spacing:159.059771pt;}
.ls23{letter-spacing:173.490269pt;}
.ls21{letter-spacing:199.795869pt;}
.ls62{letter-spacing:207.329548pt;}
.ls53{letter-spacing:420.316234pt;}
.ls58{letter-spacing:422.434672pt;}
.ls48{letter-spacing:464.028740pt;}
.ls60{letter-spacing:755.435881pt;}
.ws1ad{word-spacing:-422.482492pt;}
.ws17e{word-spacing:-44.649783pt;}
.ws17d{word-spacing:-44.348515pt;}
.ws15a{word-spacing:-43.879877pt;}
.ws17f{word-spacing:-43.741198pt;}
.ws139{word-spacing:-38.150116pt;}
.ws2{word-spacing:-34.961984pt;}
.ws1{word-spacing:-34.924790pt;}
.ws4{word-spacing:-34.872719pt;}
.wsc7{word-spacing:-34.813210pt;}
.ws3{word-spacing:-34.731384pt;}
.ws0{word-spacing:-34.656996pt;}
.ws12{word-spacing:-31.848298pt;}
.ws59{word-spacing:-30.520553pt;}
.ws56{word-spacing:-28.310150pt;}
.wsfe{word-spacing:-27.534853pt;}
.ws84{word-spacing:-27.529008pt;}
.ws2b{word-spacing:-26.396787pt;}
.wsff{word-spacing:-24.972917pt;}
.wsdc{word-spacing:-24.845396pt;}
.ws135{word-spacing:-24.813516pt;}
.ws85{word-spacing:-24.786949pt;}
.ws136{word-spacing:-24.755068pt;}
.ws134{word-spacing:-24.670054pt;}
.ws137{word-spacing:-24.558473pt;}
.ws100{word-spacing:-24.484086pt;}
.ws226{word-spacing:-23.464269pt;}
.ws20{word-spacing:-22.451615pt;}
.ws154{word-spacing:-22.322500pt;}
.ws16e{word-spacing:-22.293062pt;}
.ws1f{word-spacing:-22.284244pt;}
.ws176{word-spacing:-22.231642pt;}
.ws1e{word-spacing:-22.155130pt;}
.ws179{word-spacing:-21.629107pt;}
.ws191{word-spacing:-21.323057pt;}
.ws157{word-spacing:-21.229594pt;}
.ws10f{word-spacing:-20.634445pt;}
.ws16b{word-spacing:-20.586625pt;}
.wsad{word-spacing:-20.467074pt;}
.wsc9{word-spacing:-20.390562pt;}
.wsbd{word-spacing:-20.380998pt;}
.wsb8{word-spacing:-20.342741pt;}
.ws55{word-spacing:-20.327198pt;}
.ws1a3{word-spacing:-20.280575pt;}
.ws75{word-spacing:-20.232755pt;}
.ws74{word-spacing:-20.227973pt;}
.wsb7{word-spacing:-20.180153pt;}
.ws11c{word-spacing:-20.170588pt;}
.ws76{word-spacing:-20.156242pt;}
.ws15c{word-spacing:-20.137114pt;}
.ws11d{word-spacing:-20.122768pt;}
.wsde{word-spacing:-20.117986pt;}
.ws169{word-spacing:-20.084512pt;}
.ws1bc{word-spacing:-20.079730pt;}
.wsec{word-spacing:-20.070166pt;}
.ws15f{word-spacing:-20.065384pt;}
.ws21{word-spacing:-20.055820pt;}
.ws158{word-spacing:-20.046256pt;}
.ws57{word-spacing:-20.042396pt;}
.ws8e{word-spacing:-20.036692pt;}
.ws12b{word-spacing:-20.031910pt;}
.ws1a0{word-spacing:-20.027128pt;}
.ws23{word-spacing:-20.017564pt;}
.ws2c{word-spacing:-20.008000pt;}
.ws204{word-spacing:-19.998436pt;}
.wsdb{word-spacing:-19.988871pt;}
.ws7c{word-spacing:-19.979307pt;}
.ws15b{word-spacing:-19.974525pt;}
.ws1f6{word-spacing:-19.969743pt;}
.ws199{word-spacing:-19.955397pt;}
.wsc4{word-spacing:-19.950615pt;}
.ws1fb{word-spacing:-19.945790pt;}
.ws22{word-spacing:-19.941051pt;}
.ws24{word-spacing:-19.936269pt;}
.ws25{word-spacing:-19.931487pt;}
.ws15d{word-spacing:-19.926705pt;}
.ws159{word-spacing:-19.912359pt;}
.wsc0{word-spacing:-19.907577pt;}
.ws70{word-spacing:-19.902795pt;}
.ws26{word-spacing:-19.888449pt;}
.ws1e1{word-spacing:-19.869321pt;}
.ws1ce{word-spacing:-19.859757pt;}
.ws1c3{word-spacing:-19.854530pt;}
.ws1be{word-spacing:-19.849748pt;}
.ws177{word-spacing:-19.831065pt;}
.ws4e{word-spacing:-19.811936pt;}
.ws1d3{word-spacing:-19.792808pt;}
.ws1f7{word-spacing:-19.783244pt;}
.wsfc{word-spacing:-19.778462pt;}
.ws1ae{word-spacing:-19.768898pt;}
.ws195{word-spacing:-19.754552pt;}
.wseb{word-spacing:-19.740206pt;}
.ws1bf{word-spacing:-19.736851pt;}
.ws1fc{word-spacing:-19.735916pt;}
.ws83{word-spacing:-19.735424pt;}
.ws1cb{word-spacing:-19.734979pt;}
.ws3e{word-spacing:-19.730642pt;}
.ws1ca{word-spacing:-19.730197pt;}
.ws18{word-spacing:-19.701950pt;}
.ws155{word-spacing:-19.692386pt;}
.ws171{word-spacing:-19.687604pt;}
.wsd2{word-spacing:-19.678040pt;}
.ws63{word-spacing:-19.649348pt;}
.ws1bd{word-spacing:-19.646256pt;}
.ws1c9{word-spacing:-19.634184pt;}
.ws1ef{word-spacing:-19.620655pt;}
.ws20a{word-spacing:-19.601527pt;}
.ws1ee{word-spacing:-19.582399pt;}
.ws20f{word-spacing:-19.558489pt;}
.ws9c{word-spacing:-19.501105pt;}
.ws42{word-spacing:-19.467631pt;}
.ws4a{word-spacing:-19.448502pt;}
.ws9a{word-spacing:-19.415028pt;}
.ws210{word-spacing:-19.386336pt;}
.ws47{word-spacing:-19.376772pt;}
.ws41{word-spacing:-19.333734pt;}
.ws37{word-spacing:-19.324170pt;}
.wsf9{word-spacing:-19.314606pt;}
.ws17b{word-spacing:-19.247657pt;}
.ws17c{word-spacing:-19.218965pt;}
.wsda{word-spacing:-19.204619pt;}
.ws19c{word-spacing:-19.185491pt;}
.wsd6{word-spacing:-19.166363pt;}
.ws9b{word-spacing:-19.152017pt;}
.ws110{word-spacing:-19.147235pt;}
.ws80{word-spacing:-19.123325pt;}
.ws68{word-spacing:-19.113761pt;}
.ws1d2{word-spacing:-19.099415pt;}
.wscb{word-spacing:-19.070722pt;}
.ws181{word-spacing:-19.056376pt;}
.ws38{word-spacing:-19.051594pt;}
.ws1e7{word-spacing:-19.013338pt;}
.ws143{word-spacing:-19.003774pt;}
.ws6f{word-spacing:-18.912915pt;}
.ws1e6{word-spacing:-18.898569pt;}
.ws2a{word-spacing:-18.869877pt;}
.ws192{word-spacing:-18.822057pt;}
.ws9e{word-spacing:-18.802929pt;}
.wsb6{word-spacing:-18.793365pt;}
.ws9d{word-spacing:-18.769455pt;}
.ws14e{word-spacing:-18.745545pt;}
.wsc2{word-spacing:-18.669032pt;}
.ws170{word-spacing:-18.621212pt;}
.ws1dc{word-spacing:-18.611648pt;}
.ws165{word-spacing:-18.597302pt;}
.ws3c{word-spacing:-18.516007pt;}
.ws111{word-spacing:-18.501661pt;}
.ws7b{word-spacing:-18.468187pt;}
.ws147{word-spacing:-18.463405pt;}
.ws66{word-spacing:-18.449059pt;}
.ws77{word-spacing:-18.425149pt;}
.wsa0{word-spacing:-18.415585pt;}
.ws11{word-spacing:-18.401239pt;}
.ws1b5{word-spacing:-18.386893pt;}
.ws183{word-spacing:-18.343854pt;}
.wsd1{word-spacing:-18.334290pt;}
.wsc8{word-spacing:-18.307479pt;}
.ws13d{word-spacing:-18.305598pt;}
.wsa8{word-spacing:-18.257778pt;}
.ws222{word-spacing:-18.214564pt;}
.ws13a{word-spacing:-18.200393pt;}
.wsb3{word-spacing:-18.195611pt;}
.ws122{word-spacing:-18.123881pt;}
.ws211{word-spacing:-18.066497pt;}
.ws233{word-spacing:-18.053034pt;}
.wse5{word-spacing:-18.047369pt;}
.ws21a{word-spacing:-18.033023pt;}
.ws223{word-spacing:-18.023279pt;}
.ws244{word-spacing:-18.010527pt;}
.ws225{word-spacing:-18.006276pt;}
.ws22b{word-spacing:-17.968019pt;}
.ws112{word-spacing:-17.956510pt;}
.ws1b0{word-spacing:-17.946946pt;}
.ws229{word-spacing:-17.934013pt;}
.ws22d{word-spacing:-17.925511pt;}
.ws142{word-spacing:-17.913472pt;}
.ws5f{word-spacing:-17.900007pt;}
.ws227{word-spacing:-17.878753pt;}
.ws49{word-spacing:-17.860870pt;}
.wsb1{word-spacing:-17.822613pt;}
.ws1d{word-spacing:-17.797988pt;}
.ws24a{word-spacing:-17.789486pt;}
.ws190{word-spacing:-17.789139pt;}
.ws1b2{word-spacing:-17.774793pt;}
.ws18f{word-spacing:-17.741319pt;}
.ws242{word-spacing:-17.729976pt;}
.wsf0{word-spacing:-17.722191pt;}
.ws114{word-spacing:-17.698281pt;}
.wsee{word-spacing:-17.674371pt;}
.ws1d0{word-spacing:-17.612204pt;}
.wsef{word-spacing:-17.607422pt;}
.ws60{word-spacing:-17.576948pt;}
.wsb5{word-spacing:-17.573948pt;}
.ws4c{word-spacing:-17.559602pt;}
.ws217{word-spacing:-17.535692pt;}
.ws13e{word-spacing:-17.468743pt;}
.ws185{word-spacing:-17.454397pt;}
.ws16a{word-spacing:-17.435269pt;}
.ws141{word-spacing:-17.425705pt;}
.ws1cf{word-spacing:-17.363539pt;}
.ws14f{word-spacing:-17.349193pt;}
.ws6e{word-spacing:-17.267898pt;}
.ws214{word-spacing:-17.258334pt;}
.wsf4{word-spacing:-17.157912pt;}
.ws18e{word-spacing:-17.134002pt;}
.ws12d{word-spacing:-17.129220pt;}
.wsf1{word-spacing:-17.124437pt;}
.ws21f{word-spacing:-17.119655pt;}
.wsf2{word-spacing:-17.114873pt;}
.wse4{word-spacing:-17.086181pt;}
.ws11e{word-spacing:-17.071835pt;}
.wsf5{word-spacing:-17.047925pt;}
.ws12e{word-spacing:-17.014451pt;}
.wse3{word-spacing:-17.004887pt;}
.ws12f{word-spacing:-16.980977pt;}
.wsd4{word-spacing:-16.966631pt;}
.ws14d{word-spacing:-16.957067pt;}
.wsf3{word-spacing:-16.899682pt;}
.ws1f2{word-spacing:-16.856644pt;}
.ws140{word-spacing:-16.827952pt;}
.ws19f{word-spacing:-16.813606pt;}
.wsbf{word-spacing:-16.746657pt;}
.ws19e{word-spacing:-16.703619pt;}
.ws90{word-spacing:-16.665363pt;}
.ws1b1{word-spacing:-16.655799pt;}
.ws202{word-spacing:-16.627107pt;}
.ws19d{word-spacing:-16.588851pt;}
.ws53{word-spacing:-16.582267pt;}
.ws8f{word-spacing:-16.541030pt;}
.ws87{word-spacing:-16.521902pt;}
.ws144{word-spacing:-16.440608pt;}
.ws14b{word-spacing:-16.349749pt;}
.ws1a8{word-spacing:-16.321057pt;}
.ws196{word-spacing:-16.306711pt;}
.ws163{word-spacing:-16.292365pt;}
.wsae{word-spacing:-16.273237pt;}
.ws162{word-spacing:-16.225416pt;}
.ws14a{word-spacing:-16.139340pt;}
.ws1db{word-spacing:-16.062828pt;}
.ws13b{word-spacing:-16.058046pt;}
.ws218{word-spacing:-16.048481pt;}
.ws102{word-spacing:-15.938495pt;}
.ws219{word-spacing:-15.905021pt;}
.wsb9{word-spacing:-15.838072pt;}
.ws160{word-spacing:-15.814162pt;}
.ws10a{word-spacing:-15.795034pt;}
.ws109{word-spacing:-15.756778pt;}
.ws103{word-spacing:-15.751996pt;}
.ws10b{word-spacing:-15.747214pt;}
.ws65{word-spacing:-15.637227pt;}
.ws1d8{word-spacing:-15.622881pt;}
.wsd{word-spacing:-15.618099pt;}
.ws18c{word-spacing:-15.613317pt;}
.ws35{word-spacing:-15.579843pt;}
.ws7a{word-spacing:-15.570279pt;}
.ws1d7{word-spacing:-15.565497pt;}
.wsfd{word-spacing:-15.536805pt;}
.ws51{word-spacing:-15.472815pt;}
.ws11f{word-spacing:-15.455510pt;}
.ws1a5{word-spacing:-15.436382pt;}
.ws1de{word-spacing:-15.359870pt;}
.ws21d{word-spacing:-15.307267pt;}
.ws1dd{word-spacing:-15.269011pt;}
.ws133{word-spacing:-15.235537pt;}
.ws19{word-spacing:-15.217769pt;}
.ws178{word-spacing:-15.192499pt;}
.ws108{word-spacing:-15.178153pt;}
.ws9f{word-spacing:-15.168589pt;}
.ws1e5{word-spacing:-15.154243pt;}
.ws7{word-spacing:-15.139896pt;}
.ws5{word-spacing:-15.135114pt;}
.ws1b4{word-spacing:-15.015564pt;}
.wse2{word-spacing:-15.010782pt;}
.ws1e4{word-spacing:-14.953397pt;}
.wscc{word-spacing:-14.929487pt;}
.ws11a{word-spacing:-14.915141pt;}
.wse1{word-spacing:-14.886449pt;}
.ws220{word-spacing:-14.838629pt;}
.ws81{word-spacing:-14.766898pt;}
.ws119{word-spacing:-14.757334pt;}
.ws1af{word-spacing:-14.738206pt;}
.wse0{word-spacing:-14.652130pt;}
.ws113{word-spacing:-14.628220pt;}
.wsb4{word-spacing:-14.623438pt;}
.ws12c{word-spacing:-14.618656pt;}
.ws23d{word-spacing:-14.609908pt;}
.ws18d{word-spacing:-14.580399pt;}
.ws173{word-spacing:-14.484759pt;}
.ws221{word-spacing:-14.479977pt;}
.wsab{word-spacing:-14.441721pt;}
.ws4f{word-spacing:-14.427374pt;}
.ws1d9{word-spacing:-14.417810pt;}
.ws1a7{word-spacing:-14.403464pt;}
.ws180{word-spacing:-14.360426pt;}
.ws62{word-spacing:-14.331734pt;}
.ws43{word-spacing:-14.326952pt;}
.ws18a{word-spacing:-14.283914pt;}
.ws121{word-spacing:-14.260004pt;}
.ws36{word-spacing:-14.236093pt;}
.wse{word-spacing:-14.212183pt;}
.ws1f3{word-spacing:-14.159581pt;}
.wsba{word-spacing:-14.035248pt;}
.ws31{word-spacing:-13.982646pt;}
.ws32{word-spacing:-13.958736pt;}
.ws1c{word-spacing:-13.951038pt;}
.ws82{word-spacing:-13.944390pt;}
.ws30{word-spacing:-13.930044pt;}
.ws189{word-spacing:-13.839185pt;}
.ws17a{word-spacing:-13.824839pt;}
.wsf7{word-spacing:-13.820057pt;}
.ws188{word-spacing:-13.796147pt;}
.ws40{word-spacing:-13.772237pt;}
.ws45{word-spacing:-13.757891pt;}
.ws7d{word-spacing:-13.719635pt;}
.ws13{word-spacing:-13.681378pt;}
.ws234{word-spacing:-13.678989pt;}
.ws14{word-spacing:-13.571392pt;}
.ws1ba{word-spacing:-13.557046pt;}
.ws194{word-spacing:-13.528353pt;}
.ws193{word-spacing:-13.518789pt;}
.ws14c{word-spacing:-13.494879pt;}
.ws52{word-spacing:-13.466450pt;}
.ws48{word-spacing:-13.418367pt;}
.ws22c{word-spacing:-13.406939pt;}
.ws71{word-spacing:-13.337072pt;}
.ws153{word-spacing:-13.327508pt;}
.ws95{word-spacing:-13.227086pt;}
.ws21e{word-spacing:-13.207958pt;}
.ws22a{word-spacing:-13.185899pt;}
.wsc5{word-spacing:-13.160137pt;}
.ws243{word-spacing:-13.147642pt;}
.wsf6{word-spacing:-13.097971pt;}
.ws22e{word-spacing:-13.058376pt;}
.ws1a{word-spacing:-13.041373pt;}
.ws236{word-spacing:-12.990363pt;}
.ws198{word-spacing:-12.983202pt;}
.ws150{word-spacing:-12.949728pt;}
.ws96{word-spacing:-12.882780pt;}
.ws224{word-spacing:-12.858589pt;}
.ws151{word-spacing:-12.825396pt;}
.ws228{word-spacing:-12.820332pt;}
.ws128{word-spacing:-12.782357pt;}
.ws245{word-spacing:-12.748069pt;}
.ws1d1{word-spacing:-12.581512pt;}
.ws8d{word-spacing:-12.490654pt;}
.wsac{word-spacing:-12.461961pt;}
.ws107{word-spacing:-12.447615pt;}
.ws15{word-spacing:-12.418923pt;}
.ws54{word-spacing:-12.348497pt;}
.ws131{word-spacing:-12.337629pt;}
.ws132{word-spacing:-12.308937pt;}
.wsc3{word-spacing:-12.294591pt;}
.ws216{word-spacing:-12.289809pt;}
.ws247{word-spacing:-12.280484pt;}
.wscd{word-spacing:-12.256334pt;}
.wsa5{word-spacing:-12.241988pt;}
.ws28{word-spacing:-12.170258pt;}
.ws164{word-spacing:-12.127220pt;}
.ws3d{word-spacing:-12.084181pt;}
.ws44{word-spacing:-12.065053pt;}
.ws2f{word-spacing:-12.041143pt;}
.ws8c{word-spacing:-12.002887pt;}
.ws1f4{word-spacing:-11.998105pt;}
.ws1f5{word-spacing:-11.825952pt;}
.ws73{word-spacing:-11.706401pt;}
.ws1a2{word-spacing:-11.605979pt;}
.ws50{word-spacing:-11.515120pt;}
.wsca{word-spacing:-11.338185pt;}
.wsa7{word-spacing:-11.304711pt;}
.ws91{word-spacing:-11.223417pt;}
.ws2d{word-spacing:-11.194724pt;}
.ws1bb{word-spacing:-11.132558pt;}
.ws124{word-spacing:-11.051264pt;}
.wsdd{word-spacing:-11.013007pt;}
.wsc6{word-spacing:-10.998661pt;}
.ws125{word-spacing:-10.974751pt;}
.ws1ac{word-spacing:-10.965187pt;}
.wsb2{word-spacing:-10.960405pt;}
.ws126{word-spacing:-10.922149pt;}
.ws123{word-spacing:-10.917367pt;}
.wsb{word-spacing:-10.907803pt;}
.ws79{word-spacing:-10.893457pt;}
.ws10e{word-spacing:-10.797816pt;}
.wsa{word-spacing:-10.769124pt;}
.ws8{word-spacing:-10.759560pt;}
.ws1e8{word-spacing:-10.697394pt;}
.ws10d{word-spacing:-10.654355pt;}
.ws3a{word-spacing:-10.587407pt;}
.ws1e9{word-spacing:-10.549151pt;}
.ws10c{word-spacing:-10.525241pt;}
.ws21c{word-spacing:-10.458292pt;}
.ws7e{word-spacing:-10.448728pt;}
.ws2e{word-spacing:-10.396126pt;}
.ws1b8{word-spacing:-10.386562pt;}
.ws7f{word-spacing:-10.305267pt;}
.ws209{word-spacing:-10.195281pt;}
.wsf8{word-spacing:-10.185717pt;}
.ws29{word-spacing:-10.166589pt;}
.ws130{word-spacing:-9.960962pt;}
.ws1b9{word-spacing:-9.827065pt;}
.ws27{word-spacing:-9.825109pt;}
.wsea{word-spacing:-9.697950pt;}
.ws78{word-spacing:-9.554489pt;}
.ws39{word-spacing:-9.549707pt;}
.ws23e{word-spacing:-9.534485pt;}
.ws6{word-spacing:-9.411028pt;}
.ws4d{word-spacing:-9.396682pt;}
.ws1e2{word-spacing:-9.315388pt;}
.ws168{word-spacing:-9.238876pt;}
.ws24d{word-spacing:-9.236930pt;}
.ws1a1{word-spacing:-9.186273pt;}
.ws6c{word-spacing:-9.176709pt;}
.ws201{word-spacing:-9.148017pt;}
.ws129{word-spacing:-9.138453pt;}
.ws6a{word-spacing:-9.119325pt;}
.ws24b{word-spacing:-9.096655pt;}
.wsd7{word-spacing:-9.066723pt;}
.ws235{word-spacing:-9.062649pt;}
.ws1b7{word-spacing:-8.999774pt;}
.ws11b{word-spacing:-8.985428pt;}
.ws174{word-spacing:-8.947172pt;}
.ws120{word-spacing:-8.894570pt;}
.ws21b{word-spacing:-8.837185pt;}
.ws86{word-spacing:-8.794147pt;}
.ws34{word-spacing:-8.775019pt;}
.ws1b6{word-spacing:-8.765455pt;}
.ws16{word-spacing:-8.669814pt;}
.wsaa{word-spacing:-8.634253pt;}
.ws89{word-spacing:-8.559828pt;}
.ws17{word-spacing:-8.492879pt;}
.ws13f{word-spacing:-8.387675pt;}
.ws186{word-spacing:-8.378111pt;}
.ws237{word-spacing:-8.344268pt;}
.ws239{word-spacing:-8.327265pt;}
.ws187{word-spacing:-8.196394pt;}
.ws149{word-spacing:-8.162920pt;}
.ws1da{word-spacing:-8.033805pt;}
.ws105{word-spacing:-8.029023pt;}
.ws241{word-spacing:-8.025460pt;}
.ws148{word-spacing:-7.990767pt;}
.ws106{word-spacing:-7.976420pt;}
.ws172{word-spacing:-7.952510pt;}
.ws1ff{word-spacing:-7.947728pt;}
.ws152{word-spacing:-7.899908pt;}
.ws23f{word-spacing:-7.885185pt;}
.ws182{word-spacing:-7.861652pt;}
.ws13c{word-spacing:-7.761229pt;}
.ws246{word-spacing:-7.681147pt;}
.ws1a6{word-spacing:-7.675153pt;}
.ws166{word-spacing:-7.632115pt;}
.ws248{word-spacing:-7.613135pt;}
.wsa1{word-spacing:-7.340411pt;}
.wsbe{word-spacing:-7.306937pt;}
.ws1a4{word-spacing:-7.278245pt;}
.ws1ec{word-spacing:-7.263899pt;}
.ws10{word-spacing:-7.254334pt;}
.ws127{word-spacing:-7.239988pt;}
.ws99{word-spacing:-7.125220pt;}
.ws97{word-spacing:-7.120438pt;}
.ws3f{word-spacing:-7.034361pt;}
.ws1df{word-spacing:-7.029579pt;}
.wsf{word-spacing:-6.976977pt;}
.ws1f1{word-spacing:-6.843080pt;}
.ws98{word-spacing:-6.838298pt;}
.ws33{word-spacing:-6.752222pt;}
.ws1f0{word-spacing:-6.723529pt;}
.ws1a9{word-spacing:-6.364877pt;}
.ws1aa{word-spacing:-6.278801pt;}
.ws118{word-spacing:-6.073174pt;}
.ws69{word-spacing:-6.063610pt;}
.ws23a{word-spacing:-6.061603pt;}
.ws23c{word-spacing:-5.908575pt;}
.wsd0{word-spacing:-5.896239pt;}
.ws184{word-spacing:-5.857983pt;}
.ws1e0{word-spacing:-5.676266pt;}
.wse9{word-spacing:-5.647573pt;}
.wsbc{word-spacing:-5.594971pt;}
.wsbb{word-spacing:-5.556715pt;}
.ws205{word-spacing:-5.499331pt;}
.wsa2{word-spacing:-5.365434pt;}
.ws1c4{word-spacing:-5.331960pt;}
.ws1d4{word-spacing:-5.269793pt;}
.ws145{word-spacing:-5.212409pt;}
.ws146{word-spacing:-5.174153pt;}
.wsa4{word-spacing:-5.164589pt;}
.ws24e{word-spacing:-5.096677pt;}
.wsaf{word-spacing:-5.025910pt;}
.ws22f{word-spacing:-4.913894pt;}
.wsb0{word-spacing:-4.906359pt;}
.wsd3{word-spacing:-4.863321pt;}
.ws1ea{word-spacing:-4.743770pt;}
.ws212{word-spacing:-4.648130pt;}
.ws213{word-spacing:-4.571617pt;}
.ws197{word-spacing:-4.557271pt;}
.wsc{word-spacing:-4.452067pt;}
.ws46{word-spacing:-4.442503pt;}
.ws1eb{word-spacing:-4.375554pt;}
.ws20e{word-spacing:-4.308606pt;}
.ws20d{word-spacing:-4.275132pt;}
.ws24c{word-spacing:-4.050987pt;}
.wscf{word-spacing:-4.045595pt;}
.wsce{word-spacing:-3.672596pt;}
.ws88{word-spacing:-3.476533pt;}
.ws240{word-spacing:-3.460129pt;}
.ws6b{word-spacing:-3.266124pt;}
.ws72{word-spacing:-3.237432pt;}
.ws238{word-spacing:-3.183829pt;}
.ws20b{word-spacing:-3.036587pt;}
.ws20c{word-spacing:-2.945728pt;}
.ws104{word-spacing:-2.735319pt;}
.wsd8{word-spacing:-1.850644pt;}
.ws3b{word-spacing:-1.836298pt;}
.wsd5{word-spacing:-1.425044pt;}
.ws6d{word-spacing:-1.338967pt;}
.wse6{word-spacing:-1.305493pt;}
.ws117{word-spacing:-1.262455pt;}
.wse7{word-spacing:-1.257673pt;}
.ws115{word-spacing:-1.142904pt;}
.ws18b{word-spacing:-1.023354pt;}
.ws116{word-spacing:-0.980315pt;}
.ws1ed{word-spacing:-0.932495pt;}
.wsd9{word-spacing:-0.789034pt;}
.ws23b{word-spacing:-0.726882pt;}
.ws1b3{word-spacing:-0.564279pt;}
.ws200{word-spacing:-0.444728pt;}
.wsfa{word-spacing:-0.267793pt;}
.ws138{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.047820pt;}
.ws1b{word-spacing:-0.042508pt;}
.ws64{word-spacing:0.000000pt;}
.ws1e3{word-spacing:0.009564pt;}
.wsa9{word-spacing:0.502113pt;}
.ws67{word-spacing:0.712522pt;}
.ws167{word-spacing:0.731650pt;}
.ws175{word-spacing:0.908585pt;}
.wsc1{word-spacing:1.095084pt;}
.ws1d6{word-spacing:1.300711pt;}
.wsa6{word-spacing:1.377224pt;}
.ws1d5{word-spacing:1.477646pt;}
.ws101{word-spacing:2.477090pt;}
.ws250{word-spacing:2.860770pt;}
.ws12a{word-spacing:3.935608pt;}
.ws5c{word-spacing:4.127501pt;}
.ws5b{word-spacing:4.191263pt;}
.ws4b{word-spacing:5.250665pt;}
.ws249{word-spacing:5.432488pt;}
.ws1fd{word-spacing:6.455779pt;}
.ws1c5{word-spacing:6.659936pt;}
.ws1fe{word-spacing:6.660871pt;}
.ws1c8{word-spacing:6.661808pt;}
.ws1c7{word-spacing:6.666590pt;}
.ws1c2{word-spacing:6.750532pt;}
.ws1c1{word-spacing:6.762604pt;}
.ws24f{word-spacing:7.455856pt;}
.ws5d{word-spacing:7.511116pt;}
.ws5e{word-spacing:7.519618pt;}
.ws215{word-spacing:8.550264pt;}
.wsfb{word-spacing:8.928044pt;}
.ws58{word-spacing:10.427147pt;}
.ws232{word-spacing:11.324060pt;}
.ws230{word-spacing:11.413326pt;}
.ws161{word-spacing:12.069835pt;}
.ws8a{word-spacing:12.418923pt;}
.ws8b{word-spacing:12.433269pt;}
.ws5a{word-spacing:12.658803pt;}
.ws207{word-spacing:12.935382pt;}
.ws93{word-spacing:13.724417pt;}
.ws92{word-spacing:13.987428pt;}
.ws94{word-spacing:14.040030pt;}
.wse8{word-spacing:14.872103pt;}
.ws231{word-spacing:16.263459pt;}
.wsa3{word-spacing:24.010556pt;}
.ws19a{word-spacing:24.933198pt;}
.ws208{word-spacing:25.703393pt;}
.ws1cd{word-spacing:43.750762pt;}
.ws1c0{word-spacing:45.749649pt;}
.ws1cc{word-spacing:49.498758pt;}
.ws1c6{word-spacing:72.151218pt;}
.ws206{word-spacing:74.274438pt;}
.ws15e{word-spacing:78.315251pt;}
.ws1ab{word-spacing:86.008259pt;}
.ws1fa{word-spacing:88.907440pt;}
.ws16c{word-spacing:91.752746pt;}
.ws16f{word-spacing:121.946462pt;}
.ws16d{word-spacing:122.290768pt;}
.ws1f9{word-spacing:155.425431pt;}
.ws1f8{word-spacing:220.131034pt;}
.ws203{word-spacing:248.454977pt;}
.ws156{word-spacing:311.434269pt;}
.ws19b{word-spacing:495.016272pt;}
.wsed{word-spacing:554.275147pt;}
.wsdf{word-spacing:580.236770pt;}
.ws61{word-spacing:1645.600581pt;}
._43{margin-left:-422.375636pt;}
._42{margin-left:-12.999161pt;}
._31{margin-left:-12.031579pt;}
._4f{margin-left:-5.359013pt;}
._7{margin-left:-1.088198pt;}
._11{width:0.930507pt;}
._6{width:11.189942pt;}
._14{width:12.351975pt;}
._5{width:13.423149pt;}
._a{width:14.360426pt;}
._c{width:15.273793pt;}
._15{width:16.469300pt;}
._1{width:17.894344pt;}
._0{width:19.355549pt;}
._9{width:20.567497pt;}
._2{width:22.150348pt;}
._4{width:23.929261pt;}
._12{width:25.158242pt;}
._e{width:26.927592pt;}
._3{width:28.376546pt;}
._f{width:29.796808pt;}
._3f{width:31.183042pt;}
._10{width:32.140555pt;}
._13{width:34.129324pt;}
._16{width:35.090512pt;}
._19{width:36.482081pt;}
._b{width:38.026676pt;}
._56{width:39.366412pt;}
._55{width:40.742867pt;}
._54{width:41.651452pt;}
._24{width:65.202934pt;}
._1f{width:70.903109pt;}
._4e{width:71.854733pt;}
._2c{width:77.205821pt;}
._47{width:78.109624pt;}
._4d{width:81.887425pt;}
._48{width:83.948478pt;}
._52{width:85.158331pt;}
._1c{width:88.993516pt;}
._2b{width:90.509419pt;}
._46{width:91.613640pt;}
._51{width:97.252076pt;}
._27{width:98.166978pt;}
._45{width:101.087262pt;}
._4c{width:104.511193pt;}
._36{width:107.279986pt;}
._49{width:108.284212pt;}
._26{width:110.254407pt;}
._3d{width:113.017485pt;}
._25{width:116.906206pt;}
._4b{width:117.814791pt;}
._18{width:121.549554pt;}
._39{width:123.787542pt;}
._3a{width:128.954379pt;}
._3b{width:143.338443pt;}
._3c{width:144.436333pt;}
._37{width:146.726252pt;}
._28{width:150.184329pt;}
._2f{width:156.745270pt;}
._41{width:161.355144pt;}
._40{width:167.327895pt;}
._35{width:173.543858pt;}
._1e{width:184.194103pt;}
._53{width:202.121921pt;}
._4a{width:205.211110pt;}
._2a{width:219.122026pt;}
._22{width:224.492956pt;}
._23{width:245.427955pt;}
._44{width:256.560513pt;}
._17{width:260.983887pt;}
._50{width:272.001677pt;}
._34{width:284.893349pt;}
._29{width:290.113460pt;}
._2e{width:324.505796pt;}
._33{width:343.244592pt;}
._38{width:353.525667pt;}
._3e{width:359.981403pt;}
._1b{width:377.713158pt;}
._21{width:385.287889pt;}
._2d{width:418.484718pt;}
._1a{width:500.376924pt;}
._32{width:539.795170pt;}
._30{width:581.124528pt;}
._1d{width:586.831184pt;}
._d{width:618.909019pt;}
._20{width:1148.293717pt;}
._8{width:1216.945396pt;}
.fs3{font-size:31.876267pt;}
.fs2{font-size:33.473067pt;}
.fs8{font-size:35.864533pt;}
.fs9{font-size:40.646400pt;}
.fs4{font-size:42.507733pt;}
.fs1{font-size:47.820267pt;}
.fs6{font-size:53.133867pt;}
.fs7{font-size:57.384000pt;}
.fs5{font-size:58.448000pt;}
.fs0{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:91.537123pt;}
.y5b{bottom:128.503768pt;}
.y1c4{bottom:128.503867pt;}
.ybc{bottom:128.504165pt;}
.y8e{bottom:128.505037pt;}
.y128{bottom:128.505382pt;}
.y13a{bottom:128.505445pt;}
.yf7{bottom:128.505790pt;}
.y150{bottom:128.579946pt;}
.y1aa{bottom:129.259867pt;}
.y1a8{bottom:129.260032pt;}
.y220{bottom:129.260198pt;}
.y51{bottom:129.574497pt;}
.y244{bottom:130.091333pt;}
.y284{bottom:131.906380pt;}
.y1c3{bottom:133.795200pt;}
.y1a9{bottom:134.551200pt;}
.y243{bottom:138.331119pt;}
.y5a{bottom:141.807626pt;}
.ybb{bottom:143.092933pt;}
.y1a1{bottom:143.093382pt;}
.y1c2{bottom:143.093547pt;}
.y1a5{bottom:143.848352pt;}
.y1a7{bottom:143.848800pt;}
.y21f{bottom:143.848965pt;}
.y8d{bottom:144.454291pt;}
.y127{bottom:144.454637pt;}
.y139{bottom:144.454699pt;}
.yf6{bottom:144.455045pt;}
.y14f{bottom:144.529200pt;}
.y14d{bottom:144.535611pt;}
.y50{bottom:145.523751pt;}
.y283{bottom:146.495147pt;}
.y1a2{bottom:148.459867pt;}
.y1a6{bottom:149.215733pt;}
.y14e{bottom:149.896000pt;}
.y59{bottom:155.036033pt;}
.y1a0{bottom:157.757632pt;}
.y21d{bottom:158.437733pt;}
.y1a4{bottom:158.513632pt;}
.y8c{bottom:160.403546pt;}
.y126{bottom:160.403891pt;}
.y138{bottom:160.403954pt;}
.yf5{bottom:160.404299pt;}
.y14c{bottom:160.484866pt;}
.y282{bottom:161.159232pt;}
.y4f{bottom:161.473005pt;}
.y21e{bottom:163.729067pt;}
.y58{bottom:168.339891pt;}
.y21c{bottom:171.061467pt;}
.y19f{bottom:172.346400pt;}
.y1a3{bottom:173.102400pt;}
.y21b{bottom:173.102565pt;}
.y281{bottom:175.748000pt;}
.y8b{bottom:176.352800pt;}
.y125{bottom:176.353146pt;}
.y137{bottom:176.353208pt;}
.yf4{bottom:176.353554pt;}
.y14b{bottom:176.434120pt;}
.y4e{bottom:177.346943pt;}
.y19e{bottom:186.935915pt;}
.y218{bottom:187.691250pt;}
.y21a{bottom:187.691333pt;}
.y8a{bottom:192.302400pt;}
.y124{bottom:192.302462pt;}
.yf3{bottom:192.302808pt;}
.y14a{bottom:192.383374pt;}
.y219{bottom:192.982667pt;}
.y4d{bottom:193.296197pt;}
.y280{bottom:198.500667pt;}
.y27e{bottom:198.500965pt;}
.y19d{bottom:201.600000pt;}
.y242{bottom:202.205845pt;}
.y27f{bottom:203.792133pt;}
.y136{bottom:208.176400pt;}
.yf2{bottom:208.176746pt;}
.y123{bottom:208.178841pt;}
.y89{bottom:208.178881pt;}
.y149{bottom:208.332629pt;}
.y4c{bottom:209.245452pt;}
.y217{bottom:210.444299pt;}
.y57{bottom:211.956013pt;}
.y27d{bottom:213.089733pt;}
.y27b{bottom:213.089899pt;}
.y241{bottom:218.079782pt;}
.y27c{bottom:218.381067pt;}
.yf0{bottom:222.160533pt;}
.yf1{bottom:224.126000pt;}
.yef{bottom:224.126346pt;}
.y122{bottom:224.128095pt;}
.y88{bottom:224.128136pt;}
.y148{bottom:224.281883pt;}
.y216{bottom:225.033232pt;}
.y56{bottom:225.184420pt;}
.y4b{bottom:225.194706pt;}
.y278{bottom:227.678053pt;}
.y27a{bottom:227.678667pt;}
.y279{bottom:233.045600pt;}
.y135{bottom:233.576140pt;}
.yed{bottom:238.110133pt;}
.y55{bottom:238.488278pt;}
.y215{bottom:239.622449pt;}
.yee{bottom:240.075600pt;}
.yec{bottom:240.076055pt;}
.y87{bottom:240.077390pt;}
.y147{bottom:240.231138pt;}
.y4a{bottom:241.143961pt;}
.y277{bottom:242.343333pt;}
.y275{bottom:242.343337pt;}
.y276{bottom:247.634667pt;}
.y134{bottom:247.711077pt;}
.y240{bottom:248.240024pt;}
.y54{bottom:251.792136pt;}
.y212{bottom:254.286167pt;}
.y214{bottom:254.286533pt;}
.yeb{bottom:256.025310pt;}
.y86{bottom:256.026645pt;}
.y146{bottom:256.105075pt;}
.y49{bottom:257.093215pt;}
.y121{bottom:257.236457pt;}
.y213{bottom:259.577867pt;}
.y133{bottom:261.921730pt;}
.y23f{bottom:264.189279pt;}
.y53{bottom:265.020542pt;}
.y273{bottom:265.474000pt;}
.y274{bottom:270.765333pt;}
.y85{bottom:271.975899pt;}
.y145{bottom:272.054330pt;}
.y48{bottom:273.042470pt;}
.y120{bottom:273.185711pt;}
.y132{bottom:276.056667pt;}
.y211{bottom:276.964182pt;}
.y23d{bottom:278.097600pt;}
.y52{bottom:278.324400pt;}
.y271{bottom:280.062933pt;}
.y23e{bottom:280.138533pt;}
.y23c{bottom:280.139287pt;}
.y272{bottom:285.354267pt;}
.y84{bottom:287.925154pt;}
.y144{bottom:288.003584pt;}
.y47{bottom:288.991724pt;}
.y11f{bottom:289.134966pt;}
.y210{bottom:291.628565pt;}
.ye7{bottom:292.157899pt;}
.y23b{bottom:296.013224pt;}
.ye6{bottom:300.320608pt;}
.ye9{bottom:300.321200pt;}
.y270{bottom:302.815899pt;}
.y83{bottom:303.874408pt;}
.y143{bottom:303.952839pt;}
.y46{bottom:304.865662pt;}
.y11e{bottom:305.084220pt;}
.y20f{bottom:306.217499pt;}
.ye8{bottom:308.484933pt;}
.y23a{bottom:311.962479pt;}
.yea{bottom:317.177867pt;}
.y26f{bottom:317.405414pt;}
.y82{bottom:319.823662pt;}
.y131{bottom:319.901336pt;}
.y142{bottom:319.902093pt;}
.y20c{bottom:320.806184pt;}
.y20e{bottom:320.806267pt;}
.y45{bottom:320.814916pt;}
.y11d{bottom:321.033475pt;}
.y20d{bottom:326.173200pt;}
.yb9{bottom:326.551891pt;}
.y239{bottom:327.915393pt;}
.y26e{bottom:331.994182pt;}
.y81{bottom:335.697600pt;}
.y130{bottom:335.850590pt;}
.y141{bottom:335.851347pt;}
.y44{bottom:336.764170pt;}
.y11c{bottom:336.982729pt;}
.yb8{bottom:342.501146pt;}
.y20b{bottom:343.559232pt;}
.y238{bottom:343.864647pt;}
.y36{bottom:343.940797pt;}
.ye4{bottom:346.053467pt;}
.y26d{bottom:346.658267pt;}
.ye5{bottom:348.018933pt;}
.ye3{bottom:348.020873pt;}
.y80{bottom:351.647200pt;}
.y12f{bottom:351.799845pt;}
.y140{bottom:351.800602pt;}
.y11b{bottom:352.860490pt;}
.y20a{bottom:358.148449pt;}
.yb7{bottom:358.450400pt;}
.y237{bottom:359.813902pt;}
.y35{bottom:359.890051pt;}
.ye2{bottom:363.970128pt;}
.y7f{bottom:367.597491pt;}
.y12e{bottom:367.749099pt;}
.y13f{bottom:367.749856pt;}
.y11a{bottom:368.809744pt;}
.y43{bottom:371.535482pt;}
.y209{bottom:372.812699pt;}
.y236{bottom:375.763156pt;}
.y34{bottom:375.839306pt;}
.ye1{bottom:379.919382pt;}
.yb6{bottom:383.395200pt;}
.y7e{bottom:383.546746pt;}
.y12d{bottom:383.623037pt;}
.y13e{bottom:383.623794pt;}
.y119{bottom:384.758999pt;}
.y206{bottom:387.401384pt;}
.y208{bottom:387.401467pt;}
.y42{bottom:387.484736pt;}
.y257{bottom:389.896691pt;}
.y235{bottom:391.712411pt;}
.y33{bottom:391.788560pt;}
.y207{bottom:392.692800pt;}
.ye0{bottom:395.868637pt;}
.y7d{bottom:399.496000pt;}
.y12c{bottom:399.572291pt;}
.y13d{bottom:399.573048pt;}
.y118{bottom:400.708253pt;}
.ybd{bottom:403.199867pt;}
.y41{bottom:403.433991pt;}
.y256{bottom:405.845946pt;}
.y32{bottom:407.737815pt;}
.y205{bottom:410.154432pt;}
.ydf{bottom:411.817891pt;}
.y12b{bottom:415.521546pt;}
.y13c{bottom:415.522303pt;}
.y117{bottom:416.657508pt;}
.y40{bottom:419.383245pt;}
.y254{bottom:421.795200pt;}
.y234{bottom:421.797336pt;}
.y31{bottom:423.611752pt;}
.y7c{bottom:424.440800pt;}
.y204{bottom:424.743365pt;}
.yb5{bottom:426.558716pt;}
.y255{bottom:427.086533pt;}
.yde{bottom:427.767146pt;}
.y12a{bottom:431.470800pt;}
.y13b{bottom:431.471557pt;}
.y116{bottom:432.606762pt;}
.y3f{bottom:435.332500pt;}
.y233{bottom:437.746590pt;}
.y252{bottom:437.747973pt;}
.y203{bottom:439.332715pt;}
.y30{bottom:439.561007pt;}
.y2a5{bottom:439.936933pt;}
.ydc{bottom:441.675467pt;}
.yb4{bottom:442.507970pt;}
.y253{bottom:443.036133pt;}
.ydd{bottom:443.716400pt;}
.ydb{bottom:443.716462pt;}
.y115{bottom:448.556016pt;}
.y3e{bottom:451.206437pt;}
.y232{bottom:453.695845pt;}
.y251{bottom:453.697227pt;}
.y201{bottom:453.996800pt;}
.y7b{bottom:454.903867pt;}
.y2f{bottom:455.510261pt;}
.yd9{bottom:457.625067pt;}
.yb3{bottom:458.457224pt;}
.y202{bottom:459.288133pt;}
.yda{bottom:459.590400pt;}
.yd8{bottom:459.590925pt;}
.y114{bottom:464.505271pt;}
.y2a4{bottom:467.075107pt;}
.y3d{bottom:467.155692pt;}
.y231{bottom:469.645099pt;}
.y250{bottom:469.646481pt;}
.y2e{bottom:471.459516pt;}
.yb2{bottom:474.406479pt;}
.y1fe{bottom:475.086533pt;}
.y1fd{bottom:477.127101pt;}
.y1ff{bottom:477.127467pt;}
.y176{bottom:477.278832pt;}
.y200{bottom:482.418800pt;}
.y2a3{bottom:482.949045pt;}
.y3c{bottom:483.104946pt;}
.y230{bottom:485.594354pt;}
.y24f{bottom:485.595736pt;}
.y2d{bottom:487.408770pt;}
.yb1{bottom:490.355733pt;}
.yaf{bottom:490.357657pt;}
.yd6{bottom:491.111733pt;}
.y175{bottom:491.867600pt;}
.y173{bottom:491.868430pt;}
.yd7{bottom:493.077067pt;}
.yd5{bottom:493.077654pt;}
.y7a{bottom:493.458302pt;}
.yb0{bottom:495.647200pt;}
.y174{bottom:497.234533pt;}
.y113{bottom:497.613632pt;}
.y3b{bottom:499.054200pt;}
.y1fc{bottom:499.804667pt;}
.y2c6{bottom:501.240596pt;}
.y22f{bottom:501.468291pt;}
.y24e{bottom:501.469673pt;}
.y2c{bottom:503.358024pt;}
.yae{bottom:506.231594pt;}
.y172{bottom:506.532515pt;}
.y79{bottom:509.332239pt;}
.y2a2{bottom:513.109287pt;}
.y112{bottom:513.487570pt;}
.y1fb{bottom:514.469200pt;}
.y2c5{bottom:514.544454pt;}
.y3a{bottom:515.003455pt;}
.y22e{bottom:517.417546pt;}
.y24d{bottom:517.418928pt;}
.y2b{bottom:519.307279pt;}
.y171{bottom:521.121283pt;}
.yad{bottom:522.180849pt;}
.y78{bottom:525.281494pt;}
.yd4{bottom:526.488479pt;}
.y2a1{bottom:529.058541pt;}
.y111{bottom:529.436824pt;}
.y19c{bottom:530.570913pt;}
.y2c4{bottom:530.645321pt;}
.y39{bottom:530.952709pt;}
.y22c{bottom:531.401467pt;}
.y22d{bottom:533.366800pt;}
.y22b{bottom:533.367837pt;}
.y24c{bottom:533.368182pt;}
.y2a{bottom:535.256533pt;}
.y170{bottom:535.710050pt;}
.yac{bottom:538.130103pt;}
.y1f9{bottom:541.229469pt;}
.y77{bottom:541.230748pt;}
.yd3{bottom:542.437733pt;}
.y2c3{bottom:543.949179pt;}
.y2a0{bottom:545.007796pt;}
.y19b{bottom:545.159681pt;}
.y110{bottom:545.386079pt;}
.y38{bottom:546.901964pt;}
.y222{bottom:549.088970pt;}
.y22a{bottom:549.317091pt;}
.y24b{bottom:549.317437pt;}
.yab{bottom:554.079358pt;}
.y1f8{bottom:556.876260pt;}
.y76{bottom:557.180003pt;}
.y223{bottom:557.329067pt;}
.y16f{bottom:558.462717pt;}
.y19a{bottom:559.748449pt;}
.y2c2{bottom:560.050045pt;}
.y29f{bottom:560.885251pt;}
.y29{bottom:561.032933pt;}
.y10f{bottom:561.340642pt;}
.y37{bottom:562.851218pt;}
.y229{bottom:565.266346pt;}
.y24a{bottom:565.266691pt;}
.y221{bottom:565.417200pt;}
.yd2{bottom:567.382533pt;}
.yaa{bottom:570.028612pt;}
.y1f7{bottom:572.447734pt;}
.y75{bottom:573.129257pt;}
.y2c1{bottom:573.353903pt;}
.y199{bottom:574.416469pt;}
.y29e{bottom:576.834506pt;}
.y10e{bottom:577.289896pt;}
.y227{bottom:579.250267pt;}
.y228{bottom:581.215600pt;}
.y16e{bottom:581.215899pt;}
.y249{bottom:581.215946pt;}
.y226{bottom:581.216291pt;}
.ya9{bottom:585.977867pt;}
.ya7{bottom:585.979657pt;}
.y1f6{bottom:588.019209pt;}
.y198{bottom:589.005237pt;}
.y74{bottom:589.078511pt;}
.y2c0{bottom:589.454770pt;}
.ya8{bottom:591.269200pt;}
.y29d{bottom:592.783760pt;}
.y10d{bottom:593.239151pt;}
.y16d{bottom:595.804832pt;}
.y1de{bottom:596.790940pt;}
.y248{bottom:597.165200pt;}
.y225{bottom:597.165546pt;}
.y1f4{bottom:601.700667pt;}
.ya6{bottom:601.928911pt;}
.y247{bottom:602.456533pt;}
.y2bf{bottom:602.758628pt;}
.y197{bottom:603.594004pt;}
.y1f5{bottom:603.666000pt;}
.y1f3{bottom:603.668626pt;}
.y73{bottom:605.027766pt;}
.y29c{bottom:608.733015pt;}
.y16{bottom:608.956605pt;}
.y10c{bottom:609.188405pt;}
.y16c{bottom:610.394049pt;}
.y1dd{bottom:612.362414pt;}
.y224{bottom:613.114800pt;}
.y245{bottom:613.116674pt;}
.y2be{bottom:616.062486pt;}
.ya5{bottom:617.878166pt;}
.y196{bottom:618.258089pt;}
.y246{bottom:618.406133pt;}
.y1f2{bottom:619.240101pt;}
.y72{bottom:620.977020pt;}
.yd1{bottom:622.186770pt;}
.y29b{bottom:624.682269pt;}
.y15{bottom:624.906569pt;}
.y16b{bottom:625.058299pt;}
.y10b{bottom:625.137659pt;}
.y1dc{bottom:628.009205pt;}
.y2bd{bottom:632.163352pt;}
.y195{bottom:632.846857pt;}
.ya4{bottom:633.752103pt;}
.y1f1{bottom:634.886892pt;}
.y71{bottom:636.850958pt;}
.yd0{bottom:638.136024pt;}
.y16a{bottom:639.647365pt;}
.y29a{bottom:640.631524pt;}
.y14{bottom:640.856533pt;}
.y10a{bottom:641.011597pt;}
.y1db{bottom:643.580680pt;}
.y2bc{bottom:645.467210pt;}
.y26c{bottom:646.147784pt;}
.y194{bottom:647.435625pt;}
.ya3{bottom:649.701358pt;}
.y1f0{bottom:650.458366pt;}
.y70{bottom:652.800212pt;}
.ycf{bottom:654.085279pt;}
.y169{bottom:654.235917pt;}
.y299{bottom:656.580778pt;}
.y109{bottom:656.960851pt;}
.y1da{bottom:659.227471pt;}
.y2bb{bottom:661.568077pt;}
.y193{bottom:662.099710pt;}
.ya2{bottom:665.650612pt;}
.y1ef{bottom:666.105158pt;}
.y6f{bottom:668.749812pt;}
.y26b{bottom:668.900832pt;}
.yce{bottom:670.040533pt;}
.y298{bottom:672.530032pt;}
.y13{bottom:672.681170pt;}
.y108{bottom:672.910106pt;}
.y2ba{bottom:674.796484pt;}
.y1d9{bottom:674.798945pt;}
.y192{bottom:676.688477pt;}
.y168{bottom:676.988965pt;}
.ya1{bottom:681.599867pt;}
.y9f{bottom:681.601249pt;}
.y1ee{bottom:681.676632pt;}
.y26a{bottom:683.489899pt;}
.y6e{bottom:684.699412pt;}
.ycd{bottom:685.989787pt;}
.ya0{bottom:686.891200pt;}
.y297{bottom:688.403970pt;}
.y12{bottom:688.630424pt;}
.y107{bottom:688.859360pt;}
.y1d8{bottom:690.445737pt;}
.y2b9{bottom:690.972801pt;}
.y167{bottom:691.578315pt;}
.y1ed{bottom:697.323423pt;}
.y9e{bottom:697.550503pt;}
.y269{bottom:698.079115pt;}
.y191{bottom:699.441360pt;}
.y6d{bottom:700.653872pt;}
.ycc{bottom:701.939042pt;}
.y2b8{bottom:704.201208pt;}
.y296{bottom:704.353224pt;}
.y11{bottom:704.579679pt;}
.y106{bottom:704.808615pt;}
.y1d7{bottom:706.017211pt;}
.y166{bottom:706.242565pt;}
.y266{bottom:712.742701pt;}
.y268{bottom:712.743200pt;}
.y1ec{bottom:712.894898pt;}
.y9d{bottom:713.499758pt;}
.y190{bottom:714.030128pt;}
.y6c{bottom:716.603126pt;}
.ycb{bottom:717.888296pt;}
.y267{bottom:718.034533pt;}
.y295{bottom:720.302479pt;}
.y2b7{bottom:720.377526pt;}
.y10{bottom:720.528933pt;}
.ye{bottom:720.529279pt;}
.y105{bottom:720.757869pt;}
.y165{bottom:720.831499pt;}
.y1d6{bottom:721.664002pt;}
.yf{bottom:725.820267pt;}
.y1eb{bottom:728.541689pt;}
.y18f{bottom:728.618896pt;}
.y9c{bottom:729.449012pt;}
.y6b{bottom:732.552381pt;}
.y2b6{bottom:733.605933pt;}
.yca{bottom:733.762234pt;}
.y164{bottom:735.420267pt;}
.y163{bottom:735.420849pt;}
.y294{bottom:736.251733pt;}
.y292{bottom:736.252212pt;}
.yd{bottom:736.480803pt;}
.y104{bottom:736.707124pt;}
.y1d5{bottom:737.235476pt;}
.y293{bottom:741.543067pt;}
.y18e{bottom:743.282981pt;}
.y1ea{bottom:744.113163pt;}
.y9b{bottom:745.398267pt;}
.y1b3{bottom:749.707970pt;}
.y1c0{bottom:749.708032pt;}
.yc9{bottom:749.711488pt;}
.y2b5{bottom:749.782251pt;}
.y162{bottom:750.084434pt;}
.y265{bottom:750.085099pt;}
.y291{bottom:752.202503pt;}
.yc{bottom:752.430057pt;}
.y103{bottom:752.656378pt;}
.y1d4{bottom:752.882268pt;}
.y18d{bottom:757.871749pt;}
.y2b4{bottom:763.010657pt;}
.y264{bottom:764.674032pt;}
.y6a{bottom:765.055816pt;}
.y1bf{bottom:765.581970pt;}
.y1b2{bottom:765.657224pt;}
.yc8{bottom:765.660743pt;}
.y290{bottom:768.151758pt;}
.yb{bottom:768.379311pt;}
.y1d3{bottom:768.453742pt;}
.y102{bottom:768.530316pt;}
.y9a{bottom:770.343067pt;}
.y18c{bottom:772.460517pt;}
.y161{bottom:772.762449pt;}
.y1e9{bottom:776.163600pt;}
.y2b3{bottom:779.186975pt;}
.y261{bottom:779.262717pt;}
.y263{bottom:779.262800pt;}
.y69{bottom:781.005071pt;}
.y1be{bottom:781.531224pt;}
.y1b1{bottom:781.606479pt;}
.yc7{bottom:781.609997pt;}
.y1d1{bottom:782.059600pt;}
.y1d0{bottom:784.100464pt;}
.y1d2{bottom:784.100533pt;}
.y28f{bottom:784.101012pt;}
.ya{bottom:784.253249pt;}
.y101{bottom:784.479570pt;}
.y262{bottom:784.629733pt;}
.y28{bottom:786.670283pt;}
.y18b{bottom:787.049284pt;}
.y160{bottom:787.426832pt;}
.y2b2{bottom:792.415382pt;}
.y1e8{bottom:792.491067pt;}
.y1af{bottom:795.590267pt;}
.y68{bottom:796.954325pt;}
.y1bd{bottom:797.480479pt;}
.y1b0{bottom:797.555733pt;}
.y1ae{bottom:797.556424pt;}
.yc6{bottom:797.559251pt;}
.y28e{bottom:800.050267pt;}
.y9{bottom:800.202503pt;}
.y100{bottom:800.428824pt;}
.y27{bottom:800.805954pt;}
.y18a{bottom:801.713369pt;}
.y15f{bottom:802.015765pt;}
.y1ce{bottom:807.760400pt;}
.y2b1{bottom:808.591700pt;}
.y1cf{bottom:809.801467pt;}
.y1cd{bottom:809.801875pt;}
.y67{bottom:812.828263pt;}
.y1bc{bottom:813.429733pt;}
.y1ad{bottom:813.505679pt;}
.yc5{bottom:813.508506pt;}
.y99{bottom:813.512424pt;}
.y26{bottom:815.016941pt;}
.y1e7{bottom:815.546265pt;}
.y8{bottom:816.151758pt;}
.y189{bottom:816.302137pt;}
.yff{bottom:816.378079pt;}
.y15e{bottom:816.603786pt;}
.y2b0{bottom:821.820106pt;}
.y28d{bottom:825.221867pt;}
.y1cc{bottom:825.675812pt;}
.y1ab{bottom:827.414000pt;}
.y66{bottom:828.777517pt;}
.y25{bottom:829.152612pt;}
.y1ac{bottom:829.454933pt;}
.y17f{bottom:829.455341pt;}
.yc4{bottom:829.457760pt;}
.y98{bottom:829.461679pt;}
.y15d{bottom:831.269067pt;}
.y15c{bottom:831.269365pt;}
.y7{bottom:832.101012pt;}
.yfe{bottom:832.327333pt;}
.y2af{bottom:837.996424pt;}
.y1bb{bottom:838.374947pt;}
.y188{bottom:839.432800pt;}
.y1ca{bottom:839.659733pt;}
.y1c9{bottom:841.624609pt;}
.y1cb{bottom:841.625067pt;}
.y24{bottom:843.363600pt;}
.y65{bottom:844.726771pt;}
.y17e{bottom:845.404596pt;}
.yc3{bottom:845.407015pt;}
.y97{bottom:845.410933pt;}
.y25e{bottom:845.857917pt;}
.y260{bottom:845.858133pt;}
.y15b{bottom:845.858299pt;}
.y1e5{bottom:847.898303pt;}
.y6{bottom:848.050267pt;}
.y23{bottom:848.654933pt;}
.y25f{bottom:851.149467pt;}
.y187{bottom:852.056533pt;}
.y1ba{bottom:852.585600pt;}
.y186{bottom:854.021867pt;}
.y184{bottom:854.022398pt;}
.y2ae{bottom:854.097291pt;}
.y1e6{bottom:856.062800pt;}
.yfd{bottom:857.272796pt;}
.y22{bottom:857.498550pt;}
.y1c8{bottom:857.573864pt;}
.y185{bottom:859.313200pt;}
.y15a{bottom:860.446984pt;}
.y64{bottom:860.676026pt;}
.y17d{bottom:861.278533pt;}
.y28c{bottom:861.278879pt;}
.yc2{bottom:861.280952pt;}
.y96{bottom:861.284870pt;}
.y1e4{bottom:864.226533pt;}
.y2ac{bottom:867.325697pt;}
.y2ad{bottom:867.552051pt;}
.y25d{bottom:868.611099pt;}
.yfc{bottom:871.407733pt;}
.y21{bottom:871.709537pt;}
.y63{bottom:876.625280pt;}
.y183{bottom:876.775281pt;}
.y17c{bottom:877.228133pt;}
.y28b{bottom:877.229516pt;}
.yc1{bottom:877.230207pt;}
.y95{bottom:877.234125pt;}
.y5{bottom:878.287315pt;}
.y17b{bottom:882.595067pt;}
.y159{bottom:883.200032pt;}
.y2ab{bottom:883.502015pt;}
.y20{bottom:885.845208pt;}
.y1e3{bottom:890.230146pt;}
.y182{bottom:891.364049pt;}
.y62{bottom:892.574535pt;}
.y28a{bottom:893.178770pt;}
.yc0{bottom:893.179461pt;}
.y1b9{bottom:893.181921pt;}
.y94{bottom:893.183379pt;}
.y1c6{bottom:893.706933pt;}
.y158{bottom:897.789249pt;}
.y2aa{bottom:899.602882pt;}
.y1f{bottom:900.056196pt;}
.y4{bottom:900.964253pt;}
.yfb{bottom:901.946267pt;}
.y1c5{bottom:901.947307pt;}
.y181{bottom:906.028133pt;}
.y61{bottom:908.523789pt;}
.y289{bottom:909.128024pt;}
.ybf{bottom:909.128716pt;}
.y1b8{bottom:909.131175pt;}
.y93{bottom:909.132634pt;}
.y157{bottom:912.453333pt;}
.y25b{bottom:912.453337pt;}
.y1e{bottom:914.191867pt;}
.y2a9{bottom:915.703749pt;}
.y1e2{bottom:916.006465pt;}
.y25c{bottom:917.744667pt;}
.y1c7{bottom:918.802933pt;}
.y1d{bottom:919.559363pt;}
.y3{bottom:923.641191pt;}
.y288{bottom:925.077279pt;}
.ybe{bottom:925.077970pt;}
.y1b7{bottom:925.080429pt;}
.y92{bottom:925.081888pt;}
.y2a8{bottom:931.804615pt;}
.y156{bottom:933.543067pt;}
.y155{bottom:935.584000pt;}
.y153{bottom:935.584083pt;}
.y154{bottom:940.875333pt;}
.y287{bottom:941.026533pt;}
.y179{bottom:941.026879pt;}
.y60{bottom:941.027224pt;}
.y1b6{bottom:941.029684pt;}
.y91{bottom:941.031143pt;}
.yfa{bottom:941.031896pt;}
.y1e1{bottom:941.707468pt;}
.y1b{bottom:942.538400pt;}
.y286{bottom:946.317867pt;}
.y2{bottom:946.318129pt;}
.y1c{bottom:947.905333pt;}
.y2a7{bottom:947.980933pt;}
.y152{bottom:950.172850pt;}
.y19{bottom:956.749333pt;}
.y178{bottom:956.976133pt;}
.y5f{bottom:956.976479pt;}
.y1b5{bottom:956.978938pt;}
.y90{bottom:956.980397pt;}
.yf9{bottom:956.981151pt;}
.y1e0{bottom:957.278942pt;}
.y259{bottom:958.261200pt;}
.y1a{bottom:962.040667pt;}
.y177{bottom:962.267467pt;}
.y25a{bottom:963.628133pt;}
.y1{bottom:968.995067pt;}
.y17{bottom:970.884800pt;}
.y2a6{bottom:971.111600pt;}
.y5e{bottom:972.925733pt;}
.y17a{bottom:972.926583pt;}
.y1b4{bottom:972.928193pt;}
.y8f{bottom:972.929652pt;}
.yf8{bottom:972.930405pt;}
.y1df{bottom:972.930811pt;}
.y18{bottom:976.251733pt;}
.y285{bottom:978.217067pt;}
.y5c{bottom:1001.272267pt;}
.y180{bottom:1001.273560pt;}
.y1c1{bottom:1001.273718pt;}
.y1fa{bottom:1001.274780pt;}
.y129{bottom:1001.275140pt;}
.y258{bottom:1001.275214pt;}
.yba{bottom:1001.275530pt;}
.y151{bottom:1001.275902pt;}
.hc{height:1.912811pt;}
.h19{height:22.618986pt;}
.h6{height:23.907200pt;}
.h3{height:24.704107pt;}
.h4{height:32.943493pt;}
.h9{height:35.243537pt;}
.h1a{height:35.434818pt;}
.h5{height:35.865200pt;}
.h1f{height:35.867720pt;}
.h16{height:35.868254pt;}
.h2{height:37.060707pt;}
.he{height:37.061038pt;}
.h11{height:37.061572pt;}
.h14{height:37.062499pt;}
.h10{height:37.062704pt;}
.hf{height:37.063694pt;}
.h8{height:39.850400pt;}
.h23{height:42.506906pt;}
.h29{height:42.507472pt;}
.h13{height:42.520882pt;}
.h7{height:43.836000pt;}
.h1b{height:44.470272pt;}
.h1d{height:44.470806pt;}
.h1e{height:44.471405pt;}
.h1c{height:44.471938pt;}
.h28{height:44.472600pt;}
.h27{height:44.475588pt;}
.h12{height:53.730635pt;}
.hd{height:54.033460pt;}
.h1{height:55.790400pt;}
.ha{height:67.900836pt;}
.h15{height:68.213572pt;}
.h20{height:69.413240pt;}
.hb{height:69.715640pt;}
.h17{height:69.720220pt;}
.h18{height:70.018040pt;}
.h26{height:70.018434pt;}
.h22{height:70.020955pt;}
.h24{height:75.829950pt;}
.h21{height:102.373627pt;}
.h25{height:108.789093pt;}
.h0{height:1058.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:56.692933pt;}
.x3a{left:59.263273pt;}
.x8{left:61.681867pt;}
.xe{left:65.310267pt;}
.x7c{left:68.635965pt;}
.x7b{left:69.921200pt;}
.xf{left:72.793600pt;}
.x42{left:74.456667pt;}
.xb6{left:76.497600pt;}
.x44{left:80.352140pt;}
.x1f{left:81.864187pt;}
.x54{left:84.283467pt;}
.x43{left:86.928622pt;}
.x1a{left:88.818933pt;}
.x56{left:91.010933pt;}
.x1b{left:93.732267pt;}
.x59{left:95.319600pt;}
.x17{left:96.680267pt;}
.x20{left:102.349600pt;}
.x1e{left:103.634667pt;}
.x18{left:105.902400pt;}
.x39{left:108.094938pt;}
.x1c{left:109.455067pt;}
.x21{left:111.798400pt;}
.x10{left:116.182667pt;}
.x1d{left:118.072400pt;}
.x11{left:124.195200pt;}
.x19{left:133.341733pt;}
.x12{left:137.121200pt;}
.xb7{left:138.406267pt;}
.x88{left:140.976267pt;}
.x7{left:142.941733pt;}
.x57{left:145.284933pt;}
.x58{left:150.274000pt;}
.xb3{left:153.826667pt;}
.x89{left:157.303867pt;}
.x3b{left:159.798400pt;}
.x13{left:161.990533pt;}
.x3c{left:164.711733pt;}
.xb4{left:165.996800pt;}
.x14{left:166.979467pt;}
.x85{left:168.491333pt;}
.x6{left:170.381067pt;}
.x7d{left:181.417200pt;}
.x15{left:182.551067pt;}
.x5{left:185.196800pt;}
.x16{left:187.464533pt;}
.x7e{left:191.395200pt;}
.x86{left:192.831000pt;}
.x30{left:203.186350pt;}
.x8a{left:208.478667pt;}
.x31{left:209.839345pt;}
.x8b{left:216.415733pt;}
.x3d{left:219.212533pt;}
.x5e{left:227.149600pt;}
.x24{left:229.039333pt;}
.x68{left:229.946400pt;}
.x5f{left:231.609333pt;}
.xb5{left:232.894400pt;}
.x96{left:233.877067pt;}
.x87{left:235.237733pt;}
.x25{left:237.656667pt;}
.x1{left:245.669200pt;}
.x5a{left:246.803067pt;}
.x5b{left:253.152667pt;}
.x8c{left:255.042400pt;}
.x8d{left:265.247200pt;}
.x8e{left:269.782533pt;}
.x4e{left:275.981067pt;}
.x4f{left:277.946400pt;}
.x3e{left:279.307067pt;}
.x3f{left:282.708533pt;}
.x5c{left:283.615600pt;}
.x32{left:286.638693pt;}
.x50{left:287.924400pt;}
.x5d{left:291.930667pt;}
.x51{left:292.913333pt;}
.x69{left:299.943200pt;}
.x97{left:303.874000pt;}
.x35{left:317.782533pt;}
.x36{left:322.771600pt;}
.x22{left:324.510133pt;}
.x6a{left:326.702267pt;}
.x23{left:330.179467pt;}
.x40{left:336.302267pt;}
.x45{left:342.122667pt;}
.x52{left:343.936933pt;}
.x41{left:344.919600pt;}
.x46{left:347.111733pt;}
.x53{left:350.437733pt;}
.x95{left:372.132267pt;}
.x6b{left:380.522800pt;}
.x98{left:384.453467pt;}
.x6c{left:387.099067pt;}
.x9{left:396.850445pt;}
.xb8{left:402.670800pt;}
.x80{left:404.409333pt;}
.x62{left:407.206133pt;}
.x37{left:410.078667pt;}
.x81{left:412.951067pt;}
.xb2{left:414.009374pt;}
.x38{left:414.992000pt;}
.xb9{left:420.354017pt;}
.x26{left:422.626834pt;}
.x7f{left:426.330667pt;}
.x4c{left:431.168400pt;}
.x63{left:433.889600pt;}
.x4d{left:436.157333pt;}
.x94{left:438.122667pt;}
.x6d{left:439.105333pt;}
.x82{left:440.466000pt;}
.x64{left:446.437269pt;}
.x8f{left:449.234533pt;}
.x9e{left:452.560877pt;}
.x6e{left:453.467600pt;}
.xab{left:455.584133pt;}
.x99{left:457.171600pt;}
.x90{left:458.380933pt;}
.x83{left:459.666000pt;}
.x6f{left:468.056533pt;}
.x60{left:470.173067pt;}
.x84{left:473.196800pt;}
.x61{left:474.632933pt;}
.xac{left:477.656533pt;}
.xa4{left:481.587333pt;}
.x66{left:485.518000pt;}
.x65{left:486.500667pt;}
.x67{left:487.483333pt;}
.x27{left:496.251867pt;}
.x28{left:501.165200pt;}
.xad{left:507.136933pt;}
.x9f{left:509.858133pt;}
.x55{left:514.242400pt;}
.xa5{left:515.829733pt;}
.xae{left:517.341600pt;}
.xa{left:518.399867pt;}
.xb1{left:520.289600pt;}
.xa6{left:524.749467pt;}
.x70{left:530.947867pt;}
.xc{left:532.232933pt;}
.xb{left:536.541600pt;}
.x71{left:537.826667pt;}
.x91{left:541.001467pt;}
.x72{left:545.310133pt;}
.x29{left:547.653467pt;}
.x92{left:549.240800pt;}
.x73{left:559.899067pt;}
.x33{left:562.469200pt;}
.x34{left:567.382533pt;}
.x2{left:568.894400pt;}
.xaf{left:570.632933pt;}
.x3{left:573.883333pt;}
.xa0{left:576.075467pt;}
.x47{left:578.040800pt;}
.xa7{left:580.081733pt;}
.x2a{left:581.593467pt;}
.xa8{left:587.262800pt;}
.x2b{left:590.210800pt;}
.xa9{left:596.182533pt;}
.x74{left:606.387200pt;}
.x75{left:610.393600pt;}
.xa1{left:612.585733pt;}
.x9a{left:614.324267pt;}
.xa2{left:616.138400pt;}
.x76{left:618.330533pt;}
.x9b{left:622.336800pt;}
.x48{left:627.703733pt;}
.x49{left:632.617200pt;}
.x2c{left:634.582533pt;}
.x2d{left:639.495867pt;}
.xa3{left:652.270667pt;}
.x77{left:663.080133pt;}
.x78{left:667.086400pt;}
.x9c{left:671.017067pt;}
.x79{left:675.023467pt;}
.x2e{left:676.459600pt;}
.x9d{left:679.029733pt;}
.xb0{left:680.995067pt;}
.x4a{left:682.280133pt;}
.x2f{left:685.076933pt;}
.x4b{left:687.269067pt;}
.xaa{left:688.402933pt;}
.x7a{left:689.612533pt;}
.x93{left:694.223467pt;}
.xd{left:766.261200pt;}
}




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