
    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_93e6203ea224f4c3aebc459e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;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_615a3e114fb9c1d9a2f296ff.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_a310c552a64a919f400cdcc2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402832;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_eb85c611df6e3358ec426052.woff')format("woff");}.ff4{font-family:ff4;line-height:1.230957;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_caad7aeb7dc6648ffe61549d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_4a7cd12d2ac025af3032ef75.woff')format("woff");}.ff6{font-family:ff6;line-height:1.041992;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_59597ad66f238a05c760ab8e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_758493b52705b8f96d08ed5d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.101562;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_109a32cc3073a6476b63fb96.woff')format("woff");}.ff9{font-family:ff9;line-height:1.066406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v4{vertical-align:-10.915800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.977000px;}
.v1{vertical-align:16.928400px;}
.ls14{letter-spacing:-7.371000px;}
.lsa6{letter-spacing:-6.900000px;}
.ls11d{letter-spacing:-6.003000px;}
.ls131{letter-spacing:-5.670000px;}
.ls11c{letter-spacing:-5.520000px;}
.lsa3{letter-spacing:-5.244000px;}
.ls89{letter-spacing:-5.037000px;}
.lsb1{letter-spacing:-4.968000px;}
.lsa7{letter-spacing:-4.830000px;}
.ls166{letter-spacing:-4.680000px;}
.lscf{letter-spacing:-4.416000px;}
.ls164{letter-spacing:-4.320000px;}
.ls138{letter-spacing:-4.221000px;}
.ls8c{letter-spacing:-4.209000px;}
.ls22{letter-spacing:-4.071000px;}
.ls113{letter-spacing:-3.864000px;}
.ls34{letter-spacing:-3.795000px;}
.lse9{letter-spacing:-3.657000px;}
.ls6d{letter-spacing:-3.588000px;}
.ls94{letter-spacing:-3.519000px;}
.lsfc{letter-spacing:-3.450000px;}
.ls9b{letter-spacing:-3.186000px;}
.lsf9{letter-spacing:-3.036000px;}
.ls13c{letter-spacing:-2.961000px;}
.ls90{letter-spacing:-2.898000px;}
.ls108{letter-spacing:-2.862000px;}
.ls32{letter-spacing:-2.760000px;}
.ls155{letter-spacing:-2.700000px;}
.ls79{letter-spacing:-2.691000px;}
.lsfb{letter-spacing:-2.622000px;}
.ls88{letter-spacing:-2.553000px;}
.ls152{letter-spacing:-2.520000px;}
.ls87{letter-spacing:-2.484000px;}
.ls144{letter-spacing:-2.475000px;}
.ls99{letter-spacing:-2.415000px;}
.lsde{letter-spacing:-2.346000px;}
.ls148{letter-spacing:-2.331000px;}
.ls54{letter-spacing:-2.277000px;}
.lsdc{letter-spacing:-2.208000px;}
.ls140{letter-spacing:-2.205000px;}
.ls98{letter-spacing:-2.139000px;}
.lsbb{letter-spacing:-2.070000px;}
.lsce{letter-spacing:-2.001000px;}
.ls73{letter-spacing:-1.932000px;}
.ls15e{letter-spacing:-1.920000px;}
.ls122{letter-spacing:-1.890000px;}
.ls77{letter-spacing:-1.863000px;}
.ls13f{letter-spacing:-1.827000px;}
.ls165{letter-spacing:-1.800000px;}
.lsbc{letter-spacing:-1.794000px;}
.ls70{letter-spacing:-1.725000px;}
.ls123{letter-spacing:-1.701000px;}
.ls2c{letter-spacing:-1.656000px;}
.ls13d{letter-spacing:-1.638000px;}
.ls5{letter-spacing:-1.620000px;}
.lsa2{letter-spacing:-1.587000px;}
.lscd{letter-spacing:-1.528626px;}
.ls8f{letter-spacing:-1.518000px;}
.ls2f{letter-spacing:-1.449000px;}
.ls125{letter-spacing:-1.386000px;}
.ls33{letter-spacing:-1.380000px;}
.ls141{letter-spacing:-1.323000px;}
.ls15f{letter-spacing:-1.320000px;}
.ls78{letter-spacing:-1.311000px;}
.ls146{letter-spacing:-1.260000px;}
.ls6b{letter-spacing:-1.242000px;}
.ls167{letter-spacing:-1.200000px;}
.ls71{letter-spacing:-1.173000px;}
.ls1{letter-spacing:-1.125000px;}
.ls74{letter-spacing:-1.104000px;}
.ls48{letter-spacing:-1.086129px;}
.ls135{letter-spacing:-1.071000px;}
.lsd3{letter-spacing:-1.070388px;}
.ls6f{letter-spacing:-1.035000px;}
.ls162{letter-spacing:-1.020000px;}
.ls132{letter-spacing:-1.008000px;}
.lsab{letter-spacing:-1.005675px;}
.ls39{letter-spacing:-0.972000px;}
.ls30{letter-spacing:-0.966000px;}
.ls13b{letter-spacing:-0.945000px;}
.ls41{letter-spacing:-0.925221px;}
.ls153{letter-spacing:-0.900000px;}
.ls2d{letter-spacing:-0.897000px;}
.ls130{letter-spacing:-0.882000px;}
.lsc5{letter-spacing:-0.864000px;}
.ls56{letter-spacing:-0.855000px;}
.ls31{letter-spacing:-0.828000px;}
.ls133{letter-spacing:-0.819000px;}
.ls157{letter-spacing:-0.780000px;}
.lsfd{letter-spacing:-0.764313px;}
.ls17{letter-spacing:-0.759000px;}
.ls147{letter-spacing:-0.756000px;}
.ls4e{letter-spacing:-0.724086px;}
.ls12f{letter-spacing:-0.693000px;}
.ls2b{letter-spacing:-0.690000px;}
.ls53{letter-spacing:-0.683859px;}
.ls40{letter-spacing:-0.675000px;}
.lsae{letter-spacing:-0.661122px;}
.ls38{letter-spacing:-0.648000px;}
.ls72{letter-spacing:-0.643632px;}
.ls126{letter-spacing:-0.630000px;}
.ls111{letter-spacing:-0.627000px;}
.ls21{letter-spacing:-0.621000px;}
.ls51{letter-spacing:-0.603405px;}
.ls4b{letter-spacing:-0.598158px;}
.ls145{letter-spacing:-0.567000px;}
.ls7b{letter-spacing:-0.552000px;}
.ls26{letter-spacing:-0.540000px;}
.ls127{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.486000px;}
.ls36{letter-spacing:-0.483000px;}
.lsf3{letter-spacing:-0.482724px;}
.ls151{letter-spacing:-0.480000px;}
.ls102{letter-spacing:-0.472230px;}
.ls55{letter-spacing:-0.442497px;}
.ls129{letter-spacing:-0.441000px;}
.ls7f{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.420000px;}
.ls4a{letter-spacing:-0.414000px;}
.ls59{letter-spacing:-0.409266px;}
.lsc4{letter-spacing:-0.378000px;}
.lsd0{letter-spacing:-0.362043px;}
.ls156{letter-spacing:-0.360000px;}
.ls58{letter-spacing:-0.346302px;}
.ls92{letter-spacing:-0.345000px;}
.ls4d{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.300000px;}
.lsf5{letter-spacing:-0.283338px;}
.lse8{letter-spacing:-0.281589px;}
.ls8e{letter-spacing:-0.276000px;}
.ls37{letter-spacing:-0.270000px;}
.ls136{letter-spacing:-0.252000px;}
.ls35{letter-spacing:-0.241362px;}
.lsa{letter-spacing:-0.240000px;}
.lsf1{letter-spacing:-0.225000px;}
.ls5a{letter-spacing:-0.220374px;}
.ls5c{letter-spacing:-0.216000px;}
.ls6a{letter-spacing:-0.207000px;}
.ls46{letter-spacing:-0.201135px;}
.ls13a{letter-spacing:-0.189000px;}
.ls13{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.162000px;}
.lsbe{letter-spacing:-0.160908px;}
.lsd4{letter-spacing:-0.157410px;}
.ls93{letter-spacing:-0.138000px;}
.lsdd{letter-spacing:-0.120681px;}
.ls11{letter-spacing:-0.120000px;}
.ls3c{letter-spacing:-0.108000px;}
.lsec{letter-spacing:-0.094446px;}
.ls112{letter-spacing:-0.081000px;}
.ls15{letter-spacing:-0.069000px;}
.ls128{letter-spacing:-0.063000px;}
.ls3d{letter-spacing:-0.062964px;}
.ls161{letter-spacing:-0.060000px;}
.ls3a{letter-spacing:-0.054000px;}
.ls49{letter-spacing:-0.040227px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000300px;}
.ls6c{letter-spacing:0.040227px;}
.ls9{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.069000px;}
.ls4f{letter-spacing:0.094446px;}
.ls154{letter-spacing:0.120000px;}
.ls7e{letter-spacing:0.125928px;}
.ls45{letter-spacing:0.138000px;}
.ls104{letter-spacing:0.150000px;}
.lsff{letter-spacing:0.157410px;}
.lsf4{letter-spacing:0.160908px;}
.ls3b{letter-spacing:0.162000px;}
.ls14a{letter-spacing:0.189000px;}
.lsb5{letter-spacing:0.201135px;}
.lsf7{letter-spacing:0.220374px;}
.ls10{letter-spacing:0.240000px;}
.lsb7{letter-spacing:0.251856px;}
.ls42{letter-spacing:0.276000px;}
.ls7c{letter-spacing:0.281589px;}
.ls82{letter-spacing:0.314820px;}
.ls95{letter-spacing:0.321816px;}
.lsdf{letter-spacing:0.345000px;}
.lse2{letter-spacing:0.346302px;}
.ls106{letter-spacing:0.362043px;}
.lse4{letter-spacing:0.372600px;}
.ls9c{letter-spacing:0.377784px;}
.ls7d{letter-spacing:0.414000px;}
.ls24{letter-spacing:0.432000px;}
.lseb{letter-spacing:0.440748px;}
.ls13e{letter-spacing:0.441000px;}
.lse7{letter-spacing:0.442497px;}
.lsc6{letter-spacing:0.472230px;}
.lsb{letter-spacing:0.480000px;}
.lsc1{letter-spacing:0.482724px;}
.ls96{letter-spacing:0.483000px;}
.ls14c{letter-spacing:0.504000px;}
.lsd6{letter-spacing:0.552000px;}
.ls43{letter-spacing:0.563178px;}
.ls4c{letter-spacing:0.566676px;}
.lsac{letter-spacing:0.598158px;}
.lsa0{letter-spacing:0.600000px;}
.ls29{letter-spacing:0.600300px;}
.ls8b{letter-spacing:0.603405px;}
.ls109{letter-spacing:0.614100px;}
.lsc2{letter-spacing:0.621000px;}
.lsa5{letter-spacing:0.643632px;}
.ls85{letter-spacing:0.648000px;}
.ls120{letter-spacing:0.675000px;}
.ls110{letter-spacing:0.690000px;}
.ls81{letter-spacing:0.755568px;}
.lsf2{letter-spacing:0.759000px;}
.lsf6{letter-spacing:0.810000px;}
.ls100{letter-spacing:0.818532px;}
.ls11a{letter-spacing:0.825000px;}
.ls76{letter-spacing:0.828000px;}
.ls15d{letter-spacing:0.840000px;}
.ls75{letter-spacing:0.844767px;}
.ls9a{letter-spacing:0.881496px;}
.ls14b{letter-spacing:0.882000px;}
.lsf8{letter-spacing:0.884994px;}
.lsa8{letter-spacing:0.897000px;}
.ls142{letter-spacing:0.945000px;}
.ls8d{letter-spacing:0.965448px;}
.lsbd{letter-spacing:0.966000px;}
.ls68{letter-spacing:0.975000px;}
.lsd1{letter-spacing:0.975942px;}
.ls86{letter-spacing:1.005675px;}
.ls14e{letter-spacing:1.008000px;}
.ls160{letter-spacing:1.020000px;}
.lsa1{letter-spacing:1.035000px;}
.ls9d{letter-spacing:1.038906px;}
.ls61{letter-spacing:1.083300px;}
.lscb{letter-spacing:1.086129px;}
.lsea{letter-spacing:1.101870px;}
.ls20{letter-spacing:1.104000px;}
.ls80{letter-spacing:1.133352px;}
.ls5b{letter-spacing:1.134000px;}
.lse3{letter-spacing:1.164834px;}
.ls69{letter-spacing:1.173000px;}
.ls101{letter-spacing:1.188000px;}
.lsd2{letter-spacing:1.196316px;}
.ls12d{letter-spacing:1.197000px;}
.ls97{letter-spacing:1.206810px;}
.ls1c{letter-spacing:1.214100px;}
.lsc3{letter-spacing:1.227798px;}
.lse0{letter-spacing:1.242000px;}
.ls3{letter-spacing:1.260000px;}
.ls6e{letter-spacing:1.287264px;}
.lsad{letter-spacing:1.290762px;}
.lsc7{letter-spacing:1.311000px;}
.ls1b{letter-spacing:1.311300px;}
.ls107{letter-spacing:1.322244px;}
.ls25{letter-spacing:1.350000px;}
.lsdb{letter-spacing:1.367718px;}
.ls124{letter-spacing:1.386000px;}
.ls10a{letter-spacing:1.407600px;}
.lscc{letter-spacing:1.407945px;}
.lse1{letter-spacing:1.416690px;}
.ls1f{letter-spacing:1.425000px;}
.lsbf{letter-spacing:1.448172px;}
.lsaa{letter-spacing:1.488399px;}
.ls12b{letter-spacing:1.512000px;}
.ls10e{letter-spacing:1.545300px;}
.ls10d{letter-spacing:1.545900px;}
.ls105{letter-spacing:1.568853px;}
.ls2e{letter-spacing:1.587000px;}
.ls15a{letter-spacing:1.620000px;}
.lsd9{letter-spacing:1.650000px;}
.lsda{letter-spacing:1.689534px;}
.lsd{letter-spacing:1.740000px;}
.ls114{letter-spacing:1.782000px;}
.ls47{letter-spacing:1.794000px;}
.ls66{letter-spacing:1.863000px;}
.ls84{letter-spacing:2.001000px;}
.ls1d{letter-spacing:2.049300px;}
.ls91{letter-spacing:2.139000px;}
.lsb4{letter-spacing:2.346000px;}
.ls10f{letter-spacing:2.359500px;}
.ls1e{letter-spacing:2.400000px;}
.ls119{letter-spacing:2.484000px;}
.lsd8{letter-spacing:2.553000px;}
.lse6{letter-spacing:2.635800px;}
.lsee{letter-spacing:2.748600px;}
.ls5f{letter-spacing:2.932500px;}
.ls52{letter-spacing:2.967000px;}
.ls62{letter-spacing:3.105000px;}
.lsb9{letter-spacing:3.174000px;}
.ls5e{letter-spacing:3.187800px;}
.ls44{letter-spacing:3.450000px;}
.ls12{letter-spacing:3.696000px;}
.lsa9{letter-spacing:4.002000px;}
.lsf0{letter-spacing:4.071000px;}
.lsc{letter-spacing:4.200000px;}
.ls12a{letter-spacing:4.284000px;}
.ls137{letter-spacing:4.410000px;}
.lsef{letter-spacing:4.485000px;}
.ls159{letter-spacing:4.500000px;}
.ls15c{letter-spacing:4.620000px;}
.lsb2{letter-spacing:4.623000px;}
.lsa4{letter-spacing:4.692000px;}
.lsca{letter-spacing:4.761000px;}
.ls63{letter-spacing:4.899000px;}
.lse5{letter-spacing:5.037000px;}
.ls163{letter-spacing:5.160000px;}
.ls60{letter-spacing:5.175000px;}
.ls28{letter-spacing:5.244000px;}
.ls15b{letter-spacing:5.280000px;}
.ls67{letter-spacing:5.451000px;}
.lsc0{letter-spacing:5.520000px;}
.ls14d{letter-spacing:5.670000px;}
.ls6{letter-spacing:5.760000px;}
.ls134{letter-spacing:5.796000px;}
.lse{letter-spacing:5.880000px;}
.ls7a{letter-spacing:5.934000px;}
.ls2{letter-spacing:6.000000px;}
.lsd7{letter-spacing:6.072000px;}
.ls12e{letter-spacing:6.111000px;}
.lsb0{letter-spacing:6.141000px;}
.lsfe{letter-spacing:6.210000px;}
.ls11e{letter-spacing:6.300000px;}
.ls118{letter-spacing:6.486000px;}
.ls10b{letter-spacing:6.555000px;}
.ls57{letter-spacing:6.900000px;}
.ls8a{letter-spacing:6.969000px;}
.ls149{letter-spacing:7.308000px;}
.ls117{letter-spacing:7.452000px;}
.ls116{letter-spacing:7.590000px;}
.ls11b{letter-spacing:7.728000px;}
.lsfa{letter-spacing:7.935000px;}
.ls139{letter-spacing:8.001000px;}
.lsb6{letter-spacing:8.004000px;}
.ls65{letter-spacing:8.142000px;}
.ls64{letter-spacing:8.155800px;}
.ls2a{letter-spacing:8.160156px;}
.ls3f{letter-spacing:8.160756px;}
.ls9f{letter-spacing:8.191638px;}
.ls121{letter-spacing:8.316000px;}
.lsba{letter-spacing:8.349000px;}
.lsb3{letter-spacing:8.625000px;}
.ls150{letter-spacing:8.640000px;}
.ls12c{letter-spacing:8.820000px;}
.ls10c{letter-spacing:9.315000px;}
.lsc8{letter-spacing:9.660000px;}
.lsc9{letter-spacing:11.040000px;}
.ls143{letter-spacing:473.904000px;}
.ls158{letter-spacing:476.506800px;}
.ls19{letter-spacing:499.409400px;}
.ls5d{letter-spacing:499.814400px;}
.lsb8{letter-spacing:499.822200px;}
.ls9e{letter-spacing:500.204400px;}
.lsd5{letter-spacing:501.175800px;}
.ls3e{letter-spacing:501.502200px;}
.ls115{letter-spacing:501.970800px;}
.ls11f{letter-spacing:502.158600px;}
.ls103{letter-spacing:502.630800px;}
.lsed{letter-spacing:503.043600px;}
.ls0{letter-spacing:507.939000px;}
.ls14f{letter-spacing:961.672800px;}
.lsf{letter-spacing:990.022800px;}
.ls50{letter-spacing:990.517800px;}
.ls83{letter-spacing:993.142800px;}
.lsaf{letter-spacing:997.192800px;}
.ls27{letter-spacing:999.172800px;}
.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;}
}
.ws2{word-spacing:-28.728000px;}
.ws12b{word-spacing:-26.523000px;}
.ws129{word-spacing:-26.019000px;}
.ws165{word-spacing:-25.500000px;}
.ws66{word-spacing:-25.323000px;}
.ws4{word-spacing:-22.740000px;}
.wsd9{word-spacing:-22.725000px;}
.ws11b{word-spacing:-22.680000px;}
.ws3{word-spacing:-22.620000px;}
.ws19{word-spacing:-22.500000px;}
.ws56{word-spacing:-22.050000px;}
.ws121{word-spacing:-21.900000px;}
.ws128{word-spacing:-21.750000px;}
.ws9b{word-spacing:-21.675000px;}
.ws112{word-spacing:-21.225000px;}
.wsae{word-spacing:-20.976000px;}
.wsf5{word-spacing:-20.850000px;}
.ws79{word-spacing:-20.493000px;}
.ws37{word-spacing:-20.400000px;}
.wsf6{word-spacing:-20.148000px;}
.wsc3{word-spacing:-20.010000px;}
.ws0{word-spacing:-19.950000px;}
.ws83{word-spacing:-19.872000px;}
.ws5a{word-spacing:-19.458000px;}
.wsed{word-spacing:-19.389000px;}
.ws81{word-spacing:-19.251000px;}
.wsa0{word-spacing:-19.182000px;}
.ws12a{word-spacing:-19.089000px;}
.wse0{word-spacing:-18.906000px;}
.ws159{word-spacing:-18.900000px;}
.ws67{word-spacing:-18.837000px;}
.ws1a{word-spacing:-18.768000px;}
.ws15b{word-spacing:-18.711000px;}
.ws100{word-spacing:-18.699000px;}
.ws14a{word-spacing:-18.648000px;}
.ws157{word-spacing:-18.600000px;}
.ws38{word-spacing:-18.561000px;}
.ws101{word-spacing:-18.492000px;}
.wsaf{word-spacing:-18.354000px;}
.ws69{word-spacing:-18.216000px;}
.ws15c{word-spacing:-18.207000px;}
.ws9e{word-spacing:-18.078000px;}
.ws11a{word-spacing:-17.940000px;}
.ws62{word-spacing:-17.871000px;}
.ws59{word-spacing:-17.733000px;}
.wsb2{word-spacing:-17.526000px;}
.wse1{word-spacing:-17.388000px;}
.ws12c{word-spacing:-17.262000px;}
.ws86{word-spacing:-16.974000px;}
.ws11c{word-spacing:-16.956000px;}
.ws175{word-spacing:-16.860000px;}
.ws102{word-spacing:-16.836000px;}
.wsf{word-spacing:-16.740000px;}
.ws64{word-spacing:-16.698000px;}
.wsde{word-spacing:-16.629000px;}
.ws68{word-spacing:-16.560000px;}
.ws7f{word-spacing:-16.491000px;}
.ws65{word-spacing:-16.422000px;}
.ws9c{word-spacing:-16.353000px;}
.ws7e{word-spacing:-16.284000px;}
.ws6a{word-spacing:-16.215000px;}
.ws3c{word-spacing:-16.146000px;}
.ws85{word-spacing:-16.077000px;}
.ws146{word-spacing:-16.065000px;}
.ws5c{word-spacing:-16.008000px;}
.wsfa{word-spacing:-15.939000px;}
.ws5e{word-spacing:-15.870000px;}
.ws58{word-spacing:-15.801000px;}
.ws9d{word-spacing:-15.732000px;}
.ws4a{word-spacing:-15.663000px;}
.ws1c{word-spacing:-15.606000px;}
.ws24{word-spacing:-15.594000px;}
.ws142{word-spacing:-15.561000px;}
.wsb3{word-spacing:-15.525000px;}
.ws10{word-spacing:-15.390000px;}
.wsdd{word-spacing:-15.387000px;}
.ws144{word-spacing:-15.372000px;}
.ws5d{word-spacing:-15.318000px;}
.wsbf{word-spacing:-15.249000px;}
.ws141{word-spacing:-15.183000px;}
.ws63{word-spacing:-15.180000px;}
.ws8a{word-spacing:-15.174000px;}
.ws60{word-spacing:-15.111000px;}
.ws15a{word-spacing:-15.057000px;}
.wsd0{word-spacing:-15.042000px;}
.wsec{word-spacing:-14.973000px;}
.wsb0{word-spacing:-14.904000px;}
.wsdc{word-spacing:-14.835000px;}
.ws7b{word-spacing:-14.766000px;}
.ws171{word-spacing:-14.760000px;}
.ws12e{word-spacing:-14.742000px;}
.ws12d{word-spacing:-14.679000px;}
.ws16f{word-spacing:-14.640000px;}
.ws149{word-spacing:-14.616000px;}
.ws172{word-spacing:-14.580000px;}
.ws126{word-spacing:-14.559000px;}
.ws158{word-spacing:-14.553000px;}
.ws168{word-spacing:-14.520000px;}
.ws166{word-spacing:-14.460000px;}
.ws7c{word-spacing:-14.352000px;}
.ws170{word-spacing:-14.340000px;}
.wsf9{word-spacing:-14.283000px;}
.ws148{word-spacing:-14.238000px;}
.ws145{word-spacing:-14.175000px;}
.ws9f{word-spacing:-14.145000px;}
.ws167{word-spacing:-14.040000px;}
.ws147{word-spacing:-13.923000px;}
.ws176{word-spacing:-13.620000px;}
.ws27{word-spacing:-13.500000px;}
.ws143{word-spacing:-13.482000px;}
.ws174{word-spacing:-13.200000px;}
.ws116{word-spacing:-13.122000px;}
.ws26{word-spacing:-13.068000px;}
.ws1{word-spacing:-13.062000px;}
.wsda{word-spacing:-12.993321px;}
.wsc5{word-spacing:-12.960000px;}
.ws6c{word-spacing:-12.906000px;}
.ws113{word-spacing:-12.872640px;}
.ws1b{word-spacing:-12.852000px;}
.ws89{word-spacing:-12.798000px;}
.wsa2{word-spacing:-12.792186px;}
.wsc1{word-spacing:-12.751959px;}
.wsce{word-spacing:-12.711732px;}
.wsdb{word-spacing:-12.671505px;}
.ws5b{word-spacing:-12.591051px;}
.ws84{word-spacing:-12.510597px;}
.wsc4{word-spacing:-12.474000px;}
.wscd{word-spacing:-12.389916px;}
.ws88{word-spacing:-12.366000px;}
.ws115{word-spacing:-12.312000px;}
.ws7a{word-spacing:-12.309462px;}
.ws80{word-spacing:-12.269235px;}
.wsff{word-spacing:-12.188781px;}
.ws61{word-spacing:-12.148554px;}
.wsa1{word-spacing:-11.947419px;}
.ws7d{word-spacing:-11.907192px;}
.ws3a{word-spacing:-11.866965px;}
.wsc2{word-spacing:-11.786511px;}
.wsea{word-spacing:-11.746284px;}
.ws114{word-spacing:-11.665830px;}
.ws82{word-spacing:-11.625603px;}
.ws6b{word-spacing:-11.585376px;}
.ws122{word-spacing:-11.523000px;}
.wsb1{word-spacing:-11.504922px;}
.wsf8{word-spacing:-11.464695px;}
.ws57{word-spacing:-11.344014px;}
.ws11{word-spacing:-11.303787px;}
.ws3e{word-spacing:-11.263560px;}
.wsdf{word-spacing:-11.183106px;}
.wsc0{word-spacing:-11.142879px;}
.ws3b{word-spacing:-11.102652px;}
.ws25{word-spacing:-11.062425px;}
.wseb{word-spacing:-11.022198px;}
.wsd1{word-spacing:-10.941744px;}
.ws4c{word-spacing:-10.861290px;}
.wsf7{word-spacing:-10.821063px;}
.ws49{word-spacing:-10.700382px;}
.ws5f{word-spacing:-10.660155px;}
.ws4b{word-spacing:-10.619928px;}
.ws103{word-spacing:-10.539474px;}
.ws173{word-spacing:-10.500000px;}
.ws39{word-spacing:-10.378566px;}
.wsa3{word-spacing:-10.298112px;}
.ws3d{word-spacing:-10.217658px;}
.ws87{word-spacing:-10.152000px;}
.wscf{word-spacing:-9.775161px;}
.wsb8{word-spacing:-8.625000px;}
.wsbc{word-spacing:-8.004000px;}
.ws14f{word-spacing:-8.001000px;}
.ws107{word-spacing:-7.935000px;}
.ws124{word-spacing:-7.728000px;}
.ws161{word-spacing:-7.308000px;}
.ws8d{word-spacing:-6.969000px;}
.ws50{word-spacing:-6.900000px;}
.ws127{word-spacing:-6.300000px;}
.ws10b{word-spacing:-6.210000px;}
.ws117{word-spacing:-6.141000px;}
.ws13c{word-spacing:-6.111000px;}
.ws6{word-spacing:-6.000000px;}
.ws14b{word-spacing:-5.796000px;}
.ws164{word-spacing:-5.670000px;}
.wsc8{word-spacing:-5.520000px;}
.ws17e{word-spacing:-5.160000px;}
.wsef{word-spacing:-5.037000px;}
.wsa6{word-spacing:-4.692000px;}
.wsb7{word-spacing:-4.623000px;}
.ws14e{word-spacing:-4.410000px;}
.ws138{word-spacing:-4.284000px;}
.wsd{word-spacing:-4.200000px;}
.wsfb{word-spacing:-4.071000px;}
.wsaa{word-spacing:-4.002000px;}
.ws13{word-spacing:-3.696000px;}
.ws40{word-spacing:-3.450000px;}
.ws110{word-spacing:-3.078000px;}
.ws4d{word-spacing:-2.967000px;}
.ws1d{word-spacing:-2.400000px;}
.wsb9{word-spacing:-2.346000px;}
.ws92{word-spacing:-2.139000px;}
.ws42{word-spacing:-1.794000px;}
.wse{word-spacing:-1.740000px;}
.ws2b{word-spacing:-1.587000px;}
.ws13a{word-spacing:-1.512000px;}
.wse7{word-spacing:-1.416690px;}
.ws22{word-spacing:-1.350000px;}
.ws118{word-spacing:-1.322244px;}
.wsac{word-spacing:-1.290762px;}
.ws7{word-spacing:-1.260000px;}
.wse6{word-spacing:-1.242000px;}
.wsca{word-spacing:-1.227798px;}
.ws13b{word-spacing:-1.197000px;}
.wsd6{word-spacing:-1.196316px;}
.ws10e{word-spacing:-1.188000px;}
.ws6d{word-spacing:-1.173000px;}
.wse9{word-spacing:-1.164834px;}
.ws54{word-spacing:-1.134000px;}
.ws76{word-spacing:-1.133352px;}
.ws1e{word-spacing:-1.104000px;}
.wsf2{word-spacing:-1.101870px;}
.ws9a{word-spacing:-1.038906px;}
.wsbd{word-spacing:-1.035000px;}
.ws17c{word-spacing:-1.020000px;}
.wsd5{word-spacing:-0.975942px;}
.wsc7{word-spacing:-0.966000px;}
.wsa9{word-spacing:-0.897000px;}
.ws163{word-spacing:-0.882000px;}
.ws98{word-spacing:-0.881496px;}
.ws179{word-spacing:-0.840000px;}
.wsa4{word-spacing:-0.828000px;}
.ws10d{word-spacing:-0.818532px;}
.wsfd{word-spacing:-0.810000px;}
.ws77{word-spacing:-0.755568px;}
.ws11d{word-spacing:-0.690000px;}
.wsba{word-spacing:-0.621000px;}
.wsab{word-spacing:-0.598158px;}
.ws45{word-spacing:-0.566676px;}
.wse2{word-spacing:-0.552000px;}
.wsc{word-spacing:-0.480000px;}
.wscc{word-spacing:-0.472230px;}
.ws153{word-spacing:-0.441000px;}
.wsf3{word-spacing:-0.440748px;}
.ws74{word-spacing:-0.414000px;}
.ws99{word-spacing:-0.377784px;}
.wse8{word-spacing:-0.346302px;}
.ws123{word-spacing:-0.345000px;}
.ws78{word-spacing:-0.314820px;}
.ws3f{word-spacing:-0.276000px;}
.wsbe{word-spacing:-0.251856px;}
.ws12{word-spacing:-0.240000px;}
.ws162{word-spacing:-0.189000px;}
.ws10c{word-spacing:-0.157410px;}
.ws41{word-spacing:-0.138000px;}
.ws75{word-spacing:-0.125928px;}
.ws16c{word-spacing:-0.120000px;}
.ws48{word-spacing:-0.094446px;}
.ws16{word-spacing:-0.069000px;}
.wsa{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws34{word-spacing:0.054000px;}
.ws36{word-spacing:0.062964px;}
.ws135{word-spacing:0.063000px;}
.ws15{word-spacing:0.069000px;}
.wsf4{word-spacing:0.094446px;}
.ws35{word-spacing:0.108000px;}
.ws177{word-spacing:0.120000px;}
.ws95{word-spacing:0.138000px;}
.wsd8{word-spacing:0.157410px;}
.ws18{word-spacing:0.162000px;}
.ws14{word-spacing:0.180000px;}
.ws6e{word-spacing:0.207000px;}
.ws55{word-spacing:0.216000px;}
.ws53{word-spacing:0.220374px;}
.wsb{word-spacing:0.240000px;}
.ws14d{word-spacing:0.252000px;}
.wsd4{word-spacing:0.270000px;}
.ws90{word-spacing:0.276000px;}
.wsfc{word-spacing:0.283338px;}
.ws8{word-spacing:0.300000px;}
.ws46{word-spacing:0.324000px;}
.ws93{word-spacing:0.345000px;}
.ws51{word-spacing:0.346302px;}
.ws178{word-spacing:0.360000px;}
.wscb{word-spacing:0.378000px;}
.ws52{word-spacing:0.409266px;}
.ws43{word-spacing:0.414000px;}
.ws9{word-spacing:0.420000px;}
.ws119{word-spacing:0.432000px;}
.ws137{word-spacing:0.441000px;}
.ws10f{word-spacing:0.472230px;}
.ws169{word-spacing:0.480000px;}
.ws31{word-spacing:0.483000px;}
.ws21{word-spacing:0.486000px;}
.ws134{word-spacing:0.504000px;}
.ws23{word-spacing:0.540000px;}
.ws8f{word-spacing:0.552000px;}
.ws15d{word-spacing:0.567000px;}
.ws44{word-spacing:0.598158px;}
.ws70{word-spacing:0.621000px;}
.ws11e{word-spacing:0.627000px;}
.ws133{word-spacing:0.630000px;}
.ws32{word-spacing:0.648000px;}
.wsad{word-spacing:0.661122px;}
.ws28{word-spacing:0.690000px;}
.ws13d{word-spacing:0.693000px;}
.ws47{word-spacing:0.724086px;}
.ws15f{word-spacing:0.756000px;}
.ws17{word-spacing:0.759000px;}
.ws17f{word-spacing:0.780000px;}
.ws150{word-spacing:0.819000px;}
.ws2e{word-spacing:0.828000px;}
.ws4f{word-spacing:0.855000px;}
.ws2a{word-spacing:0.897000px;}
.ws16b{word-spacing:0.900000px;}
.ws151{word-spacing:0.945000px;}
.ws2d{word-spacing:0.966000px;}
.ws33{word-spacing:0.972000px;}
.ws140{word-spacing:1.008000px;}
.ws17d{word-spacing:1.020000px;}
.wsb5{word-spacing:1.035000px;}
.wsd7{word-spacing:1.070388px;}
.ws14c{word-spacing:1.071000px;}
.ws71{word-spacing:1.104000px;}
.ws94{word-spacing:1.173000px;}
.ws6f{word-spacing:1.242000px;}
.ws15e{word-spacing:1.260000px;}
.ws73{word-spacing:1.311000px;}
.ws17b{word-spacing:1.320000px;}
.ws156{word-spacing:1.323000px;}
.ws30{word-spacing:1.380000px;}
.ws131{word-spacing:1.386000px;}
.ws2c{word-spacing:1.449000px;}
.ws139{word-spacing:1.512000px;}
.ws91{word-spacing:1.518000px;}
.wsa5{word-spacing:1.587000px;}
.ws29{word-spacing:1.656000px;}
.ws130{word-spacing:1.701000px;}
.ws72{word-spacing:1.725000px;}
.ws180{word-spacing:1.800000px;}
.ws154{word-spacing:1.827000px;}
.wsbb{word-spacing:1.863000px;}
.ws12f{word-spacing:1.890000px;}
.ws17a{word-spacing:1.920000px;}
.ws105{word-spacing:1.932000px;}
.ws132{word-spacing:1.953000px;}
.wse3{word-spacing:2.001000px;}
.wsc6{word-spacing:2.070000px;}
.ws97{word-spacing:2.139000px;}
.ws155{word-spacing:2.205000px;}
.ws106{word-spacing:2.208000px;}
.ws4e{word-spacing:2.277000px;}
.ws160{word-spacing:2.331000px;}
.wse5{word-spacing:2.346000px;}
.ws8b{word-spacing:2.484000px;}
.ws16a{word-spacing:2.520000px;}
.ws8c{word-spacing:2.553000px;}
.wsc9{word-spacing:2.622000px;}
.ws16d{word-spacing:2.700000px;}
.ws2f{word-spacing:2.760000px;}
.ws16e{word-spacing:2.940000px;}
.ws152{word-spacing:2.961000px;}
.ws104{word-spacing:3.036000px;}
.ws13e{word-spacing:3.339000px;}
.ws109{word-spacing:3.450000px;}
.ws96{word-spacing:3.519000px;}
.wsb6{word-spacing:3.588000px;}
.wsf0{word-spacing:3.657000px;}
.wse4{word-spacing:3.795000px;}
.ws120{word-spacing:3.864000px;}
.ws1f{word-spacing:4.071000px;}
.ws8e{word-spacing:4.209000px;}
.wsd3{word-spacing:4.416000px;}
.wsa8{word-spacing:4.830000px;}
.wsb4{word-spacing:4.968000px;}
.wsee{word-spacing:5.037000px;}
.wsd2{word-spacing:5.175000px;}
.ws13f{word-spacing:5.670000px;}
.ws10a{word-spacing:6.210000px;}
.ws11f{word-spacing:6.486000px;}
.ws136{word-spacing:7.686000px;}
.ws111{word-spacing:8.153838px;}
.ws125{word-spacing:8.487000px;}
.wsf1{word-spacing:9.246000px;}
.wsa7{word-spacing:10.074000px;}
.ws108{word-spacing:10.281000px;}
.wsfe{word-spacing:27.231930px;}
.ws20{word-spacing:43.445160px;}
._1f{margin-left:-12.879600px;}
._1e{margin-left:-11.463600px;}
._1b{margin-left:-10.214700px;}
._7{margin-left:-9.114000px;}
._1a{margin-left:-7.971900px;}
._5{margin-left:-6.852000px;}
._4{margin-left:-5.616000px;}
._6{margin-left:-4.206000px;}
._3{margin-left:-2.765700px;}
._9{margin-left:-1.179000px;}
._0{width:1.155000px;}
._2{width:2.238000px;}
._8{width:3.498000px;}
._b{width:5.057400px;}
._1{width:6.120000px;}
._a{width:8.061000px;}
._10{width:9.574200px;}
._14{width:10.745700px;}
._13{width:11.782500px;}
._15{width:13.374300px;}
._18{width:15.327300px;}
._1d{width:16.516500px;}
._12{width:17.711400px;}
._2d{width:19.476000px;}
._19{width:20.987400px;}
._11{width:23.361000px;}
._f{width:24.393000px;}
._1c{width:26.570808px;}
._17{width:27.767124px;}
._20{width:28.774548px;}
._27{width:30.486000px;}
._23{width:32.655000px;}
._2c{width:34.230000px;}
._21{width:35.466000px;}
._25{width:37.284000px;}
._16{width:43.445160px;}
._28{width:47.823000px;}
._22{width:54.234000px;}
._2b{width:59.193900px;}
._24{width:64.032000px;}
._26{width:65.826000px;}
._2a{width:68.247000px;}
._c{width:71.400000px;}
._29{width:74.727000px;}
._e{width:253.008000px;}
._d{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsa{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y289{bottom:106.165350px;}
.y304{bottom:106.213350px;}
.y349{bottom:106.243650px;}
.y2c1{bottom:106.271400px;}
.yd1{bottom:106.278300px;}
.y1dc{bottom:106.287300px;}
.yf6{bottom:106.290300px;}
.y67{bottom:106.293300px;}
.y117{bottom:106.296300px;}
.y20{bottom:106.297050px;}
.y220{bottom:106.299300px;}
.y2e3{bottom:106.355100px;}
.y326{bottom:106.465350px;}
.y2b3{bottom:106.737150px;}
.y40{bottom:109.294800px;}
.yd0{bottom:123.531300px;}
.y1db{bottom:123.540300px;}
.yf5{bottom:123.543300px;}
.y66{bottom:123.546300px;}
.y1f{bottom:125.827050px;}
.y348{bottom:125.908650px;}
.y116{bottom:126.544800px;}
.y288{bottom:126.589350px;}
.y2e2{bottom:126.719850px;}
.y2b2{bottom:127.109400px;}
.y325{bottom:127.286850px;}
.y242{bottom:127.795200px;}
.y1c1{bottom:127.798200px;}
.y8c{bottom:130.796700px;}
.y2c0{bottom:131.784150px;}
.y303{bottom:133.665600px;}
.ycf{bottom:140.784300px;}
.y1da{bottom:140.793300px;}
.yf4{bottom:140.796300px;}
.y65{bottom:143.794800px;}
.y115{bottom:145.048200px;}
.y1e{bottom:145.357050px;}
.y347{bottom:145.573650px;}
.y287{bottom:147.013350px;}
.y1c0{bottom:148.046700px;}
.y8b{bottom:149.294250px;}
.yaf{bottom:149.297250px;}
.y2b1{bottom:151.742400px;}
.y19d{bottom:152.298750px;}
.y3f{bottom:153.319950px;}
.y15a{bottom:153.337650px;}
.y2e1{bottom:153.463350px;}
.y324{bottom:154.487100px;}
.y2bf{bottom:157.296900px;}
.yce{bottom:158.037300px;}
.y1d9{bottom:158.046300px;}
.yf3{bottom:161.044800px;}
.y302{bottom:161.117850px;}
.y64{bottom:162.289200px;}
.y346{bottom:165.238650px;}
.y114{bottom:165.296700px;}
.y1bf{bottom:166.535250px;}
.y8a{bottom:166.547250px;}
.yae{bottom:166.550250px;}
.y286{bottom:167.437350px;}
.y21f{bottom:169.548750px;}
.y262{bottom:170.557950px;}
.y1fe{bottom:170.799150px;}
.y159{bottom:173.589150px;}
.y19c{bottom:173.800650px;}
.y2e0{bottom:173.828100px;}
.ycd{bottom:175.290300px;}
.y323{bottom:175.308600px;}
.y2b0{bottom:176.375400px;}
.y3e{bottom:176.538450px;}
.y1d{bottom:177.637050px;}
.y1d8{bottom:178.294800px;}
.y63{bottom:179.542200px;}
.yf2{bottom:179.545200px;}
.y301{bottom:182.191350px;}
.y2be{bottom:182.809650px;}
.y1be{bottom:183.788250px;}
.y241{bottom:183.794250px;}
.y17b{bottom:183.797250px;}
.y89{bottom:183.800250px;}
.y345{bottom:184.903650px;}
.yad{bottom:186.798750px;}
.y285{bottom:187.861350px;}
.y1fd{bottom:188.052150px;}
.y261{bottom:191.459850px;}
.ycc{bottom:192.543300px;}
.y158{bottom:193.840650px;}
.y19b{bottom:195.302700px;}
.y62{bottom:196.795200px;}
.yf1{bottom:196.798200px;}
.y3d{bottom:199.756950px;}
.y2df{bottom:200.571600px;}
.y2af{bottom:201.008400px;}
.y1bd{bottom:201.041250px;}
.y240{bottom:201.047250px;}
.y17a{bottom:201.050250px;}
.y322{bottom:202.508850px;}
.y88{bottom:204.048750px;}
.y344{bottom:204.568650px;}
.y284{bottom:208.285350px;}
.yac{bottom:208.300650px;}
.y2bd{bottom:208.322400px;}
.y300{bottom:209.643600px;}
.ycb{bottom:209.796300px;}
.y260{bottom:212.361750px;}
.y61{bottom:214.048200px;}
.y157{bottom:214.092150px;}
.y19a{bottom:216.804600px;}
.yf0{bottom:217.046700px;}
.y1bc{bottom:218.294250px;}
.y23f{bottom:218.300250px;}
.y2de{bottom:220.936350px;}
.y179{bottom:221.298750px;}
.y87{bottom:222.552150px;}
.y3c{bottom:222.975450px;}
.y343{bottom:224.233650px;}
.y2ae{bottom:225.641400px;}
.y21e{bottom:226.804200px;}
.y1c{bottom:226.927050px;}
.y283{bottom:228.709350px;}
.y2bc{bottom:229.574400px;}
.y321{bottom:229.709100px;}
.yab{bottom:229.802700px;}
.yca{bottom:230.044800px;}
.y2ff{bottom:230.717100px;}
.y60{bottom:231.301200px;}
.y25f{bottom:233.258550px;}
.y5f{bottom:234.296700px;}
.y156{bottom:234.343650px;}
.y1bb{bottom:235.547250px;}
.yef{bottom:235.550250px;}
.y199{bottom:238.306650px;}
.y23e{bottom:238.548750px;}
.y178{bottom:239.799150px;}
.y369{bottom:242.442750px;}
.y86{bottom:242.800650px;}
.y342{bottom:243.898650px;}
.y2ad{bottom:246.013650px;}
.y3b{bottom:246.206100px;}
.y21d{bottom:247.052700px;}
.y2dd{bottom:247.679850px;}
.y1b{bottom:247.957050px;}
.y135{bottom:248.079900px;}
.y282{bottom:249.133350px;}
.y320{bottom:250.530600px;}
.yc9{bottom:251.546700px;}
.y2fe{bottom:251.790600px;}
.y1fc{bottom:252.370350px;}
.y1ba{bottom:252.800250px;}
.y25e{bottom:254.165550px;}
.y155{bottom:254.595150px;}
.y2bb{bottom:255.087150px;}
.y5e{bottom:255.798750px;}
.y177{bottom:257.052150px;}
.y23d{bottom:260.050650px;}
.y113{bottom:261.304200px;}
.y368{bottom:262.692750px;}
.y341{bottom:263.563650px;}
.y21c{bottom:265.550100px;}
.y2dc{bottom:268.044600px;}
.y1a{bottom:268.954950px;}
.y134{bottom:269.193900px;}
.y3a{bottom:269.424600px;}
.y281{bottom:269.557350px;}
.y2ac{bottom:270.646650px;}
.y31f{bottom:271.352100px;}
.y1fb{bottom:272.690850px;}
.yc8{bottom:273.048750px;}
.yaa{bottom:273.828750px;}
.y5d{bottom:274.293150px;}
.y154{bottom:274.846650px;}
.y25d{bottom:275.036850px;}
.yee{bottom:277.300650px;}
.y2fd{bottom:279.242850px;}
.y2ba{bottom:280.599900px;}
.y112{bottom:281.552700px;}
.y198{bottom:282.293100px;}
.y21b{bottom:282.803100px;}
.y367{bottom:282.942750px;}
.y340{bottom:283.228650px;}
.y85{bottom:286.840050px;}
.y19{bottom:288.484950px;}
.y280{bottom:289.981350px;}
.y133{bottom:290.307900px;}
.y2ab{bottom:291.018900px;}
.y5c{bottom:291.546150px;}
.y39{bottom:292.643100px;}
.y1fa{bottom:293.011350px;}
.y1b9{bottom:294.550650px;}
.ya9{bottom:294.787500px;}
.y2db{bottom:294.788100px;}
.y153{bottom:295.098150px;}
.y25c{bottom:295.943850px;}
.y31e{bottom:298.552350px;}
.yed{bottom:298.802700px;}
.y21a{bottom:300.056100px;}
.y2fc{bottom:300.316350px;}
.y33f{bottom:302.893650px;}
.y197{bottom:302.975850px;}
.y23c{bottom:303.054600px;}
.y366{bottom:303.192750px;}
.y2b9{bottom:306.112650px;}
.y84{bottom:307.367550px;}
.y18{bottom:308.014950px;}
.y5b{bottom:308.799150px;}
.y27f{bottom:310.405350px;}
.y132{bottom:311.421900px;}
.y1f9{bottom:313.331850px;}
.y2da{bottom:315.152850px;}
.y152{bottom:315.349650px;}
.y2aa{bottom:315.651900px;}
.ya8{bottom:315.773850px;}
.y38{bottom:315.861600px;}
.y25b{bottom:316.850850px;}
.yc7{bottom:317.061300px;}
.y31d{bottom:319.373850px;}
.y219{bottom:320.304600px;}
.y176{bottom:321.286950px;}
.y2fb{bottom:321.389850px;}
.y33e{bottom:322.558650px;}
.y196{bottom:323.658600px;}
.y111{bottom:325.578300px;}
.y5a{bottom:326.052150px;}
.y17{bottom:327.544950px;}
.y83{bottom:327.895050px;}
.y27e{bottom:330.829350px;}
.y2b8{bottom:331.625400px;}
.y131{bottom:332.542350px;}
.y1f8{bottom:333.652350px;}
.y151{bottom:335.601150px;}
.y365{bottom:336.192750px;}
.ya7{bottom:336.732600px;}
.y25a{bottom:337.757850px;}
.y1b8{bottom:338.633700px;}
.yc6{bottom:338.675550px;}
.y37{bottom:339.080100px;}
.y2a9{bottom:340.284900px;}
.y2d9{bottom:341.896350px;}
.y175{bottom:342.055950px;}
.y33d{bottom:342.223650px;}
.y2fa{bottom:342.463350px;}
.yec{bottom:342.822750px;}
.y1d7{bottom:342.941400px;}
.y195{bottom:344.341350px;}
.y59{bottom:346.300650px;}
.y31c{bottom:346.574100px;}
.y110{bottom:346.951050px;}
.y23b{bottom:347.071200px;}
.y16{bottom:347.074950px;}
.y82{bottom:348.422550px;}
.y27d{bottom:351.253350px;}
.y130{bottom:353.656350px;}
.y1f7{bottom:353.972850px;}
.y150{bottom:355.852650px;}
.y2b7{bottom:357.138150px;}
.ya6{bottom:357.691350px;}
.y259{bottom:358.664850px;}
.y1b7{bottom:359.523450px;}
.y2a8{bottom:360.657150px;}
.y33c{bottom:361.888650px;}
.y36{bottom:362.298600px;}
.y174{bottom:362.824950px;}
.y1d6{bottom:363.468900px;}
.y2f9{bottom:363.536850px;}
.yeb{bottom:363.579000px;}
.y218{bottom:364.343550px;}
.y58{bottom:364.795050px;}
.y15{bottom:366.604950px;}
.y31b{bottom:367.395600px;}
.y23a{bottom:367.650450px;}
.y10f{bottom:368.323800px;}
.y81{bottom:368.950050px;}
.y27c{bottom:371.677350px;}
.y1f6{bottom:374.293350px;}
.y12f{bottom:374.815800px;}
.y14f{bottom:376.162350px;}
.y364{bottom:377.697750px;}
.ya5{bottom:378.650100px;}
.y258{bottom:379.571850px;}
.y1b6{bottom:380.413200px;}
.yc5{bottom:381.549750px;}
.y33b{bottom:381.553650px;}
.y57{bottom:382.048050px;}
.y2b6{bottom:382.650900px;}
.y173{bottom:383.593950px;}
.y1d5{bottom:383.996400px;}
.yea{bottom:384.313500px;}
.y217{bottom:385.043550px;}
.y2a7{bottom:385.290150px;}
.y35{bottom:385.517100px;}
.y194{bottom:385.706850px;}
.y14{bottom:386.134950px;}
.y239{bottom:388.229700px;}
.y80{bottom:389.477550px;}
.y10e{bottom:389.701350px;}
.y2f8{bottom:390.989100px;}
.y27b{bottom:392.101350px;}
.y2d8{bottom:392.784600px;}
.y31a{bottom:394.595850px;}
.y1f5{bottom:394.613850px;}
.y12e{bottom:395.929800px;}
.y14e{bottom:396.413850px;}
.y363{bottom:397.197750px;}
.y56{bottom:399.301050px;}
.ya4{bottom:399.608850px;}
.y257{bottom:400.478850px;}
.y33a{bottom:401.218650px;}
.y1b5{bottom:401.302950px;}
.y172{bottom:404.362950px;}
.y1d4{bottom:404.523900px;}
.ye9{bottom:405.048000px;}
.y13{bottom:405.664950px;}
.y216{bottom:405.743550px;}
.y193{bottom:406.389600px;}
.yc4{bottom:406.902750px;}
.y2b5{bottom:408.163650px;}
.y34{bottom:408.735600px;}
.y238{bottom:408.808950px;}
.y2a6{bottom:409.923150px;}
.y7f{bottom:410.005050px;}
.y10d{bottom:411.074100px;}
.y2f7{bottom:412.062600px;}
.y27a{bottom:412.525350px;}
.y2d7{bottom:413.149350px;}
.y1f4{bottom:414.934350px;}
.y319{bottom:415.417350px;}
.y55{bottom:416.554050px;}
.y14d{bottom:416.665350px;}
.y362{bottom:416.697750px;}
.y12d{bottom:417.043800px;}
.ya3{bottom:420.567600px;}
.y339{bottom:420.883650px;}
.y256{bottom:421.370550px;}
.y1b4{bottom:422.192700px;}
.y1d3{bottom:425.051400px;}
.y171{bottom:425.131950px;}
.y12{bottom:425.194950px;}
.ye8{bottom:425.782500px;}
.y215{bottom:426.505200px;}
.y192{bottom:427.072350px;}
.y237{bottom:429.387450px;}
.y7e{bottom:430.532550px;}
.y10c{bottom:432.471450px;}
.y279{bottom:432.949350px;}
.y2b4{bottom:433.676400px;}
.y2a5{bottom:434.556150px;}
.y1f3{bottom:435.254850px;}
.y361{bottom:436.197750px;}
.y318{bottom:436.238850px;}
.y54{bottom:436.802700px;}
.y14c{bottom:436.916850px;}
.y2d6{bottom:437.766600px;}
.y12c{bottom:438.157800px;}
.y2f6{bottom:439.514850px;}
.y338{bottom:440.548650px;}
.ya2{bottom:441.526350px;}
.y255{bottom:442.277550px;}
.y1b3{bottom:443.082450px;}
.y11{bottom:444.724950px;}
.y1d2{bottom:445.578900px;}
.y170{bottom:445.895550px;}
.ye7{bottom:446.517000px;}
.y214{bottom:447.205200px;}
.y191{bottom:447.755100px;}
.y236{bottom:449.966700px;}
.y7d{bottom:451.060050px;}
.y33{bottom:453.215700px;}
.y278{bottom:453.373350px;}
.y10b{bottom:453.844200px;}
.y2a4{bottom:454.928400px;}
.y1f2{bottom:455.575350px;}
.y360{bottom:455.697750px;}
.y14b{bottom:457.168350px;}
.y2d5{bottom:458.131350px;}
.y337{bottom:460.213650px;}
.y2f5{bottom:460.588350px;}
.ya1{bottom:462.504750px;}
.y254{bottom:463.184550px;}
.y317{bottom:463.439100px;}
.y1b2{bottom:463.972200px;}
.y10{bottom:464.254950px;}
.y1d1{bottom:466.106400px;}
.y16f{bottom:466.637850px;}
.ye6{bottom:467.251500px;}
.y213{bottom:467.905200px;}
.y190{bottom:468.430800px;}
.yc3{bottom:470.483850px;}
.y235{bottom:470.543400px;}
.y7c{bottom:471.587550px;}
.y277{bottom:473.797350px;}
.y35f{bottom:475.197750px;}
.y10a{bottom:475.216950px;}
.y1f1{bottom:475.895850px;}
.y14a{bottom:477.419850px;}
.y2a3{bottom:479.558700px;}
.y336{bottom:479.878650px;}
.y12b{bottom:480.385800px;}
.y53{bottom:480.801150px;}
.y2d4{bottom:482.748600px;}
.ya0{bottom:483.463500px;}
.yf{bottom:483.784950px;}
.y253{bottom:484.091550px;}
.y316{bottom:484.260600px;}
.y1b1{bottom:484.861950px;}
.y1d0{bottom:486.633900px;}
.y16e{bottom:487.406850px;}
.ye5{bottom:487.986000px;}
.y2f4{bottom:488.040600px;}
.y212{bottom:488.605200px;}
.y18f{bottom:489.113550px;}
.y234{bottom:491.122650px;}
.yc2{bottom:492.098100px;}
.y7b{bottom:492.115050px;}
.y276{bottom:494.221350px;}
.y35e{bottom:494.697750px;}
.y1f0{bottom:496.216350px;}
.y109{bottom:496.589700px;}
.y149{bottom:497.671350px;}
.y335{bottom:499.543650px;}
.y12a{bottom:501.499800px;}
.y2d3{bottom:503.113350px;}
.ye{bottom:503.314950px;}
.y52{bottom:504.243900px;}
.y9f{bottom:504.422250px;}
.y315{bottom:505.082100px;}
.y1b0{bottom:505.751700px;}
.y1cf{bottom:507.161400px;}
.y16d{bottom:508.175850px;}
.ye4{bottom:508.720500px;}
.y211{bottom:509.305200px;}
.y18e{bottom:509.771550px;}
.y233{bottom:511.701900px;}
.y7a{bottom:512.648250px;}
.yc1{bottom:513.712350px;}
.y35d{bottom:514.197750px;}
.y275{bottom:514.645350px;}
.y2f3{bottom:515.492850px;}
.y1ef{bottom:516.544800px;}
.y148{bottom:517.922850px;}
.y108{bottom:517.962450px;}
.y334{bottom:519.208650px;}
.y129{bottom:522.613800px;}
.yd{bottom:522.844950px;}
.y2d2{bottom:523.478100px;}
.y9e{bottom:525.381000px;}
.y252{bottom:526.253250px;}
.y1af{bottom:526.641450px;}
.y51{bottom:527.686650px;}
.y1ce{bottom:527.688900px;}
.y16c{bottom:528.944850px;}
.ye3{bottom:529.455000px;}
.y210{bottom:530.005200px;}
.y18d{bottom:530.454300px;}
.y232{bottom:532.281150px;}
.y314{bottom:532.282350px;}
.y2a2{bottom:532.708050px;}
.y298{bottom:532.725300px;}
.y79{bottom:533.175750px;}
.y35c{bottom:533.697750px;}
.y274{bottom:535.069350px;}
.yc0{bottom:535.326600px;}
.y2f2{bottom:536.566350px;}
.y1ee{bottom:536.865300px;}
.y147{bottom:538.174350px;}
.y333{bottom:538.873650px;}
.y107{bottom:539.335200px;}
.y32{bottom:541.674150px;}
.yc{bottom:542.374950px;}
.y128{bottom:543.727800px;}
.y9d{bottom:546.339750px;}
.y1ae{bottom:547.531200px;}
.y2d1{bottom:548.095350px;}
.y1cd{bottom:548.216400px;}
.y16b{bottom:549.713850px;}
.ye2{bottom:550.189500px;}
.y20f{bottom:550.705200px;}
.y50{bottom:551.129400px;}
.y18c{bottom:551.137050px;}
.y231{bottom:552.860400px;}
.y313{bottom:553.103850px;}
.y35b{bottom:553.197750px;}
.y78{bottom:553.703250px;}
.y297{bottom:555.357300px;}
.y273{bottom:555.493350px;}
.ybf{bottom:556.940850px;}
.y1ed{bottom:557.193600px;}
.y2a1{bottom:557.858550px;}
.y146{bottom:558.425850px;}
.y332{bottom:558.538650px;}
.y106{bottom:560.707950px;}
.y2f1{bottom:564.018600px;}
.y127{bottom:564.841800px;}
.y31{bottom:565.644150px;}
.y9c{bottom:567.302400px;}
.y1ad{bottom:568.420950px;}
.y2d0{bottom:568.460100px;}
.y1cc{bottom:568.743900px;}
.y16a{bottom:570.466800px;}
.ye1{bottom:570.924000px;}
.y20e{bottom:571.405200px;}
.y18b{bottom:571.819800px;}
.y35a{bottom:572.697750px;}
.y230{bottom:573.439650px;}
.y77{bottom:574.253700px;}
.y4f{bottom:574.562250px;}
.yb{bottom:574.654950px;}
.y272{bottom:575.917350px;}
.y1ec{bottom:577.514100px;}
.y296{bottom:577.989300px;}
.y331{bottom:578.203650px;}
.ybe{bottom:578.555100px;}
.y145{bottom:578.677350px;}
.y312{bottom:580.304100px;}
.y105{bottom:582.080700px;}
.y2a0{bottom:583.009050px;}
.y2f0{bottom:585.092100px;}
.y126{bottom:585.955800px;}
.y9b{bottom:588.276900px;}
.y2cf{bottom:588.824850px;}
.y251{bottom:589.167750px;}
.y1cb{bottom:589.271400px;}
.y1ac{bottom:589.310700px;}
.y30{bottom:589.617750px;}
.y169{bottom:591.235800px;}
.ye0{bottom:591.658500px;}
.y20d{bottom:592.105200px;}
.y359{bottom:592.197750px;}
.y18a{bottom:592.502550px;}
.y22f{bottom:594.015600px;}
.y76{bottom:594.781200px;}
.y271{bottom:596.341350px;}
.y1eb{bottom:597.854400px;}
.y330{bottom:597.868650px;}
.y4e{bottom:598.005000px;}
.y144{bottom:598.928850px;}
.ybd{bottom:600.169350px;}
.y295{bottom:600.621300px;}
.y311{bottom:601.125600px;}
.y104{bottom:603.453450px;}
.y125{bottom:607.069800px;}
.y29f{bottom:608.159550px;}
.y9a{bottom:609.235650px;}
.y1ca{bottom:609.798900px;}
.y250{bottom:610.003350px;}
.y1ab{bottom:610.200450px;}
.y358{bottom:611.697750px;}
.y168{bottom:612.004800px;}
.y2f{bottom:612.087750px;}
.ydf{bottom:612.405600px;}
.y2ef{bottom:612.544350px;}
.y20c{bottom:612.839550px;}
.y189{bottom:613.185300px;}
.y2ce{bottom:613.442100px;}
.y22e{bottom:614.594850px;}
.y75{bottom:615.308700px;}
.y270{bottom:616.765350px;}
.y32f{bottom:617.533650px;}
.y1ea{bottom:618.174900px;}
.y143{bottom:619.180350px;}
.y4d{bottom:621.432900px;}
.ybc{bottom:621.783600px;}
.y310{bottom:621.947100px;}
.y294{bottom:623.253300px;}
.y103{bottom:624.826200px;}
.y124{bottom:628.183800px;}
.y99{bottom:630.194400px;}
.y1c9{bottom:630.326400px;}
.y24f{bottom:630.910350px;}
.y1aa{bottom:631.090200px;}
.y357{bottom:631.197750px;}
.ya{bottom:632.451000px;}
.y167{bottom:632.704350px;}
.yde{bottom:633.140100px;}
.y29e{bottom:633.310050px;}
.y20b{bottom:633.539550px;}
.y2ee{bottom:633.617850px;}
.y2cd{bottom:633.806850px;}
.y188{bottom:633.868050px;}
.y2e{bottom:634.557750px;}
.y22d{bottom:635.174100px;}
.y74{bottom:635.836200px;}
.y26f{bottom:637.189350px;}
.y32e{bottom:637.198650px;}
.y1e9{bottom:638.495400px;}
.y142{bottom:639.431850px;}
.ybb{bottom:643.386750px;}
.y4c{bottom:644.875650px;}
.y293{bottom:645.885300px;}
.y102{bottom:646.218600px;}
.y30f{bottom:649.147350px;}
.y123{bottom:649.297800px;}
.y356{bottom:650.697750px;}
.y1c8{bottom:650.870100px;}
.y98{bottom:651.153150px;}
.y24e{bottom:651.817350px;}
.y1a9{bottom:651.979950px;}
.y166{bottom:653.473350px;}
.ydd{bottom:653.874600px;}
.y20a{bottom:654.239550px;}
.y187{bottom:654.526050px;}
.y22c{bottom:655.753350px;}
.y73{bottom:656.363700px;}
.y32d{bottom:656.863650px;}
.y2d{bottom:657.027750px;}
.y26e{bottom:657.613350px;}
.y2cc{bottom:658.424100px;}
.y29d{bottom:658.460550px;}
.y1e8{bottom:658.815900px;}
.y9{bottom:659.478000px;}
.y141{bottom:659.683350px;}
.y2ed{bottom:661.070100px;}
.yba{bottom:665.001000px;}
.y101{bottom:667.591350px;}
.y4b{bottom:668.318400px;}
.y292{bottom:668.517300px;}
.y30e{bottom:669.968850px;}
.y355{bottom:670.197750px;}
.y122{bottom:670.447350px;}
.y1c7{bottom:671.397600px;}
.y97{bottom:672.155100px;}
.y24d{bottom:672.724350px;}
.y1a8{bottom:672.885750px;}
.y165{bottom:674.242350px;}
.ydc{bottom:674.609100px;}
.y209{bottom:674.939550px;}
.y186{bottom:675.208800px;}
.y22b{bottom:676.332600px;}
.y32c{bottom:676.528650px;}
.y72{bottom:676.891200px;}
.y26d{bottom:678.037350px;}
.y2cb{bottom:678.788850px;}
.y1e7{bottom:679.136400px;}
.y2c{bottom:679.497750px;}
.y140{bottom:679.934850px;}
.y2ec{bottom:682.143600px;}
.y29c{bottom:683.611050px;}
.yb9{bottom:686.558850px;}
.y100{bottom:688.964100px;}
.y354{bottom:689.697750px;}
.y30d{bottom:690.790350px;}
.y291{bottom:691.149300px;}
.y121{bottom:691.561350px;}
.y4a{bottom:691.746300px;}
.y1c6{bottom:691.933050px;}
.y96{bottom:693.113850px;}
.y24c{bottom:693.631350px;}
.y1a7{bottom:693.775500px;}
.y164{bottom:695.011350px;}
.ydb{bottom:695.343600px;}
.y208{bottom:695.639550px;}
.y185{bottom:695.891550px;}
.y22a{bottom:696.911850px;}
.y71{bottom:697.418700px;}
.y26c{bottom:698.461350px;}
.y1e6{bottom:699.496350px;}
.y13f{bottom:700.186350px;}
.y2b{bottom:701.967750px;}
.y2ca{bottom:703.406100px;}
.y8{bottom:707.748750px;}
.yb8{bottom:708.173100px;}
.y29b{bottom:708.761550px;}
.y32b{bottom:708.943650px;}
.y353{bottom:709.197750px;}
.y2eb{bottom:709.595850px;}
.yff{bottom:710.336850px;}
.y1c5{bottom:712.460550px;}
.y120{bottom:712.675350px;}
.y290{bottom:713.781300px;}
.y95{bottom:714.072600px;}
.y24b{bottom:714.538350px;}
.y1a6{bottom:714.665250px;}
.y49{bottom:715.189050px;}
.y163{bottom:715.780350px;}
.yda{bottom:716.078100px;}
.y207{bottom:716.353350px;}
.y184{bottom:716.574300px;}
.y229{bottom:717.491100px;}
.y70{bottom:717.946200px;}
.y30c{bottom:717.990600px;}
.y26b{bottom:718.885350px;}
.y1e5{bottom:719.816850px;}
.y13e{bottom:720.437850px;}
.y2c9{bottom:723.770850px;}
.y2a{bottom:724.437750px;}
.y352{bottom:728.697750px;}
.yb7{bottom:729.787350px;}
.y2ea{bottom:730.669350px;}
.yfe{bottom:731.709600px;}
.y11f{bottom:733.789350px;}
.y29a{bottom:733.912050px;}
.y94{bottom:735.031350px;}
.y24a{bottom:735.445350px;}
.y1a5{bottom:735.555000px;}
.y28f{bottom:736.413300px;}
.y162{bottom:736.549350px;}
.yd9{bottom:736.812600px;}
.y206{bottom:737.053350px;}
.y183{bottom:737.257050px;}
.y228{bottom:738.070350px;}
.y6f{bottom:738.473700px;}
.y48{bottom:738.631800px;}
.y30b{bottom:738.812100px;}
.y7{bottom:739.284750px;}
.y26a{bottom:739.309350px;}
.y1e4{bottom:740.137350px;}
.y13d{bottom:740.689350px;}
.y2c8{bottom:744.135600px;}
.y29{bottom:746.907750px;}
.y351{bottom:748.197750px;}
.yb6{bottom:751.401600px;}
.yfd{bottom:753.082350px;}
.y1c4{bottom:754.261650px;}
.y11e{bottom:754.903350px;}
.y93{bottom:755.990100px;}
.y249{bottom:756.352350px;}
.y1a4{bottom:756.465000px;}
.y161{bottom:757.318350px;}
.yd8{bottom:757.552650px;}
.y205{bottom:757.780800px;}
.y182{bottom:757.939800px;}
.y2e9{bottom:758.121600px;}
.y227{bottom:758.647800px;}
.y6e{bottom:759.001200px;}
.y28e{bottom:759.045300px;}
.y299{bottom:759.062550px;}
.y269{bottom:759.733350px;}
.y1e3{bottom:760.457850px;}
.y13c{bottom:760.940850px;}
.y47{bottom:762.049800px;}
.y2c7{bottom:764.500350px;}
.y30a{bottom:766.012350px;}
.y32a{bottom:766.884300px;}
.y350{bottom:767.697750px;}
.y28{bottom:769.377750px;}
.y6{bottom:770.820750px;}
.yb5{bottom:773.015850px;}
.yfc{bottom:774.455100px;}
.y11d{bottom:776.017350px;}
.y92{bottom:776.948850px;}
.y248{bottom:777.259350px;}
.y1a3{bottom:777.354750px;}
.y160{bottom:778.087350px;}
.yd7{bottom:778.287150px;}
.y204{bottom:778.480800px;}
.y1c3{bottom:778.541400px;}
.y181{bottom:778.622550px;}
.y2e8{bottom:779.195100px;}
.y226{bottom:779.227050px;}
.y6d{bottom:779.528700px;}
.y268{bottom:780.157350px;}
.y1e2{bottom:780.778350px;}
.y13b{bottom:781.192350px;}
.y28d{bottom:781.673700px;}
.y46{bottom:785.492550px;}
.y309{bottom:786.833850px;}
.y34f{bottom:787.197750px;}
.y2c6{bottom:789.117600px;}
.y27{bottom:791.847750px;}
.y329{bottom:794.037300px;}
.yb4{bottom:794.630100px;}
.yfb{bottom:795.827850px;}
.y11c{bottom:797.131350px;}
.y91{bottom:797.907600px;}
.y247{bottom:798.166350px;}
.y1a2{bottom:798.244500px;}
.y15f{bottom:798.856350px;}
.yd6{bottom:799.021650px;}
.y203{bottom:799.180800px;}
.y180{bottom:799.291200px;}
.y225{bottom:799.806300px;}
.y6c{bottom:800.056200px;}
.y267{bottom:800.581350px;}
.y1e1{bottom:801.098850px;}
.y13a{bottom:801.443850px;}
.y2e7{bottom:806.647350px;}
.y34e{bottom:806.697750px;}
.y45{bottom:808.935300px;}
.y2c5{bottom:809.482350px;}
.y308{bottom:814.034100px;}
.y26{bottom:814.317750px;}
.yb3{bottom:816.244350px;}
.yfa{bottom:817.210350px;}
.y11b{bottom:818.245350px;}
.y90{bottom:818.866350px;}
.y246{bottom:819.073350px;}
.y1a1{bottom:819.134250px;}
.y15e{bottom:819.625350px;}
.yd5{bottom:819.759750px;}
.y202{bottom:819.880800px;}
.y17f{bottom:819.973950px;}
.y224{bottom:820.385550px;}
.y6b{bottom:820.591350px;}
.y266{bottom:821.005350px;}
.y1e0{bottom:821.419350px;}
.y139{bottom:821.695350px;}
.y34d{bottom:826.197750px;}
.y2e6{bottom:827.720850px;}
.y5{bottom:832.106250px;}
.y44{bottom:832.378050px;}
.y2c4{bottom:834.099600px;}
.y28c{bottom:834.805350px;}
.y307{bottom:834.855600px;}
.y25{bottom:836.787750px;}
.yb2{bottom:837.858600px;}
.yf9{bottom:838.583100px;}
.y11a{bottom:839.359350px;}
.y8f{bottom:839.825100px;}
.y245{bottom:839.980350px;}
.y1a0{bottom:840.024000px;}
.y15d{bottom:840.394350px;}
.yd4{bottom:840.494250px;}
.y201{bottom:840.601350px;}
.y17e{bottom:840.656700px;}
.y223{bottom:840.964050px;}
.y1c2{bottom:841.102800px;}
.y6a{bottom:841.118850px;}
.y265{bottom:841.429350px;}
.y1df{bottom:841.739850px;}
.y138{bottom:841.946850px;}
.y34c{bottom:845.697750px;}
.y4{bottom:853.136250px;}
.y2e5{bottom:855.173100px;}
.y306{bottom:855.677100px;}
.y43{bottom:855.820800px;}
.y28b{bottom:857.437350px;}
.y2c3{bottom:858.716850px;}
.y24{bottom:859.257750px;}
.yb1{bottom:859.472850px;}
.yf8{bottom:859.955850px;}
.y119{bottom:860.473350px;}
.y8e{bottom:860.783850px;}
.y244{bottom:860.887350px;}
.y19f{bottom:860.917800px;}
.y15c{bottom:861.163350px;}
.yd3{bottom:861.232350px;}
.y200{bottom:861.301350px;}
.y17d{bottom:861.339450px;}
.y222{bottom:861.543300px;}
.y69{bottom:861.646350px;}
.y264{bottom:861.853350px;}
.y1de{bottom:862.060350px;}
.y137{bottom:862.198350px;}
.y328{bottom:862.874850px;}
.y34b{bottom:865.197750px;}
.y2e4{bottom:876.246600px;}
.y2c2{bottom:879.081600px;}
.y42{bottom:879.258600px;}
.y28a{bottom:880.069350px;}
.yb0{bottom:881.087100px;}
.yf7{bottom:881.328600px;}
.y118{bottom:881.587350px;}
.y23{bottom:881.727750px;}
.y8d{bottom:881.742600px;}
.y243{bottom:881.794350px;}
.y19e{bottom:881.811600px;}
.y15b{bottom:881.932350px;}
.yd2{bottom:881.966850px;}
.y1ff{bottom:882.001350px;}
.y17c{bottom:882.018600px;}
.y221{bottom:882.122100px;}
.y68{bottom:882.173850px;}
.y263{bottom:882.277350px;}
.y1dd{bottom:882.380850px;}
.y136{bottom:882.449850px;}
.y3{bottom:882.671250px;}
.y305{bottom:882.877350px;}
.y327{bottom:883.286850px;}
.y34a{bottom:884.697750px;}
.y41{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.h12{height:21.720735px;}
.h1c{height:30.667280px;}
.h10{height:40.619939px;}
.ha{height:40.620539px;}
.hb{height:46.757812px;}
.h11{height:52.602539px;}
.h26{height:55.488281px;}
.h4{height:58.447266px;}
.h9{height:59.600098px;}
.h3{height:61.369629px;}
.h1b{height:67.131555px;}
.h8{height:67.214355px;}
.h1d{height:67.216155px;}
.h1e{height:67.217355px;}
.h1f{height:67.221555px;}
.h21{height:67.224555px;}
.h20{height:67.227555px;}
.h19{height:67.228755px;}
.hc{height:67.234155px;}
.h25{height:67.234755px;}
.h18{height:67.235955px;}
.hf{height:67.253955px;}
.h24{height:67.255155px;}
.h14{height:67.258755px;}
.h1a{height:67.270755px;}
.he{height:67.273755px;}
.h23{height:67.275555px;}
.h16{height:67.278555px;}
.hd{height:67.313355px;}
.h17{height:67.321155px;}
.h13{height:67.439955px;}
.h15{height:67.492155px;}
.h22{height:67.499955px;}
.h2{height:73.059082px;}
.h7{height:78.903809px;}
.h6{height:81.826172px;}
.h5{height:105.205078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.926800px;}
.x13{left:82.214250px;}
.x1{left:83.339250px;}
.x5{left:85.080600px;}
.xb{left:86.116800px;}
.xa{left:102.424650px;}
.x9{left:103.724700px;}
.x6{left:105.150600px;}
.x4{left:106.365600px;}
.xc{left:108.512700px;}
.xf{left:143.597700px;}
.x7{left:212.319000px;}
.x3{left:231.877800px;}
.x2{left:233.345250px;}
.x12{left:368.209950px;}
.x10{left:369.831450px;}
.xe{left:390.293700px;}
.xd{left:391.501200px;}
.x11{left:428.912700px;}
@media print{
.v3{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v4{vertical-align:-9.702933pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.757333pt;}
.v1{vertical-align:15.047467pt;}
.ls14{letter-spacing:-6.552000pt;}
.lsa6{letter-spacing:-6.133333pt;}
.ls11d{letter-spacing:-5.336000pt;}
.ls131{letter-spacing:-5.040000pt;}
.ls11c{letter-spacing:-4.906667pt;}
.lsa3{letter-spacing:-4.661333pt;}
.ls89{letter-spacing:-4.477333pt;}
.lsb1{letter-spacing:-4.416000pt;}
.lsa7{letter-spacing:-4.293333pt;}
.ls166{letter-spacing:-4.160000pt;}
.lscf{letter-spacing:-3.925333pt;}
.ls164{letter-spacing:-3.840000pt;}
.ls138{letter-spacing:-3.752000pt;}
.ls8c{letter-spacing:-3.741333pt;}
.ls22{letter-spacing:-3.618667pt;}
.ls113{letter-spacing:-3.434667pt;}
.ls34{letter-spacing:-3.373333pt;}
.lse9{letter-spacing:-3.250667pt;}
.ls6d{letter-spacing:-3.189333pt;}
.ls94{letter-spacing:-3.128000pt;}
.lsfc{letter-spacing:-3.066667pt;}
.ls9b{letter-spacing:-2.832000pt;}
.lsf9{letter-spacing:-2.698667pt;}
.ls13c{letter-spacing:-2.632000pt;}
.ls90{letter-spacing:-2.576000pt;}
.ls108{letter-spacing:-2.544000pt;}
.ls32{letter-spacing:-2.453333pt;}
.ls155{letter-spacing:-2.400000pt;}
.ls79{letter-spacing:-2.392000pt;}
.lsfb{letter-spacing:-2.330667pt;}
.ls88{letter-spacing:-2.269333pt;}
.ls152{letter-spacing:-2.240000pt;}
.ls87{letter-spacing:-2.208000pt;}
.ls144{letter-spacing:-2.200000pt;}
.ls99{letter-spacing:-2.146667pt;}
.lsde{letter-spacing:-2.085333pt;}
.ls148{letter-spacing:-2.072000pt;}
.ls54{letter-spacing:-2.024000pt;}
.lsdc{letter-spacing:-1.962667pt;}
.ls140{letter-spacing:-1.960000pt;}
.ls98{letter-spacing:-1.901333pt;}
.lsbb{letter-spacing:-1.840000pt;}
.lsce{letter-spacing:-1.778667pt;}
.ls73{letter-spacing:-1.717333pt;}
.ls15e{letter-spacing:-1.706667pt;}
.ls122{letter-spacing:-1.680000pt;}
.ls77{letter-spacing:-1.656000pt;}
.ls13f{letter-spacing:-1.624000pt;}
.ls165{letter-spacing:-1.600000pt;}
.lsbc{letter-spacing:-1.594667pt;}
.ls70{letter-spacing:-1.533333pt;}
.ls123{letter-spacing:-1.512000pt;}
.ls2c{letter-spacing:-1.472000pt;}
.ls13d{letter-spacing:-1.456000pt;}
.ls5{letter-spacing:-1.440000pt;}
.lsa2{letter-spacing:-1.410667pt;}
.lscd{letter-spacing:-1.358779pt;}
.ls8f{letter-spacing:-1.349333pt;}
.ls2f{letter-spacing:-1.288000pt;}
.ls125{letter-spacing:-1.232000pt;}
.ls33{letter-spacing:-1.226667pt;}
.ls141{letter-spacing:-1.176000pt;}
.ls15f{letter-spacing:-1.173333pt;}
.ls78{letter-spacing:-1.165333pt;}
.ls146{letter-spacing:-1.120000pt;}
.ls6b{letter-spacing:-1.104000pt;}
.ls167{letter-spacing:-1.066667pt;}
.ls71{letter-spacing:-1.042667pt;}
.ls1{letter-spacing:-1.000000pt;}
.ls74{letter-spacing:-0.981333pt;}
.ls48{letter-spacing:-0.965448pt;}
.ls135{letter-spacing:-0.952000pt;}
.lsd3{letter-spacing:-0.951456pt;}
.ls6f{letter-spacing:-0.920000pt;}
.ls162{letter-spacing:-0.906667pt;}
.ls132{letter-spacing:-0.896000pt;}
.lsab{letter-spacing:-0.893933pt;}
.ls39{letter-spacing:-0.864000pt;}
.ls30{letter-spacing:-0.858667pt;}
.ls13b{letter-spacing:-0.840000pt;}
.ls41{letter-spacing:-0.822419pt;}
.ls153{letter-spacing:-0.800000pt;}
.ls2d{letter-spacing:-0.797333pt;}
.ls130{letter-spacing:-0.784000pt;}
.lsc5{letter-spacing:-0.768000pt;}
.ls56{letter-spacing:-0.760000pt;}
.ls31{letter-spacing:-0.736000pt;}
.ls133{letter-spacing:-0.728000pt;}
.ls157{letter-spacing:-0.693333pt;}
.lsfd{letter-spacing:-0.679389pt;}
.ls17{letter-spacing:-0.674667pt;}
.ls147{letter-spacing:-0.672000pt;}
.ls4e{letter-spacing:-0.643632pt;}
.ls12f{letter-spacing:-0.616000pt;}
.ls2b{letter-spacing:-0.613333pt;}
.ls53{letter-spacing:-0.607875pt;}
.ls40{letter-spacing:-0.600000pt;}
.lsae{letter-spacing:-0.587664pt;}
.ls38{letter-spacing:-0.576000pt;}
.ls72{letter-spacing:-0.572117pt;}
.ls126{letter-spacing:-0.560000pt;}
.ls111{letter-spacing:-0.557333pt;}
.ls21{letter-spacing:-0.552000pt;}
.ls51{letter-spacing:-0.536360pt;}
.ls4b{letter-spacing:-0.531696pt;}
.ls145{letter-spacing:-0.504000pt;}
.ls7b{letter-spacing:-0.490667pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls127{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.432000pt;}
.ls36{letter-spacing:-0.429333pt;}
.lsf3{letter-spacing:-0.429088pt;}
.ls151{letter-spacing:-0.426667pt;}
.ls102{letter-spacing:-0.419760pt;}
.ls55{letter-spacing:-0.393331pt;}
.ls129{letter-spacing:-0.392000pt;}
.ls7f{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.373333pt;}
.ls4a{letter-spacing:-0.368000pt;}
.ls59{letter-spacing:-0.363792pt;}
.lsc4{letter-spacing:-0.336000pt;}
.lsd0{letter-spacing:-0.321816pt;}
.ls156{letter-spacing:-0.320000pt;}
.ls58{letter-spacing:-0.307824pt;}
.ls92{letter-spacing:-0.306667pt;}
.ls4d{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.266667pt;}
.lsf5{letter-spacing:-0.251856pt;}
.lse8{letter-spacing:-0.250301pt;}
.ls8e{letter-spacing:-0.245333pt;}
.ls37{letter-spacing:-0.240000pt;}
.ls136{letter-spacing:-0.224000pt;}
.ls35{letter-spacing:-0.214544pt;}
.lsa{letter-spacing:-0.213333pt;}
.lsf1{letter-spacing:-0.200000pt;}
.ls5a{letter-spacing:-0.195888pt;}
.ls5c{letter-spacing:-0.192000pt;}
.ls6a{letter-spacing:-0.184000pt;}
.ls46{letter-spacing:-0.178787pt;}
.ls13a{letter-spacing:-0.168000pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.144000pt;}
.lsbe{letter-spacing:-0.143029pt;}
.lsd4{letter-spacing:-0.139920pt;}
.ls93{letter-spacing:-0.122667pt;}
.lsdd{letter-spacing:-0.107272pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls3c{letter-spacing:-0.096000pt;}
.lsec{letter-spacing:-0.083952pt;}
.ls112{letter-spacing:-0.072000pt;}
.ls15{letter-spacing:-0.061333pt;}
.ls128{letter-spacing:-0.056000pt;}
.ls3d{letter-spacing:-0.055968pt;}
.ls161{letter-spacing:-0.053333pt;}
.ls3a{letter-spacing:-0.048000pt;}
.ls49{letter-spacing:-0.035757pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000267pt;}
.ls6c{letter-spacing:0.035757pt;}
.ls9{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.061333pt;}
.ls4f{letter-spacing:0.083952pt;}
.ls154{letter-spacing:0.106667pt;}
.ls7e{letter-spacing:0.111936pt;}
.ls45{letter-spacing:0.122667pt;}
.ls104{letter-spacing:0.133333pt;}
.lsff{letter-spacing:0.139920pt;}
.lsf4{letter-spacing:0.143029pt;}
.ls3b{letter-spacing:0.144000pt;}
.ls14a{letter-spacing:0.168000pt;}
.lsb5{letter-spacing:0.178787pt;}
.lsf7{letter-spacing:0.195888pt;}
.ls10{letter-spacing:0.213333pt;}
.lsb7{letter-spacing:0.223872pt;}
.ls42{letter-spacing:0.245333pt;}
.ls7c{letter-spacing:0.250301pt;}
.ls82{letter-spacing:0.279840pt;}
.ls95{letter-spacing:0.286059pt;}
.lsdf{letter-spacing:0.306667pt;}
.lse2{letter-spacing:0.307824pt;}
.ls106{letter-spacing:0.321816pt;}
.lse4{letter-spacing:0.331200pt;}
.ls9c{letter-spacing:0.335808pt;}
.ls7d{letter-spacing:0.368000pt;}
.ls24{letter-spacing:0.384000pt;}
.lseb{letter-spacing:0.391776pt;}
.ls13e{letter-spacing:0.392000pt;}
.lse7{letter-spacing:0.393331pt;}
.lsc6{letter-spacing:0.419760pt;}
.lsb{letter-spacing:0.426667pt;}
.lsc1{letter-spacing:0.429088pt;}
.ls96{letter-spacing:0.429333pt;}
.ls14c{letter-spacing:0.448000pt;}
.lsd6{letter-spacing:0.490667pt;}
.ls43{letter-spacing:0.500603pt;}
.ls4c{letter-spacing:0.503712pt;}
.lsac{letter-spacing:0.531696pt;}
.lsa0{letter-spacing:0.533333pt;}
.ls29{letter-spacing:0.533600pt;}
.ls8b{letter-spacing:0.536360pt;}
.ls109{letter-spacing:0.545867pt;}
.lsc2{letter-spacing:0.552000pt;}
.lsa5{letter-spacing:0.572117pt;}
.ls85{letter-spacing:0.576000pt;}
.ls120{letter-spacing:0.600000pt;}
.ls110{letter-spacing:0.613333pt;}
.ls81{letter-spacing:0.671616pt;}
.lsf2{letter-spacing:0.674667pt;}
.lsf6{letter-spacing:0.720000pt;}
.ls100{letter-spacing:0.727584pt;}
.ls11a{letter-spacing:0.733333pt;}
.ls76{letter-spacing:0.736000pt;}
.ls15d{letter-spacing:0.746667pt;}
.ls75{letter-spacing:0.750904pt;}
.ls9a{letter-spacing:0.783552pt;}
.ls14b{letter-spacing:0.784000pt;}
.lsf8{letter-spacing:0.786661pt;}
.lsa8{letter-spacing:0.797333pt;}
.ls142{letter-spacing:0.840000pt;}
.ls8d{letter-spacing:0.858176pt;}
.lsbd{letter-spacing:0.858667pt;}
.ls68{letter-spacing:0.866667pt;}
.lsd1{letter-spacing:0.867504pt;}
.ls86{letter-spacing:0.893933pt;}
.ls14e{letter-spacing:0.896000pt;}
.ls160{letter-spacing:0.906667pt;}
.lsa1{letter-spacing:0.920000pt;}
.ls9d{letter-spacing:0.923472pt;}
.ls61{letter-spacing:0.962933pt;}
.lscb{letter-spacing:0.965448pt;}
.lsea{letter-spacing:0.979440pt;}
.ls20{letter-spacing:0.981333pt;}
.ls80{letter-spacing:1.007424pt;}
.ls5b{letter-spacing:1.008000pt;}
.lse3{letter-spacing:1.035408pt;}
.ls69{letter-spacing:1.042667pt;}
.ls101{letter-spacing:1.056000pt;}
.lsd2{letter-spacing:1.063392pt;}
.ls12d{letter-spacing:1.064000pt;}
.ls97{letter-spacing:1.072720pt;}
.ls1c{letter-spacing:1.079200pt;}
.lsc3{letter-spacing:1.091376pt;}
.lse0{letter-spacing:1.104000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls6e{letter-spacing:1.144235pt;}
.lsad{letter-spacing:1.147344pt;}
.lsc7{letter-spacing:1.165333pt;}
.ls1b{letter-spacing:1.165600pt;}
.ls107{letter-spacing:1.175328pt;}
.ls25{letter-spacing:1.200000pt;}
.lsdb{letter-spacing:1.215749pt;}
.ls124{letter-spacing:1.232000pt;}
.ls10a{letter-spacing:1.251200pt;}
.lscc{letter-spacing:1.251507pt;}
.lse1{letter-spacing:1.259280pt;}
.ls1f{letter-spacing:1.266667pt;}
.lsbf{letter-spacing:1.287264pt;}
.lsaa{letter-spacing:1.323021pt;}
.ls12b{letter-spacing:1.344000pt;}
.ls10e{letter-spacing:1.373600pt;}
.ls10d{letter-spacing:1.374133pt;}
.ls105{letter-spacing:1.394536pt;}
.ls2e{letter-spacing:1.410667pt;}
.ls15a{letter-spacing:1.440000pt;}
.lsd9{letter-spacing:1.466667pt;}
.lsda{letter-spacing:1.501808pt;}
.lsd{letter-spacing:1.546667pt;}
.ls114{letter-spacing:1.584000pt;}
.ls47{letter-spacing:1.594667pt;}
.ls66{letter-spacing:1.656000pt;}
.ls84{letter-spacing:1.778667pt;}
.ls1d{letter-spacing:1.821600pt;}
.ls91{letter-spacing:1.901333pt;}
.lsb4{letter-spacing:2.085333pt;}
.ls10f{letter-spacing:2.097333pt;}
.ls1e{letter-spacing:2.133333pt;}
.ls119{letter-spacing:2.208000pt;}
.lsd8{letter-spacing:2.269333pt;}
.lse6{letter-spacing:2.342933pt;}
.lsee{letter-spacing:2.443200pt;}
.ls5f{letter-spacing:2.606667pt;}
.ls52{letter-spacing:2.637333pt;}
.ls62{letter-spacing:2.760000pt;}
.lsb9{letter-spacing:2.821333pt;}
.ls5e{letter-spacing:2.833600pt;}
.ls44{letter-spacing:3.066667pt;}
.ls12{letter-spacing:3.285333pt;}
.lsa9{letter-spacing:3.557333pt;}
.lsf0{letter-spacing:3.618667pt;}
.lsc{letter-spacing:3.733333pt;}
.ls12a{letter-spacing:3.808000pt;}
.ls137{letter-spacing:3.920000pt;}
.lsef{letter-spacing:3.986667pt;}
.ls159{letter-spacing:4.000000pt;}
.ls15c{letter-spacing:4.106667pt;}
.lsb2{letter-spacing:4.109333pt;}
.lsa4{letter-spacing:4.170667pt;}
.lsca{letter-spacing:4.232000pt;}
.ls63{letter-spacing:4.354667pt;}
.lse5{letter-spacing:4.477333pt;}
.ls163{letter-spacing:4.586667pt;}
.ls60{letter-spacing:4.600000pt;}
.ls28{letter-spacing:4.661333pt;}
.ls15b{letter-spacing:4.693333pt;}
.ls67{letter-spacing:4.845333pt;}
.lsc0{letter-spacing:4.906667pt;}
.ls14d{letter-spacing:5.040000pt;}
.ls6{letter-spacing:5.120000pt;}
.ls134{letter-spacing:5.152000pt;}
.lse{letter-spacing:5.226667pt;}
.ls7a{letter-spacing:5.274667pt;}
.ls2{letter-spacing:5.333333pt;}
.lsd7{letter-spacing:5.397333pt;}
.ls12e{letter-spacing:5.432000pt;}
.lsb0{letter-spacing:5.458667pt;}
.lsfe{letter-spacing:5.520000pt;}
.ls11e{letter-spacing:5.600000pt;}
.ls118{letter-spacing:5.765333pt;}
.ls10b{letter-spacing:5.826667pt;}
.ls57{letter-spacing:6.133333pt;}
.ls8a{letter-spacing:6.194667pt;}
.ls149{letter-spacing:6.496000pt;}
.ls117{letter-spacing:6.624000pt;}
.ls116{letter-spacing:6.746667pt;}
.ls11b{letter-spacing:6.869333pt;}
.lsfa{letter-spacing:7.053333pt;}
.ls139{letter-spacing:7.112000pt;}
.lsb6{letter-spacing:7.114667pt;}
.ls65{letter-spacing:7.237333pt;}
.ls64{letter-spacing:7.249600pt;}
.ls2a{letter-spacing:7.253472pt;}
.ls3f{letter-spacing:7.254005pt;}
.ls9f{letter-spacing:7.281456pt;}
.ls121{letter-spacing:7.392000pt;}
.lsba{letter-spacing:7.421333pt;}
.lsb3{letter-spacing:7.666667pt;}
.ls150{letter-spacing:7.680000pt;}
.ls12c{letter-spacing:7.840000pt;}
.ls10c{letter-spacing:8.280000pt;}
.lsc8{letter-spacing:8.586667pt;}
.lsc9{letter-spacing:9.813333pt;}
.ls143{letter-spacing:421.248000pt;}
.ls158{letter-spacing:423.561600pt;}
.ls19{letter-spacing:443.919467pt;}
.ls5d{letter-spacing:444.279467pt;}
.lsb8{letter-spacing:444.286400pt;}
.ls9e{letter-spacing:444.626133pt;}
.lsd5{letter-spacing:445.489600pt;}
.ls3e{letter-spacing:445.779733pt;}
.ls115{letter-spacing:446.196267pt;}
.ls11f{letter-spacing:446.363200pt;}
.ls103{letter-spacing:446.782933pt;}
.lsed{letter-spacing:447.149867pt;}
.ls0{letter-spacing:451.501333pt;}
.ls14f{letter-spacing:854.820267pt;}
.lsf{letter-spacing:880.020267pt;}
.ls50{letter-spacing:880.460267pt;}
.ls83{letter-spacing:882.793600pt;}
.lsaf{letter-spacing:886.393600pt;}
.ls27{letter-spacing:888.153600pt;}
.ws2{word-spacing:-25.536000pt;}
.ws12b{word-spacing:-23.576000pt;}
.ws129{word-spacing:-23.128000pt;}
.ws165{word-spacing:-22.666667pt;}
.ws66{word-spacing:-22.509333pt;}
.ws4{word-spacing:-20.213333pt;}
.wsd9{word-spacing:-20.200000pt;}
.ws11b{word-spacing:-20.160000pt;}
.ws3{word-spacing:-20.106667pt;}
.ws19{word-spacing:-20.000000pt;}
.ws56{word-spacing:-19.600000pt;}
.ws121{word-spacing:-19.466667pt;}
.ws128{word-spacing:-19.333333pt;}
.ws9b{word-spacing:-19.266667pt;}
.ws112{word-spacing:-18.866667pt;}
.wsae{word-spacing:-18.645333pt;}
.wsf5{word-spacing:-18.533333pt;}
.ws79{word-spacing:-18.216000pt;}
.ws37{word-spacing:-18.133333pt;}
.wsf6{word-spacing:-17.909333pt;}
.wsc3{word-spacing:-17.786667pt;}
.ws0{word-spacing:-17.733333pt;}
.ws83{word-spacing:-17.664000pt;}
.ws5a{word-spacing:-17.296000pt;}
.wsed{word-spacing:-17.234667pt;}
.ws81{word-spacing:-17.112000pt;}
.wsa0{word-spacing:-17.050667pt;}
.ws12a{word-spacing:-16.968000pt;}
.wse0{word-spacing:-16.805333pt;}
.ws159{word-spacing:-16.800000pt;}
.ws67{word-spacing:-16.744000pt;}
.ws1a{word-spacing:-16.682667pt;}
.ws15b{word-spacing:-16.632000pt;}
.ws100{word-spacing:-16.621333pt;}
.ws14a{word-spacing:-16.576000pt;}
.ws157{word-spacing:-16.533333pt;}
.ws38{word-spacing:-16.498667pt;}
.ws101{word-spacing:-16.437333pt;}
.wsaf{word-spacing:-16.314667pt;}
.ws69{word-spacing:-16.192000pt;}
.ws15c{word-spacing:-16.184000pt;}
.ws9e{word-spacing:-16.069333pt;}
.ws11a{word-spacing:-15.946667pt;}
.ws62{word-spacing:-15.885333pt;}
.ws59{word-spacing:-15.762667pt;}
.wsb2{word-spacing:-15.578667pt;}
.wse1{word-spacing:-15.456000pt;}
.ws12c{word-spacing:-15.344000pt;}
.ws86{word-spacing:-15.088000pt;}
.ws11c{word-spacing:-15.072000pt;}
.ws175{word-spacing:-14.986667pt;}
.ws102{word-spacing:-14.965333pt;}
.wsf{word-spacing:-14.880000pt;}
.ws64{word-spacing:-14.842667pt;}
.wsde{word-spacing:-14.781333pt;}
.ws68{word-spacing:-14.720000pt;}
.ws7f{word-spacing:-14.658667pt;}
.ws65{word-spacing:-14.597333pt;}
.ws9c{word-spacing:-14.536000pt;}
.ws7e{word-spacing:-14.474667pt;}
.ws6a{word-spacing:-14.413333pt;}
.ws3c{word-spacing:-14.352000pt;}
.ws85{word-spacing:-14.290667pt;}
.ws146{word-spacing:-14.280000pt;}
.ws5c{word-spacing:-14.229333pt;}
.wsfa{word-spacing:-14.168000pt;}
.ws5e{word-spacing:-14.106667pt;}
.ws58{word-spacing:-14.045333pt;}
.ws9d{word-spacing:-13.984000pt;}
.ws4a{word-spacing:-13.922667pt;}
.ws1c{word-spacing:-13.872000pt;}
.ws24{word-spacing:-13.861333pt;}
.ws142{word-spacing:-13.832000pt;}
.wsb3{word-spacing:-13.800000pt;}
.ws10{word-spacing:-13.680000pt;}
.wsdd{word-spacing:-13.677333pt;}
.ws144{word-spacing:-13.664000pt;}
.ws5d{word-spacing:-13.616000pt;}
.wsbf{word-spacing:-13.554667pt;}
.ws141{word-spacing:-13.496000pt;}
.ws63{word-spacing:-13.493333pt;}
.ws8a{word-spacing:-13.488000pt;}
.ws60{word-spacing:-13.432000pt;}
.ws15a{word-spacing:-13.384000pt;}
.wsd0{word-spacing:-13.370667pt;}
.wsec{word-spacing:-13.309333pt;}
.wsb0{word-spacing:-13.248000pt;}
.wsdc{word-spacing:-13.186667pt;}
.ws7b{word-spacing:-13.125333pt;}
.ws171{word-spacing:-13.120000pt;}
.ws12e{word-spacing:-13.104000pt;}
.ws12d{word-spacing:-13.048000pt;}
.ws16f{word-spacing:-13.013333pt;}
.ws149{word-spacing:-12.992000pt;}
.ws172{word-spacing:-12.960000pt;}
.ws126{word-spacing:-12.941333pt;}
.ws158{word-spacing:-12.936000pt;}
.ws168{word-spacing:-12.906667pt;}
.ws166{word-spacing:-12.853333pt;}
.ws7c{word-spacing:-12.757333pt;}
.ws170{word-spacing:-12.746667pt;}
.wsf9{word-spacing:-12.696000pt;}
.ws148{word-spacing:-12.656000pt;}
.ws145{word-spacing:-12.600000pt;}
.ws9f{word-spacing:-12.573333pt;}
.ws167{word-spacing:-12.480000pt;}
.ws147{word-spacing:-12.376000pt;}
.ws176{word-spacing:-12.106667pt;}
.ws27{word-spacing:-12.000000pt;}
.ws143{word-spacing:-11.984000pt;}
.ws174{word-spacing:-11.733333pt;}
.ws116{word-spacing:-11.664000pt;}
.ws26{word-spacing:-11.616000pt;}
.ws1{word-spacing:-11.610667pt;}
.wsda{word-spacing:-11.549619pt;}
.wsc5{word-spacing:-11.520000pt;}
.ws6c{word-spacing:-11.472000pt;}
.ws113{word-spacing:-11.442347pt;}
.ws1b{word-spacing:-11.424000pt;}
.ws89{word-spacing:-11.376000pt;}
.wsa2{word-spacing:-11.370832pt;}
.wsc1{word-spacing:-11.335075pt;}
.wsce{word-spacing:-11.299317pt;}
.wsdb{word-spacing:-11.263560pt;}
.ws5b{word-spacing:-11.192045pt;}
.ws84{word-spacing:-11.120531pt;}
.wsc4{word-spacing:-11.088000pt;}
.wscd{word-spacing:-11.013259pt;}
.ws88{word-spacing:-10.992000pt;}
.ws115{word-spacing:-10.944000pt;}
.ws7a{word-spacing:-10.941744pt;}
.ws80{word-spacing:-10.905987pt;}
.wsff{word-spacing:-10.834472pt;}
.ws61{word-spacing:-10.798715pt;}
.wsa1{word-spacing:-10.619928pt;}
.ws7d{word-spacing:-10.584171pt;}
.ws3a{word-spacing:-10.548413pt;}
.wsc2{word-spacing:-10.476899pt;}
.wsea{word-spacing:-10.441141pt;}
.ws114{word-spacing:-10.369627pt;}
.ws82{word-spacing:-10.333869pt;}
.ws6b{word-spacing:-10.298112pt;}
.ws122{word-spacing:-10.242667pt;}
.wsb1{word-spacing:-10.226597pt;}
.wsf8{word-spacing:-10.190840pt;}
.ws57{word-spacing:-10.083568pt;}
.ws11{word-spacing:-10.047811pt;}
.ws3e{word-spacing:-10.012053pt;}
.wsdf{word-spacing:-9.940539pt;}
.wsc0{word-spacing:-9.904781pt;}
.ws3b{word-spacing:-9.869024pt;}
.ws25{word-spacing:-9.833267pt;}
.wseb{word-spacing:-9.797509pt;}
.wsd1{word-spacing:-9.725995pt;}
.ws4c{word-spacing:-9.654480pt;}
.wsf7{word-spacing:-9.618723pt;}
.ws49{word-spacing:-9.511451pt;}
.ws5f{word-spacing:-9.475693pt;}
.ws4b{word-spacing:-9.439936pt;}
.ws103{word-spacing:-9.368421pt;}
.ws173{word-spacing:-9.333333pt;}
.ws39{word-spacing:-9.225392pt;}
.wsa3{word-spacing:-9.153877pt;}
.ws3d{word-spacing:-9.082363pt;}
.ws87{word-spacing:-9.024000pt;}
.wscf{word-spacing:-8.689032pt;}
.wsb8{word-spacing:-7.666667pt;}
.wsbc{word-spacing:-7.114667pt;}
.ws14f{word-spacing:-7.112000pt;}
.ws107{word-spacing:-7.053333pt;}
.ws124{word-spacing:-6.869333pt;}
.ws161{word-spacing:-6.496000pt;}
.ws8d{word-spacing:-6.194667pt;}
.ws50{word-spacing:-6.133333pt;}
.ws127{word-spacing:-5.600000pt;}
.ws10b{word-spacing:-5.520000pt;}
.ws117{word-spacing:-5.458667pt;}
.ws13c{word-spacing:-5.432000pt;}
.ws6{word-spacing:-5.333333pt;}
.ws14b{word-spacing:-5.152000pt;}
.ws164{word-spacing:-5.040000pt;}
.wsc8{word-spacing:-4.906667pt;}
.ws17e{word-spacing:-4.586667pt;}
.wsef{word-spacing:-4.477333pt;}
.wsa6{word-spacing:-4.170667pt;}
.wsb7{word-spacing:-4.109333pt;}
.ws14e{word-spacing:-3.920000pt;}
.ws138{word-spacing:-3.808000pt;}
.wsd{word-spacing:-3.733333pt;}
.wsfb{word-spacing:-3.618667pt;}
.wsaa{word-spacing:-3.557333pt;}
.ws13{word-spacing:-3.285333pt;}
.ws40{word-spacing:-3.066667pt;}
.ws110{word-spacing:-2.736000pt;}
.ws4d{word-spacing:-2.637333pt;}
.ws1d{word-spacing:-2.133333pt;}
.wsb9{word-spacing:-2.085333pt;}
.ws92{word-spacing:-1.901333pt;}
.ws42{word-spacing:-1.594667pt;}
.wse{word-spacing:-1.546667pt;}
.ws2b{word-spacing:-1.410667pt;}
.ws13a{word-spacing:-1.344000pt;}
.wse7{word-spacing:-1.259280pt;}
.ws22{word-spacing:-1.200000pt;}
.ws118{word-spacing:-1.175328pt;}
.wsac{word-spacing:-1.147344pt;}
.ws7{word-spacing:-1.120000pt;}
.wse6{word-spacing:-1.104000pt;}
.wsca{word-spacing:-1.091376pt;}
.ws13b{word-spacing:-1.064000pt;}
.wsd6{word-spacing:-1.063392pt;}
.ws10e{word-spacing:-1.056000pt;}
.ws6d{word-spacing:-1.042667pt;}
.wse9{word-spacing:-1.035408pt;}
.ws54{word-spacing:-1.008000pt;}
.ws76{word-spacing:-1.007424pt;}
.ws1e{word-spacing:-0.981333pt;}
.wsf2{word-spacing:-0.979440pt;}
.ws9a{word-spacing:-0.923472pt;}
.wsbd{word-spacing:-0.920000pt;}
.ws17c{word-spacing:-0.906667pt;}
.wsd5{word-spacing:-0.867504pt;}
.wsc7{word-spacing:-0.858667pt;}
.wsa9{word-spacing:-0.797333pt;}
.ws163{word-spacing:-0.784000pt;}
.ws98{word-spacing:-0.783552pt;}
.ws179{word-spacing:-0.746667pt;}
.wsa4{word-spacing:-0.736000pt;}
.ws10d{word-spacing:-0.727584pt;}
.wsfd{word-spacing:-0.720000pt;}
.ws77{word-spacing:-0.671616pt;}
.ws11d{word-spacing:-0.613333pt;}
.wsba{word-spacing:-0.552000pt;}
.wsab{word-spacing:-0.531696pt;}
.ws45{word-spacing:-0.503712pt;}
.wse2{word-spacing:-0.490667pt;}
.wsc{word-spacing:-0.426667pt;}
.wscc{word-spacing:-0.419760pt;}
.ws153{word-spacing:-0.392000pt;}
.wsf3{word-spacing:-0.391776pt;}
.ws74{word-spacing:-0.368000pt;}
.ws99{word-spacing:-0.335808pt;}
.wse8{word-spacing:-0.307824pt;}
.ws123{word-spacing:-0.306667pt;}
.ws78{word-spacing:-0.279840pt;}
.ws3f{word-spacing:-0.245333pt;}
.wsbe{word-spacing:-0.223872pt;}
.ws12{word-spacing:-0.213333pt;}
.ws162{word-spacing:-0.168000pt;}
.ws10c{word-spacing:-0.139920pt;}
.ws41{word-spacing:-0.122667pt;}
.ws75{word-spacing:-0.111936pt;}
.ws16c{word-spacing:-0.106667pt;}
.ws48{word-spacing:-0.083952pt;}
.ws16{word-spacing:-0.061333pt;}
.wsa{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws34{word-spacing:0.048000pt;}
.ws36{word-spacing:0.055968pt;}
.ws135{word-spacing:0.056000pt;}
.ws15{word-spacing:0.061333pt;}
.wsf4{word-spacing:0.083952pt;}
.ws35{word-spacing:0.096000pt;}
.ws177{word-spacing:0.106667pt;}
.ws95{word-spacing:0.122667pt;}
.wsd8{word-spacing:0.139920pt;}
.ws18{word-spacing:0.144000pt;}
.ws14{word-spacing:0.160000pt;}
.ws6e{word-spacing:0.184000pt;}
.ws55{word-spacing:0.192000pt;}
.ws53{word-spacing:0.195888pt;}
.wsb{word-spacing:0.213333pt;}
.ws14d{word-spacing:0.224000pt;}
.wsd4{word-spacing:0.240000pt;}
.ws90{word-spacing:0.245333pt;}
.wsfc{word-spacing:0.251856pt;}
.ws8{word-spacing:0.266667pt;}
.ws46{word-spacing:0.288000pt;}
.ws93{word-spacing:0.306667pt;}
.ws51{word-spacing:0.307824pt;}
.ws178{word-spacing:0.320000pt;}
.wscb{word-spacing:0.336000pt;}
.ws52{word-spacing:0.363792pt;}
.ws43{word-spacing:0.368000pt;}
.ws9{word-spacing:0.373333pt;}
.ws119{word-spacing:0.384000pt;}
.ws137{word-spacing:0.392000pt;}
.ws10f{word-spacing:0.419760pt;}
.ws169{word-spacing:0.426667pt;}
.ws31{word-spacing:0.429333pt;}
.ws21{word-spacing:0.432000pt;}
.ws134{word-spacing:0.448000pt;}
.ws23{word-spacing:0.480000pt;}
.ws8f{word-spacing:0.490667pt;}
.ws15d{word-spacing:0.504000pt;}
.ws44{word-spacing:0.531696pt;}
.ws70{word-spacing:0.552000pt;}
.ws11e{word-spacing:0.557333pt;}
.ws133{word-spacing:0.560000pt;}
.ws32{word-spacing:0.576000pt;}
.wsad{word-spacing:0.587664pt;}
.ws28{word-spacing:0.613333pt;}
.ws13d{word-spacing:0.616000pt;}
.ws47{word-spacing:0.643632pt;}
.ws15f{word-spacing:0.672000pt;}
.ws17{word-spacing:0.674667pt;}
.ws17f{word-spacing:0.693333pt;}
.ws150{word-spacing:0.728000pt;}
.ws2e{word-spacing:0.736000pt;}
.ws4f{word-spacing:0.760000pt;}
.ws2a{word-spacing:0.797333pt;}
.ws16b{word-spacing:0.800000pt;}
.ws151{word-spacing:0.840000pt;}
.ws2d{word-spacing:0.858667pt;}
.ws33{word-spacing:0.864000pt;}
.ws140{word-spacing:0.896000pt;}
.ws17d{word-spacing:0.906667pt;}
.wsb5{word-spacing:0.920000pt;}
.wsd7{word-spacing:0.951456pt;}
.ws14c{word-spacing:0.952000pt;}
.ws71{word-spacing:0.981333pt;}
.ws94{word-spacing:1.042667pt;}
.ws6f{word-spacing:1.104000pt;}
.ws15e{word-spacing:1.120000pt;}
.ws73{word-spacing:1.165333pt;}
.ws17b{word-spacing:1.173333pt;}
.ws156{word-spacing:1.176000pt;}
.ws30{word-spacing:1.226667pt;}
.ws131{word-spacing:1.232000pt;}
.ws2c{word-spacing:1.288000pt;}
.ws139{word-spacing:1.344000pt;}
.ws91{word-spacing:1.349333pt;}
.wsa5{word-spacing:1.410667pt;}
.ws29{word-spacing:1.472000pt;}
.ws130{word-spacing:1.512000pt;}
.ws72{word-spacing:1.533333pt;}
.ws180{word-spacing:1.600000pt;}
.ws154{word-spacing:1.624000pt;}
.wsbb{word-spacing:1.656000pt;}
.ws12f{word-spacing:1.680000pt;}
.ws17a{word-spacing:1.706667pt;}
.ws105{word-spacing:1.717333pt;}
.ws132{word-spacing:1.736000pt;}
.wse3{word-spacing:1.778667pt;}
.wsc6{word-spacing:1.840000pt;}
.ws97{word-spacing:1.901333pt;}
.ws155{word-spacing:1.960000pt;}
.ws106{word-spacing:1.962667pt;}
.ws4e{word-spacing:2.024000pt;}
.ws160{word-spacing:2.072000pt;}
.wse5{word-spacing:2.085333pt;}
.ws8b{word-spacing:2.208000pt;}
.ws16a{word-spacing:2.240000pt;}
.ws8c{word-spacing:2.269333pt;}
.wsc9{word-spacing:2.330667pt;}
.ws16d{word-spacing:2.400000pt;}
.ws2f{word-spacing:2.453333pt;}
.ws16e{word-spacing:2.613333pt;}
.ws152{word-spacing:2.632000pt;}
.ws104{word-spacing:2.698667pt;}
.ws13e{word-spacing:2.968000pt;}
.ws109{word-spacing:3.066667pt;}
.ws96{word-spacing:3.128000pt;}
.wsb6{word-spacing:3.189333pt;}
.wsf0{word-spacing:3.250667pt;}
.wse4{word-spacing:3.373333pt;}
.ws120{word-spacing:3.434667pt;}
.ws1f{word-spacing:3.618667pt;}
.ws8e{word-spacing:3.741333pt;}
.wsd3{word-spacing:3.925333pt;}
.wsa8{word-spacing:4.293333pt;}
.wsb4{word-spacing:4.416000pt;}
.wsee{word-spacing:4.477333pt;}
.wsd2{word-spacing:4.600000pt;}
.ws13f{word-spacing:5.040000pt;}
.ws10a{word-spacing:5.520000pt;}
.ws11f{word-spacing:5.765333pt;}
.ws136{word-spacing:6.832000pt;}
.ws111{word-spacing:7.247856pt;}
.ws125{word-spacing:7.544000pt;}
.wsf1{word-spacing:8.218667pt;}
.wsa7{word-spacing:8.954667pt;}
.ws108{word-spacing:9.138667pt;}
.wsfe{word-spacing:24.206160pt;}
.ws20{word-spacing:38.617920pt;}
._1f{margin-left:-11.448533pt;}
._1e{margin-left:-10.189867pt;}
._1b{margin-left:-9.079733pt;}
._7{margin-left:-8.101333pt;}
._1a{margin-left:-7.086133pt;}
._5{margin-left:-6.090667pt;}
._4{margin-left:-4.992000pt;}
._6{margin-left:-3.738667pt;}
._3{margin-left:-2.458400pt;}
._9{margin-left:-1.048000pt;}
._0{width:1.026667pt;}
._2{width:1.989333pt;}
._8{width:3.109333pt;}
._b{width:4.495467pt;}
._1{width:5.440000pt;}
._a{width:7.165333pt;}
._10{width:8.510400pt;}
._14{width:9.551733pt;}
._13{width:10.473333pt;}
._15{width:11.888267pt;}
._18{width:13.624267pt;}
._1d{width:14.681333pt;}
._12{width:15.743467pt;}
._2d{width:17.312000pt;}
._19{width:18.655467pt;}
._11{width:20.765333pt;}
._f{width:21.682667pt;}
._1c{width:23.618496pt;}
._17{width:24.681888pt;}
._20{width:25.577376pt;}
._27{width:27.098667pt;}
._23{width:29.026667pt;}
._2c{width:30.426667pt;}
._21{width:31.525333pt;}
._25{width:33.141333pt;}
._16{width:38.617920pt;}
._28{width:42.509333pt;}
._22{width:48.208000pt;}
._2b{width:52.616800pt;}
._24{width:56.917333pt;}
._26{width:58.512000pt;}
._2a{width:60.664000pt;}
._c{width:63.466667pt;}
._29{width:66.424000pt;}
._e{width:224.896000pt;}
._d{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y289{bottom:94.369200pt;}
.y304{bottom:94.411867pt;}
.y349{bottom:94.438800pt;}
.y2c1{bottom:94.463467pt;}
.yd1{bottom:94.469600pt;}
.y1dc{bottom:94.477600pt;}
.yf6{bottom:94.480267pt;}
.y67{bottom:94.482933pt;}
.y117{bottom:94.485600pt;}
.y20{bottom:94.486267pt;}
.y220{bottom:94.488267pt;}
.y2e3{bottom:94.537867pt;}
.y326{bottom:94.635867pt;}
.y2b3{bottom:94.877467pt;}
.y40{bottom:97.150933pt;}
.yd0{bottom:109.805600pt;}
.y1db{bottom:109.813600pt;}
.yf5{bottom:109.816267pt;}
.y66{bottom:109.818933pt;}
.y1f{bottom:111.846267pt;}
.y348{bottom:111.918800pt;}
.y116{bottom:112.484267pt;}
.y288{bottom:112.523867pt;}
.y2e2{bottom:112.639867pt;}
.y2b2{bottom:112.986133pt;}
.y325{bottom:113.143867pt;}
.y242{bottom:113.595733pt;}
.y1c1{bottom:113.598400pt;}
.y8c{bottom:116.263733pt;}
.y2c0{bottom:117.141467pt;}
.y303{bottom:118.813867pt;}
.ycf{bottom:125.141600pt;}
.y1da{bottom:125.149600pt;}
.yf4{bottom:125.152267pt;}
.y65{bottom:127.817600pt;}
.y115{bottom:128.931733pt;}
.y1e{bottom:129.206267pt;}
.y347{bottom:129.398800pt;}
.y287{bottom:130.678533pt;}
.y1c0{bottom:131.597067pt;}
.y8b{bottom:132.706000pt;}
.yaf{bottom:132.708667pt;}
.y2b1{bottom:134.882133pt;}
.y19d{bottom:135.376667pt;}
.y3f{bottom:136.284400pt;}
.y15a{bottom:136.300133pt;}
.y2e1{bottom:136.411867pt;}
.y324{bottom:137.321867pt;}
.y2bf{bottom:139.819467pt;}
.yce{bottom:140.477600pt;}
.y1d9{bottom:140.485600pt;}
.yf3{bottom:143.150933pt;}
.y302{bottom:143.215867pt;}
.y64{bottom:144.257067pt;}
.y346{bottom:146.878800pt;}
.y114{bottom:146.930400pt;}
.y1bf{bottom:148.031333pt;}
.y8a{bottom:148.042000pt;}
.yae{bottom:148.044667pt;}
.y286{bottom:148.833200pt;}
.y21f{bottom:150.710000pt;}
.y262{bottom:151.607067pt;}
.y1fe{bottom:151.821467pt;}
.y159{bottom:154.301467pt;}
.y19c{bottom:154.489467pt;}
.y2e0{bottom:154.513867pt;}
.ycd{bottom:155.813600pt;}
.y323{bottom:155.829867pt;}
.y2b0{bottom:156.778133pt;}
.y3e{bottom:156.923067pt;}
.y1d{bottom:157.899600pt;}
.y1d8{bottom:158.484267pt;}
.y63{bottom:159.593067pt;}
.yf2{bottom:159.595733pt;}
.y301{bottom:161.947867pt;}
.y2be{bottom:162.497467pt;}
.y1be{bottom:163.367333pt;}
.y241{bottom:163.372667pt;}
.y17b{bottom:163.375333pt;}
.y89{bottom:163.378000pt;}
.y345{bottom:164.358800pt;}
.yad{bottom:166.043333pt;}
.y285{bottom:166.987867pt;}
.y1fd{bottom:167.157467pt;}
.y261{bottom:170.186533pt;}
.ycc{bottom:171.149600pt;}
.y158{bottom:172.302800pt;}
.y19b{bottom:173.602400pt;}
.y62{bottom:174.929067pt;}
.yf1{bottom:174.931733pt;}
.y3d{bottom:177.561733pt;}
.y2df{bottom:178.285867pt;}
.y2af{bottom:178.674133pt;}
.y1bd{bottom:178.703333pt;}
.y240{bottom:178.708667pt;}
.y17a{bottom:178.711333pt;}
.y322{bottom:180.007867pt;}
.y88{bottom:181.376667pt;}
.y344{bottom:181.838800pt;}
.y284{bottom:185.142533pt;}
.yac{bottom:185.156133pt;}
.y2bd{bottom:185.175467pt;}
.y300{bottom:186.349867pt;}
.ycb{bottom:186.485600pt;}
.y260{bottom:188.766000pt;}
.y61{bottom:190.265067pt;}
.y157{bottom:190.304133pt;}
.y19a{bottom:192.715200pt;}
.yf0{bottom:192.930400pt;}
.y1bc{bottom:194.039333pt;}
.y23f{bottom:194.044667pt;}
.y2de{bottom:196.387867pt;}
.y179{bottom:196.710000pt;}
.y87{bottom:197.824133pt;}
.y3c{bottom:198.200400pt;}
.y343{bottom:199.318800pt;}
.y2ae{bottom:200.570133pt;}
.y21e{bottom:201.603733pt;}
.y1c{bottom:201.712933pt;}
.y283{bottom:203.297200pt;}
.y2bc{bottom:204.066133pt;}
.y321{bottom:204.185867pt;}
.yab{bottom:204.269067pt;}
.yca{bottom:204.484267pt;}
.y2ff{bottom:205.081867pt;}
.y60{bottom:205.601067pt;}
.y25f{bottom:207.340933pt;}
.y5f{bottom:208.263733pt;}
.y156{bottom:208.305467pt;}
.y1bb{bottom:209.375333pt;}
.yef{bottom:209.378000pt;}
.y199{bottom:211.828133pt;}
.y23e{bottom:212.043333pt;}
.y178{bottom:213.154800pt;}
.y369{bottom:215.504667pt;}
.y86{bottom:215.822800pt;}
.y342{bottom:216.798800pt;}
.y2ad{bottom:218.678800pt;}
.y3b{bottom:218.849867pt;}
.y21d{bottom:219.602400pt;}
.y2dd{bottom:220.159867pt;}
.y1b{bottom:220.406267pt;}
.y135{bottom:220.515467pt;}
.y282{bottom:221.451867pt;}
.y320{bottom:222.693867pt;}
.yc9{bottom:223.597067pt;}
.y2fe{bottom:223.813867pt;}
.y1fc{bottom:224.329200pt;}
.y1ba{bottom:224.711333pt;}
.y25e{bottom:225.924933pt;}
.y155{bottom:226.306800pt;}
.y2bb{bottom:226.744133pt;}
.y5e{bottom:227.376667pt;}
.y177{bottom:228.490800pt;}
.y23d{bottom:231.156133pt;}
.y113{bottom:232.270400pt;}
.y368{bottom:233.504667pt;}
.y341{bottom:234.278800pt;}
.y21c{bottom:236.044533pt;}
.y2dc{bottom:238.261867pt;}
.y1a{bottom:239.071067pt;}
.y134{bottom:239.283467pt;}
.y3a{bottom:239.488533pt;}
.y281{bottom:239.606533pt;}
.y2ac{bottom:240.574800pt;}
.y31f{bottom:241.201867pt;}
.y1fb{bottom:242.391867pt;}
.yc8{bottom:242.710000pt;}
.yaa{bottom:243.403333pt;}
.y5d{bottom:243.816133pt;}
.y154{bottom:244.308133pt;}
.y25d{bottom:244.477200pt;}
.yee{bottom:246.489467pt;}
.y2fd{bottom:248.215867pt;}
.y2ba{bottom:249.422133pt;}
.y112{bottom:250.269067pt;}
.y198{bottom:250.927200pt;}
.y21b{bottom:251.380533pt;}
.y367{bottom:251.504667pt;}
.y340{bottom:251.758800pt;}
.y85{bottom:254.968933pt;}
.y19{bottom:256.431067pt;}
.y280{bottom:257.761200pt;}
.y133{bottom:258.051467pt;}
.y2ab{bottom:258.683467pt;}
.y5c{bottom:259.152133pt;}
.y39{bottom:260.127200pt;}
.y1fa{bottom:260.454533pt;}
.y1b9{bottom:261.822800pt;}
.ya9{bottom:262.033333pt;}
.y2db{bottom:262.033867pt;}
.y153{bottom:262.309467pt;}
.y25c{bottom:263.061200pt;}
.y31e{bottom:265.379867pt;}
.yed{bottom:265.602400pt;}
.y21a{bottom:266.716533pt;}
.y2fc{bottom:266.947867pt;}
.y33f{bottom:269.238800pt;}
.y197{bottom:269.311867pt;}
.y23c{bottom:269.381867pt;}
.y366{bottom:269.504667pt;}
.y2b9{bottom:272.100133pt;}
.y84{bottom:273.215600pt;}
.y18{bottom:273.791067pt;}
.y5b{bottom:274.488133pt;}
.y27f{bottom:275.915867pt;}
.y132{bottom:276.819467pt;}
.y1f9{bottom:278.517200pt;}
.y2da{bottom:280.135867pt;}
.y152{bottom:280.310800pt;}
.y2aa{bottom:280.579467pt;}
.ya8{bottom:280.687867pt;}
.y38{bottom:280.765867pt;}
.y25b{bottom:281.645200pt;}
.yc7{bottom:281.832267pt;}
.y31d{bottom:283.887867pt;}
.y219{bottom:284.715200pt;}
.y176{bottom:285.588400pt;}
.y2fb{bottom:285.679867pt;}
.y33e{bottom:286.718800pt;}
.y196{bottom:287.696533pt;}
.y111{bottom:289.402933pt;}
.y5a{bottom:289.824133pt;}
.y17{bottom:291.151067pt;}
.y83{bottom:291.462267pt;}
.y27e{bottom:294.070533pt;}
.y2b8{bottom:294.778133pt;}
.y131{bottom:295.593200pt;}
.y1f8{bottom:296.579867pt;}
.y151{bottom:298.312133pt;}
.y365{bottom:298.838000pt;}
.ya7{bottom:299.317867pt;}
.y25a{bottom:300.229200pt;}
.y1b8{bottom:301.007733pt;}
.yc6{bottom:301.044933pt;}
.y37{bottom:301.404533pt;}
.y2a9{bottom:302.475467pt;}
.y2d9{bottom:303.907867pt;}
.y175{bottom:304.049733pt;}
.y33d{bottom:304.198800pt;}
.y2fa{bottom:304.411867pt;}
.yec{bottom:304.731333pt;}
.y1d7{bottom:304.836800pt;}
.y195{bottom:306.081200pt;}
.y59{bottom:307.822800pt;}
.y31c{bottom:308.065867pt;}
.y110{bottom:308.400933pt;}
.y23b{bottom:308.507733pt;}
.y16{bottom:308.511067pt;}
.y82{bottom:309.708933pt;}
.y27d{bottom:312.225200pt;}
.y130{bottom:314.361200pt;}
.y1f7{bottom:314.642533pt;}
.y150{bottom:316.313467pt;}
.y2b7{bottom:317.456133pt;}
.ya6{bottom:317.947867pt;}
.y259{bottom:318.813200pt;}
.y1b7{bottom:319.576400pt;}
.y2a8{bottom:320.584133pt;}
.y33c{bottom:321.678800pt;}
.y36{bottom:322.043200pt;}
.y174{bottom:322.511067pt;}
.y1d6{bottom:323.083467pt;}
.y2f9{bottom:323.143867pt;}
.yeb{bottom:323.181333pt;}
.y218{bottom:323.860933pt;}
.y58{bottom:324.262267pt;}
.y15{bottom:325.871067pt;}
.y31b{bottom:326.573867pt;}
.y23a{bottom:326.800400pt;}
.y10f{bottom:327.398933pt;}
.y81{bottom:327.955600pt;}
.y27c{bottom:330.379867pt;}
.y1f6{bottom:332.705200pt;}
.y12f{bottom:333.169600pt;}
.y14f{bottom:334.366533pt;}
.y364{bottom:335.731333pt;}
.ya5{bottom:336.577867pt;}
.y258{bottom:337.397200pt;}
.y1b6{bottom:338.145067pt;}
.yc5{bottom:339.155333pt;}
.y33b{bottom:339.158800pt;}
.y57{bottom:339.598267pt;}
.y2b6{bottom:340.134133pt;}
.y173{bottom:340.972400pt;}
.y1d5{bottom:341.330133pt;}
.yea{bottom:341.612000pt;}
.y217{bottom:342.260933pt;}
.y2a7{bottom:342.480133pt;}
.y35{bottom:342.681867pt;}
.y194{bottom:342.850533pt;}
.y14{bottom:343.231067pt;}
.y239{bottom:345.093067pt;}
.y80{bottom:346.202267pt;}
.y10e{bottom:346.401200pt;}
.y2f8{bottom:347.545867pt;}
.y27b{bottom:348.534533pt;}
.y2d8{bottom:349.141867pt;}
.y31a{bottom:350.751867pt;}
.y1f5{bottom:350.767867pt;}
.y12e{bottom:351.937600pt;}
.y14e{bottom:352.367867pt;}
.y363{bottom:353.064667pt;}
.y56{bottom:354.934267pt;}
.ya4{bottom:355.207867pt;}
.y257{bottom:355.981200pt;}
.y33a{bottom:356.638800pt;}
.y1b5{bottom:356.713733pt;}
.y172{bottom:359.433733pt;}
.y1d4{bottom:359.576800pt;}
.ye9{bottom:360.042667pt;}
.y13{bottom:360.591067pt;}
.y216{bottom:360.660933pt;}
.y193{bottom:361.235200pt;}
.yc4{bottom:361.691333pt;}
.y2b5{bottom:362.812133pt;}
.y34{bottom:363.320533pt;}
.y238{bottom:363.385733pt;}
.y2a6{bottom:364.376133pt;}
.y7f{bottom:364.448933pt;}
.y10d{bottom:365.399200pt;}
.y2f7{bottom:366.277867pt;}
.y27a{bottom:366.689200pt;}
.y2d7{bottom:367.243867pt;}
.y1f4{bottom:368.830533pt;}
.y319{bottom:369.259867pt;}
.y55{bottom:370.270267pt;}
.y14d{bottom:370.369200pt;}
.y362{bottom:370.398000pt;}
.y12d{bottom:370.705600pt;}
.ya3{bottom:373.837867pt;}
.y339{bottom:374.118800pt;}
.y256{bottom:374.551600pt;}
.y1b4{bottom:375.282400pt;}
.y1d3{bottom:377.823467pt;}
.y171{bottom:377.895067pt;}
.y12{bottom:377.951067pt;}
.ye8{bottom:378.473333pt;}
.y215{bottom:379.115733pt;}
.y192{bottom:379.619867pt;}
.y237{bottom:381.677733pt;}
.y7e{bottom:382.695600pt;}
.y10c{bottom:384.419067pt;}
.y279{bottom:384.843867pt;}
.y2b4{bottom:385.490133pt;}
.y2a5{bottom:386.272133pt;}
.y1f3{bottom:386.893200pt;}
.y361{bottom:387.731333pt;}
.y318{bottom:387.767867pt;}
.y54{bottom:388.269067pt;}
.y14c{bottom:388.370533pt;}
.y2d6{bottom:389.125867pt;}
.y12c{bottom:389.473600pt;}
.y2f6{bottom:390.679867pt;}
.y338{bottom:391.598800pt;}
.ya2{bottom:392.467867pt;}
.y255{bottom:393.135600pt;}
.y1b3{bottom:393.851067pt;}
.y11{bottom:395.311067pt;}
.y1d2{bottom:396.070133pt;}
.y170{bottom:396.351600pt;}
.ye7{bottom:396.904000pt;}
.y214{bottom:397.515733pt;}
.y191{bottom:398.004533pt;}
.y236{bottom:399.970400pt;}
.y7d{bottom:400.942267pt;}
.y33{bottom:402.858400pt;}
.y278{bottom:402.998533pt;}
.y10b{bottom:403.417067pt;}
.y2a4{bottom:404.380800pt;}
.y1f2{bottom:404.955867pt;}
.y360{bottom:405.064667pt;}
.y14b{bottom:406.371867pt;}
.y2d5{bottom:407.227867pt;}
.y337{bottom:409.078800pt;}
.y2f5{bottom:409.411867pt;}
.ya1{bottom:411.115333pt;}
.y254{bottom:411.719600pt;}
.y317{bottom:411.945867pt;}
.y1b2{bottom:412.419733pt;}
.y10{bottom:412.671067pt;}
.y1d1{bottom:414.316800pt;}
.y16f{bottom:414.789200pt;}
.ye6{bottom:415.334667pt;}
.y213{bottom:415.915733pt;}
.y190{bottom:416.382933pt;}
.yc3{bottom:418.207867pt;}
.y235{bottom:418.260800pt;}
.y7c{bottom:419.188933pt;}
.y277{bottom:421.153200pt;}
.y35f{bottom:422.398000pt;}
.y10a{bottom:422.415067pt;}
.y1f1{bottom:423.018533pt;}
.y14a{bottom:424.373200pt;}
.y2a3{bottom:426.274400pt;}
.y336{bottom:426.558800pt;}
.y12b{bottom:427.009600pt;}
.y53{bottom:427.378800pt;}
.y2d4{bottom:429.109867pt;}
.ya0{bottom:429.745333pt;}
.yf{bottom:430.031067pt;}
.y253{bottom:430.303600pt;}
.y316{bottom:430.453867pt;}
.y1b1{bottom:430.988400pt;}
.y1d0{bottom:432.563467pt;}
.y16e{bottom:433.250533pt;}
.ye5{bottom:433.765333pt;}
.y2f4{bottom:433.813867pt;}
.y212{bottom:434.315733pt;}
.y18f{bottom:434.767600pt;}
.y234{bottom:436.553467pt;}
.yc2{bottom:437.420533pt;}
.y7b{bottom:437.435600pt;}
.y276{bottom:439.307867pt;}
.y35e{bottom:439.731333pt;}
.y1f0{bottom:441.081200pt;}
.y109{bottom:441.413067pt;}
.y149{bottom:442.374533pt;}
.y335{bottom:444.038800pt;}
.y12a{bottom:445.777600pt;}
.y2d3{bottom:447.211867pt;}
.ye{bottom:447.391067pt;}
.y52{bottom:448.216800pt;}
.y9f{bottom:448.375333pt;}
.y315{bottom:448.961867pt;}
.y1b0{bottom:449.557067pt;}
.y1cf{bottom:450.810133pt;}
.y16d{bottom:451.711867pt;}
.ye4{bottom:452.196000pt;}
.y211{bottom:452.715733pt;}
.y18e{bottom:453.130267pt;}
.y233{bottom:454.846133pt;}
.y7a{bottom:455.687333pt;}
.yc1{bottom:456.633200pt;}
.y35d{bottom:457.064667pt;}
.y275{bottom:457.462533pt;}
.y2f3{bottom:458.215867pt;}
.y1ef{bottom:459.150933pt;}
.y148{bottom:460.375867pt;}
.y108{bottom:460.411067pt;}
.y334{bottom:461.518800pt;}
.y129{bottom:464.545600pt;}
.yd{bottom:464.751067pt;}
.y2d2{bottom:465.313867pt;}
.y9e{bottom:467.005333pt;}
.y252{bottom:467.780667pt;}
.y1af{bottom:468.125733pt;}
.y51{bottom:469.054800pt;}
.y1ce{bottom:469.056800pt;}
.y16c{bottom:470.173200pt;}
.ye3{bottom:470.626667pt;}
.y210{bottom:471.115733pt;}
.y18d{bottom:471.514933pt;}
.y232{bottom:473.138800pt;}
.y314{bottom:473.139867pt;}
.y2a2{bottom:473.518267pt;}
.y298{bottom:473.533600pt;}
.y79{bottom:473.934000pt;}
.y35c{bottom:474.398000pt;}
.y274{bottom:475.617200pt;}
.yc0{bottom:475.845867pt;}
.y2f2{bottom:476.947867pt;}
.y1ee{bottom:477.213600pt;}
.y147{bottom:478.377200pt;}
.y333{bottom:478.998800pt;}
.y107{bottom:479.409067pt;}
.y32{bottom:481.488133pt;}
.yc{bottom:482.111067pt;}
.y128{bottom:483.313600pt;}
.y9d{bottom:485.635333pt;}
.y1ae{bottom:486.694400pt;}
.y2d1{bottom:487.195867pt;}
.y1cd{bottom:487.303467pt;}
.y16b{bottom:488.634533pt;}
.ye2{bottom:489.057333pt;}
.y20f{bottom:489.515733pt;}
.y50{bottom:489.892800pt;}
.y18c{bottom:489.899600pt;}
.y231{bottom:491.431467pt;}
.y313{bottom:491.647867pt;}
.y35b{bottom:491.731333pt;}
.y78{bottom:492.180667pt;}
.y297{bottom:493.650933pt;}
.y273{bottom:493.771867pt;}
.ybf{bottom:495.058533pt;}
.y1ed{bottom:495.283200pt;}
.y2a1{bottom:495.874267pt;}
.y146{bottom:496.378533pt;}
.y332{bottom:496.478800pt;}
.y106{bottom:498.407067pt;}
.y2f1{bottom:501.349867pt;}
.y127{bottom:502.081600pt;}
.y31{bottom:502.794800pt;}
.y9c{bottom:504.268800pt;}
.y1ad{bottom:505.263067pt;}
.y2d0{bottom:505.297867pt;}
.y1cc{bottom:505.550133pt;}
.y16a{bottom:507.081600pt;}
.ye1{bottom:507.488000pt;}
.y20e{bottom:507.915733pt;}
.y18b{bottom:508.284267pt;}
.y35a{bottom:509.064667pt;}
.y230{bottom:509.724133pt;}
.y77{bottom:510.447733pt;}
.y4f{bottom:510.722000pt;}
.yb{bottom:510.804400pt;}
.y272{bottom:511.926533pt;}
.y1ec{bottom:513.345867pt;}
.y296{bottom:513.768267pt;}
.y331{bottom:513.958800pt;}
.ybe{bottom:514.271200pt;}
.y145{bottom:514.379867pt;}
.y312{bottom:515.825867pt;}
.y105{bottom:517.405067pt;}
.y2a0{bottom:518.230267pt;}
.y2f0{bottom:520.081867pt;}
.y126{bottom:520.849600pt;}
.y9b{bottom:522.912800pt;}
.y2cf{bottom:523.399867pt;}
.y251{bottom:523.704667pt;}
.y1cb{bottom:523.796800pt;}
.y1ac{bottom:523.831733pt;}
.y30{bottom:524.104667pt;}
.y169{bottom:525.542933pt;}
.ye0{bottom:525.918667pt;}
.y20d{bottom:526.315733pt;}
.y359{bottom:526.398000pt;}
.y18a{bottom:526.668933pt;}
.y22f{bottom:528.013867pt;}
.y76{bottom:528.694400pt;}
.y271{bottom:530.081200pt;}
.y1eb{bottom:531.426133pt;}
.y330{bottom:531.438800pt;}
.y4e{bottom:531.560000pt;}
.y144{bottom:532.381200pt;}
.ybd{bottom:533.483867pt;}
.y295{bottom:533.885600pt;}
.y311{bottom:534.333867pt;}
.y104{bottom:536.403067pt;}
.y125{bottom:539.617600pt;}
.y29f{bottom:540.586267pt;}
.y9a{bottom:541.542800pt;}
.y1ca{bottom:542.043467pt;}
.y250{bottom:542.225200pt;}
.y1ab{bottom:542.400400pt;}
.y358{bottom:543.731333pt;}
.y168{bottom:544.004267pt;}
.y2f{bottom:544.078000pt;}
.ydf{bottom:544.360533pt;}
.y2ef{bottom:544.483867pt;}
.y20c{bottom:544.746267pt;}
.y189{bottom:545.053600pt;}
.y2ce{bottom:545.281867pt;}
.y22e{bottom:546.306533pt;}
.y75{bottom:546.941067pt;}
.y270{bottom:548.235867pt;}
.y32f{bottom:548.918800pt;}
.y1ea{bottom:549.488800pt;}
.y143{bottom:550.382533pt;}
.y4d{bottom:552.384800pt;}
.ybc{bottom:552.696533pt;}
.y310{bottom:552.841867pt;}
.y294{bottom:554.002933pt;}
.y103{bottom:555.401067pt;}
.y124{bottom:558.385600pt;}
.y99{bottom:560.172800pt;}
.y1c9{bottom:560.290133pt;}
.y24f{bottom:560.809200pt;}
.y1aa{bottom:560.969067pt;}
.y357{bottom:561.064667pt;}
.ya{bottom:562.178667pt;}
.y167{bottom:562.403867pt;}
.yde{bottom:562.791200pt;}
.y29e{bottom:562.942267pt;}
.y20b{bottom:563.146267pt;}
.y2ee{bottom:563.215867pt;}
.y2cd{bottom:563.383867pt;}
.y188{bottom:563.438267pt;}
.y2e{bottom:564.051333pt;}
.y22d{bottom:564.599200pt;}
.y74{bottom:565.187733pt;}
.y26f{bottom:566.390533pt;}
.y32e{bottom:566.398800pt;}
.y1e9{bottom:567.551467pt;}
.y142{bottom:568.383867pt;}
.ybb{bottom:571.899333pt;}
.y4c{bottom:573.222800pt;}
.y293{bottom:574.120267pt;}
.y102{bottom:574.416533pt;}
.y30f{bottom:577.019867pt;}
.y123{bottom:577.153600pt;}
.y356{bottom:578.398000pt;}
.y1c8{bottom:578.551200pt;}
.y98{bottom:578.802800pt;}
.y24e{bottom:579.393200pt;}
.y1a9{bottom:579.537733pt;}
.y166{bottom:580.865200pt;}
.ydd{bottom:581.221867pt;}
.y20a{bottom:581.546267pt;}
.y187{bottom:581.800933pt;}
.y22c{bottom:582.891867pt;}
.y73{bottom:583.434400pt;}
.y32d{bottom:583.878800pt;}
.y2d{bottom:584.024667pt;}
.y26e{bottom:584.545200pt;}
.y2cc{bottom:585.265867pt;}
.y29d{bottom:585.298267pt;}
.y1e8{bottom:585.614133pt;}
.y9{bottom:586.202667pt;}
.y141{bottom:586.385200pt;}
.y2ed{bottom:587.617867pt;}
.yba{bottom:591.112000pt;}
.y101{bottom:593.414533pt;}
.y4b{bottom:594.060800pt;}
.y292{bottom:594.237600pt;}
.y30e{bottom:595.527867pt;}
.y355{bottom:595.731333pt;}
.y122{bottom:595.953200pt;}
.y1c7{bottom:596.797867pt;}
.y97{bottom:597.471200pt;}
.y24d{bottom:597.977200pt;}
.y1a8{bottom:598.120667pt;}
.y165{bottom:599.326533pt;}
.ydc{bottom:599.652533pt;}
.y209{bottom:599.946267pt;}
.y186{bottom:600.185600pt;}
.y22b{bottom:601.184533pt;}
.y32c{bottom:601.358800pt;}
.y72{bottom:601.681067pt;}
.y26d{bottom:602.699867pt;}
.y2cb{bottom:603.367867pt;}
.y1e7{bottom:603.676800pt;}
.y2c{bottom:603.998000pt;}
.y140{bottom:604.386533pt;}
.y2ec{bottom:606.349867pt;}
.y29c{bottom:607.654267pt;}
.yb9{bottom:610.274533pt;}
.y100{bottom:612.412533pt;}
.y354{bottom:613.064667pt;}
.y30d{bottom:614.035867pt;}
.y291{bottom:614.354933pt;}
.y121{bottom:614.721200pt;}
.y4a{bottom:614.885600pt;}
.y1c6{bottom:615.051600pt;}
.y96{bottom:616.101200pt;}
.y24c{bottom:616.561200pt;}
.y1a7{bottom:616.689333pt;}
.y164{bottom:617.787867pt;}
.ydb{bottom:618.083200pt;}
.y208{bottom:618.346267pt;}
.y185{bottom:618.570267pt;}
.y22a{bottom:619.477200pt;}
.y71{bottom:619.927733pt;}
.y26c{bottom:620.854533pt;}
.y1e6{bottom:621.774533pt;}
.y13f{bottom:622.387867pt;}
.y2b{bottom:623.971333pt;}
.y2ca{bottom:625.249867pt;}
.y8{bottom:629.110000pt;}
.yb8{bottom:629.487200pt;}
.y29b{bottom:630.010267pt;}
.y32b{bottom:630.172133pt;}
.y353{bottom:630.398000pt;}
.y2eb{bottom:630.751867pt;}
.yff{bottom:631.410533pt;}
.y1c5{bottom:633.298267pt;}
.y120{bottom:633.489200pt;}
.y290{bottom:634.472267pt;}
.y95{bottom:634.731200pt;}
.y24b{bottom:635.145200pt;}
.y1a6{bottom:635.258000pt;}
.y49{bottom:635.723600pt;}
.y163{bottom:636.249200pt;}
.yda{bottom:636.513867pt;}
.y207{bottom:636.758533pt;}
.y184{bottom:636.954933pt;}
.y229{bottom:637.769867pt;}
.y70{bottom:638.174400pt;}
.y30c{bottom:638.213867pt;}
.y26b{bottom:639.009200pt;}
.y1e5{bottom:639.837200pt;}
.y13e{bottom:640.389200pt;}
.y2c9{bottom:643.351867pt;}
.y2a{bottom:643.944667pt;}
.y352{bottom:647.731333pt;}
.yb7{bottom:648.699867pt;}
.y2ea{bottom:649.483867pt;}
.yfe{bottom:650.408533pt;}
.y11f{bottom:652.257200pt;}
.y29a{bottom:652.366267pt;}
.y94{bottom:653.361200pt;}
.y24a{bottom:653.729200pt;}
.y1a5{bottom:653.826667pt;}
.y28f{bottom:654.589600pt;}
.y162{bottom:654.710533pt;}
.yd9{bottom:654.944533pt;}
.y206{bottom:655.158533pt;}
.y183{bottom:655.339600pt;}
.y228{bottom:656.062533pt;}
.y6f{bottom:656.421067pt;}
.y48{bottom:656.561600pt;}
.y30b{bottom:656.721867pt;}
.y7{bottom:657.142000pt;}
.y26a{bottom:657.163867pt;}
.y1e4{bottom:657.899867pt;}
.y13d{bottom:658.390533pt;}
.y2c8{bottom:661.453867pt;}
.y29{bottom:663.918000pt;}
.y351{bottom:665.064667pt;}
.yb6{bottom:667.912533pt;}
.yfd{bottom:669.406533pt;}
.y1c4{bottom:670.454800pt;}
.y11e{bottom:671.025200pt;}
.y93{bottom:671.991200pt;}
.y249{bottom:672.313200pt;}
.y1a4{bottom:672.413333pt;}
.y161{bottom:673.171867pt;}
.yd8{bottom:673.380133pt;}
.y205{bottom:673.582933pt;}
.y182{bottom:673.724267pt;}
.y2e9{bottom:673.885867pt;}
.y227{bottom:674.353600pt;}
.y6e{bottom:674.667733pt;}
.y28e{bottom:674.706933pt;}
.y299{bottom:674.722267pt;}
.y269{bottom:675.318533pt;}
.y1e3{bottom:675.962533pt;}
.y13c{bottom:676.391867pt;}
.y47{bottom:677.377600pt;}
.y2c7{bottom:679.555867pt;}
.y30a{bottom:680.899867pt;}
.y32a{bottom:681.674933pt;}
.y350{bottom:682.398000pt;}
.y28{bottom:683.891333pt;}
.y6{bottom:685.174000pt;}
.yb5{bottom:687.125200pt;}
.yfc{bottom:688.404533pt;}
.y11d{bottom:689.793200pt;}
.y92{bottom:690.621200pt;}
.y248{bottom:690.897200pt;}
.y1a3{bottom:690.982000pt;}
.y160{bottom:691.633200pt;}
.yd7{bottom:691.810800pt;}
.y204{bottom:691.982933pt;}
.y1c3{bottom:692.036800pt;}
.y181{bottom:692.108933pt;}
.y2e8{bottom:692.617867pt;}
.y226{bottom:692.646267pt;}
.y6d{bottom:692.914400pt;}
.y268{bottom:693.473200pt;}
.y1e2{bottom:694.025200pt;}
.y13b{bottom:694.393200pt;}
.y28d{bottom:694.821067pt;}
.y46{bottom:698.215600pt;}
.y309{bottom:699.407867pt;}
.y34f{bottom:699.731333pt;}
.y2c6{bottom:701.437867pt;}
.y27{bottom:703.864667pt;}
.y329{bottom:705.810933pt;}
.yb4{bottom:706.337867pt;}
.yfb{bottom:707.402533pt;}
.y11c{bottom:708.561200pt;}
.y91{bottom:709.251200pt;}
.y247{bottom:709.481200pt;}
.y1a2{bottom:709.550667pt;}
.y15f{bottom:710.094533pt;}
.yd6{bottom:710.241467pt;}
.y203{bottom:710.382933pt;}
.y180{bottom:710.481067pt;}
.y225{bottom:710.938933pt;}
.y6c{bottom:711.161067pt;}
.y267{bottom:711.627867pt;}
.y1e1{bottom:712.087867pt;}
.y13a{bottom:712.394533pt;}
.y2e7{bottom:717.019867pt;}
.y34e{bottom:717.064667pt;}
.y45{bottom:719.053600pt;}
.y2c5{bottom:719.539867pt;}
.y308{bottom:723.585867pt;}
.y26{bottom:723.838000pt;}
.yb3{bottom:725.550533pt;}
.yfa{bottom:726.409200pt;}
.y11b{bottom:727.329200pt;}
.y90{bottom:727.881200pt;}
.y246{bottom:728.065200pt;}
.y1a1{bottom:728.119333pt;}
.y15e{bottom:728.555867pt;}
.yd5{bottom:728.675333pt;}
.y202{bottom:728.782933pt;}
.y17f{bottom:728.865733pt;}
.y224{bottom:729.231600pt;}
.y6b{bottom:729.414533pt;}
.y266{bottom:729.782533pt;}
.y1e0{bottom:730.150533pt;}
.y139{bottom:730.395867pt;}
.y34d{bottom:734.398000pt;}
.y2e6{bottom:735.751867pt;}
.y5{bottom:739.650000pt;}
.y44{bottom:739.891600pt;}
.y2c4{bottom:741.421867pt;}
.y28c{bottom:742.049200pt;}
.y307{bottom:742.093867pt;}
.y25{bottom:743.811333pt;}
.yb2{bottom:744.763200pt;}
.yf9{bottom:745.407200pt;}
.y11a{bottom:746.097200pt;}
.y8f{bottom:746.511200pt;}
.y245{bottom:746.649200pt;}
.y1a0{bottom:746.688000pt;}
.y15d{bottom:747.017200pt;}
.yd4{bottom:747.106000pt;}
.y201{bottom:747.201200pt;}
.y17e{bottom:747.250400pt;}
.y223{bottom:747.523600pt;}
.y1c2{bottom:747.646933pt;}
.y6a{bottom:747.661200pt;}
.y265{bottom:747.937200pt;}
.y1df{bottom:748.213200pt;}
.y138{bottom:748.397200pt;}
.y34c{bottom:751.731333pt;}
.y4{bottom:758.343333pt;}
.y2e5{bottom:760.153867pt;}
.y306{bottom:760.601867pt;}
.y43{bottom:760.729600pt;}
.y28b{bottom:762.166533pt;}
.y2c3{bottom:763.303867pt;}
.y24{bottom:763.784667pt;}
.yb1{bottom:763.975867pt;}
.yf8{bottom:764.405200pt;}
.y119{bottom:764.865200pt;}
.y8e{bottom:765.141200pt;}
.y244{bottom:765.233200pt;}
.y19f{bottom:765.260267pt;}
.y15c{bottom:765.478533pt;}
.yd3{bottom:765.539867pt;}
.y200{bottom:765.601200pt;}
.y17d{bottom:765.635067pt;}
.y222{bottom:765.816267pt;}
.y69{bottom:765.907867pt;}
.y264{bottom:766.091867pt;}
.y1de{bottom:766.275867pt;}
.y137{bottom:766.398533pt;}
.y328{bottom:766.999867pt;}
.y34b{bottom:769.064667pt;}
.y2e4{bottom:778.885867pt;}
.y2c2{bottom:781.405867pt;}
.y42{bottom:781.563200pt;}
.y28a{bottom:782.283867pt;}
.yb0{bottom:783.188533pt;}
.yf7{bottom:783.403200pt;}
.y118{bottom:783.633200pt;}
.y23{bottom:783.758000pt;}
.y8d{bottom:783.771200pt;}
.y243{bottom:783.817200pt;}
.y19e{bottom:783.832533pt;}
.y15b{bottom:783.939867pt;}
.yd2{bottom:783.970533pt;}
.y1ff{bottom:784.001200pt;}
.y17c{bottom:784.016533pt;}
.y221{bottom:784.108533pt;}
.y68{bottom:784.154533pt;}
.y263{bottom:784.246533pt;}
.y1dd{bottom:784.338533pt;}
.y136{bottom:784.399867pt;}
.y3{bottom:784.596667pt;}
.y305{bottom:784.779867pt;}
.y327{bottom:785.143867pt;}
.y34a{bottom:786.398000pt;}
.y41{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.h12{height:19.307320pt;}
.h1c{height:27.259805pt;}
.h10{height:36.106613pt;}
.ha{height:36.107146pt;}
.hb{height:41.562500pt;}
.h11{height:46.757812pt;}
.h26{height:49.322917pt;}
.h4{height:51.953125pt;}
.h9{height:52.977865pt;}
.h3{height:54.550781pt;}
.h1b{height:59.672494pt;}
.h8{height:59.746094pt;}
.h1d{height:59.747694pt;}
.h1e{height:59.748760pt;}
.h1f{height:59.752494pt;}
.h21{height:59.755160pt;}
.h20{height:59.757827pt;}
.h19{height:59.758894pt;}
.hc{height:59.763694pt;}
.h25{height:59.764227pt;}
.h18{height:59.765294pt;}
.hf{height:59.781294pt;}
.h24{height:59.782360pt;}
.h14{height:59.785560pt;}
.h1a{height:59.796227pt;}
.he{height:59.798894pt;}
.h23{height:59.800494pt;}
.h16{height:59.803160pt;}
.hd{height:59.834094pt;}
.h17{height:59.841027pt;}
.h13{height:59.946627pt;}
.h15{height:59.993027pt;}
.h22{height:59.999960pt;}
.h2{height:64.941406pt;}
.h7{height:70.136719pt;}
.h6{height:72.734375pt;}
.h5{height:93.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.934933pt;}
.x13{left:73.079333pt;}
.x1{left:74.079333pt;}
.x5{left:75.627200pt;}
.xb{left:76.548267pt;}
.xa{left:91.044133pt;}
.x9{left:92.199733pt;}
.x6{left:93.467200pt;}
.x4{left:94.547200pt;}
.xc{left:96.455733pt;}
.xf{left:127.642400pt;}
.x7{left:188.728000pt;}
.x3{left:206.113600pt;}
.x2{left:207.418000pt;}
.x12{left:327.297733pt;}
.x10{left:328.739067pt;}
.xe{left:346.927733pt;}
.xd{left:348.001067pt;}
.x11{left:381.255733pt;}
}




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