
    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_7c11d73be41348087fc2b4d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_fa5edff88f077deff3ebef19.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002000;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_ca57cf6c038312e52ae9f06c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.684000;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_d15fdd18fda659802a3cc0b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.887000;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_73b73d2a574c1fc3cea1d879.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686000;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_71861bc2636184e0c2349f52.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.170000;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_621ca0a81ec34f799737f9e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ad348580ad193a5a4cddaaad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.647000;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_a696ab6f092efc41c020513e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4af87054f1f2b62d004e5e2c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2abe12c638747afe017021ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c6461525b00eec6859447193.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7fa5673d292db93d6f91bd67.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_59b2007625678ff5e1385342.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_63baae4caa4dc97838dd7a7d.woff2')format("woff");}.fff{font-family:fff;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1e7ed7f943466c53401015bb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f95fe8c64e8af6e67778ca7f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6901f775e6b22004850e46d2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_d61f6f6a61abb28f0618e0a8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_373a64b744643339b685c57f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_2f43663c3b561a6f15886adb.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.170000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v4{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v3{vertical-align:32.880000px;}
.ls8{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000312px;}
.ls16{letter-spacing:0.000538px;}
.ls21{letter-spacing:0.000767px;}
.ls67{letter-spacing:0.002246px;}
.ls4c{letter-spacing:0.002481px;}
.ls0{letter-spacing:0.002525px;}
.ls22{letter-spacing:0.003031px;}
.ls13{letter-spacing:0.003269px;}
.ls3c{letter-spacing:0.004172px;}
.ls2e{letter-spacing:0.004200px;}
.ls2{letter-spacing:0.004738px;}
.ls1c{letter-spacing:0.004896px;}
.ls2c{letter-spacing:0.464387px;}
.ls37{letter-spacing:1.614538px;}
.ls38{letter-spacing:1.616446px;}
.ls23{letter-spacing:2.984525px;}
.lsd{letter-spacing:2.986894px;}
.ls2f{letter-spacing:2.988615px;}
.ls1a{letter-spacing:2.990525px;}
.ls25{letter-spacing:2.991954px;}
.ls65{letter-spacing:3.002207px;}
.ls5e{letter-spacing:3.443602px;}
.ls1e{letter-spacing:4.000868px;}
.ls39{letter-spacing:4.616207px;}
.ls41{letter-spacing:4.688646px;}
.ls9{letter-spacing:4.841856px;}
.lsa{letter-spacing:4.949453px;}
.lsc{letter-spacing:5.003251px;}
.ls51{letter-spacing:5.213596px;}
.lsb{letter-spacing:5.218445px;}
.ls60{letter-spacing:6.517690px;}
.ls5f{letter-spacing:8.297139px;}
.ls5c{letter-spacing:9.956338px;}
.ls5b{letter-spacing:9.962338px;}
.ls1b{letter-spacing:9.982525px;}
.ls53{letter-spacing:10.784446px;}
.ls52{letter-spacing:10.788538px;}
.ls29{letter-spacing:13.284538px;}
.ls54{letter-spacing:13.784207px;}
.ls50{letter-spacing:16.326538px;}
.ls28{letter-spacing:16.598338px;}
.ls3a{letter-spacing:16.598727px;}
.ls2d{letter-spacing:16.602538px;}
.ls19{letter-spacing:16.604338px;}
.ls2b{letter-spacing:16.604400px;}
.ls45{letter-spacing:16.604446px;}
.ls5d{letter-spacing:17.066387px;}
.ls4d{letter-spacing:17.980200px;}
.ls66{letter-spacing:18.323937px;}
.ls30{letter-spacing:19.048200px;}
.ls18{letter-spacing:19.592525px;}
.ls24{letter-spacing:19.593954px;}
.ls49{letter-spacing:19.604207px;}
.ls55{letter-spacing:19.856207px;}
.ls58{letter-spacing:19.914493px;}
.ls7{letter-spacing:19.916316px;}
.ls59{letter-spacing:19.918200px;}
.ls6{letter-spacing:19.922316px;}
.ls3e{letter-spacing:20.342338px;}
.ls40{letter-spacing:20.345607px;}
.ls3b{letter-spacing:20.346538px;}
.ls3f{letter-spacing:20.351306px;}
.ls46{letter-spacing:20.565269px;}
.ls1d{letter-spacing:20.602868px;}
.ls43{letter-spacing:21.375411px;}
.ls4e{letter-spacing:21.380727px;}
.ls1f{letter-spacing:21.381269px;}
.ls12{letter-spacing:21.381411px;}
.ls4b{letter-spacing:21.382200px;}
.lse{letter-spacing:21.412118px;}
.ls15{letter-spacing:21.786305px;}
.ls2a{letter-spacing:21.815596px;}
.ls5{letter-spacing:22.112316px;}
.ls4{letter-spacing:22.118316px;}
.ls32{letter-spacing:22.250387px;}
.ls10{letter-spacing:22.516894px;}
.ls3d{letter-spacing:23.335140px;}
.ls42{letter-spacing:23.446200px;}
.ls63{letter-spacing:23.530172px;}
.ls33{letter-spacing:24.243269px;}
.ls48{letter-spacing:24.825652px;}
.ls17{letter-spacing:24.906065px;}
.ls62{letter-spacing:25.625607px;}
.ls56{letter-spacing:25.820727px;}
.ls44{letter-spacing:26.072646px;}
.ls57{letter-spacing:26.436305px;}
.ls27{letter-spacing:26.573139px;}
.ls31{letter-spacing:26.597596px;}
.lsf{letter-spacing:27.142894px;}
.ls34{letter-spacing:27.683602px;}
.ls61{letter-spacing:27.778172px;}
.ls4f{letter-spacing:27.895690px;}
.ls36{letter-spacing:27.901690px;}
.ls11{letter-spacing:29.632894px;}
.ls14{letter-spacing:29.883008px;}
.ls5a{letter-spacing:29.884893px;}
.ls20{letter-spacing:29.890893px;}
.ls3{letter-spacing:30.624532px;}
.ls64{letter-spacing:31.366172px;}
.ls35{letter-spacing:32.543139px;}
.ls47{letter-spacing:33.850893px;}
.ls26{letter-spacing:35.435139px;}
.ls1{letter-spacing:50.804525px;}
.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;}
}
.ws97{word-spacing:-59.775600px;}
.ws8e{word-spacing:-34.364992px;}
.wsc0{word-spacing:-31.376212px;}
.ws3e{word-spacing:-30.545332px;}
.ws4{word-spacing:-29.881822px;}
.ws60{word-spacing:-27.641618px;}
.ws105{word-spacing:-16.611639px;}
.ws4f{word-spacing:-16.551864px;}
.ws57{word-spacing:-16.492088px;}
.ws28{word-spacing:-16.312761px;}
.ws135{word-spacing:-16.193210px;}
.ws52{word-spacing:-16.073659px;}
.ws6a{word-spacing:-15.954108px;}
.ws11b{word-spacing:-15.894332px;}
.ws7b{word-spacing:-15.715005px;}
.ws34{word-spacing:-15.655230px;}
.ws145{word-spacing:-15.535678px;}
.ws96{word-spacing:-15.302554px;}
.ws180{word-spacing:-15.267986px;}
.ws150{word-spacing:-15.106591px;}
.wsf1{word-spacing:-15.057474px;}
.ws186{word-spacing:-15.052792px;}
.ws16e{word-spacing:-14.945196px;}
.wsca{word-spacing:-14.878147px;}
.ws11d{word-spacing:-14.698820px;}
.ws50{word-spacing:-14.579269px;}
.wsa5{word-spacing:-14.525471px;}
.ws151{word-spacing:-14.461010px;}
.ws122{word-spacing:-14.459718px;}
.ws55{word-spacing:-14.451042px;}
.ws54{word-spacing:-14.449877px;}
.ws53{word-spacing:-14.447063px;}
.ws87{word-spacing:-14.160840px;}
.ws19d{word-spacing:-14.138220px;}
.ws132{word-spacing:-14.041288px;}
.ws154{word-spacing:-13.976824px;}
.ws13c{word-spacing:-13.921737px;}
.wsb5{word-spacing:-13.802186px;}
.ws140{word-spacing:-13.742410px;}
.wsfa{word-spacing:-13.682635px;}
.wse8{word-spacing:-13.622859px;}
.wsb{word-spacing:-13.438840px;}
.ws130{word-spacing:-13.383757px;}
.ws4a{word-spacing:-13.264206px;}
.ws48{word-spacing:-13.204430px;}
.ws72{word-spacing:-13.144654px;}
.wsff{word-spacing:-13.084879px;}
.wsbb{word-spacing:-13.025103px;}
.ws7f{word-spacing:-12.965328px;}
.wsde{word-spacing:-12.786001px;}
.ws10b{word-spacing:-12.726225px;}
.ws9b{word-spacing:-12.666450px;}
.ws128{word-spacing:-12.606674px;}
.wsae{word-spacing:-12.552876px;}
.ws45{word-spacing:-12.546898px;}
.wse9{word-spacing:-12.493100px;}
.ws51{word-spacing:-12.487123px;}
.ws16c{word-spacing:-12.416671px;}
.ws6e{word-spacing:-12.367572px;}
.ws155{word-spacing:-12.309074px;}
.ws81{word-spacing:-12.307796px;}
.ws148{word-spacing:-12.248020px;}
.ws153{word-spacing:-12.201477px;}
.wsdd{word-spacing:-12.188245px;}
.ws164{word-spacing:-12.136209px;}
.ws166{word-spacing:-12.093880px;}
.ws16f{word-spacing:-12.040082px;}
.wsda{word-spacing:-12.008918px;}
.wsd9{word-spacing:-11.964381px;}
.wsd7{word-spacing:-11.949142px;}
.ws15{word-spacing:-11.932485px;}
.ws18a{word-spacing:-11.878687px;}
.ws89{word-spacing:-11.829591px;}
.ws19f{word-spacing:-11.771090px;}
.wsb9{word-spacing:-11.710040px;}
.ws65{word-spacing:-11.609695px;}
.ws8b{word-spacing:-11.590489px;}
.wsf7{word-spacing:-11.530713px;}
.wsa0{word-spacing:-11.476915px;}
.ws5a{word-spacing:-11.470938px;}
.ws120{word-spacing:-11.411162px;}
.ws11{word-spacing:-11.394501px;}
.ws136{word-spacing:-11.351386px;}
.wsf2{word-spacing:-11.291611px;}
.ws194{word-spacing:-11.286904px;}
.wsb2{word-spacing:-11.231835px;}
.wsed{word-spacing:-11.172060px;}
.ws10e{word-spacing:-11.112284px;}
.ws4d{word-spacing:-10.992733px;}
.ws38{word-spacing:-10.910316px;}
.wscf{word-spacing:-10.879159px;}
.ws1d{word-spacing:-10.802719px;}
.wse4{word-spacing:-10.717091px;}
.wsdf{word-spacing:-10.693855px;}
.ws113{word-spacing:-10.634079px;}
.ws163{word-spacing:-10.587525px;}
.ws13f{word-spacing:-10.574304px;}
.wsf{word-spacing:-10.533727px;}
.ws13b{word-spacing:-10.514528px;}
.ws43{word-spacing:-10.454752px;}
.ws8a{word-spacing:-10.394977px;}
.ws6f{word-spacing:-10.335201px;}
.wsef{word-spacing:-10.275426px;}
.ws10d{word-spacing:-10.215650px;}
.ws1a5{word-spacing:-10.157138px;}
.ws83{word-spacing:-10.155874px;}
.ws137{word-spacing:-10.059088px;}
.ws99{word-spacing:-10.042301px;}
.ws22{word-spacing:-9.987474px;}
.wsac{word-spacing:-9.982525px;}
.ws24{word-spacing:-9.976578px;}
.ws2{word-spacing:-9.976548px;}
.ws23{word-spacing:-9.964128px;}
.wseb{word-spacing:-9.960381px;}
.ws25{word-spacing:-9.941979px;}
.wsd5{word-spacing:-9.916772px;}
.ws124{word-spacing:-9.856996px;}
.ws14f{word-spacing:-9.834348px;}
.wsfc{word-spacing:-9.797221px;}
.ws77{word-spacing:-9.737445px;}
.ws4c{word-spacing:-9.677670px;}
.ws17f{word-spacing:-9.672952px;}
.ws152{word-spacing:-9.565356px;}
.ws82{word-spacing:-9.498343px;}
.ws3f{word-spacing:-9.438567px;}
.ws101{word-spacing:-9.378792px;}
.ws17{word-spacing:-9.350162px;}
.ws14d{word-spacing:-9.339863px;}
.ws142{word-spacing:-9.319016px;}
.ws71{word-spacing:-9.259240px;}
.ws5{word-spacing:-9.242565px;}
.ws1a0{word-spacing:-9.235064px;}
.ws179{word-spacing:-9.229446px;}
.ws181{word-spacing:-9.224640px;}
.ws19a{word-spacing:-9.212903px;}
.ws93{word-spacing:-9.205442px;}
.wsf3{word-spacing:-9.199465px;}
.wsd3{word-spacing:-9.191846px;}
.ws6{word-spacing:-9.188767px;}
.wsa4{word-spacing:-9.184851px;}
.ws92{word-spacing:-9.145667px;}
.ws11a{word-spacing:-9.139689px;}
.ws126{word-spacing:-9.079914px;}
.ws8d{word-spacing:-9.020138px;}
.ws16a{word-spacing:-8.973573px;}
.ws125{word-spacing:-8.960362px;}
.ws7a{word-spacing:-8.900587px;}
.ws1a6{word-spacing:-8.865976px;}
.ws56{word-spacing:-8.840811px;}
.wsdb{word-spacing:-8.805324px;}
.wsba{word-spacing:-8.781036px;}
.ws15b{word-spacing:-8.758380px;}
.ws10c{word-spacing:-8.721260px;}
.ws104{word-spacing:-8.661484px;}
.ws10f{word-spacing:-8.601709px;}
.ws46{word-spacing:-8.541933px;}
.wsea{word-spacing:-8.424820px;}
.ws100{word-spacing:-8.422382px;}
.ws6b{word-spacing:-8.362606px;}
.ws138{word-spacing:-8.302831px;}
.ws58{word-spacing:-8.243055px;}
.ws9{word-spacing:-8.220396px;}
.ws143{word-spacing:-8.183280px;}
.wsdc{word-spacing:-8.129482px;}
.ws3c{word-spacing:-8.123504px;}
.ws167{word-spacing:-8.112799px;}
.ws3a{word-spacing:-8.111473px;}
.ws86{word-spacing:-8.063728px;}
.ws103{word-spacing:-8.003953px;}
.ws73{word-spacing:-7.884402px;}
.wse7{word-spacing:-7.824626px;}
.ws173{word-spacing:-7.790008px;}
.ws1f{word-spacing:-7.771328px;}
.ws20{word-spacing:-7.769117px;}
.ws131{word-spacing:-7.765535px;}
.ws21{word-spacing:-7.764850px;}
.ws1ab{word-spacing:-7.628613px;}
.ws44{word-spacing:-7.585524px;}
.ws13a{word-spacing:-7.525748px;}
.ws17e{word-spacing:-7.413420px;}
.ws42{word-spacing:-7.406197px;}
.ws102{word-spacing:-7.352399px;}
.ws76{word-spacing:-7.346421px;}
.wse1{word-spacing:-7.286646px;}
.ws6c{word-spacing:-7.226870px;}
.wsd6{word-spacing:-7.167094px;}
.wsaa{word-spacing:-7.113296px;}
.ws4e{word-spacing:-6.987768px;}
.wsc{word-spacing:-6.983032px;}
.wsee{word-spacing:-6.927992px;}
.ws7e{word-spacing:-6.868216px;}
.ws41{word-spacing:-6.814418px;}
.ws110{word-spacing:-6.808441px;}
.ws119{word-spacing:-6.768598px;}
.ws177{word-spacing:-6.767839px;}
.wsf0{word-spacing:-6.748665px;}
.ws49{word-spacing:-6.710954px;}
.wse0{word-spacing:-6.694867px;}
.ws108{word-spacing:-6.688890px;}
.ws114{word-spacing:-6.629114px;}
.ws69{word-spacing:-6.509563px;}
.ws1a7{word-spacing:-6.498847px;}
.ws147{word-spacing:-6.449787px;}
.ws16{word-spacing:-6.445048px;}
.ws14c{word-spacing:-6.391250px;}
.ws14b{word-spacing:-6.387834px;}
.wsa3{word-spacing:-6.336214px;}
.ws90{word-spacing:-6.330236px;}
.wsa2{word-spacing:-6.276438px;}
.ws139{word-spacing:-6.210685px;}
.ws8c{word-spacing:-6.150909px;}
.ws70{word-spacing:-6.091134px;}
.ws16d{word-spacing:-6.068460px;}
.ws1b{word-spacing:-6.014661px;}
.ws3d{word-spacing:-5.971582px;}
.wsf6{word-spacing:-5.911807px;}
.ws40{word-spacing:-5.792256px;}
.ws174{word-spacing:-5.745669px;}
.ws6d{word-spacing:-5.732480px;}
.ws188{word-spacing:-5.691871px;}
.ws80{word-spacing:-5.672704px;}
.wsd0{word-spacing:-5.618906px;}
.ws88{word-spacing:-5.612929px;}
.ws144{word-spacing:-5.553153px;}
.wsbc{word-spacing:-5.517889px;}
.wsbe{word-spacing:-5.493378px;}
.ws16b{word-spacing:-5.476677px;}
.wsb1{word-spacing:-5.373826px;}
.ws176{word-spacing:-5.315282px;}
.wsf5{word-spacing:-5.314051px;}
.ws30{word-spacing:-5.272243px;}
.ws13e{word-spacing:-5.074948px;}
.ws12f{word-spacing:-5.015173px;}
.wsf9{word-spacing:-4.955397px;}
.wsfb{word-spacing:-4.895622px;}
.ws12b{word-spacing:-4.825218px;}
.wscb{word-spacing:-4.782048px;}
.ws129{word-spacing:-4.777298px;}
.ws11c{word-spacing:-4.776070px;}
.ws123{word-spacing:-4.716295px;}
.ws91{word-spacing:-4.656519px;}
.wsf8{word-spacing:-4.596744px;}
.wse{word-spacing:-4.562104px;}
.ws106{word-spacing:-4.536968px;}
.ws1e{word-spacing:-4.491153px;}
.wse3{word-spacing:-4.417417px;}
.ws14{word-spacing:-4.400709px;}
.ws12a{word-spacing:-4.357641px;}
.ws10a{word-spacing:-4.297866px;}
.wse5{word-spacing:-4.196954px;}
.wse6{word-spacing:-4.192298px;}
.wsce{word-spacing:-4.184292px;}
.ws133{word-spacing:-4.178314px;}
.ws190{word-spacing:-4.131717px;}
.ws109{word-spacing:-4.118539px;}
.wsbf{word-spacing:-4.058763px;}
.wscc{word-spacing:-4.004965px;}
.ws192{word-spacing:-3.970322px;}
.ws79{word-spacing:-3.939212px;}
.ws169{word-spacing:-3.916524px;}
.wse2{word-spacing:-3.879436px;}
.ws3b{word-spacing:-3.877869px;}
.ws74{word-spacing:-3.759885px;}
.wsa{word-spacing:-3.755128px;}
.ws107{word-spacing:-3.700110px;}
.ws112{word-spacing:-3.580558px;}
.ws12d{word-spacing:-3.520783px;}
.ws111{word-spacing:-3.461007px;}
.ws4b{word-spacing:-3.436298px;}
.ws9a{word-spacing:-3.407209px;}
.ws1a8{word-spacing:-3.324741px;}
.ws75{word-spacing:-3.281680px;}
.ws157{word-spacing:-3.270943px;}
.ws156{word-spacing:-3.217144px;}
.wsd{word-spacing:-3.163346px;}
.ws13d{word-spacing:-3.102354px;}
.ws19e{word-spacing:-3.055749px;}
.ws12e{word-spacing:-3.042578px;}
.ws7d{word-spacing:-2.923027px;}
.wsec{word-spacing:-2.863251px;}
.wsfe{word-spacing:-2.803476px;}
.ws193{word-spacing:-2.732959px;}
.ws175{word-spacing:-2.571564px;}
.wsf4{word-spacing:-2.564373px;}
.ws47{word-spacing:-2.504598px;}
.ws195{word-spacing:-2.463967px;}
.ws68{word-spacing:-2.444822px;}
.ws168{word-spacing:-2.410168px;}
.ws11e{word-spacing:-2.385046px;}
.ws1c{word-spacing:-2.302572px;}
.ws1a{word-spacing:-2.141176px;}
.wsfd{word-spacing:-2.086168px;}
.ws18{word-spacing:-2.033580px;}
.wsb6{word-spacing:-2.026393px;}
.ws19{word-spacing:-1.710789px;}
.ws141{word-spacing:-1.667739px;}
.ws118{word-spacing:-1.488412px;}
.ws127{word-spacing:-1.428637px;}
.ws13{word-spacing:-1.334200px;}
.wsd4{word-spacing:-1.315063px;}
.ws78{word-spacing:-1.249310px;}
.ws1a2{word-spacing:-1.172805px;}
.ws8{word-spacing:-1.011410px;}
.ws116{word-spacing:-1.010208px;}
.wsaf{word-spacing:-0.950432px;}
.ws12{word-spacing:-0.850015px;}
.ws178{word-spacing:-0.742418px;}
.ws7c{word-spacing:-0.711330px;}
.ws191{word-spacing:-0.527224px;}
.ws8f{word-spacing:-0.412452px;}
.ws1aa{word-spacing:-0.312031px;}
.ws146{word-spacing:-0.292900px;}
.ws94{word-spacing:-0.059776px;}
.ws32{word-spacing:-0.053798px;}
.ws187{word-spacing:-0.043039px;}
.ws3{word-spacing:-0.041843px;}
.ws27{word-spacing:0.000000px;}
.ws35{word-spacing:0.005978px;}
.ws162{word-spacing:0.010760px;}
.ws1af{word-spacing:0.172155px;}
.ws11f{word-spacing:0.245080px;}
.ws117{word-spacing:0.304856px;}
.ws121{word-spacing:0.424407px;}
.ws15f{word-spacing:0.656340px;}
.ws1a4{word-spacing:1.409518px;}
.ws115{word-spacing:1.679694px;}
.wsb7{word-spacing:1.799246px;}
.ws1a9{word-spacing:2.055099px;}
.ws1b0{word-spacing:2.431688px;}
.ws189{word-spacing:2.969672px;}
.ws1ae{word-spacing:3.400059px;}
.ws196{word-spacing:3.830446px;}
.ws1ac{word-spacing:3.938043px;}
.ws1ad{word-spacing:4.207035px;}
.ws158{word-spacing:5.121608px;}
.ws160{word-spacing:6.143777px;}
.ws2f{word-spacing:7.477978px;}
.ws2a{word-spacing:7.854566px;}
.ws1a3{word-spacing:7.919124px;}
.ws33{word-spacing:8.015962px;}
.ws15d{word-spacing:8.241915px;}
.wscd{word-spacing:8.621063px;}
.wsa8{word-spacing:8.710430px;}
.wsc5{word-spacing:9.384959px;}
.wsab{word-spacing:9.862974px;}
.ws95{word-spacing:9.922750px;}
.ws17d{word-spacing:11.093230px;}
.ws19c{word-spacing:11.954004px;}
.ws12c{word-spacing:12.219261px;}
.ws17c{word-spacing:12.222996px;}
.ws171{word-spacing:13.514158px;}
.wsb3{word-spacing:14.169237px;}
.ws17b{word-spacing:15.289505px;}
.ws165{word-spacing:15.462013px;}
.ws185{word-spacing:16.419272px;}
.ws98{word-spacing:16.557841px;}
.ws134{word-spacing:16.731302px;}
.ws37{word-spacing:16.742062px;}
.ws18d{word-spacing:17.710433px;}
.wsb4{word-spacing:17.920645px;}
.ws159{word-spacing:18.087022px;}
.ws15c{word-spacing:18.346424px;}
.ws14e{word-spacing:18.389541px;}
.ws15e{word-spacing:18.391617px;}
.ws161{word-spacing:18.394836px;}
.ws199{word-spacing:18.732603px;}
.ws198{word-spacing:18.786401px;}
.ws1a1{word-spacing:19.378184px;}
.ws19b{word-spacing:19.485780px;}
.ws170{word-spacing:19.916168px;}
.ws9e{word-spacing:20.380430px;}
.ws183{word-spacing:20.776942px;}
.wsc2{word-spacing:21.036107px;}
.ws5b{word-spacing:21.142771px;}
.ws14a{word-spacing:21.213247px;}
.ws84{word-spacing:21.374371px;}
.wsc9{word-spacing:21.435215px;}
.wsc8{word-spacing:21.441486px;}
.wsa1{word-spacing:21.698543px;}
.ws10{word-spacing:21.878452px;}
.ws197{word-spacing:22.014305px;}
.wsc4{word-spacing:22.219586px;}
.wsc7{word-spacing:22.639836px;}
.wsc6{word-spacing:22.709937px;}
.wsc3{word-spacing:22.720772px;}
.wsc1{word-spacing:22.971908px;}
.wsb0{word-spacing:23.422430px;}
.ws9f{word-spacing:23.698430px;}
.wsad{word-spacing:23.740645px;}
.ws184{word-spacing:24.112443px;}
.ws18c{word-spacing:24.542830px;}
.wsa6{word-spacing:24.635063px;}
.ws18e{word-spacing:24.650427px;}
.wsd8{word-spacing:25.006430px;}
.wsa7{word-spacing:25.223063px;}
.ws9d{word-spacing:25.229063px;}
.wsb8{word-spacing:25.258430px;}
.ws17a{word-spacing:25.780193px;}
.ws149{word-spacing:26.318177px;}
.ws59{word-spacing:26.827469px;}
.wsa9{word-spacing:27.442430px;}
.ws7{word-spacing:29.834008px;}
.ws9c{word-spacing:30.005063px;}
.ws1{word-spacing:31.418178px;}
.ws0{word-spacing:31.504255px;}
.wsbd{word-spacing:31.534645px;}
.ws31{word-spacing:31.633459px;}
.ws29{word-spacing:31.794854px;}
.wsd1{word-spacing:32.014430px;}
.wsd2{word-spacing:33.539063px;}
.ws2e{word-spacing:33.892992px;}
.ws182{word-spacing:34.065147px;}
.ws85{word-spacing:34.376948px;}
.ws2c{word-spacing:40.402598px;}
.ws172{word-spacing:41.110694px;}
.ws2b{word-spacing:41.370970px;}
.ws2d{word-spacing:41.855155px;}
.ws18b{word-spacing:52.145981px;}
.ws18f{word-spacing:54.821578px;}
.ws5c{word-spacing:71.272314px;}
.ws26{word-spacing:80.625869px;}
.ws5d{word-spacing:90.607265px;}
.ws5e{word-spacing:101.151752px;}
.ws62{word-spacing:116.591892px;}
.ws36{word-spacing:118.044449px;}
.ws39{word-spacing:161.029371px;}
.ws67{word-spacing:174.306816px;}
.ws66{word-spacing:190.457096px;}
.ws5f{word-spacing:206.101670px;}
.ws15a{word-spacing:218.048421px;}
.ws61{word-spacing:267.012219px;}
.ws63{word-spacing:462.031419px;}
.ws64{word-spacing:534.175073px;}
._1{margin-left:-7.833025px;}
._4{margin-left:-6.133018px;}
._3{margin-left:-4.961375px;}
._19{margin-left:-3.825638px;}
._2{margin-left:-2.668393px;}
._5{margin-left:-1.506355px;}
._6{width:1.398758px;}
._0{width:2.410162px;}
._9{width:3.981082px;}
._a{width:5.003251px;}
._e{width:6.025421px;}
._d{width:7.316582px;}
._11{width:8.470326px;}
._f{width:9.982525px;}
._16{width:14.396376px;}
._34{width:15.400596px;}
._2e{width:16.428746px;}
._27{width:17.856937px;}
._25{width:19.106683px;}
._12{width:20.959727px;}
._28{width:22.095463px;}
._13{width:23.302940px;}
._29{width:24.663403px;}
._26{width:25.786042px;}
._7{width:27.706176px;}
._14{width:29.887800px;}
._2b{width:31.430011px;}
._23{width:33.577467px;}
._24{width:39.197535px;}
._b{width:41.263373px;}
._c{width:42.500736px;}
._10{width:44.383680px;}
._2a{width:47.213180px;}
._30{width:51.048362px;}
._18{width:68.741940px;}
._1a{width:72.358848px;}
._17{width:80.697600px;}
._2d{width:143.265139px;}
._2c{width:161.448998px;}
._32{width:162.686362px;}
._15{width:170.917517px;}
._8{width:189.101376px;}
._33{width:254.681626px;}
._1e{width:261.137434px;}
._21{width:274.049050px;}
._1c{width:317.302963px;}
._31{width:330.860160px;}
._1f{width:354.908045px;}
._1b{width:369.003226px;}
._2f{width:569.301087px;}
._22{width:576.934042px;}
._20{width:697.723372px;}
._1d{width:834.090394px;}
.fc3{color:rgb(128,0,0);}
.fc2{color:rgb(64,128,89);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y12e{bottom:193.615500px;}
.y59{bottom:193.617000px;}
.y79{bottom:199.330500px;}
.y20f{bottom:210.055500px;}
.yc4{bottom:211.549500px;}
.yec{bottom:212.037000px;}
.y25{bottom:215.494500px;}
.y58{bottom:215.769000px;}
.y174{bottom:223.008000px;}
.y196{bottom:226.494000px;}
.y10e{bottom:229.482000px;}
.y9e{bottom:232.207500px;}
.y1ce{bottom:237.324000px;}
.y78{bottom:238.296000px;}
.y173{bottom:240.940500px;}
.yc3{bottom:241.894500px;}
.y57{bottom:242.299500px;}
.y20e{bottom:242.932500px;}
.y23d{bottom:242.946000px;}
.yeb{bottom:243.876000px;}
.y10d{bottom:247.414500px;}
.y9d{bottom:248.644500px;}
.y77{bottom:256.228500px;}
.y161{bottom:257.323500px;}
.y172{bottom:259.255500px;}
.y20d{bottom:259.371000px;}
.y23c{bottom:259.384500px;}
.yc2{bottom:259.827000px;}
.y56{bottom:261.328500px;}
.yea{bottom:261.808500px;}
.y9c{bottom:265.083000px;}
.y10c{bottom:265.347000px;}
.y24{bottom:268.246500px;}
.y1cd{bottom:269.076000px;}
.y195{bottom:269.365500px;}
.y20c{bottom:275.808000px;}
.y23b{bottom:275.838000px;}
.y171{bottom:277.188000px;}
.yc1{bottom:277.759500px;}
.y151{bottom:278.779500px;}
.ye9{bottom:279.741000px;}
.y55{bottom:280.356000px;}
.y10b{bottom:283.279500px;}
.y23{bottom:286.179000px;}
.y194{bottom:287.298000px;}
.y9b{bottom:289.903500px;}
.y20b{bottom:292.246500px;}
.y23a{bottom:292.276500px;}
.ye8{bottom:297.673500px;}
.y12d{bottom:301.213500px;}
.y10a{bottom:301.360500px;}
.y76{bottom:301.534500px;}
.y193{bottom:305.230500px;}
.y9a{bottom:307.836000px;}
.y20a{bottom:308.610000px;}
.y239{bottom:308.715000px;}
.yc0{bottom:309.600000px;}
.y1cc{bottom:312.783000px;}
.y170{bottom:314.965500px;}
.ye7{bottom:315.607500px;}
.y54{bottom:318.712500px;}
.y12c{bottom:319.146000px;}
.y109{bottom:319.293000px;}
.y75{bottom:319.467000px;}
.y192{bottom:323.164500px;}
.y209{bottom:325.048500px;}
.y150{bottom:325.087500px;}
.y238{bottom:325.153500px;}
.y99{bottom:325.770000px;}
.y1e1{bottom:326.598000px;}
.ybf{bottom:327.532500px;}
.y1cb{bottom:330.715500px;}
.ye6{bottom:333.540000px;}
.y53{bottom:336.645000px;}
.y12b{bottom:337.078500px;}
.y108{bottom:337.225500px;}
.y74{bottom:337.399500px;}
.y22{bottom:337.884000px;}
.y191{bottom:341.097000px;}
.y208{bottom:341.487000px;}
.y237{bottom:341.605500px;}
.y14f{bottom:343.020000px;}
.y98{bottom:343.702500px;}
.ybe{bottom:345.580500px;}
.y1ca{bottom:348.648000px;}
.y21{bottom:354.322500px;}
.y52{bottom:354.577500px;}
.y73{bottom:355.333500px;}
.y207{bottom:357.924000px;}
.y236{bottom:358.044000px;}
.y262{bottom:358.207500px;}
.y190{bottom:359.029500px;}
.y14e{bottom:360.952500px;}
.y97{bottom:362.302500px;}
.ybd{bottom:363.627000px;}
.y16f{bottom:364.698000px;}
.y1a8{bottom:366.379500px;}
.y1c9{bottom:366.582000px;}
.ye5{bottom:367.360500px;}
.y107{bottom:367.849500px;}
.y20{bottom:370.761000px;}
.y51{bottom:372.510000px;}
.y206{bottom:374.287500px;}
.y235{bottom:374.482500px;}
.y261{bottom:374.644500px;}
.y18f{bottom:376.962000px;}
.y14d{bottom:378.886500px;}
.y96{bottom:380.235000px;}
.ybc{bottom:381.559500px;}
.y16e{bottom:382.630500px;}
.y12a{bottom:383.473500px;}
.y1c8{bottom:384.514500px;}
.y1e0{bottom:384.861000px;}
.ye4{bottom:385.780500px;}
.y1f{bottom:388.185000px;}
.y50{bottom:390.442500px;}
.y205{bottom:390.726000px;}
.y234{bottom:390.936000px;}
.y260{bottom:391.083000px;}
.y14c{bottom:396.819000px;}
.y95{bottom:398.169000px;}
.y16d{bottom:400.564500px;}
.y1c7{bottom:402.447000px;}
.y1df{bottom:402.793500px;}
.y18e{bottom:403.995000px;}
.ye3{bottom:404.202000px;}
.y1e{bottom:404.623500px;}
.y204{bottom:407.164500px;}
.y233{bottom:407.374500px;}
.y25f{bottom:407.521500px;}
.y4f{bottom:409.471500px;}
.y1a7{bottom:410.625000px;}
.ybb{bottom:411.906000px;}
.y72{bottom:413.266500px;}
.y106{bottom:413.418000px;}
.y14b{bottom:414.751500px;}
.y94{bottom:416.101500px;}
.y16c{bottom:418.497000px;}
.y1c6{bottom:420.379500px;}
.y1de{bottom:420.726000px;}
.y1d{bottom:421.062000px;}
.ye2{bottom:422.134500px;}
.y203{bottom:423.603000px;}
.y232{bottom:423.813000px;}
.y25e{bottom:423.960000px;}
.y4e{bottom:427.404000px;}
.y1a6{bottom:428.557500px;}
.yba{bottom:429.838500px;}
.y105{bottom:431.350500px;}
.y14a{bottom:432.684000px;}
.y93{bottom:434.034000px;}
.y16b{bottom:436.429500px;}
.y71{bottom:437.205000px;}
.y1c{bottom:437.500500px;}
.y1c5{bottom:438.312000px;}
.y1dd{bottom:438.658500px;}
.y202{bottom:439.965000px;}
.ye1{bottom:440.067000px;}
.y231{bottom:440.251500px;}
.y25d{bottom:440.398500px;}
.y129{bottom:444.813000px;}
.y4d{bottom:445.336500px;}
.y18d{bottom:445.972500px;}
.y1a5{bottom:446.491500px;}
.y104{bottom:449.430000px;}
.y149{bottom:450.616500px;}
.y92{bottom:452.634000px;}
.y1b{bottom:453.939000px;}
.y16a{bottom:454.362000px;}
.y1c4{bottom:456.244500px;}
.y201{bottom:456.403500px;}
.y230{bottom:456.703500px;}
.y25c{bottom:456.837000px;}
.ye0{bottom:457.999500px;}
.y1dc{bottom:459.277500px;}
.y70{bottom:461.145000px;}
.yb9{bottom:461.791500px;}
.y128{bottom:462.745500px;}
.y4c{bottom:463.270500px;}
.y18c{bottom:463.905000px;}
.y1a4{bottom:464.424000px;}
.y103{bottom:467.364000px;}
.y148{bottom:468.844500px;}
.y1a{bottom:470.376000px;}
.y91{bottom:470.568000px;}
.y169{bottom:472.677000px;}
.y200{bottom:472.842000px;}
.y22f{bottom:473.142000px;}
.y25b{bottom:473.275500px;}
.y1c3{bottom:474.178500px;}
.ydf{bottom:476.419500px;}
.y1db{bottom:477.210000px;}
.y6f{bottom:477.583500px;}
.yb8{bottom:479.725500px;}
.y127{bottom:480.678000px;}
.y4b{bottom:481.203000px;}
.y18b{bottom:481.839000px;}
.y1a3{bottom:482.356500px;}
.y102{bottom:485.296500px;}
.y147{bottom:486.778500px;}
.y19{bottom:486.814500px;}
.y90{bottom:488.500500px;}
.y1ff{bottom:489.204000px;}
.y22e{bottom:489.580500px;}
.y25a{bottom:489.714000px;}
.y168{bottom:490.609500px;}
.y1c2{bottom:492.111000px;}
.y6e{bottom:494.022000px;}
.yde{bottom:494.841000px;}
.yb7{bottom:497.658000px;}
.y1da{bottom:497.829000px;}
.y4a{bottom:499.135500px;}
.y18a{bottom:499.771500px;}
.y1a2{bottom:500.289000px;}
.y126{bottom:501.912000px;}
.y101{bottom:503.229000px;}
.y18{bottom:503.253000px;}
.y146{bottom:504.711000px;}
.y1fe{bottom:505.642500px;}
.y22d{bottom:506.019000px;}
.y259{bottom:506.152500px;}
.y8f{bottom:506.433000px;}
.y167{bottom:508.543500px;}
.y6c{bottom:510.460500px;}
.ydd{bottom:512.773500px;}
.y1d9{bottom:515.761500px;}
.y189{bottom:517.704000px;}
.y49{bottom:518.164500px;}
.y1a1{bottom:518.221500px;}
.y125{bottom:519.844500px;}
.y17{bottom:520.678500px;}
.y100{bottom:521.161500px;}
.y1fd{bottom:522.081000px;}
.y22c{bottom:522.472500px;}
.y258{bottom:522.591000px;}
.y145{bottom:522.643500px;}
.y166{bottom:526.476000px;}
.y6d{bottom:526.899000px;}
.yb6{bottom:529.497000px;}
.ydc{bottom:531.193500px;}
.y1c1{bottom:532.828500px;}
.y188{bottom:535.636500px;}
.y48{bottom:536.097000px;}
.y1a0{bottom:536.155500px;}
.y1d8{bottom:536.380500px;}
.y16{bottom:537.117000px;}
.y124{bottom:537.778500px;}
.y1fc{bottom:538.443000px;}
.y22b{bottom:538.911000px;}
.y257{bottom:539.028000px;}
.yff{bottom:539.094000px;}
.y144{bottom:540.576000px;}
.y165{bottom:544.791000px;}
.yb5{bottom:547.431000px;}
.ydb{bottom:549.615000px;}
.y1c0{bottom:550.762500px;}
.y6b{bottom:550.837500px;}
.y15{bottom:553.555500px;}
.y187{bottom:553.569000px;}
.y47{bottom:554.029500px;}
.y19f{bottom:554.088000px;}
.y1d7{bottom:554.313000px;}
.y8e{bottom:554.605500px;}
.y1fb{bottom:554.881500px;}
.y22a{bottom:555.349500px;}
.y256{bottom:555.466500px;}
.y123{bottom:555.711000px;}
.yfe{bottom:557.026500px;}
.y160{bottom:558.414000px;}
.y143{bottom:558.508500px;}
.y164{bottom:562.723500px;}
.yb4{bottom:565.477500px;}
.yda{bottom:568.035000px;}
.y1bf{bottom:568.695000px;}
.y14{bottom:569.992500px;}
.y1fa{bottom:571.320000px;}
.y186{bottom:571.503000px;}
.y229{bottom:571.788000px;}
.y255{bottom:571.905000px;}
.y46{bottom:571.962000px;}
.y1d6{bottom:572.247000px;}
.y8d{bottom:572.538000px;}
.y122{bottom:573.643500px;}
.y6a{bottom:574.777500px;}
.yfd{bottom:575.107500px;}
.y15f{bottom:576.346500px;}
.y163{bottom:580.656000px;}
.y19e{bottom:583.389000px;}
.yb3{bottom:583.524000px;}
.y13{bottom:586.431000px;}
.yd9{bottom:586.455000px;}
.y1be{bottom:586.627500px;}
.y1f9{bottom:587.683500px;}
.y228{bottom:588.240000px;}
.y254{bottom:588.343500px;}
.y185{bottom:589.435500px;}
.y45{bottom:589.894500px;}
.y1d5{bottom:590.179500px;}
.y8c{bottom:590.470500px;}
.y69{bottom:591.216000px;}
.yfc{bottom:593.040000px;}
.y15e{bottom:594.280500px;}
.y121{bottom:594.877500px;}
.y142{bottom:595.851000px;}
.yb2{bottom:601.572000px;}
.y12{bottom:602.869500px;}
.y1f8{bottom:604.120500px;}
.y1bd{bottom:604.560000px;}
.y227{bottom:604.678500px;}
.y253{bottom:604.782000px;}
.yd8{bottom:604.875000px;}
.y184{bottom:607.368000px;}
.y68{bottom:607.654500px;}
.y44{bottom:607.827000px;}
.y8b{bottom:608.403000px;}
.y1d4{bottom:610.798500px;}
.yfb{bottom:610.972500px;}
.y15d{bottom:612.213000px;}
.y120{bottom:612.810000px;}
.y11{bottom:619.308000px;}
.y1f7{bottom:620.484000px;}
.y226{bottom:621.117000px;}
.y252{bottom:621.220500px;}
.y1bc{bottom:622.492500px;}
.yd7{bottom:622.809000px;}
.y66{bottom:624.093000px;}
.y183{bottom:625.300500px;}
.y43{bottom:625.761000px;}
.y8a{bottom:626.337000px;}
.y19d{bottom:627.634500px;}
.y1d3{bottom:628.731000px;}
.yfa{bottom:628.905000px;}
.y15c{bottom:630.145500px;}
.y11f{bottom:630.742500px;}
.yb1{bottom:631.917000px;}
.y10{bottom:635.746500px;}
.y162{bottom:635.844000px;}
.y1f6{bottom:636.922500px;}
.y225{bottom:637.570500px;}
.y251{bottom:637.659000px;}
.y1bb{bottom:640.425000px;}
.y67{bottom:640.531500px;}
.yd6{bottom:640.741500px;}
.y182{bottom:643.233000px;}
.y42{bottom:644.788500px;}
.y89{bottom:644.937000px;}
.y141{bottom:645.148500px;}
.y19c{bottom:645.567000px;}
.y1d2{bottom:646.663500px;}
.yf9{bottom:646.839000px;}
.y15b{bottom:648.078000px;}
.y11e{bottom:648.676500px;}
.yb0{bottom:649.849500px;}
.yf{bottom:653.172000px;}
.y1f5{bottom:653.361000px;}
.y224{bottom:654.009000px;}
.y250{bottom:654.097500px;}
.yd5{bottom:658.674000px;}
.y181{bottom:661.165500px;}
.y41{bottom:662.721000px;}
.y88{bottom:662.869500px;}
.y140{bottom:663.081000px;}
.y19b{bottom:663.499500px;}
.y65{bottom:664.470000px;}
.y1d1{bottom:664.596000px;}
.yf8{bottom:664.771500px;}
.y15a{bottom:666.010500px;}
.y11d{bottom:666.609000px;}
.ye{bottom:669.609000px;}
.y1f4{bottom:669.799500px;}
.y223{bottom:670.447500px;}
.y24f{bottom:670.536000px;}
.yd4{bottom:676.606500px;}
.y180{bottom:679.099500px;}
.y40{bottom:680.655000px;}
.y87{bottom:680.803500px;}
.y13f{bottom:681.013500px;}
.y19a{bottom:681.433500px;}
.yaf{bottom:681.804000px;}
.y159{bottom:683.943000px;}
.yd{bottom:686.047500px;}
.y1f3{bottom:686.161500px;}
.y222{bottom:686.899500px;}
.y24e{bottom:686.974500px;}
.y11c{bottom:687.843000px;}
.y64{bottom:688.410000px;}
.y1ba{bottom:693.972000px;}
.yd3{bottom:694.539000px;}
.yf7{bottom:695.395500px;}
.y3f{bottom:698.587500px;}
.y86{bottom:698.736000px;}
.y13e{bottom:698.946000px;}
.y199{bottom:699.366000px;}
.yae{bottom:699.736500px;}
.yc{bottom:702.486000px;}
.y1f2{bottom:702.600000px;}
.y221{bottom:703.338000px;}
.y24d{bottom:703.411500px;}
.y63{bottom:704.848500px;}
.y11b{bottom:705.775500px;}
.y17f{bottom:706.132500px;}
.y1d0{bottom:707.914500px;}
.y1b9{bottom:710.410500px;}
.yd2{bottom:712.473000px;}
.y158{bottom:713.187000px;}
.y3e{bottom:716.520000px;}
.y85{bottom:716.668500px;}
.y13d{bottom:716.880000px;}
.yad{bottom:717.669000px;}
.yb{bottom:718.924500px;}
.y1f1{bottom:719.038500px;}
.y220{bottom:719.776500px;}
.y24c{bottom:719.850000px;}
.y62{bottom:721.287000px;}
.y11a{bottom:723.708000px;}
.y1b8{bottom:726.849000px;}
.y61{bottom:729.505500px;}
.yd1{bottom:730.405500px;}
.yf6{bottom:731.997000px;}
.y3d{bottom:734.452500px;}
.y13c{bottom:734.812500px;}
.y84{bottom:735.268500px;}
.ya{bottom:735.363000px;}
.y1f0{bottom:735.400500px;}
.yac{bottom:735.603000px;}
.y21f{bottom:736.215000px;}
.y24b{bottom:736.288500px;}
.y17e{bottom:739.143000px;}
.y119{bottom:741.640500px;}
.y1b7{bottom:743.287500px;}
.yd0{bottom:748.338000px;}
.y9{bottom:751.801500px;}
.y1ef{bottom:751.839000px;}
.y3c{bottom:752.385000px;}
.y21e{bottom:752.653500px;}
.y24a{bottom:752.727000px;}
.y13b{bottom:752.745000px;}
.y198{bottom:753.118500px;}
.y83{bottom:753.202500px;}
.yab{bottom:753.535500px;}
.y157{bottom:757.374000px;}
.y118{bottom:759.574500px;}
.y1b6{bottom:759.724500px;}
.y60{bottom:761.664000px;}
.y1cf{bottom:766.176000px;}
.ycf{bottom:766.758000px;}
.y8{bottom:768.240000px;}
.y1ee{bottom:768.277500px;}
.y21d{bottom:769.107000px;}
.y249{bottom:769.165500px;}
.y13a{bottom:770.677500px;}
.y82{bottom:771.135000px;}
.yaa{bottom:771.468000px;}
.y156{bottom:775.306500px;}
.y1b5{bottom:776.163000px;}
.y117{bottom:777.507000px;}
.yf5{bottom:780.553500px;}
.y5f{bottom:783.928500px;}
.y17d{bottom:784.110000px;}
.yce{bottom:784.690500px;}
.y1ed{bottom:784.716000px;}
.y21c{bottom:785.545500px;}
.y197{bottom:785.547000px;}
.y248{bottom:785.604000px;}
.y139{bottom:788.610000px;}
.y81{bottom:789.067500px;}
.ya9{bottom:789.400500px;}
.y1b4{bottom:792.601500px;}
.y155{bottom:793.239000px;}
.y116{bottom:795.439500px;}
.yf4{bottom:798.486000px;}
.y1ec{bottom:801.154500px;}
.y21b{bottom:801.984000px;}
.y17c{bottom:802.042500px;}
.ycd{bottom:802.624500px;}
.y138{bottom:806.542500px;}
.ya8{bottom:807.333000px;}
.y1b3{bottom:809.040000px;}
.y154{bottom:811.171500px;}
.y115{bottom:813.372000px;}
.yf3{bottom:816.420000px;}
.y31{bottom:817.434000px;}
.y1eb{bottom:817.593000px;}
.y21a{bottom:818.421000px;}
.y247{bottom:818.481000px;}
.y17b{bottom:819.975000px;}
.ycc{bottom:820.557000px;}
.y137{bottom:824.476500px;}
.ya7{bottom:825.381000px;}
.y1b2{bottom:825.478500px;}
.y153{bottom:829.104000px;}
.y114{bottom:831.304500px;}
.y30{bottom:833.872500px;}
.y1ea{bottom:833.955000px;}
.y219{bottom:834.874500px;}
.y246{bottom:834.919500px;}
.y3b{bottom:835.666500px;}
.y80{bottom:837.240000px;}
.y17a{bottom:837.907500px;}
.ycb{bottom:838.489500px;}
.y1b1{bottom:841.917000px;}
.y136{bottom:842.409000px;}
.y7{bottom:843.052500px;}
.ya6{bottom:843.313500px;}
.yf2{bottom:846.748500px;}
.y2f{bottom:850.311000px;}
.y1e9{bottom:850.393500px;}
.y218{bottom:851.313000px;}
.y245{bottom:851.358000px;}
.y3a{bottom:852.105000px;}
.y113{bottom:852.538500px;}
.y7f{bottom:855.172500px;}
.y179{bottom:855.840000px;}
.yca{bottom:856.422000px;}
.y1b0{bottom:858.355500px;}
.y6{bottom:859.491000px;}
.y135{bottom:860.341500px;}
.y5e{bottom:860.869500px;}
.ya5{bottom:861.246000px;}
.yf1{bottom:864.829500px;}
.y2e{bottom:866.749500px;}
.y1e8{bottom:866.832000px;}
.y217{bottom:867.751500px;}
.y244{bottom:867.796500px;}
.y39{bottom:868.543500px;}
.y112{bottom:870.472500px;}
.y7e{bottom:873.105000px;}
.y178{bottom:873.774000px;}
.y1af{bottom:874.794000px;}
.y5{bottom:875.929500px;}
.y134{bottom:878.274000px;}
.ya4{bottom:879.178500px;}
.y152{bottom:882.799500px;}
.yf0{bottom:882.909000px;}
.y2d{bottom:883.188000px;}
.y1e7{bottom:883.270500px;}
.y216{bottom:884.190000px;}
.y243{bottom:884.233500px;}
.y38{bottom:884.982000px;}
.y111{bottom:888.405000px;}
.yc9{bottom:889.755000px;}
.y7d{bottom:891.037500px;}
.y1ae{bottom:891.232500px;}
.y177{bottom:891.706500px;}
.y133{bottom:896.206500px;}
.ya3{bottom:897.111000px;}
.y5d{bottom:897.210000px;}
.y2c{bottom:899.626500px;}
.y1e6{bottom:899.632500px;}
.y215{bottom:900.643500px;}
.y242{bottom:900.672000px;}
.yef{bottom:900.988500px;}
.y37{bottom:901.419000px;}
.y4{bottom:901.536000px;}
.y110{bottom:906.337500px;}
.y1ad{bottom:907.671000px;}
.yc8{bottom:907.687500px;}
.y7c{bottom:908.970000px;}
.y176{bottom:909.639000px;}
.y132{bottom:914.140500px;}
.ya2{bottom:915.045000px;}
.y2b{bottom:916.065000px;}
.y1e5{bottom:916.071000px;}
.y214{bottom:917.082000px;}
.y241{bottom:917.110500px;}
.y36{bottom:917.857500px;}
.y3{bottom:919.468500px;}
.y1ac{bottom:924.108000px;}
.y10f{bottom:924.270000px;}
.yc7{bottom:926.109000px;}
.y7b{bottom:926.904000px;}
.y175{bottom:927.571500px;}
.yee{bottom:931.465500px;}
.y131{bottom:932.073000px;}
.y1e4{bottom:932.433000px;}
.y2a{bottom:932.503500px;}
.ya1{bottom:932.977500px;}
.y213{bottom:933.519000px;}
.y240{bottom:933.549000px;}
.y35{bottom:934.296000px;}
.yc6{bottom:944.529000px;}
.y7a{bottom:944.836500px;}
.y5c{bottom:945.504000px;}
.y1ab{bottom:948.048000px;}
.y1e3{bottom:948.871500px;}
.y29{bottom:948.942000px;}
.yed{bottom:949.398000px;}
.y212{bottom:949.972500px;}
.y23f{bottom:949.987500px;}
.y130{bottom:950.005500px;}
.ya0{bottom:950.910000px;}
.y34{bottom:951.333000px;}
.yc5{bottom:962.949000px;}
.y5b{bottom:963.436500px;}
.y1aa{bottom:964.486500px;}
.y1e2{bottom:965.310000px;}
.y28{bottom:965.380500px;}
.y211{bottom:966.411000px;}
.y23e{bottom:966.426000px;}
.y12f{bottom:967.938000px;}
.y9f{bottom:968.842500px;}
.y2{bottom:972.403500px;}
.y5a{bottom:981.370500px;}
.y210{bottom:982.864500px;}
.y33{bottom:983.761500px;}
.y1a9{bottom:986.749500px;}
.y27{bottom:988.243500px;}
.y1{bottom:999.303000px;}
.y32{bottom:1001.694000px;}
.y26{bottom:1038.157500px;}
.h9{height:24.281011px;}
.h3{height:26.479133px;}
.h7{height:37.443686px;}
.hb{height:37.712678px;}
.hf{height:39.810550px;}
.he{height:44.831700px;}
.ha{height:44.891476px;}
.h5{height:44.951251px;}
.h4{height:49.333133px;}
.hd{height:50.017576px;}
.h8{height:50.023576px;}
.h6{height:50.283571px;}
.h2{height:50.728903px;}
.h1{height:60.426194px;}
.hc{height:82.213133px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:200.781000px;}
.x9{left:202.147500px;}
.xa{left:203.356500px;}
.x11{left:206.259000px;}
.x22{left:209.056500px;}
.x10{left:211.489500px;}
.x1e{left:214.981500px;}
.x12{left:217.090500px;}
.xb{left:219.795000px;}
.x2{left:223.873500px;}
.x3{left:226.830000px;}
.x1{left:233.616000px;}
.xc{left:236.973000px;}
.x8{left:244.666500px;}
.x5{left:251.250000px;}
.xd{left:267.231000px;}
.x1c{left:274.311000px;}
.x1d{left:276.237000px;}
.x1f{left:281.046000px;}
.x15{left:288.939000px;}
.x1b{left:303.523500px;}
.x14{left:308.814000px;}
.x20{left:321.271500px;}
.x7{left:324.294000px;}
.x1a{left:346.539000px;}
.x6{left:348.696000px;}
.x4{left:425.314500px;}
.x13{left:441.025500px;}
.x16{left:459.124500px;}
.xe{left:487.455000px;}
.xf{left:524.110500px;}
.x21{left:548.509500px;}
.x17{left:581.680500px;}
.x18{left:604.645500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v3{vertical-align:29.226667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000278pt;}
.ls16{letter-spacing:0.000479pt;}
.ls21{letter-spacing:0.000681pt;}
.ls67{letter-spacing:0.001997pt;}
.ls4c{letter-spacing:0.002205pt;}
.ls0{letter-spacing:0.002245pt;}
.ls22{letter-spacing:0.002694pt;}
.ls13{letter-spacing:0.002906pt;}
.ls3c{letter-spacing:0.003709pt;}
.ls2e{letter-spacing:0.003733pt;}
.ls2{letter-spacing:0.004212pt;}
.ls1c{letter-spacing:0.004352pt;}
.ls2c{letter-spacing:0.412788pt;}
.ls37{letter-spacing:1.435145pt;}
.ls38{letter-spacing:1.436841pt;}
.ls23{letter-spacing:2.652911pt;}
.lsd{letter-spacing:2.655017pt;}
.ls2f{letter-spacing:2.656546pt;}
.ls1a{letter-spacing:2.658245pt;}
.ls25{letter-spacing:2.659514pt;}
.ls65{letter-spacing:2.668629pt;}
.ls5e{letter-spacing:3.060980pt;}
.ls1e{letter-spacing:3.556327pt;}
.ls39{letter-spacing:4.103295pt;}
.ls41{letter-spacing:4.167686pt;}
.ls9{letter-spacing:4.303872pt;}
.lsa{letter-spacing:4.399514pt;}
.lsc{letter-spacing:4.447334pt;}
.ls51{letter-spacing:4.634307pt;}
.lsb{letter-spacing:4.638618pt;}
.ls60{letter-spacing:5.793503pt;}
.ls5f{letter-spacing:7.375235pt;}
.ls5c{letter-spacing:8.850079pt;}
.ls5b{letter-spacing:8.855412pt;}
.ls1b{letter-spacing:8.873356pt;}
.ls53{letter-spacing:9.586174pt;}
.ls52{letter-spacing:9.589812pt;}
.ls29{letter-spacing:11.808479pt;}
.ls54{letter-spacing:12.252629pt;}
.ls50{letter-spacing:14.512479pt;}
.ls28{letter-spacing:14.754079pt;}
.ls3a{letter-spacing:14.754424pt;}
.ls2d{letter-spacing:14.757812pt;}
.ls19{letter-spacing:14.759412pt;}
.ls2b{letter-spacing:14.759467pt;}
.ls45{letter-spacing:14.759507pt;}
.ls5d{letter-spacing:15.170122pt;}
.ls4d{letter-spacing:15.982400pt;}
.ls66{letter-spacing:16.287944pt;}
.ls30{letter-spacing:16.931733pt;}
.ls18{letter-spacing:17.415578pt;}
.ls24{letter-spacing:17.416848pt;}
.ls49{letter-spacing:17.425962pt;}
.ls55{letter-spacing:17.649962pt;}
.ls58{letter-spacing:17.701772pt;}
.ls7{letter-spacing:17.703392pt;}
.ls59{letter-spacing:17.705067pt;}
.ls6{letter-spacing:17.708725pt;}
.ls3e{letter-spacing:18.082079pt;}
.ls40{letter-spacing:18.084984pt;}
.ls3b{letter-spacing:18.085812pt;}
.ls3f{letter-spacing:18.090050pt;}
.ls46{letter-spacing:18.280239pt;}
.ls1d{letter-spacing:18.313660pt;}
.ls43{letter-spacing:19.000365pt;}
.ls4e{letter-spacing:19.005090pt;}
.ls1f{letter-spacing:19.005573pt;}
.ls12{letter-spacing:19.005698pt;}
.ls4b{letter-spacing:19.006400pt;}
.lse{letter-spacing:19.032994pt;}
.ls15{letter-spacing:19.365605pt;}
.ls2a{letter-spacing:19.391641pt;}
.ls5{letter-spacing:19.655392pt;}
.ls4{letter-spacing:19.660725pt;}
.ls32{letter-spacing:19.778122pt;}
.ls10{letter-spacing:20.015017pt;}
.ls3d{letter-spacing:20.742347pt;}
.ls42{letter-spacing:20.841067pt;}
.ls63{letter-spacing:20.915709pt;}
.ls33{letter-spacing:21.549573pt;}
.ls48{letter-spacing:22.067246pt;}
.ls17{letter-spacing:22.138724pt;}
.ls62{letter-spacing:22.778318pt;}
.ls56{letter-spacing:22.951757pt;}
.ls44{letter-spacing:23.175686pt;}
.ls57{letter-spacing:23.498938pt;}
.ls27{letter-spacing:23.620568pt;}
.ls31{letter-spacing:23.642307pt;}
.lsf{letter-spacing:24.127017pt;}
.ls34{letter-spacing:24.607646pt;}
.ls61{letter-spacing:24.691709pt;}
.ls4f{letter-spacing:24.796169pt;}
.ls36{letter-spacing:24.801503pt;}
.ls11{letter-spacing:26.340350pt;}
.ls14{letter-spacing:26.562673pt;}
.ls5a{letter-spacing:26.564349pt;}
.ls20{letter-spacing:26.569682pt;}
.ls3{letter-spacing:27.221806pt;}
.ls64{letter-spacing:27.881042pt;}
.ls35{letter-spacing:28.927235pt;}
.ls47{letter-spacing:30.089682pt;}
.ls26{letter-spacing:31.497902pt;}
.ls1{letter-spacing:45.159578pt;}
.ws97{word-spacing:-53.133867pt;}
.ws8e{word-spacing:-30.546660pt;}
.wsc0{word-spacing:-27.889967pt;}
.ws3e{word-spacing:-27.151406pt;}
.ws4{word-spacing:-26.561620pt;}
.ws60{word-spacing:-24.570327pt;}
.ws105{word-spacing:-14.765902pt;}
.ws4f{word-spacing:-14.712768pt;}
.ws57{word-spacing:-14.659634pt;}
.ws28{word-spacing:-14.500232pt;}
.ws135{word-spacing:-14.393964pt;}
.ws52{word-spacing:-14.287697pt;}
.ws6a{word-spacing:-14.181429pt;}
.ws11b{word-spacing:-14.128295pt;}
.ws7b{word-spacing:-13.968894pt;}
.ws34{word-spacing:-13.915760pt;}
.ws145{word-spacing:-13.809492pt;}
.ws96{word-spacing:-13.602270pt;}
.ws180{word-spacing:-13.571543pt;}
.ws150{word-spacing:-13.428081pt;}
.wsf1{word-spacing:-13.384421pt;}
.ws186{word-spacing:-13.380260pt;}
.ws16e{word-spacing:-13.284618pt;}
.wsca{word-spacing:-13.225019pt;}
.ws11d{word-spacing:-13.065618pt;}
.ws50{word-spacing:-12.959350pt;}
.wsa5{word-spacing:-12.911530pt;}
.ws151{word-spacing:-12.854231pt;}
.ws122{word-spacing:-12.853082pt;}
.ws55{word-spacing:-12.845371pt;}
.ws54{word-spacing:-12.844335pt;}
.ws53{word-spacing:-12.841833pt;}
.ws87{word-spacing:-12.587413pt;}
.ws19d{word-spacing:-12.567306pt;}
.ws132{word-spacing:-12.481145pt;}
.ws154{word-spacing:-12.423844pt;}
.ws13c{word-spacing:-12.374878pt;}
.wsb5{word-spacing:-12.268610pt;}
.ws140{word-spacing:-12.215476pt;}
.wsfa{word-spacing:-12.162342pt;}
.wse8{word-spacing:-12.109208pt;}
.wsb{word-spacing:-11.945636pt;}
.ws130{word-spacing:-11.896673pt;}
.ws4a{word-spacing:-11.790405pt;}
.ws48{word-spacing:-11.737271pt;}
.ws72{word-spacing:-11.684137pt;}
.wsff{word-spacing:-11.631003pt;}
.wsbb{word-spacing:-11.577870pt;}
.ws7f{word-spacing:-11.524736pt;}
.wsde{word-spacing:-11.365334pt;}
.ws10b{word-spacing:-11.312200pt;}
.ws9b{word-spacing:-11.259066pt;}
.ws128{word-spacing:-11.205932pt;}
.wsae{word-spacing:-11.158112pt;}
.ws45{word-spacing:-11.152799pt;}
.wse9{word-spacing:-11.104978pt;}
.ws51{word-spacing:-11.099665pt;}
.ws16c{word-spacing:-11.037041pt;}
.ws6e{word-spacing:-10.993397pt;}
.ws155{word-spacing:-10.941399pt;}
.ws81{word-spacing:-10.940263pt;}
.ws148{word-spacing:-10.887129pt;}
.ws153{word-spacing:-10.845757pt;}
.wsdd{word-spacing:-10.833995pt;}
.ws164{word-spacing:-10.787741pt;}
.ws166{word-spacing:-10.750116pt;}
.ws16f{word-spacing:-10.702295pt;}
.wsda{word-spacing:-10.674594pt;}
.wsd9{word-spacing:-10.635006pt;}
.wsd7{word-spacing:-10.621460pt;}
.ws15{word-spacing:-10.606653pt;}
.ws18a{word-spacing:-10.558833pt;}
.ws89{word-spacing:-10.515192pt;}
.ws19f{word-spacing:-10.463191pt;}
.wsb9{word-spacing:-10.408924pt;}
.ws65{word-spacing:-10.319729pt;}
.ws8b{word-spacing:-10.302657pt;}
.wsf7{word-spacing:-10.249523pt;}
.wsa0{word-spacing:-10.201702pt;}
.ws5a{word-spacing:-10.196389pt;}
.ws120{word-spacing:-10.143255pt;}
.ws11{word-spacing:-10.128445pt;}
.ws136{word-spacing:-10.090121pt;}
.wsf2{word-spacing:-10.036987pt;}
.ws194{word-spacing:-10.032804pt;}
.wsb2{word-spacing:-9.983854pt;}
.wsed{word-spacing:-9.930720pt;}
.ws10e{word-spacing:-9.877586pt;}
.ws4d{word-spacing:-9.771318pt;}
.ws38{word-spacing:-9.698058pt;}
.wscf{word-spacing:-9.670364pt;}
.ws1d{word-spacing:-9.602417pt;}
.wse4{word-spacing:-9.526303pt;}
.wsdf{word-spacing:-9.505649pt;}
.ws113{word-spacing:-9.452515pt;}
.ws163{word-spacing:-9.411133pt;}
.ws13f{word-spacing:-9.399381pt;}
.wsf{word-spacing:-9.363313pt;}
.ws13b{word-spacing:-9.346247pt;}
.ws43{word-spacing:-9.293113pt;}
.ws8a{word-spacing:-9.239979pt;}
.ws6f{word-spacing:-9.186846pt;}
.wsef{word-spacing:-9.133712pt;}
.ws10d{word-spacing:-9.080578pt;}
.ws1a5{word-spacing:-9.028567pt;}
.ws83{word-spacing:-9.027444pt;}
.ws137{word-spacing:-8.941412pt;}
.ws99{word-spacing:-8.926490pt;}
.ws22{word-spacing:-8.877755pt;}
.wsac{word-spacing:-8.873356pt;}
.ws24{word-spacing:-8.868069pt;}
.ws2{word-spacing:-8.868042pt;}
.ws23{word-spacing:-8.857003pt;}
.wseb{word-spacing:-8.853672pt;}
.ws25{word-spacing:-8.837315pt;}
.wsd5{word-spacing:-8.814908pt;}
.ws124{word-spacing:-8.761775pt;}
.ws14f{word-spacing:-8.741642pt;}
.wsfc{word-spacing:-8.708641pt;}
.ws77{word-spacing:-8.655507pt;}
.ws4c{word-spacing:-8.602373pt;}
.ws17f{word-spacing:-8.598180pt;}
.ws152{word-spacing:-8.502538pt;}
.ws82{word-spacing:-8.442971pt;}
.ws3f{word-spacing:-8.389838pt;}
.ws101{word-spacing:-8.336704pt;}
.ws17{word-spacing:-8.311255pt;}
.ws14d{word-spacing:-8.302100pt;}
.ws142{word-spacing:-8.283570pt;}
.ws71{word-spacing:-8.230436pt;}
.ws5{word-spacing:-8.215613pt;}
.ws1a0{word-spacing:-8.208945pt;}
.ws179{word-spacing:-8.203952pt;}
.ws181{word-spacing:-8.199680pt;}
.ws19a{word-spacing:-8.189247pt;}
.ws93{word-spacing:-8.182615pt;}
.wsf3{word-spacing:-8.177302pt;}
.wsd3{word-spacing:-8.170530pt;}
.ws6{word-spacing:-8.167793pt;}
.wsa4{word-spacing:-8.164312pt;}
.ws92{word-spacing:-8.129482pt;}
.ws11a{word-spacing:-8.124168pt;}
.ws126{word-spacing:-8.071034pt;}
.ws8d{word-spacing:-8.017900pt;}
.ws16a{word-spacing:-7.976509pt;}
.ws125{word-spacing:-7.964767pt;}
.ws7a{word-spacing:-7.911633pt;}
.ws1a6{word-spacing:-7.880868pt;}
.ws56{word-spacing:-7.858499pt;}
.wsdb{word-spacing:-7.826954pt;}
.wsba{word-spacing:-7.805365pt;}
.ws15b{word-spacing:-7.785226pt;}
.ws10c{word-spacing:-7.752231pt;}
.ws104{word-spacing:-7.699097pt;}
.ws10f{word-spacing:-7.645963pt;}
.ws46{word-spacing:-7.592830pt;}
.wsea{word-spacing:-7.488729pt;}
.ws100{word-spacing:-7.486562pt;}
.ws6b{word-spacing:-7.433428pt;}
.ws138{word-spacing:-7.380294pt;}
.ws58{word-spacing:-7.327160pt;}
.ws9{word-spacing:-7.307018pt;}
.ws143{word-spacing:-7.274026pt;}
.wsdc{word-spacing:-7.226206pt;}
.ws3c{word-spacing:-7.220892pt;}
.ws167{word-spacing:-7.211377pt;}
.ws3a{word-spacing:-7.210198pt;}
.ws86{word-spacing:-7.167759pt;}
.ws103{word-spacing:-7.114625pt;}
.ws73{word-spacing:-7.008357pt;}
.wse7{word-spacing:-6.955223pt;}
.ws173{word-spacing:-6.924452pt;}
.ws1f{word-spacing:-6.907847pt;}
.ws20{word-spacing:-6.905882pt;}
.ws131{word-spacing:-6.902698pt;}
.ws21{word-spacing:-6.902089pt;}
.ws1ab{word-spacing:-6.780989pt;}
.ws44{word-spacing:-6.742688pt;}
.ws13a{word-spacing:-6.689554pt;}
.ws17e{word-spacing:-6.589706pt;}
.ws42{word-spacing:-6.583286pt;}
.ws102{word-spacing:-6.535466pt;}
.ws76{word-spacing:-6.530152pt;}
.wse1{word-spacing:-6.477018pt;}
.ws6c{word-spacing:-6.423884pt;}
.wsd6{word-spacing:-6.370751pt;}
.wsaa{word-spacing:-6.322930pt;}
.ws4e{word-spacing:-6.211349pt;}
.wsc{word-spacing:-6.207140pt;}
.wsee{word-spacing:-6.158215pt;}
.ws7e{word-spacing:-6.105081pt;}
.ws41{word-spacing:-6.057261pt;}
.ws110{word-spacing:-6.051947pt;}
.ws119{word-spacing:-6.016531pt;}
.ws177{word-spacing:-6.015857pt;}
.wsf0{word-spacing:-5.998814pt;}
.ws49{word-spacing:-5.965293pt;}
.wse0{word-spacing:-5.950993pt;}
.ws108{word-spacing:-5.945680pt;}
.ws114{word-spacing:-5.892546pt;}
.ws69{word-spacing:-5.786278pt;}
.ws1a7{word-spacing:-5.776753pt;}
.ws147{word-spacing:-5.733144pt;}
.ws16{word-spacing:-5.728932pt;}
.ws14c{word-spacing:-5.681111pt;}
.ws14b{word-spacing:-5.678075pt;}
.wsa3{word-spacing:-5.632190pt;}
.ws90{word-spacing:-5.626876pt;}
.wsa2{word-spacing:-5.579056pt;}
.ws139{word-spacing:-5.520609pt;}
.ws8c{word-spacing:-5.467475pt;}
.ws70{word-spacing:-5.414341pt;}
.ws16d{word-spacing:-5.394186pt;}
.ws1b{word-spacing:-5.346365pt;}
.ws3d{word-spacing:-5.308073pt;}
.wsf6{word-spacing:-5.254939pt;}
.ws40{word-spacing:-5.148672pt;}
.ws174{word-spacing:-5.107261pt;}
.ws6d{word-spacing:-5.095538pt;}
.ws188{word-spacing:-5.059441pt;}
.ws80{word-spacing:-5.042404pt;}
.wsd0{word-spacing:-4.994583pt;}
.ws88{word-spacing:-4.989270pt;}
.ws144{word-spacing:-4.936136pt;}
.wsbc{word-spacing:-4.904790pt;}
.wsbe{word-spacing:-4.883002pt;}
.ws16b{word-spacing:-4.868157pt;}
.wsb1{word-spacing:-4.776735pt;}
.ws176{word-spacing:-4.724695pt;}
.wsf5{word-spacing:-4.723601pt;}
.ws30{word-spacing:-4.686438pt;}
.ws13e{word-spacing:-4.511065pt;}
.ws12f{word-spacing:-4.457931pt;}
.wsf9{word-spacing:-4.404798pt;}
.wsfb{word-spacing:-4.351664pt;}
.ws12b{word-spacing:-4.289082pt;}
.wscb{word-spacing:-4.250709pt;}
.ws129{word-spacing:-4.246487pt;}
.ws11c{word-spacing:-4.245396pt;}
.ws123{word-spacing:-4.192262pt;}
.ws91{word-spacing:-4.139128pt;}
.wsf8{word-spacing:-4.085994pt;}
.wse{word-spacing:-4.055204pt;}
.ws106{word-spacing:-4.032860pt;}
.ws1e{word-spacing:-3.992136pt;}
.wse3{word-spacing:-3.926593pt;}
.ws14{word-spacing:-3.911741pt;}
.ws12a{word-spacing:-3.873459pt;}
.ws10a{word-spacing:-3.820325pt;}
.wse5{word-spacing:-3.730626pt;}
.wse6{word-spacing:-3.726487pt;}
.wsce{word-spacing:-3.719371pt;}
.ws133{word-spacing:-3.714057pt;}
.ws190{word-spacing:-3.672637pt;}
.ws109{word-spacing:-3.660923pt;}
.wsbf{word-spacing:-3.607790pt;}
.wscc{word-spacing:-3.559969pt;}
.ws192{word-spacing:-3.529175pt;}
.ws79{word-spacing:-3.501522pt;}
.ws169{word-spacing:-3.481354pt;}
.wse2{word-spacing:-3.448388pt;}
.ws3b{word-spacing:-3.446995pt;}
.ws74{word-spacing:-3.342120pt;}
.wsa{word-spacing:-3.337892pt;}
.ws107{word-spacing:-3.288986pt;}
.ws112{word-spacing:-3.182719pt;}
.ws12d{word-spacing:-3.129585pt;}
.ws111{word-spacing:-3.076451pt;}
.ws4b{word-spacing:-3.054487pt;}
.ws9a{word-spacing:-3.028630pt;}
.ws1a8{word-spacing:-2.955325pt;}
.ws75{word-spacing:-2.917049pt;}
.ws157{word-spacing:-2.907505pt;}
.ws156{word-spacing:-2.859684pt;}
.wsd{word-spacing:-2.811863pt;}
.ws13d{word-spacing:-2.757648pt;}
.ws19e{word-spacing:-2.716221pt;}
.ws12e{word-spacing:-2.704514pt;}
.ws7d{word-spacing:-2.598246pt;}
.wsec{word-spacing:-2.545112pt;}
.wsfe{word-spacing:-2.491978pt;}
.ws193{word-spacing:-2.429297pt;}
.ws175{word-spacing:-2.285834pt;}
.wsf4{word-spacing:-2.279443pt;}
.ws47{word-spacing:-2.226309pt;}
.ws195{word-spacing:-2.190193pt;}
.ws68{word-spacing:-2.173175pt;}
.ws168{word-spacing:-2.142372pt;}
.ws11e{word-spacing:-2.120041pt;}
.ws1c{word-spacing:-2.046730pt;}
.ws1a{word-spacing:-1.903268pt;}
.wsfd{word-spacing:-1.854372pt;}
.ws18{word-spacing:-1.807626pt;}
.wsb6{word-spacing:-1.801238pt;}
.ws19{word-spacing:-1.520701pt;}
.ws141{word-spacing:-1.482435pt;}
.ws118{word-spacing:-1.323033pt;}
.ws127{word-spacing:-1.269899pt;}
.ws13{word-spacing:-1.185956pt;}
.wsd4{word-spacing:-1.168945pt;}
.ws78{word-spacing:-1.110498pt;}
.ws1a2{word-spacing:-1.042493pt;}
.ws8{word-spacing:-0.899031pt;}
.ws116{word-spacing:-0.897962pt;}
.wsaf{word-spacing:-0.844828pt;}
.ws12{word-spacing:-0.755569pt;}
.ws178{word-spacing:-0.659927pt;}
.ws7c{word-spacing:-0.632293pt;}
.ws191{word-spacing:-0.468644pt;}
.ws8f{word-spacing:-0.366624pt;}
.ws1aa{word-spacing:-0.277361pt;}
.ws146{word-spacing:-0.260356pt;}
.ws94{word-spacing:-0.053134pt;}
.ws32{word-spacing:-0.047821pt;}
.ws187{word-spacing:-0.038257pt;}
.ws3{word-spacing:-0.037194pt;}
.ws27{word-spacing:0.000000pt;}
.ws35{word-spacing:0.005313pt;}
.ws162{word-spacing:0.009564pt;}
.ws1af{word-spacing:0.153027pt;}
.ws11f{word-spacing:0.217849pt;}
.ws117{word-spacing:0.270983pt;}
.ws121{word-spacing:0.377250pt;}
.ws15f{word-spacing:0.583414pt;}
.ws1a4{word-spacing:1.252905pt;}
.ws115{word-spacing:1.493062pt;}
.wsb7{word-spacing:1.599329pt;}
.ws1a9{word-spacing:1.826755pt;}
.ws1b0{word-spacing:2.161500pt;}
.ws189{word-spacing:2.639708pt;}
.ws1ae{word-spacing:3.022275pt;}
.ws196{word-spacing:3.404841pt;}
.ws1ac{word-spacing:3.500483pt;}
.ws1ad{word-spacing:3.739587pt;}
.ws158{word-spacing:4.552540pt;}
.ws160{word-spacing:5.461135pt;}
.ws2f{word-spacing:6.647091pt;}
.ws2a{word-spacing:6.981837pt;}
.ws1a3{word-spacing:7.039222pt;}
.ws33{word-spacing:7.125299pt;}
.ws15d{word-spacing:7.326147pt;}
.wscd{word-spacing:7.663167pt;}
.wsa8{word-spacing:7.742604pt;}
.wsc5{word-spacing:8.342186pt;}
.wsab{word-spacing:8.767088pt;}
.ws95{word-spacing:8.820222pt;}
.ws17d{word-spacing:9.860649pt;}
.ws19c{word-spacing:10.625782pt;}
.ws12c{word-spacing:10.861565pt;}
.ws17c{word-spacing:10.864886pt;}
.ws171{word-spacing:12.012585pt;}
.wsb3{word-spacing:12.594877pt;}
.ws17b{word-spacing:13.590671pt;}
.ws165{word-spacing:13.744012pt;}
.ws185{word-spacing:14.594908pt;}
.ws98{word-spacing:14.718081pt;}
.ws134{word-spacing:14.872269pt;}
.ws37{word-spacing:14.881833pt;}
.ws18d{word-spacing:15.742607pt;}
.wsb4{word-spacing:15.929463pt;}
.ws159{word-spacing:16.077353pt;}
.ws15c{word-spacing:16.307932pt;}
.ws14e{word-spacing:16.346259pt;}
.ws15e{word-spacing:16.348104pt;}
.ws161{word-spacing:16.350966pt;}
.ws199{word-spacing:16.651203pt;}
.ws198{word-spacing:16.699023pt;}
.ws1a1{word-spacing:17.225052pt;}
.ws19b{word-spacing:17.320694pt;}
.ws170{word-spacing:17.703260pt;}
.ws9e{word-spacing:18.115937pt;}
.ws183{word-spacing:18.468393pt;}
.wsc2{word-spacing:18.698762pt;}
.ws5b{word-spacing:18.793574pt;}
.ws14a{word-spacing:18.856219pt;}
.ws84{word-spacing:18.999441pt;}
.wsc9{word-spacing:19.053525pt;}
.wsc8{word-spacing:19.059099pt;}
.wsa1{word-spacing:19.287594pt;}
.ws10{word-spacing:19.447513pt;}
.ws197{word-spacing:19.568271pt;}
.wsc4{word-spacing:19.750743pt;}
.wsc7{word-spacing:20.124298pt;}
.wsc6{word-spacing:20.186610pt;}
.wsc3{word-spacing:20.196241pt;}
.wsc1{word-spacing:20.419473pt;}
.wsb0{word-spacing:20.819937pt;}
.ws9f{word-spacing:21.065271pt;}
.wsad{word-spacing:21.102796pt;}
.ws184{word-spacing:21.433283pt;}
.ws18c{word-spacing:21.815849pt;}
.wsa6{word-spacing:21.897834pt;}
.ws18e{word-spacing:21.911491pt;}
.wsd8{word-spacing:22.227937pt;}
.wsa7{word-spacing:22.420500pt;}
.ws9d{word-spacing:22.425834pt;}
.wsb8{word-spacing:22.451937pt;}
.ws17a{word-spacing:22.915727pt;}
.ws149{word-spacing:23.393935pt;}
.ws59{word-spacing:23.846639pt;}
.wsa9{word-spacing:24.393271pt;}
.ws7{word-spacing:26.519119pt;}
.ws9c{word-spacing:26.671167pt;}
.ws1{word-spacing:27.927269pt;}
.ws0{word-spacing:28.003782pt;}
.wsbd{word-spacing:28.030796pt;}
.ws31{word-spacing:28.118630pt;}
.ws29{word-spacing:28.262093pt;}
.wsd1{word-spacing:28.457271pt;}
.wsd2{word-spacing:29.812500pt;}
.ws2e{word-spacing:30.127104pt;}
.ws182{word-spacing:30.280131pt;}
.ws85{word-spacing:30.557287pt;}
.ws2c{word-spacing:35.913421pt;}
.ws172{word-spacing:36.542839pt;}
.ws2b{word-spacing:36.774195pt;}
.ws2d{word-spacing:37.204582pt;}
.ws18b{word-spacing:46.351983pt;}
.ws18f{word-spacing:48.730291pt;}
.ws5c{word-spacing:63.353168pt;}
.ws26{word-spacing:71.667439pt;}
.ws5d{word-spacing:80.539791pt;}
.ws5e{word-spacing:89.912668pt;}
.ws62{word-spacing:103.637238pt;}
.ws36{word-spacing:104.928399pt;}
.ws39{word-spacing:143.137219pt;}
.ws67{word-spacing:154.939392pt;}
.ws66{word-spacing:169.295196pt;}
.ws5f{word-spacing:183.201485pt;}
.ws15a{word-spacing:193.820819pt;}
.ws61{word-spacing:237.344195pt;}
.ws63{word-spacing:410.694595pt;}
.ws64{word-spacing:474.822287pt;}
._1{margin-left:-6.962689pt;}
._4{margin-left:-5.451571pt;}
._3{margin-left:-4.410111pt;}
._19{margin-left:-3.400567pt;}
._2{margin-left:-2.371905pt;}
._5{margin-left:-1.338982pt;}
._6{width:1.243341pt;}
._0{width:2.142366pt;}
._9{width:3.538739pt;}
._a{width:4.447334pt;}
._e{width:5.355930pt;}
._d{width:6.503629pt;}
._11{width:7.529179pt;}
._f{width:8.873356pt;}
._16{width:12.796779pt;}
._34{width:13.689419pt;}
._2e{width:14.603330pt;}
._27{width:15.872833pt;}
._25{width:16.983718pt;}
._12{width:18.630868pt;}
._28{width:19.640412pt;}
._13{width:20.713725pt;}
._29{width:21.923025pt;}
._26{width:22.920927pt;}
._7{width:24.627712pt;}
._14{width:26.566933pt;}
._2b{width:27.937788pt;}
._23{width:29.846637pt;}
._24{width:34.842253pt;}
._b{width:36.678554pt;}
._c{width:37.778432pt;}
._10{width:39.452160pt;}
._2a{width:41.967271pt;}
._30{width:45.376322pt;}
._18{width:61.103947pt;}
._1a{width:64.318976pt;}
._17{width:71.731200pt;}
._2d{width:127.346790pt;}
._2c{width:143.510221pt;}
._32{width:144.610099pt;}
._15{width:151.926682pt;}
._8{width:168.090112pt;}
._33{width:226.383667pt;}
._1e{width:232.122163pt;}
._21{width:243.599155pt;}
._1c{width:282.047078pt;}
._31{width:294.097920pt;}
._1f{width:315.473818pt;}
._1b{width:328.002867pt;}
._2f{width:506.045411pt;}
._22{width:512.830259pt;}
._20{width:620.198553pt;}
._1d{width:741.413683pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y12e{bottom:172.102667pt;}
.y59{bottom:172.104000pt;}
.y79{bottom:177.182667pt;}
.y20f{bottom:186.716000pt;}
.yc4{bottom:188.044000pt;}
.yec{bottom:188.477333pt;}
.y25{bottom:191.550667pt;}
.y58{bottom:191.794667pt;}
.y174{bottom:198.229333pt;}
.y196{bottom:201.328000pt;}
.y10e{bottom:203.984000pt;}
.y9e{bottom:206.406667pt;}
.y1ce{bottom:210.954667pt;}
.y78{bottom:211.818667pt;}
.y173{bottom:214.169333pt;}
.yc3{bottom:215.017333pt;}
.y57{bottom:215.377333pt;}
.y20e{bottom:215.940000pt;}
.y23d{bottom:215.952000pt;}
.yeb{bottom:216.778667pt;}
.y10d{bottom:219.924000pt;}
.y9d{bottom:221.017333pt;}
.y77{bottom:227.758667pt;}
.y161{bottom:228.732000pt;}
.y172{bottom:230.449333pt;}
.y20d{bottom:230.552000pt;}
.y23c{bottom:230.564000pt;}
.yc2{bottom:230.957333pt;}
.y56{bottom:232.292000pt;}
.yea{bottom:232.718667pt;}
.y9c{bottom:235.629333pt;}
.y10c{bottom:235.864000pt;}
.y24{bottom:238.441333pt;}
.y1cd{bottom:239.178667pt;}
.y195{bottom:239.436000pt;}
.y20c{bottom:245.162667pt;}
.y23b{bottom:245.189333pt;}
.y171{bottom:246.389333pt;}
.yc1{bottom:246.897333pt;}
.y151{bottom:247.804000pt;}
.ye9{bottom:248.658667pt;}
.y55{bottom:249.205333pt;}
.y10b{bottom:251.804000pt;}
.y23{bottom:254.381333pt;}
.y194{bottom:255.376000pt;}
.y9b{bottom:257.692000pt;}
.y20b{bottom:259.774667pt;}
.y23a{bottom:259.801333pt;}
.ye8{bottom:264.598667pt;}
.y12d{bottom:267.745333pt;}
.y10a{bottom:267.876000pt;}
.y76{bottom:268.030667pt;}
.y193{bottom:271.316000pt;}
.y9a{bottom:273.632000pt;}
.y20a{bottom:274.320000pt;}
.y239{bottom:274.413333pt;}
.yc0{bottom:275.200000pt;}
.y1cc{bottom:278.029333pt;}
.y170{bottom:279.969333pt;}
.ye7{bottom:280.540000pt;}
.y54{bottom:283.300000pt;}
.y12c{bottom:283.685333pt;}
.y109{bottom:283.816000pt;}
.y75{bottom:283.970667pt;}
.y192{bottom:287.257333pt;}
.y209{bottom:288.932000pt;}
.y150{bottom:288.966667pt;}
.y238{bottom:289.025333pt;}
.y99{bottom:289.573333pt;}
.y1e1{bottom:290.309333pt;}
.ybf{bottom:291.140000pt;}
.y1cb{bottom:293.969333pt;}
.ye6{bottom:296.480000pt;}
.y53{bottom:299.240000pt;}
.y12b{bottom:299.625333pt;}
.y108{bottom:299.756000pt;}
.y74{bottom:299.910667pt;}
.y22{bottom:300.341333pt;}
.y191{bottom:303.197333pt;}
.y208{bottom:303.544000pt;}
.y237{bottom:303.649333pt;}
.y14f{bottom:304.906667pt;}
.y98{bottom:305.513333pt;}
.ybe{bottom:307.182667pt;}
.y1ca{bottom:309.909333pt;}
.y21{bottom:314.953333pt;}
.y52{bottom:315.180000pt;}
.y73{bottom:315.852000pt;}
.y207{bottom:318.154667pt;}
.y236{bottom:318.261333pt;}
.y262{bottom:318.406667pt;}
.y190{bottom:319.137333pt;}
.y14e{bottom:320.846667pt;}
.y97{bottom:322.046667pt;}
.ybd{bottom:323.224000pt;}
.y16f{bottom:324.176000pt;}
.y1a8{bottom:325.670667pt;}
.y1c9{bottom:325.850667pt;}
.ye5{bottom:326.542667pt;}
.y107{bottom:326.977333pt;}
.y20{bottom:329.565333pt;}
.y51{bottom:331.120000pt;}
.y206{bottom:332.700000pt;}
.y235{bottom:332.873333pt;}
.y261{bottom:333.017333pt;}
.y18f{bottom:335.077333pt;}
.y14d{bottom:336.788000pt;}
.y96{bottom:337.986667pt;}
.ybc{bottom:339.164000pt;}
.y16e{bottom:340.116000pt;}
.y12a{bottom:340.865333pt;}
.y1c8{bottom:341.790667pt;}
.y1e0{bottom:342.098667pt;}
.ye4{bottom:342.916000pt;}
.y1f{bottom:345.053333pt;}
.y50{bottom:347.060000pt;}
.y205{bottom:347.312000pt;}
.y234{bottom:347.498667pt;}
.y260{bottom:347.629333pt;}
.y14c{bottom:352.728000pt;}
.y95{bottom:353.928000pt;}
.y16d{bottom:356.057333pt;}
.y1c7{bottom:357.730667pt;}
.y1df{bottom:358.038667pt;}
.y18e{bottom:359.106667pt;}
.ye3{bottom:359.290667pt;}
.y1e{bottom:359.665333pt;}
.y204{bottom:361.924000pt;}
.y233{bottom:362.110667pt;}
.y25f{bottom:362.241333pt;}
.y4f{bottom:363.974667pt;}
.y1a7{bottom:365.000000pt;}
.ybb{bottom:366.138667pt;}
.y72{bottom:367.348000pt;}
.y106{bottom:367.482667pt;}
.y14b{bottom:368.668000pt;}
.y94{bottom:369.868000pt;}
.y16c{bottom:371.997333pt;}
.y1c6{bottom:373.670667pt;}
.y1de{bottom:373.978667pt;}
.y1d{bottom:374.277333pt;}
.ye2{bottom:375.230667pt;}
.y203{bottom:376.536000pt;}
.y232{bottom:376.722667pt;}
.y25e{bottom:376.853333pt;}
.y4e{bottom:379.914667pt;}
.y1a6{bottom:380.940000pt;}
.yba{bottom:382.078667pt;}
.y105{bottom:383.422667pt;}
.y14a{bottom:384.608000pt;}
.y93{bottom:385.808000pt;}
.y16b{bottom:387.937333pt;}
.y71{bottom:388.626667pt;}
.y1c{bottom:388.889333pt;}
.y1c5{bottom:389.610667pt;}
.y1dd{bottom:389.918667pt;}
.y202{bottom:391.080000pt;}
.ye1{bottom:391.170667pt;}
.y231{bottom:391.334667pt;}
.y25d{bottom:391.465333pt;}
.y129{bottom:395.389333pt;}
.y4d{bottom:395.854667pt;}
.y18d{bottom:396.420000pt;}
.y1a5{bottom:396.881333pt;}
.y104{bottom:399.493333pt;}
.y149{bottom:400.548000pt;}
.y92{bottom:402.341333pt;}
.y1b{bottom:403.501333pt;}
.y16a{bottom:403.877333pt;}
.y1c4{bottom:405.550667pt;}
.y201{bottom:405.692000pt;}
.y230{bottom:405.958667pt;}
.y25c{bottom:406.077333pt;}
.ye0{bottom:407.110667pt;}
.y1dc{bottom:408.246667pt;}
.y70{bottom:409.906667pt;}
.yb9{bottom:410.481333pt;}
.y128{bottom:411.329333pt;}
.y4c{bottom:411.796000pt;}
.y18c{bottom:412.360000pt;}
.y1a4{bottom:412.821333pt;}
.y103{bottom:415.434667pt;}
.y148{bottom:416.750667pt;}
.y1a{bottom:418.112000pt;}
.y91{bottom:418.282667pt;}
.y169{bottom:420.157333pt;}
.y200{bottom:420.304000pt;}
.y22f{bottom:420.570667pt;}
.y25b{bottom:420.689333pt;}
.y1c3{bottom:421.492000pt;}
.ydf{bottom:423.484000pt;}
.y1db{bottom:424.186667pt;}
.y6f{bottom:424.518667pt;}
.yb8{bottom:426.422667pt;}
.y127{bottom:427.269333pt;}
.y4b{bottom:427.736000pt;}
.y18b{bottom:428.301333pt;}
.y1a3{bottom:428.761333pt;}
.y102{bottom:431.374667pt;}
.y147{bottom:432.692000pt;}
.y19{bottom:432.724000pt;}
.y90{bottom:434.222667pt;}
.y1ff{bottom:434.848000pt;}
.y22e{bottom:435.182667pt;}
.y25a{bottom:435.301333pt;}
.y168{bottom:436.097333pt;}
.y1c2{bottom:437.432000pt;}
.y6e{bottom:439.130667pt;}
.yde{bottom:439.858667pt;}
.yb7{bottom:442.362667pt;}
.y1da{bottom:442.514667pt;}
.y4a{bottom:443.676000pt;}
.y18a{bottom:444.241333pt;}
.y1a2{bottom:444.701333pt;}
.y126{bottom:446.144000pt;}
.y101{bottom:447.314667pt;}
.y18{bottom:447.336000pt;}
.y146{bottom:448.632000pt;}
.y1fe{bottom:449.460000pt;}
.y22d{bottom:449.794667pt;}
.y259{bottom:449.913333pt;}
.y8f{bottom:450.162667pt;}
.y167{bottom:452.038667pt;}
.y6c{bottom:453.742667pt;}
.ydd{bottom:455.798667pt;}
.y1d9{bottom:458.454667pt;}
.y189{bottom:460.181333pt;}
.y49{bottom:460.590667pt;}
.y1a1{bottom:460.641333pt;}
.y125{bottom:462.084000pt;}
.y17{bottom:462.825333pt;}
.y100{bottom:463.254667pt;}
.y1fd{bottom:464.072000pt;}
.y22c{bottom:464.420000pt;}
.y258{bottom:464.525333pt;}
.y145{bottom:464.572000pt;}
.y166{bottom:467.978667pt;}
.y6d{bottom:468.354667pt;}
.yb6{bottom:470.664000pt;}
.ydc{bottom:472.172000pt;}
.y1c1{bottom:473.625333pt;}
.y188{bottom:476.121333pt;}
.y48{bottom:476.530667pt;}
.y1a0{bottom:476.582667pt;}
.y1d8{bottom:476.782667pt;}
.y16{bottom:477.437333pt;}
.y124{bottom:478.025333pt;}
.y1fc{bottom:478.616000pt;}
.y22b{bottom:479.032000pt;}
.y257{bottom:479.136000pt;}
.yff{bottom:479.194667pt;}
.y144{bottom:480.512000pt;}
.y165{bottom:484.258667pt;}
.yb5{bottom:486.605333pt;}
.ydb{bottom:488.546667pt;}
.y1c0{bottom:489.566667pt;}
.y6b{bottom:489.633333pt;}
.y15{bottom:492.049333pt;}
.y187{bottom:492.061333pt;}
.y47{bottom:492.470667pt;}
.y19f{bottom:492.522667pt;}
.y1d7{bottom:492.722667pt;}
.y8e{bottom:492.982667pt;}
.y1fb{bottom:493.228000pt;}
.y22a{bottom:493.644000pt;}
.y256{bottom:493.748000pt;}
.y123{bottom:493.965333pt;}
.yfe{bottom:495.134667pt;}
.y160{bottom:496.368000pt;}
.y143{bottom:496.452000pt;}
.y164{bottom:500.198667pt;}
.yb4{bottom:502.646667pt;}
.yda{bottom:504.920000pt;}
.y1bf{bottom:505.506667pt;}
.y14{bottom:506.660000pt;}
.y1fa{bottom:507.840000pt;}
.y186{bottom:508.002667pt;}
.y229{bottom:508.256000pt;}
.y255{bottom:508.360000pt;}
.y46{bottom:508.410667pt;}
.y1d6{bottom:508.664000pt;}
.y8d{bottom:508.922667pt;}
.y122{bottom:509.905333pt;}
.y6a{bottom:510.913333pt;}
.yfd{bottom:511.206667pt;}
.y15f{bottom:512.308000pt;}
.y163{bottom:516.138667pt;}
.y19e{bottom:518.568000pt;}
.yb3{bottom:518.688000pt;}
.y13{bottom:521.272000pt;}
.yd9{bottom:521.293333pt;}
.y1be{bottom:521.446667pt;}
.y1f9{bottom:522.385333pt;}
.y228{bottom:522.880000pt;}
.y254{bottom:522.972000pt;}
.y185{bottom:523.942667pt;}
.y45{bottom:524.350667pt;}
.y1d5{bottom:524.604000pt;}
.y8c{bottom:524.862667pt;}
.y69{bottom:525.525333pt;}
.yfc{bottom:527.146667pt;}
.y15e{bottom:528.249333pt;}
.y121{bottom:528.780000pt;}
.y142{bottom:529.645333pt;}
.yb2{bottom:534.730667pt;}
.y12{bottom:535.884000pt;}
.y1f8{bottom:536.996000pt;}
.y1bd{bottom:537.386667pt;}
.y227{bottom:537.492000pt;}
.y253{bottom:537.584000pt;}
.yd8{bottom:537.666667pt;}
.y184{bottom:539.882667pt;}
.y68{bottom:540.137333pt;}
.y44{bottom:540.290667pt;}
.y8b{bottom:540.802667pt;}
.y1d4{bottom:542.932000pt;}
.yfb{bottom:543.086667pt;}
.y15d{bottom:544.189333pt;}
.y120{bottom:544.720000pt;}
.y11{bottom:550.496000pt;}
.y1f7{bottom:551.541333pt;}
.y226{bottom:552.104000pt;}
.y252{bottom:552.196000pt;}
.y1bc{bottom:553.326667pt;}
.yd7{bottom:553.608000pt;}
.y66{bottom:554.749333pt;}
.y183{bottom:555.822667pt;}
.y43{bottom:556.232000pt;}
.y8a{bottom:556.744000pt;}
.y19d{bottom:557.897333pt;}
.y1d3{bottom:558.872000pt;}
.yfa{bottom:559.026667pt;}
.y15c{bottom:560.129333pt;}
.y11f{bottom:560.660000pt;}
.yb1{bottom:561.704000pt;}
.y10{bottom:565.108000pt;}
.y162{bottom:565.194667pt;}
.y1f6{bottom:566.153333pt;}
.y225{bottom:566.729333pt;}
.y251{bottom:566.808000pt;}
.y1bb{bottom:569.266667pt;}
.y67{bottom:569.361333pt;}
.yd6{bottom:569.548000pt;}
.y182{bottom:571.762667pt;}
.y42{bottom:573.145333pt;}
.y89{bottom:573.277333pt;}
.y141{bottom:573.465333pt;}
.y19c{bottom:573.837333pt;}
.y1d2{bottom:574.812000pt;}
.yf9{bottom:574.968000pt;}
.y15b{bottom:576.069333pt;}
.y11e{bottom:576.601333pt;}
.yb0{bottom:577.644000pt;}
.yf{bottom:580.597333pt;}
.y1f5{bottom:580.765333pt;}
.y224{bottom:581.341333pt;}
.y250{bottom:581.420000pt;}
.yd5{bottom:585.488000pt;}
.y181{bottom:587.702667pt;}
.y41{bottom:589.085333pt;}
.y88{bottom:589.217333pt;}
.y140{bottom:589.405333pt;}
.y19b{bottom:589.777333pt;}
.y65{bottom:590.640000pt;}
.y1d1{bottom:590.752000pt;}
.yf8{bottom:590.908000pt;}
.y15a{bottom:592.009333pt;}
.y11d{bottom:592.541333pt;}
.ye{bottom:595.208000pt;}
.y1f4{bottom:595.377333pt;}
.y223{bottom:595.953333pt;}
.y24f{bottom:596.032000pt;}
.yd4{bottom:601.428000pt;}
.y180{bottom:603.644000pt;}
.y40{bottom:605.026667pt;}
.y87{bottom:605.158667pt;}
.y13f{bottom:605.345333pt;}
.y19a{bottom:605.718667pt;}
.yaf{bottom:606.048000pt;}
.y159{bottom:607.949333pt;}
.yd{bottom:609.820000pt;}
.y1f3{bottom:609.921333pt;}
.y222{bottom:610.577333pt;}
.y24e{bottom:610.644000pt;}
.y11c{bottom:611.416000pt;}
.y64{bottom:611.920000pt;}
.y1ba{bottom:616.864000pt;}
.yd3{bottom:617.368000pt;}
.yf7{bottom:618.129333pt;}
.y3f{bottom:620.966667pt;}
.y86{bottom:621.098667pt;}
.y13e{bottom:621.285333pt;}
.y199{bottom:621.658667pt;}
.yae{bottom:621.988000pt;}
.yc{bottom:624.432000pt;}
.y1f2{bottom:624.533333pt;}
.y221{bottom:625.189333pt;}
.y24d{bottom:625.254667pt;}
.y63{bottom:626.532000pt;}
.y11b{bottom:627.356000pt;}
.y17f{bottom:627.673333pt;}
.y1d0{bottom:629.257333pt;}
.y1b9{bottom:631.476000pt;}
.yd2{bottom:633.309333pt;}
.y158{bottom:633.944000pt;}
.y3e{bottom:636.906667pt;}
.y85{bottom:637.038667pt;}
.y13d{bottom:637.226667pt;}
.yad{bottom:637.928000pt;}
.yb{bottom:639.044000pt;}
.y1f1{bottom:639.145333pt;}
.y220{bottom:639.801333pt;}
.y24c{bottom:639.866667pt;}
.y62{bottom:641.144000pt;}
.y11a{bottom:643.296000pt;}
.y1b8{bottom:646.088000pt;}
.y61{bottom:648.449333pt;}
.yd1{bottom:649.249333pt;}
.yf6{bottom:650.664000pt;}
.y3d{bottom:652.846667pt;}
.y13c{bottom:653.166667pt;}
.y84{bottom:653.572000pt;}
.ya{bottom:653.656000pt;}
.y1f0{bottom:653.689333pt;}
.yac{bottom:653.869333pt;}
.y21f{bottom:654.413333pt;}
.y24b{bottom:654.478667pt;}
.y17e{bottom:657.016000pt;}
.y119{bottom:659.236000pt;}
.y1b7{bottom:660.700000pt;}
.yd0{bottom:665.189333pt;}
.y9{bottom:668.268000pt;}
.y1ef{bottom:668.301333pt;}
.y3c{bottom:668.786667pt;}
.y21e{bottom:669.025333pt;}
.y24a{bottom:669.090667pt;}
.y13b{bottom:669.106667pt;}
.y198{bottom:669.438667pt;}
.y83{bottom:669.513333pt;}
.yab{bottom:669.809333pt;}
.y157{bottom:673.221333pt;}
.y118{bottom:675.177333pt;}
.y1b6{bottom:675.310667pt;}
.y60{bottom:677.034667pt;}
.y1cf{bottom:681.045333pt;}
.ycf{bottom:681.562667pt;}
.y8{bottom:682.880000pt;}
.y1ee{bottom:682.913333pt;}
.y21d{bottom:683.650667pt;}
.y249{bottom:683.702667pt;}
.y13a{bottom:685.046667pt;}
.y82{bottom:685.453333pt;}
.yaa{bottom:685.749333pt;}
.y156{bottom:689.161333pt;}
.y1b5{bottom:689.922667pt;}
.y117{bottom:691.117333pt;}
.yf5{bottom:693.825333pt;}
.y5f{bottom:696.825333pt;}
.y17d{bottom:696.986667pt;}
.yce{bottom:697.502667pt;}
.y1ed{bottom:697.525333pt;}
.y21c{bottom:698.262667pt;}
.y197{bottom:698.264000pt;}
.y248{bottom:698.314667pt;}
.y139{bottom:700.986667pt;}
.y81{bottom:701.393333pt;}
.ya9{bottom:701.689333pt;}
.y1b4{bottom:704.534667pt;}
.y155{bottom:705.101333pt;}
.y116{bottom:707.057333pt;}
.yf4{bottom:709.765333pt;}
.y1ec{bottom:712.137333pt;}
.y21b{bottom:712.874667pt;}
.y17c{bottom:712.926667pt;}
.ycd{bottom:713.444000pt;}
.y138{bottom:716.926667pt;}
.ya8{bottom:717.629333pt;}
.y1b3{bottom:719.146667pt;}
.y154{bottom:721.041333pt;}
.y115{bottom:722.997333pt;}
.yf3{bottom:725.706667pt;}
.y31{bottom:726.608000pt;}
.y1eb{bottom:726.749333pt;}
.y21a{bottom:727.485333pt;}
.y247{bottom:727.538667pt;}
.y17b{bottom:728.866667pt;}
.ycc{bottom:729.384000pt;}
.y137{bottom:732.868000pt;}
.ya7{bottom:733.672000pt;}
.y1b2{bottom:733.758667pt;}
.y153{bottom:736.981333pt;}
.y114{bottom:738.937333pt;}
.y30{bottom:741.220000pt;}
.y1ea{bottom:741.293333pt;}
.y219{bottom:742.110667pt;}
.y246{bottom:742.150667pt;}
.y3b{bottom:742.814667pt;}
.y80{bottom:744.213333pt;}
.y17a{bottom:744.806667pt;}
.ycb{bottom:745.324000pt;}
.y1b1{bottom:748.370667pt;}
.y136{bottom:748.808000pt;}
.y7{bottom:749.380000pt;}
.ya6{bottom:749.612000pt;}
.yf2{bottom:752.665333pt;}
.y2f{bottom:755.832000pt;}
.y1e9{bottom:755.905333pt;}
.y218{bottom:756.722667pt;}
.y245{bottom:756.762667pt;}
.y3a{bottom:757.426667pt;}
.y113{bottom:757.812000pt;}
.y7f{bottom:760.153333pt;}
.y179{bottom:760.746667pt;}
.yca{bottom:761.264000pt;}
.y1b0{bottom:762.982667pt;}
.y6{bottom:763.992000pt;}
.y135{bottom:764.748000pt;}
.y5e{bottom:765.217333pt;}
.ya5{bottom:765.552000pt;}
.yf1{bottom:768.737333pt;}
.y2e{bottom:770.444000pt;}
.y1e8{bottom:770.517333pt;}
.y217{bottom:771.334667pt;}
.y244{bottom:771.374667pt;}
.y39{bottom:772.038667pt;}
.y112{bottom:773.753333pt;}
.y7e{bottom:776.093333pt;}
.y178{bottom:776.688000pt;}
.y1af{bottom:777.594667pt;}
.y5{bottom:778.604000pt;}
.y134{bottom:780.688000pt;}
.ya4{bottom:781.492000pt;}
.y152{bottom:784.710667pt;}
.yf0{bottom:784.808000pt;}
.y2d{bottom:785.056000pt;}
.y1e7{bottom:785.129333pt;}
.y216{bottom:785.946667pt;}
.y243{bottom:785.985333pt;}
.y38{bottom:786.650667pt;}
.y111{bottom:789.693333pt;}
.yc9{bottom:790.893333pt;}
.y7d{bottom:792.033333pt;}
.y1ae{bottom:792.206667pt;}
.y177{bottom:792.628000pt;}
.y133{bottom:796.628000pt;}
.ya3{bottom:797.432000pt;}
.y5d{bottom:797.520000pt;}
.y2c{bottom:799.668000pt;}
.y1e6{bottom:799.673333pt;}
.y215{bottom:800.572000pt;}
.y242{bottom:800.597333pt;}
.yef{bottom:800.878667pt;}
.y37{bottom:801.261333pt;}
.y4{bottom:801.365333pt;}
.y110{bottom:805.633333pt;}
.y1ad{bottom:806.818667pt;}
.yc8{bottom:806.833333pt;}
.y7c{bottom:807.973333pt;}
.y176{bottom:808.568000pt;}
.y132{bottom:812.569333pt;}
.ya2{bottom:813.373333pt;}
.y2b{bottom:814.280000pt;}
.y1e5{bottom:814.285333pt;}
.y214{bottom:815.184000pt;}
.y241{bottom:815.209333pt;}
.y36{bottom:815.873333pt;}
.y3{bottom:817.305333pt;}
.y1ac{bottom:821.429333pt;}
.y10f{bottom:821.573333pt;}
.yc7{bottom:823.208000pt;}
.y7b{bottom:823.914667pt;}
.y175{bottom:824.508000pt;}
.yee{bottom:827.969333pt;}
.y131{bottom:828.509333pt;}
.y1e4{bottom:828.829333pt;}
.y2a{bottom:828.892000pt;}
.ya1{bottom:829.313333pt;}
.y213{bottom:829.794667pt;}
.y240{bottom:829.821333pt;}
.y35{bottom:830.485333pt;}
.yc6{bottom:839.581333pt;}
.y7a{bottom:839.854667pt;}
.y5c{bottom:840.448000pt;}
.y1ab{bottom:842.709333pt;}
.y1e3{bottom:843.441333pt;}
.y29{bottom:843.504000pt;}
.yed{bottom:843.909333pt;}
.y212{bottom:844.420000pt;}
.y23f{bottom:844.433333pt;}
.y130{bottom:844.449333pt;}
.ya0{bottom:845.253333pt;}
.y34{bottom:845.629333pt;}
.yc5{bottom:855.954667pt;}
.y5b{bottom:856.388000pt;}
.y1aa{bottom:857.321333pt;}
.y1e2{bottom:858.053333pt;}
.y28{bottom:858.116000pt;}
.y211{bottom:859.032000pt;}
.y23e{bottom:859.045333pt;}
.y12f{bottom:860.389333pt;}
.y9f{bottom:861.193333pt;}
.y2{bottom:864.358667pt;}
.y5a{bottom:872.329333pt;}
.y210{bottom:873.657333pt;}
.y33{bottom:874.454667pt;}
.y1a9{bottom:877.110667pt;}
.y27{bottom:878.438667pt;}
.y1{bottom:888.269333pt;}
.y32{bottom:890.394667pt;}
.y26{bottom:922.806667pt;}
.h9{height:21.583121pt;}
.h3{height:23.537007pt;}
.h7{height:33.283277pt;}
.hb{height:33.522381pt;}
.hf{height:35.387155pt;}
.he{height:39.850400pt;}
.ha{height:39.903534pt;}
.h5{height:39.956668pt;}
.h4{height:43.851674pt;}
.hd{height:44.460067pt;}
.h8{height:44.465401pt;}
.h6{height:44.696508pt;}
.h2{height:45.092358pt;}
.h1{height:53.712173pt;}
.hc{height:73.078340pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:178.472000pt;}
.x9{left:179.686667pt;}
.xa{left:180.761333pt;}
.x11{left:183.341333pt;}
.x22{left:185.828000pt;}
.x10{left:187.990667pt;}
.x1e{left:191.094667pt;}
.x12{left:192.969333pt;}
.xb{left:195.373333pt;}
.x2{left:198.998667pt;}
.x3{left:201.626667pt;}
.x1{left:207.658667pt;}
.xc{left:210.642667pt;}
.x8{left:217.481333pt;}
.x5{left:223.333333pt;}
.xd{left:237.538667pt;}
.x1c{left:243.832000pt;}
.x1d{left:245.544000pt;}
.x1f{left:249.818667pt;}
.x15{left:256.834667pt;}
.x1b{left:269.798667pt;}
.x14{left:274.501333pt;}
.x20{left:285.574667pt;}
.x7{left:288.261333pt;}
.x1a{left:308.034667pt;}
.x6{left:309.952000pt;}
.x4{left:378.057333pt;}
.x13{left:392.022667pt;}
.x16{left:408.110667pt;}
.xe{left:433.293333pt;}
.xf{left:465.876000pt;}
.x21{left:487.564000pt;}
.x17{left:517.049333pt;}
.x18{left:537.462667pt;}
}




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