
    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_694c9bcc614155f5df5fb4f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_6b28e981e0d3350ec5c77445.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.696000;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_915d30b02801d8df7f421dde.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.304000;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_bf660db56d105a64b4bde1a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.431000;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_b1e7d98c9e854245aee8b305.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_e8c86ef3dbe0a5e39eb12a0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895000;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_4fabc3f2bf84af32dfeeab1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104000;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_dfba2a84f1c49e1236318c2a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bf02e7ec1220d87bd5749882.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_700f366b493abf0b048b48f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.906000;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_7bc10ccb68c62b1c176fc6b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_2d1b0a0b450a3097bec36e72.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;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_5fffc602ded7a4a6ccb7c7eb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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_8b323f5d743d23eaae239167.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4b1962fc7ff3f3f806d2aaed.woff2')format("woff");}.fff{font-family:fff;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_67fb4114daf7f556e4271d55.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.898000;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:ff11;src:url('chunks/assets/font_4863d2b4f9423edb613b4e3a.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_6325b816c7aefe4cf901ad6f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.049000;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:ff13;src:url('chunks/assets/font_3ea50d1575239113206539f8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.888000;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:ff14;src:url('chunks/assets/font_2089083266a5512a764dca39.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.799000;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:ff15;src:url('chunks/assets/font_62f6714e28608c160117e07c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.693000;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:ff16;src:url('chunks/assets/font_023648673977cfb37dcf7e45.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.901000;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:ff17;src:url('chunks/assets/font_ac5c4ecf025e8b13d7d61733.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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);}
.vc{vertical-align:-66.357318px;}
.v9{vertical-align:-36.301815px;}
.v2{vertical-align:-26.028641px;}
.v8{vertical-align:-21.521396px;}
.v5{vertical-align:-16.878184px;}
.v3{vertical-align:-8.944227px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.972309px;}
.va{vertical-align:17.935257px;}
.v4{vertical-align:21.690124px;}
.v1{vertical-align:26.028641px;}
.v6{vertical-align:38.416321px;}
.vd{vertical-align:47.990459px;}
.vb{vertical-align:84.292274px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004623px;}
.ls6{letter-spacing:0.009303px;}
.ls3b{letter-spacing:0.010349px;}
.ls0{letter-spacing:0.011142px;}
.ls4{letter-spacing:0.011644px;}
.ls37{letter-spacing:0.013967px;}
.ls5{letter-spacing:0.015882px;}
.ls17{letter-spacing:0.016466px;}
.ls2{letter-spacing:0.018222px;}
.ls30{letter-spacing:0.021146px;}
.ls1c{letter-spacing:0.023486px;}
.ls38{letter-spacing:0.030344px;}
.ls3f{letter-spacing:0.032265px;}
.ls43{letter-spacing:0.032744px;}
.ls25{letter-spacing:0.033244px;}
.ls3a{letter-spacing:0.037924px;}
.ls1f{letter-spacing:0.038814px;}
.ls19{letter-spacing:0.041154px;}
.lsd{letter-spacing:0.042961px;}
.ls32{letter-spacing:0.045301px;}
.ls20{letter-spacing:0.045894px;}
.ls15{letter-spacing:0.048234px;}
.ls34{letter-spacing:0.049981px;}
.ls3c{letter-spacing:0.052629px;}
.ls14{letter-spacing:2.982989px;}
.lsc{letter-spacing:2.987369px;}
.lsa{letter-spacing:2.987669px;}
.ls40{letter-spacing:2.998799px;}
.ls1d{letter-spacing:3.004097px;}
.ls1e{letter-spacing:3.006437px;}
.ls18{letter-spacing:3.011117px;}
.ls39{letter-spacing:4.523535px;}
.ls44{letter-spacing:4.528215px;}
.ls23{letter-spacing:5.981279px;}
.ls24{letter-spacing:6.024180px;}
.ls13{letter-spacing:8.321946px;}
.ls11{letter-spacing:8.328966px;}
.ls42{letter-spacing:9.958818px;}
.ls41{letter-spacing:9.980106px;}
.ls12{letter-spacing:10.004359px;}
.ls1b{letter-spacing:13.327685px;}
.ls3e{letter-spacing:13.330325px;}
.ls1a{letter-spacing:13.332365px;}
.ls2d{letter-spacing:13.448420px;}
.ls27{letter-spacing:13.450462px;}
.ls29{letter-spacing:13.450760px;}
.ls45{letter-spacing:14.679541px;}
.ls36{letter-spacing:14.944167px;}
.ls33{letter-spacing:15.129336px;}
.ls3d{letter-spacing:16.281483px;}
.ls48{letter-spacing:16.313016px;}
.ls49{letter-spacing:16.624731px;}
.ls16{letter-spacing:16.651191px;}
.ls46{letter-spacing:17.655012px;}
.ls2f{letter-spacing:18.150607px;}
.ls21{letter-spacing:18.703342px;}
.ls35{letter-spacing:19.612747px;}
.ls31{letter-spacing:19.950264px;}
.ls9{letter-spacing:20.932508px;}
.ls7{letter-spacing:20.934848px;}
.ls8{letter-spacing:20.941928px;}
.ls47{letter-spacing:24.587623px;}
.ls2e{letter-spacing:25.542724px;}
.ls10{letter-spacing:29.887854px;}
.lsf{letter-spacing:37.658172px;}
.lse{letter-spacing:37.680934px;}
.ls22{letter-spacing:39.160358px;}
.ls4a{letter-spacing:54.416721px;}
.ls26{letter-spacing:71.777610px;}
.ls2a{letter-spacing:132.289435px;}
.ls2b{letter-spacing:135.270864px;}
.ls28{letter-spacing:145.736107px;}
.ls2c{letter-spacing:145.738507px;}
.ls3{letter-spacing:174.938608px;}
.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;}
}
.wsda{word-spacing:-29.962669px;}
.wsc1{word-spacing:-29.889294px;}
.ws9{word-spacing:-14.944647px;}
.wsd8{word-spacing:-13.304915px;}
.ws151{word-spacing:-13.223980px;}
.ws14d{word-spacing:-12.923952px;}
.wsd9{word-spacing:-12.319366px;}
.ws19c{word-spacing:-11.789533px;}
.wsc2{word-spacing:-10.371160px;}
.wsdb{word-spacing:-8.869943px;}
.wsb7{word-spacing:-8.059162px;}
.ws14b{word-spacing:-7.305721px;}
.wsdc{word-spacing:-6.898845px;}
.ws73{word-spacing:-2.750532px;}
.ws172{word-spacing:-2.271945px;}
.ws7a{word-spacing:-0.776165px;}
.ws177{word-spacing:-0.597547px;}
.wsb9{word-spacing:-0.489587px;}
.ws192{word-spacing:-0.238995px;}
.ws190{word-spacing:-0.059779px;}
.ws10b{word-spacing:-0.041845px;}
.ws13c{word-spacing:-0.002467px;}
.ws2{word-spacing:-0.001076px;}
.ws1e2{word-spacing:-0.001016px;}
.ws0{word-spacing:-0.000861px;}
.wsaa{word-spacing:-0.000717px;}
.ws1{word-spacing:-0.000603px;}
.ws1bd{word-spacing:-0.000179px;}
.ws65{word-spacing:0.000000px;}
.ws160{word-spacing:0.000120px;}
.ws5{word-spacing:0.000143px;}
.wsf7{word-spacing:0.000359px;}
.ws80{word-spacing:0.000418px;}
.ws3{word-spacing:0.000430px;}
.wse4{word-spacing:0.000777px;}
.ws4{word-spacing:0.001004px;}
.ws11e{word-spacing:0.001016px;}
.ws13b{word-spacing:0.003067px;}
.ws79{word-spacing:0.238756px;}
.ws145{word-spacing:1.015758px;}
.ws1d4{word-spacing:1.374370px;}
.ws1db{word-spacing:1.674398px;}
.ws1f1{word-spacing:1.973650px;}
.wsbd{word-spacing:2.270451px;}
.wsdd{word-spacing:2.690873px;}
.ws1e8{word-spacing:3.527654px;}
.wscb{word-spacing:6.275975px;}
.ws31{word-spacing:6.478137px;}
.ws138{word-spacing:7.234046px;}
.ws6b{word-spacing:7.652735px;}
.wsc7{word-spacing:8.368345px;}
.ws17a{word-spacing:8.607579px;}
.ws9b{word-spacing:9.266279px;}
.wsc3{word-spacing:9.324623px;}
.ws236{word-spacing:9.922170px;}
.wsb5{word-spacing:9.970531px;}
.ws2f{word-spacing:10.712589px;}
.ws24{word-spacing:10.820164px;}
.ws35{word-spacing:11.237446px;}
.ws34{word-spacing:11.238042px;}
.ws1ad{word-spacing:11.297555px;}
.ws10{word-spacing:11.357035px;}
.ws16f{word-spacing:11.417232px;}
.ws93{word-spacing:11.417890px;}
.ws175{word-spacing:11.418727px;}
.ws119{word-spacing:11.715527px;}
.ws117{word-spacing:11.755446px;}
.ws1e3{word-spacing:11.775306px;}
.ws1bf{word-spacing:11.776442px;}
.ws252{word-spacing:11.835204px;}
.ws253{word-spacing:11.836818px;}
.ws36{word-spacing:11.904290px;}
.ws219{word-spacing:11.906777px;}
.wsd7{word-spacing:11.907064px;}
.wsd6{word-spacing:11.907358px;}
.ws2d{word-spacing:11.907447px;}
.ws37{word-spacing:11.907733px;}
.ws132{word-spacing:11.908116px;}
.ws26c{word-spacing:11.956375px;}
.ws26b{word-spacing:11.956614px;}
.ws16a{word-spacing:12.015317px;}
.ws8e{word-spacing:12.074199px;}
.ws201{word-spacing:12.076052px;}
.ws1c5{word-spacing:12.134755px;}
.wsc9{word-spacing:12.178433px;}
.wsca{word-spacing:12.194234px;}
.ws19e{word-spacing:12.253415px;}
.ws76{word-spacing:12.313194px;}
.ws251{word-spacing:12.313792px;}
.ws250{word-spacing:12.314210px;}
.ws1fd{word-spacing:12.434066px;}
.ws75{word-spacing:12.492828px;}
.ws215{word-spacing:12.552248px;}
.ws173{word-spacing:12.612625px;}
.ws240{word-spacing:12.613043px;}
.ws1c9{word-spacing:12.673838px;}
.ws237{word-spacing:12.792259px;}
.ws1a2{word-spacing:12.851261px;}
.ws12d{word-spacing:12.911159px;}
.ws12c{word-spacing:12.911458px;}
.ws10d{word-spacing:12.970997px;}
.ws1a5{word-spacing:13.031613px;}
.ws124{word-spacing:13.090913px;}
.ws1c8{word-spacing:13.091092px;}
.ws152{word-spacing:13.091451px;}
.ws235{word-spacing:13.151050px;}
.ws1d8{word-spacing:13.210052px;}
.ws1ae{word-spacing:13.210291px;}
.ws3b{word-spacing:13.330147px;}
.ws1cb{word-spacing:13.395611px;}
.ws136{word-spacing:13.395880px;}
.ws13f{word-spacing:13.396310px;}
.ws141{word-spacing:13.396418px;}
.ws137{word-spacing:13.396471px;}
.ws13d{word-spacing:13.396961px;}
.ws15c{word-spacing:13.449525px;}
.ws218{word-spacing:13.450182px;}
.ws8c{word-spacing:13.509005px;}
.wsbf{word-spacing:13.538049px;}
.wsc0{word-spacing:13.569202px;}
.ws50{word-spacing:13.628382px;}
.ws108{word-spacing:13.629040px;}
.ws1c3{word-spacing:13.629279px;}
.ws183{word-spacing:13.629996px;}
.ws10a{word-spacing:13.651541px;}
.ws19a{word-spacing:13.688460px;}
.ws43{word-spacing:13.689058px;}
.ws208{word-spacing:13.689656px;}
.ws131{word-spacing:13.724146px;}
.ws32{word-spacing:13.724385px;}
.ws232{word-spacing:13.747940px;}
.ws147{word-spacing:13.748956px;}
.ws22c{word-spacing:13.749315px;}
.ws174{word-spacing:13.809153px;}
.ws16e{word-spacing:13.867497px;}
.ws11a{word-spacing:13.867796px;}
.ws115{word-spacing:13.868931px;}
.ws25c{word-spacing:13.922787px;}
.ws25d{word-spacing:13.927813px;}
.ws29{word-spacing:13.927993px;}
.wse8{word-spacing:13.987293px;}
.ws161{word-spacing:14.046952px;}
.ws57{word-spacing:14.047072px;}
.ws212{word-spacing:14.047669px;}
.ws257{word-spacing:14.048865px;}
.ws1b0{word-spacing:14.106731px;}
.ws7b{word-spacing:14.106850px;}
.ws12a{word-spacing:14.107448px;}
.wsa6{word-spacing:14.166330px;}
.ws1a4{word-spacing:14.166569px;}
.wsa8{word-spacing:14.167047px;}
.ws19b{word-spacing:14.228141px;}
.ws178{word-spacing:14.286724px;}
.ws221{word-spacing:14.347220px;}
.ws220{word-spacing:14.347459px;}
.ws1fa{word-spacing:14.405683px;}
.ws23{word-spacing:14.405743px;}
.ws1f4{word-spacing:14.405982px;}
.wsd4{word-spacing:14.406281px;}
.wsd3{word-spacing:14.427054px;}
.wsf3{word-spacing:14.467076px;}
.ws15b{word-spacing:14.525241px;}
.ws197{word-spacing:14.585019px;}
.ws193{word-spacing:14.585438px;}
.ws8a{word-spacing:14.585856px;}
.ws246{word-spacing:14.586155px;}
.ws198{word-spacing:14.586334px;}
.ws61{word-spacing:14.705712px;}
.ws1ab{word-spacing:14.706131px;}
.wsbb{word-spacing:14.706609px;}
.ws116{word-spacing:14.756144px;}
.ws118{word-spacing:14.760724px;}
.ws217{word-spacing:14.764594px;}
.ws245{word-spacing:14.764714px;}
.ws170{word-spacing:14.764893px;}
.ws1f3{word-spacing:14.824970px;}
.ws1ef{word-spacing:14.882378px;}
.ws1f0{word-spacing:14.883673px;}
.ws21e{word-spacing:14.883733px;}
.ws7f{word-spacing:14.883793px;}
.ws4b{word-spacing:14.883852px;}
.wsf6{word-spacing:14.883912px;}
.ws3c{word-spacing:14.883972px;}
.ws21{word-spacing:14.884151px;}
.wse0{word-spacing:14.884211px;}
.wsbc{word-spacing:14.884271px;}
.wsce{word-spacing:14.884450px;}
.ws15f{word-spacing:14.884510px;}
.ws9e{word-spacing:14.884570px;}
.ws69{word-spacing:14.884629px;}
.ws171{word-spacing:14.884689px;}
.ws96{word-spacing:14.884809px;}
.ws1ff{word-spacing:14.884869px;}
.ws127{word-spacing:14.884988px;}
.ws243{word-spacing:14.885347px;}
.ws23c{word-spacing:14.885407px;}
.ws72{word-spacing:14.885466px;}
.wsa9{word-spacing:14.885586px;}
.ws179{word-spacing:14.885765px;}
.wsad{word-spacing:14.885885px;}
.ws78{word-spacing:14.886064px;}
.ws150{word-spacing:14.887002px;}
.ws15d{word-spacing:14.943691px;}
.ws269{word-spacing:14.945365px;}
.ws60{word-spacing:15.003649px;}
.ws21f{word-spacing:15.004127px;}
.ws14e{word-spacing:15.063726px;}
.ws14f{word-spacing:15.064742px;}
.ws1c4{word-spacing:15.123206px;}
.ws54{word-spacing:15.123505px;}
.wsea{word-spacing:15.183403px;}
.ws1ee{word-spacing:15.242464px;}
.ws1ed{word-spacing:15.242584px;}
.ws156{word-spacing:15.243122px;}
.ws1ec{word-spacing:15.243181px;}
.ws1eb{word-spacing:15.243385px;}
.ws64{word-spacing:15.303379px;}
.ws1b3{word-spacing:15.304096px;}
.ws1e{word-spacing:15.362141px;}
.ws71{word-spacing:15.421860px;}
.wsac{word-spacing:15.482654px;}
.ws2e{word-spacing:15.493980px;}
.ws1df{word-spacing:15.542194px;}
.wsba{word-spacing:15.542732px;}
.ws46{word-spacing:15.601375px;}
.ws28{word-spacing:15.602212px;}
.ws11d{word-spacing:15.637915px;}
.ws19d{word-spacing:15.661572px;}
.ws180{word-spacing:15.661691px;}
.ws1e0{word-spacing:15.662588px;}
.ws24f{word-spacing:15.780950px;}
.ws77{word-spacing:15.781547px;}
.ws17d{word-spacing:15.782145px;}
.wsab{word-spacing:15.841027px;}
.ws107{word-spacing:15.900507px;}
.ws17{word-spacing:15.901105px;}
.ws1b6{word-spacing:15.901344px;}
.ws89{word-spacing:15.959987px;}
.ws216{word-spacing:15.960584px;}
.ws9a{word-spacing:16.020662px;}
.ws1d7{word-spacing:16.021200px;}
.ws185{word-spacing:16.021499px;}
.wsdf{word-spacing:16.079663px;}
.ws85{word-spacing:16.079843px;}
.ws105{word-spacing:16.113747px;}
.ws23a{word-spacing:16.139143px;}
.ws52{word-spacing:16.199041px;}
.ws1d5{word-spacing:16.199161px;}
.ws23b{word-spacing:16.199460px;}
.wsff{word-spacing:16.225618px;}
.wsfd{word-spacing:16.230664px;}
.wsfe{word-spacing:16.233369px;}
.ws214{word-spacing:16.258820px;}
.ws1d6{word-spacing:16.259417px;}
.ws163{word-spacing:16.260135px;}
.ws18{word-spacing:16.320033px;}
.wsa2{word-spacing:16.378915px;}
.ws56{word-spacing:16.438275px;}
.wsc6{word-spacing:16.438395px;}
.wsc5{word-spacing:16.444047px;}
.ws1e1{word-spacing:16.498054px;}
.wse2{word-spacing:16.498173px;}
.ws162{word-spacing:16.557713px;}
.ws184{word-spacing:16.559147px;}
.ws182{word-spacing:16.618328px;}
.ws109{word-spacing:16.652239px;}
.wsd{word-spacing:16.678346px;}
.ws94{word-spacing:16.679243px;}
.ws8f{word-spacing:16.736989px;}
.ws84{word-spacing:16.738543px;}
.ws2a{word-spacing:16.739021px;}
.ws92{word-spacing:16.796887px;}
.ws267{word-spacing:16.797186px;}
.ws1f2{word-spacing:16.856486px;}
.ws248{word-spacing:16.856845px;}
.ws48{word-spacing:16.857980px;}
.ws1f9{word-spacing:16.976043px;}
.ws199{word-spacing:16.976282px;}
.ws11c{word-spacing:16.977478px;}
.ws83{word-spacing:17.035882px;}
.wsf{word-spacing:17.035941px;}
.ws139{word-spacing:17.036539px;}
.ws17e{word-spacing:17.037854px;}
.ws210{word-spacing:17.095839px;}
.ws5f{word-spacing:17.096138px;}
.wse9{word-spacing:17.097035px;}
.ws103{word-spacing:17.155319px;}
.wsbe{word-spacing:17.155618px;}
.ws101{word-spacing:17.165692px;}
.ws1a6{word-spacing:17.215696px;}
.ws22b{word-spacing:17.275295px;}
.ws59{word-spacing:17.275773px;}
.ws19f{word-spacing:17.275893px;}
.ws22a{word-spacing:17.276251px;}
.ws45{word-spacing:17.394434px;}
.wsf1{word-spacing:17.396586px;}
.wsf0{word-spacing:17.455527px;}
.ws1b1{word-spacing:17.513931px;}
.ws9f{word-spacing:17.514230px;}
.ws2b{word-spacing:17.514469px;}
.ws247{word-spacing:17.574546px;}
.wsde{word-spacing:17.574905px;}
.ws82{word-spacing:17.633787px;}
.ws26{word-spacing:17.693685px;}
.ws120{word-spacing:17.694462px;}
.ws229{word-spacing:17.753344px;}
.wsa5{word-spacing:17.753882px;}
.ws259{word-spacing:17.813362px;}
.ws207{word-spacing:17.814019px;}
.ws258{word-spacing:17.839373px;}
.ws7{word-spacing:17.861029px;}
.ws6{word-spacing:17.861747px;}
.ws8{word-spacing:17.862966px;}
.ws1e7{word-spacing:17.873439px;}
.ws154{word-spacing:17.933636px;}
.ws194{word-spacing:17.992518px;}
.ws112{word-spacing:17.992698px;}
.ws200{word-spacing:17.992997px;}
.ws10e{word-spacing:17.994312px;}
.ws110{word-spacing:18.017959px;}
.ws4c{word-spacing:18.053014px;}
.ws13a{word-spacing:18.053134px;}
.ws14c{word-spacing:18.053313px;}
.ws7e{word-spacing:18.111836px;}
.ws14a{word-spacing:18.113331px;}
.ws196{word-spacing:18.149019px;}
.ws195{word-spacing:18.151419px;}
.ws4e{word-spacing:18.171675px;}
.ws27{word-spacing:18.172571px;}
.ws5b{word-spacing:18.232649px;}
.ws1e4{word-spacing:18.351309px;}
.ws17c{word-spacing:18.351907px;}
.ws20{word-spacing:18.410789px;}
.ws1e9{word-spacing:18.411088px;}
.ws5e{word-spacing:18.411208px;}
.ws66{word-spacing:18.411506px;}
.ws24e{word-spacing:18.411626px;}
.ws1b2{word-spacing:18.412104px;}
.ws149{word-spacing:18.590065px;}
.ws5c{word-spacing:18.590364px;}
.ws167{word-spacing:18.709682px;}
.ws1ba{word-spacing:18.711057px;}
.ws1b9{word-spacing:18.736993px;}
.ws113{word-spacing:18.769401px;}
.wsf2{word-spacing:18.770357px;}
.ws1be{word-spacing:18.770537px;}
.ws12b{word-spacing:18.829717px;}
.ws106{word-spacing:18.872301px;}
.ws1a{word-spacing:18.889376px;}
.ws1d{word-spacing:18.889496px;}
.ws146{word-spacing:18.950590px;}
.ws15e{word-spacing:19.008455px;}
.ws88{word-spacing:19.008635px;}
.ws4a{word-spacing:19.009352px;}
.ws4f{word-spacing:19.068533px;}
.ws70{word-spacing:19.069968px;}
.ws10c{word-spacing:19.130224px;}
.ws123{word-spacing:19.190123px;}
.ws8b{word-spacing:19.247809px;}
.wsed{word-spacing:19.308185px;}
.ws1a7{word-spacing:19.308305px;}
.ws1e6{word-spacing:19.309620px;}
.ws114{word-spacing:19.367067px;}
.wscd{word-spacing:19.427145px;}
.wseb{word-spacing:19.428759px;}
.wsae{word-spacing:19.428878px;}
.ws68{word-spacing:19.487043px;}
.ws1f{word-spacing:19.487222px;}
.ws262{word-spacing:19.487342px;}
.wse1{word-spacing:19.487461px;}
.ws211{word-spacing:19.546941px;}
.wsfc{word-spacing:19.551436px;}
.ws91{word-spacing:19.667215px;}
.ws148{word-spacing:19.667395px;}
.ws38{word-spacing:19.668112px;}
.ws1a0{word-spacing:19.725858px;}
.ws260{word-spacing:19.773596px;}
.ws169{word-spacing:19.786474px;}
.wse6{word-spacing:19.786653px;}
.ws261{word-spacing:19.786892px;}
.ws1c{word-spacing:19.845953px;}
.ws104{word-spacing:19.846252px;}
.wse{word-spacing:19.846850px;}
.ws16b{word-spacing:19.905254px;}
.wsb2{word-spacing:19.905553px;}
.ws49{word-spacing:19.965032px;}
.ws1b5{word-spacing:19.965152px;}
.ws8d{word-spacing:20.024990px;}
.ws95{word-spacing:20.025110px;}
.wsb1{word-spacing:20.025708px;}
.ws268{word-spacing:20.026007px;}
.ws62{word-spacing:20.026425px;}
.ws166{word-spacing:20.084530px;}
.wsaf{word-spacing:20.084888px;}
.ws25a{word-spacing:20.144966px;}
.ws241{word-spacing:20.145683px;}
.wsf5{word-spacing:20.146102px;}
.ws102{word-spacing:20.165661px;}
.ws33{word-spacing:20.180633px;}
.ws30{word-spacing:20.194829px;}
.ws242{word-spacing:20.205163px;}
.wsef{word-spacing:20.205581px;}
.wsd5{word-spacing:20.324541px;}
.ws164{word-spacing:20.325139px;}
.ws176{word-spacing:20.383423px;}
.ws11{word-spacing:20.384738px;}
.ws24d{word-spacing:20.384917px;}
.ws1aa{word-spacing:20.443321px;}
.ws81{word-spacing:20.444277px;}
.ws255{word-spacing:20.502980px;}
.ws165{word-spacing:20.503279px;}
.ws256{word-spacing:20.504116px;}
.ws1bb{word-spacing:20.504295px;}
.ws22d{word-spacing:20.562818px;}
.ws1fe{word-spacing:20.563595px;}
.wse3{word-spacing:20.624390px;}
.ws18d{word-spacing:20.683153px;}
.ws18e{word-spacing:20.683750px;}
.ws18f{word-spacing:20.690184px;}
.wsa7{word-spacing:20.742214px;}
.ws121{word-spacing:20.742333px;}
.ws23f{word-spacing:20.743051px;}
.ws1af{word-spacing:20.801873px;}
.wsf4{word-spacing:20.802530px;}
.ws58{word-spacing:20.861711px;}
.ws153{word-spacing:20.863505px;}
.ws230{word-spacing:20.921669px;}
.ws128{word-spacing:20.922805px;}
.ws22{word-spacing:20.923104px;}
.wse7{word-spacing:20.981388px;}
.ws1e5{word-spacing:20.981687px;}
.ws3d{word-spacing:20.983181px;}
.ws10f{word-spacing:21.023704px;}
.ws111{word-spacing:21.028809px;}
.ws1ca{word-spacing:21.041167px;}
.ws47{word-spacing:21.041465px;}
.ws25e{word-spacing:21.161023px;}
.wscc{word-spacing:21.161322px;}
.ws202{word-spacing:21.280042px;}
.ws1fc{word-spacing:21.281297px;}
.ws1b8{word-spacing:21.340299px;}
.ws41{word-spacing:21.341195px;}
.wsfa{word-spacing:21.399719px;}
.wsb3{word-spacing:21.400077px;}
.ws1c6{word-spacing:21.400376px;}
.ws20c{word-spacing:21.459557px;}
.ws39{word-spacing:21.460752px;}
.ws20e{word-spacing:21.461290px;}
.ws7d{word-spacing:21.461769px;}
.ws25b{word-spacing:21.580848px;}
.ws1f8{word-spacing:21.638654px;}
.ws12f{word-spacing:21.639730px;}
.wsb8{word-spacing:21.757753px;}
.ws16{word-spacing:21.758271px;}
.ws125{word-spacing:21.758988px;}
.ws3a{word-spacing:21.759586px;}
.ws209{word-spacing:21.760183px;}
.wsb6{word-spacing:21.771522px;}
.ws238{word-spacing:21.796001px;}
.ws239{word-spacing:21.819484px;}
.ws1a9{word-spacing:21.819783px;}
.ws7c{word-spacing:21.878186px;}
.ws181{word-spacing:21.939161px;}
.ws16c{word-spacing:21.939340px;}
.ws12e{word-spacing:21.939459px;}
.wsfb{word-spacing:21.997744px;}
.ws15{word-spacing:22.057223px;}
.ws5d{word-spacing:22.117181px;}
.ws1c0{word-spacing:22.236858px;}
.ws87{word-spacing:22.296338px;}
.wsd2{word-spacing:22.296935px;}
.ws22e{word-spacing:22.297354px;}
.ws22f{word-spacing:22.297473px;}
.wsd1{word-spacing:22.297772px;}
.ws18b{word-spacing:22.356116px;}
.ws13{word-spacing:22.356236px;}
.wse5{word-spacing:22.357850px;}
.ws157{word-spacing:22.357910px;}
.ws1a1{word-spacing:22.475793px;}
.ws206{word-spacing:22.475912px;}
.ws6e{word-spacing:22.476211px;}
.ws130{word-spacing:22.597203px;}
.ws1ea{word-spacing:22.655069px;}
.ws1f7{word-spacing:22.714788px;}
.ws5a{word-spacing:22.834524px;}
.ws17f{word-spacing:22.834704px;}
.ws158{word-spacing:22.954380px;}
.ws11b{word-spacing:22.955516px;}
.ws21c{word-spacing:23.014757px;}
.ws21d{word-spacing:23.015175px;}
.ws1f5{word-spacing:23.073878px;}
.ws67{word-spacing:23.133955px;}
.ws1bc{word-spacing:23.193136px;}
.wsec{word-spacing:23.193315px;}
.ws1fb{word-spacing:23.193674px;}
.ws99{word-spacing:23.253213px;}
.ws122{word-spacing:23.253333px;}
.ws26a{word-spacing:23.253931px;}
.wsc8{word-spacing:23.254349px;}
.ws222{word-spacing:23.373787px;}
.ws1b7{word-spacing:23.432071px;}
.ws15a{word-spacing:23.492447px;}
.ws17b{word-spacing:23.492866px;}
.ws1dc{word-spacing:23.493583px;}
.wsa4{word-spacing:23.671305px;}
.wsb0{word-spacing:23.672142px;}
.ws1ac{word-spacing:23.731502px;}
.ws203{word-spacing:23.732100px;}
.ws86{word-spacing:23.850880px;}
.ws159{word-spacing:23.851238px;}
.ws40{word-spacing:23.910658px;}
.ws18c{word-spacing:23.911555px;}
.wsa1{word-spacing:23.971573px;}
.ws4d{word-spacing:24.030514px;}
.ws223{word-spacing:24.031889px;}
.ws90{word-spacing:24.090831px;}
.ws12{word-spacing:24.149534px;}
.ws9c{word-spacing:24.209492px;}
.wsc4{word-spacing:24.210687px;}
.ws1c7{word-spacing:24.329886px;}
.wsa0{word-spacing:24.330185px;}
.ws1c2{word-spacing:24.388947px;}
.ws53{word-spacing:24.568103px;}
.ws228{word-spacing:24.627762px;}
.ws227{word-spacing:24.627882px;}
.ws51{word-spacing:24.628181px;}
.ws1b{word-spacing:24.807158px;}
.ws126{word-spacing:24.807457px;}
.ws9d{word-spacing:24.807995px;}
.ws63{word-spacing:24.928210px;}
.wsa3{word-spacing:25.106051px;}
.ws205{word-spacing:25.106888px;}
.wscf{word-spacing:25.108083px;}
.wsee{word-spacing:25.167145px;}
.ws55{word-spacing:25.225548px;}
.wsf9{word-spacing:25.286164px;}
.ws3e{word-spacing:25.405781px;}
.ws16d{word-spacing:25.406020px;}
.ws1f6{word-spacing:25.464663px;}
.ws44{word-spacing:25.525278px;}
.ws231{word-spacing:25.584100px;}
.ws23e{word-spacing:25.584280px;}
.ws2c{word-spacing:25.586073px;}
.ws11f{word-spacing:25.703837px;}
.ws155{word-spacing:25.764811px;}
.ws20b{word-spacing:25.824410px;}
.ws20a{word-spacing:25.825008px;}
.ws25{word-spacing:26.122825px;}
.ws20d{word-spacing:26.183321px;}
.ws23d{word-spacing:26.184158px;}
.ws226{word-spacing:26.302280px;}
.ws14{word-spacing:26.362178px;}
.wsb{word-spacing:26.540558px;}
.wsd0{word-spacing:26.541036px;}
.ws233{word-spacing:26.579752px;}
.ws234{word-spacing:26.600994px;}
.wsb4{word-spacing:26.720671px;}
.ws1c1{word-spacing:26.779851px;}
.ws1a3{word-spacing:26.959127px;}
.ws1b4{word-spacing:26.959606px;}
.ws129{word-spacing:27.318038px;}
.ws3f{word-spacing:27.557690px;}
.ws224{word-spacing:27.558109px;}
.ws204{word-spacing:27.795968px;}
.ws254{word-spacing:28.095638px;}
.ws188{word-spacing:28.097073px;}
.ws1dd{word-spacing:28.215613px;}
.ws19{word-spacing:28.394172px;}
.wsc{word-spacing:28.513191px;}
.ws249{word-spacing:28.692886px;}
.ws18a{word-spacing:28.812144px;}
.ws168{word-spacing:28.871982px;}
.ws25f{word-spacing:28.991599px;}
.ws20f{word-spacing:29.113309px;}
.ws74{word-spacing:29.291389px;}
.ws225{word-spacing:29.350331px;}
.ws6d{word-spacing:29.350630px;}
.ws189{word-spacing:29.589565px;}
.ws21a{word-spacing:29.829277px;}
.ws6a{word-spacing:29.833416px;}
.ws97{word-spacing:29.890131px;}
.wsf8{word-spacing:30.129545px;}
.ws191{word-spacing:30.301967px;}
.ws213{word-spacing:30.426345px;}
.ws42{word-spacing:30.667432px;}
.ws6f{word-spacing:31.144705px;}
.ws1de{word-spacing:31.562796px;}
.wsa{word-spacing:31.921766px;}
.ws24b{word-spacing:32.160104px;}
.ws24a{word-spacing:32.163097px;}
.ws265{word-spacing:32.519373px;}
.ws264{word-spacing:32.560331px;}
.ws1a8{word-spacing:33.235760px;}
.ws24c{word-spacing:33.475053px;}
.ws98{word-spacing:33.536745px;}
.ws1ce{word-spacing:34.363772px;}
.ws1d1{word-spacing:34.372719px;}
.ws1d3{word-spacing:34.375119px;}
.ws186{word-spacing:34.482702px;}
.ws187{word-spacing:34.491469px;}
.ws244{word-spacing:37.898848px;}
.ws26d{word-spacing:40.350547px;}
.ws263{word-spacing:41.965466px;}
.ws266{word-spacing:42.502218px;}
.ws21b{word-spacing:43.220458px;}
.ws6c{word-spacing:47.037227px;}
.ws1d2{word-spacing:47.760244px;}
.ws1cf{word-spacing:47.771590px;}
.ws1cd{word-spacing:47.776336px;}
.ws100{word-spacing:55.977385px;}
.ws140{word-spacing:58.265256px;}
.ws144{word-spacing:58.266042px;}
.ws1da{word-spacing:64.506969px;}
.ws143{word-spacing:71.661728px;}
.ws13e{word-spacing:71.662514px;}
.ws133{word-spacing:84.683454px;}
.ws1cc{word-spacing:132.943569px;}
.ws135{word-spacing:136.062418px;}
.ws1d9{word-spacing:149.674094px;}
.ws1d0{word-spacing:186.252024px;}
.ws134{word-spacing:189.809707px;}
.ws142{word-spacing:348.649544px;}
._0{margin-left:-7.746388px;}
._4{margin-left:-5.386827px;}
._2{margin-left:-4.302758px;}
._1{margin-left:-3.011897px;}
._3{margin-left:-1.075692px;}
._42{width:1.601525px;}
._1c{width:4.374298px;}
._1d{width:8.308380px;}
._2f{width:12.502460px;}
._f{width:13.655229px;}
._20{width:15.223054px;}
._8{width:16.977807px;}
._16{width:18.277017px;}
._d{width:19.666498px;}
._17{width:21.106505px;}
._11{width:22.537399px;}
._a{width:23.552943px;}
._19{width:24.932932px;}
._e{width:26.482274px;}
._14{width:27.557275px;}
._6{width:29.118023px;}
._b{width:30.605860px;}
._c{width:32.460611px;}
._7{width:33.475711px;}
._12{width:35.350553px;}
._10{width:37.420787px;}
._1b{width:38.939038px;}
._9{width:40.294481px;}
._48{width:43.219681px;}
._18{width:45.074879px;}
._1a{width:46.451999px;}
._13{width:47.606306px;}
._1f{width:49.854685px;}
._3d{width:51.289252px;}
._25{width:55.040036px;}
._49{width:59.776105px;}
._2a{width:60.848495px;}
._24{width:63.917216px;}
._15{width:67.214448px;}
._5{width:71.010278px;}
._39{width:76.029621px;}
._3b{width:77.423204px;}
._41{width:80.863576px;}
._40{width:83.520305px;}
._3a{width:85.920341px;}
._23{width:88.340766px;}
._2e{width:91.192309px;}
._32{width:92.698740px;}
._2c{width:95.174666px;}
._29{width:98.197937px;}
._30{width:101.469878px;}
._2b{width:102.599216px;}
._33{width:109.215675px;}
._22{width:115.187596px;}
._26{width:127.023297px;}
._34{width:136.116219px;}
._31{width:142.950034px;}
._3f{width:144.994475px;}
._27{width:149.039967px;}
._2d{width:159.950102px;}
._28{width:172.863440px;}
._3c{width:194.778480px;}
._35{width:219.508985px;}
._3e{width:222.897378px;}
._21{width:244.157044px;}
._38{width:281.711262px;}
._47{width:409.848820px;}
._43{width:477.188749px;}
._37{width:496.152518px;}
._36{width:521.284818px;}
._44{width:534.532428px;}
._45{width:641.047083px;}
._46{width:652.424875px;}
._1e{width:1730.823272px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,77,128);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:23.653183px;}
.fse{font-size:27.595380px;}
.fsc{font-size:35.479774px;}
.fs4{font-size:35.867393px;}
.fs13{font-size:36.371178px;}
.fs12{font-size:36.446962px;}
.fs6{font-size:41.844892px;}
.fsd{font-size:44.349717px;}
.fs8{font-size:47.306365px;}
.fs2{font-size:47.822991px;}
.fs14{font-size:48.587669px;}
.fsb{font-size:49.277464px;}
.fsa{font-size:53.219661px;}
.fs10{font-size:53.801090px;}
.fs5{font-size:59.775600px;}
.fs3{font-size:59.778589px;}
.fs7{font-size:60.003000px;}
.fs11{font-size:61.376469px;}
.fs1{font-size:71.734787px;}
.fs0{font-size:86.081504px;}
.fs9{font-size:92.641632px;}
.y0{bottom:0.000000px;}
.ydc{bottom:0.979549px;}
.yee{bottom:2.320616px;}
.yef{bottom:3.286664px;}
.yf3{bottom:6.598830px;}
.yd8{bottom:6.600330px;}
.ye2{bottom:7.126856px;}
.y1ff{bottom:13.497675px;}
.yf1{bottom:15.607680px;}
.ye0{bottom:17.704695px;}
.yda{bottom:19.937497px;}
.y200{bottom:29.144957px;}
.ydf{bottom:31.509480px;}
.yd9{bottom:31.648582px;}
.yf0{bottom:32.923646px;}
.yde{bottom:45.314266px;}
.y60{bottom:52.839000px;}
.y201{bottom:53.143157px;}
.yea{bottom:55.899995px;}
.yd4{bottom:61.581079px;}
.ye4{bottom:62.513226px;}
.yd5{bottom:67.495875px;}
.yd2{bottom:67.870893px;}
.yec{bottom:67.872393px;}
.yd3{bottom:78.023401px;}
.yeb{bottom:85.188359px;}
.y19e{bottom:88.474713px;}
.y17a{bottom:88.474863px;}
.y1c8{bottom:88.475193px;}
.y25d{bottom:88.475313px;}
.y98{bottom:88.475613px;}
.y145{bottom:88.475943px;}
.y121{bottom:88.476738px;}
.y1fd{bottom:88.477263px;}
.y5f{bottom:88.477503px;}
.yf8{bottom:89.431171px;}
.ye9{bottom:92.163108px;}
.y30{bottom:92.410850px;}
.ycc{bottom:92.695474px;}
.yd0{bottom:97.840892px;}
.y144{bottom:106.146947px;}
.y19d{bottom:106.706475px;}
.y179{bottom:106.708425px;}
.y1c7{bottom:106.708755px;}
.y25c{bottom:106.708875px;}
.y97{bottom:106.709175px;}
.y5e{bottom:106.709265px;}
.y120{bottom:106.710300px;}
.y1fc{bottom:106.710825px;}
.y2f{bottom:107.205925px;}
.ye6{bottom:109.251212px;}
.ycb{bottom:115.453562px;}
.yf7{bottom:116.857343px;}
.y22b{bottom:117.156447px;}
.y2e{bottom:122.000999px;}
.ye8{bottom:122.771688px;}
.y19c{bottom:124.938236px;}
.y1c6{bottom:124.940516px;}
.y178{bottom:124.940786px;}
.y96{bottom:124.940936px;}
.y5d{bottom:124.941026px;}
.y25b{bottom:124.941236px;}
.y11f{bottom:124.942136px;}
.y1fb{bottom:124.942586px;}
.y143{bottom:132.388809px;}
.yca{bottom:133.685323px;}
.y22a{bottom:135.389409px;}
.y2d{bottom:136.796659px;}
.ye5{bottom:136.894744px;}
.ye7{bottom:140.087654px;}
.y19b{bottom:143.171798px;}
.y1c5{bottom:143.174078px;}
.y177{bottom:143.174348px;}
.y95{bottom:143.174498px;}
.y5c{bottom:143.174588px;}
.y25a{bottom:143.174798px;}
.y11e{bottom:143.175698px;}
.y1fa{bottom:143.176148px;}
.y142{bottom:150.620570px;}
.y2c{bottom:151.591734px;}
.yc9{bottom:151.918885px;}
.y229{bottom:153.621170px;}
.y207{bottom:158.835441px;}
.ye3{bottom:160.856042px;}
.y19a{bottom:161.403559px;}
.y1c4{bottom:161.405839px;}
.y94{bottom:161.406259px;}
.y5b{bottom:161.406349px;}
.y259{bottom:161.406559px;}
.y11d{bottom:161.407459px;}
.y1f9{bottom:161.407909px;}
.y176{bottom:162.491864px;}
.y2b{bottom:166.386808px;}
.y141{bottom:168.854132px;}
.yc8{bottom:170.150647px;}
.y228{bottom:171.852932px;}
.y199{bottom:179.637121px;}
.y1f8{bottom:179.639671px;}
.y93{bottom:179.639821px;}
.y5a{bottom:179.639911px;}
.y258{bottom:179.640121px;}
.y11c{bottom:179.641021px;}
.y175{bottom:180.724225px;}
.yd6{bottom:183.691684px;}
.ycf{bottom:183.976698px;}
.y140{bottom:187.085893px;}
.yc7{bottom:188.384208px;}
.y1c3{bottom:189.229230px;}
.y227{bottom:190.086493px;}
.y198{bottom:197.868882px;}
.y92{bottom:197.871583px;}
.y59{bottom:197.871673px;}
.y1f7{bottom:197.873233px;}
.y174{bottom:198.955987px;}
.y13f{bottom:205.319455px;}
.yc6{bottom:206.615970px;}
.y226{bottom:208.318255px;}
.y11b{bottom:209.804829px;}
.y257{bottom:211.397759px;}
.y197{bottom:216.100644px;}
.y219{bottom:216.103344px;}
.y58{bottom:216.103434px;}
.y1f6{bottom:216.104994px;}
.y91{bottom:216.858032px;}
.y173{bottom:217.189548px;}
.y2a{bottom:218.295404px;}
.y13e{bottom:223.551817px;}
.yc5{bottom:224.849531px;}
.y225{bottom:226.551817px;}
.y256{bottom:229.631320px;}
.y1c2{bottom:232.806409px;}
.y196{bottom:234.334206px;}
.y218{bottom:234.336906px;}
.y57{bottom:234.336996px;}
.y90{bottom:235.091593px;}
.y172{bottom:235.421310px;}
.y11a{bottom:239.968037px;}
.y13d{bottom:241.784178px;}
.y1f5{bottom:243.304354px;}
.y29{bottom:244.584008px;}
.y224{bottom:244.783578px;}
.y255{bottom:247.863082px;}
.y1c1{bottom:251.038171px;}
.y195{bottom:252.565967px;}
.y56{bottom:252.568757px;}
.y8f{bottom:253.323355px;}
.y171{bottom:253.654872px;}
.y217{bottom:254.555067px;}
.yc4{bottom:255.022190px;}
.y119{bottom:258.199799px;}
.y28{bottom:262.815770px;}
.y223{bottom:263.017140px;}
.y254{bottom:266.095444px;}
.y1c0{bottom:269.271732px;}
.y13c{bottom:270.634821px;}
.y194{bottom:270.798929px;}
.y55{bottom:270.802319px;}
.y8e{bottom:271.556917px;}
.y170{bottom:271.886633px;}
.y216{bottom:272.788628px;}
.yc3{bottom:273.253952px;}
.y118{bottom:276.433360px;}
.y27{bottom:281.048731px;}
.y222{bottom:281.248901px;}
.y1bf{bottom:287.504094px;}
.y193{bottom:289.031890px;}
.y54{bottom:289.034080px;}
.y8d{bottom:289.788678px;}
.y16f{bottom:290.120195px;}
.y215{bottom:291.020390px;}
.yc2{bottom:291.485713px;}
.y1f4{bottom:294.245401px;}
.y117{bottom:294.665122px;}
.y253{bottom:297.854882px;}
.y26{bottom:299.281693px;}
.y221{bottom:299.480663px;}
.y1be{bottom:305.736456px;}
.y192{bottom:307.264852px;}
.y53{bottom:307.267642px;}
.y8c{bottom:308.020440px;}
.y214{bottom:309.253951px;}
.yc1{bottom:309.719275px;}
.y13b{bottom:310.460612px;}
.y1f3{bottom:312.477763px;}
.y116{bottom:312.898684px;}
.y252{bottom:316.088443px;}
.y25{bottom:317.514654px;}
.y220{bottom:317.714224px;}
.y16e{bottom:319.380508px;}
.y1bd{bottom:323.968817px;}
.y191{bottom:325.496614px;}
.y52{bottom:325.500004px;}
.y8b{bottom:326.254001px;}
.y213{bottom:327.485713px;}
.y13a{bottom:328.692373px;}
.y1f2{bottom:330.710124px;}
.y115{bottom:331.130445px;}
.y251{bottom:334.320205px;}
.y24{bottom:335.747616px;}
.y21f{bottom:335.945986px;}
.yc0{bottom:339.899434px;}
.y1bc{bottom:342.201179px;}
.y190{bottom:343.728375px;}
.y8a{bottom:344.485763px;}
.y212{bottom:345.717475px;}
.y51{bottom:346.539756px;}
.y139{bottom:346.925935px;}
.y1f1{bottom:348.942486px;}
.y250{bottom:352.551966px;}
.y23{bottom:353.980578px;}
.y21e{bottom:354.179548px;}
.ybf{bottom:358.132395px;}
.y114{bottom:358.329805px;}
.y16d{bottom:360.395858px;}
.y1bb{bottom:360.434740px;}
.y18f{bottom:361.961937px;}
.y89{bottom:362.719325px;}
.y211{bottom:363.951036px;}
.y50{bottom:364.773317px;}
.y138{bottom:365.157696px;}
.y1f0{bottom:367.174847px;}
.y24f{bottom:370.785528px;}
.y22{bottom:372.213539px;}
.y21d{bottom:372.411909px;}
.y283{bottom:374.829880px;}
.ybe{bottom:376.364757px;}
.y16c{bottom:378.627620px;}
.y1ba{bottom:378.666502px;}
.y18e{bottom:380.194298px;}
.y88{bottom:380.951086px;}
.y210{bottom:382.182798px;}
.y4f{bottom:383.005079px;}
.y1ef{bottom:385.407209px;}
.y24e{bottom:389.017289px;}
.y21{bottom:390.445301px;}
.y21c{bottom:390.644271px;}
.y113{bottom:392.833330px;}
.y282{bottom:393.063442px;}
.y137{bottom:394.008339px;}
.y16b{bottom:396.859381px;}
.y1b9{bottom:396.898263px;}
.y18d{bottom:398.427860px;}
.y87{bottom:399.182848px;}
.y20f{bottom:400.416359px;}
.y4e{bottom:401.238640px;}
.y1ee{bottom:403.640171px;}
.ybd{bottom:406.544316px;}
.y24d{bottom:407.250851px;}
.y20{bottom:408.677062px;}
.y21b{bottom:408.876632px;}
.y112{bottom:411.065092px;}
.y16a{bottom:415.092943px;}
.y1b8{bottom:415.131825px;}
.y86{bottom:417.416409px;}
.y20e{bottom:418.648121px;}
.y4d{bottom:419.470402px;}
.y281{bottom:423.251251px;}
.y18c{bottom:423.783178px;}
.ybc{bottom:424.777877px;}
.y21a{bottom:427.108994px;}
.y111{bottom:429.298653px;}
.y169{bottom:433.324705px;}
.y1b7{bottom:433.363587px;}
.y1ed{bottom:435.537765px;}
.y85{bottom:435.648171px;}
.y1f{bottom:436.780667px;}
.y20d{bottom:436.881682px;}
.y4c{bottom:437.702164px;}
.y24c{bottom:439.009089px;}
.y136{bottom:440.558666px;}
.y280{bottom:441.484213px;}
.y18b{bottom:442.015539px;}
.ybb{bottom:443.009639px;}
.y110{bottom:447.530415px;}
.y1ec{bottom:451.233050px;}
.y1b6{bottom:451.597148px;}
.y168{bottom:452.642821px;}
.y84{bottom:453.881732px;}
.y20c{bottom:455.113444px;}
.y4b{bottom:455.935725px;}
.y24b{bottom:457.242650px;}
.y135{bottom:458.790428px;}
.y27f{bottom:459.716574px;}
.y18a{bottom:460.249101px;}
.y10f{bottom:465.762176px;}
.y1eb{bottom:466.928335px;}
.y1b5{bottom:470.157576px;}
.y167{bottom:470.876382px;}
.y83{bottom:472.113494px;}
.yba{bottom:473.190998px;}
.y4a{bottom:474.167487px;}
.y24a{bottom:475.474412px;}
.y134{bottom:477.022189px;}
.y189{bottom:478.481462px;}
.y1e{bottom:481.168187px;}
.y1ea{bottom:482.622119px;}
.y10e{bottom:483.995738px;}
.y1b4{bottom:488.389338px;}
.y166{bottom:489.108144px;}
.y27e{bottom:489.905584px;}
.y82{bottom:491.099943px;}
.yb9{bottom:491.423359px;}
.y49{bottom:492.401048px;}
.y249{bottom:493.706174px;}
.y133{bottom:495.255751px;}
.y1e9{bottom:498.915934px;}
.y1d{bottom:499.399948px;}
.y10d{bottom:502.227500px;}
.y20b{bottom:503.183797px;}
.y188{bottom:506.253401px;}
.y1b3{bottom:506.622899px;}
.y165{bottom:507.339905px;}
.y27d{bottom:508.137345px;}
.y81{bottom:509.333505px;}
.yb8{bottom:509.655121px;}
.y48{bottom:510.632810px;}
.y248{bottom:511.939735px;}
.y132{bottom:513.487513px;}
.y1e8{bottom:513.859681px;}
.y1c{bottom:517.633510px;}
.y10c{bottom:520.461061px;}
.y20a{bottom:521.415559px;}
.y187{bottom:524.485762px;}
.y1b2{bottom:524.854661px;}
.y164{bottom:525.573467px;}
.y27c{bottom:526.369107px;}
.y80{bottom:527.565266px;}
.yb7{bottom:527.888683px;}
.y47{bottom:528.865771px;}
.y131{bottom:531.721074px;}
.y1b{bottom:535.865271px;}
.y10b{bottom:538.693423px;}
.y209{bottom:539.649121px;}
.y1b1{bottom:543.088223px;}
.y247{bottom:543.699173px;}
.y163{bottom:543.805228px;}
.y27b{bottom:544.602668px;}
.y7f{bottom:545.798828px;}
.y46{bottom:547.098733px;}
.y130{bottom:549.952836px;}
.y186{bottom:552.257701px;}
.y1a{bottom:554.098833px;}
.y10a{bottom:556.925784px;}
.y208{bottom:557.880882px;}
.yb6{bottom:558.061341px;}
.y1b0{bottom:561.319984px;}
.y246{bottom:561.930935px;}
.y1e7{bottom:561.983587px;}
.y162{bottom:562.038790px;}
.y27a{bottom:562.834430px;}
.y7e{bottom:564.030590px;}
.y45{bottom:565.331095px;}
.y12f{bottom:568.184597px;}
.y185{bottom:570.491263px;}
.y19{bottom:572.330595px;}
.y109{bottom:575.158146px;}
.yb5{bottom:576.293103px;}
.y245{bottom:580.163296px;}
.y1e6{bottom:580.215949px;}
.y161{bottom:580.270552px;}
.y279{bottom:581.067991px;}
.y7d{bottom:582.264151px;}
.y44{bottom:586.372647px;}
.y12e{bottom:586.418159px;}
.y184{bottom:588.723624px;}
.y1af{bottom:589.143375px;}
.y18{bottom:590.564156px;}
.y206{bottom:591.058041px;}
.y108{bottom:593.390508px;}
.yb4{bottom:594.526664px;}
.y244{bottom:598.396258px;}
.y1e5{bottom:598.448910px;}
.y160{bottom:598.502313px;}
.y7c{bottom:600.496513px;}
.y43{bottom:604.604408px;}
.y183{bottom:606.957186px;}
.y17{bottom:608.795918px;}
.y278{bottom:611.255201px;}
.y107{bottom:611.622869px;}
.yb3{bottom:612.758426px;}
.y12d{bottom:615.268801px;}
.y243{bottom:616.628619px;}
.y15f{bottom:616.735875px;}
.y7b{bottom:618.728874px;}
.y42{bottom:622.836170px;}
.y182{bottom:625.189547px;}
.y1ae{bottom:625.995418px;}
.y16{bottom:627.027679px;}
.y277{bottom:629.488762px;}
.y106{bottom:629.855231px;}
.y1e4{bottom:630.346085px;}
.yb2{bottom:630.991988px;}
.y7a{bottom:636.962436px;}
.y41{bottom:641.069731px;}
.y1ad{bottom:644.227779px;}
.y15{bottom:645.261241px;}
.y1e3{bottom:645.291167px;}
.y15e{bottom:645.996788px;}
.y276{bottom:647.720524px;}
.y105{bottom:648.088792px;}
.y242{bottom:648.388057px;}
.yb1{bottom:649.223749px;}
.y181{bottom:650.544865px;}
.y12c{bottom:655.092793px;}
.y79{bottom:655.194198px;}
.y40{bottom:659.301493px;}
.y1e2{bottom:660.236835px;}
.y1ac{bottom:662.460141px;}
.y14{bottom:663.493002px;}
.y275{bottom:665.952285px;}
.y104{bottom:666.320554px;}
.y241{bottom:666.619819px;}
.yb0{bottom:667.455511px;}
.y180{bottom:668.778427px;}
.y12b{bottom:673.326354px;}
.y1e1{bottom:675.180747px;}
.y3f{bottom:677.535055px;}
.y1ab{bottom:680.693702px;}
.y13{bottom:681.726564px;}
.y78{bottom:683.827479px;}
.y274{bottom:684.185847px;}
.y103{bottom:684.552315px;}
.y240{bottom:684.853380px;}
.yaf{bottom:685.689072px;}
.y17f{bottom:687.010188px;}
.y15d{bottom:687.011538px;}
.y1e0{bottom:690.723024px;}
.y12a{bottom:691.558191px;}
.y3e{bottom:695.766816px;}
.y1aa{bottom:698.925464px;}
.y12{bottom:699.958926px;}
.y102{bottom:702.785877px;}
.y23f{bottom:703.085142px;}
.yae{bottom:703.920834px;}
.y17e{bottom:705.241950px;}
.y15c{bottom:705.243300px;}
.y1df{bottom:705.668271px;}
.y129{bottom:709.791152px;}
.y3d{bottom:714.000378px;}
.y273{bottom:714.373656px;}
.y1a9{bottom:717.159026px;}
.y11{bottom:718.191287px;}
.y101{bottom:721.017639px;}
.y23e{bottom:721.318704px;}
.yad{bottom:722.154395px;}
.y17d{bottom:723.475511px;}
.y15b{bottom:723.476862px;}
.y128{bottom:728.024114px;}
.y77{bottom:729.746125px;}
.y3c{bottom:732.232139px;}
.y272{bottom:732.607218px;}
.y1a8{bottom:735.390787px;}
.y10{bottom:736.423649px;}
.y1de{bottom:736.876161px;}
.yac{bottom:740.386157px;}
.y17c{bottom:741.707873px;}
.y15a{bottom:741.708623px;}
.y127{bottom:746.255875px;}
.y76{bottom:747.979687px;}
.y100{bottom:748.216998px;}
.y3b{bottom:750.463901px;}
.y271{bottom:750.839580px;}
.y23d{bottom:753.076941px;}
.y1a7{bottom:753.624349px;}
.yf{bottom:754.656010px;}
.y1dd{bottom:755.107923px;}
.yab{bottom:758.617919px;}
.y17b{bottom:759.941435px;}
.y159{bottom:759.942185px;}
.y126{bottom:764.488837px;}
.y75{bottom:766.211448px;}
.y3a{bottom:768.696862px;}
.y270{bottom:769.073141px;}
.y23c{bottom:771.310503px;}
.y1a6{bottom:771.856110px;}
.ye{bottom:772.889572px;}
.y1dc{bottom:773.341485px;}
.yaa{bottom:776.851480px;}
.y205{bottom:782.639970px;}
.yff{bottom:782.719924px;}
.y125{bottom:782.720599px;}
.y74{bottom:784.445010px;}
.y39{bottom:786.929824px;}
.y26f{bottom:787.304903px;}
.y23b{bottom:789.542265px;}
.y1a5{bottom:790.087872px;}
.yd{bottom:791.121334px;}
.y1db{bottom:791.573246px;}
.ya9{bottom:795.083242px;}
.y204{bottom:800.872931px;}
.yfe{bottom:800.952285px;}
.y124{bottom:800.952360px;}
.y73{bottom:802.676771px;}
.y38{bottom:805.162786px;}
.y1a4{bottom:806.945700px;}
.y1a3{bottom:806.945760px;}
.y23a{bottom:807.774026px;}
.y158{bottom:808.010738px;}
.yc{bottom:809.354895px;}
.y1da{bottom:809.806808px;}
.ya8{bottom:813.316803px;}
.y26e{bottom:817.493912px;}
.y203{bottom:819.105293px;}
.yfd{bottom:819.184647px;}
.y123{bottom:819.185922px;}
.y72{bottom:820.909133px;}
.y37{bottom:823.394547px;}
.y239{bottom:826.007588px;}
.y157{bottom:826.244300px;}
.yb{bottom:827.586657px;}
.y1a2{bottom:828.018888px;}
.y1d9{bottom:828.038569px;}
.ya7{bottom:831.548565px;}
.y26d{bottom:835.725674px;}
.y202{bottom:837.338854px;}
.yfc{bottom:837.417008px;}
.y122{bottom:837.417683px;}
.y71{bottom:839.142095px;}
.y36{bottom:841.626309px;}
.y156{bottom:844.476061px;}
.ya{bottom:845.818418px;}
.y1d8{bottom:846.270331px;}
.y26c{bottom:853.957435px;}
.y70{bottom:857.374456px;}
.y238{bottom:857.765826px;}
.ya6{bottom:858.747925px;}
.y1a1{bottom:862.397607px;}
.y35{bottom:862.667861px;}
.y155{bottom:862.709623px;}
.y9{bottom:864.051980px;}
.y1d7{bottom:864.503893px;}
.y1fe{bottom:870.516013px;}
.y26b{bottom:872.190997px;}
.y6f{bottom:875.606818px;}
.y237{bottom:875.998787px;}
.y1a0{bottom:880.631169px;}
.y34{bottom:880.899622px;}
.y8{bottom:882.283741px;}
.y1d6{bottom:882.735654px;}
.yfb{bottom:885.486762px;}
.y26a{bottom:890.422758px;}
.ya5{bottom:893.789977px;}
.y6e{bottom:893.839179px;}
.y236{bottom:894.230549px;}
.y154{bottom:894.525794px;}
.y19f{bottom:898.862930px;}
.y33{bottom:899.133184px;}
.y7{bottom:900.517303px;}
.y1d5{bottom:900.969216px;}
.yfa{bottom:903.718523px;}
.y153{bottom:909.471881px;}
.ya4{bottom:912.023538px;}
.y6d{bottom:912.072741px;}
.y235{bottom:912.464110px;}
.y32{bottom:917.364945px;}
.y1d4{bottom:919.200977px;}
.y269{bottom:920.611768px;}
.yf9{bottom:921.952085px;}
.y152{bottom:924.414788px;}
.ya3{bottom:930.255300px;}
.y6c{bottom:930.304502px;}
.y6{bottom:935.596857px;}
.y31{bottom:935.598507px;}
.y1d3{bottom:937.434539px;}
.y268{bottom:938.844129px;}
.y151{bottom:939.360455px;}
.y234{bottom:944.222348px;}
.ya2{bottom:948.487061px;}
.y6b{bottom:948.536264px;}
.y150{bottom:954.902732px;}
.yce{bottom:955.129244px;}
.y1d2{bottom:955.666900px;}
.y267{bottom:957.077091px;}
.y233{bottom:962.455310px;}
.ya1{bottom:966.720623px;}
.y6a{bottom:966.769826px;}
.y14f{bottom:969.847979px;}
.yf4{bottom:970.335504px;}
.ye1{bottom:970.790027px;}
.y1d1{bottom:973.899262px;}
.y266{bottom:975.309453px;}
.y232{bottom:980.687671px;}
.ya0{bottom:984.952385px;}
.y69{bottom:985.001587px;}
.yed{bottom:991.903582px;}
.y1d0{bottom:992.132824px;}
.ydb{bottom:992.146594px;}
.y231{bottom:998.920633px;}
.y14e{bottom:1002.075141px;}
.y9f{bottom:1003.185346px;}
.y68{bottom:1003.235149px;}
.y265{bottom:1005.498462px;}
.y5{bottom:1008.161275px;}
.y1cf{bottom:1010.364585px;}
.yd1{bottom:1013.722173px;}
.y230{bottom:1017.152995px;}
.ydd{bottom:1019.326453px;}
.y14d{bottom:1020.306902px;}
.y9e{bottom:1021.418308px;}
.y67{bottom:1021.466910px;}
.y264{bottom:1023.730223px;}
.yf2{bottom:1023.792177px;}
.y4{bottom:1029.082626px;}
.y1ce{bottom:1037.563945px;}
.y14c{bottom:1038.540464px;}
.y9d{bottom:1039.651269px;}
.y66{bottom:1039.698672px;}
.y263{bottom:1041.961985px;}
.y3{bottom:1043.498512px;}
.y22f{bottom:1048.912433px;}
.y14b{bottom:1056.772826px;}
.y9c{bottom:1057.883031px;}
.y65{bottom:1057.932233px;}
.y262{bottom:1060.195547px;}
.y22e{bottom:1067.144194px;}
.y1cd{bottom:1072.151174px;}
.y9b{bottom:1076.114793px;}
.yd7{bottom:1077.481361px;}
.y14a{bottom:1088.591666px;}
.y261{bottom:1090.382756px;}
.y1cc{bottom:1090.382936px;}
.y64{bottom:1090.383656px;}
.y2{bottom:1097.258050px;}
.y22d{bottom:1098.904232px;}
.y9a{bottom:1103.314152px;}
.y149{bottom:1103.534993px;}
.yf6{bottom:1107.104842px;}
.y260{bottom:1108.616318px;}
.y1cb{bottom:1108.616498px;}
.y63{bottom:1108.617218px;}
.y22c{bottom:1117.135994px;}
.y148{bottom:1118.480076px;}
.y1{bottom:1121.169545px;}
.y1ca{bottom:1126.848259px;}
.y25f{bottom:1126.848679px;}
.y62{bottom:1126.848979px;}
.yf5{bottom:1132.270100px;}
.y147{bottom:1133.425158px;}
.y1c9{bottom:1145.080021px;}
.y61{bottom:1145.080741px;}
.y25e{bottom:1145.081641px;}
.y99{bottom:1145.081941px;}
.y146{bottom:1148.967435px;}
.ycd{bottom:1195.604767px;}
.h24{height:2.391144px;}
.h17{height:12.812171px;}
.h1d{height:17.000725px;}
.h1c{height:19.160464px;}
.h15{height:21.111756px;}
.h19{height:22.642882px;}
.h1a{height:24.634882px;}
.h8{height:24.676767px;}
.h2a{height:24.841515px;}
.h29{height:24.893275px;}
.h5{height:32.280519px;}
.h10{height:32.846509px;}
.h9{height:32.902218px;}
.ha{height:33.093510px;}
.h14{height:34.215114px;}
.h2c{height:35.373152px;}
.h13{height:36.952323px;}
.h21{height:37.015150px;}
.h20{height:37.230354px;}
.h23{height:37.232034px;}
.h22{height:37.337956px;}
.h26{height:41.008112px;}
.h7{height:41.127669px;}
.he{height:41.282064px;}
.h6{height:41.366783px;}
.h28{height:41.920128px;}
.h1e{height:42.143905px;}
.hd{height:44.833942px;}
.h1f{height:49.900662px;}
.hc{height:50.479410px;}
.h2d{height:50.486491px;}
.hb{height:52.961182px;}
.h4{height:58.309160px;}
.h3{height:59.568401px;}
.h11{height:61.699327px;}
.h16{height:61.746010px;}
.h1b{height:71.262830px;}
.h18{height:71.930396px;}
.h25{height:86.683418px;}
.h12{height:90.646082px;}
.h2b{height:170.596029px;}
.hf{height:204.902745px;}
.h27{height:289.512975px;}
.h2{height:1233.106642px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:22.642882px;}
.w4{width:22.643482px;}
.w8{width:28.289914px;}
.w6{width:28.979049px;}
.wb{width:35.697735px;}
.w7{width:75.987049px;}
.wa{width:100.771588px;}
.w5{width:100.772188px;}
.w9{width:195.494274px;}
.wd{width:658.234410px;}
.w2{width:731.334565px;}
.wc{width:738.683132px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:4.098205px;}
.x2c{left:5.862023px;}
.x18{left:7.125356px;}
.x41{left:13.010150px;}
.x22{left:14.947377px;}
.x23{left:21.599865px;}
.x1e{left:37.720886px;}
.x2a{left:39.066453px;}
.x25{left:62.647032px;}
.x3f{left:71.734787px;}
.x42{left:75.341417px;}
.x45{left:79.988650px;}
.x7{left:82.470299px;}
.x2d{left:95.725667px;}
.x40{left:96.928546px;}
.x9{left:98.759239px;}
.xe{left:101.149908px;}
.x46{left:104.887195px;}
.x33{left:107.169484px;}
.x1{left:109.774140px;}
.x2f{left:112.151458px;}
.xf{left:119.831692px;}
.x35{left:121.066044px;}
.x30{left:125.972099px;}
.x5{left:129.715012px;}
.x3{left:140.143158px;}
.xa{left:146.252963px;}
.x31{left:177.226362px;}
.x4{left:184.270414px;}
.x8{left:187.167884px;}
.x44{left:196.485825px;}
.x6{left:216.534852px;}
.x34{left:221.715376px;}
.x2{left:228.144758px;}
.x17{left:235.349768px;}
.x1f{left:243.965898px;}
.x19{left:266.618831px;}
.x16{left:287.546077px;}
.x1a{left:297.889395px;}
.x32{left:300.166509px;}
.x1b{left:328.295915px;}
.x20{left:398.286414px;}
.x14{left:426.745500px;}
.x1c{left:438.890143px;}
.xd{left:443.752500px;}
.x24{left:452.007100px;}
.x47{left:455.213511px;}
.xb{left:465.165758px;}
.x39{left:469.451683px;}
.x38{left:478.160908px;}
.x13{left:481.456573px;}
.xc{left:483.098705px;}
.x3a{left:484.831501px;}
.x48{left:487.583479px;}
.x11{left:489.824996px;}
.x3d{left:495.944297px;}
.x37{left:499.586479px;}
.x1d{left:500.959048px;}
.x12{left:502.527586px;}
.x3b{left:504.071763px;}
.x3e{left:513.759188px;}
.x27{left:530.746636px;}
.x10{left:567.555027px;}
.x28{left:570.431720px;}
.x2e{left:574.616241px;}
.x43{left:578.771238px;}
.x29{left:613.901195px;}
.x26{left:619.130305px;}
.x2b{left:622.050801px;}
.x15{left:632.473322px;}
.x3c{left:657.299864px;}
.x36{left:664.701235px;}
@media print{
.vc{vertical-align:-58.984282pt;}
.v9{vertical-align:-32.268280pt;}
.v2{vertical-align:-23.136570pt;}
.v8{vertical-align:-19.130130pt;}
.v5{vertical-align:-15.002830pt;}
.v3{vertical-align:-7.950424pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.975385pt;}
.va{vertical-align:15.942450pt;}
.v4{vertical-align:19.280111pt;}
.v1{vertical-align:23.136570pt;}
.v6{vertical-align:34.147841pt;}
.vd{vertical-align:42.658186pt;}
.vb{vertical-align:74.926466pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004110pt;}
.ls6{letter-spacing:0.008270pt;}
.ls3b{letter-spacing:0.009199pt;}
.ls0{letter-spacing:0.009904pt;}
.ls4{letter-spacing:0.010350pt;}
.ls37{letter-spacing:0.012416pt;}
.ls5{letter-spacing:0.014118pt;}
.ls17{letter-spacing:0.014636pt;}
.ls2{letter-spacing:0.016198pt;}
.ls30{letter-spacing:0.018797pt;}
.ls1c{letter-spacing:0.020877pt;}
.ls38{letter-spacing:0.026972pt;}
.ls3f{letter-spacing:0.028680pt;}
.ls43{letter-spacing:0.029105pt;}
.ls25{letter-spacing:0.029550pt;}
.ls3a{letter-spacing:0.033710pt;}
.ls1f{letter-spacing:0.034501pt;}
.ls19{letter-spacing:0.036581pt;}
.lsd{letter-spacing:0.038188pt;}
.ls32{letter-spacing:0.040268pt;}
.ls20{letter-spacing:0.040795pt;}
.ls15{letter-spacing:0.042875pt;}
.ls34{letter-spacing:0.044428pt;}
.ls3c{letter-spacing:0.046781pt;}
.ls14{letter-spacing:2.651546pt;}
.lsc{letter-spacing:2.655439pt;}
.lsa{letter-spacing:2.655706pt;}
.ls40{letter-spacing:2.665599pt;}
.ls1d{letter-spacing:2.670308pt;}
.ls1e{letter-spacing:2.672389pt;}
.ls18{letter-spacing:2.676549pt;}
.ls39{letter-spacing:4.020920pt;}
.ls44{letter-spacing:4.025080pt;}
.ls23{letter-spacing:5.316692pt;}
.ls24{letter-spacing:5.354827pt;}
.ls13{letter-spacing:7.397285pt;}
.ls11{letter-spacing:7.403525pt;}
.ls42{letter-spacing:8.852283pt;}
.ls41{letter-spacing:8.871205pt;}
.ls12{letter-spacing:8.892764pt;}
.ls1b{letter-spacing:11.846831pt;}
.ls3e{letter-spacing:11.849178pt;}
.ls1a{letter-spacing:11.850991pt;}
.ls2d{letter-spacing:11.954151pt;}
.ls27{letter-spacing:11.955966pt;}
.ls29{letter-spacing:11.956231pt;}
.ls45{letter-spacing:13.048481pt;}
.ls36{letter-spacing:13.283704pt;}
.ls33{letter-spacing:13.448299pt;}
.ls3d{letter-spacing:14.472429pt;}
.ls48{letter-spacing:14.500458pt;}
.ls49{letter-spacing:14.777539pt;}
.ls16{letter-spacing:14.801059pt;}
.ls46{letter-spacing:15.693344pt;}
.ls2f{letter-spacing:16.133873pt;}
.ls21{letter-spacing:16.625193pt;}
.ls35{letter-spacing:17.433553pt;}
.ls31{letter-spacing:17.733568pt;}
.ls9{letter-spacing:18.606674pt;}
.ls7{letter-spacing:18.608754pt;}
.ls8{letter-spacing:18.615048pt;}
.ls47{letter-spacing:21.855664pt;}
.ls2e{letter-spacing:22.704643pt;}
.ls10{letter-spacing:26.566982pt;}
.lsf{letter-spacing:33.473931pt;}
.lse{letter-spacing:33.494163pt;}
.ls22{letter-spacing:34.809207pt;}
.ls4a{letter-spacing:48.370418pt;}
.ls26{letter-spacing:63.802320pt;}
.ls2a{letter-spacing:117.590609pt;}
.ls2b{letter-spacing:120.240768pt;}
.ls28{letter-spacing:129.543206pt;}
.ls2c{letter-spacing:129.545340pt;}
.ls3{letter-spacing:155.500985pt;}
.wsda{word-spacing:-26.633484pt;}
.wsc1{word-spacing:-26.568262pt;}
.ws9{word-spacing:-13.284131pt;}
.wsd8{word-spacing:-11.826591pt;}
.ws151{word-spacing:-11.754649pt;}
.ws14d{word-spacing:-11.487957pt;}
.wsd9{word-spacing:-10.950548pt;}
.ws19c{word-spacing:-10.479585pt;}
.wsc2{word-spacing:-9.218809pt;}
.wsdb{word-spacing:-7.884394pt;}
.wsb7{word-spacing:-7.163700pt;}
.ws14b{word-spacing:-6.493974pt;}
.wsdc{word-spacing:-6.132307pt;}
.ws73{word-spacing:-2.444918pt;}
.ws172{word-spacing:-2.019507pt;}
.ws7a{word-spacing:-0.689925pt;}
.ws177{word-spacing:-0.531153pt;}
.wsb9{word-spacing:-0.435188pt;}
.ws192{word-spacing:-0.212440pt;}
.ws190{word-spacing:-0.053137pt;}
.ws10b{word-spacing:-0.037195pt;}
.ws13c{word-spacing:-0.002193pt;}
.ws2{word-spacing:-0.000956pt;}
.ws1e2{word-spacing:-0.000903pt;}
.ws0{word-spacing:-0.000765pt;}
.wsaa{word-spacing:-0.000638pt;}
.ws1{word-spacing:-0.000536pt;}
.ws1bd{word-spacing:-0.000159pt;}
.ws65{word-spacing:0.000000pt;}
.ws160{word-spacing:0.000106pt;}
.ws5{word-spacing:0.000128pt;}
.wsf7{word-spacing:0.000319pt;}
.ws80{word-spacing:0.000372pt;}
.ws3{word-spacing:0.000383pt;}
.wse4{word-spacing:0.000691pt;}
.ws4{word-spacing:0.000893pt;}
.ws11e{word-spacing:0.000903pt;}
.ws13b{word-spacing:0.002727pt;}
.ws79{word-spacing:0.212227pt;}
.ws145{word-spacing:0.902896pt;}
.ws1d4{word-spacing:1.221662pt;}
.ws1db{word-spacing:1.488354pt;}
.ws1f1{word-spacing:1.754355pt;}
.wsbd{word-spacing:2.018178pt;}
.wsdd{word-spacing:2.391887pt;}
.ws1e8{word-spacing:3.135693pt;}
.wscb{word-spacing:5.578644pt;}
.ws31{word-spacing:5.758344pt;}
.ws138{word-spacing:6.430263pt;}
.ws6b{word-spacing:6.802431pt;}
.wsc7{word-spacing:7.438529pt;}
.ws17a{word-spacing:7.651181pt;}
.ws9b{word-spacing:8.236692pt;}
.wsc3{word-spacing:8.288554pt;}
.ws236{word-spacing:8.819706pt;}
.wsb5{word-spacing:8.862694pt;}
.ws2f{word-spacing:9.522301pt;}
.ws24{word-spacing:9.617923pt;}
.ws35{word-spacing:9.988841pt;}
.ws34{word-spacing:9.989370pt;}
.ws1ad{word-spacing:10.042272pt;}
.ws10{word-spacing:10.095142pt;}
.ws16f{word-spacing:10.148651pt;}
.ws93{word-spacing:10.149235pt;}
.ws175{word-spacing:10.149979pt;}
.ws119{word-spacing:10.413802pt;}
.ws117{word-spacing:10.449285pt;}
.ws1e3{word-spacing:10.466939pt;}
.ws1bf{word-spacing:10.467948pt;}
.ws252{word-spacing:10.520181pt;}
.ws253{word-spacing:10.521616pt;}
.ws36{word-spacing:10.581591pt;}
.ws219{word-spacing:10.583802pt;}
.wsd7{word-spacing:10.584057pt;}
.wsd6{word-spacing:10.584318pt;}
.ws2d{word-spacing:10.584397pt;}
.ws37{word-spacing:10.584652pt;}
.ws132{word-spacing:10.584992pt;}
.ws26c{word-spacing:10.627889pt;}
.ws26b{word-spacing:10.628102pt;}
.ws16a{word-spacing:10.680282pt;}
.ws8e{word-spacing:10.732621pt;}
.ws201{word-spacing:10.734268pt;}
.ws1c5{word-spacing:10.786449pt;}
.wsc9{word-spacing:10.825274pt;}
.wsca{word-spacing:10.839319pt;}
.ws19e{word-spacing:10.891925pt;}
.ws76{word-spacing:10.945061pt;}
.ws251{word-spacing:10.945592pt;}
.ws250{word-spacing:10.945964pt;}
.ws1fd{word-spacing:11.052503pt;}
.ws75{word-spacing:11.104736pt;}
.ws215{word-spacing:11.157554pt;}
.ws173{word-spacing:11.211222pt;}
.ws240{word-spacing:11.211594pt;}
.ws1c9{word-spacing:11.265634pt;}
.ws237{word-spacing:11.370897pt;}
.ws1a2{word-spacing:11.423343pt;}
.ws12d{word-spacing:11.476586pt;}
.ws12c{word-spacing:11.476851pt;}
.ws10d{word-spacing:11.529775pt;}
.ws1a5{word-spacing:11.583656pt;}
.ws124{word-spacing:11.636367pt;}
.ws1c8{word-spacing:11.636527pt;}
.ws152{word-spacing:11.636845pt;}
.ws235{word-spacing:11.689823pt;}
.ws1d8{word-spacing:11.742268pt;}
.ws1ae{word-spacing:11.742481pt;}
.ws3b{word-spacing:11.849020pt;}
.ws1cb{word-spacing:11.907209pt;}
.ws136{word-spacing:11.907449pt;}
.ws13f{word-spacing:11.907831pt;}
.ws141{word-spacing:11.907927pt;}
.ws137{word-spacing:11.907975pt;}
.ws13d{word-spacing:11.908410pt;}
.ws15c{word-spacing:11.955133pt;}
.ws218{word-spacing:11.955718pt;}
.ws8c{word-spacing:12.008004pt;}
.wsbf{word-spacing:12.033822pt;}
.wsc0{word-spacing:12.061513pt;}
.ws50{word-spacing:12.114118pt;}
.ws108{word-spacing:12.114702pt;}
.ws1c3{word-spacing:12.114915pt;}
.ws183{word-spacing:12.115552pt;}
.ws10a{word-spacing:12.134703pt;}
.ws19a{word-spacing:12.167520pt;}
.ws43{word-spacing:12.168051pt;}
.ws208{word-spacing:12.168583pt;}
.ws131{word-spacing:12.199241pt;}
.ws32{word-spacing:12.199454pt;}
.ws232{word-spacing:12.220391pt;}
.ws147{word-spacing:12.221294pt;}
.ws22c{word-spacing:12.221613pt;}
.ws174{word-spacing:12.274803pt;}
.ws16e{word-spacing:12.326664pt;}
.ws11a{word-spacing:12.326930pt;}
.ws115{word-spacing:12.327939pt;}
.ws25c{word-spacing:12.375811pt;}
.ws25d{word-spacing:12.380279pt;}
.ws29{word-spacing:12.380438pt;}
.wse8{word-spacing:12.433149pt;}
.ws161{word-spacing:12.486180pt;}
.ws57{word-spacing:12.486286pt;}
.ws212{word-spacing:12.486817pt;}
.ws257{word-spacing:12.487880pt;}
.ws1b0{word-spacing:12.539316pt;}
.ws7b{word-spacing:12.539422pt;}
.ws12a{word-spacing:12.539954pt;}
.wsa6{word-spacing:12.592293pt;}
.ws1a4{word-spacing:12.592506pt;}
.wsa8{word-spacing:12.592931pt;}
.ws19b{word-spacing:12.647236pt;}
.ws178{word-spacing:12.699310pt;}
.ws221{word-spacing:12.753084pt;}
.ws220{word-spacing:12.753297pt;}
.ws1fa{word-spacing:12.805052pt;}
.ws23{word-spacing:12.805105pt;}
.ws1f4{word-spacing:12.805318pt;}
.wsd4{word-spacing:12.805583pt;}
.wsd3{word-spacing:12.824048pt;}
.wsf3{word-spacing:12.859623pt;}
.ws15b{word-spacing:12.911325pt;}
.ws197{word-spacing:12.964462pt;}
.ws193{word-spacing:12.964833pt;}
.ws8a{word-spacing:12.965205pt;}
.ws246{word-spacing:12.965471pt;}
.ws198{word-spacing:12.965631pt;}
.ws61{word-spacing:13.071744pt;}
.ws1ab{word-spacing:13.072116pt;}
.wsbb{word-spacing:13.072541pt;}
.ws116{word-spacing:13.116573pt;}
.ws118{word-spacing:13.120643pt;}
.ws217{word-spacing:13.124084pt;}
.ws245{word-spacing:13.124190pt;}
.ws170{word-spacing:13.124349pt;}
.ws1f3{word-spacing:13.177752pt;}
.ws1ef{word-spacing:13.228781pt;}
.ws1f0{word-spacing:13.229932pt;}
.ws21e{word-spacing:13.229985pt;}
.ws7f{word-spacing:13.230038pt;}
.ws4b{word-spacing:13.230091pt;}
.wsf6{word-spacing:13.230144pt;}
.ws3c{word-spacing:13.230197pt;}
.ws21{word-spacing:13.230357pt;}
.wse0{word-spacing:13.230410pt;}
.wsbc{word-spacing:13.230463pt;}
.wsce{word-spacing:13.230622pt;}
.ws15f{word-spacing:13.230675pt;}
.ws9e{word-spacing:13.230729pt;}
.ws69{word-spacing:13.230782pt;}
.ws171{word-spacing:13.230835pt;}
.ws96{word-spacing:13.230941pt;}
.ws1ff{word-spacing:13.230994pt;}
.ws127{word-spacing:13.231101pt;}
.ws243{word-spacing:13.231419pt;}
.ws23c{word-spacing:13.231473pt;}
.ws72{word-spacing:13.231526pt;}
.wsa9{word-spacing:13.231632pt;}
.ws179{word-spacing:13.231791pt;}
.wsad{word-spacing:13.231898pt;}
.ws78{word-spacing:13.232057pt;}
.ws150{word-spacing:13.232891pt;}
.ws15d{word-spacing:13.283281pt;}
.ws269{word-spacing:13.284768pt;}
.ws60{word-spacing:13.336577pt;}
.ws21f{word-spacing:13.337002pt;}
.ws14e{word-spacing:13.389979pt;}
.ws14f{word-spacing:13.390882pt;}
.ws1c4{word-spacing:13.442850pt;}
.ws54{word-spacing:13.443115pt;}
.wsea{word-spacing:13.496358pt;}
.ws1ee{word-spacing:13.548857pt;}
.ws1ed{word-spacing:13.548963pt;}
.ws156{word-spacing:13.549442pt;}
.ws1ec{word-spacing:13.549495pt;}
.ws1eb{word-spacing:13.549676pt;}
.ws64{word-spacing:13.603003pt;}
.ws1b3{word-spacing:13.603641pt;}
.ws1e{word-spacing:13.655236pt;}
.ws71{word-spacing:13.708320pt;}
.wsac{word-spacing:13.762360pt;}
.ws2e{word-spacing:13.772426pt;}
.ws1df{word-spacing:13.815284pt;}
.wsba{word-spacing:13.815762pt;}
.ws46{word-spacing:13.867889pt;}
.ws28{word-spacing:13.868633pt;}
.ws11d{word-spacing:13.900369pt;}
.ws19d{word-spacing:13.921397pt;}
.ws180{word-spacing:13.921503pt;}
.ws1e0{word-spacing:13.922300pt;}
.ws24f{word-spacing:14.027511pt;}
.ws77{word-spacing:14.028042pt;}
.ws17d{word-spacing:14.028574pt;}
.wsab{word-spacing:14.080913pt;}
.ws107{word-spacing:14.133784pt;}
.ws17{word-spacing:14.134315pt;}
.ws1b6{word-spacing:14.134528pt;}
.ws89{word-spacing:14.186655pt;}
.ws216{word-spacing:14.187186pt;}
.ws9a{word-spacing:14.240588pt;}
.ws1d7{word-spacing:14.241066pt;}
.ws185{word-spacing:14.241332pt;}
.wsdf{word-spacing:14.293034pt;}
.ws85{word-spacing:14.293193pt;}
.ws105{word-spacing:14.323331pt;}
.ws23a{word-spacing:14.345905pt;}
.ws52{word-spacing:14.399148pt;}
.ws1d5{word-spacing:14.399254pt;}
.ws23b{word-spacing:14.399520pt;}
.wsff{word-spacing:14.422771pt;}
.wsfd{word-spacing:14.427257pt;}
.wsfe{word-spacing:14.429661pt;}
.ws214{word-spacing:14.452284pt;}
.ws1d6{word-spacing:14.452816pt;}
.ws163{word-spacing:14.453453pt;}
.ws18{word-spacing:14.506696pt;}
.wsa2{word-spacing:14.559035pt;}
.ws56{word-spacing:14.611800pt;}
.wsc6{word-spacing:14.611906pt;}
.wsc5{word-spacing:14.616930pt;}
.ws1e1{word-spacing:14.664937pt;}
.wse2{word-spacing:14.665043pt;}
.ws162{word-spacing:14.717967pt;}
.ws184{word-spacing:14.719242pt;}
.ws182{word-spacing:14.771847pt;}
.ws109{word-spacing:14.801990pt;}
.wsd{word-spacing:14.825196pt;}
.ws94{word-spacing:14.825993pt;}
.ws8f{word-spacing:14.877323pt;}
.ws84{word-spacing:14.878705pt;}
.ws2a{word-spacing:14.879130pt;}
.ws92{word-spacing:14.930566pt;}
.ws267{word-spacing:14.930832pt;}
.ws1f2{word-spacing:14.983543pt;}
.ws248{word-spacing:14.983862pt;}
.ws48{word-spacing:14.984872pt;}
.ws1f9{word-spacing:15.089816pt;}
.ws199{word-spacing:15.090029pt;}
.ws11c{word-spacing:15.091091pt;}
.ws83{word-spacing:15.143006pt;}
.wsf{word-spacing:15.143059pt;}
.ws139{word-spacing:15.143590pt;}
.ws17e{word-spacing:15.144759pt;}
.ws210{word-spacing:15.196302pt;}
.ws5f{word-spacing:15.196567pt;}
.wse9{word-spacing:15.197365pt;}
.ws103{word-spacing:15.249173pt;}
.wsbe{word-spacing:15.249438pt;}
.ws101{word-spacing:15.258393pt;}
.ws1a6{word-spacing:15.302840pt;}
.ws22b{word-spacing:15.355818pt;}
.ws59{word-spacing:15.356243pt;}
.ws19f{word-spacing:15.356349pt;}
.ws22a{word-spacing:15.356668pt;}
.ws45{word-spacing:15.461719pt;}
.wsf1{word-spacing:15.463632pt;}
.wsf0{word-spacing:15.516024pt;}
.ws1b1{word-spacing:15.567939pt;}
.ws9f{word-spacing:15.568204pt;}
.ws2b{word-spacing:15.568417pt;}
.ws247{word-spacing:15.621819pt;}
.wsde{word-spacing:15.622138pt;}
.ws82{word-spacing:15.674477pt;}
.ws26{word-spacing:15.727720pt;}
.ws120{word-spacing:15.728411pt;}
.ws229{word-spacing:15.780750pt;}
.wsa5{word-spacing:15.781229pt;}
.ws259{word-spacing:15.834099pt;}
.ws207{word-spacing:15.834684pt;}
.ws258{word-spacing:15.857221pt;}
.ws7{word-spacing:15.876470pt;}
.ws6{word-spacing:15.877108pt;}
.ws8{word-spacing:15.878192pt;}
.ws1e7{word-spacing:15.887502pt;}
.ws154{word-spacing:15.941010pt;}
.ws194{word-spacing:15.993350pt;}
.ws112{word-spacing:15.993509pt;}
.ws200{word-spacing:15.993775pt;}
.ws10e{word-spacing:15.994944pt;}
.ws110{word-spacing:16.015963pt;}
.ws4c{word-spacing:16.047124pt;}
.ws13a{word-spacing:16.047230pt;}
.ws14c{word-spacing:16.047389pt;}
.ws7e{word-spacing:16.099410pt;}
.ws14a{word-spacing:16.100739pt;}
.ws196{word-spacing:16.132461pt;}
.ws195{word-spacing:16.134594pt;}
.ws4e{word-spacing:16.152600pt;}
.ws27{word-spacing:16.153397pt;}
.ws5b{word-spacing:16.206799pt;}
.ws1e4{word-spacing:16.312275pt;}
.ws17c{word-spacing:16.312806pt;}
.ws20{word-spacing:16.365146pt;}
.ws1e9{word-spacing:16.365412pt;}
.ws5e{word-spacing:16.365518pt;}
.ws66{word-spacing:16.365784pt;}
.ws24e{word-spacing:16.365890pt;}
.ws1b2{word-spacing:16.366315pt;}
.ws149{word-spacing:16.524502pt;}
.ws5c{word-spacing:16.524768pt;}
.ws167{word-spacing:16.630828pt;}
.ws1ba{word-spacing:16.632051pt;}
.ws1b9{word-spacing:16.655104pt;}
.ws113{word-spacing:16.683912pt;}
.wsf2{word-spacing:16.684762pt;}
.ws1be{word-spacing:16.684921pt;}
.ws12b{word-spacing:16.737527pt;}
.ws106{word-spacing:16.775378pt;}
.ws1a{word-spacing:16.790557pt;}
.ws1d{word-spacing:16.790663pt;}
.ws146{word-spacing:16.844969pt;}
.ws15e{word-spacing:16.896405pt;}
.ws88{word-spacing:16.896564pt;}
.ws4a{word-spacing:16.897202pt;}
.ws4f{word-spacing:16.949807pt;}
.ws70{word-spacing:16.951082pt;}
.ws10c{word-spacing:17.004644pt;}
.ws123{word-spacing:17.057887pt;}
.ws8b{word-spacing:17.109163pt;}
.wsed{word-spacing:17.162831pt;}
.ws1a7{word-spacing:17.162938pt;}
.ws1e6{word-spacing:17.164107pt;}
.ws114{word-spacing:17.215171pt;}
.wscd{word-spacing:17.268573pt;}
.wseb{word-spacing:17.270008pt;}
.wsae{word-spacing:17.270114pt;}
.ws68{word-spacing:17.321816pt;}
.ws1f{word-spacing:17.321975pt;}
.ws262{word-spacing:17.322082pt;}
.wse1{word-spacing:17.322188pt;}
.ws211{word-spacing:17.375059pt;}
.wsfc{word-spacing:17.379055pt;}
.ws91{word-spacing:17.481969pt;}
.ws148{word-spacing:17.482129pt;}
.ws38{word-spacing:17.482766pt;}
.ws1a0{word-spacing:17.534096pt;}
.ws260{word-spacing:17.576530pt;}
.ws169{word-spacing:17.587977pt;}
.wse6{word-spacing:17.588136pt;}
.ws261{word-spacing:17.588349pt;}
.ws1c{word-spacing:17.640848pt;}
.ws104{word-spacing:17.641113pt;}
.wse{word-spacing:17.641645pt;}
.ws16b{word-spacing:17.693559pt;}
.wsb2{word-spacing:17.693825pt;}
.ws49{word-spacing:17.746695pt;}
.ws1b5{word-spacing:17.746802pt;}
.ws8d{word-spacing:17.799991pt;}
.ws95{word-spacing:17.800098pt;}
.wsb1{word-spacing:17.800629pt;}
.ws268{word-spacing:17.800895pt;}
.ws62{word-spacing:17.801267pt;}
.ws166{word-spacing:17.852915pt;}
.wsaf{word-spacing:17.853234pt;}
.ws25a{word-spacing:17.906636pt;}
.ws241{word-spacing:17.907274pt;}
.wsf5{word-spacing:17.907646pt;}
.ws102{word-spacing:17.925032pt;}
.ws33{word-spacing:17.938340pt;}
.ws30{word-spacing:17.950959pt;}
.ws242{word-spacing:17.960145pt;}
.wsef{word-spacing:17.960517pt;}
.wsd5{word-spacing:18.066259pt;}
.ws164{word-spacing:18.066790pt;}
.ws176{word-spacing:18.118598pt;}
.ws11{word-spacing:18.119767pt;}
.ws24d{word-spacing:18.119926pt;}
.ws1aa{word-spacing:18.171841pt;}
.ws81{word-spacing:18.172691pt;}
.ws255{word-spacing:18.224871pt;}
.ws165{word-spacing:18.225137pt;}
.ws256{word-spacing:18.225881pt;}
.ws1bb{word-spacing:18.226040pt;}
.ws22d{word-spacing:18.278061pt;}
.ws1fe{word-spacing:18.278751pt;}
.wse3{word-spacing:18.332791pt;}
.ws18d{word-spacing:18.385025pt;}
.ws18e{word-spacing:18.385556pt;}
.ws18f{word-spacing:18.391275pt;}
.wsa7{word-spacing:18.437523pt;}
.ws121{word-spacing:18.437630pt;}
.ws23f{word-spacing:18.438267pt;}
.ws1af{word-spacing:18.490554pt;}
.wsf4{word-spacing:18.491138pt;}
.ws58{word-spacing:18.543743pt;}
.ws153{word-spacing:18.545337pt;}
.ws230{word-spacing:18.597039pt;}
.ws128{word-spacing:18.598049pt;}
.ws22{word-spacing:18.598315pt;}
.wse7{word-spacing:18.650123pt;}
.ws1e5{word-spacing:18.650388pt;}
.ws3d{word-spacing:18.651717pt;}
.ws10f{word-spacing:18.687736pt;}
.ws111{word-spacing:18.692274pt;}
.ws1ca{word-spacing:18.703259pt;}
.ws47{word-spacing:18.703525pt;}
.ws25e{word-spacing:18.809798pt;}
.wscc{word-spacing:18.810064pt;}
.ws202{word-spacing:18.915593pt;}
.ws1fc{word-spacing:18.916709pt;}
.ws1b8{word-spacing:18.969154pt;}
.ws41{word-spacing:18.969951pt;}
.wsfa{word-spacing:19.021972pt;}
.wsb3{word-spacing:19.022291pt;}
.ws1c6{word-spacing:19.022557pt;}
.ws20c{word-spacing:19.075162pt;}
.ws39{word-spacing:19.076224pt;}
.ws20e{word-spacing:19.076703pt;}
.ws7d{word-spacing:19.077128pt;}
.ws25b{word-spacing:19.182976pt;}
.ws1f8{word-spacing:19.234359pt;}
.ws12f{word-spacing:19.235315pt;}
.wsb8{word-spacing:19.340224pt;}
.ws16{word-spacing:19.340685pt;}
.ws125{word-spacing:19.341323pt;}
.ws3a{word-spacing:19.341854pt;}
.ws209{word-spacing:19.342385pt;}
.wsb6{word-spacing:19.352464pt;}
.ws238{word-spacing:19.374223pt;}
.ws239{word-spacing:19.395097pt;}
.ws1a9{word-spacing:19.395362pt;}
.ws7c{word-spacing:19.447277pt;}
.ws181{word-spacing:19.501476pt;}
.ws16c{word-spacing:19.501635pt;}
.ws12e{word-spacing:19.501742pt;}
.wsfb{word-spacing:19.553550pt;}
.ws15{word-spacing:19.606421pt;}
.ws5d{word-spacing:19.659717pt;}
.ws1c0{word-spacing:19.766096pt;}
.ws87{word-spacing:19.818967pt;}
.wsd2{word-spacing:19.819498pt;}
.ws22e{word-spacing:19.819870pt;}
.ws22f{word-spacing:19.819976pt;}
.wsd1{word-spacing:19.820242pt;}
.ws18b{word-spacing:19.872103pt;}
.ws13{word-spacing:19.872210pt;}
.wse5{word-spacing:19.873644pt;}
.ws157{word-spacing:19.873697pt;}
.ws1a1{word-spacing:19.978483pt;}
.ws206{word-spacing:19.978589pt;}
.ws6e{word-spacing:19.978855pt;}
.ws130{word-spacing:20.086403pt;}
.ws1ea{word-spacing:20.137839pt;}
.ws1f7{word-spacing:20.190922pt;}
.ws5a{word-spacing:20.297355pt;}
.ws17f{word-spacing:20.297514pt;}
.ws158{word-spacing:20.403894pt;}
.ws11b{word-spacing:20.404903pt;}
.ws21c{word-spacing:20.457561pt;}
.ws21d{word-spacing:20.457933pt;}
.ws1f5{word-spacing:20.510114pt;}
.ws67{word-spacing:20.563516pt;}
.ws1bc{word-spacing:20.616121pt;}
.wsec{word-spacing:20.616280pt;}
.ws1fb{word-spacing:20.616599pt;}
.ws99{word-spacing:20.669523pt;}
.ws122{word-spacing:20.669629pt;}
.ws26a{word-spacing:20.670161pt;}
.wsc8{word-spacing:20.670533pt;}
.ws222{word-spacing:20.776699pt;}
.ws1b7{word-spacing:20.828508pt;}
.ws15a{word-spacing:20.882175pt;}
.ws17b{word-spacing:20.882547pt;}
.ws1dc{word-spacing:20.883185pt;}
.wsa4{word-spacing:21.041160pt;}
.wsb0{word-spacing:21.041904pt;}
.ws1ac{word-spacing:21.094668pt;}
.ws203{word-spacing:21.095200pt;}
.ws86{word-spacing:21.200782pt;}
.ws159{word-spacing:21.201101pt;}
.ws40{word-spacing:21.253919pt;}
.ws18c{word-spacing:21.254716pt;}
.wsa1{word-spacing:21.308065pt;}
.ws4d{word-spacing:21.360457pt;}
.ws223{word-spacing:21.361679pt;}
.ws90{word-spacing:21.414072pt;}
.ws12{word-spacing:21.466252pt;}
.ws9c{word-spacing:21.519548pt;}
.wsc4{word-spacing:21.520611pt;}
.ws1c7{word-spacing:21.626565pt;}
.wsa0{word-spacing:21.626831pt;}
.ws1c2{word-spacing:21.679064pt;}
.ws53{word-spacing:21.838314pt;}
.ws228{word-spacing:21.891344pt;}
.ws227{word-spacing:21.891451pt;}
.ws51{word-spacing:21.891716pt;}
.ws1b{word-spacing:22.050807pt;}
.ws126{word-spacing:22.051073pt;}
.ws9d{word-spacing:22.051551pt;}
.ws63{word-spacing:22.158408pt;}
.wsa3{word-spacing:22.316490pt;}
.ws205{word-spacing:22.317234pt;}
.wscf{word-spacing:22.318296pt;}
.wsee{word-spacing:22.370795pt;}
.ws55{word-spacing:22.422710pt;}
.wsf9{word-spacing:22.476590pt;}
.ws3e{word-spacing:22.582916pt;}
.ws16d{word-spacing:22.583129pt;}
.ws1f6{word-spacing:22.635256pt;}
.ws44{word-spacing:22.689136pt;}
.ws231{word-spacing:22.741422pt;}
.ws23e{word-spacing:22.741582pt;}
.ws2c{word-spacing:22.743176pt;}
.ws11f{word-spacing:22.847855pt;}
.ws155{word-spacing:22.902054pt;}
.ws20b{word-spacing:22.955031pt;}
.ws20a{word-spacing:22.955563pt;}
.ws25{word-spacing:23.220289pt;}
.ws20d{word-spacing:23.274063pt;}
.ws23d{word-spacing:23.274807pt;}
.ws226{word-spacing:23.379805pt;}
.ws14{word-spacing:23.433047pt;}
.wsb{word-spacing:23.591607pt;}
.wsd0{word-spacing:23.592032pt;}
.ws233{word-spacing:23.626446pt;}
.ws234{word-spacing:23.645328pt;}
.wsb4{word-spacing:23.751707pt;}
.ws1c1{word-spacing:23.804312pt;}
.ws1a3{word-spacing:23.963669pt;}
.ws1b4{word-spacing:23.964094pt;}
.ws129{word-spacing:24.282700pt;}
.ws3f{word-spacing:24.495725pt;}
.ws224{word-spacing:24.496097pt;}
.ws204{word-spacing:24.707527pt;}
.ws254{word-spacing:24.973900pt;}
.ws188{word-spacing:24.975176pt;}
.ws1dd{word-spacing:25.080545pt;}
.ws19{word-spacing:25.239264pt;}
.wsc{word-spacing:25.345059pt;}
.ws249{word-spacing:25.504787pt;}
.ws18a{word-spacing:25.610795pt;}
.ws168{word-spacing:25.663984pt;}
.ws25f{word-spacing:25.770311pt;}
.ws20f{word-spacing:25.878496pt;}
.ws74{word-spacing:26.036790pt;}
.ws225{word-spacing:26.089183pt;}
.ws6d{word-spacing:26.089448pt;}
.ws189{word-spacing:26.301835pt;}
.ws21a{word-spacing:26.514913pt;}
.ws6a{word-spacing:26.518592pt;}
.ws97{word-spacing:26.569006pt;}
.wsf8{word-spacing:26.781817pt;}
.ws191{word-spacing:26.935082pt;}
.ws213{word-spacing:27.045640pt;}
.ws42{word-spacing:27.259940pt;}
.ws6f{word-spacing:27.684182pt;}
.ws1de{word-spacing:28.055819pt;}
.wsa{word-spacing:28.374903pt;}
.ws24b{word-spacing:28.586759pt;}
.ws24a{word-spacing:28.589419pt;}
.ws265{word-spacing:28.906109pt;}
.ws264{word-spacing:28.942516pt;}
.ws1a8{word-spacing:29.542897pt;}
.ws24c{word-spacing:29.755603pt;}
.ws98{word-spacing:29.810440pt;}
.ws1ce{word-spacing:30.545575pt;}
.ws1d1{word-spacing:30.553528pt;}
.ws1d3{word-spacing:30.555661pt;}
.ws186{word-spacing:30.651290pt;}
.ws187{word-spacing:30.659083pt;}
.ws244{word-spacing:33.687865pt;}
.ws26d{word-spacing:35.867153pt;}
.ws263{word-spacing:37.302636pt;}
.ws266{word-spacing:37.779749pt;}
.ws21b{word-spacing:38.418185pt;}
.ws6c{word-spacing:41.810868pt;}
.ws1d2{word-spacing:42.453550pt;}
.ws1cf{word-spacing:42.463636pt;}
.ws1cd{word-spacing:42.467854pt;}
.ws100{word-spacing:49.757675pt;}
.ws140{word-spacing:51.791339pt;}
.ws144{word-spacing:51.792038pt;}
.ws1da{word-spacing:57.339528pt;}
.ws143{word-spacing:63.699313pt;}
.ws13e{word-spacing:63.700012pt;}
.ws133{word-spacing:75.274181pt;}
.ws1cc{word-spacing:118.172062pt;}
.ws135{word-spacing:120.944372pt;}
.ws1d9{word-spacing:133.043639pt;}
.ws1d0{word-spacing:165.557355pt;}
.ws134{word-spacing:168.719740pt;}
.ws142{word-spacing:309.910705pt;}
._0{margin-left:-6.885679pt;}
._4{margin-left:-4.788291pt;}
._2{margin-left:-3.824674pt;}
._1{margin-left:-2.677242pt;}
._3{margin-left:-0.956171pt;}
._42{width:1.423577pt;}
._1c{width:3.888265pt;}
._1d{width:7.385227pt;}
._2f{width:11.113298pt;}
._f{width:12.137981pt;}
._20{width:13.531604pt;}
._8{width:15.091384pt;}
._16{width:16.246237pt;}
._d{width:17.481332pt;}
._17{width:18.761337pt;}
._11{width:20.033244pt;}
._a{width:20.935950pt;}
._19{width:22.162606pt;}
._e{width:23.539799pt;}
._14{width:24.495355pt;}
._6{width:25.882687pt;}
._b{width:27.205209pt;}
._c{width:28.853876pt;}
._7{width:29.756187pt;}
._12{width:31.422714pt;}
._10{width:33.262922pt;}
._1b{width:34.612478pt;}
._9{width:35.817317pt;}
._48{width:38.417494pt;}
._18{width:40.066559pt;}
._1a{width:41.290665pt;}
._13{width:42.316716pt;}
._1f{width:44.315276pt;}
._3d{width:45.590446pt;}
._25{width:48.924476pt;}
._49{width:53.134316pt;}
._2a{width:54.087551pt;}
._24{width:56.815303pt;}
._15{width:59.746176pt;}
._5{width:63.120247pt;}
._39{width:67.581885pt;}
._3b{width:68.820626pt;}
._41{width:71.878734pt;}
._40{width:74.240272pt;}
._3a{width:76.373636pt;}
._23{width:78.525125pt;}
._2e{width:81.059831pt;}
._32{width:82.398880pt;}
._2c{width:84.599703pt;}
._29{width:87.287055pt;}
._30{width:90.195447pt;}
._2b{width:91.199304pt;}
._33{width:97.080600pt;}
._22{width:102.388974pt;}
._26{width:112.909598pt;}
._34{width:120.992195pt;}
._31{width:127.066697pt;}
._3f{width:128.883978pt;}
._27{width:132.479970pt;}
._2d{width:142.177869pt;}
._28{width:153.656391pt;}
._3c{width:173.136427pt;}
._35{width:195.119098pt;}
._3e{width:198.131002pt;}
._21{width:217.028484pt;}
._38{width:250.410011pt;}
._47{width:364.310062pt;}
._43{width:424.167777pt;}
._37{width:441.024461pt;}
._36{width:463.364283pt;}
._44{width:475.139936pt;}
._45{width:569.819629pt;}
._46{width:579.933222pt;}
._1e{width:1538.509575pt;}
.fsf{font-size:21.025051pt;}
.fse{font-size:24.529226pt;}
.fsc{font-size:31.537577pt;}
.fs4{font-size:31.882127pt;}
.fs13{font-size:32.329936pt;}
.fs12{font-size:32.397300pt;}
.fs6{font-size:37.195460pt;}
.fsd{font-size:39.421971pt;}
.fs8{font-size:42.050102pt;}
.fs2{font-size:42.509325pt;}
.fs14{font-size:43.189039pt;}
.fsb{font-size:43.802190pt;}
.fsa{font-size:47.306365pt;}
.fs10{font-size:47.823191pt;}
.fs5{font-size:53.133867pt;}
.fs3{font-size:53.136523pt;}
.fs7{font-size:53.336000pt;}
.fs11{font-size:54.556861pt;}
.fs1{font-size:63.764255pt;}
.fs0{font-size:76.516892pt;}
.fs9{font-size:82.348117pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:0.870710pt;}
.yee{bottom:2.062770pt;}
.yef{bottom:2.921479pt;}
.yf3{bottom:5.865627pt;}
.yd8{bottom:5.866960pt;}
.ye2{bottom:6.334983pt;}
.y1ff{bottom:11.997933pt;}
.yf1{bottom:13.873494pt;}
.ye0{bottom:15.737507pt;}
.yda{bottom:17.722219pt;}
.y200{bottom:25.906629pt;}
.ydf{bottom:28.008427pt;}
.yd9{bottom:28.132073pt;}
.yf0{bottom:29.265463pt;}
.yde{bottom:40.279347pt;}
.y60{bottom:46.968000pt;}
.y201{bottom:47.238362pt;}
.yea{bottom:49.688884pt;}
.yd4{bottom:54.738737pt;}
.ye4{bottom:55.567312pt;}
.yd5{bottom:59.996333pt;}
.yd2{bottom:60.329683pt;}
.yec{bottom:60.331016pt;}
.yd3{bottom:69.354134pt;}
.yeb{bottom:75.722986pt;}
.y19e{bottom:78.644189pt;}
.y17a{bottom:78.644323pt;}
.y1c8{bottom:78.644616pt;}
.y25d{bottom:78.644723pt;}
.y98{bottom:78.644989pt;}
.y145{bottom:78.645283pt;}
.y121{bottom:78.645989pt;}
.y1fd{bottom:78.646456pt;}
.y5f{bottom:78.646669pt;}
.yf8{bottom:79.494375pt;}
.ye9{bottom:81.922763pt;}
.y30{bottom:82.142978pt;}
.ycc{bottom:82.395977pt;}
.yd0{bottom:86.969682pt;}
.y144{bottom:94.352841pt;}
.y19d{bottom:94.850200pt;}
.y179{bottom:94.851933pt;}
.y1c7{bottom:94.852226pt;}
.y25c{bottom:94.852333pt;}
.y97{bottom:94.852600pt;}
.y5e{bottom:94.852680pt;}
.y120{bottom:94.853600pt;}
.y1fc{bottom:94.854066pt;}
.y2f{bottom:95.294155pt;}
.ye6{bottom:97.112189pt;}
.ycb{bottom:102.625388pt;}
.yf7{bottom:103.873193pt;}
.y22b{bottom:104.139064pt;}
.y2e{bottom:108.445333pt;}
.ye8{bottom:109.130390pt;}
.y19c{bottom:111.056210pt;}
.y1c6{bottom:111.058237pt;}
.y178{bottom:111.058477pt;}
.y96{bottom:111.058610pt;}
.y5d{bottom:111.058690pt;}
.y25b{bottom:111.058877pt;}
.y11f{bottom:111.059677pt;}
.y1fb{bottom:111.060077pt;}
.y143{bottom:117.678941pt;}
.yca{bottom:118.831399pt;}
.y22a{bottom:120.346141pt;}
.y2d{bottom:121.597030pt;}
.ye5{bottom:121.684217pt;}
.ye7{bottom:124.522359pt;}
.y19b{bottom:127.263820pt;}
.y1c5{bottom:127.265847pt;}
.y177{bottom:127.266087pt;}
.y95{bottom:127.266220pt;}
.y5c{bottom:127.266300pt;}
.y25a{bottom:127.266487pt;}
.y11e{bottom:127.267287pt;}
.y1fa{bottom:127.267687pt;}
.y142{bottom:133.884951pt;}
.y2c{bottom:134.748208pt;}
.yc9{bottom:135.039009pt;}
.y229{bottom:136.552151pt;}
.y207{bottom:141.187059pt;}
.ye3{bottom:142.983149pt;}
.y19a{bottom:143.469830pt;}
.y1c4{bottom:143.471857pt;}
.y94{bottom:143.472231pt;}
.y5b{bottom:143.472311pt;}
.y259{bottom:143.472497pt;}
.y11d{bottom:143.473297pt;}
.y1f9{bottom:143.473697pt;}
.y176{bottom:144.437212pt;}
.y2b{bottom:147.899385pt;}
.y141{bottom:150.092562pt;}
.yc8{bottom:151.245019pt;}
.y228{bottom:152.758162pt;}
.y199{bottom:159.677441pt;}
.y1f8{bottom:159.679708pt;}
.y93{bottom:159.679841pt;}
.y5a{bottom:159.679921pt;}
.y258{bottom:159.680108pt;}
.y11c{bottom:159.680908pt;}
.y175{bottom:160.643756pt;}
.yd6{bottom:163.281497pt;}
.ycf{bottom:163.534843pt;}
.y140{bottom:166.298572pt;}
.yc7{bottom:167.452630pt;}
.y1c3{bottom:168.203760pt;}
.y227{bottom:168.965772pt;}
.y198{bottom:175.883451pt;}
.y92{bottom:175.885851pt;}
.y59{bottom:175.885931pt;}
.y1f7{bottom:175.887318pt;}
.y174{bottom:176.849766pt;}
.y13f{bottom:182.506182pt;}
.yc6{bottom:183.658640pt;}
.y226{bottom:185.171782pt;}
.y11b{bottom:186.493182pt;}
.y257{bottom:187.909119pt;}
.y197{bottom:192.089461pt;}
.y219{bottom:192.091861pt;}
.y58{bottom:192.091941pt;}
.y1f6{bottom:192.093328pt;}
.y91{bottom:192.762695pt;}
.y173{bottom:193.057376pt;}
.y2a{bottom:194.040359pt;}
.y13e{bottom:198.712726pt;}
.yc5{bottom:199.866250pt;}
.y225{bottom:201.379392pt;}
.y256{bottom:204.116729pt;}
.y1c2{bottom:206.939030pt;}
.y196{bottom:208.297072pt;}
.y218{bottom:208.299472pt;}
.y57{bottom:208.299552pt;}
.y90{bottom:208.970305pt;}
.y172{bottom:209.263387pt;}
.y11a{bottom:213.304922pt;}
.y13d{bottom:214.919269pt;}
.y1f5{bottom:216.270537pt;}
.y29{bottom:217.408007pt;}
.y224{bottom:217.585403pt;}
.y255{bottom:220.322740pt;}
.y1c1{bottom:223.145041pt;}
.y195{bottom:224.503082pt;}
.y56{bottom:224.505562pt;}
.y8f{bottom:225.176316pt;}
.y171{bottom:225.470997pt;}
.y217{bottom:226.271170pt;}
.yc4{bottom:226.686391pt;}
.y119{bottom:229.510932pt;}
.y28{bottom:233.614017pt;}
.y223{bottom:233.793013pt;}
.y254{bottom:236.529283pt;}
.y1c0{bottom:239.352651pt;}
.y13c{bottom:240.564285pt;}
.y194{bottom:240.710159pt;}
.y55{bottom:240.713172pt;}
.y8e{bottom:241.383926pt;}
.y170{bottom:241.677007pt;}
.y216{bottom:242.478781pt;}
.yc3{bottom:242.892401pt;}
.y118{bottom:245.718543pt;}
.y27{bottom:249.821094pt;}
.y222{bottom:249.999023pt;}
.y1bf{bottom:255.559195pt;}
.y193{bottom:256.917236pt;}
.y54{bottom:256.919183pt;}
.y8d{bottom:257.589936pt;}
.y16f{bottom:257.884618pt;}
.y215{bottom:258.684791pt;}
.yc2{bottom:259.098412pt;}
.y1f4{bottom:261.551468pt;}
.y117{bottom:261.924553pt;}
.y253{bottom:264.759895pt;}
.y26{bottom:266.028171pt;}
.y221{bottom:266.205034pt;}
.y1be{bottom:271.765738pt;}
.y192{bottom:273.124313pt;}
.y53{bottom:273.126793pt;}
.y8c{bottom:273.795946pt;}
.y214{bottom:274.892401pt;}
.yc1{bottom:275.306022pt;}
.y13b{bottom:275.964988pt;}
.y1f3{bottom:277.758011pt;}
.y116{bottom:278.132163pt;}
.y252{bottom:280.967505pt;}
.y25{bottom:282.235248pt;}
.y220{bottom:282.412644pt;}
.y16e{bottom:283.893785pt;}
.y1bd{bottom:287.972282pt;}
.y191{bottom:289.330323pt;}
.y52{bottom:289.333337pt;}
.y8b{bottom:290.003557pt;}
.y213{bottom:291.098412pt;}
.y13a{bottom:292.170998pt;}
.y1f2{bottom:293.964555pt;}
.y115{bottom:294.338174pt;}
.y251{bottom:297.173515pt;}
.y24{bottom:298.442325pt;}
.y21f{bottom:298.618654pt;}
.yc0{bottom:302.132830pt;}
.y1bc{bottom:304.178826pt;}
.y190{bottom:305.536333pt;}
.y8a{bottom:306.209567pt;}
.y212{bottom:307.304422pt;}
.y51{bottom:308.035338pt;}
.y139{bottom:308.378609pt;}
.y1f1{bottom:310.171098pt;}
.y250{bottom:313.379526pt;}
.y23{bottom:314.649402pt;}
.y21e{bottom:314.826265pt;}
.ybf{bottom:318.339907pt;}
.y114{bottom:318.515382pt;}
.y16d{bottom:320.351874pt;}
.y1bb{bottom:320.386436pt;}
.y18f{bottom:321.743944pt;}
.y89{bottom:322.417177pt;}
.y211{bottom:323.512032pt;}
.y50{bottom:324.242949pt;}
.y138{bottom:324.584619pt;}
.y1f0{bottom:326.377642pt;}
.y24f{bottom:329.587136pt;}
.y22{bottom:330.856479pt;}
.y21d{bottom:331.032808pt;}
.y283{bottom:333.182116pt;}
.ybe{bottom:334.546450pt;}
.y16c{bottom:336.557884pt;}
.y1ba{bottom:336.592446pt;}
.y18e{bottom:337.950487pt;}
.y88{bottom:338.623188pt;}
.y210{bottom:339.718042pt;}
.y4f{bottom:340.448959pt;}
.y1ef{bottom:342.584186pt;}
.y24e{bottom:345.793146pt;}
.y21{bottom:347.062490pt;}
.y21c{bottom:347.239352pt;}
.y113{bottom:349.185182pt;}
.y282{bottom:349.389726pt;}
.y137{bottom:350.229635pt;}
.y16b{bottom:352.763895pt;}
.y1b9{bottom:352.798456pt;}
.y18d{bottom:354.158098pt;}
.y87{bottom:354.829198pt;}
.y20f{bottom:355.925653pt;}
.y4e{bottom:356.656569pt;}
.y1ee{bottom:358.791263pt;}
.ybd{bottom:361.372725pt;}
.y24d{bottom:362.000756pt;}
.y20{bottom:363.268500pt;}
.y21b{bottom:363.445895pt;}
.y112{bottom:365.391193pt;}
.y16a{bottom:368.971505pt;}
.y1b8{bottom:369.006067pt;}
.y86{bottom:371.036808pt;}
.y20e{bottom:372.131663pt;}
.y4d{bottom:372.862580pt;}
.y281{bottom:376.223334pt;}
.y18c{bottom:376.696158pt;}
.ybc{bottom:377.580335pt;}
.y21a{bottom:379.652439pt;}
.y111{bottom:381.598803pt;}
.y169{bottom:385.177515pt;}
.y1b7{bottom:385.212077pt;}
.y1ed{bottom:387.144680pt;}
.y85{bottom:387.242819pt;}
.y1f{bottom:388.249482pt;}
.y20d{bottom:388.339273pt;}
.y4c{bottom:389.068590pt;}
.y24c{bottom:390.230301pt;}
.y136{bottom:391.607703pt;}
.y280{bottom:392.430411pt;}
.y18b{bottom:392.902701pt;}
.ybb{bottom:393.786346pt;}
.y110{bottom:397.804813pt;}
.y1ec{bottom:401.096044pt;}
.y1b6{bottom:401.419687pt;}
.y168{bottom:402.349174pt;}
.y84{bottom:403.450429pt;}
.y20c{bottom:404.545284pt;}
.y4b{bottom:405.276200pt;}
.y24b{bottom:406.437912pt;}
.y135{bottom:407.813714pt;}
.y27f{bottom:408.636955pt;}
.y18a{bottom:409.110312pt;}
.y10f{bottom:414.010824pt;}
.y1eb{bottom:415.047409pt;}
.y1b5{bottom:417.917846pt;}
.y167{bottom:418.556784pt;}
.y83{bottom:419.656439pt;}
.yba{bottom:420.614220pt;}
.y4a{bottom:421.482210pt;}
.y24a{bottom:422.643922pt;}
.y134{bottom:424.019724pt;}
.y189{bottom:425.316855pt;}
.y1e{bottom:427.705055pt;}
.y1ea{bottom:428.997439pt;}
.y10e{bottom:430.218434pt;}
.y1b4{bottom:434.123856pt;}
.y166{bottom:434.762794pt;}
.y27e{bottom:435.471630pt;}
.y82{bottom:436.533283pt;}
.yb9{bottom:436.820764pt;}
.y49{bottom:437.689821pt;}
.y249{bottom:438.849932pt;}
.y133{bottom:440.227334pt;}
.y1e9{bottom:443.480830pt;}
.y1d{bottom:443.911065pt;}
.y10d{bottom:446.424444pt;}
.y20b{bottom:447.274487pt;}
.y188{bottom:450.003023pt;}
.y1b3{bottom:450.331466pt;}
.y165{bottom:450.968805pt;}
.y27d{bottom:451.677640pt;}
.y81{bottom:452.740893pt;}
.yb8{bottom:453.026774pt;}
.y48{bottom:453.895831pt;}
.y248{bottom:455.057542pt;}
.y132{bottom:456.433345pt;}
.y1e8{bottom:456.764161pt;}
.y1c{bottom:460.118675pt;}
.y10c{bottom:462.632054pt;}
.y20a{bottom:463.480497pt;}
.y187{bottom:466.209567pt;}
.y1b2{bottom:466.537476pt;}
.y164{bottom:467.176415pt;}
.y27c{bottom:467.883650pt;}
.y80{bottom:468.946904pt;}
.yb7{bottom:469.234385pt;}
.y47{bottom:470.102908pt;}
.y131{bottom:472.640955pt;}
.y1b{bottom:476.324686pt;}
.y10b{bottom:478.838598pt;}
.y209{bottom:479.688107pt;}
.y1b1{bottom:482.745087pt;}
.y247{bottom:483.288154pt;}
.y163{bottom:483.382425pt;}
.y27b{bottom:484.091261pt;}
.y7f{bottom:485.154514pt;}
.y46{bottom:486.309985pt;}
.y130{bottom:488.846965pt;}
.y186{bottom:490.895734pt;}
.y1a{bottom:492.532296pt;}
.y10a{bottom:495.045142pt;}
.y208{bottom:495.894117pt;}
.yb6{bottom:496.054525pt;}
.y1b0{bottom:498.951097pt;}
.y246{bottom:499.494164pt;}
.y1e7{bottom:499.540966pt;}
.y162{bottom:499.590036pt;}
.y27a{bottom:500.297271pt;}
.y7e{bottom:501.360524pt;}
.y45{bottom:502.516529pt;}
.y12f{bottom:505.052975pt;}
.y185{bottom:507.103345pt;}
.y19{bottom:508.738306pt;}
.y109{bottom:511.251685pt;}
.yb5{bottom:512.260536pt;}
.y245{bottom:515.700708pt;}
.y1e6{bottom:515.747510pt;}
.y161{bottom:515.796046pt;}
.y279{bottom:516.504881pt;}
.y7d{bottom:517.568134pt;}
.y44{bottom:521.220130pt;}
.y12e{bottom:521.260586pt;}
.y184{bottom:523.309888pt;}
.y1af{bottom:523.683000pt;}
.y18{bottom:524.945917pt;}
.y206{bottom:525.384925pt;}
.y108{bottom:527.458229pt;}
.yb4{bottom:528.468146pt;}
.y244{bottom:531.907785pt;}
.y1e5{bottom:531.954587pt;}
.y160{bottom:532.002056pt;}
.y7c{bottom:533.774678pt;}
.y43{bottom:537.426141pt;}
.y183{bottom:539.517499pt;}
.y17{bottom:541.151927pt;}
.y278{bottom:543.337956pt;}
.y107{bottom:543.664773pt;}
.yb3{bottom:544.674156pt;}
.y12d{bottom:546.905601pt;}
.y243{bottom:548.114328pt;}
.y15f{bottom:548.209666pt;}
.y7b{bottom:549.981222pt;}
.y42{bottom:553.632151pt;}
.y182{bottom:555.724042pt;}
.y1ae{bottom:556.440371pt;}
.y16{bottom:557.357937pt;}
.y277{bottom:559.545567pt;}
.y106{bottom:559.871316pt;}
.y1e4{bottom:560.307631pt;}
.yb2{bottom:560.881767pt;}
.y7a{bottom:566.188832pt;}
.y41{bottom:569.839761pt;}
.y1ad{bottom:572.646915pt;}
.y15{bottom:573.565548pt;}
.y1e3{bottom:573.592149pt;}
.y15e{bottom:574.219367pt;}
.y276{bottom:575.751577pt;}
.y105{bottom:576.078927pt;}
.y242{bottom:576.344940pt;}
.yb1{bottom:577.087777pt;}
.y181{bottom:578.262102pt;}
.y12c{bottom:582.304704pt;}
.y79{bottom:582.394842pt;}
.y40{bottom:586.045771pt;}
.y1e2{bottom:586.877186pt;}
.y1ac{bottom:588.853459pt;}
.y14{bottom:589.771558pt;}
.y275{bottom:591.957587pt;}
.y104{bottom:592.284937pt;}
.y241{bottom:592.550950pt;}
.yb0{bottom:593.293787pt;}
.y180{bottom:594.469713pt;}
.y12b{bottom:598.512315pt;}
.y1e1{bottom:600.160664pt;}
.y3f{bottom:602.253382pt;}
.y1ab{bottom:605.061069pt;}
.y13{bottom:605.979168pt;}
.y78{bottom:607.846648pt;}
.y274{bottom:608.165197pt;}
.y103{bottom:608.490947pt;}
.y240{bottom:608.758560pt;}
.yaf{bottom:609.501398pt;}
.y17f{bottom:610.675723pt;}
.y15d{bottom:610.676923pt;}
.y1e0{bottom:613.976021pt;}
.y12a{bottom:614.718392pt;}
.y3e{bottom:618.459392pt;}
.y1aa{bottom:621.267079pt;}
.y12{bottom:622.185712pt;}
.y102{bottom:624.698557pt;}
.y23f{bottom:624.964571pt;}
.yae{bottom:625.707408pt;}
.y17e{bottom:626.881733pt;}
.y15c{bottom:626.882933pt;}
.y1df{bottom:627.260685pt;}
.y129{bottom:630.925469pt;}
.y3d{bottom:634.667002pt;}
.y273{bottom:634.998806pt;}
.y1a9{bottom:637.474689pt;}
.y11{bottom:638.392255pt;}
.y101{bottom:640.904568pt;}
.y23e{bottom:641.172181pt;}
.yad{bottom:641.915018pt;}
.y17d{bottom:643.089344pt;}
.y15b{bottom:643.090544pt;}
.y128{bottom:647.132546pt;}
.y77{bottom:648.663222pt;}
.y3c{bottom:650.873013pt;}
.y272{bottom:651.206416pt;}
.y1a8{bottom:653.680700pt;}
.y10{bottom:654.598799pt;}
.y1de{bottom:655.001032pt;}
.yac{bottom:658.121028pt;}
.y17c{bottom:659.295887pt;}
.y15a{bottom:659.296554pt;}
.y127{bottom:663.338556pt;}
.y76{bottom:664.870833pt;}
.y100{bottom:665.081776pt;}
.y3b{bottom:667.079023pt;}
.y271{bottom:667.412960pt;}
.y23d{bottom:669.401726pt;}
.y1a7{bottom:669.888310pt;}
.yf{bottom:670.805343pt;}
.y1dd{bottom:671.207043pt;}
.yab{bottom:674.327039pt;}
.y17b{bottom:675.503497pt;}
.y159{bottom:675.504164pt;}
.y126{bottom:679.545633pt;}
.y75{bottom:681.076843pt;}
.y3a{bottom:683.286100pt;}
.y270{bottom:683.620570pt;}
.y23c{bottom:685.609336pt;}
.y1a6{bottom:686.094320pt;}
.ye{bottom:687.012953pt;}
.y1dc{bottom:687.414653pt;}
.yaa{bottom:690.534649pt;}
.y205{bottom:695.679973pt;}
.yff{bottom:695.751043pt;}
.y125{bottom:695.751643pt;}
.y74{bottom:697.284453pt;}
.y39{bottom:699.493177pt;}
.y26f{bottom:699.826580pt;}
.y23b{bottom:701.815346pt;}
.y1a5{bottom:702.300331pt;}
.yd{bottom:703.218963pt;}
.y1db{bottom:703.620663pt;}
.ya9{bottom:706.740659pt;}
.y204{bottom:711.887050pt;}
.yfe{bottom:711.957587pt;}
.y124{bottom:711.957653pt;}
.y73{bottom:713.490463pt;}
.y38{bottom:715.700254pt;}
.y1a4{bottom:717.285066pt;}
.y1a3{bottom:717.285120pt;}
.y23a{bottom:718.021357pt;}
.y158{bottom:718.231767pt;}
.yc{bottom:719.426574pt;}
.y1da{bottom:719.828274pt;}
.ya8{bottom:722.948270pt;}
.y26e{bottom:726.661255pt;}
.y203{bottom:728.093594pt;}
.yfd{bottom:728.164130pt;}
.y123{bottom:728.165264pt;}
.y72{bottom:729.697007pt;}
.y37{bottom:731.906264pt;}
.y239{bottom:734.228967pt;}
.y157{bottom:734.439377pt;}
.yb{bottom:735.632584pt;}
.y1a2{bottom:736.016790pt;}
.y1d9{bottom:736.034284pt;}
.ya7{bottom:739.154280pt;}
.y26d{bottom:742.867266pt;}
.y202{bottom:744.301204pt;}
.yfc{bottom:744.370674pt;}
.y122{bottom:744.371274pt;}
.y71{bottom:745.904084pt;}
.y36{bottom:748.112274pt;}
.y156{bottom:750.645388pt;}
.ya{bottom:751.838594pt;}
.y1d8{bottom:752.240294pt;}
.y26c{bottom:759.073276pt;}
.y70{bottom:762.110628pt;}
.y238{bottom:762.458512pt;}
.ya6{bottom:763.331489pt;}
.y1a1{bottom:766.575651pt;}
.y35{bottom:766.815876pt;}
.y155{bottom:766.852998pt;}
.y9{bottom:768.046204pt;}
.y1d7{bottom:768.447904pt;}
.y1fe{bottom:773.792012pt;}
.y26b{bottom:775.280886pt;}
.y6f{bottom:778.317171pt;}
.y237{bottom:778.665589pt;}
.y1a0{bottom:782.783261pt;}
.y34{bottom:783.021886pt;}
.y8{bottom:784.252215pt;}
.y1d6{bottom:784.653915pt;}
.yfb{bottom:787.099344pt;}
.y26a{bottom:791.486896pt;}
.ya5{bottom:794.479979pt;}
.y6e{bottom:794.523715pt;}
.y236{bottom:794.871599pt;}
.y154{bottom:795.134039pt;}
.y19f{bottom:798.989271pt;}
.y33{bottom:799.229497pt;}
.y7{bottom:800.459825pt;}
.y1d5{bottom:800.861525pt;}
.yfa{bottom:803.305354pt;}
.y153{bottom:808.419450pt;}
.ya4{bottom:810.687590pt;}
.y6d{bottom:810.731325pt;}
.y235{bottom:811.079209pt;}
.y32{bottom:815.435507pt;}
.y1d4{bottom:817.067535pt;}
.y269{bottom:818.321571pt;}
.yf9{bottom:819.512964pt;}
.y152{bottom:821.702034pt;}
.ya3{bottom:826.893600pt;}
.y6c{bottom:826.937335pt;}
.y6{bottom:831.641651pt;}
.y31{bottom:831.643117pt;}
.y1d3{bottom:833.275146pt;}
.y268{bottom:834.528115pt;}
.y151{bottom:834.987071pt;}
.y234{bottom:839.308754pt;}
.ya2{bottom:843.099610pt;}
.y6b{bottom:843.143346pt;}
.y150{bottom:848.802429pt;}
.yce{bottom:849.003772pt;}
.y1d2{bottom:849.481689pt;}
.y267{bottom:850.735192pt;}
.y233{bottom:855.515831pt;}
.ya1{bottom:859.307221pt;}
.y6a{bottom:859.350956pt;}
.y14f{bottom:862.087093pt;}
.yf4{bottom:862.520448pt;}
.ye1{bottom:862.924468pt;}
.y1d1{bottom:865.688233pt;}
.y266{bottom:866.941736pt;}
.y232{bottom:871.722375pt;}
.ya0{bottom:875.513231pt;}
.y69{bottom:875.556966pt;}
.yed{bottom:881.692073pt;}
.y1d0{bottom:881.895843pt;}
.ydb{bottom:881.908084pt;}
.y231{bottom:887.929452pt;}
.y14e{bottom:890.733458pt;}
.y9f{bottom:891.720308pt;}
.y68{bottom:891.764577pt;}
.y265{bottom:893.776411pt;}
.y5{bottom:896.143356pt;}
.y1cf{bottom:898.101854pt;}
.yd1{bottom:901.086376pt;}
.y230{bottom:904.135995pt;}
.ydd{bottom:906.067958pt;}
.y14d{bottom:906.939469pt;}
.y9e{bottom:907.927385pt;}
.y67{bottom:907.970587pt;}
.y264{bottom:909.982421pt;}
.yf2{bottom:910.037490pt;}
.y4{bottom:914.740112pt;}
.y1ce{bottom:922.279062pt;}
.y14c{bottom:923.147079pt;}
.y9d{bottom:924.134462pt;}
.y66{bottom:924.176597pt;}
.y263{bottom:926.188431pt;}
.y3{bottom:927.554233pt;}
.y22f{bottom:932.366607pt;}
.y14b{bottom:939.353623pt;}
.y9c{bottom:940.340472pt;}
.y65{bottom:940.384208pt;}
.y262{bottom:942.396041pt;}
.y22e{bottom:948.572617pt;}
.y1cd{bottom:953.023266pt;}
.y9b{bottom:956.546482pt;}
.yd7{bottom:957.761210pt;}
.y14a{bottom:967.637037pt;}
.y261{bottom:969.229116pt;}
.y1cc{bottom:969.229276pt;}
.y64{bottom:969.229916pt;}
.y2{bottom:975.340489pt;}
.y22d{bottom:976.803762pt;}
.y9a{bottom:980.723691pt;}
.y149{bottom:980.919994pt;}
.yf6{bottom:984.093193pt;}
.y260{bottom:985.436727pt;}
.y1cb{bottom:985.436887pt;}
.y63{bottom:985.437527pt;}
.y22c{bottom:993.009772pt;}
.y148{bottom:994.204512pt;}
.y1{bottom:996.595151pt;}
.y1ca{bottom:1001.642897pt;}
.y25f{bottom:1001.643270pt;}
.y62{bottom:1001.643537pt;}
.yf5{bottom:1006.462311pt;}
.y147{bottom:1007.489029pt;}
.y1c9{bottom:1017.848907pt;}
.y61{bottom:1017.849547pt;}
.y25e{bottom:1017.850347pt;}
.y99{bottom:1017.850614pt;}
.y146{bottom:1021.304387pt;}
.ycd{bottom:1062.759793pt;}
.h24{height:2.125461pt;}
.h17{height:11.388596pt;}
.h1d{height:15.111756pt;}
.h1c{height:17.031523pt;}
.h15{height:18.766005pt;}
.h19{height:20.127006pt;}
.h1a{height:21.897673pt;}
.h8{height:21.934904pt;}
.h2a{height:22.081347pt;}
.h29{height:22.127356pt;}
.h5{height:28.693795pt;}
.h10{height:29.196897pt;}
.h9{height:29.246416pt;}
.ha{height:29.416453pt;}
.h14{height:30.413435pt;}
.h2c{height:31.442802pt;}
.h13{height:32.846509pt;}
.h21{height:32.902355pt;}
.h20{height:33.093648pt;}
.h23{height:33.095142pt;}
.h22{height:33.189295pt;}
.h26{height:36.451655pt;}
.h7{height:36.557928pt;}
.he{height:36.695168pt;}
.h6{height:36.770474pt;}
.h28{height:37.262336pt;}
.h1e{height:37.461249pt;}
.hd{height:39.852393pt;}
.h1f{height:44.356144pt;}
.hc{height:44.870587pt;}
.h2d{height:44.876881pt;}
.hb{height:47.076606pt;}
.h4{height:51.830365pt;}
.h3{height:52.949689pt;}
.h11{height:54.843846pt;}
.h16{height:54.885342pt;}
.h1b{height:63.344738pt;}
.h18{height:63.938130pt;}
.h25{height:77.051927pt;}
.h12{height:80.574295pt;}
.h2b{height:151.640915pt;}
.hf{height:182.135773pt;}
.h27{height:257.344867pt;}
.h2{height:1096.094793pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:20.127006pt;}
.w4{width:20.127540pt;}
.w8{width:25.146591pt;}
.w6{width:25.759155pt;}
.wb{width:31.731320pt;}
.w7{width:67.544044pt;}
.wa{width:89.574745pt;}
.w5{width:89.575279pt;}
.w9{width:173.772688pt;}
.wd{width:585.097253pt;}
.w2{width:650.075169pt;}
.wc{width:656.607229pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:3.642849pt;}
.x2c{left:5.210687pt;}
.x18{left:6.333650pt;}
.x41{left:11.564578pt;}
.x22{left:13.286558pt;}
.x23{left:19.199880pt;}
.x1e{left:33.529676pt;}
.x2a{left:34.725736pt;}
.x25{left:55.686251pt;}
.x3f{left:63.764255pt;}
.x42{left:66.970148pt;}
.x45{left:71.101023pt;}
.x7{left:73.306933pt;}
.x2d{left:85.089482pt;}
.x40{left:86.158708pt;}
.x9{left:87.785990pt;}
.xe{left:89.911030pt;}
.x46{left:93.233062pt;}
.x33{left:95.261764pt;}
.x1{left:97.577013pt;}
.x2f{left:99.690185pt;}
.xf{left:106.517060pt;}
.x35{left:107.614261pt;}
.x30{left:111.975199pt;}
.x5{left:115.302232pt;}
.x3{left:124.571696pt;}
.xa{left:130.002634pt;}
.x31{left:157.534544pt;}
.x4{left:163.795924pt;}
.x8{left:166.371452pt;}
.x44{left:174.654067pt;}
.x6{left:192.475424pt;}
.x34{left:197.080335pt;}
.x2{left:202.795340pt;}
.x17{left:209.199794pt;}
.x1f{left:216.858576pt;}
.x19{left:236.994517pt;}
.x16{left:255.596513pt;}
.x1a{left:264.790573pt;}
.x32{left:266.814674pt;}
.x1b{left:291.818591pt;}
.x20{left:354.032368pt;}
.x14{left:379.329333pt;}
.x1c{left:390.124572pt;}
.xd{left:394.446667pt;}
.x24{left:401.784089pt;}
.x47{left:404.634232pt;}
.xb{left:413.480674pt;}
.x39{left:417.290384pt;}
.x38{left:425.031918pt;}
.x13{left:427.961398pt;}
.xc{left:429.421071pt;}
.x3a{left:430.961335pt;}
.x48{left:433.407537pt;}
.x11{left:435.399997pt;}
.x3d{left:440.839375pt;}
.x37{left:444.076870pt;}
.x1d{left:445.296931pt;}
.x12{left:446.691188pt;}
.x3b{left:448.063790pt;}
.x3e{left:456.674834pt;}
.x27{left:471.774788pt;}
.x10{left:504.493358pt;}
.x28{left:507.050418pt;}
.x2e{left:510.769992pt;}
.x43{left:514.463323pt;}
.x29{left:545.689951pt;}
.x26{left:550.338049pt;}
.x2b{left:552.934045pt;}
.x15{left:562.198509pt;}
.x3c{left:584.266546pt;}
.x36{left:590.845542pt;}
}




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