
    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_88d6aab895e205883ffd7f4b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_402412d80457958540d207e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929000;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_8ad36ce4d67021a910914cdc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5927606185d718d6b69d9534.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925000;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_e94722938758fe7777b23bb5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.035000;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_9d9463a27aae05a8cb7c7f06.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.507000;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_c396c651488d3eae9795ad91.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694000;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_9a93cd122688f1cc6b73fd75.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.992000;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_c4784bb6a7ec9b6bfa8b0b16.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.878000;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_6eba149804fe02fcebc3a9b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_b6fcf6ed2d7fe622dcbad41c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.385000;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_339a72bccef266220e7527cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.507000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.222494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222494,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.720126px;}
.ls59{letter-spacing:-1.612768px;}
.ls57{letter-spacing:-1.402654px;}
.ls4a{letter-spacing:-1.362902px;}
.ls4b{letter-spacing:-1.334509px;}
.ls4e{letter-spacing:-1.328830px;}
.ls58{letter-spacing:-1.317472px;}
.ls56{letter-spacing:-1.311794px;}
.ls4d{letter-spacing:-1.306115px;}
.ls50{letter-spacing:-1.300436px;}
.ls48{letter-spacing:-1.294757px;}
.ls4c{letter-spacing:-1.289079px;}
.ls47{letter-spacing:-1.283400px;}
.ls53{letter-spacing:-1.277721px;}
.ls4f{letter-spacing:-1.272042px;}
.ls49{letter-spacing:-1.266363px;}
.ls51{letter-spacing:-1.260685px;}
.ls55{letter-spacing:-1.249327px;}
.ls52{letter-spacing:-1.226612px;}
.ls67{letter-spacing:-1.215255px;}
.ls6d{letter-spacing:-1.198218px;}
.ls54{letter-spacing:-1.186861px;}
.ls64{letter-spacing:-1.152788px;}
.ls69{letter-spacing:-1.141431px;}
.ls63{letter-spacing:-1.135752px;}
.ls2e{letter-spacing:-1.120495px;}
.ls68{letter-spacing:-1.113037px;}
.ls6b{letter-spacing:-1.090322px;}
.ls65{letter-spacing:-1.084643px;}
.ls66{letter-spacing:-1.061928px;}
.ls5f{letter-spacing:-1.044892px;}
.ls35{letter-spacing:-1.026000px;}
.ls6c{letter-spacing:-1.022177px;}
.ls6a{letter-spacing:-1.016498px;}
.ls70{letter-spacing:-0.902923px;}
.ls72{letter-spacing:-0.874529px;}
.ls81{letter-spacing:-0.873918px;}
.ls6f{letter-spacing:-0.868850px;}
.ls79{letter-spacing:-0.851814px;}
.ls71{letter-spacing:-0.846135px;}
.ls6e{letter-spacing:-0.834778px;}
.ls7f{letter-spacing:-0.823109px;}
.ls80{letter-spacing:-0.807866px;}
.ls37{letter-spacing:-0.776371px;}
.ls25{letter-spacing:-0.693725px;}
.ls2f{letter-spacing:-0.683552px;}
.ls83{letter-spacing:-0.640196px;}
.ls38{letter-spacing:-0.639112px;}
.ls3b{letter-spacing:-0.535306px;}
.ls13{letter-spacing:-0.225710px;}
.ls21{letter-spacing:-0.222390px;}
.ls11{letter-spacing:-0.221604px;}
.ls1b{letter-spacing:-0.219071px;}
.ls1c{letter-spacing:-0.209113px;}
.ls1a{letter-spacing:-0.205794px;}
.ls20{letter-spacing:-0.185879px;}
.ls14{letter-spacing:-0.179240px;}
.ls22{letter-spacing:-0.126132px;}
.ls24{letter-spacing:-0.013277px;}
.ls0{letter-spacing:0.000000px;}
.ls7c{letter-spacing:0.005081px;}
.ls2a{letter-spacing:0.010800px;}
.ls23{letter-spacing:0.023235px;}
.ls1f{letter-spacing:0.046470px;}
.ls32{letter-spacing:0.048787px;}
.ls1e{letter-spacing:0.053108px;}
.ls31{letter-spacing:0.053612px;}
.lsc{letter-spacing:0.060096px;}
.ls17{letter-spacing:0.066385px;}
.lse{letter-spacing:0.067608px;}
.ls29{letter-spacing:0.082982px;}
.ls26{letter-spacing:0.086301px;}
.ls16{letter-spacing:0.092939px;}
.ls7a{letter-spacing:0.106699px;}
.ls3a{letter-spacing:0.107234px;}
.ls7{letter-spacing:0.136290px;}
.ls39{letter-spacing:0.162995px;}
.ls28{letter-spacing:0.192517px;}
.ls7d{letter-spacing:0.193075px;}
.ls15{letter-spacing:0.195836px;}
.ls84{letter-spacing:0.223560px;}
.ls30{letter-spacing:0.259124px;}
.ls10{letter-spacing:0.371844px;}
.ls12{letter-spacing:0.386868px;}
.lsd{letter-spacing:0.398136px;}
.ls2d{letter-spacing:0.419960px;}
.ls1d{letter-spacing:0.431504px;}
.ls19{letter-spacing:0.434823px;}
.lsf{letter-spacing:0.439452px;}
.ls18{letter-spacing:0.451419px;}
.ls27{letter-spacing:0.471335px;}
.ls82{letter-spacing:0.508092px;}
.ls33{letter-spacing:0.536655px;}
.ls3c{letter-spacing:0.608910px;}
.ls34{letter-spacing:0.634228px;}
.ls36{letter-spacing:0.734400px;}
.ls2b{letter-spacing:0.756000px;}
.ls2c{letter-spacing:0.784346px;}
.ls60{letter-spacing:7.319922px;}
.ls7b{letter-spacing:7.819536px;}
.ls40{letter-spacing:7.955943px;}
.ls2{letter-spacing:8.746497px;}
.ls77{letter-spacing:8.819114px;}
.ls6{letter-spacing:9.023550px;}
.ls3{letter-spacing:9.086028px;}
.ls62{letter-spacing:10.045726px;}
.ls5c{letter-spacing:11.016794px;}
.ls3d{letter-spacing:11.402950px;}
.ls46{letter-spacing:11.630100px;}
.ls74{letter-spacing:11.743676px;}
.ls1{letter-spacing:11.807054px;}
.ls9{letter-spacing:12.038971px;}
.lsb{letter-spacing:12.146585px;}
.ls73{letter-spacing:12.305873px;}
.ls8{letter-spacing:12.379697px;}
.ls5{letter-spacing:12.691746px;}
.ls44{letter-spacing:12.720422px;}
.ls4{letter-spacing:12.825646px;}
.ls45{letter-spacing:13.401874px;}
.ls3f{letter-spacing:14.083325px;}
.ls78{letter-spacing:14.804527px;}
.ls76{letter-spacing:15.099823px;}
.ls5e{letter-spacing:15.485979px;}
.ls41{letter-spacing:16.803451px;}
.ls61{letter-spacing:16.848881px;}
.ls7e{letter-spacing:16.863573px;}
.ls3e{letter-spacing:17.449956px;}
.ls43{letter-spacing:17.484902px;}
.ls86{letter-spacing:17.884838px;}
.ls42{letter-spacing:18.160674px;}
.lsa{letter-spacing:18.745587px;}
.ls85{letter-spacing:19.271930px;}
.ls5a{letter-spacing:26.372161px;}
.ls5b{letter-spacing:26.712887px;}
.ls5d{letter-spacing:28.706132px;}
.ls75{letter-spacing:33.811337px;}
.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;}
}
.ws1ce{word-spacing:-12.362661px;}
.ws1fc{word-spacing:-8.875902px;}
.wsba{word-spacing:-5.165699px;}
.ws85{word-spacing:-2.466210px;}
.wsb4{word-spacing:-2.073600px;}
.ws82{word-spacing:-2.031996px;}
.ws8d{word-spacing:-1.978279px;}
.ws8c{word-spacing:-1.935129px;}
.ws81{word-spacing:-1.930584px;}
.ws9b{word-spacing:-1.872063px;}
.wsc8{word-spacing:-1.832989px;}
.ws90{word-spacing:-1.762527px;}
.ws7d{word-spacing:-1.705224px;}
.wsc4{word-spacing:-1.653034px;}
.ws9c{word-spacing:-1.646353px;}
.ws89{word-spacing:-1.450517px;}
.ws7c{word-spacing:-1.400988px;}
.ws9a{word-spacing:-1.347620px;}
.ws91{word-spacing:-1.337662px;}
.ws8b{word-spacing:-1.324385px;}
.ws88{word-spacing:-1.321065px;}
.ws7f{word-spacing:-1.213188px;}
.wsc2{word-spacing:-1.197160px;}
.ws7e{word-spacing:-1.186896px;}
.ws80{word-spacing:-1.149336px;}
.ws9d{word-spacing:-1.128548px;}
.ws97{word-spacing:-1.078759px;}
.wsb7{word-spacing:-1.072335px;}
.wsb8{word-spacing:-0.960812px;}
.wsb9{word-spacing:-0.896637px;}
.ws93{word-spacing:-0.892881px;}
.wsa4{word-spacing:-0.756000px;}
.ws96{word-spacing:-0.710322px;}
.ws8f{word-spacing:-0.700364px;}
.ws98{word-spacing:-0.614063px;}
.ws87{word-spacing:-0.604105px;}
.ws22f{word-spacing:-0.558901px;}
.ws8e{word-spacing:-0.550997px;}
.ws84{word-spacing:-0.548376px;}
.ws8a{word-spacing:-0.484612px;}
.wsc7{word-spacing:-0.132421px;}
.ws92{word-spacing:-0.073024px;}
.ws9e{word-spacing:-0.064800px;}
.ws43{word-spacing:-0.056788px;}
.ws227{word-spacing:-0.050809px;}
.wsc0{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.wsc5{word-spacing:0.209980px;}
.ws99{word-spacing:0.245625px;}
.ws95{word-spacing:0.351842px;}
.wsc6{word-spacing:0.355447px;}
.wsb6{word-spacing:0.531878px;}
.ws94{word-spacing:0.607425px;}
.ws86{word-spacing:0.650575px;}
.ws83{word-spacing:0.668568px;}
.ws22d{word-spacing:0.757057px;}
.ws22c{word-spacing:0.772300px;}
.ws22e{word-spacing:0.823109px;}
.wsc3{word-spacing:0.991821px;}
.wsb1{word-spacing:1.061521px;}
.ws105{word-spacing:1.226612px;}
.ws106{word-spacing:1.237970px;}
.ws226{word-spacing:7.331768px;}
.ws228{word-spacing:7.606137px;}
.wsbf{word-spacing:7.651392px;}
.ws3d{word-spacing:7.971282px;}
.wsa{word-spacing:7.990923px;}
.ws39{word-spacing:8.012080px;}
.ws3b{word-spacing:8.059154px;}
.ws3a{word-spacing:8.090537px;}
.ws9{word-spacing:8.129604px;}
.ws38{word-spacing:8.140750px;}
.ws1e1{word-spacing:8.171736px;}
.ws3c{word-spacing:8.175271px;}
.ws1e0{word-spacing:8.188772px;}
.ws3e{word-spacing:8.216069px;}
.ws229{word-spacing:8.226009px;}
.ws15a{word-spacing:8.262596px;}
.ws1cd{word-spacing:8.296668px;}
.ws15d{word-spacing:8.359135px;}
.ws158{word-spacing:8.512461px;}
.ws159{word-spacing:8.631715px;}
.wsd{word-spacing:8.770408px;}
.ws4b{word-spacing:8.932689px;}
.wsc{word-spacing:8.999950px;}
.wsd0{word-spacing:9.006513px;}
.wscf{word-spacing:9.017871px;}
.ws176{word-spacing:9.051943px;}
.ws1a3{word-spacing:9.080337px;}
.ws4a{word-spacing:9.091695px;}
.ws1af{word-spacing:9.137125px;}
.ws1b0{word-spacing:9.148482px;}
.wsce{word-spacing:9.159840px;}
.ws1a5{word-spacing:9.176876px;}
.ws1a6{word-spacing:9.182555px;}
.ws45{word-spacing:9.193912px;}
.ws16c{word-spacing:9.205270px;}
.ws205{word-spacing:9.239343px;}
.ws13d{word-spacing:9.267736px;}
.ws1d2{word-spacing:9.324524px;}
.ws1d8{word-spacing:9.392669px;}
.wsd4{word-spacing:9.404027px;}
.ws110{word-spacing:9.466493px;}
.ws1f8{word-spacing:9.489208px;}
.ws17a{word-spacing:9.534638px;}
.ws195{word-spacing:9.580068px;}
.ws1f2{word-spacing:9.625498px;}
.ws196{word-spacing:9.659571px;}
.ws12d{word-spacing:9.705001px;}
.ws36{word-spacing:9.729092px;}
.ws1bd{word-spacing:9.733395px;}
.ws37{word-spacing:9.795144px;}
.ws35{word-spacing:9.806800px;}
.ws11a{word-spacing:9.829934px;}
.ws22a{word-spacing:9.851904px;}
.ws59{word-spacing:9.875364px;}
.ws31{word-spacing:9.892551px;}
.ws185{word-spacing:9.937830px;}
.wse3{word-spacing:9.942027px;}
.ws1b6{word-spacing:9.949188px;}
.ws1a4{word-spacing:9.988939px;}
.ws1a7{word-spacing:9.994618px;}
.ws1c4{word-spacing:10.028690px;}
.ws1f4{word-spacing:10.057084px;}
.ws14b{word-spacing:10.074120px;}
.wsed{word-spacing:10.152441px;}
.ws1f7{word-spacing:10.210410px;}
.ws18d{word-spacing:10.216089px;}
.ws237{word-spacing:10.217730px;}
.ws214{word-spacing:10.233126px;}
.ws21{word-spacing:10.278556px;}
.ws1ca{word-spacing:10.301271px;}
.ws2b{word-spacing:10.352379px;}
.ws1f{word-spacing:10.431882px;}
.wsa5{word-spacing:10.448918px;}
.ws149{word-spacing:10.573851px;}
.ws1cf{word-spacing:10.676069px;}
.wsf5{word-spacing:10.683256px;}
.ws10f{word-spacing:10.693105px;}
.ws1bb{word-spacing:10.710141px;}
.ws1ef{word-spacing:10.721499px;}
.wsa8{word-spacing:10.738535px;}
.ws21e{word-spacing:10.746146px;}
.ws18e{word-spacing:10.755571px;}
.ws10e{word-spacing:10.801002px;}
.ws238{word-spacing:10.832521px;}
.ws1da{word-spacing:10.835074px;}
.ws10d{word-spacing:10.840753px;}
.ws141{word-spacing:10.846432px;}
.ws1aa{word-spacing:10.852110px;}
.ws23b{word-spacing:10.979868px;}
.ws40{word-spacing:11.033831px;}
.wsca{word-spacing:11.096297px;}
.ws75{word-spacing:11.113333px;}
.ws77{word-spacing:11.130370px;}
.ws1fb{word-spacing:11.226909px;}
.ws1bc{word-spacing:11.249624px;}
.ws181{word-spacing:11.295054px;}
.ws1d4{word-spacing:11.300732px;}
.ws1a0{word-spacing:11.323447px;}
.ws152{word-spacing:11.329126px;}
.wscc{word-spacing:11.357520px;}
.ws1c6{word-spacing:11.374556px;}
.wsfa{word-spacing:11.376663px;}
.ws3f{word-spacing:11.391593px;}
.ws1fa{word-spacing:11.419986px;}
.ws63{word-spacing:11.437023px;}
.ws5{word-spacing:11.448395px;}
.ws143{word-spacing:11.465416px;}
.ws76{word-spacing:11.482453px;}
.ws6{word-spacing:11.515345px;}
.ws1d5{word-spacing:11.527883px;}
.wscd{word-spacing:11.544919px;}
.ws187{word-spacing:11.590349px;}
.ws142{word-spacing:11.618743px;}
.ws1c5{word-spacing:11.630100px;}
.ws64{word-spacing:11.641458px;}
.ws7{word-spacing:11.668373px;}
.ws1f3{word-spacing:11.669852px;}
.ws265{word-spacing:11.670873px;}
.ws65{word-spacing:11.686888px;}
.ws267{word-spacing:11.711521px;}
.ws266{word-spacing:11.716602px;}
.ws202{word-spacing:11.732318px;}
.ws1a8{word-spacing:11.743676px;}
.ws155{word-spacing:11.760712px;}
.ws61{word-spacing:11.772069px;}
.ws1e2{word-spacing:11.800463px;}
.ws67{word-spacing:11.811821px;}
.ws79{word-spacing:11.817500px;}
.ws7a{word-spacing:11.823178px;}
.wse0{word-spacing:11.850093px;}
.wsee{word-spacing:11.859658px;}
.wsf7{word-spacing:11.874004px;}
.wsf4{word-spacing:11.888350px;}
.ws100{word-spacing:11.893132px;}
.wsbe{word-spacing:11.897915px;}
.wse{word-spacing:11.926607px;}
.ws7b{word-spacing:11.931075px;}
.wsf2{word-spacing:11.931389px;}
.wsdb{word-spacing:11.945736px;}
.wsf1{word-spacing:11.955300px;}
.ws272{word-spacing:11.955405px;}
.wsf6{word-spacing:11.964864px;}
.wsbc{word-spacing:11.969646px;}
.wsd7{word-spacing:11.979211px;}
.ws1ee{word-spacing:11.982184px;}
.wse4{word-spacing:11.983993px;}
.ws209{word-spacing:11.993541px;}
.wsea{word-spacing:12.003121px;}
.ws1f9{word-spacing:12.004899px;}
.ws183{word-spacing:12.007903px;}
.wse2{word-spacing:12.012685px;}
.wsf8{word-spacing:12.022250px;}
.wsfd{word-spacing:12.031814px;}
.wsa2{word-spacing:12.041378px;}
.ws1df{word-spacing:12.044650px;}
.wsd9{word-spacing:12.050942px;}
.ws230{word-spacing:12.051942px;}
.wsec{word-spacing:12.055725px;}
.ws273{word-spacing:12.057023px;}
.wse6{word-spacing:12.065289px;}
.wsd6{word-spacing:12.074853px;}
.wsff{word-spacing:12.079635px;}
.wsa0{word-spacing:12.084417px;}
.ws182{word-spacing:12.093981px;}
.wsdf{word-spacing:12.108328px;}
.wsde{word-spacing:12.117892px;}
.wseb{word-spacing:12.122674px;}
.wse7{word-spacing:12.127456px;}
.wse9{word-spacing:12.141803px;}
.wsbb{word-spacing:12.146585px;}
.wse5{word-spacing:12.151367px;}
.ws5f{word-spacing:12.152546px;}
.wsf3{word-spacing:12.156149px;}
.wsd8{word-spacing:12.160931px;}
.wsf0{word-spacing:12.165713px;}
.ws16{word-spacing:12.170495px;}
.ws9f{word-spacing:12.189624px;}
.ws60{word-spacing:12.192298px;}
.wsf9{word-spacing:12.199188px;}
.ws5e{word-spacing:12.203655px;}
.wsbd{word-spacing:12.213534px;}
.ws131{word-spacing:12.215013px;}
.ws17{word-spacing:12.232663px;}
.wsc1{word-spacing:12.237445px;}
.ws130{word-spacing:12.237728px;}
.wsb{word-spacing:12.242227px;}
.ws6e{word-spacing:12.243407px;}
.ws15{word-spacing:12.247009px;}
.wsdd{word-spacing:12.251791px;}
.wse1{word-spacing:12.256574px;}
.wsa1{word-spacing:12.261356px;}
.ws50{word-spacing:12.271800px;}
.wsdc{word-spacing:12.275702px;}
.wse8{word-spacing:12.294831px;}
.wsda{word-spacing:12.304395px;}
.ws1d1{word-spacing:12.322909px;}
.ws69{word-spacing:12.334267px;}
.wsfe{word-spacing:12.337870px;}
.ws208{word-spacing:12.339945px;}
.ws13{word-spacing:12.347434px;}
.wsef{word-spacing:12.371344px;}
.ws48{word-spacing:12.408091px;}
.ws15c{word-spacing:12.442163px;}
.ws10{word-spacing:12.452640px;}
.ws102{word-spacing:12.453521px;}
.ws11{word-spacing:12.486115px;}
.ws13a{word-spacing:12.487593px;}
.ws8{word-spacing:12.533937px;}
.ws1fe{word-spacing:12.550060px;}
.ws12e{word-spacing:12.572775px;}
.ws101{word-spacing:12.586540px;}
.ws168{word-spacing:12.595490px;}
.wsf{word-spacing:12.596104px;}
.ws14c{word-spacing:12.612526px;}
.ws14{word-spacing:12.634361px;}
.ws1e7{word-spacing:12.657956px;}
.ws6a{word-spacing:12.697707px;}
.ws29{word-spacing:12.703386px;}
.ws17b{word-spacing:12.726101px;}
.ws22b{word-spacing:12.732786px;}
.ws78{word-spacing:12.782889px;}
.wsc9{word-spacing:12.816961px;}
.ws12f{word-spacing:12.907821px;}
.ws21b{word-spacing:12.951265px;}
.ws16f{word-spacing:12.953252px;}
.ws17c{word-spacing:13.010039px;}
.ws221{word-spacing:13.017317px;}
.ws34{word-spacing:13.063045px;}
.ws20b{word-spacing:13.078184px;}
.ws49{word-spacing:13.089542px;}
.ws1f5{word-spacing:13.117936px;}
.ws21f{word-spacing:13.134178px;}
.ws103{word-spacing:13.134972px;}
.ws21c{word-spacing:13.144340px;}
.ws19b{word-spacing:13.157687px;}
.ws224{word-spacing:13.179906px;}
.ws66{word-spacing:13.186081px;}
.ws218{word-spacing:13.200230px;}
.ws27a{word-spacing:13.220554px;}
.ws217{word-spacing:13.240878px;}
.ws146{word-spacing:13.242868px;}
.ws279{word-spacing:13.245958px;}
.ws231{word-spacing:13.276444px;}
.ws1ed{word-spacing:13.293977px;}
.ws21a{word-spacing:13.332334px;}
.ws160{word-spacing:13.362122px;}
.ws233{word-spacing:13.372981px;}
.ws270{word-spacing:13.393305px;}
.ws12a{word-spacing:13.413231px;}
.ws14e{word-spacing:13.430267px;}
.ws19c{word-spacing:13.458661px;}
.ws1c1{word-spacing:13.475697px;}
.ws13b{word-spacing:13.521128px;}
.ws261{word-spacing:13.566056px;}
.ws26f{word-spacing:13.581299px;}
.wsaf{word-spacing:13.634703px;}
.ws278{word-spacing:13.657513px;}
.ws1d7{word-spacing:13.668775px;}
.ws15b{word-spacing:13.736920px;}
.ws1c{word-spacing:13.765314px;}
.ws1f0{word-spacing:13.799387px;}
.ws1ae{word-spacing:13.816423px;}
.ws12{word-spacing:13.844237px;}
.ws47{word-spacing:13.844817px;}
.ws276{word-spacing:13.896316px;}
.ws275{word-spacing:13.936964px;}
.ws113{word-spacing:13.952713px;}
.ws132{word-spacing:13.975428px;}
.ws188{word-spacing:14.083325px;}
.ws277{word-spacing:14.089391px;}
.ws1e8{word-spacing:14.111719px;}
.ws4c{word-spacing:14.117397px;}
.ws114{word-spacing:14.151470px;}
.ws1b8{word-spacing:14.157149px;}
.ws232{word-spacing:14.196090px;}
.ws191{word-spacing:14.202579px;}
.ws1d9{word-spacing:14.338869px;}
.ws1b{word-spacing:14.372942px;}
.ws41{word-spacing:14.407014px;}
.ws211{word-spacing:14.424050px;}
.ws46{word-spacing:14.452444px;}
.ws215{word-spacing:14.475159px;}
.ws1c7{word-spacing:14.480838px;}
.wscb{word-spacing:14.497874px;}
.ws165{word-spacing:14.509232px;}
.ws1e3{word-spacing:14.526268px;}
.ws13f{word-spacing:14.543304px;}
.ws71{word-spacing:14.548983px;}
.ws1be{word-spacing:14.571698px;}
.ws192{word-spacing:14.577377px;}
.wsd5{word-spacing:14.583056px;}
.ws166{word-spacing:14.588734px;}
.ws1e9{word-spacing:14.594413px;}
.wsad{word-spacing:14.605771px;}
.ws1e5{word-spacing:14.617128px;}
.ws1a9{word-spacing:14.622807px;}
.wsa6{word-spacing:14.628486px;}
.ws53{word-spacing:14.639843px;}
.ws207{word-spacing:14.645522px;}
.wsac{word-spacing:14.651201px;}
.ws1e4{word-spacing:14.662558px;}
.ws4d{word-spacing:14.685273px;}
.ws1db{word-spacing:14.690952px;}
.ws1cb{word-spacing:14.696631px;}
.ws20c{word-spacing:14.707988px;}
.ws18{word-spacing:14.713667px;}
.ws20{word-spacing:14.725025px;}
.ws5d{word-spacing:14.736382px;}
.ws174{word-spacing:14.742061px;}
.ws259{word-spacing:14.770234px;}
.wsd1{word-spacing:14.776134px;}
.ws1d3{word-spacing:14.787491px;}
.ws28{word-spacing:14.793170px;}
.wsd2{word-spacing:14.804527px;}
.ws26{word-spacing:14.838600px;}
.ws258{word-spacing:14.846448px;}
.ws1b7{word-spacing:14.866994px;}
.ws154{word-spacing:14.872672px;}
.ws54{word-spacing:14.878351px;}
.ws72{word-spacing:14.884030px;}
.ws200{word-spacing:14.906745px;}
.ws23c{word-spacing:14.907419px;}
.ws5c{word-spacing:14.912424px;}
.ws167{word-spacing:14.946496px;}
.ws20f{word-spacing:14.991926px;}
.ws257{word-spacing:14.993795px;}
.ws19d{word-spacing:15.099823px;}
.ws19e{word-spacing:15.111180px;}
.ws23d{word-spacing:15.115737px;}
.ws1c3{word-spacing:15.133895px;}
.ws175{word-spacing:15.162289px;}
.ws220{word-spacing:15.166546px;}
.ws144{word-spacing:15.167968px;}
.ws203{word-spacing:15.173647px;}
.ws234{word-spacing:15.222436px;}
.ws17f{word-spacing:15.241792px;}
.ws26d{word-spacing:15.252922px;}
.ws198{word-spacing:15.361046px;}
.ws162{word-spacing:15.383761px;}
.ws252{word-spacing:15.506968px;}
.ws253{word-spacing:15.593343px;}
.ws163{word-spacing:15.707450px;}
.ws147{word-spacing:15.741523px;}
.ws26c{word-spacing:15.761014px;}
.ws161{word-spacing:15.809668px;}
.ws26b{word-spacing:15.847389px;}
.ws6b{word-spacing:15.855098px;}
.ws4{word-spacing:15.967212px;}
.ws137{word-spacing:15.985709px;}
.ws177{word-spacing:16.042497px;}
.ws179{word-spacing:16.059533px;}
.ws32{word-spacing:16.101435px;}
.ws136{word-spacing:16.127678px;}
.ws206{word-spacing:16.150393px;}
.ws22{word-spacing:16.161751px;}
.ws138{word-spacing:16.195824px;}
.ws104{word-spacing:16.252611px;}
.ws109{word-spacing:16.269647px;}
.ws1de{word-spacing:16.275326px;}
.ws148{word-spacing:16.303720px;}
.ws42{word-spacing:16.320756px;}
.ws204{word-spacing:16.326435px;}
.ws44{word-spacing:16.354829px;}
.ws107{word-spacing:16.394580px;}
.wsb3{word-spacing:16.432200px;}
.ws18c{word-spacing:16.434331px;}
.ws153{word-spacing:16.445689px;}
.ws271{word-spacing:16.472343px;}
.ws55{word-spacing:16.491119px;}
.ws26e{word-spacing:16.502828px;}
.ws1d{word-spacing:16.513834px;}
.ws58{word-spacing:16.536549px;}
.ws139{word-spacing:16.547907px;}
.ws256{word-spacing:16.558718px;}
.ws23f{word-spacing:16.563799px;}
.ws178{word-spacing:16.587658px;}
.ws25c{word-spacing:16.594285px;}
.ws1ad{word-spacing:16.610373px;}
.ws235{word-spacing:16.614608px;}
.ws17e{word-spacing:16.644446px;}
.ws10b{word-spacing:16.655803px;}
.ws10c{word-spacing:16.689876px;}
.ws236{word-spacing:16.690822px;}
.ws25a{word-spacing:16.695903px;}
.ws24c{word-spacing:16.711146px;}
.ws25b{word-spacing:16.726389px;}
.ws26a{word-spacing:16.736550px;}
.ws51{word-spacing:16.740984px;}
.ws10a{word-spacing:16.746663px;}
.ws251{word-spacing:16.746712px;}
.ws244{word-spacing:16.756874px;}
.ws274{word-spacing:16.772117px;}
.ws23e{word-spacing:16.782279px;}
.ws24d{word-spacing:16.797522px;}
.ws24b{word-spacing:16.812764px;}
.ws2c{word-spacing:16.826166px;}
.ws247{word-spacing:16.828007px;}
.ws250{word-spacing:16.894059px;}
.ws2d{word-spacing:16.949949px;}
.ws24a{word-spacing:16.970273px;}
.ws108{word-spacing:16.996529px;}
.ws260{word-spacing:17.000758px;}
.ws2e{word-spacing:17.056648px;}
.ws52{word-spacing:17.127140px;}
.ws1f1{word-spacing:17.138498px;}
.ws2f{word-spacing:17.153186px;}
.ws246{word-spacing:17.168429px;}
.ws13e{word-spacing:17.172570px;}
.wsfb{word-spacing:17.182157px;}
.ws25f{word-spacing:17.188752px;}
.ws1b5{word-spacing:17.200964px;}
.ws2a{word-spacing:17.342933px;}
.ws245{word-spacing:17.391989px;}
.wsfc{word-spacing:17.416481px;}
.ws5a{word-spacing:17.501938px;}
.ws1b9{word-spacing:17.558726px;}
.ws14a{word-spacing:17.660944px;}
.ws268{word-spacing:17.732411px;}
.ws1ff{word-spacing:17.785876px;}
.ws269{word-spacing:17.874677px;}
.ws27{word-spacing:17.944882px;}
.ws199{word-spacing:18.194747px;}
.ws18a{word-spacing:18.217462px;}
.ws56{word-spacing:18.240177px;}
.ws189{word-spacing:18.348074px;}
.ws19a{word-spacing:18.399182px;}
.ws6f{word-spacing:18.501400px;}
.ws1c9{word-spacing:18.507079px;}
.ws70{word-spacing:18.535473px;}
.ws1f6{word-spacing:18.563866px;}
.ws210{word-spacing:18.609297px;}
.ws1d0{word-spacing:18.643369px;}
.ws30{word-spacing:18.657138px;}
.ws16a{word-spacing:18.722872px;}
.ws212{word-spacing:18.830768px;}
.ws19f{word-spacing:18.836447px;}
.ws242{word-spacing:18.875618px;}
.ws16b{word-spacing:18.887556px;}
.ws241{word-spacing:18.890861px;}
.ws115{word-spacing:18.978416px;}
.ws57{word-spacing:19.029525px;}
.ws145{word-spacing:19.074955px;}
.ws116{word-spacing:19.103349px;}
.ws243{word-spacing:19.109340px;}
.ws201{word-spacing:19.137421px;}
.ws240{word-spacing:19.139826px;}
.ws1a{word-spacing:19.143100px;}
.ws25{word-spacing:19.211245px;}
.ws128{word-spacing:19.216924px;}
.ws197{word-spacing:19.262354px;}
.wsa7{word-spacing:19.551971px;}
.ws129{word-spacing:19.557649px;}
.ws13c{word-spacing:19.597401px;}
.ws3{word-spacing:19.636206px;}
.ws123{word-spacing:19.841587px;}
.ws126{word-spacing:19.875660px;}
.ws122{word-spacing:19.921090px;}
.ws140{word-spacing:19.955163px;}
.ws127{word-spacing:19.989235px;}
.ws124{word-spacing:20.057380px;}
.ws6c{word-spacing:20.233422px;}
.ws14d{word-spacing:20.369712px;}
.ws11c{word-spacing:20.381070px;}
.ws125{word-spacing:20.477609px;}
.ws11e{word-spacing:20.534396px;}
.ws11d{word-spacing:20.557111px;}
.ws11b{word-spacing:20.591184px;}
.ws121{word-spacing:20.704759px;}
.ws219{word-spacing:20.897824px;}
.ws111{word-spacing:20.909194px;}
.ws19{word-spacing:20.914873px;}
.ws1cc{word-spacing:20.971661px;}
.wsaa{word-spacing:20.988697px;}
.ws112{word-spacing:21.000054px;}
.ws1bf{word-spacing:21.107951px;}
.ws1c0{word-spacing:21.113630px;}
.wsae{word-spacing:21.210169px;}
.ws15f{word-spacing:21.221526px;}
.ws1ab{word-spacing:21.227205px;}
.ws1ac{word-spacing:21.255599px;}
.ws73{word-spacing:21.272635px;}
.ws12b{word-spacing:21.295350px;}
.ws1b4{word-spacing:21.511143px;}
.ws170{word-spacing:21.533858px;}
.ws190{word-spacing:21.761008px;}
.ws1a2{word-spacing:21.817796px;}
.ws12c{word-spacing:21.914335px;}
.ws120{word-spacing:21.988159px;}
.ws11f{word-spacing:22.016553px;}
.ws33{word-spacing:22.071516px;}
.ws18f{word-spacing:22.090376px;}
.ws20d{word-spacing:22.209630px;}
.ws171{word-spacing:22.249382px;}
.ws213{word-spacing:22.260739px;}
.ws4e{word-spacing:22.448138px;}
.ws169{word-spacing:22.470853px;}
.ws18b{word-spacing:22.476532px;}
.ws239{word-spacing:22.544042px;}
.wsd3{word-spacing:22.573071px;}
.ws16d{word-spacing:22.658252px;}
.ws24{word-spacing:22.834294px;}
.ws263{word-spacing:22.843816px;}
.ws262{word-spacing:22.894626px;}
.ws264{word-spacing:22.935273px;}
.ws1a1{word-spacing:23.146626px;}
.ws23a{word-spacing:23.275695px;}
.ws164{word-spacing:23.436243px;}
.ws134{word-spacing:23.521424px;}
.ws24e{word-spacing:23.616116px;}
.ws15e{word-spacing:23.725859px;}
.ws24f{word-spacing:23.732977px;}
.ws133{word-spacing:23.839434px;}
.ws1c8{word-spacing:24.049549px;}
.ws222{word-spacing:24.078480px;}
.ws223{word-spacing:24.271555px;}
.ws1e{word-spacing:24.344844px;}
.ws20a{word-spacing:24.464098px;}
.ws16e{word-spacing:24.606067px;}
.ws254{word-spacing:24.977803px;}
.ws4f{word-spacing:25.043332px;}
.ws255{word-spacing:25.048936px;}
.ws1b2{word-spacing:25.491954px;}
.ws186{word-spacing:25.537384px;}
.ws1d6{word-spacing:25.565778px;}
.ws1b1{word-spacing:25.770213px;}
.wsab{word-spacing:25.957612px;}
.ws180{word-spacing:26.309695px;}
.ws74{word-spacing:26.389198px;}
.ws151{word-spacing:26.400555px;}
.ws1dd{word-spacing:26.463022px;}
.ws150{word-spacing:26.497094px;}
.ws14f{word-spacing:26.656099px;}
.ws216{word-spacing:26.710396px;}
.ws225{word-spacing:26.740882px;}
.wsa3{word-spacing:26.982265px;}
.ws5b{word-spacing:27.309157px;}
.ws194{word-spacing:27.507913px;}
.ws193{word-spacing:27.576059px;}
.ws1dc{word-spacing:27.763458px;}
.wsb0{word-spacing:27.916784px;}
.ws62{word-spacing:28.444909px;}
.ws184{word-spacing:28.473303px;}
.ws157{word-spacing:28.535769px;}
.ws1ec{word-spacing:28.552805px;}
.ws21d{word-spacing:28.946001px;}
.ws20e{word-spacing:29.024142px;}
.ws135{word-spacing:30.375687px;}
.ws17d{word-spacing:30.466547px;}
.wsa9{word-spacing:30.869739px;}
.ws156{word-spacing:31.011708px;}
.ws1c2{word-spacing:31.045781px;}
.ws173{word-spacing:31.755626px;}
.ws25e{word-spacing:31.867530px;}
.ws25d{word-spacing:32.243518px;}
.ws119{word-spacing:32.516580px;}
.ws1ba{word-spacing:33.334321px;}
.ws2{word-spacing:33.350473px;}
.ws68{word-spacing:33.720477px;}
.ws1{word-spacing:33.761731px;}
.ws1ea{word-spacing:33.976021px;}
.ws1e6{word-spacing:34.027130px;}
.ws1eb{word-spacing:34.384892px;}
.ws6d{word-spacing:35.497929px;}
.ws23{word-spacing:35.804582px;}
.ws172{word-spacing:35.838654px;}
.ws118{word-spacing:37.599070px;}
.ws249{word-spacing:37.908744px;}
.ws117{word-spacing:37.985226px;}
.ws248{word-spacing:38.005282px;}
.ws1b3{word-spacing:41.029041px;}
.ws1fd{word-spacing:47.701584px;}
.wsb5{word-spacing:97.796952px;}
.wsb2{word-spacing:100.236420px;}
._28{margin-left:-13.555200px;}
._27{margin-left:-11.840215px;}
._2b{margin-left:-9.521453px;}
._12{margin-left:-6.670656px;}
._1f{margin-left:-5.352046px;}
._1c{margin-left:-3.002138px;}
._d{margin-left:-1.981887px;}
._0{width:1.387997px;}
._1d{width:2.677392px;}
._21{width:5.503684px;}
._25{width:6.526815px;}
._19{width:7.543753px;}
._4{width:9.057335px;}
._5{width:10.295904px;}
._3{width:11.410138px;}
._2{width:12.825646px;}
._b{width:14.074640px;}
._8{width:15.781274px;}
._1{width:17.203667px;}
._a{width:19.018167px;}
._7{width:20.346997px;}
._6{width:22.158522px;}
._c{width:23.163914px;}
._29{width:24.214233px;}
._9{width:25.480596px;}
._10{width:27.502235px;}
._e{width:28.700453px;}
._26{width:30.108786px;}
._1b{width:31.620196px;}
._15{width:32.948978px;}
._f{width:34.436001px;}
._2a{width:35.611470px;}
._17{width:38.031976px;}
._2c{width:39.387292px;}
._16{width:42.070568px;}
._18{width:46.088850px;}
._1a{width:47.780491px;}
._14{width:64.008064px;}
._13{width:81.867499px;}
._11{width:82.892931px;}
._20{width:106.214387px;}
._24{width:110.438279px;}
._1e{width:139.002306px;}
._22{width:274.120683px;}
._23{width:518.032713px;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(2,2,2);}
.fc3{color:rgb(7,7,7);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:31.383000px;}
.fs10{font-size:33.192600px;}
.fsf{font-size:37.560000px;}
.fsd{font-size:38.854200px;}
.fs4{font-size:42.000000px;}
.fs15{font-size:42.893400px;}
.fs13{font-size:44.676600px;}
.fs9{font-size:47.821200px;}
.fsc{font-size:50.809200px;}
.fs8{font-size:53.797800px;}
.fs11{font-size:54.000000px;}
.fsa{font-size:56.787600px;}
.fs12{font-size:58.973400px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:62.764200px;}
.fs1{font-size:63.000000px;}
.fs16{font-size:66.913200px;}
.fs14{font-size:69.695400px;}
.fsb{font-size:71.730600px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:74.719200px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:128.518200px;}
.y0{bottom:0.000000px;}
.y4{bottom:97.125005px;}
.y174{bottom:103.302652px;}
.y1a0{bottom:103.306911px;}
.y8e{bottom:103.308331px;}
.y1dc{bottom:103.311170px;}
.y140{bottom:103.315429px;}
.y1b9{bottom:103.316849px;}
.yc4{bottom:103.320131px;}
.y5d{bottom:103.322861px;}
.y50{bottom:103.324743px;}
.y22d{bottom:103.334835px;}
.y205{bottom:103.334975px;}
.y133{bottom:109.358656px;}
.y5c{bottom:112.336843px;}
.y11e{bottom:114.529072px;}
.y11a{bottom:114.615151px;}
.y144{bottom:117.522850px;}
.y4f{bottom:117.525914px;}
.y22c{bottom:117.536007px;}
.y204{bottom:117.536146px;}
.y173{bottom:119.035656px;}
.y19f{bottom:119.039915px;}
.y8d{bottom:119.041335px;}
.y1db{bottom:119.044175px;}
.y13f{bottom:119.048434px;}
.yc3{bottom:119.053135px;}
.y5b{bottom:121.266091px;}
.y132{bottom:125.091661px;}
.y11d{bottom:127.200495px;}
.y1b8{bottom:127.213071px;}
.y119{bottom:128.051712px;}
.y143{bottom:130.279155px;}
.y5a{bottom:130.280074px;}
.y4e{bottom:131.727086px;}
.y22b{bottom:131.737178px;}
.y172{bottom:134.683480px;}
.y19e{bottom:134.687739px;}
.y8c{bottom:134.689158px;}
.y1da{bottom:134.691998px;}
.y13e{bottom:134.696257px;}
.yc2{bottom:134.700958px;}
.y203{bottom:137.010042px;}
.y59{bottom:139.209322px;}
.y20{bottom:139.264499px;}
.y11c{bottom:139.956800px;}
.y1b7{bottom:142.944656px;}
.y142{bottom:142.950578px;}
.yb4{bottom:143.774850px;}
.y118{bottom:144.463948px;}
.y4d{bottom:145.928257px;}
.y58{bottom:148.138570px;}
.y131{bottom:148.987883px;}
.y171{bottom:150.415064px;}
.y19d{bottom:150.419324px;}
.y8b{bottom:150.420743px;}
.y1d9{bottom:150.423583px;}
.y13d{bottom:150.427842px;}
.yc1{bottom:150.432543px;}
.y202{bottom:151.211214px;}
.y11b{bottom:152.628222px;}
.yb8{bottom:153.579550px;}
.y141{bottom:155.622000px;}
.y57{bottom:157.152552px;}
.y117{bottom:157.900510px;}
.y112{bottom:157.901705px;}
.y1b6{bottom:158.592479px;}
.y4c{bottom:160.129429px;}
.yb3{bottom:161.958425px;}
.y130{bottom:164.635706px;}
.y201{bottom:165.412385px;}
.y170{bottom:166.062888px;}
.y19c{bottom:166.067147px;}
.y8a{bottom:166.068566px;}
.y1d8{bottom:166.071406px;}
.y13c{bottom:166.075665px;}
.y56{bottom:166.081800px;}
.yb7{bottom:166.250972px;}
.y116{bottom:171.337071px;}
.y111{bottom:171.338267px;}
.y1b5{bottom:174.324064px;}
.y4b{bottom:174.330600px;}
.yb2{bottom:176.184774px;}
.yb6{bottom:179.007278px;}
.y12f{bottom:180.368711px;}
.y16f{bottom:181.794473px;}
.y19b{bottom:181.798732px;}
.y89{bottom:181.800151px;}
.y1d7{bottom:181.802991px;}
.y13b{bottom:181.807250px;}
.y115{bottom:184.773633px;}
.y110{bottom:184.774829px;}
.y200{bottom:184.801176px;}
.y1b4{bottom:189.971887px;}
.yc0{bottom:191.336652px;}
.yb5{bottom:191.678700px;}
.yb1{bottom:194.855611px;}
.y12e{bottom:196.016534px;}
.y17{bottom:196.933500px;}
.y16e{bottom:197.442296px;}
.y19a{bottom:197.446555px;}
.y88{bottom:197.447974px;}
.y1d6{bottom:197.450814px;}
.y114{bottom:198.295077px;}
.y10f{bottom:198.296273px;}
.y1ff{bottom:199.002347px;}
.ybf{bottom:207.068236px;}
.yb0{bottom:209.106854px;}
.y47{bottom:209.441662px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y113{bottom:211.731639px;}
.y10e{bottom:211.732835px;}
.y16d{bottom:213.175300px;}
.y199{bottom:213.179559px;}
.y87{bottom:213.180979px;}
.y1d5{bottom:213.183818px;}
.y1b3{bottom:213.953290px;}
.y1fe{bottom:218.391138px;}
.y12d{bottom:219.912756px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.ybe{bottom:222.716060px;}
.yaf{bottom:223.329883px;}
.y10d{bottom:225.169396px;}
.y46{bottom:225.173247px;}
.y13a{bottom:226.707785px;}
.y22a{bottom:227.235610px;}
.y16c{bottom:228.823123px;}
.y198{bottom:228.827383px;}
.y86{bottom:228.828802px;}
.y1d4{bottom:228.831642px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y12c{bottom:235.644341px;}
.y1b2{bottom:237.849512px;}
.ybd{bottom:238.447644px;}
.y10c{bottom:238.605958px;}
.y45{bottom:240.821070px;}
.y229{bottom:241.436781px;}
.yae{bottom:242.018147px;}
.y139{bottom:242.355609px;}
.y16b{bottom:244.556128px;}
.y197{bottom:244.560387px;}
.y85{bottom:244.561807px;}
.y1d3{bottom:244.564646px;}
.y10b{bottom:252.042520px;}
.y1fd{bottom:252.321522px;}
.y1b1{bottom:253.497336px;}
.ybc{bottom:254.095468px;}
.yad{bottom:256.242836px;}
.y44{bottom:256.554074px;}
.y12b{bottom:259.540563px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y16a{bottom:260.203951px;}
.y196{bottom:260.208210px;}
.y84{bottom:260.209630px;}
.y10a{bottom:265.479081px;}
.y138{bottom:266.251831px;}
.y1fc{bottom:266.522693px;}
.y1b0{bottom:269.230340px;}
.ybb{bottom:269.828472px;}
.yac{bottom:270.468354px;}
.y43{bottom:272.201898px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y12a{bottom:275.272148px;}
.y169{bottom:275.935536px;}
.y195{bottom:275.939795px;}
.y83{bottom:275.941215px;}
.y109{bottom:279.000526px;}
.y106{bottom:279.001721px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.yba{bottom:285.476295px;}
.y1fb{bottom:287.442111px;}
.y42{bottom:287.934902px;}
.yab{bottom:289.156618px;}
.y1d2{bottom:289.465182px;}
.y228{bottom:289.653442px;}
.y137{bottom:290.148053px;}
.y129{bottom:290.919971px;}
.y168{bottom:291.583359px;}
.y194{bottom:291.587618px;}
.y82{bottom:291.589038px;}
.y108{bottom:292.437087px;}
.y105{bottom:292.438283px;}
.yb9{bottom:301.209300px;}
.y1fa{bottom:301.643283px;}
.yaa{bottom:303.381306px;}
.y41{bottom:303.582725px;}
.y1d1{bottom:305.113005px;}
.y107{bottom:305.873649px;}
.y104{bottom:305.874844px;}
.y128{bottom:306.651556px;}
.y167{bottom:307.316364px;}
.y193{bottom:307.320623px;}
.y81{bottom:307.322043px;}
.y227{bottom:309.127338px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y1af{bottom:311.070024px;}
.y136{bottom:314.129456px;}
.y103{bottom:319.311406px;}
.y40{bottom:319.315730px;}
.y1d0{bottom:320.846010px;}
.ya9{bottom:322.052144px;}
.y1f9{bottom:322.562700px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y166{bottom:322.964187px;}
.y192{bottom:322.968446px;}
.y80{bottom:322.969866px;}
.y226{bottom:323.243404px;}
.y1ae{bottom:326.803029px;}
.y127{bottom:330.547778px;}
.y102{bottom:332.747968px;}
.y3f{bottom:334.963553px;}
.y1cf{bottom:336.493833px;}
.y1f8{bottom:336.763872px;}
.y135{bottom:338.025678px;}
.y165{bottom:338.697192px;}
.y191{bottom:338.701451px;}
.y7f{bottom:338.702870px;}
.ya8{bottom:340.449972px;}
.y225{bottom:342.717300px;}
.yc5{bottom:345.084450px;}
.y101{bottom:346.184529px;}
.ye{bottom:348.133500px;}
.y3e{bottom:350.696558px;}
.y1ad{bottom:350.699251px;}
.y1f7{bottom:350.965043px;}
.y1ce{bottom:352.225418px;}
.y164{bottom:354.345015px;}
.y190{bottom:354.349274px;}
.y7e{bottom:354.350694px;}
.yd8{bottom:354.356945px;}
.y126{bottom:354.438714px;}
.y224{bottom:356.918471px;}
.y100{bottom:359.621091px;}
.y134{bottom:361.921900px;}
.ya7{bottom:362.679886px;}
.yc6{bottom:364.798950px;}
.y3d{bottom:366.344381px;}
.y1ac{bottom:366.432255px;}
.yd7{bottom:367.113250px;}
.y1cd{bottom:367.873241px;}
.y163{bottom:370.078019px;}
.y18f{bottom:370.082278px;}
.y7d{bottom:370.083698px;}
.y125{bottom:370.086538px;}
.y1f6{bottom:371.884461px;}
.yff{bottom:373.142535px;}
.y223{bottom:376.307262px;}
.yd6{bottom:379.784672px;}
.ya6{bottom:381.366490px;}
.y3c{bottom:382.077385px;}
.y1cc{bottom:383.606245px;}
.y162{bottom:385.725843px;}
.y18e{bottom:385.730102px;}
.y7c{bottom:385.731521px;}
.y124{bottom:385.818122px;}
.y1f5{bottom:386.085632px;}
.yfe{bottom:386.579097px;}
.yd{bottom:386.785499px;}
.y1ab{bottom:390.328478px;}
.y222{bottom:390.508434px;}
.yd5{bottom:392.456095px;}
.y3b{bottom:397.725209px;}
.y1cb{bottom:399.254069px;}
.ya5{bottom:399.741084px;}
.yfd{bottom:400.015659px;}
.y161{bottom:401.457427px;}
.y18d{bottom:401.461687px;}
.y7b{bottom:401.464526px;}
.y123{bottom:401.549707px;}
.yc7{bottom:401.606884px;}
.y221{bottom:404.709605px;}
.yd4{bottom:405.212400px;}
.y1f4{bottom:407.005050px;}
.yc{bottom:408.044999px;}
.yfc{bottom:413.452220px;}
.y3a{bottom:413.458213px;}
.ya4{bottom:413.965773px;}
.y1aa{bottom:414.224700px;}
.y160{bottom:417.190432px;}
.y18c{bottom:417.194691px;}
.y7a{bottom:417.197530px;}
.y1f3{bottom:421.206222px;}
.y1ca{bottom:423.150291px;}
.y220{bottom:424.183501px;}
.yfb{bottom:426.888782px;}
.y39{bottom:429.106036px;}
.ya3{bottom:432.661505px;}
.y15f{bottom:432.838255px;}
.y18b{bottom:432.842514px;}
.y79{bottom:432.845354px;}
.y122{bottom:432.929115px;}
.y1a9{bottom:438.120922px;}
.y21f{bottom:438.384672px;}
.yfa{bottom:440.325344px;}
.y1f2{bottom:442.125640px;}
.yc8{bottom:442.325137px;}
.y38{bottom:444.837621px;}
.ya2{bottom:446.887853px;}
.y1c9{bottom:447.046513px;}
.y15e{bottom:448.571260px;}
.y18a{bottom:448.575519px;}
.y121{bottom:448.576939px;}
.y78{bottom:448.578358px;}
.yf9{bottom:453.846788px;}
.y1a8{bottom:453.853926px;}
.y1f1{bottom:456.326811px;}
.y21e{bottom:457.773463px;}
.y37{bottom:460.485444px;}
.y1c8{bottom:462.779517px;}
.y15d{bottom:464.219083px;}
.y189{bottom:464.223342px;}
.y120{bottom:464.309943px;}
.yf8{bottom:467.283350px;}
.ya1{bottom:469.131044px;}
.y1f0{bottom:470.527982px;}
.y21d{bottom:471.974635px;}
.y36{bottom:476.218449px;}
.y1a7{bottom:477.750148px;}
.y1c7{bottom:478.512522px;}
.y15c{bottom:479.952088px;}
.y188{bottom:479.956347px;}
.y11f{bottom:479.957766px;}
.yf7{bottom:480.719911px;}
.yf3{bottom:480.721107px;}
.yc9{bottom:483.042273px;}
.y1ef{bottom:484.729154px;}
.ya0{bottom:491.061395px;}
.y21c{bottom:491.363425px;}
.y35{bottom:491.866272px;}
.y1a6{bottom:493.397972px;}
.yf6{bottom:494.156473px;}
.yf2{bottom:494.157669px;}
.y1c6{bottom:494.160345px;}
.y15b{bottom:495.599911px;}
.y187{bottom:495.604170px;}
.y77{bottom:495.690771px;}
.yb{bottom:502.864502px;}
.y21b{bottom:505.564597px;}
.y1ee{bottom:505.648572px;}
.yf5{bottom:507.593035px;}
.yf1{bottom:507.594230px;}
.y34{bottom:507.599277px;}
.y9f{bottom:509.733062px;}
.y1c5{bottom:509.893350px;}
.y15a{bottom:511.332915px;}
.y76{bottom:511.338594px;}
.y1a5{bottom:517.294194px;}
.ya{bottom:520.864502px;}
.yf4{bottom:521.029596px;}
.yf0{bottom:521.030792px;}
.y33{bottom:523.247100px;}
.y21a{bottom:525.038493px;}
.y1c4{bottom:525.541173px;}
.y1ed{bottom:526.567990px;}
.y159{bottom:526.980739px;}
.y75{bottom:527.071599px;}
.y9e{bottom:528.418836px;}
.ycc{bottom:530.101765px;}
.yef{bottom:534.467354px;}
.y9{bottom:538.864499px;}
.y219{bottom:539.239664px;}
.y186{bottom:539.739493px;}
.y1c3{bottom:541.274177px;}
.y1a4{bottom:541.275597px;}
.y9d{bottom:542.645185px;}
.y158{bottom:542.713743px;}
.y74{bottom:542.719422px;}
.y1ec{bottom:547.487407px;}
.yee{bottom:547.988798px;}
.y185{bottom:555.472497px;}
.y8{bottom:556.864499px;}
.y1c2{bottom:556.922001px;}
.y157{bottom:558.361566px;}
.y73{bottom:558.451007px;}
.y218{bottom:558.628455px;}
.ycb{bottom:560.508126px;}
.y9c{bottom:561.340087px;}
.yed{bottom:561.425360px;}
.y1eb{bottom:561.688579px;}
.y1a3{bottom:565.171819px;}
.y156{bottom:574.093151px;}
.y72{bottom:574.098830px;}
.yec{bottom:574.861921px;}
.y32{bottom:578.518951px;}
.y184{bottom:579.368719px;}
.y9b{bottom:579.714680px;}
.y1c1{bottom:580.818223px;}
.y1ea{bottom:582.607997px;}
.yeb{bottom:588.298483px;}
.ye4{bottom:588.299678px;}
.y1a2{bottom:589.068041px;}
.y155{bottom:589.740974px;}
.y71{bottom:589.831834px;}
.yca{bottom:590.442300px;}
.y9a{bottom:593.941859px;}
.y31{bottom:594.250930px;}
.y183{bottom:595.016542px;}
.y1e9{bottom:596.809168px;}
.y217{bottom:600.467291px;}
.yea{bottom:601.735045px;}
.ye3{bottom:601.736240px;}
.y1c0{bottom:604.714445px;}
.y154{bottom:605.472559px;}
.y70{bottom:605.479658px;}
.y30{bottom:609.217770px;}
.y99{bottom:612.627633px;}
.y1a1{bottom:612.964263px;}
.y216{bottom:614.668462px;}
.ye9{bottom:615.171606px;}
.ye2{bottom:615.172802px;}
.y1e8{bottom:617.728586px;}
.y182{bottom:618.912764px;}
.y1bf{bottom:620.446030px;}
.y153{bottom:621.120382px;}
.y6f{bottom:621.212662px;}
.y2f{bottom:625.970732px;}
.ye8{bottom:628.693051px;}
.ye1{bottom:628.694246px;}
.y98{bottom:631.299300px;}
.y1e7{bottom:631.929757px;}
.y215{bottom:634.142358px;}
.y181{bottom:634.645769px;}
.y1be{bottom:636.093853px;}
.y152{bottom:636.853387px;}
.y6e{bottom:636.860485px;}
.y2e{bottom:638.727037px;}
.ycd{bottom:639.555750px;}
.ye7{bottom:642.129612px;}
.ye0{bottom:642.130808px;}
.y7{bottom:645.510000px;}
.y1e6{bottom:646.130929px;}
.ydc{bottom:649.358950px;}
.y2d{bottom:651.398460px;}
.y1bd{bottom:651.825438px;}
.y151{bottom:652.501210px;}
.y6d{bottom:652.592070px;}
.y214{bottom:653.531149px;}
.y97{bottom:655.063554px;}
.ye6{bottom:655.566174px;}
.ydf{bottom:655.567369px;}
.y180{bottom:658.541991px;}
.ydb{bottom:662.030372px;}
.y2c{bottom:664.835022px;}
.yce{bottom:666.174600px;}
.y6{bottom:666.771000px;}
.y1e5{bottom:667.050347px;}
.y1bc{bottom:667.473261px;}
.y213{bottom:667.732320px;}
.y150{bottom:668.232795px;}
.y6c{bottom:668.239894px;}
.ye5{bottom:669.002736px;}
.yde{bottom:669.003931px;}
.y17f{bottom:674.274996px;}
.yda{bottom:674.701795px;}
.y2b{bottom:677.591327px;}
.y1e4{bottom:681.251518px;}
.y96{bottom:682.927440px;}
.y1bb{bottom:683.206265px;}
.y14f{bottom:683.880618px;}
.y6b{bottom:683.971478px;}
.y212{bottom:687.206216px;}
.yd9{bottom:687.458100px;}
.y2a{bottom:691.027888px;}
.ydd{bottom:694.006050px;}
.y1e3{bottom:695.452689px;}
.y17e{bottom:698.171218px;}
.y14e{bottom:699.613623px;}
.y6a{bottom:699.619302px;}
.y211{bottom:701.322282px;}
.y29{bottom:703.699311px;}
.ycf{bottom:706.315316px;}
.y1ba{bottom:707.102488px;}
.y95{bottom:711.095562px;}
.y17d{bottom:713.819041px;}
.y14d{bottom:715.261446px;}
.y69{bottom:715.350886px;}
.y1e2{bottom:716.372107px;}
.y28{bottom:717.135872px;}
.y210{bottom:720.796179px;}
.y5{bottom:726.298500px;}
.y55{bottom:728.107293px;}
.y27{bottom:729.892178px;}
.y14c{bottom:730.994451px;}
.y68{bottom:730.998710px;}
.y20f{bottom:734.997350px;}
.y1e1{bottom:737.291525px;}
.y17c{bottom:737.715263px;}
.y94{bottom:738.949119px;}
.y54{bottom:739.332272px;}
.y26{bottom:742.563600px;}
.y14b{bottom:746.642274px;}
.y67{bottom:746.730295px;}
.y53{bottom:750.557250px;}
.y3{bottom:752.599495px;}
.y17b{bottom:753.448268px;}
.y20e{bottom:754.386141px;}
.yd0{bottom:755.046508px;}
.y1e0{bottom:758.210943px;}
.y25{bottom:758.976150px;}
.y14a{bottom:762.375278px;}
.y66{bottom:762.378118px;}
.y93{bottom:767.120058px;}
.y20d{bottom:768.587312px;}
.y1df{bottom:772.412114px;}
.y17a{bottom:777.344490px;}
.y149{bottom:778.023102px;}
.y65{bottom:778.109703px;}
.y4a{bottom:783.637500px;}
.y20c{bottom:788.061208px;}
.y179{bottom:793.076075px;}
.y1de{bottom:793.331532px;}
.y148{bottom:793.754686px;}
.y64{bottom:793.757526px;}
.y24{bottom:794.862750px;}
.y92{bottom:794.972676px;}
.yd1{bottom:803.741240px;}
.y20b{bottom:807.449999px;}
.y147{bottom:809.402510px;}
.y63{bottom:809.489111px;}
.y1dd{bottom:812.040750px;}
.y23{bottom:812.721000px;}
.y178{bottom:816.972297px;}
.y20a{bottom:821.651170px;}
.y91{bottom:822.805575px;}
.y146{bottom:825.135514px;}
.y62{bottom:825.136934px;}
.y177{bottom:832.620120px;}
.y145{bottom:840.783337px;}
.y61{bottom:840.868519px;}
.y209{bottom:841.125066px;}
.y22{bottom:842.653469px;}
.y176{bottom:848.351705px;}
.y90{bottom:851.005623px;}
.yd3{bottom:854.071403px;}
.y208{bottom:855.326238px;}
.y60{bottom:856.516342px;}
.y175{bottom:863.999528px;}
.y49{bottom:866.040490px;}
.y5f{bottom:872.247927px;}
.y21{bottom:874.034400px;}
.y207{bottom:874.715029px;}
.y8f{bottom:878.840400px;}
.y2{bottom:879.369000px;}
.yd2{bottom:882.808950px;}
.y48{bottom:883.983900px;}
.y5e{bottom:887.895750px;}
.y206{bottom:888.916200px;}
.y52{bottom:940.705701px;}
.y51{bottom:956.437500px;}
.y1{bottom:966.726000px;}
.h16{height:24.541506px;}
.h19{height:25.956613px;}
.h18{height:29.371920px;}
.h15{height:30.383984px;}
.h7{height:32.130000px;}
.h1f{height:33.542639px;}
.h1d{height:34.937101px;}
.h1b{height:35.339867px;}
.he{height:37.396178px;}
.h1a{height:37.530000px;}
.h14{height:37.547999px;}
.h13{height:39.732794px;}
.hd{height:39.756574px;}
.h1c{height:40.986513px;}
.hf{height:41.966036px;}
.h17{height:42.079612px;}
.h10{height:44.407903px;}
.h21{height:44.429046px;}
.h6{height:45.900000px;}
.hc{height:46.508272px;}
.h3{height:48.195000px;}
.h20{height:52.326122px;}
.h12{height:53.008913px;}
.h1e{height:54.501803px;}
.h2{height:55.080000px;}
.h11{height:56.093329px;}
.hb{height:58.430414px;}
.h5{height:78.030000px;}
.ha{height:94.974950px;}
.h4{height:119.055004px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:739.500000px;}
.w3{width:739.842000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:29.763750px;}
.x8{left:72.283500px;}
.x3b{left:73.560081px;}
.x39{left:79.512379px;}
.x9{left:90.226962px;}
.x3a{left:94.649710px;}
.x37{left:96.944773px;}
.x1{left:102.045000px;}
.x3c{left:105.196430px;}
.x2{left:106.297500px;}
.x7{left:117.354300px;}
.x38{left:122.456602px;}
.x18{left:148.818900px;}
.x1d{left:158.454853px;}
.x1c{left:162.607326px;}
.x5{left:167.186347px;}
.x2c{left:168.738178px;}
.x2b{left:174.171700px;}
.x30{left:178.497972px;}
.x3d{left:181.729289px;}
.xd{left:191.848800px;}
.x23{left:193.719600px;}
.x27{left:197.041591px;}
.x1e{left:199.075127px;}
.x31{left:201.968617px;}
.x4{left:203.484001px;}
.x26{left:207.217803px;}
.x2d{left:223.104490px;}
.x2e{left:236.877900px;}
.x1b{left:238.446600px;}
.x29{left:249.909687px;}
.x19{left:257.328646px;}
.x25{left:259.253756px;}
.x28{left:261.078375px;}
.x2f{left:263.935925px;}
.x6{left:280.289700px;}
.x2a{left:308.032350px;}
.x24{left:326.690850px;}
.x32{left:373.493697px;}
.x33{left:396.964342px;}
.x3{left:454.959000px;}
.xe{left:601.823400px;}
.x11{left:607.861200px;}
.x17{left:609.562159px;}
.x21{left:611.007832px;}
.x20{left:613.643975px;}
.xa{left:615.344700px;}
.x10{left:618.576360px;}
.x15{left:620.957326px;}
.x35{left:622.999612px;}
.xf{left:624.188849px;}
.x36{left:651.233249px;}
.x16{left:652.592174px;}
.x13{left:655.483333px;}
.xb{left:657.949090px;}
.x1f{left:660.415500px;}
.x34{left:664.413967px;}
.x12{left:668.664193px;}
.x22{left:672.321783px;}
.x14{left:681.675585px;}
.xc{left:688.733700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.417890pt;}
.ls59{letter-spacing:-1.433571pt;}
.ls57{letter-spacing:-1.246803pt;}
.ls4a{letter-spacing:-1.211469pt;}
.ls4b{letter-spacing:-1.186230pt;}
.ls4e{letter-spacing:-1.181182pt;}
.ls58{letter-spacing:-1.171087pt;}
.ls56{letter-spacing:-1.166039pt;}
.ls4d{letter-spacing:-1.160991pt;}
.ls50{letter-spacing:-1.155943pt;}
.ls48{letter-spacing:-1.150895pt;}
.ls4c{letter-spacing:-1.145848pt;}
.ls47{letter-spacing:-1.140800pt;}
.ls53{letter-spacing:-1.135752pt;}
.ls4f{letter-spacing:-1.130704pt;}
.ls49{letter-spacing:-1.125656pt;}
.ls51{letter-spacing:-1.120609pt;}
.ls55{letter-spacing:-1.110513pt;}
.ls52{letter-spacing:-1.090322pt;}
.ls67{letter-spacing:-1.080226pt;}
.ls6d{letter-spacing:-1.065083pt;}
.ls54{letter-spacing:-1.054987pt;}
.ls64{letter-spacing:-1.024701pt;}
.ls69{letter-spacing:-1.014605pt;}
.ls63{letter-spacing:-1.009557pt;}
.ls2e{letter-spacing:-0.995995pt;}
.ls68{letter-spacing:-0.989366pt;}
.ls6b{letter-spacing:-0.969175pt;}
.ls65{letter-spacing:-0.964127pt;}
.ls66{letter-spacing:-0.943936pt;}
.ls5f{letter-spacing:-0.928793pt;}
.ls35{letter-spacing:-0.912000pt;}
.ls6c{letter-spacing:-0.908602pt;}
.ls6a{letter-spacing:-0.903554pt;}
.ls70{letter-spacing:-0.802598pt;}
.ls72{letter-spacing:-0.777359pt;}
.ls81{letter-spacing:-0.776816pt;}
.ls6f{letter-spacing:-0.772311pt;}
.ls79{letter-spacing:-0.757168pt;}
.ls71{letter-spacing:-0.752120pt;}
.ls6e{letter-spacing:-0.742025pt;}
.ls7f{letter-spacing:-0.731652pt;}
.ls80{letter-spacing:-0.718103pt;}
.ls37{letter-spacing:-0.690107pt;}
.ls25{letter-spacing:-0.616645pt;}
.ls2f{letter-spacing:-0.607602pt;}
.ls83{letter-spacing:-0.569063pt;}
.ls38{letter-spacing:-0.568099pt;}
.ls3b{letter-spacing:-0.475827pt;}
.ls13{letter-spacing:-0.200631pt;}
.ls21{letter-spacing:-0.197680pt;}
.ls11{letter-spacing:-0.196981pt;}
.ls1b{letter-spacing:-0.194730pt;}
.ls1c{letter-spacing:-0.185879pt;}
.ls1a{letter-spacing:-0.182928pt;}
.ls20{letter-spacing:-0.165225pt;}
.ls14{letter-spacing:-0.159324pt;}
.ls22{letter-spacing:-0.112117pt;}
.ls24{letter-spacing:-0.011802pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7c{letter-spacing:0.004516pt;}
.ls2a{letter-spacing:0.009600pt;}
.ls23{letter-spacing:0.020653pt;}
.ls1f{letter-spacing:0.041306pt;}
.ls32{letter-spacing:0.043366pt;}
.ls1e{letter-spacing:0.047207pt;}
.ls31{letter-spacing:0.047655pt;}
.lsc{letter-spacing:0.053419pt;}
.ls17{letter-spacing:0.059009pt;}
.lse{letter-spacing:0.060096pt;}
.ls29{letter-spacing:0.073761pt;}
.ls26{letter-spacing:0.076712pt;}
.ls16{letter-spacing:0.082613pt;}
.ls7a{letter-spacing:0.094844pt;}
.ls3a{letter-spacing:0.095319pt;}
.ls7{letter-spacing:0.121147pt;}
.ls39{letter-spacing:0.144884pt;}
.ls28{letter-spacing:0.171126pt;}
.ls7d{letter-spacing:0.171622pt;}
.ls15{letter-spacing:0.174077pt;}
.ls84{letter-spacing:0.198720pt;}
.ls30{letter-spacing:0.230333pt;}
.ls10{letter-spacing:0.330528pt;}
.ls12{letter-spacing:0.343883pt;}
.lsd{letter-spacing:0.353899pt;}
.ls2d{letter-spacing:0.373298pt;}
.ls1d{letter-spacing:0.383559pt;}
.ls19{letter-spacing:0.386509pt;}
.lsf{letter-spacing:0.390624pt;}
.ls18{letter-spacing:0.401262pt;}
.ls27{letter-spacing:0.418964pt;}
.ls82{letter-spacing:0.451637pt;}
.ls33{letter-spacing:0.477026pt;}
.ls3c{letter-spacing:0.541253pt;}
.ls34{letter-spacing:0.563758pt;}
.ls36{letter-spacing:0.652800pt;}
.ls2b{letter-spacing:0.672000pt;}
.ls2c{letter-spacing:0.697197pt;}
.ls60{letter-spacing:6.506597pt;}
.ls7b{letter-spacing:6.950699pt;}
.ls40{letter-spacing:7.071949pt;}
.ls2{letter-spacing:7.774664pt;}
.ls77{letter-spacing:7.839213pt;}
.ls6{letter-spacing:8.020933pt;}
.ls3{letter-spacing:8.076469pt;}
.ls62{letter-spacing:8.929535pt;}
.ls5c{letter-spacing:9.792706pt;}
.ls3d{letter-spacing:10.135956pt;}
.ls46{letter-spacing:10.337867pt;}
.ls74{letter-spacing:10.438823pt;}
.ls1{letter-spacing:10.495159pt;}
.ls9{letter-spacing:10.701308pt;}
.lsb{letter-spacing:10.796964pt;}
.ls73{letter-spacing:10.938554pt;}
.ls8{letter-spacing:11.004175pt;}
.ls5{letter-spacing:11.281552pt;}
.ls44{letter-spacing:11.307042pt;}
.ls4{letter-spacing:11.400574pt;}
.ls45{letter-spacing:11.912777pt;}
.ls3f{letter-spacing:12.518511pt;}
.ls78{letter-spacing:13.159580pt;}
.ls76{letter-spacing:13.422065pt;}
.ls5e{letter-spacing:13.765314pt;}
.ls41{letter-spacing:14.936401pt;}
.ls61{letter-spacing:14.976783pt;}
.ls7e{letter-spacing:14.989843pt;}
.ls3e{letter-spacing:15.511072pt;}
.ls43{letter-spacing:15.542135pt;}
.ls86{letter-spacing:15.897634pt;}
.ls42{letter-spacing:16.142822pt;}
.lsa{letter-spacing:16.662744pt;}
.ls85{letter-spacing:17.130604pt;}
.ls5a{letter-spacing:23.441921pt;}
.ls5b{letter-spacing:23.744788pt;}
.ls5d{letter-spacing:25.516562pt;}
.ls75{letter-spacing:30.054522pt;}
.ws1ce{word-spacing:-10.989032pt;}
.ws1fc{word-spacing:-7.889691pt;}
.wsba{word-spacing:-4.591732pt;}
.ws85{word-spacing:-2.192187pt;}
.wsb4{word-spacing:-1.843200pt;}
.ws82{word-spacing:-1.806219pt;}
.ws8d{word-spacing:-1.758470pt;}
.ws8c{word-spacing:-1.720114pt;}
.ws81{word-spacing:-1.716075pt;}
.ws9b{word-spacing:-1.664056pt;}
.wsc8{word-spacing:-1.629324pt;}
.ws90{word-spacing:-1.566691pt;}
.ws7d{word-spacing:-1.515755pt;}
.wsc4{word-spacing:-1.469364pt;}
.ws9c{word-spacing:-1.463425pt;}
.ws89{word-spacing:-1.289348pt;}
.ws7c{word-spacing:-1.245323pt;}
.ws9a{word-spacing:-1.197884pt;}
.ws91{word-spacing:-1.189033pt;}
.ws8b{word-spacing:-1.177231pt;}
.ws88{word-spacing:-1.174280pt;}
.ws7f{word-spacing:-1.078389pt;}
.wsc2{word-spacing:-1.064142pt;}
.ws7e{word-spacing:-1.055019pt;}
.ws80{word-spacing:-1.021632pt;}
.ws9d{word-spacing:-1.003154pt;}
.ws97{word-spacing:-0.958897pt;}
.wsb7{word-spacing:-0.953187pt;}
.wsb8{word-spacing:-0.854055pt;}
.wsb9{word-spacing:-0.797011pt;}
.ws93{word-spacing:-0.793672pt;}
.wsa4{word-spacing:-0.672000pt;}
.ws96{word-spacing:-0.631397pt;}
.ws8f{word-spacing:-0.622546pt;}
.ws98{word-spacing:-0.545834pt;}
.ws87{word-spacing:-0.536983pt;}
.ws22f{word-spacing:-0.496801pt;}
.ws8e{word-spacing:-0.489775pt;}
.ws84{word-spacing:-0.487445pt;}
.ws8a{word-spacing:-0.430766pt;}
.wsc7{word-spacing:-0.117708pt;}
.ws92{word-spacing:-0.064910pt;}
.ws9e{word-spacing:-0.057600pt;}
.ws43{word-spacing:-0.050478pt;}
.ws227{word-spacing:-0.045164pt;}
.wsc0{word-spacing:-0.042508pt;}
.ws0{word-spacing:0.000000pt;}
.wsc5{word-spacing:0.186649pt;}
.ws99{word-spacing:0.218334pt;}
.ws95{word-spacing:0.312748pt;}
.wsc6{word-spacing:0.315952pt;}
.wsb6{word-spacing:0.472781pt;}
.ws94{word-spacing:0.539933pt;}
.ws86{word-spacing:0.578289pt;}
.ws83{word-spacing:0.594283pt;}
.ws22d{word-spacing:0.672940pt;}
.ws22c{word-spacing:0.686489pt;}
.ws22e{word-spacing:0.731652pt;}
.wsc3{word-spacing:0.881618pt;}
.wsb1{word-spacing:0.943574pt;}
.ws105{word-spacing:1.090322pt;}
.ws106{word-spacing:1.100417pt;}
.ws226{word-spacing:6.517127pt;}
.ws228{word-spacing:6.761011pt;}
.wsbf{word-spacing:6.801237pt;}
.ws3d{word-spacing:7.085584pt;}
.wsa{word-spacing:7.103042pt;}
.ws39{word-spacing:7.121849pt;}
.ws3b{word-spacing:7.163693pt;}
.ws3a{word-spacing:7.191589pt;}
.ws9{word-spacing:7.226315pt;}
.ws38{word-spacing:7.236222pt;}
.ws1e1{word-spacing:7.263765pt;}
.ws3c{word-spacing:7.266908pt;}
.ws1e0{word-spacing:7.278908pt;}
.ws3e{word-spacing:7.303173pt;}
.ws229{word-spacing:7.312008pt;}
.ws15a{word-spacing:7.344530pt;}
.ws1cd{word-spacing:7.374816pt;}
.ws15d{word-spacing:7.430342pt;}
.ws158{word-spacing:7.566632pt;}
.ws159{word-spacing:7.672636pt;}
.wsd{word-spacing:7.795918pt;}
.ws4b{word-spacing:7.940168pt;}
.wsc{word-spacing:7.999955pt;}
.wsd0{word-spacing:8.005790pt;}
.wscf{word-spacing:8.015885pt;}
.ws176{word-spacing:8.046172pt;}
.ws1a3{word-spacing:8.071411pt;}
.ws4a{word-spacing:8.081506pt;}
.ws1af{word-spacing:8.121889pt;}
.ws1b0{word-spacing:8.131984pt;}
.wsce{word-spacing:8.142080pt;}
.ws1a5{word-spacing:8.157223pt;}
.ws1a6{word-spacing:8.162271pt;}
.ws45{word-spacing:8.172367pt;}
.ws16c{word-spacing:8.182462pt;}
.ws205{word-spacing:8.212749pt;}
.ws13d{word-spacing:8.237988pt;}
.ws1d2{word-spacing:8.288466pt;}
.ws1d8{word-spacing:8.349039pt;}
.wsd4{word-spacing:8.359135pt;}
.ws110{word-spacing:8.414660pt;}
.ws1f8{word-spacing:8.434852pt;}
.ws17a{word-spacing:8.475234pt;}
.ws195{word-spacing:8.515616pt;}
.ws1f2{word-spacing:8.555998pt;}
.ws196{word-spacing:8.586285pt;}
.ws12d{word-spacing:8.626667pt;}
.ws36{word-spacing:8.648081pt;}
.ws1bd{word-spacing:8.651906pt;}
.ws37{word-spacing:8.706795pt;}
.ws35{word-spacing:8.717156pt;}
.ws11a{word-spacing:8.737719pt;}
.ws22a{word-spacing:8.757248pt;}
.ws59{word-spacing:8.778101pt;}
.ws31{word-spacing:8.793379pt;}
.ws185{word-spacing:8.833627pt;}
.wse3{word-spacing:8.837358pt;}
.ws1b6{word-spacing:8.843722pt;}
.ws1a4{word-spacing:8.879057pt;}
.ws1a7{word-spacing:8.884105pt;}
.ws1c4{word-spacing:8.914391pt;}
.ws1f4{word-spacing:8.939630pt;}
.ws14b{word-spacing:8.954774pt;}
.wsed{word-spacing:9.024392pt;}
.ws1f7{word-spacing:9.075920pt;}
.ws18d{word-spacing:9.080968pt;}
.ws237{word-spacing:9.082427pt;}
.ws214{word-spacing:9.096112pt;}
.ws21{word-spacing:9.136494pt;}
.ws1ca{word-spacing:9.156685pt;}
.ws2b{word-spacing:9.202115pt;}
.ws1f{word-spacing:9.272784pt;}
.wsa5{word-spacing:9.287927pt;}
.ws149{word-spacing:9.398979pt;}
.ws1cf{word-spacing:9.489839pt;}
.wsf5{word-spacing:9.496228pt;}
.ws10f{word-spacing:9.504982pt;}
.ws1bb{word-spacing:9.520126pt;}
.ws1ef{word-spacing:9.530221pt;}
.wsa8{word-spacing:9.545365pt;}
.ws21e{word-spacing:9.552130pt;}
.ws18e{word-spacing:9.560508pt;}
.ws10e{word-spacing:9.600890pt;}
.ws238{word-spacing:9.628908pt;}
.ws1da{word-spacing:9.631177pt;}
.ws10d{word-spacing:9.636225pt;}
.ws141{word-spacing:9.641273pt;}
.ws1aa{word-spacing:9.646320pt;}
.ws23b{word-spacing:9.759883pt;}
.ws40{word-spacing:9.807849pt;}
.wsca{word-spacing:9.863375pt;}
.ws75{word-spacing:9.878519pt;}
.ws77{word-spacing:9.893662pt;}
.ws1fb{word-spacing:9.979474pt;}
.ws1bc{word-spacing:9.999665pt;}
.ws181{word-spacing:10.040048pt;}
.ws1d4{word-spacing:10.045095pt;}
.ws1a0{word-spacing:10.065287pt;}
.ws152{word-spacing:10.070334pt;}
.wscc{word-spacing:10.095573pt;}
.ws1c6{word-spacing:10.110717pt;}
.wsfa{word-spacing:10.112590pt;}
.ws3f{word-spacing:10.125860pt;}
.ws1fa{word-spacing:10.151099pt;}
.ws63{word-spacing:10.166242pt;}
.ws5{word-spacing:10.176351pt;}
.ws143{word-spacing:10.191481pt;}
.ws76{word-spacing:10.206625pt;}
.ws6{word-spacing:10.235862pt;}
.ws1d5{word-spacing:10.247007pt;}
.wscd{word-spacing:10.262150pt;}
.ws187{word-spacing:10.302533pt;}
.ws142{word-spacing:10.327772pt;}
.ws1c5{word-spacing:10.337867pt;}
.ws64{word-spacing:10.347963pt;}
.ws7{word-spacing:10.371887pt;}
.ws1f3{word-spacing:10.373202pt;}
.ws265{word-spacing:10.374110pt;}
.ws65{word-spacing:10.388345pt;}
.ws267{word-spacing:10.410241pt;}
.ws266{word-spacing:10.414757pt;}
.ws202{word-spacing:10.428727pt;}
.ws1a8{word-spacing:10.438823pt;}
.ws155{word-spacing:10.453966pt;}
.ws61{word-spacing:10.464062pt;}
.ws1e2{word-spacing:10.489301pt;}
.ws67{word-spacing:10.499396pt;}
.ws79{word-spacing:10.504444pt;}
.ws7a{word-spacing:10.509492pt;}
.wse0{word-spacing:10.533416pt;}
.wsee{word-spacing:10.541918pt;}
.wsf7{word-spacing:10.554670pt;}
.wsf4{word-spacing:10.567423pt;}
.ws100{word-spacing:10.571673pt;}
.wsbe{word-spacing:10.575924pt;}
.wse{word-spacing:10.601429pt;}
.ws7b{word-spacing:10.605400pt;}
.wsf2{word-spacing:10.605679pt;}
.wsdb{word-spacing:10.618432pt;}
.wsf1{word-spacing:10.626933pt;}
.ws272{word-spacing:10.627026pt;}
.wsf6{word-spacing:10.635435pt;}
.wsbc{word-spacing:10.639686pt;}
.wsd7{word-spacing:10.648187pt;}
.ws1ee{word-spacing:10.650830pt;}
.wse4{word-spacing:10.652438pt;}
.ws209{word-spacing:10.660925pt;}
.wsea{word-spacing:10.669441pt;}
.ws1f9{word-spacing:10.671021pt;}
.ws183{word-spacing:10.673692pt;}
.wse2{word-spacing:10.677943pt;}
.wsf8{word-spacing:10.686444pt;}
.wsfd{word-spacing:10.694946pt;}
.wsa2{word-spacing:10.703447pt;}
.ws1df{word-spacing:10.706356pt;}
.wsd9{word-spacing:10.711949pt;}
.ws230{word-spacing:10.712838pt;}
.wsec{word-spacing:10.716200pt;}
.ws273{word-spacing:10.717354pt;}
.wse6{word-spacing:10.724701pt;}
.wsd6{word-spacing:10.733203pt;}
.wsff{word-spacing:10.737453pt;}
.wsa0{word-spacing:10.741704pt;}
.ws182{word-spacing:10.750206pt;}
.wsdf{word-spacing:10.762958pt;}
.wsde{word-spacing:10.771460pt;}
.wseb{word-spacing:10.775710pt;}
.wse7{word-spacing:10.779961pt;}
.wse9{word-spacing:10.792713pt;}
.wsbb{word-spacing:10.796964pt;}
.wse5{word-spacing:10.801215pt;}
.ws5f{word-spacing:10.802263pt;}
.wsf3{word-spacing:10.805466pt;}
.wsd8{word-spacing:10.809717pt;}
.wsf0{word-spacing:10.813967pt;}
.ws16{word-spacing:10.818218pt;}
.ws9f{word-spacing:10.835221pt;}
.ws60{word-spacing:10.837598pt;}
.wsf9{word-spacing:10.843723pt;}
.ws5e{word-spacing:10.847694pt;}
.wsbd{word-spacing:10.856475pt;}
.ws131{word-spacing:10.857789pt;}
.ws17{word-spacing:10.873478pt;}
.wsc1{word-spacing:10.877729pt;}
.ws130{word-spacing:10.877980pt;}
.wsb{word-spacing:10.881980pt;}
.ws6e{word-spacing:10.883028pt;}
.ws15{word-spacing:10.886231pt;}
.wsdd{word-spacing:10.890481pt;}
.wse1{word-spacing:10.894732pt;}
.wsa1{word-spacing:10.898983pt;}
.ws50{word-spacing:10.908267pt;}
.wsdc{word-spacing:10.911735pt;}
.wse8{word-spacing:10.928738pt;}
.wsda{word-spacing:10.937240pt;}
.ws1d1{word-spacing:10.953697pt;}
.ws69{word-spacing:10.963793pt;}
.wsfe{word-spacing:10.966995pt;}
.ws208{word-spacing:10.968840pt;}
.ws13{word-spacing:10.975497pt;}
.wsef{word-spacing:10.996751pt;}
.ws48{word-spacing:11.029414pt;}
.ws15c{word-spacing:11.059701pt;}
.ws10{word-spacing:11.069014pt;}
.ws102{word-spacing:11.069796pt;}
.ws11{word-spacing:11.098769pt;}
.ws13a{word-spacing:11.100083pt;}
.ws8{word-spacing:11.141277pt;}
.ws1fe{word-spacing:11.155609pt;}
.ws12e{word-spacing:11.175800pt;}
.ws101{word-spacing:11.188035pt;}
.ws168{word-spacing:11.195991pt;}
.wsf{word-spacing:11.196537pt;}
.ws14c{word-spacing:11.211134pt;}
.ws14{word-spacing:11.230543pt;}
.ws1e7{word-spacing:11.251516pt;}
.ws6a{word-spacing:11.286851pt;}
.ws29{word-spacing:11.291899pt;}
.ws17b{word-spacing:11.312090pt;}
.ws22b{word-spacing:11.318032pt;}
.ws78{word-spacing:11.362568pt;}
.wsc9{word-spacing:11.392855pt;}
.ws12f{word-spacing:11.473619pt;}
.ws21b{word-spacing:11.512236pt;}
.ws16f{word-spacing:11.514001pt;}
.ws17c{word-spacing:11.564479pt;}
.ws221{word-spacing:11.570948pt;}
.ws34{word-spacing:11.611596pt;}
.ws20b{word-spacing:11.625053pt;}
.ws49{word-spacing:11.635148pt;}
.ws1f5{word-spacing:11.660387pt;}
.ws21f{word-spacing:11.674825pt;}
.ws103{word-spacing:11.675531pt;}
.ws21c{word-spacing:11.683858pt;}
.ws19b{word-spacing:11.695722pt;}
.ws224{word-spacing:11.715472pt;}
.ws66{word-spacing:11.720961pt;}
.ws218{word-spacing:11.733538pt;}
.ws27a{word-spacing:11.751603pt;}
.ws217{word-spacing:11.769669pt;}
.ws146{word-spacing:11.771439pt;}
.ws279{word-spacing:11.774185pt;}
.ws231{word-spacing:11.801284pt;}
.ws1ed{word-spacing:11.816869pt;}
.ws21a{word-spacing:11.850964pt;}
.ws160{word-spacing:11.877442pt;}
.ws233{word-spacing:11.887095pt;}
.ws270{word-spacing:11.905160pt;}
.ws12a{word-spacing:11.922872pt;}
.ws14e{word-spacing:11.938015pt;}
.ws19c{word-spacing:11.963254pt;}
.ws1c1{word-spacing:11.978398pt;}
.ws13b{word-spacing:12.018780pt;}
.ws261{word-spacing:12.058717pt;}
.ws26f{word-spacing:12.072266pt;}
.wsaf{word-spacing:12.119736pt;}
.ws278{word-spacing:12.140012pt;}
.ws1d7{word-spacing:12.150023pt;}
.ws15b{word-spacing:12.210596pt;}
.ws1c{word-spacing:12.235835pt;}
.ws1f0{word-spacing:12.266122pt;}
.ws1ae{word-spacing:12.281265pt;}
.ws12{word-spacing:12.305989pt;}
.ws47{word-spacing:12.306504pt;}
.ws276{word-spacing:12.352281pt;}
.ws275{word-spacing:12.388412pt;}
.ws113{word-spacing:12.402412pt;}
.ws132{word-spacing:12.422603pt;}
.ws188{word-spacing:12.518511pt;}
.ws277{word-spacing:12.523903pt;}
.ws1e8{word-spacing:12.543750pt;}
.ws4c{word-spacing:12.548798pt;}
.ws114{word-spacing:12.579084pt;}
.ws1b8{word-spacing:12.584132pt;}
.ws232{word-spacing:12.618747pt;}
.ws191{word-spacing:12.624514pt;}
.ws1d9{word-spacing:12.745661pt;}
.ws1b{word-spacing:12.775948pt;}
.ws41{word-spacing:12.806235pt;}
.ws211{word-spacing:12.821378pt;}
.ws46{word-spacing:12.846617pt;}
.ws215{word-spacing:12.866808pt;}
.ws1c7{word-spacing:12.871856pt;}
.wscb{word-spacing:12.886999pt;}
.ws165{word-spacing:12.897095pt;}
.ws1e3{word-spacing:12.912238pt;}
.ws13f{word-spacing:12.927382pt;}
.ws71{word-spacing:12.932429pt;}
.ws1be{word-spacing:12.952621pt;}
.ws192{word-spacing:12.957668pt;}
.wsd5{word-spacing:12.962716pt;}
.ws166{word-spacing:12.967764pt;}
.ws1e9{word-spacing:12.972812pt;}
.wsad{word-spacing:12.982907pt;}
.ws1e5{word-spacing:12.993003pt;}
.ws1a9{word-spacing:12.998051pt;}
.wsa6{word-spacing:13.003098pt;}
.ws53{word-spacing:13.013194pt;}
.ws207{word-spacing:13.018242pt;}
.wsac{word-spacing:13.023290pt;}
.ws1e4{word-spacing:13.033385pt;}
.ws4d{word-spacing:13.053576pt;}
.ws1db{word-spacing:13.058624pt;}
.ws1cb{word-spacing:13.063672pt;}
.ws20c{word-spacing:13.073767pt;}
.ws18{word-spacing:13.078815pt;}
.ws20{word-spacing:13.088911pt;}
.ws5d{word-spacing:13.099006pt;}
.ws174{word-spacing:13.104054pt;}
.ws259{word-spacing:13.129097pt;}
.wsd1{word-spacing:13.134341pt;}
.ws1d3{word-spacing:13.144436pt;}
.ws28{word-spacing:13.149484pt;}
.wsd2{word-spacing:13.159580pt;}
.ws26{word-spacing:13.189867pt;}
.ws258{word-spacing:13.196843pt;}
.ws1b7{word-spacing:13.215105pt;}
.ws154{word-spacing:13.220153pt;}
.ws54{word-spacing:13.225201pt;}
.ws72{word-spacing:13.230249pt;}
.ws200{word-spacing:13.250440pt;}
.ws23c{word-spacing:13.251039pt;}
.ws5c{word-spacing:13.255488pt;}
.ws167{word-spacing:13.285775pt;}
.ws20f{word-spacing:13.326157pt;}
.ws257{word-spacing:13.327818pt;}
.ws19d{word-spacing:13.422065pt;}
.ws19e{word-spacing:13.432160pt;}
.ws23d{word-spacing:13.436211pt;}
.ws1c3{word-spacing:13.452351pt;}
.ws175{word-spacing:13.477590pt;}
.ws220{word-spacing:13.481374pt;}
.ws144{word-spacing:13.482638pt;}
.ws203{word-spacing:13.487686pt;}
.ws234{word-spacing:13.531055pt;}
.ws17f{word-spacing:13.548259pt;}
.ws26d{word-spacing:13.558153pt;}
.ws198{word-spacing:13.654263pt;}
.ws162{word-spacing:13.674454pt;}
.ws252{word-spacing:13.783971pt;}
.ws253{word-spacing:13.860750pt;}
.ws163{word-spacing:13.962178pt;}
.ws147{word-spacing:13.992465pt;}
.ws26c{word-spacing:14.009790pt;}
.ws161{word-spacing:14.053038pt;}
.ws26b{word-spacing:14.086568pt;}
.ws6b{word-spacing:14.093420pt;}
.ws4{word-spacing:14.193078pt;}
.ws137{word-spacing:14.209519pt;}
.ws177{word-spacing:14.259997pt;}
.ws179{word-spacing:14.275141pt;}
.ws32{word-spacing:14.312387pt;}
.ws136{word-spacing:14.335714pt;}
.ws206{word-spacing:14.355905pt;}
.ws22{word-spacing:14.366001pt;}
.ws138{word-spacing:14.396288pt;}
.ws104{word-spacing:14.446765pt;}
.ws109{word-spacing:14.461909pt;}
.ws1de{word-spacing:14.466957pt;}
.ws148{word-spacing:14.492196pt;}
.ws42{word-spacing:14.507339pt;}
.ws204{word-spacing:14.512387pt;}
.ws44{word-spacing:14.537626pt;}
.ws107{word-spacing:14.572960pt;}
.wsb3{word-spacing:14.606400pt;}
.ws18c{word-spacing:14.608295pt;}
.ws153{word-spacing:14.618390pt;}
.ws271{word-spacing:14.642082pt;}
.ws55{word-spacing:14.658772pt;}
.ws26e{word-spacing:14.669181pt;}
.ws1d{word-spacing:14.678964pt;}
.ws58{word-spacing:14.699155pt;}
.ws139{word-spacing:14.709250pt;}
.ws256{word-spacing:14.718861pt;}
.ws23f{word-spacing:14.723377pt;}
.ws178{word-spacing:14.744585pt;}
.ws25c{word-spacing:14.750475pt;}
.ws1ad{word-spacing:14.764776pt;}
.ws235{word-spacing:14.768541pt;}
.ws17e{word-spacing:14.795063pt;}
.ws10b{word-spacing:14.805158pt;}
.ws10c{word-spacing:14.835445pt;}
.ws236{word-spacing:14.836286pt;}
.ws25a{word-spacing:14.840803pt;}
.ws24c{word-spacing:14.854352pt;}
.ws25b{word-spacing:14.867901pt;}
.ws26a{word-spacing:14.876934pt;}
.ws51{word-spacing:14.880875pt;}
.ws10a{word-spacing:14.885923pt;}
.ws251{word-spacing:14.885967pt;}
.ws244{word-spacing:14.894999pt;}
.ws274{word-spacing:14.908548pt;}
.ws23e{word-spacing:14.917581pt;}
.ws24d{word-spacing:14.931130pt;}
.ws24b{word-spacing:14.944679pt;}
.ws2c{word-spacing:14.956592pt;}
.ws247{word-spacing:14.958228pt;}
.ws250{word-spacing:15.016941pt;}
.ws2d{word-spacing:15.066621pt;}
.ws24a{word-spacing:15.084687pt;}
.ws108{word-spacing:15.108025pt;}
.ws260{word-spacing:15.111785pt;}
.ws2e{word-spacing:15.161465pt;}
.ws52{word-spacing:15.224125pt;}
.ws1f1{word-spacing:15.234220pt;}
.ws2f{word-spacing:15.247276pt;}
.ws246{word-spacing:15.260825pt;}
.ws13e{word-spacing:15.264507pt;}
.wsfb{word-spacing:15.273029pt;}
.ws25f{word-spacing:15.278891pt;}
.ws1b5{word-spacing:15.289746pt;}
.ws2a{word-spacing:15.415940pt;}
.ws245{word-spacing:15.459546pt;}
.wsfc{word-spacing:15.481316pt;}
.ws5a{word-spacing:15.557279pt;}
.ws1b9{word-spacing:15.607756pt;}
.ws14a{word-spacing:15.698617pt;}
.ws268{word-spacing:15.762143pt;}
.ws1ff{word-spacing:15.809668pt;}
.ws269{word-spacing:15.888601pt;}
.ws27{word-spacing:15.951006pt;}
.ws199{word-spacing:16.173108pt;}
.ws18a{word-spacing:16.193300pt;}
.ws56{word-spacing:16.213491pt;}
.ws189{word-spacing:16.309399pt;}
.ws19a{word-spacing:16.354829pt;}
.ws6f{word-spacing:16.445689pt;}
.ws1c9{word-spacing:16.450737pt;}
.ws70{word-spacing:16.475976pt;}
.ws1f6{word-spacing:16.501215pt;}
.ws210{word-spacing:16.541597pt;}
.ws1d0{word-spacing:16.571884pt;}
.ws30{word-spacing:16.584123pt;}
.ws16a{word-spacing:16.642553pt;}
.ws212{word-spacing:16.738461pt;}
.ws19f{word-spacing:16.743508pt;}
.ws242{word-spacing:16.778327pt;}
.ws16b{word-spacing:16.788938pt;}
.ws241{word-spacing:16.791876pt;}
.ws115{word-spacing:16.869703pt;}
.ws57{word-spacing:16.915133pt;}
.ws145{word-spacing:16.955515pt;}
.ws116{word-spacing:16.980754pt;}
.ws243{word-spacing:16.986080pt;}
.ws201{word-spacing:17.011041pt;}
.ws240{word-spacing:17.013178pt;}
.ws1a{word-spacing:17.016089pt;}
.ws25{word-spacing:17.076662pt;}
.ws128{word-spacing:17.081710pt;}
.ws197{word-spacing:17.122092pt;}
.wsa7{word-spacing:17.379529pt;}
.ws129{word-spacing:17.384577pt;}
.ws13c{word-spacing:17.419912pt;}
.ws3{word-spacing:17.454405pt;}
.ws123{word-spacing:17.636967pt;}
.ws126{word-spacing:17.667253pt;}
.ws122{word-spacing:17.707636pt;}
.ws140{word-spacing:17.737922pt;}
.ws127{word-spacing:17.768209pt;}
.ws124{word-spacing:17.828783pt;}
.ws6c{word-spacing:17.985264pt;}
.ws14d{word-spacing:18.106411pt;}
.ws11c{word-spacing:18.116506pt;}
.ws125{word-spacing:18.202319pt;}
.ws11e{word-spacing:18.252797pt;}
.ws11d{word-spacing:18.272988pt;}
.ws11b{word-spacing:18.303274pt;}
.ws121{word-spacing:18.404230pt;}
.ws219{word-spacing:18.575844pt;}
.ws111{word-spacing:18.585951pt;}
.ws19{word-spacing:18.590998pt;}
.ws1cc{word-spacing:18.641476pt;}
.wsaa{word-spacing:18.656620pt;}
.ws112{word-spacing:18.666715pt;}
.ws1bf{word-spacing:18.762623pt;}
.ws1c0{word-spacing:18.767671pt;}
.wsae{word-spacing:18.853483pt;}
.ws15f{word-spacing:18.863579pt;}
.ws1ab{word-spacing:18.868627pt;}
.ws1ac{word-spacing:18.893865pt;}
.ws73{word-spacing:18.909009pt;}
.ws12b{word-spacing:18.929200pt;}
.ws1b4{word-spacing:19.121016pt;}
.ws170{word-spacing:19.141207pt;}
.ws190{word-spacing:19.343119pt;}
.ws1a2{word-spacing:19.393596pt;}
.ws12c{word-spacing:19.479409pt;}
.ws120{word-spacing:19.545030pt;}
.ws11f{word-spacing:19.570269pt;}
.ws33{word-spacing:19.619126pt;}
.ws18f{word-spacing:19.635890pt;}
.ws20d{word-spacing:19.741894pt;}
.ws171{word-spacing:19.777228pt;}
.ws213{word-spacing:19.787324pt;}
.ws4e{word-spacing:19.953901pt;}
.ws169{word-spacing:19.974092pt;}
.ws18b{word-spacing:19.979140pt;}
.ws239{word-spacing:20.039148pt;}
.wsd3{word-spacing:20.064952pt;}
.ws16d{word-spacing:20.140669pt;}
.ws24{word-spacing:20.297150pt;}
.ws263{word-spacing:20.305615pt;}
.ws262{word-spacing:20.350778pt;}
.ws264{word-spacing:20.386909pt;}
.ws1a1{word-spacing:20.574778pt;}
.ws23a{word-spacing:20.689506pt;}
.ws164{word-spacing:20.832216pt;}
.ws134{word-spacing:20.907932pt;}
.ws24e{word-spacing:20.992103pt;}
.ws15e{word-spacing:21.089653pt;}
.ws24f{word-spacing:21.095980pt;}
.ws133{word-spacing:21.190608pt;}
.ws1c8{word-spacing:21.377377pt;}
.ws222{word-spacing:21.403093pt;}
.ws223{word-spacing:21.574715pt;}
.ws1e{word-spacing:21.639861pt;}
.ws20a{word-spacing:21.745865pt;}
.ws16e{word-spacing:21.872060pt;}
.ws254{word-spacing:22.202491pt;}
.ws4f{word-spacing:22.260739pt;}
.ws255{word-spacing:22.265721pt;}
.ws1b2{word-spacing:22.659514pt;}
.ws186{word-spacing:22.699897pt;}
.ws1d6{word-spacing:22.725136pt;}
.ws1b1{word-spacing:22.906856pt;}
.wsab{word-spacing:23.073433pt;}
.ws180{word-spacing:23.386396pt;}
.ws74{word-spacing:23.457065pt;}
.ws151{word-spacing:23.467160pt;}
.ws1dd{word-spacing:23.522686pt;}
.ws150{word-spacing:23.552973pt;}
.ws14f{word-spacing:23.694311pt;}
.ws216{word-spacing:23.742575pt;}
.ws225{word-spacing:23.769673pt;}
.wsa3{word-spacing:23.984235pt;}
.ws5b{word-spacing:24.274806pt;}
.ws194{word-spacing:24.451479pt;}
.ws193{word-spacing:24.512052pt;}
.ws1dc{word-spacing:24.678629pt;}
.wsb0{word-spacing:24.814919pt;}
.ws62{word-spacing:25.284363pt;}
.ws184{word-spacing:25.309602pt;}
.ws157{word-spacing:25.365128pt;}
.ws1ec{word-spacing:25.380271pt;}
.ws21d{word-spacing:25.729779pt;}
.ws20e{word-spacing:25.799238pt;}
.ws135{word-spacing:27.000611pt;}
.ws17d{word-spacing:27.081375pt;}
.wsa9{word-spacing:27.439768pt;}
.ws156{word-spacing:27.565963pt;}
.ws1c2{word-spacing:27.596250pt;}
.ws173{word-spacing:28.227223pt;}
.ws25e{word-spacing:28.326694pt;}
.ws25d{word-spacing:28.660905pt;}
.ws119{word-spacing:28.903626pt;}
.ws1ba{word-spacing:29.630508pt;}
.ws2{word-spacing:29.644865pt;}
.ws68{word-spacing:29.973757pt;}
.ws1{word-spacing:30.010428pt;}
.ws1ea{word-spacing:30.200908pt;}
.ws1e6{word-spacing:30.246338pt;}
.ws1eb{word-spacing:30.564348pt;}
.ws6d{word-spacing:31.553714pt;}
.ws23{word-spacing:31.826295pt;}
.ws172{word-spacing:31.856582pt;}
.ws118{word-spacing:33.421396pt;}
.ws249{word-spacing:33.696661pt;}
.ws117{word-spacing:33.764645pt;}
.ws248{word-spacing:33.782473pt;}
.ws1b3{word-spacing:36.470259pt;}
.ws1fd{word-spacing:42.401408pt;}
.wsb5{word-spacing:86.930624pt;}
.wsb2{word-spacing:89.099040pt;}
._28{margin-left:-12.049067pt;}
._27{margin-left:-10.524635pt;}
._2b{margin-left:-8.463514pt;}
._12{margin-left:-5.929472pt;}
._1f{margin-left:-4.757375pt;}
._1c{margin-left:-2.668567pt;}
._d{margin-left:-1.761678pt;}
._0{width:1.233775pt;}
._1d{width:2.379904pt;}
._21{width:4.892164pt;}
._25{width:5.801613pt;}
._19{width:6.705558pt;}
._4{width:8.050965pt;}
._5{width:9.151915pt;}
._3{width:10.142345pt;}
._2{width:11.400574pt;}
._b{width:12.510791pt;}
._8{width:14.027799pt;}
._1{width:15.292149pt;}
._a{width:16.905038pt;}
._7{width:18.086220pt;}
._6{width:19.696464pt;}
._c{width:20.590146pt;}
._29{width:21.523762pt;}
._9{width:22.649419pt;}
._10{width:24.446431pt;}
._e{width:25.511514pt;}
._26{width:26.763365pt;}
._1b{width:28.106841pt;}
._15{width:29.287980pt;}
._f{width:30.609778pt;}
._2a{width:31.654640pt;}
._17{width:33.806201pt;}
._2c{width:35.010926pt;}
._16{width:37.396061pt;}
._18{width:40.967867pt;}
._1a{width:42.471547pt;}
._14{width:56.896057pt;}
._13{width:72.771111pt;}
._11{width:73.682605pt;}
._20{width:94.412788pt;}
._24{width:98.167359pt;}
._1e{width:123.557605pt;}
._22{width:243.662829pt;}
._23{width:460.473523pt;}
.fse{font-size:27.896000pt;}
.fs10{font-size:29.504533pt;}
.fsf{font-size:33.386667pt;}
.fsd{font-size:34.537067pt;}
.fs4{font-size:37.333333pt;}
.fs15{font-size:38.127467pt;}
.fs13{font-size:39.712533pt;}
.fs9{font-size:42.507733pt;}
.fsc{font-size:45.163733pt;}
.fs8{font-size:47.820267pt;}
.fs11{font-size:48.000000pt;}
.fsa{font-size:50.477867pt;}
.fs12{font-size:52.420800pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:55.790400pt;}
.fs1{font-size:56.000000pt;}
.fs16{font-size:59.478400pt;}
.fs14{font-size:61.951467pt;}
.fsb{font-size:63.760533pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:66.417067pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:114.238400pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:86.333337pt;}
.y174{bottom:91.824579pt;}
.y1a0{bottom:91.828365pt;}
.y8e{bottom:91.829627pt;}
.y1dc{bottom:91.832151pt;}
.y140{bottom:91.835937pt;}
.y1b9{bottom:91.837199pt;}
.yc4{bottom:91.840116pt;}
.y5d{bottom:91.842543pt;}
.y50{bottom:91.844216pt;}
.y22d{bottom:91.853187pt;}
.y205{bottom:91.853311pt;}
.y133{bottom:97.207694pt;}
.y5c{bottom:99.854972pt;}
.y11e{bottom:101.803620pt;}
.y11a{bottom:101.880134pt;}
.y144{bottom:104.464756pt;}
.y4f{bottom:104.467479pt;}
.y22c{bottom:104.476450pt;}
.y204{bottom:104.476575pt;}
.y173{bottom:105.809472pt;}
.y19f{bottom:105.813258pt;}
.y8d{bottom:105.814520pt;}
.y1db{bottom:105.817044pt;}
.y13f{bottom:105.820830pt;}
.yc3{bottom:105.825009pt;}
.y5b{bottom:107.792081pt;}
.y132{bottom:111.192587pt;}
.y11d{bottom:113.067107pt;}
.y1b8{bottom:113.078285pt;}
.y119{bottom:113.823744pt;}
.y143{bottom:115.803693pt;}
.y5a{bottom:115.804510pt;}
.y4e{bottom:117.090743pt;}
.y22b{bottom:117.099714pt;}
.y172{bottom:119.718649pt;}
.y19e{bottom:119.722434pt;}
.y8c{bottom:119.723696pt;}
.y1da{bottom:119.726220pt;}
.y13e{bottom:119.730006pt;}
.yc2{bottom:119.734185pt;}
.y203{bottom:121.786704pt;}
.y59{bottom:123.741619pt;}
.y20{bottom:123.790666pt;}
.y11c{bottom:124.406044pt;}
.y1b7{bottom:127.061916pt;}
.y142{bottom:127.067180pt;}
.yb4{bottom:127.799867pt;}
.y118{bottom:128.412398pt;}
.y4d{bottom:129.714006pt;}
.y58{bottom:131.678729pt;}
.y131{bottom:132.433674pt;}
.y171{bottom:133.702280pt;}
.y19d{bottom:133.706065pt;}
.y8b{bottom:133.707327pt;}
.y1d9{bottom:133.709851pt;}
.y13d{bottom:133.713637pt;}
.yc1{bottom:133.717816pt;}
.y202{bottom:134.409968pt;}
.y11b{bottom:135.669531pt;}
.yb8{bottom:136.515156pt;}
.y141{bottom:138.330667pt;}
.y57{bottom:139.691157pt;}
.y117{bottom:140.356009pt;}
.y112{bottom:140.357071pt;}
.y1b6{bottom:140.971092pt;}
.y4c{bottom:142.337270pt;}
.yb3{bottom:143.963045pt;}
.y130{bottom:146.342850pt;}
.y201{bottom:147.033231pt;}
.y170{bottom:147.611456pt;}
.y19c{bottom:147.615242pt;}
.y8a{bottom:147.616503pt;}
.y1d8{bottom:147.619027pt;}
.y13c{bottom:147.622813pt;}
.y56{bottom:147.628267pt;}
.yb7{bottom:147.778642pt;}
.y116{bottom:152.299619pt;}
.y111{bottom:152.300682pt;}
.y1b5{bottom:154.954723pt;}
.y4b{bottom:154.960533pt;}
.yb2{bottom:156.608688pt;}
.yb6{bottom:159.117580pt;}
.y12f{bottom:160.327743pt;}
.y16f{bottom:161.595087pt;}
.y19b{bottom:161.598873pt;}
.y89{bottom:161.600134pt;}
.y1d7{bottom:161.602658pt;}
.y13b{bottom:161.606444pt;}
.y115{bottom:164.243229pt;}
.y110{bottom:164.244292pt;}
.y200{bottom:164.267712pt;}
.y1b4{bottom:168.863899pt;}
.yc0{bottom:170.077024pt;}
.yb5{bottom:170.381067pt;}
.yb1{bottom:173.204988pt;}
.y12e{bottom:174.236919pt;}
.y17{bottom:175.052000pt;}
.y16e{bottom:175.504263pt;}
.y19a{bottom:175.508049pt;}
.y88{bottom:175.509311pt;}
.y1d6{bottom:175.511835pt;}
.y114{bottom:176.262291pt;}
.y10f{bottom:176.263354pt;}
.y1ff{bottom:176.890975pt;}
.ybf{bottom:184.060655pt;}
.yb0{bottom:185.872759pt;}
.y47{bottom:186.170366pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y113{bottom:188.205901pt;}
.y10e{bottom:188.206964pt;}
.y16d{bottom:189.489156pt;}
.y199{bottom:189.492942pt;}
.y87{bottom:189.494204pt;}
.y1d5{bottom:189.496727pt;}
.y1b3{bottom:190.180703pt;}
.y1fe{bottom:194.125456pt;}
.y12d{bottom:195.478005pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.ybe{bottom:197.969831pt;}
.yaf{bottom:198.515452pt;}
.y10d{bottom:200.150574pt;}
.y46{bottom:200.153997pt;}
.y13a{bottom:201.518031pt;}
.y22a{bottom:201.987209pt;}
.y16c{bottom:203.398332pt;}
.y198{bottom:203.402118pt;}
.y86{bottom:203.403380pt;}
.y1d4{bottom:203.405904pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y12c{bottom:209.461636pt;}
.y1b2{bottom:211.421789pt;}
.ybd{bottom:211.953462pt;}
.y10c{bottom:212.094185pt;}
.y45{bottom:214.063173pt;}
.y229{bottom:214.610472pt;}
.yae{bottom:215.127242pt;}
.y139{bottom:215.427208pt;}
.y16b{bottom:217.383225pt;}
.y197{bottom:217.387011pt;}
.y85{bottom:217.388273pt;}
.y1d3{bottom:217.390797pt;}
.y10b{bottom:224.037795pt;}
.y1fd{bottom:224.285797pt;}
.y1b1{bottom:225.330965pt;}
.ybc{bottom:225.862638pt;}
.yad{bottom:227.771409pt;}
.y44{bottom:228.048066pt;}
.y12b{bottom:230.702723pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y16a{bottom:231.292401pt;}
.y196{bottom:231.296187pt;}
.y84{bottom:231.297449pt;}
.y10a{bottom:235.981406pt;}
.y138{bottom:236.668294pt;}
.y1fc{bottom:236.909061pt;}
.y1b0{bottom:239.315858pt;}
.ybb{bottom:239.847531pt;}
.yac{bottom:240.416315pt;}
.y43{bottom:241.957242pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y12a{bottom:244.686354pt;}
.y169{bottom:245.276032pt;}
.y195{bottom:245.279818pt;}
.y83{bottom:245.281080pt;}
.y109{bottom:248.000467pt;}
.y106{bottom:248.001530pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.yba{bottom:253.756707pt;}
.y1fb{bottom:255.504099pt;}
.y42{bottom:255.942135pt;}
.yab{bottom:257.028105pt;}
.y1d2{bottom:257.302384pt;}
.y228{bottom:257.469726pt;}
.y137{bottom:257.909380pt;}
.y129{bottom:258.595530pt;}
.y168{bottom:259.185208pt;}
.y194{bottom:259.188994pt;}
.y82{bottom:259.190256pt;}
.y108{bottom:259.944078pt;}
.y105{bottom:259.945140pt;}
.yb9{bottom:267.741600pt;}
.y1fa{bottom:268.127362pt;}
.yaa{bottom:269.672272pt;}
.y41{bottom:269.851311pt;}
.y1d1{bottom:271.211560pt;}
.y107{bottom:271.887688pt;}
.y104{bottom:271.888751pt;}
.y128{bottom:272.579161pt;}
.y167{bottom:273.170101pt;}
.y193{bottom:273.173887pt;}
.y81{bottom:273.175149pt;}
.y227{bottom:274.779856pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y1af{bottom:276.506688pt;}
.y136{bottom:279.226183pt;}
.y103{bottom:283.832361pt;}
.y40{bottom:283.836204pt;}
.y1d0{bottom:285.196453pt;}
.ya9{bottom:286.268572pt;}
.y1f9{bottom:286.722400pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y166{bottom:287.079277pt;}
.y192{bottom:287.083063pt;}
.y80{bottom:287.084325pt;}
.y226{bottom:287.327470pt;}
.y1ae{bottom:290.491581pt;}
.y127{bottom:293.820247pt;}
.y102{bottom:295.775971pt;}
.y3f{bottom:297.745381pt;}
.y1cf{bottom:299.105629pt;}
.y1f8{bottom:299.345664pt;}
.y135{bottom:300.467270pt;}
.y165{bottom:301.064170pt;}
.y191{bottom:301.067956pt;}
.y7f{bottom:301.069218pt;}
.ya8{bottom:302.622198pt;}
.y225{bottom:304.637600pt;}
.yc5{bottom:306.741733pt;}
.y101{bottom:307.719582pt;}
.ye{bottom:309.452000pt;}
.y3e{bottom:311.730274pt;}
.y1ad{bottom:311.732667pt;}
.y1f7{bottom:311.968927pt;}
.y1ce{bottom:313.089260pt;}
.y164{bottom:314.973347pt;}
.y190{bottom:314.977132pt;}
.y7e{bottom:314.978394pt;}
.yd8{bottom:314.983951pt;}
.y126{bottom:315.056635pt;}
.y224{bottom:317.260863pt;}
.y100{bottom:319.663192pt;}
.y134{bottom:321.708356pt;}
.ya7{bottom:322.382121pt;}
.yc6{bottom:324.265733pt;}
.y3d{bottom:325.639450pt;}
.y1ac{bottom:325.717560pt;}
.yd7{bottom:326.322889pt;}
.y1cd{bottom:326.998436pt;}
.y163{bottom:328.958239pt;}
.y18f{bottom:328.962025pt;}
.y7d{bottom:328.963287pt;}
.y125{bottom:328.965811pt;}
.y1f6{bottom:330.563965pt;}
.yff{bottom:331.682254pt;}
.y223{bottom:334.495344pt;}
.yd6{bottom:337.586375pt;}
.ya6{bottom:338.992436pt;}
.y3c{bottom:339.624343pt;}
.y1cc{bottom:340.983329pt;}
.y162{bottom:342.867416pt;}
.y18e{bottom:342.871201pt;}
.y7c{bottom:342.872463pt;}
.y124{bottom:342.949442pt;}
.y1f5{bottom:343.187229pt;}
.yfe{bottom:343.625864pt;}
.yd{bottom:343.809333pt;}
.y1ab{bottom:346.958647pt;}
.y222{bottom:347.118608pt;}
.yd5{bottom:348.849862pt;}
.y3b{bottom:353.533519pt;}
.y1cb{bottom:354.892505pt;}
.ya5{bottom:355.325408pt;}
.yfd{bottom:355.569474pt;}
.y161{bottom:356.851047pt;}
.y18d{bottom:356.854832pt;}
.y7b{bottom:356.857356pt;}
.y123{bottom:356.933073pt;}
.yc7{bottom:356.983897pt;}
.y221{bottom:359.741871pt;}
.yd4{bottom:360.188800pt;}
.y1f4{bottom:361.782267pt;}
.yc{bottom:362.706666pt;}
.yfc{bottom:367.513085pt;}
.y3a{bottom:367.518412pt;}
.ya4{bottom:367.969576pt;}
.y1aa{bottom:368.199733pt;}
.y160{bottom:370.835940pt;}
.y18c{bottom:370.839725pt;}
.y7a{bottom:370.842249pt;}
.y1f3{bottom:374.405530pt;}
.y1ca{bottom:376.133592pt;}
.y220{bottom:377.052001pt;}
.yfb{bottom:379.456695pt;}
.y39{bottom:381.427588pt;}
.ya3{bottom:384.588004pt;}
.y15f{bottom:384.745116pt;}
.y18b{bottom:384.748902pt;}
.y79{bottom:384.751425pt;}
.y122{bottom:384.825880pt;}
.y1a9{bottom:389.440819pt;}
.y21f{bottom:389.675264pt;}
.yfa{bottom:391.400306pt;}
.y1f2{bottom:393.000569pt;}
.yc8{bottom:393.177900pt;}
.y38{bottom:395.411219pt;}
.ya2{bottom:397.233647pt;}
.y1c9{bottom:397.374678pt;}
.y15e{bottom:398.730009pt;}
.y18a{bottom:398.733795pt;}
.y121{bottom:398.735057pt;}
.y78{bottom:398.736318pt;}
.yf9{bottom:403.419367pt;}
.y1a8{bottom:403.425712pt;}
.y1f1{bottom:405.623832pt;}
.y21e{bottom:406.909745pt;}
.y37{bottom:409.320395pt;}
.y1c8{bottom:411.359571pt;}
.y15d{bottom:412.639185pt;}
.y189{bottom:412.642971pt;}
.y120{bottom:412.719949pt;}
.yf8{bottom:415.362978pt;}
.ya1{bottom:417.005372pt;}
.y1f0{bottom:418.247095pt;}
.y21d{bottom:419.533009pt;}
.y36{bottom:423.305288pt;}
.y1a7{bottom:424.666799pt;}
.y1c7{bottom:425.344464pt;}
.y15c{bottom:426.624078pt;}
.y188{bottom:426.627864pt;}
.y11f{bottom:426.629126pt;}
.yf7{bottom:427.306588pt;}
.yf3{bottom:427.307651pt;}
.yc9{bottom:429.370910pt;}
.y1ef{bottom:430.870359pt;}
.ya0{bottom:436.499018pt;}
.y21c{bottom:436.767489pt;}
.y35{bottom:437.214464pt;}
.y1a6{bottom:438.575975pt;}
.yf6{bottom:439.250198pt;}
.yf2{bottom:439.251261pt;}
.y1c6{bottom:439.253640pt;}
.y15b{bottom:440.533254pt;}
.y187{bottom:440.537040pt;}
.y77{bottom:440.614019pt;}
.yb{bottom:446.990669pt;}
.y21b{bottom:449.390753pt;}
.y1ee{bottom:449.465397pt;}
.yf5{bottom:451.193809pt;}
.yf1{bottom:451.194871pt;}
.y34{bottom:451.199357pt;}
.y9f{bottom:453.096055pt;}
.y1c5{bottom:453.238533pt;}
.y15a{bottom:454.518147pt;}
.y76{bottom:454.523195pt;}
.y1a5{bottom:459.817061pt;}
.ya{bottom:462.990669pt;}
.yf4{bottom:463.137419pt;}
.yf0{bottom:463.138482pt;}
.y33{bottom:465.108533pt;}
.y21a{bottom:466.700883pt;}
.y1c4{bottom:467.147709pt;}
.y1ed{bottom:468.060435pt;}
.y159{bottom:468.427323pt;}
.y75{bottom:468.508088pt;}
.y9e{bottom:469.705632pt;}
.ycc{bottom:471.201569pt;}
.yef{bottom:475.082092pt;}
.y9{bottom:478.990666pt;}
.y219{bottom:479.324146pt;}
.y186{bottom:479.768438pt;}
.y1c3{bottom:481.132602pt;}
.y1a4{bottom:481.133864pt;}
.y9d{bottom:482.351275pt;}
.y158{bottom:482.412216pt;}
.y74{bottom:482.417264pt;}
.y1ec{bottom:486.655473pt;}
.yee{bottom:487.101154pt;}
.y185{bottom:493.753331pt;}
.y8{bottom:494.990666pt;}
.y1c2{bottom:495.041778pt;}
.y157{bottom:496.321392pt;}
.y73{bottom:496.400895pt;}
.y218{bottom:496.558627pt;}
.ycb{bottom:498.229445pt;}
.y9c{bottom:498.968966pt;}
.yed{bottom:499.044764pt;}
.y1eb{bottom:499.278737pt;}
.y1a3{bottom:502.374950pt;}
.y156{bottom:510.305023pt;}
.y72{bottom:510.310071pt;}
.yec{bottom:510.988374pt;}
.y32{bottom:514.239068pt;}
.y184{bottom:514.994417pt;}
.y9b{bottom:515.301938pt;}
.y1c1{bottom:516.282865pt;}
.y1ea{bottom:517.873775pt;}
.yeb{bottom:522.931985pt;}
.ye4{bottom:522.933048pt;}
.y1a2{bottom:523.616037pt;}
.y155{bottom:524.214199pt;}
.y71{bottom:524.294964pt;}
.yca{bottom:524.837600pt;}
.y9a{bottom:527.948319pt;}
.y31{bottom:528.223049pt;}
.y183{bottom:528.903593pt;}
.y1e9{bottom:530.497038pt;}
.y217{bottom:533.748703pt;}
.yea{bottom:534.875595pt;}
.ye3{bottom:534.876658pt;}
.y1c0{bottom:537.523951pt;}
.y154{bottom:538.197830pt;}
.y70{bottom:538.204140pt;}
.y30{bottom:541.526907pt;}
.y99{bottom:544.557896pt;}
.y1a1{bottom:544.857123pt;}
.y216{bottom:546.371966pt;}
.ye9{bottom:546.819206pt;}
.ye2{bottom:546.820268pt;}
.y1e8{bottom:549.092076pt;}
.y182{bottom:550.144680pt;}
.y1bf{bottom:551.507582pt;}
.y153{bottom:552.107007pt;}
.y6f{bottom:552.189033pt;}
.y2f{bottom:556.418429pt;}
.ye8{bottom:558.838267pt;}
.ye1{bottom:558.839330pt;}
.y98{bottom:561.154933pt;}
.y1e7{bottom:561.715340pt;}
.y215{bottom:563.682096pt;}
.y181{bottom:564.129572pt;}
.y1be{bottom:565.416758pt;}
.y152{bottom:566.091900pt;}
.y6e{bottom:566.098209pt;}
.y2e{bottom:567.757367pt;}
.ycd{bottom:568.494000pt;}
.ye7{bottom:570.781878pt;}
.ye0{bottom:570.782940pt;}
.y7{bottom:573.786667pt;}
.y1e6{bottom:574.338603pt;}
.ydc{bottom:577.207956pt;}
.y2d{bottom:579.020853pt;}
.y1bd{bottom:579.400389pt;}
.y151{bottom:580.001076pt;}
.y6d{bottom:580.081840pt;}
.y214{bottom:580.916577pt;}
.y97{bottom:582.278715pt;}
.ye6{bottom:582.725488pt;}
.ydf{bottom:582.726551pt;}
.y180{bottom:585.370659pt;}
.ydb{bottom:588.471442pt;}
.y2c{bottom:590.964464pt;}
.yce{bottom:592.155200pt;}
.y6{bottom:592.685334pt;}
.y1e5{bottom:592.933641pt;}
.y1bc{bottom:593.309565pt;}
.y213{bottom:593.539840pt;}
.y150{bottom:593.984707pt;}
.y6c{bottom:593.991016pt;}
.ye5{bottom:594.669098pt;}
.yde{bottom:594.670161pt;}
.y17f{bottom:599.355552pt;}
.yda{bottom:599.734929pt;}
.y2b{bottom:602.303401pt;}
.y1e4{bottom:605.556905pt;}
.y96{bottom:607.046613pt;}
.y1bb{bottom:607.294458pt;}
.y14f{bottom:607.893883pt;}
.y6b{bottom:607.974647pt;}
.y212{bottom:610.849970pt;}
.yd9{bottom:611.073867pt;}
.y2a{bottom:614.247012pt;}
.ydd{bottom:616.894267pt;}
.y1e3{bottom:618.180168pt;}
.y17e{bottom:620.596638pt;}
.y14e{bottom:621.878776pt;}
.y6a{bottom:621.883824pt;}
.y211{bottom:623.397584pt;}
.y29{bottom:625.510498pt;}
.ycf{bottom:627.835836pt;}
.y1ba{bottom:628.535545pt;}
.y95{bottom:632.084944pt;}
.y17d{bottom:634.505814pt;}
.y14d{bottom:635.787952pt;}
.y69{bottom:635.867455pt;}
.y1e2{bottom:636.775207pt;}
.y28{bottom:637.454109pt;}
.y210{bottom:640.707714pt;}
.y5{bottom:645.598667pt;}
.y55{bottom:647.206483pt;}
.y27{bottom:648.793047pt;}
.y14c{bottom:649.772845pt;}
.y68{bottom:649.776631pt;}
.y20f{bottom:653.330978pt;}
.y1e1{bottom:655.370245pt;}
.y17c{bottom:655.746900pt;}
.y94{bottom:656.843661pt;}
.y54{bottom:657.184241pt;}
.y26{bottom:660.056533pt;}
.y14b{bottom:663.682021pt;}
.y67{bottom:663.760262pt;}
.y53{bottom:667.162000pt;}
.y3{bottom:668.977329pt;}
.y17b{bottom:669.731793pt;}
.y20e{bottom:670.565458pt;}
.yd0{bottom:671.152451pt;}
.y1e0{bottom:673.965283pt;}
.y25{bottom:674.645467pt;}
.y14a{bottom:677.666914pt;}
.y66{bottom:677.669438pt;}
.y93{bottom:681.884496pt;}
.y20d{bottom:683.188722pt;}
.y1df{bottom:686.588546pt;}
.y17a{bottom:690.972880pt;}
.y149{bottom:691.576090pt;}
.y65{bottom:691.653069pt;}
.y4a{bottom:696.566667pt;}
.y20c{bottom:700.498852pt;}
.y179{bottom:704.956511pt;}
.y1de{bottom:705.183584pt;}
.y148{bottom:705.559721pt;}
.y64{bottom:705.562245pt;}
.y24{bottom:706.544667pt;}
.y92{bottom:706.642379pt;}
.yd1{bottom:714.436658pt;}
.y20b{bottom:717.733332pt;}
.y147{bottom:719.468897pt;}
.y63{bottom:719.545876pt;}
.y1dd{bottom:721.814000pt;}
.y23{bottom:722.418667pt;}
.y178{bottom:726.197597pt;}
.y20a{bottom:730.356596pt;}
.y91{bottom:731.382733pt;}
.y146{bottom:733.453790pt;}
.y62{bottom:733.455052pt;}
.y177{bottom:740.106773pt;}
.y145{bottom:747.362967pt;}
.y61{bottom:747.438683pt;}
.y209{bottom:747.666726pt;}
.y22{bottom:749.025305pt;}
.y176{bottom:754.090404pt;}
.y90{bottom:756.449443pt;}
.yd3{bottom:759.174581pt;}
.y208{bottom:760.289989pt;}
.y60{bottom:761.347859pt;}
.y175{bottom:767.999580pt;}
.y49{bottom:769.813769pt;}
.y5f{bottom:775.331491pt;}
.y21{bottom:776.919467pt;}
.y207{bottom:777.524470pt;}
.y8f{bottom:781.191467pt;}
.y2{bottom:781.661334pt;}
.yd2{bottom:784.719067pt;}
.y48{bottom:785.763467pt;}
.y5e{bottom:789.240667pt;}
.y206{bottom:790.147733pt;}
.y52{bottom:836.182846pt;}
.y51{bottom:850.166667pt;}
.y1{bottom:859.312000pt;}
.h16{height:21.814672pt;}
.h19{height:23.072545pt;}
.h18{height:26.108373pt;}
.h15{height:27.007986pt;}
.h7{height:28.560000pt;}
.h1f{height:29.815679pt;}
.h1d{height:31.055201pt;}
.h1b{height:31.413215pt;}
.he{height:33.241047pt;}
.h1a{height:33.360000pt;}
.h14{height:33.375999pt;}
.h13{height:35.318039pt;}
.hd{height:35.339177pt;}
.h1c{height:36.432456pt;}
.hf{height:37.303143pt;}
.h17{height:37.404099pt;}
.h10{height:39.473692pt;}
.h21{height:39.492485pt;}
.h6{height:40.800000pt;}
.hc{height:41.340686pt;}
.h3{height:42.840000pt;}
.h20{height:46.512109pt;}
.h12{height:47.119034pt;}
.h1e{height:48.446047pt;}
.h2{height:48.960000pt;}
.h11{height:49.860737pt;}
.hb{height:51.938146pt;}
.h5{height:69.360000pt;}
.ha{height:84.422178pt;}
.h4{height:105.826671pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:657.333333pt;}
.w3{width:657.637333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:26.456667pt;}
.x8{left:64.252000pt;}
.x3b{left:65.386739pt;}
.x39{left:70.677670pt;}
.x9{left:80.201744pt;}
.x3a{left:84.133075pt;}
.x37{left:86.173132pt;}
.x1{left:90.706667pt;}
.x3c{left:93.507937pt;}
.x2{left:94.486667pt;}
.x7{left:104.314933pt;}
.x38{left:108.850313pt;}
.x18{left:132.283467pt;}
.x1d{left:140.848759pt;}
.x1c{left:144.539845pt;}
.x5{left:148.610086pt;}
.x2c{left:149.989492pt;}
.x2b{left:154.819289pt;}
.x30{left:158.664864pt;}
.x3d{left:161.537146pt;}
.xd{left:170.532267pt;}
.x23{left:172.195200pt;}
.x27{left:175.148081pt;}
.x1e{left:176.955669pt;}
.x31{left:179.527659pt;}
.x4{left:180.874667pt;}
.x26{left:184.193603pt;}
.x2d{left:198.315103pt;}
.x2e{left:210.558133pt;}
.x1b{left:211.952533pt;}
.x29{left:222.141944pt;}
.x19{left:228.736574pt;}
.x25{left:230.447783pt;}
.x28{left:232.069666pt;}
.x2f{left:234.609711pt;}
.x6{left:249.146400pt;}
.x2a{left:273.806533pt;}
.x24{left:290.391867pt;}
.x32{left:331.994397pt;}
.x33{left:352.857193pt;}
.x3{left:404.408000pt;}
.xe{left:534.954133pt;}
.x11{left:540.321067pt;}
.x17{left:541.833030pt;}
.x21{left:543.118073pt;}
.x20{left:545.461311pt;}
.xa{left:546.973067pt;}
.x10{left:549.845653pt;}
.x15{left:551.962067pt;}
.x35{left:553.777433pt;}
.xf{left:554.834532pt;}
.x36{left:578.873999pt;}
.x16{left:580.081933pt;}
.x13{left:582.651852pt;}
.xb{left:584.843635pt;}
.x1f{left:587.036000pt;}
.x34{left:590.590193pt;}
.x12{left:594.368172pt;}
.x22{left:597.619363pt;}
.x14{left:605.933853pt;}
.xc{left:612.207733pt;}
}




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