
    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_b6788019cca0912bd94b256c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.157000;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_1dd8a50aa278c5cf2bdf9fc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923000;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_7f7f6159362727fd3ad0a60e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.438000;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_93fa18713017c366bc6f147b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.965000;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_09e58ec90e5c4f17531d7a44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_e97dd97e077b45f45bb1016e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f125824985331c27056f145a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.720000;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_e097b015b1916bbe8c7e5b88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970000;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_0f9aaf9b8e5c2a820d4f2f9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_13e93b74454274fee28b92d1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1397d95261bbd233ff01f1e3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a96757f3d030aeef5aefa958.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e6dd3023879e466e28c1906b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f5c6002ab9af8ae257edbf30.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.107910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b30bdab26e4e2b338606c796.woff2')format("woff");}.fff{font-family:fff;line-height:0.965000;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:ff10;src:url('chunks/assets/font_fabc28e1f32a1b34962fff2a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.314000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m9{transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281282,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.375044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375044,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.375059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375059,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.466200px;}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-0.162870px;}
.ls1d{letter-spacing:-0.095760px;}
.lsb{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.034427px;}
.lsc{letter-spacing:0.038257px;}
.ls2c{letter-spacing:0.051646px;}
.ls22{letter-spacing:0.057385px;}
.ls5{letter-spacing:0.060254px;}
.ls2b{letter-spacing:0.081773px;}
.ls28{letter-spacing:0.095642px;}
.ls34{letter-spacing:0.105207px;}
.ls3a{letter-spacing:0.126245px;}
.ls1e{letter-spacing:0.138681px;}
.ls15{letter-spacing:0.143464px;}
.ls1f{letter-spacing:0.157810px;}
.ls33{letter-spacing:0.159243px;}
.ls7{letter-spacing:0.162592px;}
.ls32{letter-spacing:0.163547px;}
.ls39{letter-spacing:0.164501px;}
.ls12{letter-spacing:0.172131px;}
.ls35{letter-spacing:0.185066px;}
.ls10{letter-spacing:0.205631px;}
.ls6{letter-spacing:0.215193px;}
.lsf{letter-spacing:0.219978px;}
.ls14{letter-spacing:0.229542px;}
.ls1a{letter-spacing:0.234324px;}
.ls8{letter-spacing:0.243888px;}
.ls30{letter-spacing:0.249624px;}
.ls9{letter-spacing:0.258234px;}
.ls38{letter-spacing:0.260141px;}
.ls37{letter-spacing:0.267792px;}
.ls2{letter-spacing:0.316782px;}
.ls36{letter-spacing:0.334748px;}
.ls1{letter-spacing:2.367149px;}
.ls0{letter-spacing:2.386278px;}
.ls2f{letter-spacing:8.465693px;}
.ls2a{letter-spacing:9.344262px;}
.ls13{letter-spacing:9.459033px;}
.ls11{letter-spacing:9.487248px;}
.lse{letter-spacing:9.521201px;}
.ls26{letter-spacing:10.278695px;}
.ls19{letter-spacing:12.050942px;}
.ls17{letter-spacing:12.189624px;}
.ls18{letter-spacing:12.404819px;}
.ls2e{letter-spacing:14.116818px;}
.lsa{letter-spacing:14.469577px;}
.ls23{letter-spacing:15.910113px;}
.ls29{letter-spacing:16.436146px;}
.ls4{letter-spacing:16.770594px;}
.ls3{letter-spacing:16.774360px;}
.ls1b{letter-spacing:16.837845px;}
.ls27{letter-spacing:17.181936px;}
.ls1c{letter-spacing:18.923327px;}
.lsd{letter-spacing:21.012635px;}
.ls20{letter-spacing:104.847624px;}
.ls24{letter-spacing:217.959336px;}
.ls25{letter-spacing:251.595036px;}
.ls21{letter-spacing:317.895948px;}
.ls16{letter-spacing:1408.007760px;}
.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;}
}
.ws123{word-spacing:-280.562436px;}
.ws122{word-spacing:-246.926736px;}
.ws121{word-spacing:-229.073508px;}
.ws89{word-spacing:-18.971148px;}
.ws74{word-spacing:-16.885666px;}
.ws13{word-spacing:-16.812437px;}
.ws157{word-spacing:-14.164639px;}
.ws1bb{word-spacing:-13.101416px;}
.ws9a{word-spacing:-9.535069px;}
.wsb3{word-spacing:-9.506855px;}
.ws125{word-spacing:-7.402428px;}
.wsd{word-spacing:-2.878366px;}
.ws3{word-spacing:-2.414971px;}
.ws30{word-spacing:-0.047821px;}
.ws17{word-spacing:-0.043039px;}
.ws286{word-spacing:-0.038256px;}
.wsa2{word-spacing:-0.031876px;}
.ws255{word-spacing:-0.025500px;}
.ws5f{word-spacing:0.000000px;}
.ws150{word-spacing:8.388223px;}
.ws1db{word-spacing:8.396831px;}
.ws1dd{word-spacing:8.426958px;}
.ws1e7{word-spacing:8.439869px;}
.ws251{word-spacing:8.655062px;}
.ws253{word-spacing:8.689493px;}
.ws22{word-spacing:8.728228px;}
.ws2d3{word-spacing:8.772101px;}
.ws2b2{word-spacing:8.898346px;}
.wsaf{word-spacing:9.248620px;}
.ws12e{word-spacing:9.277313px;}
.ws12b{word-spacing:9.372955px;}
.ws1c2{word-spacing:9.377737px;}
.wsc7{word-spacing:9.392084px;}
.ws2a8{word-spacing:9.395674px;}
.ws12c{word-spacing:9.396866px;}
.wsb2{word-spacing:9.420776px;}
.ws184{word-spacing:9.449469px;}
.ws105{word-spacing:9.459033px;}
.wsf2{word-spacing:9.463815px;}
.wsfc{word-spacing:9.468598px;}
.wsbc{word-spacing:9.473380px;}
.ws195{word-spacing:9.478162px;}
.wsf3{word-spacing:9.487726px;}
.ws73{word-spacing:9.502072px;}
.ws294{word-spacing:9.506616px;}
.ws1f6{word-spacing:9.506855px;}
.wsec{word-spacing:9.569022px;}
.wsb0{word-spacing:9.588151px;}
.ws1a8{word-spacing:9.679011px;}
.ws2b9{word-spacing:9.724675px;}
.wsab{word-spacing:9.726832px;}
.ws99{word-spacing:9.731614px;}
.ws11a{word-spacing:9.745961px;}
.ws10b{word-spacing:9.798564px;}
.ws97{word-spacing:9.803346px;}
.ws93{word-spacing:9.808128px;}
.ws192{word-spacing:9.812910px;}
.ws29a{word-spacing:10.241131px;}
.ws2b4{word-spacing:10.256434px;}
.ws14b{word-spacing:10.320656px;}
.ws14c{word-spacing:10.342176px;}
.ws14d{word-spacing:10.367999px;}
.ws1b1{word-spacing:10.518634px;}
.ws1b0{word-spacing:10.600407px;}
.ws2b8{word-spacing:10.707854px;}
.ws293{word-spacing:10.933565px;}
.ws176{word-spacing:11.032351px;}
.ws202{word-spacing:11.094518px;}
.ws100{word-spacing:11.118429px;}
.ws270{word-spacing:11.185732px;}
.ws1e{word-spacing:11.198644px;}
.ws1f{word-spacing:11.215859px;}
.ws124{word-spacing:11.225509px;}
.ws1a4{word-spacing:11.247546px;}
.ws2da{word-spacing:11.251090px;}
.ws2c7{word-spacing:11.277869px;}
.ws23f{word-spacing:11.281021px;}
.ws23e{word-spacing:11.309714px;}
.ws27d{word-spacing:11.328842px;}
.ws17d{word-spacing:11.338407px;}
.ws24{word-spacing:11.344975px;}
.ws22f{word-spacing:11.391010px;}
.ws24a{word-spacing:11.395792px;}
.wsc8{word-spacing:11.434049px;}
.ws28b{word-spacing:11.492102px;}
.ws1ed{word-spacing:11.544038px;}
.ws13b{word-spacing:11.567948px;}
.ws28c{word-spacing:11.568614px;}
.ws1c3{word-spacing:11.587077px;}
.ws24b{word-spacing:11.606205px;}
.ws21c{word-spacing:11.610987px;}
.ws187{word-spacing:11.630116px;}
.ws263{word-spacing:11.639680px;}
.wscb{word-spacing:11.711412px;}
.ws2b0{word-spacing:11.717813px;}
.ws15d{word-spacing:11.797490px;}
.ws21b{word-spacing:11.802272px;}
.ws24c{word-spacing:11.811836px;}
.ws3c{word-spacing:11.816619px;}
.ws92{word-spacing:11.830965px;}
.ws21a{word-spacing:11.845311px;}
.ws1b7{word-spacing:11.883568px;}
.ws21{word-spacing:11.900173px;}
.ws23{word-spacing:11.913084px;}
.ws13e{word-spacing:11.926607px;}
.wsca{word-spacing:11.936172px;}
.ws2a6{word-spacing:11.939698px;}
.ws2a5{word-spacing:11.970302px;}
.ws1b6{word-spacing:12.007903px;}
.ws1d0{word-spacing:12.017468px;}
.wsd3{word-spacing:12.055725px;}
.ws127{word-spacing:12.070071px;}
.wsb8{word-spacing:12.074853px;}
.ws2b7{word-spacing:12.100373px;}
.wsd4{word-spacing:12.113110px;}
.ws144{word-spacing:12.136885px;}
.ws126{word-spacing:12.137021px;}
.ws233{word-spacing:12.141803px;}
.ws104{word-spacing:12.151367px;}
.ws1b{word-spacing:12.162708px;}
.wsf4{word-spacing:12.165713px;}
.ws2b6{word-spacing:12.184536px;}
.ws2a4{word-spacing:12.199838px;}
.ws1c{word-spacing:12.218659px;}
.ws2af{word-spacing:12.257222px;}
.ws295{word-spacing:12.299304px;}
.wsb1{word-spacing:12.323523px;}
.ws1df{word-spacing:12.347774px;}
.wsd2{word-spacing:12.361780px;}
.ws271{word-spacing:12.369294px;}
.ws2cb{word-spacing:12.375816px;}
.ws1d6{word-spacing:12.385691px;}
.ws273{word-spacing:12.386509px;}
.ws15c{word-spacing:12.390473px;}
.ws145{word-spacing:12.399421px;}
.ws1d7{word-spacing:12.400037px;}
.ws2ca{word-spacing:12.414072px;}
.ws272{word-spacing:12.425244px;}
.ws17c{word-spacing:12.428730px;}
.ws14a{word-spacing:12.429548px;}
.ws2ae{word-spacing:12.463805px;}
.ws232{word-spacing:12.476551px;}
.ws289{word-spacing:12.479107px;}
.ws3b{word-spacing:12.481333px;}
.ws2c8{word-spacing:12.482933px;}
.ws196{word-spacing:12.490897px;}
.ws2cc{word-spacing:12.494410px;}
.ws19d{word-spacing:12.495680px;}
.ws28e{word-spacing:12.505886px;}
.ws288{word-spacing:12.513538px;}
.ws29f{word-spacing:12.517363px;}
.ws2d5{word-spacing:12.521189px;}
.ws26b{word-spacing:12.524372px;}
.ws2b1{word-spacing:12.525014px;}
.ws28a{word-spacing:12.532666px;}
.ws94{word-spacing:12.533937px;}
.ws296{word-spacing:12.536491px;}
.ws180{word-spacing:12.538719px;}
.ws2b3{word-spacing:12.544142px;}
.ws1f5{word-spacing:12.548283px;}
.ws2c9{word-spacing:12.555619px;}
.ws290{word-spacing:12.559445px;}
.ws2bc{word-spacing:12.567096px;}
.ws256{word-spacing:12.570922px;}
.ws291{word-spacing:12.578573px;}
.wsb{word-spacing:12.582398px;}
.ws2be{word-spacing:12.590050px;}
.ws2a0{word-spacing:12.597701px;}
.ws2a1{word-spacing:12.601526px;}
.ws2c2{word-spacing:12.609178px;}
.ws2d2{word-spacing:12.613003px;}
.ws10{word-spacing:12.616829px;}
.ws2c1{word-spacing:12.620654px;}
.ws26c{word-spacing:12.624797px;}
.ws2dc{word-spacing:12.628306px;}
.ws284{word-spacing:12.632131px;}
.ws18c{word-spacing:12.634361px;}
.wsa{word-spacing:12.639782px;}
.ws2a3{word-spacing:12.643608px;}
.ws2a2{word-spacing:12.655085px;}
.wse9{word-spacing:12.662736px;}
.ws2c5{word-spacing:12.666562px;}
.ws29e{word-spacing:12.674213px;}
.ws2c6{word-spacing:12.678038px;}
.ws2ad{word-spacing:12.681864px;}
.ws2a7{word-spacing:12.689515px;}
.ws55{word-spacing:12.691746px;}
.ws28d{word-spacing:12.700992px;}
.ws292{word-spacing:12.704818px;}
.ws2db{word-spacing:12.708643px;}
.ws257{word-spacing:12.716294px;}
.ws298{word-spacing:12.720120px;}
.ws2d4{word-spacing:12.727771px;}
.ws2ce{word-spacing:12.731597px;}
.ws26d{word-spacing:12.734786px;}
.ws2ba{word-spacing:12.739248px;}
.wsb9{word-spacing:12.739568px;}
.ws29b{word-spacing:12.746899px;}
.ws299{word-spacing:12.750725px;}
.ws11{word-spacing:12.754550px;}
.ws258{word-spacing:12.758376px;}
.wsf{word-spacing:12.762202px;}
.ws2c0{word-spacing:12.773678px;}
.ws2d7{word-spacing:12.785155px;}
.ws56{word-spacing:12.792171px;}
.ws7d{word-spacing:12.796953px;}
.wsb5{word-spacing:12.801735px;}
.ws254{word-spacing:12.804283px;}
.ws287{word-spacing:12.819586px;}
.ws2d0{word-spacing:12.823411px;}
.ws18b{word-spacing:12.830428px;}
.ws285{word-spacing:12.834888px;}
.ws2bf{word-spacing:12.842539px;}
.ws297{word-spacing:12.854016px;}
.ws2cf{word-spacing:12.857842px;}
.ws248{word-spacing:12.863903px;}
.wsc{word-spacing:12.876970px;}
.ws2aa{word-spacing:12.877077px;}
.ws2ac{word-spacing:12.892272px;}
.ws2d1{word-spacing:12.903749px;}
.ws12{word-spacing:12.907574px;}
.ws2c4{word-spacing:12.911400px;}
.ws2ab{word-spacing:12.934354px;}
.ws2cd{word-spacing:12.938179px;}
.ws2c3{word-spacing:12.942037px;}
.ws114{word-spacing:12.949981px;}
.ws28f{word-spacing:12.953482px;}
.ws29d{word-spacing:12.964958px;}
.ws1c5{word-spacing:12.969109px;}
.ws23d{word-spacing:12.978674px;}
.ws2a9{word-spacing:12.980261px;}
.wse{word-spacing:13.003214px;}
.ws2d9{word-spacing:13.029994px;}
.ws2d6{word-spacing:13.041470px;}
.ws2bd{word-spacing:13.049122px;}
.ws2bb{word-spacing:13.052947px;}
.ws1a{word-spacing:13.083734px;}
.ws10c{word-spacing:13.136484px;}
.wsb4{word-spacing:13.141266px;}
.ws1a5{word-spacing:13.160394px;}
.ws2b5{word-spacing:13.175366px;}
.ws221{word-spacing:13.208215px;}
.ws25b{word-spacing:13.217780px;}
.ws115{word-spacing:13.236908px;}
.ws19{word-spacing:13.238673px;}
.wscd{word-spacing:13.246472px;}
.ws21d{word-spacing:13.251255px;}
.ws14f{word-spacing:13.260193px;}
.wscc{word-spacing:13.289511px;}
.ws109{word-spacing:13.322986px;}
.ws8f{word-spacing:13.346897px;}
.ws49{word-spacing:13.370808px;}
.ws238{word-spacing:13.409064px;}
.ws1c9{word-spacing:13.418629px;}
.ws6c{word-spacing:13.476014px;}
.ws152{word-spacing:13.479690px;}
.ws16b{word-spacing:13.499925px;}
.ws9e{word-spacing:13.509489px;}
.ws48{word-spacing:13.514271px;}
.ws2{word-spacing:13.519053px;}
.ws112{word-spacing:13.557310px;}
.ws1ba{word-spacing:13.710338px;}
.ws1d2{word-spacing:13.758159px;}
.ws154{word-spacing:13.791634px;}
.ws1d1{word-spacing:13.815545px;}
.ws260{word-spacing:13.834673px;}
.ws91{word-spacing:13.839455px;}
.ws250{word-spacing:13.867037px;}
.ws155{word-spacing:13.887276px;}
.ws214{word-spacing:13.901623px;}
.ws90{word-spacing:13.911187px;}
.ws20{word-spacing:13.918683px;}
.wsa5{word-spacing:13.935098px;}
.ws20b{word-spacing:14.049869px;}
.wsea{word-spacing:14.078561px;}
.ws22d{word-spacing:14.088126px;}
.ws1a1{word-spacing:14.102472px;}
.ws22e{word-spacing:14.112036px;}
.ws24f{word-spacing:14.116661px;}
.ws268{word-spacing:14.131165px;}
.ws2a{word-spacing:14.133876px;}
.ws1f9{word-spacing:14.150293px;}
.ws12a{word-spacing:14.155075px;}
.ws1a9{word-spacing:14.159699px;}
.ws1d5{word-spacing:14.178986px;}
.ws216{word-spacing:14.188550px;}
.ws5c{word-spacing:14.202738px;}
.ws266{word-spacing:14.212461px;}
.ws267{word-spacing:14.226807px;}
.ws2b{word-spacing:14.228561px;}
.ws1b9{word-spacing:14.231589px;}
.ws158{word-spacing:14.241153px;}
.ws243{word-spacing:14.255500px;}
.ws23c{word-spacing:14.265064px;}
.ws139{word-spacing:14.279410px;}
.ws1b2{word-spacing:14.280207px;}
.ws5d{word-spacing:14.284511px;}
.ws6d{word-spacing:14.308103px;}
.ws5b{word-spacing:14.314638px;}
.ws140{word-spacing:14.389399px;}
.ws24e{word-spacing:14.413627px;}
.ws5e{word-spacing:14.422235px;}
.ws1e9{word-spacing:14.435146px;}
.ws252{word-spacing:14.460970px;}
.ws14{word-spacing:14.491097px;}
.ws1d9{word-spacing:14.495400px;}
.ws13f{word-spacing:14.508952px;}
.ws5a{word-spacing:14.512616px;}
.ws226{word-spacing:14.518516px;}
.ws1aa{word-spacing:14.529831px;}
.ws7f{word-spacing:14.532863px;}
.ws1a3{word-spacing:14.571120px;}
.ws53{word-spacing:14.580684px;}
.ws1e0{word-spacing:14.598693px;}
.ws141{word-spacing:14.599812px;}
.ws128{word-spacing:14.618941px;}
.wsfa{word-spacing:14.638069px;}
.ws6e{word-spacing:14.652416px;}
.ws237{word-spacing:14.671544px;}
.ws188{word-spacing:14.676326px;}
.ws189{word-spacing:14.700237px;}
.ws225{word-spacing:14.728930px;}
.ws54{word-spacing:14.733712px;}
.ws15b{word-spacing:14.762404px;}
.ws1ce{word-spacing:14.781533px;}
.ws15a{word-spacing:14.805444px;}
.ws4b{word-spacing:14.815008px;}
.ws281{word-spacing:14.824572px;}
.ws159{word-spacing:14.829354px;}
.ws13a{word-spacing:14.834136px;}
.ws177{word-spacing:14.862829px;}
.ws276{word-spacing:14.867611px;}
.ws1f3{word-spacing:14.881957px;}
.ws261{word-spacing:14.920214px;}
.ws227{word-spacing:14.929779px;}
.ws1e8{word-spacing:14.947306px;}
.ws4e{word-spacing:14.953689px;}
.ws116{word-spacing:14.958471px;}
.ws1e1{word-spacing:14.968825px;}
.wsa4{word-spacing:14.977600px;}
.ws1cd{word-spacing:14.987164px;}
.ws178{word-spacing:15.006293px;}
.ws280{word-spacing:15.039767px;}
.ws23a{word-spacing:15.063678px;}
.ws259{word-spacing:15.111120px;}
.ws278{word-spacing:15.116281px;}
.ws8b{word-spacing:15.121063px;}
.wsc3{word-spacing:15.125846px;}
.ws275{word-spacing:15.149756px;}
.ws277{word-spacing:15.178449px;}
.ws229{word-spacing:15.202359px;}
.ws153{word-spacing:15.211924px;}
.ws63{word-spacing:15.240616px;}
.ws65{word-spacing:15.283656px;}
.ws27e{word-spacing:15.307566px;}
.ws1dc{word-spacing:15.317438px;}
.ws224{word-spacing:15.326695px;}
.ws82{word-spacing:15.355387px;}
.ws197{word-spacing:15.393644px;}
.ws203{word-spacing:15.412773px;}
.ws1d{word-spacing:15.425034px;}
.ws129{word-spacing:15.431901px;}
.ws204{word-spacing:15.484505px;}
.ws27f{word-spacing:15.489287px;}
.ws64{word-spacing:15.503633px;}
.ws76{word-spacing:15.513197px;}
.ws12f{word-spacing:15.522762px;}
.wsed{word-spacing:15.532326px;}
.ws11d{word-spacing:15.541890px;}
.ws223{word-spacing:15.580147px;}
.ws1bc{word-spacing:15.608840px;}
.ws20e{word-spacing:15.618404px;}
.ws15{word-spacing:15.618708px;}
.ws201{word-spacing:15.623186px;}
.wse6{word-spacing:15.627968px;}
.ws12d{word-spacing:15.694918px;}
.ws22a{word-spacing:15.704482px;}
.ws1ca{word-spacing:15.742739px;}
.ws8c{word-spacing:15.747521px;}
.ws200{word-spacing:15.752303px;}
.ws0{word-spacing:15.766650px;}
.ws1de{word-spacing:15.790862px;}
.wsf8{word-spacing:15.804907px;}
.wsb6{word-spacing:15.814471px;}
.ws13d{word-spacing:15.838381px;}
.ws274{word-spacing:15.843164px;}
.wsd1{word-spacing:15.857510px;}
.ws20d{word-spacing:15.862292px;}
.ws3d{word-spacing:15.881421px;}
.ws130{word-spacing:15.890985px;}
.ws175{word-spacing:15.895767px;}
.ws17b{word-spacing:15.900549px;}
.ws13c{word-spacing:15.905331px;}
.ws8d{word-spacing:15.910113px;}
.ws17e{word-spacing:15.914895px;}
.ws19e{word-spacing:15.919677px;}
.ws10a{word-spacing:15.924460px;}
.ws9b{word-spacing:15.929242px;}
.wsf1{word-spacing:15.934024px;}
.wsa6{word-spacing:15.938806px;}
.wsff{word-spacing:15.953152px;}
.ws60{word-spacing:15.967499px;}
.ws282{word-spacing:15.977063px;}
.ws17f{word-spacing:15.986627px;}
.ws206{word-spacing:15.996191px;}
.wse8{word-spacing:16.005756px;}
.ws68{word-spacing:16.015320px;}
.wsde{word-spacing:16.020102px;}
.ws8e{word-spacing:16.029666px;}
.ws217{word-spacing:16.058359px;}
.ws1c7{word-spacing:16.063141px;}
.ws67{word-spacing:16.072705px;}
.ws1f4{word-spacing:16.082270px;}
.ws18a{word-spacing:16.091834px;}
.ws179{word-spacing:16.106180px;}
.ws1ab{word-spacing:16.109348px;}
.ws35{word-spacing:16.130091px;}
.ws246{word-spacing:16.139655px;}
.ws61{word-spacing:16.154001px;}
.ws264{word-spacing:16.177912px;}
.ws1ff{word-spacing:16.182694px;}
.wsdd{word-spacing:16.192258px;}
.ws103{word-spacing:16.197040px;}
.ws9f{word-spacing:16.201823px;}
.wsa0{word-spacing:16.220951px;}
.ws193{word-spacing:16.230515px;}
.wsb7{word-spacing:16.240080px;}
.ws134{word-spacing:16.259208px;}
.wse7{word-spacing:16.263990px;}
.ws1ee{word-spacing:16.316593px;}
.ws4d{word-spacing:16.321376px;}
.ws151{word-spacing:16.333149px;}
.ws265{word-spacing:16.345286px;}
.ws1ea{word-spacing:16.350068px;}
.ws14e{word-spacing:16.371883px;}
.ws1bd{word-spacing:16.383543px;}
.ws135{word-spacing:16.393107px;}
.ws1e2{word-spacing:16.449353px;}
.ws172{word-spacing:16.469621px;}
.ws39{word-spacing:16.474403px;}
.ws1fc{word-spacing:16.479186px;}
.ws245{word-spacing:16.493532px;}
.ws173{word-spacing:16.512660px;}
.ws1be{word-spacing:16.522225px;}
.ws194{word-spacing:16.536571px;}
.ws9d{word-spacing:16.560482px;}
.ws242{word-spacing:16.579610px;}
.ws1fd{word-spacing:16.598739px;}
.wsf6{word-spacing:16.680035px;}
.ws3a{word-spacing:16.708727px;}
.wsf7{word-spacing:16.737420px;}
.ws18e{word-spacing:16.766113px;}
.ws75{word-spacing:16.770895px;}
.ws18d{word-spacing:16.813934px;}
.ws22b{word-spacing:16.847409px;}
.ws26f{word-spacing:16.876101px;}
.ws3e{word-spacing:16.900012px;}
.wsc4{word-spacing:16.909576px;}
.wsfe{word-spacing:16.947833px;}
.ws1cc{word-spacing:16.962180px;}
.ws1cb{word-spacing:16.971744px;}
.ws28{word-spacing:16.978728px;}
.ws3f{word-spacing:16.986090px;}
.ws18{word-spacing:17.013159px;}
.wsc6{word-spacing:17.029129px;}
.ws185{word-spacing:17.053040px;}
.ws1ad{word-spacing:17.060501px;}
.ws16{word-spacing:17.064805px;}
.wsac{word-spacing:17.100861px;}
.ws186{word-spacing:17.105643px;}
.ws1af{word-spacing:17.107843px;}
.wsd7{word-spacing:17.110425px;}
.ws1e6{word-spacing:17.125059px;}
.ws26e{word-spacing:17.134336px;}
.ws146{word-spacing:17.146578px;}
.ws234{word-spacing:17.153464px;}
.wse4{word-spacing:17.158247px;}
.ws36{word-spacing:17.172593px;}
.ws86{word-spacing:17.215632px;}
.wsd6{word-spacing:17.220414px;}
.wsa7{word-spacing:17.239543px;}
.ws27c{word-spacing:17.249107px;}
.ws27{word-spacing:17.262782px;}
.ws1ae{word-spacing:17.267086px;}
.ws279{word-spacing:17.296928px;}
.ws27a{word-spacing:17.311274px;}
.ws87{word-spacing:17.325621px;}
.ws1d8{word-spacing:17.368660px;}
.wsc5{word-spacing:17.445174px;}
.ws27b{word-spacing:17.497777px;}
.ws66{word-spacing:17.516906px;}
.ws1e3{word-spacing:17.521014px;}
.ws119{word-spacing:17.555163px;}
.ws1d4{word-spacing:17.579073px;}
.ws167{word-spacing:17.583855px;}
.ws222{word-spacing:17.636459px;}
.ws1d3{word-spacing:17.641241px;}
.ws29{word-spacing:17.684561px;}
.wsba{word-spacing:17.708190px;}
.wsd0{word-spacing:17.712972px;}
.ws1e4{word-spacing:17.723295px;}
.ws46{word-spacing:17.741665px;}
.ws51{word-spacing:17.818179px;}
.ws1ef{word-spacing:17.832525px;}
.ws198{word-spacing:17.837308px;}
.ws1eb{word-spacing:17.842090px;}
.ws47{word-spacing:17.870782px;}
.ws45{word-spacing:17.894693px;}
.ws50{word-spacing:17.923386px;}
.ws4c{word-spacing:17.932950px;}
.wsbb{word-spacing:17.966425px;}
.ws133{word-spacing:17.985553px;}
.ws1a0{word-spacing:18.009464px;}
.wscf{word-spacing:18.119453px;}
.wse3{word-spacing:18.172056px;}
.ws162{word-spacing:18.239006px;}
.ws163{word-spacing:18.262916px;}
.ws132{word-spacing:18.272481px;}
.wsf5{word-spacing:18.320302px;}
.ws161{word-spacing:18.415944px;}
.wsa3{word-spacing:18.554626px;}
.ws59{word-spacing:18.602447px;}
.ws57{word-spacing:18.659832px;}
.ws1c1{word-spacing:18.683743px;}
.ws1f2{word-spacing:18.688525px;}
.ws118{word-spacing:18.760257px;}
.ws19c{word-spacing:18.779385px;}
.ws1f1{word-spacing:18.798514px;}
.ws58{word-spacing:18.803296px;}
.ws1ac{word-spacing:18.829388px;}
.ws247{word-spacing:18.851117px;}
.ws20a{word-spacing:18.875028px;}
.ws236{word-spacing:18.889374px;}
.ws17a{word-spacing:18.894156px;}
.ws31{word-spacing:18.903720px;}
.wsad{word-spacing:18.918067px;}
.ws1ec{word-spacing:18.970670px;}
.ws2f{word-spacing:18.975452px;}
.ws269{word-spacing:18.989799px;}
.ws218{word-spacing:18.994581px;}
.ws220{word-spacing:19.018491px;}
.ws209{word-spacing:19.023273px;}
.ws8a{word-spacing:19.028055px;}
.ws142{word-spacing:19.042402px;}
.ws16e{word-spacing:19.075877px;}
.ws2e{word-spacing:19.099787px;}
.ws21e{word-spacing:19.142826px;}
.ws21f{word-spacing:19.152391px;}
.ws26a{word-spacing:19.157173px;}
.ws235{word-spacing:19.185865px;}
.ws244{word-spacing:19.195430px;}
.wsdb{word-spacing:19.204994px;}
.ws37{word-spacing:19.214558px;}
.wsda{word-spacing:19.233687px;}
.wsd5{word-spacing:19.257597px;}
.ws1b5{word-spacing:19.281508px;}
.ws117{word-spacing:19.291072px;}
.ws16d{word-spacing:19.353240px;}
.wsfb{word-spacing:19.362804px;}
.ws34{word-spacing:19.372368px;}
.ws1fe{word-spacing:19.468011px;}
.ws4{word-spacing:19.470595px;}
.ws1cf{word-spacing:19.487139px;}
.ws230{word-spacing:19.539742px;}
.ws20f{word-spacing:19.563653px;}
.ws249{word-spacing:19.597128px;}
.ws6b{word-spacing:19.659295px;}
.ws211{word-spacing:19.673642px;}
.ws1b4{word-spacing:19.778848px;}
.ws62{word-spacing:19.855362px;}
.ws83{word-spacing:19.960569px;}
.ws7a{word-spacing:19.965351px;}
.ws16c{word-spacing:19.979697px;}
.ws1c6{word-spacing:20.003608px;}
.ws11c{word-spacing:20.008390px;}
.ws138{word-spacing:20.017954px;}
.ws136{word-spacing:20.051429px;}
.wsc0{word-spacing:20.118379px;}
.wse2{word-spacing:20.161418px;}
.ws88{word-spacing:20.228368px;}
.wsbf{word-spacing:20.290535px;}
.ws18f{word-spacing:20.304882px;}
.ws11b{word-spacing:20.324010px;}
.ws1fb{word-spacing:20.386178px;}
.ws1fa{word-spacing:20.443563px;}
.ws262{word-spacing:20.462691px;}
.wsd8{word-spacing:20.481820px;}
.ws15f{word-spacing:20.496166px;}
.ws181{word-spacing:20.520077px;}
.wsdf{word-spacing:20.529641px;}
.ws19a{word-spacing:20.553552px;}
.ws219{word-spacing:20.653976px;}
.ws69{word-spacing:20.692233px;}
.ws1f0{word-spacing:20.735272px;}
.ws19b{word-spacing:20.792658px;}
.ws20c{word-spacing:20.916993px;}
.ws215{word-spacing:20.931339px;}
.ws208{word-spacing:20.955250px;}
.ws72{word-spacing:20.969596px;}
.ws71{word-spacing:20.983943px;}
.ws25d{word-spacing:21.022200px;}
.ws7{word-spacing:21.036516px;}
.ws8{word-spacing:21.131560px;}
.ws182{word-spacing:21.136970px;}
.ws183{word-spacing:21.141753px;}
.ws70{word-spacing:21.146535px;}
.wse5{word-spacing:21.165663px;}
.ws207{word-spacing:21.232613px;}
.ws41{word-spacing:21.270870px;}
.ws25c{word-spacing:21.275652px;}
.ws111{word-spacing:21.294780px;}
.ws1f7{word-spacing:21.304345px;}
.ws77{word-spacing:21.323473px;}
.ws6{word-spacing:21.327986px;}
.ws40{word-spacing:21.333037px;}
.ws1f8{word-spacing:21.342602px;}
.ws9{word-spacing:21.346995px;}
.ws10d{word-spacing:21.380859px;}
.ws1a2{word-spacing:21.385641px;}
.ws85{word-spacing:21.390423px;}
.ws15e{word-spacing:21.395205px;}
.ws10e{word-spacing:21.409551px;}
.ws213{word-spacing:21.514758px;}
.wsfd{word-spacing:21.543451px;}
.wsf0{word-spacing:21.567361px;}
.ws1a6{word-spacing:21.634311px;}
.ws7e{word-spacing:21.639093px;}
.wsaa{word-spacing:21.658221px;}
.ws84{word-spacing:21.663004px;}
.ws1e5{word-spacing:21.730189px;}
.ws24d{word-spacing:21.787339px;}
.ws1b3{word-spacing:21.792121px;}
.ws143{word-spacing:21.854288px;}
.ws239{word-spacing:21.935584px;}
.wsef{word-spacing:21.954713px;}
.wsdc{word-spacing:21.978624px;}
.wse0{word-spacing:22.002534px;}
.ws25{word-spacing:22.100321px;}
.ws26{word-spacing:22.160575px;}
.ws7c{word-spacing:22.241640px;}
.ws43{word-spacing:22.265551px;}
.ws81{word-spacing:22.275115px;}
.ws25e{word-spacing:22.308590px;}
.wsce{word-spacing:22.318154px;}
.wsc2{word-spacing:22.351629px;}
.ws7b{word-spacing:22.399450px;}
.wsa9{word-spacing:22.495092px;}
.wsf9{word-spacing:22.695942px;}
.wsbe{word-spacing:22.758109px;}
.ws6f{word-spacing:22.815495px;}
.wsbd{word-spacing:22.844187px;}
.ws16a{word-spacing:22.944612px;}
.wsc1{word-spacing:22.997215px;}
.ws228{word-spacing:23.073729px;}
.ws52{word-spacing:23.116768px;}
.wsa1{word-spacing:23.135897px;}
.ws191{word-spacing:23.150243px;}
.wsee{word-spacing:23.159807px;}
.ws23b{word-spacing:23.336746px;}
.ws6a{word-spacing:23.365438px;}
.ws212{word-spacing:23.384567px;}
.ws10f{word-spacing:23.441952px;}
.ws190{word-spacing:23.446734px;}
.ws2d{word-spacing:23.623673px;}
.ws1c4{word-spacing:23.642801px;}
.ws110{word-spacing:23.685840px;}
.ws199{word-spacing:23.714533px;}
.ws283{word-spacing:23.730197px;}
.ws171{word-spacing:23.810175px;}
.ws174{word-spacing:23.834086px;}
.ws241{word-spacing:23.901036px;}
.ws1b8{word-spacing:23.905818px;}
.ws2d8{word-spacing:23.997989px;}
.ws29c{word-spacing:24.001814px;}
.ws78{word-spacing:24.044499px;}
.wsae{word-spacing:24.054064px;}
.ws79{word-spacing:24.116231px;}
.ws2c{word-spacing:24.121013px;}
.ws1c8{word-spacing:24.149706px;}
.ws9c{word-spacing:24.173617px;}
.ws16f{word-spacing:24.235784px;}
.ws170{word-spacing:24.254913px;}
.ws80{word-spacing:24.293170px;}
.ws108{word-spacing:24.498801px;}
.ws11f{word-spacing:24.637482px;}
.ws11e{word-spacing:24.699650px;}
.ws169{word-spacing:24.723560px;}
.ws156{word-spacing:24.852678px;}
.wsd9{word-spacing:24.981795px;}
.ws113{word-spacing:25.039180px;}
.ws4a{word-spacing:25.153951px;}
.ws166{word-spacing:25.536521px;}
.ws137{word-spacing:25.627381px;}
.ws22c{word-spacing:25.651292px;}
.ws165{word-spacing:25.742152px;}
.wseb{word-spacing:26.052990px;}
.ws240{word-spacing:26.249057px;}
.ws38{word-spacing:26.359045px;}
.wsc9{word-spacing:26.378174px;}
.ws210{word-spacing:26.497727px;}
.ws101{word-spacing:26.535984px;}
.ws102{word-spacing:26.693794px;}
.ws231{word-spacing:26.942464px;}
.ws5{word-spacing:26.952798px;}
.ws19f{word-spacing:27.363291px;}
.ws205{word-spacing:27.377637px;}
.ws1da{word-spacing:27.398373px;}
.ws1{word-spacing:27.900779px;}
.ws106{word-spacing:28.214508px;}
.ws107{word-spacing:28.281458px;}
.ws1c0{word-spacing:28.329279px;}
.ws44{word-spacing:28.439268px;}
.ws1a7{word-spacing:28.678374px;}
.ws147{word-spacing:28.887508px;}
.ws95{word-spacing:29.586976px;}
.ws96{word-spacing:29.658708px;}
.ws33{word-spacing:29.759133px;}
.ws131{word-spacing:30.141702px;}
.ws25f{word-spacing:30.404719px;}
.ws32{word-spacing:30.629479px;}
.ws4f{word-spacing:31.165076px;}
.wse1{word-spacing:31.848919px;}
.ws148{word-spacing:32.102492px;}
.ws149{word-spacing:32.132619px;}
.ws160{word-spacing:32.384517px;}
.ws164{word-spacing:33.513097px;}
.ws42{word-spacing:34.928604px;}
.ws120{word-spacing:38.624796px;}
.wsa8{word-spacing:38.696915px;}
.ws168{word-spacing:46.812173px;}
.ws1bf{word-spacing:49.480596px;}
.ws98{word-spacing:52.254225px;}
.ws25a{word-spacing:195.618230px;}
._22{margin-left:-929.343532px;}
._1c{margin-left:-250.196940px;}
._1e{margin-left:-168.245532px;}
._19{margin-left:-138.732300px;}
._1d{margin-left:-104.885928px;}
._1b{margin-left:-97.928964px;}
._1a{margin-left:-95.175864px;}
._12{margin-left:-18.832945px;}
._11{margin-left:-16.577334px;}
._25{margin-left:-15.394104px;}
._29{margin-left:-14.321643px;}
._14{margin-left:-9.607279px;}
._f{width:1.235208px;}
._2e{width:7.368208px;}
._4{width:9.524442px;}
._5{width:11.224467px;}
._3{width:12.347774px;}
._1{width:13.753032px;}
._2{width:15.678295px;}
._0{width:16.919141px;}
._7{width:18.751918px;}
._9{width:20.223585px;}
._10{width:21.237395px;}
._6{width:23.150463px;}
._8{width:24.886152px;}
._17{width:26.502509px;}
._b{width:27.616743px;}
._d{width:29.634798px;}
._a{width:30.835110px;}
._e{width:32.260182px;}
._16{width:33.819153px;}
._c{width:36.425408px;}
._15{width:40.083730px;}
._2b{width:42.050722px;}
._2a{width:47.983792px;}
._2d{width:50.800461px;}
._13{width:53.430627px;}
._24{width:79.287336px;}
._27{width:81.627588px;}
._2c{width:90.483599px;}
._20{width:95.217120px;}
._1f{width:121.857156px;}
._32{width:195.656486px;}
._31{width:208.812725px;}
._33{width:211.934414px;}
._35{width:213.965808px;}
._21{width:230.937674px;}
._39{width:231.965051px;}
._34{width:249.799998px;}
._23{width:272.450400px;}
._26{width:273.568093px;}
._28{width:334.978991px;}
._30{width:390.785040px;}
._2f{width:392.143128px;}
._36{width:577.592914px;}
._37{width:611.610149px;}
._38{width:615.011107px;}
._18{width:2165.467812px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,127,171);}
.fc1{color:rgb(63,120,162);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:25.500000px;}
.fsa{font-size:28.689000px;}
.fsd{font-size:31.876200px;}
.fsf{font-size:33.480000px;}
.fs12{font-size:33.495600px;}
.fs7{font-size:38.256000px;}
.fs10{font-size:38.400000px;}
.fs8{font-size:41.842800px;}
.fs5{font-size:42.237600px;}
.fs9{font-size:43.038600px;}
.fsb{font-size:43.200000px;}
.fs0{font-size:47.821200px;}
.fse{font-size:47.880000px;}
.fs11{font-size:47.902800px;}
.fs2{font-size:57.384600px;}
.fsc{font-size:60.000000px;}
.fs4{font-size:63.363000px;}
.fs3{font-size:80.697000px;}
.fs1{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.y112{bottom:4.736670px;}
.yc3{bottom:10.093215px;}
.ydf{bottom:41.558400px;}
.y92{bottom:72.965496px;}
.ydd{bottom:72.967849px;}
.y185{bottom:72.972555px;}
.y1f4{bottom:72.974758px;}
.y50{bottom:72.991725px;}
.y1b2{bottom:73.224462px;}
.y192{bottom:74.069877px;}
.y146{bottom:79.344124px;}
.y234{bottom:80.874570px;}
.y4f{bottom:87.403215px;}
.y91{bottom:88.612593px;}
.y184{bottom:88.619652px;}
.y1f3{bottom:88.621855px;}
.y1b1{bottom:88.871559px;}
.y191{bottom:89.716974px;}
.y145{bottom:94.991220px;}
.y233{bottom:96.606550px;}
.y4a{bottom:101.621985px;}
.y90{bottom:104.344572px;}
.ydc{bottom:104.346925px;}
.y183{bottom:104.351631px;}
.y1f2{bottom:104.353834px;}
.y1b0{bottom:104.603538px;}
.y190{bottom:105.448953px;}
.y144{bottom:110.723200px;}
.y232{bottom:112.253646px;}
.y49{bottom:115.993650px;}
.y8f{bottom:119.991669px;}
.y182{bottom:119.998728px;}
.y1f1{bottom:120.000931px;}
.y1af{bottom:120.250635px;}
.y18f{bottom:121.096050px;}
.y143{bottom:126.370296px;}
.y231{bottom:127.985626px;}
.y8e{bottom:135.723648px;}
.y181{bottom:135.730707px;}
.y204{bottom:135.732910px;}
.y1ae{bottom:135.982614px;}
.ydb{bottom:136.492335px;}
.y4d{bottom:140.825037px;}
.y142{bottom:142.102276px;}
.y230{bottom:143.632722px;}
.y8d{bottom:151.370745px;}
.y180{bottom:151.377804px;}
.y1f0{bottom:151.380007px;}
.y1ad{bottom:151.629711px;}
.yda{bottom:152.139432px;}
.y4c{bottom:155.111700px;}
.y1bf{bottom:157.407808px;}
.y141{bottom:157.749372px;}
.y22f{bottom:159.364702px;}
.y4b{bottom:159.958950px;}
.y8c{bottom:167.102724px;}
.y17f{bottom:167.109783px;}
.y203{bottom:167.111986px;}
.y1ac{bottom:167.361690px;}
.yd9{bottom:167.871411px;}
.y1be{bottom:171.694471px;}
.y140{bottom:173.481352px;}
.y22e{bottom:175.011798px;}
.y8b{bottom:182.834703px;}
.y17e{bottom:182.841762px;}
.y202{bottom:182.843965px;}
.y1ab{bottom:183.008787px;}
.yd8{bottom:183.518508px;}
.y1bd{bottom:186.066135px;}
.y13f{bottom:189.128448px;}
.y22d{bottom:190.743777px;}
.y1ef{bottom:198.407375px;}
.y8a{bottom:198.481800px;}
.y88{bottom:198.483696px;}
.y17d{bottom:198.488859px;}
.y201{bottom:198.491062px;}
.y1aa{bottom:198.740766px;}
.yd7{bottom:199.250487px;}
.y1bc{bottom:200.437800px;}
.y37{bottom:203.332693px;}
.y48{bottom:203.337475px;}
.y89{bottom:203.839350px;}
.y13e{bottom:204.860427px;}
.y22c{bottom:206.390874px;}
.y1ee{bottom:214.054471px;}
.y87{bottom:214.215676px;}
.y17c{bottom:214.220838px;}
.y200{bottom:214.223041px;}
.y1a9{bottom:214.387863px;}
.yd6{bottom:214.897584px;}
.y13a{bottom:218.891123px;}
.y36{bottom:218.979789px;}
.y47{bottom:218.984571px;}
.y13d{bottom:220.507524px;}
.y22b{bottom:222.122853px;}
.y1ed{bottom:229.786451px;}
.y86{bottom:229.862772px;}
.y17b{bottom:229.867935px;}
.y1ff{bottom:229.870138px;}
.y1a8{bottom:230.119842px;}
.yd5{bottom:230.629563px;}
.y139{bottom:233.262788px;}
.y35{bottom:234.711769px;}
.y46{bottom:234.716551px;}
.y13c{bottom:236.239503px;}
.y22a{bottom:237.769950px;}
.y228{bottom:237.771446px;}
.y229{bottom:243.127500px;}
.y1ec{bottom:245.433547px;}
.y85{bottom:245.594752px;}
.y1fe{bottom:245.602117px;}
.y1a7{bottom:245.766938px;}
.yd4{bottom:246.276660px;}
.y138{bottom:247.549451px;}
.y34{bottom:250.358865px;}
.y45{bottom:250.363647px;}
.y13b{bottom:251.886600px;}
.y227{bottom:253.503425px;}
.y1eb{bottom:261.165527px;}
.y84{bottom:261.241848px;}
.y17a{bottom:261.248206px;}
.y1fd{bottom:261.249214px;}
.y1a6{bottom:261.498918px;}
.y137{bottom:261.921115px;}
.yd3{bottom:262.008639px;}
.y33{bottom:266.090845px;}
.y44{bottom:266.095627px;}
.y226{bottom:269.150522px;}
.y136{bottom:276.292780px;}
.y1ea{bottom:276.812623px;}
.y1fc{bottom:276.981193px;}
.y1a5{bottom:277.146014px;}
.yd2{bottom:277.655736px;}
.y32{bottom:281.737941px;}
.y43{bottom:281.742723px;}
.y225{bottom:284.882501px;}
.y18e{bottom:288.198358px;}
.y135{bottom:290.664444px;}
.y1e9{bottom:292.544603px;}
.y83{bottom:292.620924px;}
.y179{bottom:292.627282px;}
.y1fb{bottom:292.628290px;}
.y1a4{bottom:292.877994px;}
.yd1{bottom:293.387715px;}
.y31{bottom:297.469920px;}
.y42{bottom:297.474703px;}
.y224{bottom:300.529597px;}
.y18d{bottom:302.485021px;}
.y134{bottom:304.951108px;}
.y1e8{bottom:308.191699px;}
.y178{bottom:308.359261px;}
.y1fa{bottom:308.360269px;}
.y1a3{bottom:308.525090px;}
.yd0{bottom:309.034811px;}
.y30{bottom:313.117017px;}
.y41{bottom:313.121799px;}
.y223{bottom:316.261577px;}
.y18c{bottom:316.856685px;}
.y133{bottom:319.322772px;}
.y1e7{bottom:323.923678px;}
.y82{bottom:324.000000px;}
.y177{bottom:324.006358px;}
.y1f9{bottom:324.007366px;}
.y80{bottom:324.010799px;}
.y1a2{bottom:324.257070px;}
.y2f{bottom:328.848996px;}
.y40{bottom:328.853778px;}
.y81{bottom:329.357400px;}
.y189{bottom:331.228108px;}
.y18b{bottom:331.228350px;}
.y222{bottom:331.908673px;}
.y132{bottom:333.694437px;}
.y18a{bottom:335.990550px;}
.y1e6{bottom:339.655658px;}
.y176{bottom:339.738337px;}
.y1f8{bottom:339.739345px;}
.y7f{bottom:339.742778px;}
.y1a1{bottom:339.989049px;}
.ycf{bottom:340.413887px;}
.y2e{bottom:344.496093px;}
.y3f{bottom:344.500875px;}
.y188{bottom:345.599772px;}
.y221{bottom:347.640653px;}
.y131{bottom:347.981100px;}
.y1e5{bottom:355.302754px;}
.y175{bottom:355.385434px;}
.y1f7{bottom:355.386441px;}
.y7e{bottom:355.389875px;}
.y1a0{bottom:355.636145px;}
.y187{bottom:359.886435px;}
.y2d{bottom:360.228072px;}
.y3e{bottom:360.232854px;}
.y1e4{bottom:371.034734px;}
.y174{bottom:371.117413px;}
.y7d{bottom:371.121854px;}
.y19f{bottom:371.368125px;}
.yce{bottom:372.559298px;}
.y186{bottom:374.258100px;}
.yff{bottom:374.429956px;}
.y130{bottom:374.433055px;}
.y2c{bottom:375.875169px;}
.y3d{bottom:375.879951px;}
.y220{bottom:379.020924px;}
.y26d{bottom:385.997075px;}
.y1e3{bottom:386.681830px;}
.y173{bottom:386.764510px;}
.y1f6{bottom:386.765517px;}
.y7c{bottom:386.768951px;}
.y19e{bottom:387.015221px;}
.ycd{bottom:388.291277px;}
.yfe{bottom:390.161935px;}
.y12f{bottom:390.165034px;}
.y2b{bottom:391.607148px;}
.y3c{bottom:391.611930px;}
.y26c{bottom:397.987462px;}
.y1e2{bottom:402.413810px;}
.y172{bottom:402.496489px;}
.y7b{bottom:402.500930px;}
.y19d{bottom:402.747201px;}
.ycc{bottom:403.938374px;}
.yfd{bottom:405.809032px;}
.y12e{bottom:405.812131px;}
.y2a{bottom:407.254245px;}
.y3b{bottom:407.259027px;}
.y2a6{bottom:409.210242px;}
.y26b{bottom:409.977848px;}
.y21f{bottom:410.400000px;}
.y1e1{bottom:418.060906px;}
.y171{bottom:418.143586px;}
.y7a{bottom:418.148027px;}
.y19c{bottom:418.394297px;}
.ycb{bottom:419.670353px;}
.y2a5{bottom:421.115509px;}
.y12d{bottom:421.544110px;}
.y26a{bottom:421.883116px;}
.y29{bottom:422.986224px;}
.y3a{bottom:422.991006px;}
.y2a4{bottom:433.105896px;}
.y1e0{bottom:433.792885px;}
.y269{bottom:433.873502px;}
.y170{bottom:433.875565px;}
.y79{bottom:433.880006px;}
.y19b{bottom:434.126277px;}
.yca{bottom:435.317450px;}
.yfc{bottom:437.188108px;}
.y12c{bottom:437.191207px;}
.y39{bottom:438.638103px;}
.y21e{bottom:441.779472px;}
.y2a3{bottom:445.096302px;}
.y268{bottom:445.778770px;}
.y1df{bottom:449.439982px;}
.y16f{bottom:449.522662px;}
.y78{bottom:449.527103px;}
.y19a{bottom:449.773373px;}
.yc9{bottom:451.049429px;}
.y28{bottom:454.365300px;}
.y38{bottom:454.370082px;}
.y21d{bottom:456.151137px;}
.y2a2{bottom:457.008073px;}
.y267{bottom:457.769156px;}
.y1de{bottom:465.171961px;}
.y16e{bottom:465.254641px;}
.y199{bottom:465.505352px;}
.yc8{bottom:466.696526px;}
.y12b{bottom:468.570283px;}
.y2a1{bottom:468.998460px;}
.y266{bottom:469.674424px;}
.y21c{bottom:470.437800px;}
.yfb{bottom:472.734802px;}
.y1dd{bottom:480.819058px;}
.y16d{bottom:480.901738px;}
.y2a0{bottom:480.903727px;}
.y77{bottom:480.906178px;}
.y265{bottom:481.664810px;}
.yc7{bottom:482.428505px;}
.yfa{bottom:488.381898px;}
.y29f{bottom:492.894114px;}
.y196{bottom:493.633350px;}
.y264{bottom:493.655197px;}
.y198{bottom:495.354150px;}
.y1dc{bottom:496.551037px;}
.y16c{bottom:496.633717px;}
.y197{bottom:497.685300px;}
.y12a{bottom:499.949358px;}
.yc2{bottom:503.092485px;}
.yc5{bottom:504.050694px;}
.yf9{bottom:504.113877px;}
.y29e{bottom:504.799381px;}
.y263{bottom:505.560464px;}
.yc6{bottom:509.765700px;}
.y1db{bottom:512.198134px;}
.y16b{bottom:512.280813px;}
.y76{bottom:512.285254px;}
.yc1{bottom:513.185700px;}
.y29d{bottom:516.789768px;}
.y262{bottom:517.550851px;}
.yf8{bottom:519.760974px;}
.y27{bottom:520.270402px;}
.yc4{bottom:521.105550px;}
.y195{bottom:521.973996px;}
.y1da{bottom:527.930113px;}
.y16a{bottom:528.012793px;}
.y29c{bottom:528.780155px;}
.y261{bottom:529.456118px;}
.y26{bottom:534.557065px;}
.yf7{bottom:535.492953px;}
.y129{bottom:535.750700px;}
.y194{bottom:537.621093px;}
.y29b{bottom:540.685422px;}
.y260{bottom:541.446505px;}
.yc0{bottom:542.978200px;}
.y1d9{bottom:543.577210px;}
.y169{bottom:543.659889px;}
.y75{bottom:543.664330px;}
.y25{bottom:548.928730px;}
.yf5{bottom:549.184050px;}
.yf6{bottom:551.140050px;}
.yf4{bottom:551.144211px;}
.y128{bottom:551.482679px;}
.y29a{bottom:552.675809px;}
.y193{bottom:553.353072px;}
.y25f{bottom:553.436892px;}
.ybf{bottom:558.625296px;}
.y1d8{bottom:559.309189px;}
.y168{bottom:559.391869px;}
.y74{bottom:559.396310px;}
.y24{bottom:563.300394px;}
.y299{bottom:564.581076px;}
.y25e{bottom:565.342159px;}
.yf3{bottom:566.876190px;}
.y127{bottom:567.129776px;}
.ybe{bottom:574.357276px;}
.y1d7{bottom:574.956286px;}
.y167{bottom:575.038965px;}
.y73{bottom:575.043406px;}
.y298{bottom:576.571463px;}
.y25d{bottom:577.332546px;}
.y23{bottom:577.672059px;}
.yf2{bottom:582.523287px;}
.y126{bottom:582.861755px;}
.y297{bottom:588.561850px;}
.y25c{bottom:589.237777px;}
.ybd{bottom:590.004372px;}
.y1d6{bottom:590.688265px;}
.y166{bottom:590.770945px;}
.y72{bottom:590.775385px;}
.y22{bottom:591.958722px;}
.yf1{bottom:598.255266px;}
.y125{bottom:598.508852px;}
.y296{bottom:600.467117px;}
.y25b{bottom:601.235432px;}
.ybc{bottom:605.736352px;}
.y21{bottom:606.330386px;}
.y1d5{bottom:606.335362px;}
.y165{bottom:606.418041px;}
.y71{bottom:606.507365px;}
.y295{bottom:612.457504px;}
.y25a{bottom:613.225819px;}
.yf0{bottom:613.902362px;}
.y124{bottom:614.240831px;}
.y20{bottom:620.702051px;}
.ybb{bottom:621.383448px;}
.y1d4{bottom:622.067341px;}
.y164{bottom:622.150020px;}
.y70{bottom:622.154461px;}
.y294{bottom:624.362771px;}
.y259{bottom:625.131086px;}
.yef{bottom:629.634342px;}
.y123{bottom:629.972810px;}
.y1f{bottom:634.988714px;}
.y293{bottom:636.353158px;}
.yba{bottom:637.115427px;}
.y258{bottom:637.121473px;}
.y1d3{bottom:637.714438px;}
.y163{bottom:637.882000px;}
.y6f{bottom:637.886441px;}
.y18{bottom:644.004892px;}
.yee{bottom:645.281438px;}
.y122{bottom:645.619907px;}
.y292{bottom:648.258425px;}
.y257{bottom:649.026740px;}
.y1e{bottom:649.360379px;}
.yb9{bottom:652.762524px;}
.y1d2{bottom:653.446417px;}
.y162{bottom:653.529096px;}
.y6e{bottom:653.533537px;}
.y17{bottom:656.845518px;}
.y291{bottom:660.248812px;}
.yed{bottom:661.013418px;}
.y256{bottom:661.017127px;}
.y1d{bottom:663.732043px;}
.yb8{bottom:668.494503px;}
.y1d1{bottom:669.093513px;}
.y161{bottom:669.261076px;}
.y6d{bottom:669.265517px;}
.y16{bottom:669.686144px;}
.y290{bottom:672.239198px;}
.y255{bottom:672.922394px;}
.yec{bottom:676.660514px;}
.y121{bottom:676.998983px;}
.y1c{bottom:678.018706px;}
.y15{bottom:682.526771px;}
.yb7{bottom:684.141600px;}
.y28f{bottom:684.144466px;}
.yb5{bottom:684.145724px;}
.y1d0{bottom:684.825493px;}
.y160{bottom:684.908172px;}
.y6c{bottom:684.912613px;}
.y254{bottom:684.912781px;}
.yb6{bottom:689.499000px;}
.y1b{bottom:692.390371px;}
.y14{bottom:695.367397px;}
.y28e{bottom:696.134852px;}
.y253{bottom:696.903168px;}
.yb4{bottom:699.877704px;}
.y1cf{bottom:700.472589px;}
.y15f{bottom:700.640152px;}
.y6b{bottom:700.644592px;}
.y1a{bottom:706.762035px;}
.yeb{bottom:708.039590px;}
.y28d{bottom:708.040120px;}
.y13{bottom:708.208024px;}
.y252{bottom:708.808435px;}
.y120{bottom:712.800324px;}
.yb3{bottom:715.524800px;}
.y1ce{bottom:716.204569px;}
.y15e{bottom:716.287248px;}
.y6a{bottom:716.291689px;}
.y28c{bottom:720.030506px;}
.y251{bottom:720.798822px;}
.y12{bottom:721.048650px;}
.y19{bottom:721.133700px;}
.y11f{bottom:728.532303px;}
.yb2{bottom:731.256779px;}
.y1cd{bottom:731.851665px;}
.y15d{bottom:732.019227px;}
.y28b{bottom:732.020893px;}
.y69{bottom:732.023668px;}
.y250{bottom:732.704089px;}
.yea{bottom:743.586284px;}
.y28a{bottom:743.926160px;}
.y11e{bottom:744.179400px;}
.y24f{bottom:744.694476px;}
.yb1{bottom:746.903876px;}
.y1cc{bottom:747.583645px;}
.y15c{bottom:747.666324px;}
.y68{bottom:747.670765px;}
.y11{bottom:751.237650px;}
.y289{bottom:755.916547px;}
.y24e{bottom:756.684863px;}
.y11c{bottom:757.870650px;}
.ye9{bottom:759.233380px;}
.y11d{bottom:759.911700px;}
.y11b{bottom:759.912174px;}
.yb0{bottom:762.635855px;}
.y1cb{bottom:763.230741px;}
.y15b{bottom:763.398303px;}
.y67{bottom:763.402744px;}
.y288{bottom:767.821814px;}
.y24d{bottom:768.590130px;}
.ye8{bottom:774.965360px;}
.y11a{bottom:775.559271px;}
.yaf{bottom:778.282952px;}
.y1ca{bottom:778.962720px;}
.y15a{bottom:779.045400px;}
.y158{bottom:779.048569px;}
.y66{bottom:779.049841px;}
.y287{bottom:779.812201px;}
.y24c{bottom:780.580517px;}
.y159{bottom:784.402950px;}
.ye7{bottom:790.612456px;}
.y119{bottom:791.291250px;}
.y117{bottom:791.291403px;}
.y286{bottom:791.717468px;}
.y24b{bottom:792.485784px;}
.yae{bottom:794.014931px;}
.y1c9{bottom:794.609817px;}
.y157{bottom:794.780548px;}
.y65{bottom:794.781820px;}
.y118{bottom:796.563600px;}
.y10{bottom:800.560500px;}
.y285{bottom:803.707855px;}
.y24a{bottom:804.476171px;}
.yf{bottom:804.812400px;}
.ye6{bottom:806.344435px;}
.y114{bottom:806.938252px;}
.y116{bottom:806.938500px;}
.yad{bottom:809.662028px;}
.y1c8{bottom:810.341796px;}
.y64{bottom:810.428917px;}
.y21b{bottom:810.430112px;}
.y115{bottom:812.295900px;}
.ye{bottom:813.401400px;}
.y284{bottom:815.698242px;}
.y249{bottom:816.381438px;}
.yd{bottom:817.653450px;}
.ye5{bottom:821.991532px;}
.y113{bottom:822.670231px;}
.yac{bottom:825.394007px;}
.y1c7{bottom:825.988893px;}
.y156{bottom:826.159624px;}
.y63{bottom:826.160896px;}
.y21a{bottom:826.162092px;}
.yc{bottom:826.242300px;}
.y283{bottom:827.603509px;}
.y248{bottom:828.371825px;}
.yb{bottom:830.494200px;}
.y282{bottom:839.593896px;}
.y247{bottom:840.362212px;}
.yab{bottom:841.125986px;}
.y1c6{bottom:841.720872px;}
.y62{bottom:841.807993px;}
.y219{bottom:841.809188px;}
.y111{bottom:844.866030px;}
.y110{bottom:847.622700px;}
.y9{bottom:848.692572px;}
.y10f{bottom:849.602700px;}
.y281{bottom:851.499143px;}
.y246{bottom:852.267479px;}
.ye4{bottom:853.370608px;}
.ya{bottom:855.751050px;}
.yaa{bottom:856.773083px;}
.y1c5{bottom:857.452852px;}
.y155{bottom:857.538700px;}
.y61{bottom:857.539972px;}
.y218{bottom:857.541168px;}
.y280{bottom:863.489530px;}
.y245{bottom:864.257866px;}
.y7{bottom:868.081650px;}
.ya9{bottom:872.505062px;}
.y1c4{bottom:873.099948px;}
.y154{bottom:873.185796px;}
.y60{bottom:873.187069px;}
.y217{bottom:873.188264px;}
.y10e{bottom:873.191921px;}
.y8{bottom:875.139900px;}
.y27f{bottom:875.490246px;}
.y244{bottom:876.163133px;}
.y27e{bottom:887.395513px;}
.y243{bottom:888.153520px;}
.y1c3{bottom:888.831927px;}
.ye3{bottom:888.917302px;}
.y153{bottom:888.917776px;}
.y5f{bottom:888.919048px;}
.y10d{bottom:888.923901px;}
.y27d{bottom:899.385900px;}
.y242{bottom:900.143906px;}
.y6{bottom:900.992566px;}
.ya8{bottom:903.884138px;}
.y1c2{bottom:904.479024px;}
.ye2{bottom:904.564398px;}
.y152{bottom:904.564872px;}
.y5e{bottom:904.566145px;}
.y216{bottom:904.567340px;}
.y10c{bottom:904.570997px;}
.y27c{bottom:911.291167px;}
.y241{bottom:912.049174px;}
.y51{bottom:916.934970px;}
.y1c1{bottom:920.211003px;}
.ye1{bottom:920.296377px;}
.y151{bottom:920.296852px;}
.y5d{bottom:920.298124px;}
.y10b{bottom:920.302977px;}
.y27b{bottom:923.281554px;}
.y240{bottom:924.039560px;}
.y5{bottom:926.843850px;}
.y27a{bottom:935.271941px;}
.y1c0{bottom:935.858100px;}
.y1f5{bottom:935.872446px;}
.ya7{bottom:935.943471px;}
.ye0{bottom:935.943474px;}
.y150{bottom:935.943948px;}
.y23f{bottom:935.944828px;}
.y5c{bottom:935.945220px;}
.y215{bottom:935.946416px;}
.y10a{bottom:935.950073px;}
.y279{bottom:947.177208px;}
.y23e{bottom:947.935214px;}
.ya6{bottom:951.675450px;}
.ya4{bottom:951.675453px;}
.y14f{bottom:951.675927px;}
.y5b{bottom:951.677200px;}
.y109{bottom:951.682052px;}
.ya5{bottom:956.947800px;}
.y278{bottom:959.167595px;}
.y4{bottom:959.754150px;}
.y23d{bottom:959.840482px;}
.ya3{bottom:967.322550px;}
.ya1{bottom:967.322871px;}
.y14e{bottom:967.323024px;}
.y5a{bottom:967.324296px;}
.y108{bottom:967.329149px;}
.y277{bottom:971.072862px;}
.y23c{bottom:971.830868px;}
.ya2{bottom:972.680100px;}
.y20c{bottom:979.483651px;}
.y1bb{bottom:983.054588px;}
.ya0{bottom:983.054850px;}
.y9e{bottom:983.055003px;}
.y59{bottom:983.056276px;}
.y107{bottom:983.061128px;}
.y276{bottom:983.063249px;}
.y23b{bottom:983.821255px;}
.y9f{bottom:988.327350px;}
.y20b{bottom:992.409397px;}
.y275{bottom:994.968516px;}
.y23a{bottom:995.726522px;}
.y1ba{bottom:997.426252px;}
.y9d{bottom:998.702100px;}
.y9b{bottom:998.703369px;}
.y58{bottom:998.703372px;}
.y214{bottom:998.705763px;}
.y106{bottom:998.708225px;}
.y14d{bottom:998.709085px;}
.y9c{bottom:1004.059500px;}
.y3{bottom:1004.995050px;}
.y20a{bottom:1005.250024px;}
.y274{bottom:1006.958903px;}
.y239{bottom:1007.716909px;}
.y1b9{bottom:1011.712915px;}
.y9a{bottom:1014.435348px;}
.y57{bottom:1014.435352px;}
.y213{bottom:1014.437743px;}
.y105{bottom:1014.440204px;}
.y14c{bottom:1014.441064px;}
.y209{bottom:1018.090650px;}
.y273{bottom:1018.949290px;}
.y238{bottom:1019.622176px;}
.y1b8{bottom:1026.084580px;}
.y99{bottom:1030.082445px;}
.y56{bottom:1030.082448px;}
.y212{bottom:1030.084839px;}
.y104{bottom:1030.087301px;}
.y14b{bottom:1030.088161px;}
.y272{bottom:1030.854557px;}
.y237{bottom:1031.612563px;}
.y1b7{bottom:1040.456244px;}
.y207{bottom:1042.837500px;}
.y271{bottom:1042.844944px;}
.y236{bottom:1043.602950px;}
.y2{bottom:1043.858100px;}
.y98{bottom:1045.814424px;}
.y55{bottom:1045.814427px;}
.y211{bottom:1045.816819px;}
.y103{bottom:1045.819280px;}
.y14a{bottom:1045.820140px;}
.y208{bottom:1047.089550px;}
.y1b6{bottom:1054.742908px;}
.y270{bottom:1054.750211px;}
.y97{bottom:1061.461521px;}
.y54{bottom:1061.461524px;}
.y210{bottom:1061.463915px;}
.y102{bottom:1061.466377px;}
.y149{bottom:1061.467237px;}
.y206{bottom:1064.182272px;}
.y26f{bottom:1066.740598px;}
.y1b5{bottom:1069.114572px;}
.y235{bottom:1074.982350px;}
.y96{bottom:1077.193500px;}
.y53{bottom:1077.193503px;}
.y20f{bottom:1077.195894px;}
.y101{bottom:1077.198356px;}
.y94{bottom:1077.198741px;}
.y148{bottom:1077.199216px;}
.y205{bottom:1078.553937px;}
.y26e{bottom:1078.730984px;}
.y95{bottom:1082.465850px;}
.y1b4{bottom:1083.486237px;}
.y1{bottom:1088.758800px;}
.y52{bottom:1092.840600px;}
.y20e{bottom:1092.842991px;}
.y100{bottom:1092.845453px;}
.y93{bottom:1092.845838px;}
.y147{bottom:1092.846313px;}
.y1b3{bottom:1097.772900px;}
.yde{bottom:1127.621850px;}
.y4e{bottom:1127.623170px;}
.y20d{bottom:1127.623316px;}
.y2a7{bottom:1127.626361px;}
.hf{height:13.512519px;}
.h1a{height:14.457000px;}
.h9{height:23.664000px;}
.h19{height:26.281800px;}
.h1e{height:26.294046px;}
.h1c{height:26.623392px;}
.h15{height:27.553530px;}
.ha{height:28.156416px;}
.h16{height:28.911874px;}
.h13{height:29.581114px;}
.h1f{height:31.848564px;}
.h23{height:33.658157px;}
.h20{height:33.670334px;}
.h17{height:33.676200px;}
.h18{height:33.750000px;}
.h4{height:34.526906px;}
.h12{height:35.196403px;}
.he{height:35.387688px;}
.hc{height:35.501568px;}
.h22{height:35.501648px;}
.h21{height:35.501713px;}
.h14{height:37.585800px;}
.h1d{height:37.603698px;}
.h10{height:37.968750px;}
.hb{height:38.830118px;}
.h8{height:39.196493px;}
.hd{height:39.939821px;}
.h2{height:44.378074px;}
.h1b{height:44.576674px;}
.h11{height:52.734375px;}
.h5{height:53.252909px;}
.h7{height:58.800864px;}
.h6{height:74.886816px;}
.h3{height:77.660237px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:62.078985px;}
.w3{width:278.760000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:56.381100px;}
.x65{left:61.823550px;}
.x10{left:63.184200px;}
.x15{left:65.990550px;}
.x16{left:73.814100px;}
.x12{left:75.089949px;}
.x66{left:81.212647px;}
.x18{left:113.017200px;}
.x19{left:131.045550px;}
.x63{left:136.654549px;}
.x5{left:144.822000px;}
.x6{left:160.469250px;}
.xf{left:168.888150px;}
.x55{left:199.162200px;}
.x56{left:229.691250px;}
.x57{left:236.919600px;}
.x58{left:249.505500px;}
.x4d{left:259.965300px;}
.x4e{left:268.809300px;}
.x4f{left:274.422000px;}
.x3{left:279.184200px;}
.x50{left:291.259800px;}
.x7{left:296.532150px;}
.x8{left:302.569950px;}
.x11{left:304.695900px;}
.x34{left:323.659800px;}
.x35{left:328.677150px;}
.x36{left:333.184200px;}
.x37{left:338.286600px;}
.x2{left:340.327500px;}
.x1{left:342.368400px;}
.x38{left:345.769950px;}
.x39{left:350.787300px;}
.x3a{left:359.546400px;}
.x3b{left:364.563600px;}
.x32{left:367.284900px;}
.x33{left:377.744700px;}
.x59{left:401.725800px;}
.x5a{left:408.954150px;}
.x1a{left:415.672350px;}
.x5b{left:421.540050px;}
.x9{left:429.108600px;}
.x5c{left:432.765300px;}
.xa{left:435.656550px;}
.x31{left:438.349815px;}
.x13{left:459.893995px;}
.x30{left:465.382800px;}
.x3d{left:467.452800px;}
.x64{left:471.968400px;}
.x2c{left:473.977650px;}
.x3f{left:475.552800px;}
.x14{left:478.602844px;}
.x67{left:484.723381px;}
.x2f{left:488.332911px;}
.x51{left:491.588550px;}
.x2d{left:494.182650px;}
.x1f{left:500.371500px;}
.x2e{left:501.967938px;}
.x3c{left:510.427500px;}
.x20{left:514.402950px;}
.xb{left:519.760500px;}
.x3e{left:522.982500px;}
.x4c{left:524.182500px;}
.xc{left:525.288000px;}
.x48{left:538.724250px;}
.x52{left:541.248450px;}
.x49{left:546.122700px;}
.x4a{left:552.415650px;}
.x21{left:561.259650px;}
.x4b{left:566.362050px;}
.x5d{left:574.270650px;}
.x23{left:575.461200px;}
.x22{left:578.437650px;}
.x5e{left:581.499000px;}
.x54{left:583.625100px;}
.x5f{left:594.084900px;}
.x28{left:603.439200px;}
.x60{left:605.310000px;}
.x29{left:617.470800px;}
.xd{left:624.954150px;}
.x47{left:627.930600px;}
.xe{left:631.077000px;}
.x24{left:632.777850px;}
.x40{left:640.006200px;}
.x2a{left:641.366850px;}
.x41{left:645.023400px;}
.x25{left:646.809300px;}
.x2b{left:650.380950px;}
.x42{left:675.977850px;}
.x43{left:680.995050px;}
.x26{left:707.357250px;}
.x27{left:721.388700px;}
.x61{left:753.023400px;}
.x17{left:759.757500px;}
.x44{left:766.799700px;}
.x62{left:772.837500px;}
.x45{left:783.552600px;}
.x1b{left:805.407600px;}
.x1c{left:812.891100px;}
.x1d{left:819.099000px;}
.x53{left:820.799700px;}
.x46{left:823.691100px;}
.x1e{left:833.130450px;}
@media print{
.v1{vertical-align:-13.747733pt;}
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-0.144773pt;}
.ls1d{letter-spacing:-0.085120pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.030602pt;}
.lsc{letter-spacing:0.034006pt;}
.ls2c{letter-spacing:0.045908pt;}
.ls22{letter-spacing:0.051009pt;}
.ls5{letter-spacing:0.053559pt;}
.ls2b{letter-spacing:0.072687pt;}
.ls28{letter-spacing:0.085015pt;}
.ls34{letter-spacing:0.093517pt;}
.ls3a{letter-spacing:0.112218pt;}
.ls1e{letter-spacing:0.123272pt;}
.ls15{letter-spacing:0.127523pt;}
.ls1f{letter-spacing:0.140276pt;}
.ls33{letter-spacing:0.141549pt;}
.ls7{letter-spacing:0.144526pt;}
.ls32{letter-spacing:0.145375pt;}
.ls39{letter-spacing:0.146223pt;}
.ls12{letter-spacing:0.153006pt;}
.ls35{letter-spacing:0.164503pt;}
.ls10{letter-spacing:0.182783pt;}
.ls6{letter-spacing:0.191283pt;}
.lsf{letter-spacing:0.195536pt;}
.ls14{letter-spacing:0.204037pt;}
.ls1a{letter-spacing:0.208288pt;}
.ls8{letter-spacing:0.216789pt;}
.ls30{letter-spacing:0.221888pt;}
.ls9{letter-spacing:0.229542pt;}
.ls38{letter-spacing:0.231236pt;}
.ls37{letter-spacing:0.238037pt;}
.ls2{letter-spacing:0.281584pt;}
.ls36{letter-spacing:0.297554pt;}
.ls1{letter-spacing:2.104133pt;}
.ls0{letter-spacing:2.121136pt;}
.ls2f{letter-spacing:7.525060pt;}
.ls2a{letter-spacing:8.306011pt;}
.ls13{letter-spacing:8.408030pt;}
.ls11{letter-spacing:8.433109pt;}
.lse{letter-spacing:8.463290pt;}
.ls26{letter-spacing:9.136618pt;}
.ls19{letter-spacing:10.711949pt;}
.ls17{letter-spacing:10.835221pt;}
.ls18{letter-spacing:11.026506pt;}
.ls2e{letter-spacing:12.548283pt;}
.lsa{letter-spacing:12.861847pt;}
.ls23{letter-spacing:14.142323pt;}
.ls29{letter-spacing:14.609908pt;}
.ls4{letter-spacing:14.907195pt;}
.ls3{letter-spacing:14.910542pt;}
.ls1b{letter-spacing:14.966973pt;}
.ls27{letter-spacing:15.272832pt;}
.ls1c{letter-spacing:16.820735pt;}
.lsd{letter-spacing:18.677898pt;}
.ls20{letter-spacing:93.197888pt;}
.ls24{letter-spacing:193.741632pt;}
.ls25{letter-spacing:223.640032pt;}
.ls21{letter-spacing:282.574176pt;}
.ls16{letter-spacing:1251.562453pt;}
.ws123{word-spacing:-249.388832pt;}
.ws122{word-spacing:-219.490432pt;}
.ws121{word-spacing:-203.620896pt;}
.ws89{word-spacing:-16.863243pt;}
.ws74{word-spacing:-15.009481pt;}
.ws13{word-spacing:-14.944388pt;}
.ws157{word-spacing:-12.590791pt;}
.ws1bb{word-spacing:-11.645703pt;}
.ws9a{word-spacing:-8.475617pt;}
.wsb3{word-spacing:-8.450537pt;}
.ws125{word-spacing:-6.579936pt;}
.wsd{word-spacing:-2.558548pt;}
.ws3{word-spacing:-2.146641pt;}
.ws30{word-spacing:-0.042508pt;}
.ws17{word-spacing:-0.038257pt;}
.ws286{word-spacing:-0.034005pt;}
.wsa2{word-spacing:-0.028334pt;}
.ws255{word-spacing:-0.022667pt;}
.ws5f{word-spacing:0.000000pt;}
.ws150{word-spacing:7.456198pt;}
.ws1db{word-spacing:7.463850pt;}
.ws1dd{word-spacing:7.490629pt;}
.ws1e7{word-spacing:7.502106pt;}
.ws251{word-spacing:7.693389pt;}
.ws253{word-spacing:7.723994pt;}
.ws22{word-spacing:7.758425pt;}
.ws2d3{word-spacing:7.797423pt;}
.ws2b2{word-spacing:7.909641pt;}
.wsaf{word-spacing:8.220996pt;}
.ws12e{word-spacing:8.246500pt;}
.ws12b{word-spacing:8.331516pt;}
.ws1c2{word-spacing:8.335767pt;}
.wsc7{word-spacing:8.348519pt;}
.ws2a8{word-spacing:8.351710pt;}
.ws12c{word-spacing:8.352770pt;}
.wsb2{word-spacing:8.374023pt;}
.ws184{word-spacing:8.399528pt;}
.ws105{word-spacing:8.408030pt;}
.wsf2{word-spacing:8.412280pt;}
.wsfc{word-spacing:8.416531pt;}
.wsbc{word-spacing:8.420782pt;}
.ws195{word-spacing:8.425033pt;}
.wsf3{word-spacing:8.433534pt;}
.ws73{word-spacing:8.446287pt;}
.ws294{word-spacing:8.450325pt;}
.ws1f6{word-spacing:8.450537pt;}
.wsec{word-spacing:8.505797pt;}
.wsb0{word-spacing:8.522801pt;}
.ws1a8{word-spacing:8.603565pt;}
.ws2b9{word-spacing:8.644156pt;}
.wsab{word-spacing:8.646073pt;}
.ws99{word-spacing:8.650324pt;}
.ws11a{word-spacing:8.663076pt;}
.ws10b{word-spacing:8.709835pt;}
.ws97{word-spacing:8.714085pt;}
.ws93{word-spacing:8.718336pt;}
.ws192{word-spacing:8.722587pt;}
.ws29a{word-spacing:9.103228pt;}
.ws2b4{word-spacing:9.116830pt;}
.ws14b{word-spacing:9.173917pt;}
.ws14c{word-spacing:9.193045pt;}
.ws14d{word-spacing:9.215999pt;}
.ws1b1{word-spacing:9.349897pt;}
.ws1b0{word-spacing:9.422584pt;}
.ws2b8{word-spacing:9.518093pt;}
.ws293{word-spacing:9.718724pt;}
.ws176{word-spacing:9.806534pt;}
.ws202{word-spacing:9.861794pt;}
.ws100{word-spacing:9.883048pt;}
.ws270{word-spacing:9.942873pt;}
.ws1e{word-spacing:9.954350pt;}
.ws1f{word-spacing:9.969653pt;}
.ws124{word-spacing:9.978230pt;}
.ws1a4{word-spacing:9.997819pt;}
.ws2da{word-spacing:10.000969pt;}
.ws2c7{word-spacing:10.024772pt;}
.ws23f{word-spacing:10.027574pt;}
.ws23e{word-spacing:10.053079pt;}
.ws27d{word-spacing:10.070082pt;}
.ws17d{word-spacing:10.078584pt;}
.ws24{word-spacing:10.084422pt;}
.ws22f{word-spacing:10.125342pt;}
.ws24a{word-spacing:10.129593pt;}
.wsc8{word-spacing:10.163599pt;}
.ws28b{word-spacing:10.215202pt;}
.ws1ed{word-spacing:10.261367pt;}
.ws13b{word-spacing:10.282621pt;}
.ws28c{word-spacing:10.283213pt;}
.ws1c3{word-spacing:10.299624pt;}
.ws24b{word-spacing:10.316627pt;}
.ws21c{word-spacing:10.320878pt;}
.ws187{word-spacing:10.337881pt;}
.ws263{word-spacing:10.346382pt;}
.wscb{word-spacing:10.410144pt;}
.ws2b0{word-spacing:10.415834pt;}
.ws15d{word-spacing:10.486658pt;}
.ws21b{word-spacing:10.490909pt;}
.ws24c{word-spacing:10.499410pt;}
.ws3c{word-spacing:10.503661pt;}
.ws92{word-spacing:10.516413pt;}
.ws21a{word-spacing:10.529166pt;}
.ws1b7{word-spacing:10.563172pt;}
.ws21{word-spacing:10.577931pt;}
.ws23{word-spacing:10.589408pt;}
.ws13e{word-spacing:10.601429pt;}
.wsca{word-spacing:10.609930pt;}
.ws2a6{word-spacing:10.613065pt;}
.ws2a5{word-spacing:10.640269pt;}
.ws1b6{word-spacing:10.673692pt;}
.ws1d0{word-spacing:10.682193pt;}
.wsd3{word-spacing:10.716200pt;}
.ws127{word-spacing:10.728952pt;}
.wsb8{word-spacing:10.733203pt;}
.ws2b7{word-spacing:10.755887pt;}
.wsd4{word-spacing:10.767209pt;}
.ws144{word-spacing:10.788342pt;}
.ws126{word-spacing:10.788463pt;}
.ws233{word-spacing:10.792713pt;}
.ws104{word-spacing:10.801215pt;}
.ws1b{word-spacing:10.811296pt;}
.wsf4{word-spacing:10.813967pt;}
.ws2b6{word-spacing:10.830699pt;}
.ws2a4{word-spacing:10.844301pt;}
.ws1c{word-spacing:10.861030pt;}
.ws2af{word-spacing:10.895309pt;}
.ws295{word-spacing:10.932715pt;}
.wsb1{word-spacing:10.954243pt;}
.ws1df{word-spacing:10.975799pt;}
.wsd2{word-spacing:10.988249pt;}
.ws271{word-spacing:10.994928pt;}
.ws2cb{word-spacing:11.000725pt;}
.ws1d6{word-spacing:11.009503pt;}
.ws273{word-spacing:11.010230pt;}
.ws15c{word-spacing:11.013754pt;}
.ws145{word-spacing:11.021707pt;}
.ws1d7{word-spacing:11.022255pt;}
.ws2ca{word-spacing:11.034731pt;}
.ws272{word-spacing:11.044661pt;}
.ws17c{word-spacing:11.047760pt;}
.ws14a{word-spacing:11.048487pt;}
.ws2ae{word-spacing:11.078938pt;}
.ws232{word-spacing:11.090268pt;}
.ws289{word-spacing:11.092540pt;}
.ws3b{word-spacing:11.094518pt;}
.ws2c8{word-spacing:11.095940pt;}
.ws196{word-spacing:11.103020pt;}
.ws2cc{word-spacing:11.106142pt;}
.ws19d{word-spacing:11.107271pt;}
.ws28e{word-spacing:11.116343pt;}
.ws288{word-spacing:11.123145pt;}
.ws29f{word-spacing:11.126545pt;}
.ws2d5{word-spacing:11.129946pt;}
.ws26b{word-spacing:11.132775pt;}
.ws2b1{word-spacing:11.133346pt;}
.ws28a{word-spacing:11.140147pt;}
.ws94{word-spacing:11.141277pt;}
.ws296{word-spacing:11.143548pt;}
.ws180{word-spacing:11.145528pt;}
.ws2b3{word-spacing:11.150349pt;}
.ws1f5{word-spacing:11.154029pt;}
.ws2c9{word-spacing:11.160550pt;}
.ws290{word-spacing:11.163951pt;}
.ws2bc{word-spacing:11.170752pt;}
.ws256{word-spacing:11.174153pt;}
.ws291{word-spacing:11.180954pt;}
.wsb{word-spacing:11.184354pt;}
.ws2be{word-spacing:11.191155pt;}
.ws2a0{word-spacing:11.197956pt;}
.ws2a1{word-spacing:11.201357pt;}
.ws2c2{word-spacing:11.208158pt;}
.ws2d2{word-spacing:11.211558pt;}
.ws10{word-spacing:11.214959pt;}
.ws2c1{word-spacing:11.218359pt;}
.ws26c{word-spacing:11.222042pt;}
.ws2dc{word-spacing:11.225161pt;}
.ws284{word-spacing:11.228561pt;}
.ws18c{word-spacing:11.230543pt;}
.wsa{word-spacing:11.235362pt;}
.ws2a3{word-spacing:11.238763pt;}
.ws2a2{word-spacing:11.248964pt;}
.wse9{word-spacing:11.255765pt;}
.ws2c5{word-spacing:11.259166pt;}
.ws29e{word-spacing:11.265967pt;}
.ws2c6{word-spacing:11.269367pt;}
.ws2ad{word-spacing:11.272768pt;}
.ws2a7{word-spacing:11.279569pt;}
.ws55{word-spacing:11.281552pt;}
.ws28d{word-spacing:11.289771pt;}
.ws292{word-spacing:11.293171pt;}
.ws2db{word-spacing:11.296572pt;}
.ws257{word-spacing:11.303373pt;}
.ws298{word-spacing:11.306773pt;}
.ws2d4{word-spacing:11.313574pt;}
.ws2ce{word-spacing:11.316975pt;}
.ws26d{word-spacing:11.319809pt;}
.ws2ba{word-spacing:11.323776pt;}
.wsb9{word-spacing:11.324060pt;}
.ws29b{word-spacing:11.330577pt;}
.ws299{word-spacing:11.333978pt;}
.ws11{word-spacing:11.337378pt;}
.ws258{word-spacing:11.340779pt;}
.wsf{word-spacing:11.344179pt;}
.ws2c0{word-spacing:11.354381pt;}
.ws2d7{word-spacing:11.364582pt;}
.ws56{word-spacing:11.370819pt;}
.ws7d{word-spacing:11.375069pt;}
.wsb5{word-spacing:11.379320pt;}
.ws254{word-spacing:11.381585pt;}
.ws287{word-spacing:11.395187pt;}
.ws2d0{word-spacing:11.398588pt;}
.ws18b{word-spacing:11.404825pt;}
.ws285{word-spacing:11.408789pt;}
.ws2bf{word-spacing:11.415590pt;}
.ws297{word-spacing:11.425792pt;}
.ws2cf{word-spacing:11.429193pt;}
.ws248{word-spacing:11.434580pt;}
.wsc{word-spacing:11.446195pt;}
.ws2aa{word-spacing:11.446291pt;}
.ws2ac{word-spacing:11.459797pt;}
.ws2d1{word-spacing:11.469999pt;}
.ws12{word-spacing:11.473399pt;}
.ws2c4{word-spacing:11.476800pt;}
.ws2ab{word-spacing:11.497203pt;}
.ws2cd{word-spacing:11.500604pt;}
.ws2c3{word-spacing:11.504033pt;}
.ws114{word-spacing:11.511094pt;}
.ws28f{word-spacing:11.514206pt;}
.ws29d{word-spacing:11.524407pt;}
.ws1c5{word-spacing:11.528097pt;}
.ws23d{word-spacing:11.536599pt;}
.ws2a9{word-spacing:11.538010pt;}
.wse{word-spacing:11.558413pt;}
.ws2d9{word-spacing:11.582217pt;}
.ws2d6{word-spacing:11.592418pt;}
.ws2bd{word-spacing:11.599219pt;}
.ws2bb{word-spacing:11.602620pt;}
.ws1a{word-spacing:11.629986pt;}
.ws10c{word-spacing:11.676874pt;}
.wsb4{word-spacing:11.681125pt;}
.ws1a5{word-spacing:11.698128pt;}
.ws2b5{word-spacing:11.711437pt;}
.ws221{word-spacing:11.740636pt;}
.ws25b{word-spacing:11.749137pt;}
.ws115{word-spacing:11.766141pt;}
.ws19{word-spacing:11.767710pt;}
.wscd{word-spacing:11.774642pt;}
.ws21d{word-spacing:11.778893pt;}
.ws14f{word-spacing:11.786838pt;}
.wscc{word-spacing:11.812899pt;}
.ws109{word-spacing:11.842655pt;}
.ws8f{word-spacing:11.863908pt;}
.ws49{word-spacing:11.885162pt;}
.ws238{word-spacing:11.919168pt;}
.ws1c9{word-spacing:11.927670pt;}
.ws6c{word-spacing:11.978679pt;}
.ws152{word-spacing:11.981946pt;}
.ws16b{word-spacing:11.999933pt;}
.ws9e{word-spacing:12.008435pt;}
.ws48{word-spacing:12.012685pt;}
.ws2{word-spacing:12.016936pt;}
.ws112{word-spacing:12.050942pt;}
.ws1ba{word-spacing:12.186967pt;}
.ws1d2{word-spacing:12.229475pt;}
.ws154{word-spacing:12.259230pt;}
.ws1d1{word-spacing:12.280484pt;}
.ws260{word-spacing:12.297487pt;}
.ws91{word-spacing:12.301738pt;}
.ws250{word-spacing:12.326255pt;}
.ws155{word-spacing:12.344246pt;}
.ws214{word-spacing:12.356998pt;}
.ws90{word-spacing:12.365500pt;}
.ws20{word-spacing:12.372163pt;}
.wsa5{word-spacing:12.386753pt;}
.ws20b{word-spacing:12.488772pt;}
.wsea{word-spacing:12.514277pt;}
.ws22d{word-spacing:12.522778pt;}
.ws1a1{word-spacing:12.535531pt;}
.ws22e{word-spacing:12.544032pt;}
.ws24f{word-spacing:12.548143pt;}
.ws268{word-spacing:12.561035pt;}
.ws2a{word-spacing:12.563446pt;}
.ws1f9{word-spacing:12.578038pt;}
.ws12a{word-spacing:12.582289pt;}
.ws1a9{word-spacing:12.586399pt;}
.ws1d5{word-spacing:12.603543pt;}
.ws216{word-spacing:12.612044pt;}
.ws5c{word-spacing:12.624656pt;}
.ws266{word-spacing:12.633298pt;}
.ws267{word-spacing:12.646051pt;}
.ws2b{word-spacing:12.647610pt;}
.ws1b9{word-spacing:12.650301pt;}
.ws158{word-spacing:12.658803pt;}
.ws243{word-spacing:12.671555pt;}
.ws23c{word-spacing:12.680057pt;}
.ws139{word-spacing:12.692809pt;}
.ws1b2{word-spacing:12.693518pt;}
.ws5d{word-spacing:12.697343pt;}
.ws6d{word-spacing:12.718314pt;}
.ws5b{word-spacing:12.724123pt;}
.ws140{word-spacing:12.790577pt;}
.ws24e{word-spacing:12.812113pt;}
.ws5e{word-spacing:12.819764pt;}
.ws1e9{word-spacing:12.831241pt;}
.ws252{word-spacing:12.854195pt;}
.ws14{word-spacing:12.880975pt;}
.ws1d9{word-spacing:12.884800pt;}
.ws13f{word-spacing:12.896846pt;}
.ws5a{word-spacing:12.900103pt;}
.ws226{word-spacing:12.905348pt;}
.ws1aa{word-spacing:12.915406pt;}
.ws7f{word-spacing:12.918100pt;}
.ws1a3{word-spacing:12.952106pt;}
.ws53{word-spacing:12.960608pt;}
.ws1e0{word-spacing:12.976616pt;}
.ws141{word-spacing:12.977611pt;}
.ws128{word-spacing:12.994614pt;}
.wsfa{word-spacing:13.011617pt;}
.ws6e{word-spacing:13.024369pt;}
.ws237{word-spacing:13.041373pt;}
.ws188{word-spacing:13.045623pt;}
.ws189{word-spacing:13.066877pt;}
.ws225{word-spacing:13.092382pt;}
.ws54{word-spacing:13.096633pt;}
.ws15b{word-spacing:13.122137pt;}
.ws1ce{word-spacing:13.139140pt;}
.ws15a{word-spacing:13.160394pt;}
.ws4b{word-spacing:13.168896pt;}
.ws281{word-spacing:13.177397pt;}
.ws159{word-spacing:13.181648pt;}
.ws13a{word-spacing:13.185899pt;}
.ws177{word-spacing:13.211404pt;}
.ws276{word-spacing:13.215654pt;}
.ws1f3{word-spacing:13.228407pt;}
.ws261{word-spacing:13.262413pt;}
.ws227{word-spacing:13.270914pt;}
.ws1e8{word-spacing:13.286494pt;}
.ws4e{word-spacing:13.292168pt;}
.ws116{word-spacing:13.296419pt;}
.ws1e1{word-spacing:13.305622pt;}
.wsa4{word-spacing:13.313422pt;}
.ws1cd{word-spacing:13.321924pt;}
.ws178{word-spacing:13.338927pt;}
.ws280{word-spacing:13.368682pt;}
.ws23a{word-spacing:13.389936pt;}
.ws259{word-spacing:13.432107pt;}
.ws278{word-spacing:13.436695pt;}
.ws8b{word-spacing:13.440945pt;}
.wsc3{word-spacing:13.445196pt;}
.ws275{word-spacing:13.466450pt;}
.ws277{word-spacing:13.491955pt;}
.ws229{word-spacing:13.513208pt;}
.ws153{word-spacing:13.521710pt;}
.ws63{word-spacing:13.547215pt;}
.ws65{word-spacing:13.585472pt;}
.ws27e{word-spacing:13.606725pt;}
.ws1dc{word-spacing:13.615500pt;}
.ws224{word-spacing:13.623729pt;}
.ws82{word-spacing:13.649233pt;}
.ws197{word-spacing:13.683239pt;}
.ws203{word-spacing:13.700242pt;}
.ws1d{word-spacing:13.711142pt;}
.ws129{word-spacing:13.717246pt;}
.ws204{word-spacing:13.764004pt;}
.ws27f{word-spacing:13.768255pt;}
.ws64{word-spacing:13.781007pt;}
.ws76{word-spacing:13.789509pt;}
.ws12f{word-spacing:13.798010pt;}
.wsed{word-spacing:13.806512pt;}
.ws11d{word-spacing:13.815013pt;}
.ws223{word-spacing:13.849020pt;}
.ws1bc{word-spacing:13.874524pt;}
.ws20e{word-spacing:13.883026pt;}
.ws15{word-spacing:13.883296pt;}
.ws201{word-spacing:13.887276pt;}
.wse6{word-spacing:13.891527pt;}
.ws12d{word-spacing:13.951038pt;}
.ws22a{word-spacing:13.959540pt;}
.ws1ca{word-spacing:13.993546pt;}
.ws8c{word-spacing:13.997797pt;}
.ws200{word-spacing:14.002047pt;}
.ws0{word-spacing:14.014800pt;}
.ws1de{word-spacing:14.036322pt;}
.wsf8{word-spacing:14.048806pt;}
.wsb6{word-spacing:14.057307pt;}
.ws13d{word-spacing:14.078561pt;}
.ws274{word-spacing:14.082812pt;}
.wsd1{word-spacing:14.095564pt;}
.ws20d{word-spacing:14.099815pt;}
.ws3d{word-spacing:14.116818pt;}
.ws130{word-spacing:14.125320pt;}
.ws175{word-spacing:14.129571pt;}
.ws17b{word-spacing:14.133821pt;}
.ws13c{word-spacing:14.138072pt;}
.ws8d{word-spacing:14.142323pt;}
.ws17e{word-spacing:14.146574pt;}
.ws19e{word-spacing:14.150824pt;}
.ws10a{word-spacing:14.155075pt;}
.ws9b{word-spacing:14.159326pt;}
.wsf1{word-spacing:14.163577pt;}
.wsa6{word-spacing:14.167828pt;}
.wsff{word-spacing:14.180580pt;}
.ws60{word-spacing:14.193332pt;}
.ws282{word-spacing:14.201834pt;}
.ws17f{word-spacing:14.210335pt;}
.ws206{word-spacing:14.218837pt;}
.wse8{word-spacing:14.227338pt;}
.ws68{word-spacing:14.235840pt;}
.wsde{word-spacing:14.240091pt;}
.ws8e{word-spacing:14.248592pt;}
.ws217{word-spacing:14.274097pt;}
.ws1c7{word-spacing:14.278348pt;}
.ws67{word-spacing:14.286849pt;}
.ws1f4{word-spacing:14.295351pt;}
.ws18a{word-spacing:14.303852pt;}
.ws179{word-spacing:14.316605pt;}
.ws1ab{word-spacing:14.319420pt;}
.ws35{word-spacing:14.337858pt;}
.ws246{word-spacing:14.346360pt;}
.ws61{word-spacing:14.359112pt;}
.ws264{word-spacing:14.380366pt;}
.ws1ff{word-spacing:14.384617pt;}
.wsdd{word-spacing:14.393119pt;}
.ws103{word-spacing:14.397369pt;}
.ws9f{word-spacing:14.401620pt;}
.wsa0{word-spacing:14.418623pt;}
.ws193{word-spacing:14.427125pt;}
.wsb7{word-spacing:14.435626pt;}
.ws134{word-spacing:14.452629pt;}
.wse7{word-spacing:14.456880pt;}
.ws1ee{word-spacing:14.503639pt;}
.ws4d{word-spacing:14.507889pt;}
.ws151{word-spacing:14.518354pt;}
.ws265{word-spacing:14.529143pt;}
.ws1ea{word-spacing:14.533394pt;}
.ws14e{word-spacing:14.552785pt;}
.ws1bd{word-spacing:14.563149pt;}
.ws135{word-spacing:14.571651pt;}
.ws1e2{word-spacing:14.621647pt;}
.ws172{word-spacing:14.639663pt;}
.ws39{word-spacing:14.643914pt;}
.ws1fc{word-spacing:14.648165pt;}
.ws245{word-spacing:14.660917pt;}
.ws173{word-spacing:14.677920pt;}
.ws1be{word-spacing:14.686422pt;}
.ws194{word-spacing:14.699174pt;}
.ws9d{word-spacing:14.720428pt;}
.ws242{word-spacing:14.737431pt;}
.ws1fd{word-spacing:14.754434pt;}
.wsf6{word-spacing:14.826697pt;}
.ws3a{word-spacing:14.852202pt;}
.wsf7{word-spacing:14.877707pt;}
.ws18e{word-spacing:14.903211pt;}
.ws75{word-spacing:14.907462pt;}
.ws18d{word-spacing:14.945719pt;}
.ws22b{word-spacing:14.975474pt;}
.ws26f{word-spacing:15.000979pt;}
.ws3e{word-spacing:15.022233pt;}
.wsc4{word-spacing:15.030735pt;}
.wsfe{word-spacing:15.064741pt;}
.ws1cc{word-spacing:15.077493pt;}
.ws1cb{word-spacing:15.085995pt;}
.ws28{word-spacing:15.092202pt;}
.ws3f{word-spacing:15.098747pt;}
.ws18{word-spacing:15.122808pt;}
.wsc6{word-spacing:15.137004pt;}
.ws185{word-spacing:15.158258pt;}
.ws1ad{word-spacing:15.164890pt;}
.ws16{word-spacing:15.168715pt;}
.wsac{word-spacing:15.200765pt;}
.ws186{word-spacing:15.205016pt;}
.ws1af{word-spacing:15.206972pt;}
.wsd7{word-spacing:15.209267pt;}
.ws1e6{word-spacing:15.222275pt;}
.ws26e{word-spacing:15.230521pt;}
.ws146{word-spacing:15.241403pt;}
.ws234{word-spacing:15.247524pt;}
.wse4{word-spacing:15.251775pt;}
.ws36{word-spacing:15.264527pt;}
.ws86{word-spacing:15.302784pt;}
.wsd6{word-spacing:15.307035pt;}
.wsa7{word-spacing:15.324038pt;}
.ws27c{word-spacing:15.332539pt;}
.ws27{word-spacing:15.344696pt;}
.ws1ae{word-spacing:15.348521pt;}
.ws279{word-spacing:15.375047pt;}
.ws27a{word-spacing:15.387799pt;}
.ws87{word-spacing:15.400552pt;}
.ws1d8{word-spacing:15.438809pt;}
.wsc5{word-spacing:15.506821pt;}
.ws27b{word-spacing:15.553580pt;}
.ws66{word-spacing:15.570583pt;}
.ws1e3{word-spacing:15.574235pt;}
.ws119{word-spacing:15.604589pt;}
.ws1d4{word-spacing:15.625843pt;}
.ws167{word-spacing:15.630094pt;}
.ws222{word-spacing:15.676852pt;}
.ws1d3{word-spacing:15.681103pt;}
.ws29{word-spacing:15.719610pt;}
.wsba{word-spacing:15.740614pt;}
.wsd0{word-spacing:15.744864pt;}
.ws1e4{word-spacing:15.754040pt;}
.ws46{word-spacing:15.770369pt;}
.ws51{word-spacing:15.838381pt;}
.ws1ef{word-spacing:15.851134pt;}
.ws198{word-spacing:15.855385pt;}
.ws1eb{word-spacing:15.859635pt;}
.ws47{word-spacing:15.885140pt;}
.ws45{word-spacing:15.906394pt;}
.ws50{word-spacing:15.931898pt;}
.ws4c{word-spacing:15.940400pt;}
.wsbb{word-spacing:15.970155pt;}
.ws133{word-spacing:15.987159pt;}
.ws1a0{word-spacing:16.008412pt;}
.wscf{word-spacing:16.106180pt;}
.wse3{word-spacing:16.152939pt;}
.ws162{word-spacing:16.212449pt;}
.ws163{word-spacing:16.233703pt;}
.ws132{word-spacing:16.242205pt;}
.wsf5{word-spacing:16.284713pt;}
.ws161{word-spacing:16.369728pt;}
.wsa3{word-spacing:16.493001pt;}
.ws59{word-spacing:16.535508pt;}
.ws57{word-spacing:16.586518pt;}
.ws1c1{word-spacing:16.607771pt;}
.ws1f2{word-spacing:16.612022pt;}
.ws118{word-spacing:16.675784pt;}
.ws19c{word-spacing:16.692787pt;}
.ws1f1{word-spacing:16.709790pt;}
.ws58{word-spacing:16.714041pt;}
.ws1ac{word-spacing:16.737233pt;}
.ws247{word-spacing:16.756548pt;}
.ws20a{word-spacing:16.777802pt;}
.ws236{word-spacing:16.790555pt;}
.ws17a{word-spacing:16.794805pt;}
.ws31{word-spacing:16.803307pt;}
.wsad{word-spacing:16.816059pt;}
.ws1ec{word-spacing:16.862818pt;}
.ws2f{word-spacing:16.867069pt;}
.ws269{word-spacing:16.879821pt;}
.ws218{word-spacing:16.884072pt;}
.ws220{word-spacing:16.905326pt;}
.ws209{word-spacing:16.909576pt;}
.ws8a{word-spacing:16.913827pt;}
.ws142{word-spacing:16.926579pt;}
.ws16e{word-spacing:16.956335pt;}
.ws2e{word-spacing:16.977589pt;}
.ws21e{word-spacing:17.015846pt;}
.ws21f{word-spacing:17.024347pt;}
.ws26a{word-spacing:17.028598pt;}
.ws235{word-spacing:17.054103pt;}
.ws244{word-spacing:17.062604pt;}
.wsdb{word-spacing:17.071106pt;}
.ws37{word-spacing:17.079607pt;}
.wsda{word-spacing:17.096610pt;}
.wsd5{word-spacing:17.117864pt;}
.ws1b5{word-spacing:17.139118pt;}
.ws117{word-spacing:17.147620pt;}
.ws16d{word-spacing:17.202880pt;}
.wsfb{word-spacing:17.211381pt;}
.ws34{word-spacing:17.219883pt;}
.ws1fe{word-spacing:17.304898pt;}
.ws4{word-spacing:17.307195pt;}
.ws1cf{word-spacing:17.321901pt;}
.ws230{word-spacing:17.368660pt;}
.ws20f{word-spacing:17.389914pt;}
.ws249{word-spacing:17.419669pt;}
.ws6b{word-spacing:17.474929pt;}
.ws211{word-spacing:17.487681pt;}
.ws1b4{word-spacing:17.581199pt;}
.ws62{word-spacing:17.649211pt;}
.ws83{word-spacing:17.742728pt;}
.ws7a{word-spacing:17.746979pt;}
.ws16c{word-spacing:17.759731pt;}
.ws1c6{word-spacing:17.780985pt;}
.ws11c{word-spacing:17.785236pt;}
.ws138{word-spacing:17.793737pt;}
.ws136{word-spacing:17.823493pt;}
.wsc0{word-spacing:17.883003pt;}
.wse2{word-spacing:17.921260pt;}
.ws88{word-spacing:17.980771pt;}
.wsbf{word-spacing:18.036031pt;}
.ws18f{word-spacing:18.048784pt;}
.ws11b{word-spacing:18.065787pt;}
.ws1fb{word-spacing:18.121047pt;}
.ws1fa{word-spacing:18.172056pt;}
.ws262{word-spacing:18.189059pt;}
.wsd8{word-spacing:18.206062pt;}
.ws15f{word-spacing:18.218815pt;}
.ws181{word-spacing:18.240068pt;}
.wsdf{word-spacing:18.248570pt;}
.ws19a{word-spacing:18.269824pt;}
.ws219{word-spacing:18.359090pt;}
.ws69{word-spacing:18.393096pt;}
.ws1f0{word-spacing:18.431353pt;}
.ws19b{word-spacing:18.482362pt;}
.ws20c{word-spacing:18.592883pt;}
.ws215{word-spacing:18.605635pt;}
.ws208{word-spacing:18.626889pt;}
.ws72{word-spacing:18.639641pt;}
.ws71{word-spacing:18.652393pt;}
.ws25d{word-spacing:18.686400pt;}
.ws7{word-spacing:18.699125pt;}
.ws8{word-spacing:18.783609pt;}
.ws182{word-spacing:18.788418pt;}
.ws183{word-spacing:18.792669pt;}
.ws70{word-spacing:18.796920pt;}
.wse5{word-spacing:18.813923pt;}
.ws207{word-spacing:18.873434pt;}
.ws41{word-spacing:18.907440pt;}
.ws25c{word-spacing:18.911691pt;}
.ws111{word-spacing:18.928694pt;}
.ws1f7{word-spacing:18.937195pt;}
.ws77{word-spacing:18.954198pt;}
.ws6{word-spacing:18.958210pt;}
.ws40{word-spacing:18.962700pt;}
.ws1f8{word-spacing:18.971201pt;}
.ws9{word-spacing:18.975106pt;}
.ws10d{word-spacing:19.005208pt;}
.ws1a2{word-spacing:19.009458pt;}
.ws85{word-spacing:19.013709pt;}
.ws15e{word-spacing:19.017960pt;}
.ws10e{word-spacing:19.030712pt;}
.ws213{word-spacing:19.124229pt;}
.wsfd{word-spacing:19.149734pt;}
.wsf0{word-spacing:19.170988pt;}
.ws1a6{word-spacing:19.230499pt;}
.ws7e{word-spacing:19.234749pt;}
.wsaa{word-spacing:19.251752pt;}
.ws84{word-spacing:19.256003pt;}
.ws1e5{word-spacing:19.315724pt;}
.ws24d{word-spacing:19.366523pt;}
.ws1b3{word-spacing:19.370774pt;}
.ws143{word-spacing:19.426034pt;}
.ws239{word-spacing:19.498297pt;}
.wsef{word-spacing:19.515300pt;}
.wsdc{word-spacing:19.536554pt;}
.wse0{word-spacing:19.557808pt;}
.ws25{word-spacing:19.644730pt;}
.ws26{word-spacing:19.698289pt;}
.ws7c{word-spacing:19.770347pt;}
.ws43{word-spacing:19.791601pt;}
.ws81{word-spacing:19.800102pt;}
.ws25e{word-spacing:19.829858pt;}
.wsce{word-spacing:19.838359pt;}
.wsc2{word-spacing:19.868115pt;}
.ws7b{word-spacing:19.910622pt;}
.wsa9{word-spacing:19.995638pt;}
.wsf9{word-spacing:20.174170pt;}
.wsbe{word-spacing:20.229430pt;}
.ws6f{word-spacing:20.280440pt;}
.wsbd{word-spacing:20.305944pt;}
.ws16a{word-spacing:20.395210pt;}
.wsc1{word-spacing:20.441969pt;}
.ws228{word-spacing:20.509981pt;}
.ws52{word-spacing:20.548238pt;}
.wsa1{word-spacing:20.565241pt;}
.ws191{word-spacing:20.577994pt;}
.wsee{word-spacing:20.586495pt;}
.ws23b{word-spacing:20.743774pt;}
.ws6a{word-spacing:20.769279pt;}
.ws212{word-spacing:20.786282pt;}
.ws10f{word-spacing:20.837291pt;}
.ws190{word-spacing:20.841542pt;}
.ws2d{word-spacing:20.998820pt;}
.ws1c4{word-spacing:21.015823pt;}
.ws110{word-spacing:21.054080pt;}
.ws199{word-spacing:21.079585pt;}
.ws283{word-spacing:21.093508pt;}
.ws171{word-spacing:21.164600pt;}
.ws174{word-spacing:21.185854pt;}
.ws241{word-spacing:21.245365pt;}
.ws1b8{word-spacing:21.249616pt;}
.ws2d8{word-spacing:21.331546pt;}
.ws29c{word-spacing:21.334946pt;}
.ws78{word-spacing:21.372888pt;}
.wsae{word-spacing:21.381390pt;}
.ws79{word-spacing:21.436650pt;}
.ws2c{word-spacing:21.440901pt;}
.ws1c8{word-spacing:21.466405pt;}
.ws9c{word-spacing:21.487659pt;}
.ws16f{word-spacing:21.542919pt;}
.ws170{word-spacing:21.559922pt;}
.ws80{word-spacing:21.593929pt;}
.ws108{word-spacing:21.776712pt;}
.ws11f{word-spacing:21.899984pt;}
.ws11e{word-spacing:21.955244pt;}
.ws169{word-spacing:21.976498pt;}
.ws156{word-spacing:22.091269pt;}
.wsd9{word-spacing:22.206040pt;}
.ws113{word-spacing:22.257049pt;}
.ws4a{word-spacing:22.359068pt;}
.ws166{word-spacing:22.699130pt;}
.ws137{word-spacing:22.779894pt;}
.ws22c{word-spacing:22.801148pt;}
.ws165{word-spacing:22.881913pt;}
.wseb{word-spacing:23.158213pt;}
.ws240{word-spacing:23.332495pt;}
.ws38{word-spacing:23.430263pt;}
.wsc9{word-spacing:23.447266pt;}
.ws210{word-spacing:23.553535pt;}
.ws101{word-spacing:23.587541pt;}
.ws102{word-spacing:23.727817pt;}
.ws231{word-spacing:23.948857pt;}
.ws5{word-spacing:23.958043pt;}
.ws19f{word-spacing:24.322925pt;}
.ws205{word-spacing:24.335677pt;}
.ws1da{word-spacing:24.354109pt;}
.ws1{word-spacing:24.800692pt;}
.ws106{word-spacing:25.079563pt;}
.ws107{word-spacing:25.139073pt;}
.ws1c0{word-spacing:25.181581pt;}
.ws44{word-spacing:25.279349pt;}
.ws1a7{word-spacing:25.491888pt;}
.ws147{word-spacing:25.677785pt;}
.ws95{word-spacing:26.299535pt;}
.ws96{word-spacing:26.363296pt;}
.ws33{word-spacing:26.452562pt;}
.ws131{word-spacing:26.792624pt;}
.ws25f{word-spacing:27.026417pt;}
.ws32{word-spacing:27.226203pt;}
.ws4f{word-spacing:27.702290pt;}
.wse1{word-spacing:28.310150pt;}
.ws148{word-spacing:28.535548pt;}
.ws149{word-spacing:28.562328pt;}
.ws160{word-spacing:28.786237pt;}
.ws164{word-spacing:29.789420pt;}
.ws42{word-spacing:31.047648pt;}
.ws120{word-spacing:34.333152pt;}
.wsa8{word-spacing:34.397258pt;}
.ws168{word-spacing:41.610820pt;}
.ws1bf{word-spacing:43.982752pt;}
.ws98{word-spacing:46.448200pt;}
.ws25a{word-spacing:173.882871pt;}
._22{margin-left:-826.083139pt;}
._1c{margin-left:-222.397280pt;}
._1e{margin-left:-149.551584pt;}
._19{margin-left:-123.317600pt;}
._1d{margin-left:-93.231936pt;}
._1b{margin-left:-87.047968pt;}
._1a{margin-left:-84.600768pt;}
._12{margin-left:-16.740396pt;}
._11{margin-left:-14.735408pt;}
._25{margin-left:-13.683648pt;}
._29{margin-left:-12.730350pt;}
._14{margin-left:-8.539804pt;}
._f{width:1.097963pt;}
._2e{width:6.549519pt;}
._4{width:8.466171pt;}
._5{width:9.977304pt;}
._3{width:10.975799pt;}
._1{width:12.224917pt;}
._2{width:13.936262pt;}
._0{width:15.039236pt;}
._7{width:16.668372pt;}
._9{width:17.976520pt;}
._10{width:18.877684pt;}
._6{width:20.578189pt;}
._8{width:22.121024pt;}
._17{width:23.557786pt;}
._b{width:24.548216pt;}
._d{width:26.342042pt;}
._a{width:27.408986pt;}
._e{width:28.675717pt;}
._16{width:30.061469pt;}
._c{width:32.378140pt;}
._15{width:35.629982pt;}
._2b{width:37.378420pt;}
._2a{width:42.652260pt;}
._2d{width:45.155965pt;}
._13{width:47.493890pt;}
._24{width:70.477632pt;}
._27{width:72.557856pt;}
._2c{width:80.429866pt;}
._20{width:84.637440pt;}
._1f{width:108.317472pt;}
._32{width:173.916877pt;}
._31{width:185.611311pt;}
._33{width:188.386146pt;}
._35{width:190.191829pt;}
._21{width:205.277933pt;}
._39{width:206.191156pt;}
._34{width:222.044442pt;}
._23{width:242.178133pt;}
._26{width:243.171638pt;}
._28{width:297.759103pt;}
._30{width:347.364480pt;}
._2f{width:348.571669pt;}
._36{width:513.415923pt;}
._37{width:543.653466pt;}
._38{width:546.676540pt;}
._18{width:1924.860277pt;}
.fs6{font-size:22.666667pt;}
.fsa{font-size:25.501333pt;}
.fsd{font-size:28.334400pt;}
.fsf{font-size:29.760000pt;}
.fs12{font-size:29.773867pt;}
.fs7{font-size:34.005333pt;}
.fs10{font-size:34.133333pt;}
.fs8{font-size:37.193600pt;}
.fs5{font-size:37.544533pt;}
.fs9{font-size:38.256533pt;}
.fsb{font-size:38.400000pt;}
.fs0{font-size:42.507733pt;}
.fse{font-size:42.560000pt;}
.fs11{font-size:42.580267pt;}
.fs2{font-size:51.008533pt;}
.fsc{font-size:53.333333pt;}
.fs4{font-size:56.322667pt;}
.fs3{font-size:71.730667pt;}
.fs1{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:4.210373pt;}
.yc3{bottom:8.971747pt;}
.ydf{bottom:36.940800pt;}
.y92{bottom:64.858219pt;}
.ydd{bottom:64.860310pt;}
.y185{bottom:64.864493pt;}
.y1f4{bottom:64.866452pt;}
.y50{bottom:64.881533pt;}
.y1b2{bottom:65.088411pt;}
.y192{bottom:65.839891pt;}
.y146{bottom:70.528110pt;}
.y234{bottom:71.888507pt;}
.y4f{bottom:77.691747pt;}
.y91{bottom:78.766749pt;}
.y184{bottom:78.773024pt;}
.y1f3{bottom:78.774982pt;}
.y1b1{bottom:78.996941pt;}
.y191{bottom:79.748421pt;}
.y145{bottom:84.436640pt;}
.y233{bottom:85.872489pt;}
.y4a{bottom:90.330654pt;}
.y90{bottom:92.750731pt;}
.ydc{bottom:92.752822pt;}
.y183{bottom:92.757005pt;}
.y1f2{bottom:92.758964pt;}
.y1b0{bottom:92.980923pt;}
.y190{bottom:93.732403pt;}
.y144{bottom:98.420622pt;}
.y232{bottom:99.781019pt;}
.y49{bottom:103.105467pt;}
.y8f{bottom:106.659261pt;}
.y182{bottom:106.665536pt;}
.y1f1{bottom:106.667494pt;}
.y1af{bottom:106.889453pt;}
.y18f{bottom:107.640933pt;}
.y143{bottom:112.329152pt;}
.y231{bottom:113.765001pt;}
.y8e{bottom:120.643243pt;}
.y181{bottom:120.649517pt;}
.y204{bottom:120.651476pt;}
.y1ae{bottom:120.873435pt;}
.ydb{bottom:121.326520pt;}
.y4d{bottom:125.177810pt;}
.y142{bottom:126.313134pt;}
.y230{bottom:127.673531pt;}
.y8d{bottom:134.551773pt;}
.y180{bottom:134.558048pt;}
.y1f0{bottom:134.560006pt;}
.y1ad{bottom:134.781965pt;}
.yda{bottom:135.235051pt;}
.y4c{bottom:137.877067pt;}
.y1bf{bottom:139.918051pt;}
.y141{bottom:140.221664pt;}
.y22f{bottom:141.657512pt;}
.y4b{bottom:142.185733pt;}
.y8c{bottom:148.535755pt;}
.y17f{bottom:148.542029pt;}
.y203{bottom:148.543988pt;}
.y1ac{bottom:148.765947pt;}
.yd9{bottom:149.219032pt;}
.y1be{bottom:152.617308pt;}
.y140{bottom:154.205646pt;}
.y22e{bottom:155.566043pt;}
.y8b{bottom:162.519736pt;}
.y17e{bottom:162.526011pt;}
.y202{bottom:162.527969pt;}
.y1ab{bottom:162.674477pt;}
.yd8{bottom:163.127563pt;}
.y1bd{bottom:165.392120pt;}
.y13f{bottom:168.114176pt;}
.y22d{bottom:169.550024pt;}
.y1ef{bottom:176.362111pt;}
.y8a{bottom:176.428267pt;}
.y88{bottom:176.429952pt;}
.y17d{bottom:176.434541pt;}
.y201{bottom:176.436499pt;}
.y1aa{bottom:176.658459pt;}
.yd7{bottom:177.111544pt;}
.y1bc{bottom:178.166933pt;}
.y37{bottom:180.740171pt;}
.y48{bottom:180.744422pt;}
.y89{bottom:181.190533pt;}
.y13e{bottom:182.098158pt;}
.y22c{bottom:183.458555pt;}
.y1ee{bottom:190.270641pt;}
.y87{bottom:190.413934pt;}
.y17c{bottom:190.418523pt;}
.y200{bottom:190.420481pt;}
.y1a9{bottom:190.566989pt;}
.yd6{bottom:191.020074pt;}
.y13a{bottom:194.569887pt;}
.y36{bottom:194.648702pt;}
.y47{bottom:194.652952pt;}
.y13d{bottom:196.006688pt;}
.y22b{bottom:197.442536pt;}
.y1ed{bottom:204.254623pt;}
.y86{bottom:204.322464pt;}
.y17b{bottom:204.327053pt;}
.y1ff{bottom:204.329011pt;}
.y1a8{bottom:204.550971pt;}
.yd5{bottom:205.004056pt;}
.y139{bottom:207.344700pt;}
.y35{bottom:208.632683pt;}
.y46{bottom:208.636934pt;}
.y13c{bottom:209.990670pt;}
.y22a{bottom:211.351067pt;}
.y228{bottom:211.352396pt;}
.y229{bottom:216.113333pt;}
.y1ec{bottom:218.163153pt;}
.y85{bottom:218.306446pt;}
.y1fe{bottom:218.312993pt;}
.y1a7{bottom:218.459501pt;}
.yd4{bottom:218.912586pt;}
.y138{bottom:220.043956pt;}
.y34{bottom:222.541214pt;}
.y45{bottom:222.545464pt;}
.y13b{bottom:223.899200pt;}
.y227{bottom:225.336378pt;}
.y1eb{bottom:232.147135pt;}
.y84{bottom:232.214976pt;}
.y17a{bottom:232.220628pt;}
.y1fd{bottom:232.221523pt;}
.y1a6{bottom:232.443482pt;}
.y137{bottom:232.818769pt;}
.yd3{bottom:232.896568pt;}
.y33{bottom:236.525195pt;}
.y44{bottom:236.529446pt;}
.y226{bottom:239.244908pt;}
.y136{bottom:245.593582pt;}
.y1ea{bottom:246.055665pt;}
.y1fc{bottom:246.205505pt;}
.y1a5{bottom:246.352013pt;}
.yd2{bottom:246.805098pt;}
.y32{bottom:250.433725pt;}
.y43{bottom:250.437976pt;}
.y225{bottom:253.228890pt;}
.y18e{bottom:256.176318pt;}
.y135{bottom:258.368395pt;}
.y1e9{bottom:260.039647pt;}
.y83{bottom:260.107488pt;}
.y179{bottom:260.113140pt;}
.y1fb{bottom:260.114035pt;}
.y1a4{bottom:260.335994pt;}
.yd1{bottom:260.789080pt;}
.y31{bottom:264.417707pt;}
.y42{bottom:264.421958pt;}
.y224{bottom:267.137420pt;}
.y18d{bottom:268.875574pt;}
.y134{bottom:271.067651pt;}
.y1e8{bottom:273.948177pt;}
.y178{bottom:274.097121pt;}
.y1fa{bottom:274.098017pt;}
.y1a3{bottom:274.244525pt;}
.yd0{bottom:274.697610pt;}
.y30{bottom:278.326237pt;}
.y41{bottom:278.330488pt;}
.y223{bottom:281.121402pt;}
.y18c{bottom:281.650387pt;}
.y133{bottom:283.842464pt;}
.y1e7{bottom:287.932159pt;}
.y82{bottom:288.000000pt;}
.y177{bottom:288.005652pt;}
.y1f9{bottom:288.006547pt;}
.y80{bottom:288.009599pt;}
.y1a2{bottom:288.228506pt;}
.y2f{bottom:292.310219pt;}
.y40{bottom:292.314470pt;}
.y81{bottom:292.762133pt;}
.y189{bottom:294.424985pt;}
.y18b{bottom:294.425200pt;}
.y222{bottom:295.029932pt;}
.y132{bottom:296.617277pt;}
.y18a{bottom:298.658267pt;}
.y1e6{bottom:301.916140pt;}
.y176{bottom:301.989633pt;}
.y1f8{bottom:301.990529pt;}
.y7f{bottom:301.993581pt;}
.y1a1{bottom:302.212488pt;}
.ycf{bottom:302.590122pt;}
.y2e{bottom:306.218749pt;}
.y3f{bottom:306.223000pt;}
.y188{bottom:307.199798pt;}
.y221{bottom:309.013913pt;}
.y131{bottom:309.316533pt;}
.y1e5{bottom:315.824671pt;}
.y175{bottom:315.898163pt;}
.y1f7{bottom:315.899059pt;}
.y7e{bottom:315.902111pt;}
.y1a0{bottom:316.121018pt;}
.y187{bottom:319.899054pt;}
.y2d{bottom:320.202731pt;}
.y3e{bottom:320.206982pt;}
.y1e4{bottom:329.808652pt;}
.y174{bottom:329.882145pt;}
.y7d{bottom:329.886093pt;}
.y19f{bottom:330.105000pt;}
.yce{bottom:331.163820pt;}
.y186{bottom:332.673867pt;}
.yff{bottom:332.826628pt;}
.y130{bottom:332.829382pt;}
.y2c{bottom:334.111261pt;}
.y3d{bottom:334.115512pt;}
.y220{bottom:336.907488pt;}
.y26d{bottom:343.108511pt;}
.y1e3{bottom:343.717182pt;}
.y173{bottom:343.790675pt;}
.y1f6{bottom:343.791571pt;}
.y7c{bottom:343.794623pt;}
.y19e{bottom:344.013530pt;}
.ycd{bottom:345.147802pt;}
.yfe{bottom:346.810609pt;}
.y12f{bottom:346.813364pt;}
.y2b{bottom:348.095243pt;}
.y3c{bottom:348.099494pt;}
.y26c{bottom:353.766633pt;}
.y1e2{bottom:357.701164pt;}
.y172{bottom:357.774657pt;}
.y7b{bottom:357.778604pt;}
.y19d{bottom:357.997512pt;}
.ycc{bottom:359.056332pt;}
.yfd{bottom:360.719140pt;}
.y12e{bottom:360.721894pt;}
.y2a{bottom:362.003773pt;}
.y3b{bottom:362.008024pt;}
.y2a6{bottom:363.742437pt;}
.y26b{bottom:364.424754pt;}
.y21f{bottom:364.800000pt;}
.y1e1{bottom:371.609694pt;}
.y171{bottom:371.683187pt;}
.y7a{bottom:371.687135pt;}
.y19c{bottom:371.906042pt;}
.ycb{bottom:373.040314pt;}
.y2a5{bottom:374.324897pt;}
.y12d{bottom:374.705876pt;}
.y26a{bottom:375.007214pt;}
.y29{bottom:375.987755pt;}
.y3a{bottom:375.992006pt;}
.y2a4{bottom:384.983019pt;}
.y1e0{bottom:385.593676pt;}
.y269{bottom:385.665335pt;}
.y170{bottom:385.667169pt;}
.y79{bottom:385.671116pt;}
.y19b{bottom:385.890024pt;}
.yca{bottom:386.948844pt;}
.yfc{bottom:388.611652pt;}
.y12c{bottom:388.614406pt;}
.y39{bottom:389.900536pt;}
.y21e{bottom:392.692864pt;}
.y2a3{bottom:395.641158pt;}
.y268{bottom:396.247795pt;}
.y1df{bottom:399.502206pt;}
.y16f{bottom:399.575699pt;}
.y78{bottom:399.579647pt;}
.y19a{bottom:399.798554pt;}
.yc9{bottom:400.932826pt;}
.y28{bottom:403.880267pt;}
.y38{bottom:403.884517pt;}
.y21d{bottom:405.467677pt;}
.y2a2{bottom:406.229398pt;}
.y267{bottom:406.905917pt;}
.y1de{bottom:413.486188pt;}
.y16e{bottom:413.559681pt;}
.y199{bottom:413.782536pt;}
.yc8{bottom:414.841356pt;}
.y12b{bottom:416.506918pt;}
.y2a1{bottom:416.887520pt;}
.y266{bottom:417.488377pt;}
.y21c{bottom:418.166933pt;}
.yfb{bottom:420.208712pt;}
.y1dd{bottom:427.394718pt;}
.y16d{bottom:427.468211pt;}
.y2a0{bottom:427.469980pt;}
.y77{bottom:427.472159pt;}
.y265{bottom:428.146498pt;}
.yc7{bottom:428.825338pt;}
.yfa{bottom:434.117243pt;}
.y29f{bottom:438.128101pt;}
.y196{bottom:438.785200pt;}
.y264{bottom:438.804620pt;}
.y198{bottom:440.314800pt;}
.y1dc{bottom:441.378700pt;}
.y16c{bottom:441.452193pt;}
.y197{bottom:442.386933pt;}
.y12a{bottom:444.399430pt;}
.yc2{bottom:447.193320pt;}
.yc5{bottom:448.045061pt;}
.yf9{bottom:448.101224pt;}
.y29e{bottom:448.710561pt;}
.y263{bottom:449.387079pt;}
.yc6{bottom:453.125067pt;}
.y1db{bottom:455.287230pt;}
.y16b{bottom:455.360723pt;}
.y76{bottom:455.364671pt;}
.yc1{bottom:456.165067pt;}
.y29d{bottom:459.368683pt;}
.y262{bottom:460.045201pt;}
.yf8{bottom:462.009755pt;}
.y27{bottom:462.462579pt;}
.yc4{bottom:463.204933pt;}
.y195{bottom:463.976886pt;}
.y1da{bottom:469.271212pt;}
.y16a{bottom:469.344705pt;}
.y29c{bottom:470.026804pt;}
.y261{bottom:470.627661pt;}
.y26{bottom:475.161836pt;}
.yf7{bottom:475.993736pt;}
.y129{bottom:476.222844pt;}
.y194{bottom:477.885416pt;}
.y29b{bottom:480.609264pt;}
.y260{bottom:481.285782pt;}
.yc0{bottom:482.647289pt;}
.y1d9{bottom:483.179742pt;}
.y169{bottom:483.253235pt;}
.y75{bottom:483.257182pt;}
.y25{bottom:487.936649pt;}
.yf5{bottom:488.163600pt;}
.yf6{bottom:489.902267pt;}
.yf4{bottom:489.905965pt;}
.y128{bottom:490.206826pt;}
.y29a{bottom:491.267386pt;}
.y193{bottom:491.869398pt;}
.y25f{bottom:491.943904pt;}
.ybf{bottom:496.555819pt;}
.y1d8{bottom:497.163724pt;}
.y168{bottom:497.237217pt;}
.y74{bottom:497.241164pt;}
.y24{bottom:500.711461pt;}
.y299{bottom:501.849845pt;}
.y25e{bottom:502.526364pt;}
.yf3{bottom:503.889947pt;}
.y127{bottom:504.115356pt;}
.ybe{bottom:510.539801pt;}
.y1d7{bottom:511.072254pt;}
.y167{bottom:511.145747pt;}
.y73{bottom:511.149694pt;}
.y298{bottom:512.507967pt;}
.y25d{bottom:513.184485pt;}
.y23{bottom:513.486274pt;}
.yf2{bottom:517.798477pt;}
.y126{bottom:518.099338pt;}
.y297{bottom:523.166089pt;}
.y25c{bottom:523.766913pt;}
.ybd{bottom:524.448331pt;}
.y1d6{bottom:525.056236pt;}
.y166{bottom:525.129728pt;}
.y72{bottom:525.133676pt;}
.y22{bottom:526.185531pt;}
.yf1{bottom:531.782459pt;}
.y125{bottom:532.007868pt;}
.y296{bottom:533.748548pt;}
.y25b{bottom:534.431495pt;}
.ybc{bottom:538.432312pt;}
.y21{bottom:538.960343pt;}
.y1d5{bottom:538.964766pt;}
.y165{bottom:539.038259pt;}
.y71{bottom:539.117658pt;}
.y295{bottom:544.406670pt;}
.y25a{bottom:545.089617pt;}
.yf0{bottom:545.690989pt;}
.y124{bottom:545.991850pt;}
.y20{bottom:551.735156pt;}
.ybb{bottom:552.340843pt;}
.y1d4{bottom:552.948747pt;}
.y164{bottom:553.022240pt;}
.y70{bottom:553.026188pt;}
.y294{bottom:554.989130pt;}
.y259{bottom:555.672077pt;}
.yef{bottom:559.674970pt;}
.y123{bottom:559.975831pt;}
.y1f{bottom:564.434413pt;}
.y293{bottom:565.647251pt;}
.yba{bottom:566.324824pt;}
.y258{bottom:566.330198pt;}
.y1d3{bottom:566.857278pt;}
.y163{bottom:567.006222pt;}
.y6f{bottom:567.010169pt;}
.y18{bottom:572.448793pt;}
.yee{bottom:573.583501pt;}
.y122{bottom:573.884362pt;}
.y292{bottom:576.229711pt;}
.y257{bottom:576.912658pt;}
.y1e{bottom:577.209226pt;}
.yb9{bottom:580.233355pt;}
.y1d2{bottom:580.841259pt;}
.y162{bottom:580.914752pt;}
.y6e{bottom:580.918700pt;}
.y17{bottom:583.862683pt;}
.y291{bottom:586.887833pt;}
.yed{bottom:587.567482pt;}
.y256{bottom:587.570780pt;}
.y1d{bottom:589.984038pt;}
.yb8{bottom:594.217336pt;}
.y1d1{bottom:594.749790pt;}
.y161{bottom:594.898734pt;}
.y6d{bottom:594.902681pt;}
.y16{bottom:595.276573pt;}
.y290{bottom:597.545954pt;}
.y255{bottom:598.153239pt;}
.yec{bottom:601.476013pt;}
.y121{bottom:601.776874pt;}
.y1c{bottom:602.683295pt;}
.y15{bottom:606.690463pt;}
.yb7{bottom:608.125867pt;}
.y28f{bottom:608.128414pt;}
.yb5{bottom:608.129533pt;}
.y1d0{bottom:608.733771pt;}
.y160{bottom:608.807264pt;}
.y6c{bottom:608.811212pt;}
.y254{bottom:608.811361pt;}
.yb6{bottom:612.888000pt;}
.y1b{bottom:615.458108pt;}
.y14{bottom:618.104353pt;}
.y28e{bottom:618.786535pt;}
.y253{bottom:619.469483pt;}
.yb4{bottom:622.113514pt;}
.y1cf{bottom:622.642302pt;}
.y15f{bottom:622.791246pt;}
.y6b{bottom:622.795193pt;}
.y1a{bottom:628.232920pt;}
.yeb{bottom:629.368525pt;}
.y28d{bottom:629.368995pt;}
.y13{bottom:629.518243pt;}
.y252{bottom:630.051942pt;}
.y120{bottom:633.600288pt;}
.yb3{bottom:636.022045pt;}
.y1ce{bottom:636.626283pt;}
.y15e{bottom:636.699776pt;}
.y6a{bottom:636.703724pt;}
.y28c{bottom:640.027117pt;}
.y251{bottom:640.710064pt;}
.y12{bottom:640.932133pt;}
.y19{bottom:641.007733pt;}
.y11f{bottom:647.584270pt;}
.yb2{bottom:650.006026pt;}
.y1cd{bottom:650.534814pt;}
.y15d{bottom:650.683758pt;}
.y28b{bottom:650.685238pt;}
.y69{bottom:650.687705pt;}
.y250{bottom:651.292524pt;}
.yea{bottom:660.965585pt;}
.y28a{bottom:661.267698pt;}
.y11e{bottom:661.492800pt;}
.y24f{bottom:661.950645pt;}
.yb1{bottom:663.914557pt;}
.y1cc{bottom:664.518795pt;}
.y15c{bottom:664.592288pt;}
.y68{bottom:664.596236pt;}
.y11{bottom:667.766800pt;}
.y289{bottom:671.925820pt;}
.y24e{bottom:672.608767pt;}
.y11c{bottom:673.662800pt;}
.ye9{bottom:674.874116pt;}
.y11d{bottom:675.477067pt;}
.y11b{bottom:675.477488pt;}
.yb0{bottom:677.898538pt;}
.y1cb{bottom:678.427325pt;}
.y15b{bottom:678.576270pt;}
.y67{bottom:678.580217pt;}
.y288{bottom:682.508279pt;}
.y24d{bottom:683.191227pt;}
.ye8{bottom:688.858097pt;}
.y11a{bottom:689.386018pt;}
.yaf{bottom:691.807068pt;}
.y1ca{bottom:692.411307pt;}
.y15a{bottom:692.484800pt;}
.y158{bottom:692.487617pt;}
.y66{bottom:692.488747pt;}
.y287{bottom:693.166401pt;}
.y24c{bottom:693.849348pt;}
.y159{bottom:697.247067pt;}
.ye7{bottom:702.766628pt;}
.y119{bottom:703.370000pt;}
.y117{bottom:703.370136pt;}
.y286{bottom:703.748861pt;}
.y24b{bottom:704.431808pt;}
.yae{bottom:705.791050pt;}
.y1c9{bottom:706.319837pt;}
.y157{bottom:706.471598pt;}
.y65{bottom:706.472729pt;}
.y118{bottom:708.056533pt;}
.y10{bottom:711.609333pt;}
.y285{bottom:714.406982pt;}
.y24a{bottom:715.089930pt;}
.yf{bottom:715.388800pt;}
.ye6{bottom:716.750609pt;}
.y114{bottom:717.278446pt;}
.y116{bottom:717.278667pt;}
.yad{bottom:719.699580pt;}
.y1c8{bottom:720.303819pt;}
.y64{bottom:720.381259pt;}
.y21b{bottom:720.382322pt;}
.y115{bottom:722.040800pt;}
.ye{bottom:723.023467pt;}
.y284{bottom:725.065104pt;}
.y249{bottom:725.672389pt;}
.yd{bottom:726.803067pt;}
.ye5{bottom:730.659140pt;}
.y113{bottom:731.262428pt;}
.yac{bottom:733.683562pt;}
.y1c7{bottom:734.212349pt;}
.y156{bottom:734.364110pt;}
.y63{bottom:734.365241pt;}
.y21a{bottom:734.366304pt;}
.yc{bottom:734.437600pt;}
.y283{bottom:735.647564pt;}
.y248{bottom:736.330511pt;}
.yb{bottom:738.217067pt;}
.y282{bottom:746.305685pt;}
.y247{bottom:746.988633pt;}
.yab{bottom:747.667543pt;}
.y1c6{bottom:748.196331pt;}
.y62{bottom:748.273771pt;}
.y219{bottom:748.274834pt;}
.y111{bottom:750.992027pt;}
.y110{bottom:753.442400pt;}
.y9{bottom:754.393397pt;}
.y10f{bottom:755.202400pt;}
.y281{bottom:756.888127pt;}
.y246{bottom:757.571092pt;}
.ye4{bottom:758.551652pt;}
.ya{bottom:760.667600pt;}
.yaa{bottom:761.576074pt;}
.y1c5{bottom:762.180312pt;}
.y155{bottom:762.256622pt;}
.y61{bottom:762.257753pt;}
.y218{bottom:762.258816pt;}
.y280{bottom:767.546249pt;}
.y245{bottom:768.229214pt;}
.y7{bottom:771.628133pt;}
.ya9{bottom:775.560055pt;}
.y1c4{bottom:776.088843pt;}
.y154{bottom:776.165152pt;}
.y60{bottom:776.166283pt;}
.y217{bottom:776.167346pt;}
.y10e{bottom:776.170597pt;}
.y8{bottom:777.902133pt;}
.y27f{bottom:778.213552pt;}
.y244{bottom:778.811674pt;}
.y27e{bottom:788.796012pt;}
.y243{bottom:789.469795pt;}
.y1c3{bottom:790.072824pt;}
.ye3{bottom:790.148712pt;}
.y153{bottom:790.149134pt;}
.y5f{bottom:790.150265pt;}
.y10d{bottom:790.154578pt;}
.y27d{bottom:799.454133pt;}
.y242{bottom:800.127917pt;}
.y6{bottom:800.882281pt;}
.ya8{bottom:803.452567pt;}
.y1c2{bottom:803.981355pt;}
.ye2{bottom:804.057243pt;}
.y152{bottom:804.057664pt;}
.y5e{bottom:804.058795pt;}
.y216{bottom:804.059858pt;}
.y10c{bottom:804.063109pt;}
.y27c{bottom:810.036593pt;}
.y241{bottom:810.710377pt;}
.y51{bottom:815.053307pt;}
.y1c1{bottom:817.965336pt;}
.ye1{bottom:818.041224pt;}
.y151{bottom:818.041646pt;}
.y5d{bottom:818.042777pt;}
.y10b{bottom:818.047090pt;}
.y27b{bottom:820.694715pt;}
.y240{bottom:821.368498pt;}
.y5{bottom:823.861200pt;}
.y27a{bottom:831.352836pt;}
.y1c0{bottom:831.873867pt;}
.y1f5{bottom:831.886619pt;}
.ya7{bottom:831.949752pt;}
.ye0{bottom:831.949755pt;}
.y150{bottom:831.950176pt;}
.y23f{bottom:831.950958pt;}
.y5c{bottom:831.951307pt;}
.y215{bottom:831.952370pt;}
.y10a{bottom:831.955621pt;}
.y279{bottom:841.935296pt;}
.y23e{bottom:842.609079pt;}
.ya6{bottom:845.933733pt;}
.ya4{bottom:845.933736pt;}
.y14f{bottom:845.934158pt;}
.y5b{bottom:845.935289pt;}
.y109{bottom:845.939602pt;}
.ya5{bottom:850.620267pt;}
.y278{bottom:852.593418pt;}
.y4{bottom:853.114800pt;}
.y23d{bottom:853.191539pt;}
.ya3{bottom:859.842267pt;}
.ya1{bottom:859.842552pt;}
.y14e{bottom:859.842688pt;}
.y5a{bottom:859.843819pt;}
.y108{bottom:859.848133pt;}
.y277{bottom:863.175877pt;}
.y23c{bottom:863.849661pt;}
.ya2{bottom:864.604533pt;}
.y20c{bottom:870.652134pt;}
.y1bb{bottom:873.826300pt;}
.ya0{bottom:873.826533pt;}
.y9e{bottom:873.826670pt;}
.y59{bottom:873.827801pt;}
.y107{bottom:873.832114pt;}
.y276{bottom:873.833999pt;}
.y23b{bottom:874.507782pt;}
.y9f{bottom:878.513200pt;}
.y20b{bottom:882.141686pt;}
.y275{bottom:884.416459pt;}
.y23a{bottom:885.090242pt;}
.y1ba{bottom:886.601113pt;}
.y9d{bottom:887.735200pt;}
.y9b{bottom:887.736328pt;}
.y58{bottom:887.736331pt;}
.y214{bottom:887.738456pt;}
.y106{bottom:887.740644pt;}
.y14d{bottom:887.741409pt;}
.y9c{bottom:892.497333pt;}
.y3{bottom:893.328933pt;}
.y20a{bottom:893.555577pt;}
.y274{bottom:895.074580pt;}
.y239{bottom:895.748364pt;}
.y1b9{bottom:899.300369pt;}
.y9a{bottom:901.720309pt;}
.y57{bottom:901.720312pt;}
.y213{bottom:901.722438pt;}
.y105{bottom:901.724626pt;}
.y14c{bottom:901.725390pt;}
.y209{bottom:904.969467pt;}
.y273{bottom:905.732702pt;}
.y238{bottom:906.330823pt;}
.y1b8{bottom:912.075182pt;}
.y99{bottom:915.628840pt;}
.y56{bottom:915.628843pt;}
.y212{bottom:915.630968pt;}
.y104{bottom:915.633156pt;}
.y14b{bottom:915.633921pt;}
.y272{bottom:916.315162pt;}
.y237{bottom:916.988945pt;}
.y1b7{bottom:924.849995pt;}
.y207{bottom:926.966667pt;}
.y271{bottom:926.973283pt;}
.y236{bottom:927.647067pt;}
.y2{bottom:927.873867pt;}
.y98{bottom:929.612821pt;}
.y55{bottom:929.612824pt;}
.y211{bottom:929.614950pt;}
.y103{bottom:929.617138pt;}
.y14a{bottom:929.617902pt;}
.y208{bottom:930.746267pt;}
.y1b6{bottom:937.549251pt;}
.y270{bottom:937.555743pt;}
.y97{bottom:943.521352pt;}
.y54{bottom:943.521355pt;}
.y210{bottom:943.523480pt;}
.y102{bottom:943.525668pt;}
.y149{bottom:943.526433pt;}
.y206{bottom:945.939798pt;}
.y26f{bottom:948.213865pt;}
.y1b5{bottom:950.324064pt;}
.y235{bottom:955.539867pt;}
.y96{bottom:957.505333pt;}
.y53{bottom:957.505336pt;}
.y20f{bottom:957.507462pt;}
.y101{bottom:957.509650pt;}
.y94{bottom:957.509992pt;}
.y148{bottom:957.510414pt;}
.y205{bottom:958.714610pt;}
.y26e{bottom:958.871986pt;}
.y95{bottom:962.191867pt;}
.y1b4{bottom:963.098877pt;}
.y1{bottom:967.785600pt;}
.y52{bottom:971.413867pt;}
.y20e{bottom:971.415992pt;}
.y100{bottom:971.418180pt;}
.y93{bottom:971.418522pt;}
.y147{bottom:971.418945pt;}
.y1b3{bottom:975.798133pt;}
.yde{bottom:1002.330533pt;}
.y4e{bottom:1002.331707pt;}
.y20d{bottom:1002.331837pt;}
.y2a7{bottom:1002.334543pt;}
.hf{height:12.011128pt;}
.h1a{height:12.850667pt;}
.h9{height:21.034667pt;}
.h19{height:23.361600pt;}
.h1e{height:23.372485pt;}
.h1c{height:23.665237pt;}
.h15{height:24.492027pt;}
.ha{height:25.027925pt;}
.h16{height:25.699443pt;}
.h13{height:26.294323pt;}
.h1f{height:28.309835pt;}
.h23{height:29.918362pt;}
.h20{height:29.929186pt;}
.h17{height:29.934400pt;}
.h18{height:30.000000pt;}
.h4{height:30.690583pt;}
.h12{height:31.285692pt;}
.he{height:31.455723pt;}
.hc{height:31.556949pt;}
.h22{height:31.557020pt;}
.h21{height:31.557078pt;}
.h14{height:33.409600pt;}
.h1d{height:33.425509pt;}
.h10{height:33.750000pt;}
.hb{height:34.515661pt;}
.h8{height:34.841327pt;}
.hd{height:35.502063pt;}
.h2{height:39.447177pt;}
.h1b{height:39.623710pt;}
.h11{height:46.875000pt;}
.h5{height:47.335919pt;}
.h7{height:52.267435pt;}
.h6{height:66.566059pt;}
.h3{height:69.031322pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:55.181320pt;}
.w3{width:247.786667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:50.116533pt;}
.x65{left:54.954267pt;}
.x10{left:56.163733pt;}
.x15{left:58.658267pt;}
.x16{left:65.612533pt;}
.x12{left:66.746621pt;}
.x66{left:72.189020pt;}
.x18{left:100.459733pt;}
.x19{left:116.484933pt;}
.x63{left:121.470710pt;}
.x5{left:128.730667pt;}
.x6{left:142.639333pt;}
.xf{left:150.122800pt;}
.x55{left:177.033067pt;}
.x56{left:204.170000pt;}
.x57{left:210.595200pt;}
.x58{left:221.782667pt;}
.x4d{left:231.080267pt;}
.x4e{left:238.941600pt;}
.x4f{left:243.930667pt;}
.x3{left:248.163733pt;}
.x50{left:258.897600pt;}
.x7{left:263.584133pt;}
.x8{left:268.951067pt;}
.x11{left:270.840800pt;}
.x34{left:287.697600pt;}
.x35{left:292.157467pt;}
.x36{left:296.163733pt;}
.x37{left:300.699200pt;}
.x2{left:302.513333pt;}
.x1{left:304.327467pt;}
.x38{left:307.351067pt;}
.x39{left:311.810933pt;}
.x3a{left:319.596800pt;}
.x3b{left:324.056533pt;}
.x32{left:326.475467pt;}
.x33{left:335.773067pt;}
.x59{left:357.089600pt;}
.x5a{left:363.514800pt;}
.x1a{left:369.486533pt;}
.x5b{left:374.702267pt;}
.x9{left:381.429867pt;}
.x5c{left:384.680267pt;}
.xa{left:387.250267pt;}
.x31{left:389.644280pt;}
.x13{left:408.794662pt;}
.x30{left:413.673600pt;}
.x3d{left:415.513600pt;}
.x64{left:419.527467pt;}
.x2c{left:421.313467pt;}
.x3f{left:422.713600pt;}
.x14{left:425.424750pt;}
.x67{left:430.865228pt;}
.x2f{left:434.073699pt;}
.x51{left:436.967600pt;}
.x2d{left:439.273467pt;}
.x1f{left:444.774667pt;}
.x2e{left:446.193723pt;}
.x3c{left:453.713333pt;}
.x20{left:457.247067pt;}
.xb{left:462.009333pt;}
.x3e{left:464.873333pt;}
.x4c{left:465.940000pt;}
.xc{left:466.922667pt;}
.x48{left:478.866000pt;}
.x52{left:481.109733pt;}
.x49{left:485.442400pt;}
.x4a{left:491.036133pt;}
.x21{left:498.897467pt;}
.x4b{left:503.432933pt;}
.x5d{left:510.462800pt;}
.x23{left:511.521067pt;}
.x22{left:514.166800pt;}
.x5e{left:516.888000pt;}
.x54{left:518.777867pt;}
.x5f{left:528.075467pt;}
.x28{left:536.390400pt;}
.x60{left:538.053333pt;}
.x29{left:548.862933pt;}
.xd{left:555.514800pt;}
.x47{left:558.160533pt;}
.xe{left:560.957333pt;}
.x24{left:562.469200pt;}
.x40{left:568.894400pt;}
.x2a{left:570.103867pt;}
.x41{left:573.354133pt;}
.x25{left:574.941600pt;}
.x2b{left:578.116400pt;}
.x42{left:600.869200pt;}
.x43{left:605.328933pt;}
.x26{left:628.762000pt;}
.x27{left:641.234400pt;}
.x61{left:669.354133pt;}
.x17{left:675.340000pt;}
.x44{left:681.599733pt;}
.x62{left:686.966667pt;}
.x45{left:696.491200pt;}
.x1b{left:715.917867pt;}
.x1c{left:722.569867pt;}
.x1d{left:728.088000pt;}
.x53{left:729.599733pt;}
.x46{left:732.169867pt;}
.x1e{left:740.560400pt;}
}




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