
    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_6f93ecd74e8eddd92491b865.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4303da3d5e9dccbb62300c8d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239000;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_98ee218994098c84cb40b0a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.185000;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_3e78fb33612c94e1c2604eee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_aa8215ee74ad8730e27b51c5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202000;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_564ead35b46d95d714747527.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.203000;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_b854f6250a549adfd5468f9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_8ff7c7eb42589ffcbd5d6c90.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.239000;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_e850ac6bcfcb734c21042929.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202000;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_aa8215ee74ad8730e27b51c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202000;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_e850ac6bcfcb734c21042929.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202000;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_d9b5932bf895d11e8ad77cd6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.444000;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_63d46c201d43fb1860ead38c.woff2')format("woff");}.fff{font-family:fff;line-height:1.483000;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_eb8dad85e4884fdcd2ebb09c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4ab9f6482a1feac6fde9f1ae.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.735000;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_a1ebb6f3bd950803c055ab9f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.213000;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_a1a1c5061ee63342c8ab0198.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.183000;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_7566e63da520f0197b2cf28e.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_ca696c5aab733d17799664e4.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.213000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4ab9f6482a1feac6fde9f1ae.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.735000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_077ddd89495e8cf6b45b90da.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v5{vertical-align:19.199707px;}
.v3{vertical-align:26.399780px;}
.v4{vertical-align:28.698975px;}
.ls5{letter-spacing:-2.998800px;}
.ls2e{letter-spacing:-2.688000px;}
.ls2d{letter-spacing:-1.152000px;}
.ls3{letter-spacing:-1.050000px;}
.ls2b{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.529200px;}
.ls2c{letter-spacing:-0.528000px;}
.ls22{letter-spacing:-0.205875px;}
.lsa{letter-spacing:-0.201543px;}
.ls25{letter-spacing:-0.123525px;}
.ls14{letter-spacing:-0.120926px;}
.ls15{letter-spacing:-0.040309px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000005px;}
.ls16{letter-spacing:0.000009px;}
.ls17{letter-spacing:0.000100px;}
.ls7{letter-spacing:0.040309px;}
.ls10{letter-spacing:0.080617px;}
.ls19{letter-spacing:0.082350px;}
.ls1c{letter-spacing:0.164700px;}
.ls8{letter-spacing:0.282160px;}
.ls2a{letter-spacing:0.294000px;}
.lse{letter-spacing:1.209258px;}
.ls27{letter-spacing:1.235250px;}
.lsc{letter-spacing:1.330184px;}
.lsb{letter-spacing:1.410801px;}
.ls12{letter-spacing:1.733270px;}
.lsd{letter-spacing:2.297590px;}
.ls21{letter-spacing:3.499875px;}
.ls9{letter-spacing:3.789008px;}
.ls23{letter-spacing:5.599800px;}
.ls28{letter-spacing:8.317350px;}
.ls11{letter-spacing:8.827583px;}
.ls1a{letter-spacing:8.893800px;}
.ls26{letter-spacing:9.017325px;}
.ls1e{letter-spacing:9.264375px;}
.ls13{letter-spacing:9.270978px;}
.ls1b{letter-spacing:9.305550px;}
.ls1{letter-spacing:9.360000px;}
.ls29{letter-spacing:9.593775px;}
.ls24{letter-spacing:14.781825px;}
.lsf{letter-spacing:15.478502px;}
.ls18{letter-spacing:20.546325px;}
.ls2{letter-spacing:55.806192px;}
.ls1d{letter-spacing:230.456475px;}
.ls20{letter-spacing:1029.215417px;}
.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;}
}
.ws112{word-spacing:-28.901266px;}
.ws15c{word-spacing:-28.493100px;}
.ws164{word-spacing:-23.305050px;}
.ws15e{word-spacing:-22.728600px;}
.ws118{word-spacing:-22.693742px;}
.ws114{word-spacing:-22.250347px;}
.ws162{word-spacing:-22.028625px;}
.ws15b{word-spacing:-19.311075px;}
.ws3{word-spacing:-15.810960px;}
.ws10e{word-spacing:-15.720354px;}
.ws116{word-spacing:-15.156034px;}
.ws160{word-spacing:-14.946525px;}
.ws10c{word-spacing:-14.752948px;}
.ws111{word-spacing:-14.632022px;}
.ws8{word-spacing:-14.454000px;}
.wsbe{word-spacing:-13.935600px;}
.ws163{word-spacing:-13.875975px;}
.ws2{word-spacing:-13.818000px;}
.ws15f{word-spacing:-13.793625px;}
.ws161{word-spacing:-13.711275px;}
.ws115{word-spacing:-13.704924px;}
.ws15d{word-spacing:-13.587750px;}
.ws10f{word-spacing:-13.463072px;}
.ws11a{word-spacing:-13.301838px;}
.wsbd{word-spacing:-13.288800px;}
.ws10a{word-spacing:-13.221221px;}
.ws6{word-spacing:-12.483600px;}
.ws15a{word-spacing:-12.434850px;}
.ws7{word-spacing:-11.880000px;}
.ws16a{word-spacing:-11.448000px;}
.ws1c7{word-spacing:-11.426400px;}
.ws152{word-spacing:-10.512000px;}
.ws1{word-spacing:-10.176000px;}
.ws151{word-spacing:-9.936000px;}
.ws4{word-spacing:-9.855000px;}
.ws1c6{word-spacing:-9.315000px;}
.ws1b1{word-spacing:-9.072000px;}
.ws155{word-spacing:-8.640000px;}
.ws110{word-spacing:-8.343880px;}
.ws11{word-spacing:-8.148000px;}
.ws1c4{word-spacing:-7.824000px;}
.ws119{word-spacing:-7.779560px;}
.ws5{word-spacing:-6.898500px;}
.ws113{word-spacing:-4.756415px;}
.ws10b{word-spacing:-4.635489px;}
.ws1c5{word-spacing:-4.512000px;}
.ws117{word-spacing:-4.393637px;}
.ws158{word-spacing:-3.936000px;}
.ws129{word-spacing:-3.789008px;}
.ws16e{word-spacing:-3.499875px;}
.ws159{word-spacing:-3.458700px;}
.ws156{word-spacing:-2.640000px;}
.ws1bc{word-spacing:-2.587200px;}
.ws1ba{word-spacing:-2.469600px;}
.ws1b8{word-spacing:-2.234400px;}
.ws1ac{word-spacing:-2.175600px;}
.ws10d{word-spacing:-2.136356px;}
.ws1c9{word-spacing:-2.058000px;}
.ws1be{word-spacing:-2.016000px;}
.ws157{word-spacing:-1.920000px;}
.ws1b0{word-spacing:-1.680000px;}
.ws1af{word-spacing:-1.587600px;}
.ws12a{word-spacing:-1.410801px;}
.ws1bd{word-spacing:-1.293600px;}
.ws16c{word-spacing:-1.176000px;}
.ws103{word-spacing:-0.882000px;}
.wsa{word-spacing:-0.780000px;}
.ws9b{word-spacing:-0.646800px;}
.wsea{word-spacing:-0.588000px;}
.wsd1{word-spacing:-0.529200px;}
.ws14f{word-spacing:-0.470400px;}
.wsc2{word-spacing:-0.411600px;}
.ws144{word-spacing:-0.352800px;}
.ws149{word-spacing:-0.294000px;}
.ws1b9{word-spacing:-0.240000px;}
.ws85{word-spacing:-0.235200px;}
.ws99{word-spacing:-0.176400px;}
.ws2b{word-spacing:-0.117600px;}
.ws1cb{word-spacing:-0.090000px;}
.ws16f{word-spacing:-0.082350px;}
.ws12b{word-spacing:-0.080617px;}
.ws1a{word-spacing:-0.058800px;}
.ws12c{word-spacing:-0.040309px;}
.ws0{word-spacing:0.000000px;}
.ws12d{word-spacing:0.040309px;}
.ws49{word-spacing:0.058800px;}
.ws102{word-spacing:0.117600px;}
.wsf3{word-spacing:0.176400px;}
.wsf{word-spacing:0.210000px;}
.ws35{word-spacing:0.235200px;}
.ws19b{word-spacing:0.294000px;}
.ws2d{word-spacing:0.352800px;}
.wsf2{word-spacing:0.411600px;}
.ws4b{word-spacing:0.470400px;}
.ws82{word-spacing:0.529200px;}
.ws25{word-spacing:0.588000px;}
.wsdb{word-spacing:0.646800px;}
.wsd2{word-spacing:0.705600px;}
.ws52{word-spacing:0.764400px;}
.ws1a8{word-spacing:0.823200px;}
.ws60{word-spacing:0.882000px;}
.wsd4{word-spacing:0.940800px;}
.ws84{word-spacing:0.999600px;}
.ws10{word-spacing:1.050000px;}
.ws130{word-spacing:1.058400px;}
.ws6b{word-spacing:1.117200px;}
.ws14{word-spacing:1.176000px;}
.wsb5{word-spacing:1.234800px;}
.wsc{word-spacing:1.260000px;}
.ws122{word-spacing:1.293600px;}
.wsd{word-spacing:1.302000px;}
.wsb{word-spacing:1.344000px;}
.ws11d{word-spacing:1.352400px;}
.ws6f{word-spacing:1.411200px;}
.wse{word-spacing:1.470000px;}
.ws104{word-spacing:1.528800px;}
.ws45{word-spacing:1.587600px;}
.ws143{word-spacing:1.646400px;}
.ws132{word-spacing:1.705200px;}
.ws80{word-spacing:1.764000px;}
.ws9c{word-spacing:1.822800px;}
.ws175{word-spacing:1.881600px;}
.ws98{word-spacing:1.940400px;}
.ws12e{word-spacing:1.999200px;}
.wsc0{word-spacing:2.058000px;}
.ws6e{word-spacing:2.116800px;}
.wsfb{word-spacing:2.175600px;}
.wsb3{word-spacing:2.234400px;}
.ws56{word-spacing:2.293200px;}
.ws197{word-spacing:2.352000px;}
.wsa3{word-spacing:2.410800px;}
.ws5a{word-spacing:2.469600px;}
.ws192{word-spacing:2.528400px;}
.wsad{word-spacing:2.587200px;}
.ws4a{word-spacing:2.646000px;}
.wsb2{word-spacing:2.704800px;}
.ws128{word-spacing:2.763600px;}
.ws30{word-spacing:2.790000px;}
.ws13{word-spacing:2.822400px;}
.wscf{word-spacing:2.881200px;}
.wsdf{word-spacing:2.940000px;}
.ws70{word-spacing:2.998800px;}
.wsab{word-spacing:3.057600px;}
.ws31{word-spacing:3.072000px;}
.ws78{word-spacing:3.116400px;}
.ws4d{word-spacing:3.175200px;}
.wsda{word-spacing:3.234000px;}
.ws16d{word-spacing:3.292800px;}
.wsac{word-spacing:3.351600px;}
.ws17{word-spacing:3.410400px;}
.ws147{word-spacing:3.469200px;}
.ws9a{word-spacing:3.528000px;}
.ws47{word-spacing:3.586800px;}
.wsd8{word-spacing:3.645600px;}
.wse4{word-spacing:3.704400px;}
.ws2f{word-spacing:3.720000px;}
.ws13a{word-spacing:3.763200px;}
.ws9e{word-spacing:3.822000px;}
.ws38{word-spacing:3.880800px;}
.ws126{word-spacing:3.939600px;}
.ws2e{word-spacing:3.960000px;}
.wsa4{word-spacing:3.998400px;}
.ws131{word-spacing:4.057200px;}
.ws136{word-spacing:4.116000px;}
.ws94{word-spacing:4.174800px;}
.wsbb{word-spacing:4.233600px;}
.ws191{word-spacing:4.292400px;}
.ws86{word-spacing:4.351200px;}
.wsd0{word-spacing:4.410000px;}
.ws92{word-spacing:4.468800px;}
.ws44{word-spacing:4.527600px;}
.ws58{word-spacing:4.586400px;}
.ws63{word-spacing:4.645200px;}
.wse3{word-spacing:4.704000px;}
.ws4c{word-spacing:4.762800px;}
.wsed{word-spacing:4.821600px;}
.ws14a{word-spacing:4.880400px;}
.ws67{word-spacing:4.939200px;}
.wse7{word-spacing:4.998000px;}
.ws72{word-spacing:5.056800px;}
.ws150{word-spacing:5.115600px;}
.ws142{word-spacing:5.174400px;}
.ws9f{word-spacing:5.233200px;}
.ws64{word-spacing:5.292000px;}
.ws2c{word-spacing:5.350800px;}
.wsbf{word-spacing:5.468400px;}
.ws5d{word-spacing:5.527200px;}
.ws89{word-spacing:5.586000px;}
.ws101{word-spacing:5.644800px;}
.ws91{word-spacing:5.703600px;}
.wsfa{word-spacing:5.762400px;}
.ws5b{word-spacing:5.821200px;}
.ws187{word-spacing:5.880000px;}
.ws188{word-spacing:5.938800px;}
.ws76{word-spacing:6.056400px;}
.ws3e{word-spacing:6.115200px;}
.wsf4{word-spacing:6.174000px;}
.ws23{word-spacing:6.232800px;}
.ws1bb{word-spacing:6.291600px;}
.ws20{word-spacing:6.350400px;}
.ws15{word-spacing:6.409200px;}
.ws37{word-spacing:6.468000px;}
.ws1e{word-spacing:6.526800px;}
.ws18f{word-spacing:6.585600px;}
.wsd3{word-spacing:6.644400px;}
.wsb9{word-spacing:6.703200px;}
.ws81{word-spacing:6.762000px;}
.ws65{word-spacing:6.820800px;}
.ws1ad{word-spacing:6.879600px;}
.ws140{word-spacing:6.938400px;}
.wsee{word-spacing:6.997200px;}
.ws27{word-spacing:7.056000px;}
.wsa7{word-spacing:7.114800px;}
.ws8c{word-spacing:7.173600px;}
.ws1c{word-spacing:7.232400px;}
.ws11f{word-spacing:7.291200px;}
.ws51{word-spacing:7.350000px;}
.ws83{word-spacing:7.408800px;}
.ws174{word-spacing:7.467600px;}
.ws6c{word-spacing:7.585200px;}
.wsb6{word-spacing:7.644000px;}
.ws5e{word-spacing:7.702800px;}
.wsa5{word-spacing:7.761600px;}
.ws148{word-spacing:7.820400px;}
.wsa1{word-spacing:7.879200px;}
.wsc6{word-spacing:7.938000px;}
.wsb7{word-spacing:7.996800px;}
.ws40{word-spacing:8.055600px;}
.ws3c{word-spacing:8.114400px;}
.ws133{word-spacing:8.173200px;}
.ws69{word-spacing:8.232000px;}
.ws13f{word-spacing:8.290800px;}
.ws61{word-spacing:8.349600px;}
.wsa6{word-spacing:8.408400px;}
.ws8a{word-spacing:8.467200px;}
.ws109{word-spacing:8.526000px;}
.ws176{word-spacing:8.584800px;}
.ws193{word-spacing:8.643600px;}
.ws57{word-spacing:8.702400px;}
.ws12f{word-spacing:8.761200px;}
.wsaf{word-spacing:8.820000px;}
.wse2{word-spacing:8.878800px;}
.wsb4{word-spacing:8.937600px;}
.ws14b{word-spacing:8.996400px;}
.wsdd{word-spacing:9.055200px;}
.wsfc{word-spacing:9.114000px;}
.wsc3{word-spacing:9.172800px;}
.ws170{word-spacing:9.231600px;}
.wsa2{word-spacing:9.290400px;}
.ws135{word-spacing:9.349200px;}
.ws1b{word-spacing:9.408000px;}
.wsd9{word-spacing:9.466800px;}
.ws1c8{word-spacing:9.525600px;}
.ws88{word-spacing:9.584400px;}
.ws90{word-spacing:9.643200px;}
.ws177{word-spacing:9.702000px;}
.wsc5{word-spacing:9.760800px;}
.ws19d{word-spacing:9.819600px;}
.ws11e{word-spacing:9.878400px;}
.ws41{word-spacing:9.937200px;}
.ws7b{word-spacing:9.996000px;}
.ws34{word-spacing:10.054800px;}
.ws1ae{word-spacing:10.113600px;}
.wsc1{word-spacing:10.172400px;}
.ws100{word-spacing:10.231200px;}
.wsf9{word-spacing:10.290000px;}
.ws146{word-spacing:10.407600px;}
.wse8{word-spacing:10.466400px;}
.wsd6{word-spacing:10.525200px;}
.wsc7{word-spacing:10.584000px;}
.ws134{word-spacing:10.642800px;}
.ws1d{word-spacing:10.701600px;}
.ws1a3{word-spacing:10.760400px;}
.ws55{word-spacing:10.819200px;}
.ws50{word-spacing:10.878000px;}
.ws48{word-spacing:10.936800px;}
.ws7f{word-spacing:10.995600px;}
.ws127{word-spacing:11.054400px;}
.ws181{word-spacing:11.113200px;}
.ws59{word-spacing:11.230800px;}
.ws18a{word-spacing:11.289600px;}
.ws46{word-spacing:11.348400px;}
.ws26{word-spacing:11.407200px;}
.wsc8{word-spacing:11.466000px;}
.ws36{word-spacing:11.524800px;}
.ws54{word-spacing:11.583600px;}
.ws7a{word-spacing:11.642400px;}
.wsfd{word-spacing:11.701200px;}
.ws95{word-spacing:11.760000px;}
.ws189{word-spacing:11.818800px;}
.wse1{word-spacing:11.877600px;}
.ws75{word-spacing:11.936400px;}
.wsba{word-spacing:11.995200px;}
.wsf6{word-spacing:12.054000px;}
.wsce{word-spacing:12.112800px;}
.ws194{word-spacing:12.171600px;}
.ws29{word-spacing:12.230400px;}
.wscc{word-spacing:12.289200px;}
.ws141{word-spacing:12.348000px;}
.ws17a{word-spacing:12.406800px;}
.wsc9{word-spacing:12.465600px;}
.ws5c{word-spacing:12.524400px;}
.ws19f{word-spacing:12.583200px;}
.wscb{word-spacing:12.642000px;}
.ws9d{word-spacing:12.700800px;}
.wsdc{word-spacing:12.759600px;}
.ws123{word-spacing:12.818400px;}
.ws3b{word-spacing:12.877200px;}
.wsbc{word-spacing:12.936000px;}
.ws33{word-spacing:12.994800px;}
.ws2a{word-spacing:13.053600px;}
.ws145{word-spacing:13.112400px;}
.ws62{word-spacing:13.171200px;}
.ws198{word-spacing:13.230000px;}
.ws24{word-spacing:13.288800px;}
.ws18{word-spacing:13.347600px;}
.wsaa{word-spacing:13.406400px;}
.ws171{word-spacing:13.465200px;}
.ws124{word-spacing:13.641600px;}
.ws8d{word-spacing:13.700400px;}
.wsf8{word-spacing:13.759200px;}
.ws139{word-spacing:13.818000px;}
.wsb1{word-spacing:13.935600px;}
.ws53{word-spacing:13.994400px;}
.ws1aa{word-spacing:14.053200px;}
.ws77{word-spacing:14.112000px;}
.ws7c{word-spacing:14.170800px;}
.ws173{word-spacing:14.229600px;}
.ws3a{word-spacing:14.288400px;}
.wsae{word-spacing:14.347200px;}
.wse0{word-spacing:14.406000px;}
.wsca{word-spacing:14.464800px;}
.ws1a4{word-spacing:14.582400px;}
.ws12{word-spacing:14.641200px;}
.ws8f{word-spacing:14.758800px;}
.ws16b{word-spacing:14.876400px;}
.ws18b{word-spacing:14.935200px;}
.ws79{word-spacing:14.994000px;}
.ws32{word-spacing:15.052800px;}
.ws125{word-spacing:15.111600px;}
.wsff{word-spacing:15.170400px;}
.ws138{word-spacing:15.229200px;}
.ws4f{word-spacing:15.288000px;}
.ws42{word-spacing:15.346800px;}
.ws5f{word-spacing:15.464400px;}
.ws180{word-spacing:15.523200px;}
.ws8e{word-spacing:15.582000px;}
.ws106{word-spacing:15.640800px;}
.ws14d{word-spacing:15.699600px;}
.ws7e{word-spacing:15.817200px;}
.ws6a{word-spacing:15.876000px;}
.wsb8{word-spacing:15.993600px;}
.ws108{word-spacing:16.052400px;}
.ws186{word-spacing:16.111200px;}
.wsf0{word-spacing:16.170000px;}
.ws71{word-spacing:16.173600px;}
.ws14e{word-spacing:16.228800px;}
.ws196{word-spacing:16.287600px;}
.wse6{word-spacing:16.405200px;}
.wsef{word-spacing:16.464000px;}
.ws17f{word-spacing:16.522800px;}
.ws1a9{word-spacing:16.699200px;}
.ws19{word-spacing:16.758000px;}
.ws6d{word-spacing:16.816800px;}
.ws74{word-spacing:16.875600px;}
.ws16{word-spacing:16.934400px;}
.ws120{word-spacing:17.052000px;}
.wsb0{word-spacing:17.169600px;}
.wsc4{word-spacing:17.228400px;}
.wsf5{word-spacing:17.522400px;}
.ws1a2{word-spacing:17.698800px;}
.ws21{word-spacing:17.757600px;}
.wsa8{word-spacing:17.816400px;}
.ws18d{word-spacing:17.875200px;}
.ws1ca{word-spacing:17.934000px;}
.ws107{word-spacing:17.992800px;}
.ws3f{word-spacing:18.051600px;}
.ws185{word-spacing:18.110400px;}
.ws1a1{word-spacing:18.228000px;}
.ws18e{word-spacing:18.286800px;}
.ws22{word-spacing:18.416400px;}
.ws13b{word-spacing:18.463200px;}
.ws121{word-spacing:18.522000px;}
.ws97{word-spacing:18.580800px;}
.ws19e{word-spacing:18.639600px;}
.wsd7{word-spacing:18.698400px;}
.ws68{word-spacing:18.757200px;}
.wscd{word-spacing:18.816000px;}
.ws19c{word-spacing:18.933600px;}
.ws28{word-spacing:19.051200px;}
.ws182{word-spacing:19.110000px;}
.ws13e{word-spacing:19.227600px;}
.ws43{word-spacing:19.286400px;}
.ws93{word-spacing:19.345200px;}
.ws14c{word-spacing:19.404000px;}
.ws13c{word-spacing:19.639200px;}
.ws3d{word-spacing:19.698000px;}
.ws183{word-spacing:19.756800px;}
.ws18c{word-spacing:19.815600px;}
.ws8b{word-spacing:19.874400px;}
.ws17d{word-spacing:19.933200px;}
.ws66{word-spacing:19.992000px;}
.ws172{word-spacing:20.109600px;}
.ws195{word-spacing:20.462400px;}
.ws1ab{word-spacing:20.580000px;}
.ws105{word-spacing:20.756400px;}
.wsf1{word-spacing:20.815200px;}
.ws178{word-spacing:20.932800px;}
.wse5{word-spacing:21.462000px;}
.ws184{word-spacing:21.697200px;}
.ws11b{word-spacing:22.050000px;}
.ws73{word-spacing:22.167600px;}
.ws19a{word-spacing:22.226400px;}
.wsa0{word-spacing:22.932000px;}
.wsde{word-spacing:23.167200px;}
.ws199{word-spacing:23.578800px;}
.ws17e{word-spacing:24.402000px;}
.ws179{word-spacing:24.460800px;}
.ws190{word-spacing:24.637200px;}
.wsf7{word-spacing:24.696000px;}
.ws1a0{word-spacing:24.990000px;}
.ws11c{word-spacing:25.342800px;}
.ws17b{word-spacing:25.401600px;}
.ws4e{word-spacing:25.989600px;}
.ws17c{word-spacing:26.342400px;}
.wsa9{word-spacing:26.636400px;}
.wse9{word-spacing:26.989200px;}
.ws7d{word-spacing:28.459200px;}
.ws87{word-spacing:28.518000px;}
.ws1f{word-spacing:28.870800px;}
.ws96{word-spacing:31.046400px;}
.wsd5{word-spacing:32.046000px;}
.ws13d{word-spacing:33.398400px;}
.wsfe{word-spacing:37.984800px;}
.ws39{word-spacing:38.925600px;}
.ws137{word-spacing:38.984400px;}
.ws1c3{word-spacing:43.240805px;}
.ws9{word-spacing:45.687354px;}
.ws1c1{word-spacing:61.974618px;}
.ws1b4{word-spacing:86.488805px;}
.ws1bf{word-spacing:86.489354px;}
.ws1c2{word-spacing:86.489446px;}
.ws1b7{word-spacing:86.489537px;}
.ws1b5{word-spacing:109.912805px;}
.ws1a7{word-spacing:118.376424px;}
.ws1a5{word-spacing:119.100657px;}
.ws1b3{word-spacing:121.864805px;}
.ws1a6{word-spacing:130.581614px;}
.ws1c0{word-spacing:145.289354px;}
.ws1b6{word-spacing:259.201635px;}
.wsec{word-spacing:287.661678px;}
.wseb{word-spacing:319.438046px;}
.ws153{word-spacing:546.589228px;}
.ws169{word-spacing:568.668617px;}
.ws167{word-spacing:591.181274px;}
.ws168{word-spacing:607.453216px;}
.ws1b2{word-spacing:633.214746px;}
.ws166{word-spacing:787.933207px;}
.ws165{word-spacing:877.304407px;}
.ws154{word-spacing:879.805207px;}
._a{margin-left:-2891.244630px;}
._19{margin-left:-15.651080px;}
._10{margin-left:-11.720520px;}
._1a{margin-left:-9.489831px;}
._4{margin-left:-7.350000px;}
._f{margin-left:-6.214748px;}
._18{margin-left:-5.014800px;}
._6{margin-left:-3.947092px;}
._2{margin-left:-2.467988px;}
._1{margin-left:-1.404000px;}
._3{width:1.213800px;}
._5{width:2.422988px;}
._9{width:4.017600px;}
._c{width:5.044612px;}
._11{width:7.145412px;}
._1c{width:8.564640px;}
._8{width:9.990000px;}
._d{width:12.474025px;}
._e{width:14.186400px;}
._b{width:15.597766px;}
._7{width:17.671171px;}
._1b{width:18.686351px;}
._4c{width:38.305635px;}
._57{width:53.037111px;}
._55{width:57.795299px;}
._4d{width:97.000805px;}
._47{width:102.919189px;}
._53{width:107.335471px;}
._4b{width:110.829111px;}
._52{width:120.424805px;}
._4f{width:126.733635px;}
._46{width:141.141614px;}
._50{width:157.821111px;}
._54{width:159.457818px;}
._4e{width:160.643835px;}
._43{width:181.299014px;}
._44{width:207.964412px;}
._4a{width:213.477623px;}
._49{width:258.433635px;}
._51{width:271.859835px;}
._12{width:294.805208px;}
._13{width:297.310137px;}
._17{width:299.038321px;}
._48{width:302.445111px;}
._1f{width:324.326179px;}
._31{width:332.946078px;}
._45{width:335.431857px;}
._3d{width:340.208548px;}
._2d{width:341.298078px;}
._2f{width:348.847998px;}
._2a{width:358.717167px;}
._3b{width:370.812560px;}
._2b{width:374.988010px;}
._22{width:377.485167px;}
._25{width:389.270179px;}
._23{width:393.756010px;}
._20{width:405.541022px;}
._27{width:423.661167px;}
._28{width:439.932010px;}
._56{width:484.256946px;}
._1d{width:529.146547px;}
._1e{width:545.724010px;}
._16{width:566.869208px;}
._2e{width:568.648808px;}
._42{width:593.579950px;}
._35{width:671.048407px;}
._26{width:711.956407px;}
._15{width:729.877208px;}
._14{width:761.652599px;}
._21{width:779.384407px;}
._33{width:808.520407px;}
._32{width:810.500407px;}
._24{width:819.800407px;}
._34{width:875.624407px;}
._2c{width:881.706607px;}
._29{width:900.152407px;}
._30{width:938.016796px;}
._36{width:1020.976225px;}
._38{width:1052.009013px;}
._3f{width:1178.325025px;}
._3c{width:1194.641013px;}
._3e{width:1331.013025px;}
._37{width:1377.393025px;}
._3a{width:1466.887225px;}
._39{width:1488.117025px;}
._0{width:1615.048745px;}
._41{width:2298.341985px;}
._40{width:2320.181572px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.500000px;}
.fs13{font-size:33.600000px;}
.fs11{font-size:40.308600px;}
.fs12{font-size:41.175000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fse{font-size:46.199999px;}
.fs6{font-size:48.000000px;}
.fs10{font-size:54.000000px;}
.fsf{font-size:55.199999px;}
.fs7{font-size:58.800000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:74.580000px;}
.fs5{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fsc{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:0.382965px;}
.y98{bottom:2.692566px;}
.yd3{bottom:7.558228px;}
.y95{bottom:9.716949px;}
.yd5{bottom:14.446381px;}
.y97{bottom:16.460175px;}
.y6{bottom:66.525004px;}
.y88{bottom:92.551203px;}
.y7f{bottom:92.551352px;}
.y19c{bottom:93.856052px;}
.y5{bottom:97.125005px;}
.ycf{bottom:100.975204px;}
.y124{bottom:106.532100px;}
.y87{bottom:110.551197px;}
.y7e{bottom:110.551346px;}
.y1e5{bottom:110.605797px;}
.y19b{bottom:111.856052px;}
.yeb{bottom:112.670998px;}
.y29{bottom:112.869152px;}
.yce{bottom:115.975204px;}
.y1e4{bottom:124.105797px;}
.y123{bottom:124.532100px;}
.y224{bottom:124.613697px;}
.y28{bottom:124.869152px;}
.y86{bottom:128.551197px;}
.y7d{bottom:128.551346px;}
.yea{bottom:129.049953px;}
.y19a{bottom:129.856052px;}
.ycd{bottom:133.479000px;}
.y27{bottom:136.869152px;}
.y1e3{bottom:137.605797px;}
.y223{bottom:138.113697px;}
.y22{bottom:139.264499px;}
.y122{bottom:142.532100px;}
.y1a9{bottom:143.787449px;}
.y199{bottom:146.107944px;}
.y85{bottom:146.551197px;}
.y7c{bottom:146.551346px;}
.ye9{bottom:146.553898px;}
.y26{bottom:148.869152px;}
.ycc{bottom:150.982944px;}
.y1e2{bottom:151.105797px;}
.y222{bottom:151.613697px;}
.y1a8{bottom:157.287449px;}
.y121{bottom:160.532100px;}
.y25{bottom:160.869152px;}
.y198{bottom:162.486900px;}
.ye8{bottom:164.170349px;}
.y84{bottom:164.551197px;}
.y7b{bottom:164.551346px;}
.y1e1{bottom:164.605797px;}
.y221{bottom:165.113697px;}
.ycb{bottom:168.486900px;}
.y1a7{bottom:170.787449px;}
.y24{bottom:172.869152px;}
.y197{bottom:177.486900px;}
.y1e0{bottom:178.105797px;}
.y120{bottom:178.532100px;}
.y220{bottom:178.613697px;}
.ye3{bottom:180.705597px;}
.ye7{bottom:181.674305px;}
.y83{bottom:182.551197px;}
.y7a{bottom:182.551346px;}
.yca{bottom:185.990845px;}
.y1df{bottom:191.605797px;}
.y21f{bottom:192.113708px;}
.y196{bottom:192.486900px;}
.y11f{bottom:196.532089px;}
.y19{bottom:196.933500px;}
.y1a6{bottom:197.787460px;}
.ye6{bottom:198.174294px;}
.y82{bottom:200.551208px;}
.y79{bottom:200.551346px;}
.yc9{bottom:203.494789px;}
.y1de{bottom:205.105797px;}
.y21e{bottom:205.613708px;}
.y195{bottom:207.486900px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y1a5{bottom:211.287460px;}
.y46{bottom:213.424805px;}
.y11e{bottom:214.532089px;}
.y3e{bottom:218.551208px;}
.y78{bottom:218.551346px;}
.y1dd{bottom:218.605797px;}
.y21d{bottom:219.113708px;}
.yc8{bottom:220.998756px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1a4{bottom:224.787460px;}
.y194{bottom:224.990845px;}
.y45{bottom:231.424805px;}
.y1dc{bottom:232.105797px;}
.y11d{bottom:232.532089px;}
.y21c{bottom:232.613708px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yc7{bottom:235.998756px;}
.y3d{bottom:236.551208px;}
.y77{bottom:236.551346px;}
.y1a3{bottom:238.287460px;}
.y193{bottom:242.494789px;}
.y44{bottom:244.924805px;}
.y1db{bottom:245.605797px;}
.y21b{bottom:246.113708px;}
.y13e{bottom:248.111252px;}
.y11c{bottom:250.532089px;}
.y1a2{bottom:251.787460px;}
.yc6{bottom:253.502700px;}
.y43{bottom:253.924805px;}
.y3c{bottom:254.551208px;}
.y76{bottom:254.551346px;}
.y192{bottom:257.494789px;}
.y1da{bottom:259.105797px;}
.y21a{bottom:259.613708px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y13d{bottom:263.111252px;}
.y1a1{bottom:265.287460px;}
.y42{bottom:267.424805px;}
.yc5{bottom:268.502700px;}
.y11b{bottom:268.532089px;}
.y191{bottom:272.494789px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y3b{bottom:272.551208px;}
.y75{bottom:272.551346px;}
.y1d9{bottom:272.605797px;}
.y219{bottom:273.113708px;}
.y16e{bottom:279.982956px;}
.y13c{bottom:280.615196px;}
.y41{bottom:280.924805px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yc4{bottom:286.006645px;}
.y1d8{bottom:286.105797px;}
.y11a{bottom:286.532089px;}
.y218{bottom:286.613708px;}
.y190{bottom:289.998756px;}
.y3a{bottom:290.551208px;}
.y74{bottom:290.551346px;}
.y16d{bottom:294.982956px;}
.y13b{bottom:295.615196px;}
.y1d7{bottom:299.605797px;}
.y217{bottom:300.113708px;}
.yc3{bottom:303.510590px;}
.y119{bottom:304.532089px;}
.y18f{bottom:304.998756px;}
.y1a0{bottom:305.043297px;}
.y39{bottom:308.551208px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y13a{bottom:310.615196px;}
.y16c{bottom:312.486900px;}
.y1d6{bottom:313.105797px;}
.y216{bottom:313.613708px;}
.y18e{bottom:319.998756px;}
.y118{bottom:320.784004px;}
.yc2{bottom:321.014557px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y38{bottom:326.551208px;}
.y1d5{bottom:326.605797px;}
.y215{bottom:327.113708px;}
.y16b{bottom:327.486900px;}
.y139{bottom:328.119141px;}
.y19f{bottom:335.551208px;}
.y117{bottom:337.162949px;}
.y18d{bottom:337.502700px;}
.yc1{bottom:338.518500px;}
.y1d4{bottom:340.105797px;}
.y214{bottom:340.613708px;}
.y16a{bottom:342.486900px;}
.y138{bottom:343.119141px;}
.y37{bottom:344.551208px;}
.y137{bottom:345.623108px;}
.y10{bottom:348.133500px;}
.y19e{bottom:349.051208px;}
.y116{bottom:352.162949px;}
.y18c{bottom:352.502700px;}
.y1d3{bottom:353.605797px;}
.y213{bottom:354.113708px;}
.yc0{bottom:356.022308px;}
.y169{bottom:357.486900px;}
.y136{bottom:360.623108px;}
.y36{bottom:362.551208px;}
.y1d2{bottom:367.105797px;}
.y115{bottom:367.162949px;}
.y212{bottom:367.613708px;}
.y18b{bottom:370.006645px;}
.y168{bottom:372.486900px;}
.ybf{bottom:373.526253px;}
.y135{bottom:375.623108px;}
.y35{bottom:380.551208px;}
.y1d1{bottom:380.605797px;}
.y211{bottom:381.113708px;}
.y114{bottom:384.666916px;}
.yf{bottom:386.785499px;}
.y167{bottom:387.486877px;}
.y18a{bottom:387.510590px;}
.ybe{bottom:391.030197px;}
.y134{bottom:393.127029px;}
.y1d0{bottom:394.105820px;}
.y210{bottom:394.613708px;}
.y34{bottom:398.551208px;}
.y113{bottom:402.170837px;}
.y166{bottom:402.486877px;}
.y189{bottom:402.510590px;}
.y1cf{bottom:407.605820px;}
.ye{bottom:408.044999px;}
.y20f{bottom:408.113708px;}
.ybd{bottom:408.534164px;}
.y133{bottom:410.630997px;}
.y33{bottom:416.551208px;}
.y165{bottom:417.486877px;}
.y188{bottom:417.510590px;}
.y112{bottom:419.674805px;}
.y1ce{bottom:421.105820px;}
.y20e{bottom:421.613708px;}
.ybc{bottom:426.038086px;}
.y132{bottom:428.134781px;}
.y32{bottom:434.551208px;}
.y1cd{bottom:434.605820px;}
.y164{bottom:434.990845px;}
.y187{bottom:435.014557px;}
.y20d{bottom:435.113708px;}
.y111{bottom:437.178772px;}
.ybb{bottom:443.542053px;}
.y131{bottom:445.638748px;}
.y1cc{bottom:448.105820px;}
.y20c{bottom:448.613708px;}
.y163{bottom:449.990845px;}
.y186{bottom:450.014557px;}
.y110{bottom:452.178772px;}
.y31{bottom:452.551208px;}
.yba{bottom:461.046021px;}
.y1cb{bottom:461.605820px;}
.y20b{bottom:462.113708px;}
.y130{bottom:463.142715px;}
.y162{bottom:467.494812px;}
.y185{bottom:467.518478px;}
.y10f{bottom:469.682693px;}
.y30{bottom:470.551208px;}
.y1ca{bottom:475.105820px;}
.y20a{bottom:475.613708px;}
.y12f{bottom:478.142715px;}
.yb9{bottom:478.549942px;}
.y161{bottom:482.494812px;}
.y184{bottom:482.518478px;}
.y10e{bottom:487.186478px;}
.y2f{bottom:488.551208px;}
.y1c9{bottom:488.605820px;}
.y209{bottom:489.113708px;}
.y12e{bottom:495.646637px;}
.yb8{bottom:496.053909px;}
.y160{bottom:499.998734px;}
.y183{bottom:500.022308px;}
.y1c8{bottom:502.105820px;}
.y208{bottom:502.613708px;}
.yd{bottom:502.864502px;}
.y10d{bottom:504.690445px;}
.y2e{bottom:506.551208px;}
.y12d{bottom:513.150604px;}
.yb7{bottom:513.557831px;}
.y15f{bottom:514.998734px;}
.y1c7{bottom:515.605820px;}
.y207{bottom:516.113708px;}
.y182{bottom:517.526230px;}
.yc{bottom:520.864502px;}
.y10c{bottom:522.194412px;}
.y2d{bottom:524.551208px;}
.y1c6{bottom:529.105820px;}
.y206{bottom:529.613708px;}
.y15e{bottom:529.998734px;}
.y12c{bottom:530.654572px;}
.yb6{bottom:531.061798px;}
.y181{bottom:532.526230px;}
.yb{bottom:538.864499px;}
.y10b{bottom:539.698334px;}
.y2c{bottom:542.551208px;}
.y1c5{bottom:542.605820px;}
.y205{bottom:543.113708px;}
.y15d{bottom:547.502700px;}
.y12b{bottom:548.158493px;}
.yb5{bottom:548.565582px;}
.y180{bottom:550.030197px;}
.y1c4{bottom:556.105820px;}
.y204{bottom:556.613708px;}
.ya{bottom:556.864499px;}
.y10a{bottom:557.202300px;}
.y73{bottom:560.551208px;}
.y15c{bottom:562.502700px;}
.y17f{bottom:565.030197px;}
.y12a{bottom:565.662460px;}
.yb4{bottom:566.069550px;}
.y1c3{bottom:569.605820px;}
.y203{bottom:570.113708px;}
.y109{bottom:574.706268px;}
.y72{bottom:578.551208px;}
.y15b{bottom:580.006668px;}
.y17e{bottom:582.534164px;}
.y1c2{bottom:583.105820px;}
.y129{bottom:583.166382px;}
.yb3{bottom:583.573517px;}
.y202{bottom:583.613708px;}
.ye4{bottom:583.664566px;}
.y108{bottom:592.210190px;}
.y71{bottom:596.551208px;}
.y1c1{bottom:596.605820px;}
.y201{bottom:597.113708px;}
.y15a{bottom:597.510590px;}
.y17d{bottom:597.534164px;}
.y128{bottom:600.670349px;}
.yb2{bottom:601.077438px;}
.y53{bottom:603.354172px;}
.y107{bottom:609.714157px;}
.y1c0{bottom:610.105820px;}
.y200{bottom:610.613708px;}
.y70{bottom:614.551208px;}
.y159{bottom:615.014557px;}
.y17c{bottom:615.038086px;}
.ye5{bottom:615.631805px;}
.y127{bottom:615.670349px;}
.yb1{bottom:618.581406px;}
.y1bf{bottom:623.605820px;}
.y1ff{bottom:624.113708px;}
.y52{bottom:624.354172px;}
.y106{bottom:627.218079px;}
.y17b{bottom:630.038086px;}
.y126{bottom:630.670349px;}
.y158{bottom:632.518478px;}
.y6f{bottom:632.551208px;}
.yb0{bottom:636.085327px;}
.y1be{bottom:637.105820px;}
.y1fe{bottom:637.613708px;}
.y51{bottom:642.354172px;}
.y105{bottom:644.722046px;}
.y17a{bottom:645.038086px;}
.y9{bottom:645.510000px;}
.y125{bottom:648.174133px;}
.y157{bottom:650.022308px;}
.y6e{bottom:650.551208px;}
.y1bd{bottom:650.605820px;}
.y1fd{bottom:651.113708px;}
.y156{bottom:652.526230px;}
.yaf{bottom:653.589294px;}
.y179{bottom:660.038086px;}
.y104{bottom:662.225830px;}
.y1bc{bottom:664.105820px;}
.y1fc{bottom:664.613708px;}
.y50{bottom:664.854172px;}
.y8{bottom:666.771000px;}
.y155{bottom:667.526230px;}
.y6d{bottom:668.551208px;}
.yae{bottom:671.093262px;}
.y178{bottom:675.038086px;}
.y1bb{bottom:677.605820px;}
.y1fb{bottom:678.113708px;}
.yd2{bottom:678.889481px;}
.yd1{bottom:678.889800px;}
.y103{bottom:679.729797px;}
.y4f{bottom:682.854172px;}
.y154{bottom:685.030197px;}
.yd4{bottom:686.447708px;}
.y6c{bottom:686.551208px;}
.yad{bottom:688.597183px;}
.y177{bottom:690.038086px;}
.y1ba{bottom:691.105820px;}
.y1fa{bottom:691.613708px;}
.y102{bottom:694.729797px;}
.y4e{bottom:700.854172px;}
.y153{bottom:702.534164px;}
.y6b{bottom:704.551208px;}
.y176{bottom:705.038086px;}
.y1f9{bottom:705.113708px;}
.yac{bottom:706.101150px;}
.y101{bottom:712.233765px;}
.y100{bottom:714.737686px;}
.y152{bottom:717.534164px;}
.y1f8{bottom:718.613708px;}
.y4d{bottom:718.854172px;}
.y175{bottom:720.038086px;}
.y6a{bottom:722.551208px;}
.yab{bottom:723.605118px;}
.y7{bottom:726.298500px;}
.yff{bottom:729.737686px;}
.y1f7{bottom:732.113708px;}
.y151{bottom:735.038086px;}
.y4c{bottom:736.854172px;}
.y174{bottom:737.542053px;}
.y69{bottom:740.551208px;}
.yaa{bottom:741.109039px;}
.y1f6{bottom:745.613708px;}
.yfe{bottom:747.354172px;}
.y150{bottom:750.038086px;}
.y173{bottom:752.542053px;}
.y4{bottom:752.599495px;}
.y4b{bottom:754.854172px;}
.y68{bottom:758.551208px;}
.ya9{bottom:758.612869px;}
.y1f5{bottom:759.113708px;}
.y1b9{bottom:760.105820px;}
.yfd{bottom:764.858093px;}
.y14f{bottom:765.038086px;}
.y172{bottom:767.542053px;}
.yfb{bottom:769.866028px;}
.y1f4{bottom:772.613708px;}
.y4a{bottom:772.854126px;}
.ya8{bottom:776.116974px;}
.y67{bottom:776.551208px;}
.yfc{bottom:782.362061px;}
.y14e{bottom:782.542053px;}
.yfa{bottom:784.866028px;}
.y1f3{bottom:786.113708px;}
.y1b8{bottom:790.613708px;}
.y49{bottom:790.854126px;}
.ya7{bottom:793.620941px;}
.y66{bottom:794.551208px;}
.y14d{bottom:797.542053px;}
.y1f2{bottom:799.613708px;}
.yf9{bottom:799.866028px;}
.y171{bottom:800.046021px;}
.y1b7{bottom:804.113708px;}
.y48{bottom:808.854126px;}
.ya6{bottom:811.124725px;}
.y65{bottom:812.551208px;}
.y1f1{bottom:813.113708px;}
.y14c{bottom:815.046021px;}
.yf8{bottom:817.369995px;}
.y1f0{bottom:826.613708px;}
.y47{bottom:826.854126px;}
.ya5{bottom:828.628693px;}
.y14b{bottom:830.046021px;}
.y64{bottom:830.551208px;}
.y1b6{bottom:831.113708px;}
.y19d{bottom:837.746887px;}
.y1ef{bottom:840.113708px;}
.y1b5{bottom:844.613708px;}
.y14a{bottom:845.046021px;}
.ya4{bottom:846.132568px;}
.y63{bottom:848.551208px;}
.y1ee{bottom:853.613708px;}
.yf7{bottom:855.746887px;}
.ye1{bottom:859.623871px;}
.y149{bottom:860.046021px;}
.ya3{bottom:863.636536px;}
.y62{bottom:866.551208px;}
.y1ed{bottom:867.113708px;}
.y1b4{bottom:871.613708px;}
.yf6{bottom:873.746887px;}
.y148{bottom:875.046021px;}
.y93{bottom:876.147491px;}
.ye0{bottom:876.625763px;}
.y3{bottom:879.369000px;}
.y1ec{bottom:880.613708px;}
.ya2{bottom:881.140503px;}
.y61{bottom:884.551208px;}
.y1b3{bottom:885.113708px;}
.y56{bottom:885.316681px;}
.y170{bottom:890.046021px;}
.yf5{bottom:891.746887px;}
.y92{bottom:892.526276px;}
.y147{bottom:892.549988px;}
.ydf{bottom:893.627838px;}
.y1eb{bottom:894.113708px;}
.y1b2{bottom:898.613708px;}
.ya1{bottom:898.644470px;}
.y60{bottom:902.551208px;}
.y146{bottom:907.549988px;}
.y1ea{bottom:907.613708px;}
.yf4{bottom:909.746887px;}
.y91{bottom:910.030243px;}
.yde{bottom:910.629730px;}
.ya0{bottom:916.148437px;}
.y5f{bottom:920.551208px;}
.y1e9{bottom:921.113708px;}
.y145{bottom:922.549988px;}
.y1b1{bottom:925.613708px;}
.ydd{bottom:927.008881px;}
.y90{bottom:927.534119px;}
.yf3{bottom:927.746887px;}
.y9f{bottom:933.652313px;}
.y1e8{bottom:934.613708px;}
.y55{bottom:936.316681px;}
.y144{bottom:937.549988px;}
.y5e{bottom:938.551208px;}
.ydc{bottom:944.512756px;}
.y8f{bottom:945.038086px;}
.y2{bottom:945.126001px;}
.yf2{bottom:945.746887px;}
.y94{bottom:947.611542px;}
.y1e7{bottom:948.113708px;}
.y9e{bottom:951.156189px;}
.y143{bottom:952.549988px;}
.y16f{bottom:955.053864px;}
.y5d{bottom:956.551208px;}
.y96{bottom:957.328491px;}
.y1b0{bottom:961.613708px;}
.ydb{bottom:962.016632px;}
.y8e{bottom:962.542053px;}
.yf1{bottom:963.746887px;}
.y9d{bottom:966.156189px;}
.y1{bottom:966.726000px;}
.y142{bottom:970.053864px;}
.y5c{bottom:974.551208px;}
.y1af{bottom:975.113708px;}
.y54{bottom:975.316681px;}
.yda{bottom:979.520508px;}
.y8d{bottom:980.046021px;}
.yf0{bottom:981.746887px;}
.y9c{bottom:983.660065px;}
.y141{bottom:985.053864px;}
.y1ae{bottom:988.613708px;}
.y5b{bottom:992.551208px;}
.yd9{bottom:997.024475px;}
.y8c{bottom:997.549988px;}
.yef{bottom:999.746887px;}
.y9b{bottom:1001.164032px;}
.y1ad{bottom:1002.113708px;}
.y140{bottom:1002.670349px;}
.y5a{bottom:1010.551208px;}
.yd8{bottom:1014.528442px;}
.y8b{bottom:1015.053864px;}
.y1e6{bottom:1015.613708px;}
.y13f{bottom:1017.670349px;}
.yee{bottom:1017.746887px;}
.y9a{bottom:1018.667999px;}
.y226{bottom:1019.551208px;}
.y81{bottom:1028.551208px;}
.y59{bottom:1028.551392px;}
.y1ac{bottom:1029.113708px;}
.yd7{bottom:1032.032410px;}
.y8a{bottom:1032.670349px;}
.y225{bottom:1033.051208px;}
.yed{bottom:1035.746887px;}
.y99{bottom:1036.284485px;}
.y23{bottom:1036.426208px;}
.y1ab{bottom:1042.613708px;}
.y80{bottom:1046.551208px;}
.y58{bottom:1046.551392px;}
.y89{bottom:1050.174133px;}
.ye2{bottom:1052.070740px;}
.yec{bottom:1053.746887px;}
.yd0{bottom:1054.426208px;}
.y1aa{bottom:1056.113708px;}
.y40{bottom:1103.110382px;}
.y2b{bottom:1114.051208px;}
.y3f{bottom:1125.484314px;}
.y2a{bottom:1129.051208px;}
.y57{bottom:1129.426208px;}
.h26{height:22.722000px;}
.h21{height:24.000000px;}
.h15{height:29.452500px;}
.h22{height:30.231450px;}
.h27{height:30.881250px;}
.h23{height:31.239165px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h24{height:38.817182px;}
.h2b{height:39.186000px;}
.he{height:39.270000px;}
.h28{height:39.651525px;}
.h20{height:39.984000px;}
.hd{height:40.824000px;}
.h14{height:42.075000px;}
.h2f{height:42.840000px;}
.h18{height:43.740000px;}
.h25{height:44.784000px;}
.h1f{height:44.880000px;}
.h10{height:45.696000px;}
.hf{height:45.744000px;}
.h7{height:45.960000px;}
.h1e{height:46.656000px;}
.h2d{height:47.472000px;}
.h2c{height:47.988281px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h2e{height:50.490000px;}
.h2a{height:51.858907px;}
.h1d{height:53.406000px;}
.h1b{height:53.654399px;}
.h1c{height:54.625200px;}
.h2{height:55.152000px;}
.h11{height:55.860000px;}
.h16{height:56.100000px;}
.h17{height:58.320000px;}
.h12{height:61.120200px;}
.h29{height:68.350500px;}
.h1a{height:69.596779px;}
.h13{height:71.000160px;}
.h5{height:78.132000px;}
.hc{height:78.896517px;}
.h4{height:119.055004px;}
.h19{height:137.088000px;}
.hb{height:1190.250000px;}
.ha{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:306.140991px;}
.w4{width:306.142502px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:22.220856px;}
.x14{left:53.268311px;}
.x1d{left:71.058300px;}
.x7{left:85.039352px;}
.x5{left:91.234200px;}
.x29{left:93.543303px;}
.xc{left:94.789352px;}
.xe{left:97.039500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1b{left:107.539352px;}
.x16{left:110.024231px;}
.x1c{left:119.187149px;}
.x1e{left:125.733297px;}
.x17{left:165.375595px;}
.x28{left:177.186447px;}
.x4{left:203.484001px;}
.x20{left:206.769150px;}
.x25{left:264.942902px;}
.x6{left:271.062904px;}
.x26{left:323.549240px;}
.x18{left:353.673454px;}
.x27{left:382.155601px;}
.x3{left:454.959000px;}
.x8{left:457.086594px;}
.x9{left:469.086594px;}
.x10{left:479.586594px;}
.xf{left:487.086594px;}
.x11{left:493.518127px;}
.x13{left:511.781387px;}
.x1f{left:524.504700px;}
.x19{left:527.892609px;}
.x15{left:542.969421px;}
.x24{left:549.233871px;}
.xa{left:607.648636px;}
.x21{left:636.990280px;}
.x22{left:695.596481px;}
.x1a{left:706.179749px;}
.xb{left:738.105148px;}
.xd{left:744.817657px;}
.x23{left:754.202866px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v5{vertical-align:17.066406pt;}
.v3{vertical-align:23.466471pt;}
.v4{vertical-align:25.510200pt;}
.ls5{letter-spacing:-2.665600pt;}
.ls2e{letter-spacing:-2.389333pt;}
.ls2d{letter-spacing:-1.024000pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls2b{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.470400pt;}
.ls2c{letter-spacing:-0.469333pt;}
.ls22{letter-spacing:-0.183000pt;}
.lsa{letter-spacing:-0.179149pt;}
.ls25{letter-spacing:-0.109800pt;}
.ls14{letter-spacing:-0.107490pt;}
.ls15{letter-spacing:-0.035830pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000004pt;}
.ls16{letter-spacing:0.000008pt;}
.ls17{letter-spacing:0.000089pt;}
.ls7{letter-spacing:0.035830pt;}
.ls10{letter-spacing:0.071660pt;}
.ls19{letter-spacing:0.073200pt;}
.ls1c{letter-spacing:0.146400pt;}
.ls8{letter-spacing:0.250809pt;}
.ls2a{letter-spacing:0.261333pt;}
.lse{letter-spacing:1.074896pt;}
.ls27{letter-spacing:1.098000pt;}
.lsc{letter-spacing:1.182386pt;}
.lsb{letter-spacing:1.254045pt;}
.ls12{letter-spacing:1.540684pt;}
.lsd{letter-spacing:2.042302pt;}
.ls21{letter-spacing:3.111000pt;}
.ls9{letter-spacing:3.368007pt;}
.ls23{letter-spacing:4.977600pt;}
.ls28{letter-spacing:7.393200pt;}
.ls11{letter-spacing:7.846741pt;}
.ls1a{letter-spacing:7.905600pt;}
.ls26{letter-spacing:8.015400pt;}
.ls1e{letter-spacing:8.235000pt;}
.ls13{letter-spacing:8.240869pt;}
.ls1b{letter-spacing:8.271600pt;}
.ls1{letter-spacing:8.320000pt;}
.ls29{letter-spacing:8.527800pt;}
.ls24{letter-spacing:13.139400pt;}
.lsf{letter-spacing:13.758669pt;}
.ls18{letter-spacing:18.263400pt;}
.ls2{letter-spacing:49.605504pt;}
.ls1d{letter-spacing:204.850200pt;}
.ls20{letter-spacing:914.858149pt;}
.ws112{word-spacing:-25.690014pt;}
.ws15c{word-spacing:-25.327200pt;}
.ws164{word-spacing:-20.715600pt;}
.ws15e{word-spacing:-20.203200pt;}
.ws118{word-spacing:-20.172215pt;}
.ws114{word-spacing:-19.778086pt;}
.ws162{word-spacing:-19.581000pt;}
.ws15b{word-spacing:-17.165400pt;}
.ws3{word-spacing:-14.054187pt;}
.ws10e{word-spacing:-13.973648pt;}
.ws116{word-spacing:-13.472030pt;}
.ws160{word-spacing:-13.285800pt;}
.ws10c{word-spacing:-13.113731pt;}
.ws111{word-spacing:-13.006242pt;}
.ws8{word-spacing:-12.848000pt;}
.wsbe{word-spacing:-12.387200pt;}
.ws163{word-spacing:-12.334200pt;}
.ws2{word-spacing:-12.282667pt;}
.ws15f{word-spacing:-12.261000pt;}
.ws161{word-spacing:-12.187800pt;}
.ws115{word-spacing:-12.182155pt;}
.ws15d{word-spacing:-12.078000pt;}
.ws10f{word-spacing:-11.967175pt;}
.ws11a{word-spacing:-11.823856pt;}
.wsbd{word-spacing:-11.812267pt;}
.ws10a{word-spacing:-11.752196pt;}
.ws6{word-spacing:-11.096533pt;}
.ws15a{word-spacing:-11.053200pt;}
.ws7{word-spacing:-10.560000pt;}
.ws16a{word-spacing:-10.176000pt;}
.ws1c7{word-spacing:-10.156800pt;}
.ws152{word-spacing:-9.344000pt;}
.ws1{word-spacing:-9.045333pt;}
.ws151{word-spacing:-8.832000pt;}
.ws4{word-spacing:-8.760000pt;}
.ws1c6{word-spacing:-8.280000pt;}
.ws1b1{word-spacing:-8.064000pt;}
.ws155{word-spacing:-7.680000pt;}
.ws110{word-spacing:-7.416782pt;}
.ws11{word-spacing:-7.242667pt;}
.ws1c4{word-spacing:-6.954667pt;}
.ws119{word-spacing:-6.915164pt;}
.ws5{word-spacing:-6.132000pt;}
.ws113{word-spacing:-4.227924pt;}
.ws10b{word-spacing:-4.120435pt;}
.ws1c5{word-spacing:-4.010667pt;}
.ws117{word-spacing:-3.905455pt;}
.ws158{word-spacing:-3.498667pt;}
.ws129{word-spacing:-3.368007pt;}
.ws16e{word-spacing:-3.111000pt;}
.ws159{word-spacing:-3.074400pt;}
.ws156{word-spacing:-2.346667pt;}
.ws1bc{word-spacing:-2.299733pt;}
.ws1ba{word-spacing:-2.195200pt;}
.ws1b8{word-spacing:-1.986133pt;}
.ws1ac{word-spacing:-1.933867pt;}
.ws10d{word-spacing:-1.898983pt;}
.ws1c9{word-spacing:-1.829333pt;}
.ws1be{word-spacing:-1.792000pt;}
.ws157{word-spacing:-1.706667pt;}
.ws1b0{word-spacing:-1.493333pt;}
.ws1af{word-spacing:-1.411200pt;}
.ws12a{word-spacing:-1.254045pt;}
.ws1bd{word-spacing:-1.149867pt;}
.ws16c{word-spacing:-1.045333pt;}
.ws103{word-spacing:-0.784000pt;}
.wsa{word-spacing:-0.693333pt;}
.ws9b{word-spacing:-0.574933pt;}
.wsea{word-spacing:-0.522667pt;}
.wsd1{word-spacing:-0.470400pt;}
.ws14f{word-spacing:-0.418133pt;}
.wsc2{word-spacing:-0.365867pt;}
.ws144{word-spacing:-0.313600pt;}
.ws149{word-spacing:-0.261333pt;}
.ws1b9{word-spacing:-0.213333pt;}
.ws85{word-spacing:-0.209067pt;}
.ws99{word-spacing:-0.156800pt;}
.ws2b{word-spacing:-0.104533pt;}
.ws1cb{word-spacing:-0.080000pt;}
.ws16f{word-spacing:-0.073200pt;}
.ws12b{word-spacing:-0.071660pt;}
.ws1a{word-spacing:-0.052267pt;}
.ws12c{word-spacing:-0.035830pt;}
.ws0{word-spacing:0.000000pt;}
.ws12d{word-spacing:0.035830pt;}
.ws49{word-spacing:0.052267pt;}
.ws102{word-spacing:0.104533pt;}
.wsf3{word-spacing:0.156800pt;}
.wsf{word-spacing:0.186667pt;}
.ws35{word-spacing:0.209067pt;}
.ws19b{word-spacing:0.261333pt;}
.ws2d{word-spacing:0.313600pt;}
.wsf2{word-spacing:0.365867pt;}
.ws4b{word-spacing:0.418133pt;}
.ws82{word-spacing:0.470400pt;}
.ws25{word-spacing:0.522667pt;}
.wsdb{word-spacing:0.574933pt;}
.wsd2{word-spacing:0.627200pt;}
.ws52{word-spacing:0.679467pt;}
.ws1a8{word-spacing:0.731733pt;}
.ws60{word-spacing:0.784000pt;}
.wsd4{word-spacing:0.836267pt;}
.ws84{word-spacing:0.888533pt;}
.ws10{word-spacing:0.933333pt;}
.ws130{word-spacing:0.940800pt;}
.ws6b{word-spacing:0.993067pt;}
.ws14{word-spacing:1.045333pt;}
.wsb5{word-spacing:1.097600pt;}
.wsc{word-spacing:1.120000pt;}
.ws122{word-spacing:1.149867pt;}
.wsd{word-spacing:1.157333pt;}
.wsb{word-spacing:1.194667pt;}
.ws11d{word-spacing:1.202133pt;}
.ws6f{word-spacing:1.254400pt;}
.wse{word-spacing:1.306667pt;}
.ws104{word-spacing:1.358933pt;}
.ws45{word-spacing:1.411200pt;}
.ws143{word-spacing:1.463467pt;}
.ws132{word-spacing:1.515733pt;}
.ws80{word-spacing:1.568000pt;}
.ws9c{word-spacing:1.620267pt;}
.ws175{word-spacing:1.672533pt;}
.ws98{word-spacing:1.724800pt;}
.ws12e{word-spacing:1.777067pt;}
.wsc0{word-spacing:1.829333pt;}
.ws6e{word-spacing:1.881600pt;}
.wsfb{word-spacing:1.933867pt;}
.wsb3{word-spacing:1.986133pt;}
.ws56{word-spacing:2.038400pt;}
.ws197{word-spacing:2.090667pt;}
.wsa3{word-spacing:2.142933pt;}
.ws5a{word-spacing:2.195200pt;}
.ws192{word-spacing:2.247467pt;}
.wsad{word-spacing:2.299733pt;}
.ws4a{word-spacing:2.352000pt;}
.wsb2{word-spacing:2.404267pt;}
.ws128{word-spacing:2.456533pt;}
.ws30{word-spacing:2.480000pt;}
.ws13{word-spacing:2.508800pt;}
.wscf{word-spacing:2.561067pt;}
.wsdf{word-spacing:2.613333pt;}
.ws70{word-spacing:2.665600pt;}
.wsab{word-spacing:2.717867pt;}
.ws31{word-spacing:2.730667pt;}
.ws78{word-spacing:2.770133pt;}
.ws4d{word-spacing:2.822400pt;}
.wsda{word-spacing:2.874667pt;}
.ws16d{word-spacing:2.926933pt;}
.wsac{word-spacing:2.979200pt;}
.ws17{word-spacing:3.031467pt;}
.ws147{word-spacing:3.083733pt;}
.ws9a{word-spacing:3.136000pt;}
.ws47{word-spacing:3.188267pt;}
.wsd8{word-spacing:3.240533pt;}
.wse4{word-spacing:3.292800pt;}
.ws2f{word-spacing:3.306667pt;}
.ws13a{word-spacing:3.345067pt;}
.ws9e{word-spacing:3.397333pt;}
.ws38{word-spacing:3.449600pt;}
.ws126{word-spacing:3.501867pt;}
.ws2e{word-spacing:3.520000pt;}
.wsa4{word-spacing:3.554133pt;}
.ws131{word-spacing:3.606400pt;}
.ws136{word-spacing:3.658667pt;}
.ws94{word-spacing:3.710933pt;}
.wsbb{word-spacing:3.763200pt;}
.ws191{word-spacing:3.815467pt;}
.ws86{word-spacing:3.867733pt;}
.wsd0{word-spacing:3.920000pt;}
.ws92{word-spacing:3.972267pt;}
.ws44{word-spacing:4.024533pt;}
.ws58{word-spacing:4.076800pt;}
.ws63{word-spacing:4.129067pt;}
.wse3{word-spacing:4.181333pt;}
.ws4c{word-spacing:4.233600pt;}
.wsed{word-spacing:4.285867pt;}
.ws14a{word-spacing:4.338133pt;}
.ws67{word-spacing:4.390400pt;}
.wse7{word-spacing:4.442667pt;}
.ws72{word-spacing:4.494933pt;}
.ws150{word-spacing:4.547200pt;}
.ws142{word-spacing:4.599467pt;}
.ws9f{word-spacing:4.651733pt;}
.ws64{word-spacing:4.704000pt;}
.ws2c{word-spacing:4.756267pt;}
.wsbf{word-spacing:4.860800pt;}
.ws5d{word-spacing:4.913067pt;}
.ws89{word-spacing:4.965333pt;}
.ws101{word-spacing:5.017600pt;}
.ws91{word-spacing:5.069867pt;}
.wsfa{word-spacing:5.122133pt;}
.ws5b{word-spacing:5.174400pt;}
.ws187{word-spacing:5.226667pt;}
.ws188{word-spacing:5.278933pt;}
.ws76{word-spacing:5.383467pt;}
.ws3e{word-spacing:5.435733pt;}
.wsf4{word-spacing:5.488000pt;}
.ws23{word-spacing:5.540267pt;}
.ws1bb{word-spacing:5.592533pt;}
.ws20{word-spacing:5.644800pt;}
.ws15{word-spacing:5.697067pt;}
.ws37{word-spacing:5.749333pt;}
.ws1e{word-spacing:5.801600pt;}
.ws18f{word-spacing:5.853867pt;}
.wsd3{word-spacing:5.906133pt;}
.wsb9{word-spacing:5.958400pt;}
.ws81{word-spacing:6.010667pt;}
.ws65{word-spacing:6.062933pt;}
.ws1ad{word-spacing:6.115200pt;}
.ws140{word-spacing:6.167467pt;}
.wsee{word-spacing:6.219733pt;}
.ws27{word-spacing:6.272000pt;}
.wsa7{word-spacing:6.324267pt;}
.ws8c{word-spacing:6.376533pt;}
.ws1c{word-spacing:6.428800pt;}
.ws11f{word-spacing:6.481067pt;}
.ws51{word-spacing:6.533333pt;}
.ws83{word-spacing:6.585600pt;}
.ws174{word-spacing:6.637867pt;}
.ws6c{word-spacing:6.742400pt;}
.wsb6{word-spacing:6.794667pt;}
.ws5e{word-spacing:6.846933pt;}
.wsa5{word-spacing:6.899200pt;}
.ws148{word-spacing:6.951467pt;}
.wsa1{word-spacing:7.003733pt;}
.wsc6{word-spacing:7.056000pt;}
.wsb7{word-spacing:7.108267pt;}
.ws40{word-spacing:7.160533pt;}
.ws3c{word-spacing:7.212800pt;}
.ws133{word-spacing:7.265067pt;}
.ws69{word-spacing:7.317333pt;}
.ws13f{word-spacing:7.369600pt;}
.ws61{word-spacing:7.421867pt;}
.wsa6{word-spacing:7.474133pt;}
.ws8a{word-spacing:7.526400pt;}
.ws109{word-spacing:7.578667pt;}
.ws176{word-spacing:7.630933pt;}
.ws193{word-spacing:7.683200pt;}
.ws57{word-spacing:7.735467pt;}
.ws12f{word-spacing:7.787733pt;}
.wsaf{word-spacing:7.840000pt;}
.wse2{word-spacing:7.892267pt;}
.wsb4{word-spacing:7.944533pt;}
.ws14b{word-spacing:7.996800pt;}
.wsdd{word-spacing:8.049067pt;}
.wsfc{word-spacing:8.101333pt;}
.wsc3{word-spacing:8.153600pt;}
.ws170{word-spacing:8.205867pt;}
.wsa2{word-spacing:8.258133pt;}
.ws135{word-spacing:8.310400pt;}
.ws1b{word-spacing:8.362667pt;}
.wsd9{word-spacing:8.414933pt;}
.ws1c8{word-spacing:8.467200pt;}
.ws88{word-spacing:8.519467pt;}
.ws90{word-spacing:8.571733pt;}
.ws177{word-spacing:8.624000pt;}
.wsc5{word-spacing:8.676267pt;}
.ws19d{word-spacing:8.728533pt;}
.ws11e{word-spacing:8.780800pt;}
.ws41{word-spacing:8.833067pt;}
.ws7b{word-spacing:8.885333pt;}
.ws34{word-spacing:8.937600pt;}
.ws1ae{word-spacing:8.989867pt;}
.wsc1{word-spacing:9.042133pt;}
.ws100{word-spacing:9.094400pt;}
.wsf9{word-spacing:9.146667pt;}
.ws146{word-spacing:9.251200pt;}
.wse8{word-spacing:9.303467pt;}
.wsd6{word-spacing:9.355733pt;}
.wsc7{word-spacing:9.408000pt;}
.ws134{word-spacing:9.460267pt;}
.ws1d{word-spacing:9.512533pt;}
.ws1a3{word-spacing:9.564800pt;}
.ws55{word-spacing:9.617067pt;}
.ws50{word-spacing:9.669333pt;}
.ws48{word-spacing:9.721600pt;}
.ws7f{word-spacing:9.773867pt;}
.ws127{word-spacing:9.826133pt;}
.ws181{word-spacing:9.878400pt;}
.ws59{word-spacing:9.982933pt;}
.ws18a{word-spacing:10.035200pt;}
.ws46{word-spacing:10.087467pt;}
.ws26{word-spacing:10.139733pt;}
.wsc8{word-spacing:10.192000pt;}
.ws36{word-spacing:10.244267pt;}
.ws54{word-spacing:10.296533pt;}
.ws7a{word-spacing:10.348800pt;}
.wsfd{word-spacing:10.401067pt;}
.ws95{word-spacing:10.453333pt;}
.ws189{word-spacing:10.505600pt;}
.wse1{word-spacing:10.557867pt;}
.ws75{word-spacing:10.610133pt;}
.wsba{word-spacing:10.662400pt;}
.wsf6{word-spacing:10.714667pt;}
.wsce{word-spacing:10.766933pt;}
.ws194{word-spacing:10.819200pt;}
.ws29{word-spacing:10.871467pt;}
.wscc{word-spacing:10.923733pt;}
.ws141{word-spacing:10.976000pt;}
.ws17a{word-spacing:11.028267pt;}
.wsc9{word-spacing:11.080533pt;}
.ws5c{word-spacing:11.132800pt;}
.ws19f{word-spacing:11.185067pt;}
.wscb{word-spacing:11.237333pt;}
.ws9d{word-spacing:11.289600pt;}
.wsdc{word-spacing:11.341867pt;}
.ws123{word-spacing:11.394133pt;}
.ws3b{word-spacing:11.446400pt;}
.wsbc{word-spacing:11.498667pt;}
.ws33{word-spacing:11.550933pt;}
.ws2a{word-spacing:11.603200pt;}
.ws145{word-spacing:11.655467pt;}
.ws62{word-spacing:11.707733pt;}
.ws198{word-spacing:11.760000pt;}
.ws24{word-spacing:11.812267pt;}
.ws18{word-spacing:11.864533pt;}
.wsaa{word-spacing:11.916800pt;}
.ws171{word-spacing:11.969067pt;}
.ws124{word-spacing:12.125867pt;}
.ws8d{word-spacing:12.178133pt;}
.wsf8{word-spacing:12.230400pt;}
.ws139{word-spacing:12.282667pt;}
.wsb1{word-spacing:12.387200pt;}
.ws53{word-spacing:12.439467pt;}
.ws1aa{word-spacing:12.491733pt;}
.ws77{word-spacing:12.544000pt;}
.ws7c{word-spacing:12.596267pt;}
.ws173{word-spacing:12.648533pt;}
.ws3a{word-spacing:12.700800pt;}
.wsae{word-spacing:12.753067pt;}
.wse0{word-spacing:12.805333pt;}
.wsca{word-spacing:12.857600pt;}
.ws1a4{word-spacing:12.962133pt;}
.ws12{word-spacing:13.014400pt;}
.ws8f{word-spacing:13.118933pt;}
.ws16b{word-spacing:13.223467pt;}
.ws18b{word-spacing:13.275733pt;}
.ws79{word-spacing:13.328000pt;}
.ws32{word-spacing:13.380267pt;}
.ws125{word-spacing:13.432533pt;}
.wsff{word-spacing:13.484800pt;}
.ws138{word-spacing:13.537067pt;}
.ws4f{word-spacing:13.589333pt;}
.ws42{word-spacing:13.641600pt;}
.ws5f{word-spacing:13.746133pt;}
.ws180{word-spacing:13.798400pt;}
.ws8e{word-spacing:13.850667pt;}
.ws106{word-spacing:13.902933pt;}
.ws14d{word-spacing:13.955200pt;}
.ws7e{word-spacing:14.059733pt;}
.ws6a{word-spacing:14.112000pt;}
.wsb8{word-spacing:14.216533pt;}
.ws108{word-spacing:14.268800pt;}
.ws186{word-spacing:14.321067pt;}
.wsf0{word-spacing:14.373333pt;}
.ws71{word-spacing:14.376533pt;}
.ws14e{word-spacing:14.425600pt;}
.ws196{word-spacing:14.477867pt;}
.wse6{word-spacing:14.582400pt;}
.wsef{word-spacing:14.634667pt;}
.ws17f{word-spacing:14.686933pt;}
.ws1a9{word-spacing:14.843733pt;}
.ws19{word-spacing:14.896000pt;}
.ws6d{word-spacing:14.948267pt;}
.ws74{word-spacing:15.000533pt;}
.ws16{word-spacing:15.052800pt;}
.ws120{word-spacing:15.157333pt;}
.wsb0{word-spacing:15.261867pt;}
.wsc4{word-spacing:15.314133pt;}
.wsf5{word-spacing:15.575467pt;}
.ws1a2{word-spacing:15.732267pt;}
.ws21{word-spacing:15.784533pt;}
.wsa8{word-spacing:15.836800pt;}
.ws18d{word-spacing:15.889067pt;}
.ws1ca{word-spacing:15.941333pt;}
.ws107{word-spacing:15.993600pt;}
.ws3f{word-spacing:16.045867pt;}
.ws185{word-spacing:16.098133pt;}
.ws1a1{word-spacing:16.202667pt;}
.ws18e{word-spacing:16.254933pt;}
.ws22{word-spacing:16.370133pt;}
.ws13b{word-spacing:16.411733pt;}
.ws121{word-spacing:16.464000pt;}
.ws97{word-spacing:16.516267pt;}
.ws19e{word-spacing:16.568533pt;}
.wsd7{word-spacing:16.620800pt;}
.ws68{word-spacing:16.673067pt;}
.wscd{word-spacing:16.725333pt;}
.ws19c{word-spacing:16.829867pt;}
.ws28{word-spacing:16.934400pt;}
.ws182{word-spacing:16.986667pt;}
.ws13e{word-spacing:17.091200pt;}
.ws43{word-spacing:17.143467pt;}
.ws93{word-spacing:17.195733pt;}
.ws14c{word-spacing:17.248000pt;}
.ws13c{word-spacing:17.457067pt;}
.ws3d{word-spacing:17.509333pt;}
.ws183{word-spacing:17.561600pt;}
.ws18c{word-spacing:17.613867pt;}
.ws8b{word-spacing:17.666133pt;}
.ws17d{word-spacing:17.718400pt;}
.ws66{word-spacing:17.770667pt;}
.ws172{word-spacing:17.875200pt;}
.ws195{word-spacing:18.188800pt;}
.ws1ab{word-spacing:18.293333pt;}
.ws105{word-spacing:18.450133pt;}
.wsf1{word-spacing:18.502400pt;}
.ws178{word-spacing:18.606933pt;}
.wse5{word-spacing:19.077333pt;}
.ws184{word-spacing:19.286400pt;}
.ws11b{word-spacing:19.600000pt;}
.ws73{word-spacing:19.704533pt;}
.ws19a{word-spacing:19.756800pt;}
.wsa0{word-spacing:20.384000pt;}
.wsde{word-spacing:20.593067pt;}
.ws199{word-spacing:20.958933pt;}
.ws17e{word-spacing:21.690667pt;}
.ws179{word-spacing:21.742933pt;}
.ws190{word-spacing:21.899733pt;}
.wsf7{word-spacing:21.952000pt;}
.ws1a0{word-spacing:22.213333pt;}
.ws11c{word-spacing:22.526933pt;}
.ws17b{word-spacing:22.579200pt;}
.ws4e{word-spacing:23.101867pt;}
.ws17c{word-spacing:23.415467pt;}
.wsa9{word-spacing:23.676800pt;}
.wse9{word-spacing:23.990400pt;}
.ws7d{word-spacing:25.297067pt;}
.ws87{word-spacing:25.349333pt;}
.ws1f{word-spacing:25.662933pt;}
.ws96{word-spacing:27.596800pt;}
.wsd5{word-spacing:28.485333pt;}
.ws13d{word-spacing:29.687467pt;}
.wsfe{word-spacing:33.764267pt;}
.ws39{word-spacing:34.600533pt;}
.ws137{word-spacing:34.652800pt;}
.ws1c3{word-spacing:38.436271pt;}
.ws9{word-spacing:40.610982pt;}
.ws1c1{word-spacing:55.088549pt;}
.ws1b4{word-spacing:76.878937pt;}
.ws1bf{word-spacing:76.879426pt;}
.ws1c2{word-spacing:76.879507pt;}
.ws1b7{word-spacing:76.879589pt;}
.ws1b5{word-spacing:97.700271pt;}
.ws1a7{word-spacing:105.223488pt;}
.ws1a5{word-spacing:105.867251pt;}
.ws1b3{word-spacing:108.324271pt;}
.ws1a6{word-spacing:116.072546pt;}
.ws1c0{word-spacing:129.146092pt;}
.ws1b6{word-spacing:230.401453pt;}
.wsec{word-spacing:255.699269pt;}
.wseb{word-spacing:283.944930pt;}
.ws153{word-spacing:485.857091pt;}
.ws169{word-spacing:505.483215pt;}
.ws167{word-spacing:525.494465pt;}
.ws168{word-spacing:539.958414pt;}
.ws1b2{word-spacing:562.857552pt;}
.ws166{word-spacing:700.385073pt;}
.ws165{word-spacing:779.826140pt;}
.ws154{word-spacing:782.049073pt;}
._a{margin-left:-2569.995227pt;}
._19{margin-left:-13.912071pt;}
._10{margin-left:-10.418240pt;}
._1a{margin-left:-8.435406pt;}
._4{margin-left:-6.533333pt;}
._f{margin-left:-5.524220pt;}
._18{margin-left:-4.457600pt;}
._6{margin-left:-3.508526pt;}
._2{margin-left:-2.193767pt;}
._1{margin-left:-1.248000pt;}
._3{width:1.078933pt;}
._5{width:2.153767pt;}
._9{width:3.571200pt;}
._c{width:4.484100pt;}
._11{width:6.351477pt;}
._1c{width:7.613014pt;}
._8{width:8.880000pt;}
._d{width:11.088023pt;}
._e{width:12.610133pt;}
._b{width:13.864680pt;}
._7{width:15.707708pt;}
._1b{width:16.610090pt;}
._4c{width:34.049453pt;}
._57{width:47.144099pt;}
._55{width:51.373599pt;}
._4d{width:86.222937pt;}
._47{width:91.483724pt;}
._53{width:95.409307pt;}
._4b{width:98.514766pt;}
._52{width:107.044271pt;}
._4f{width:112.652120pt;}
._46{width:125.459212pt;}
._50{width:140.285432pt;}
._54{width:141.740283pt;}
._4e{width:142.794520pt;}
._43{width:161.154679pt;}
._44{width:184.857255pt;}
._4a{width:189.757887pt;}
._49{width:229.718786pt;}
._51{width:241.653186pt;}
._12{width:262.049074pt;}
._13{width:264.275678pt;}
._17{width:265.811840pt;}
._48{width:268.840099pt;}
._1f{width:288.289937pt;}
._31{width:295.952070pt;}
._45{width:298.161651pt;}
._3d{width:302.407598pt;}
._2d{width:303.376070pt;}
._2f{width:310.087110pt;}
._2a{width:318.859704pt;}
._3b{width:329.611164pt;}
._2b{width:333.322676pt;}
._22{width:335.542370pt;}
._25{width:346.017937pt;}
._23{width:350.005342pt;}
._20{width:360.480909pt;}
._27{width:376.587704pt;}
._28{width:391.050676pt;}
._56{width:430.450619pt;}
._1d{width:470.352486pt;}
._1e{width:485.088009pt;}
._16{width:503.883741pt;}
._2e{width:505.465607pt;}
._42{width:527.626622pt;}
._35{width:596.487473pt;}
._26{width:632.850140pt;}
._15{width:648.779741pt;}
._14{width:677.024533pt;}
._21{width:692.786140pt;}
._33{width:718.684807pt;}
._32{width:720.444807pt;}
._24{width:728.711473pt;}
._34{width:778.332807pt;}
._2c{width:783.739207pt;}
._29{width:800.135473pt;}
._30{width:833.792707pt;}
._36{width:907.534422pt;}
._38{width:935.119123pt;}
._3f{width:1047.400022pt;}
._3c{width:1061.903123pt;}
._3e{width:1183.122689pt;}
._37{width:1224.349355pt;}
._3a{width:1303.899755pt;}
._39{width:1322.770689pt;}
._0{width:1435.598885pt;}
._41{width:2042.970653pt;}
._40{width:2062.383620pt;}
.fsb{font-size:28.000000pt;}
.fs13{font-size:29.866667pt;}
.fs11{font-size:35.829867pt;}
.fs12{font-size:36.600000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fse{font-size:41.066666pt;}
.fs6{font-size:42.666667pt;}
.fs10{font-size:48.000000pt;}
.fsf{font-size:49.066666pt;}
.fs7{font-size:52.266667pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:66.293333pt;}
.fs5{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fsc{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:0.340413pt;}
.y98{bottom:2.393392pt;}
.yd3{bottom:6.718424pt;}
.y95{bottom:8.637288pt;}
.yd5{bottom:12.841227pt;}
.y97{bottom:14.631266pt;}
.y6{bottom:59.133337pt;}
.y88{bottom:82.267736pt;}
.y7f{bottom:82.267868pt;}
.y19c{bottom:83.427602pt;}
.y5{bottom:86.333337pt;}
.ycf{bottom:89.755737pt;}
.y124{bottom:94.695200pt;}
.y87{bottom:98.267731pt;}
.y7e{bottom:98.267863pt;}
.y1e5{bottom:98.316264pt;}
.y19b{bottom:99.427602pt;}
.yeb{bottom:100.151998pt;}
.y29{bottom:100.328135pt;}
.yce{bottom:103.089071pt;}
.y1e4{bottom:110.316264pt;}
.y123{bottom:110.695200pt;}
.y224{bottom:110.767731pt;}
.y28{bottom:110.994802pt;}
.y86{bottom:114.267731pt;}
.y7d{bottom:114.267863pt;}
.yea{bottom:114.711070pt;}
.y19a{bottom:115.427602pt;}
.ycd{bottom:118.648000pt;}
.y27{bottom:121.661469pt;}
.y1e3{bottom:122.316264pt;}
.y223{bottom:122.767731pt;}
.y22{bottom:123.790666pt;}
.y122{bottom:126.695200pt;}
.y1a9{bottom:127.811066pt;}
.y199{bottom:129.873728pt;}
.y85{bottom:130.267731pt;}
.y7c{bottom:130.267863pt;}
.ye9{bottom:130.270131pt;}
.y26{bottom:132.328135pt;}
.ycc{bottom:134.207062pt;}
.y1e2{bottom:134.316264pt;}
.y222{bottom:134.767731pt;}
.y1a8{bottom:139.811066pt;}
.y121{bottom:142.695200pt;}
.y25{bottom:142.994802pt;}
.y198{bottom:144.432800pt;}
.ye8{bottom:145.929199pt;}
.y84{bottom:146.267731pt;}
.y7b{bottom:146.267863pt;}
.y1e1{bottom:146.316264pt;}
.y221{bottom:146.767731pt;}
.ycb{bottom:149.766133pt;}
.y1a7{bottom:151.811066pt;}
.y24{bottom:153.661469pt;}
.y197{bottom:157.766133pt;}
.y1e0{bottom:158.316264pt;}
.y120{bottom:158.695200pt;}
.y220{bottom:158.767731pt;}
.ye3{bottom:160.627197pt;}
.ye7{bottom:161.488271pt;}
.y83{bottom:162.267731pt;}
.y7a{bottom:162.267863pt;}
.yca{bottom:165.325195pt;}
.y1df{bottom:170.316264pt;}
.y21f{bottom:170.767741pt;}
.y196{bottom:171.099467pt;}
.y11f{bottom:174.695190pt;}
.y19{bottom:175.052000pt;}
.y1a6{bottom:175.811076pt;}
.ye6{bottom:176.154928pt;}
.y82{bottom:178.267741pt;}
.y79{bottom:178.267863pt;}
.yc9{bottom:180.884257pt;}
.y1de{bottom:182.316264pt;}
.y21e{bottom:182.767741pt;}
.y195{bottom:184.432800pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y1a5{bottom:187.811076pt;}
.y46{bottom:189.710937pt;}
.y11e{bottom:190.695190pt;}
.y3e{bottom:194.267741pt;}
.y78{bottom:194.267863pt;}
.y1dd{bottom:194.316264pt;}
.y21d{bottom:194.767741pt;}
.yc8{bottom:196.443339pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1a4{bottom:199.811076pt;}
.y194{bottom:199.991862pt;}
.y45{bottom:205.710937pt;}
.y1dc{bottom:206.316264pt;}
.y11d{bottom:206.695190pt;}
.y21c{bottom:206.767741pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yc7{bottom:209.776672pt;}
.y3d{bottom:210.267741pt;}
.y77{bottom:210.267863pt;}
.y1a3{bottom:211.811076pt;}
.y193{bottom:215.550924pt;}
.y44{bottom:217.710937pt;}
.y1db{bottom:218.316264pt;}
.y21b{bottom:218.767741pt;}
.y13e{bottom:220.543335pt;}
.y11c{bottom:222.695190pt;}
.y1a2{bottom:223.811076pt;}
.yc6{bottom:225.335733pt;}
.y43{bottom:225.710937pt;}
.y3c{bottom:226.267741pt;}
.y76{bottom:226.267863pt;}
.y192{bottom:228.884257pt;}
.y1da{bottom:230.316264pt;}
.y21a{bottom:230.767741pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y13d{bottom:233.876668pt;}
.y1a1{bottom:235.811076pt;}
.y42{bottom:237.710937pt;}
.yc5{bottom:238.669067pt;}
.y11b{bottom:238.695190pt;}
.y191{bottom:242.217590pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y3b{bottom:242.267741pt;}
.y75{bottom:242.267863pt;}
.y1d9{bottom:242.316264pt;}
.y219{bottom:242.767741pt;}
.y16e{bottom:248.873739pt;}
.y13c{bottom:249.435730pt;}
.y41{bottom:249.710937pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yc4{bottom:254.228129pt;}
.y1d8{bottom:254.316264pt;}
.y11a{bottom:254.695190pt;}
.y218{bottom:254.767741pt;}
.y190{bottom:257.776672pt;}
.y3a{bottom:258.267741pt;}
.y74{bottom:258.267863pt;}
.y16d{bottom:262.207072pt;}
.y13b{bottom:262.769063pt;}
.y1d7{bottom:266.316264pt;}
.y217{bottom:266.767741pt;}
.yc3{bottom:269.787191pt;}
.y119{bottom:270.695190pt;}
.y18f{bottom:271.110006pt;}
.y1a0{bottom:271.149597pt;}
.y39{bottom:274.267741pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y13a{bottom:276.102397pt;}
.y16c{bottom:277.766133pt;}
.y1d6{bottom:278.316264pt;}
.y216{bottom:278.767741pt;}
.y18e{bottom:284.443339pt;}
.y118{bottom:285.141337pt;}
.yc2{bottom:285.346273pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y38{bottom:290.267741pt;}
.y1d5{bottom:290.316264pt;}
.y215{bottom:290.767741pt;}
.y16b{bottom:291.099467pt;}
.y139{bottom:291.661458pt;}
.y19f{bottom:298.267741pt;}
.y117{bottom:299.700399pt;}
.y18d{bottom:300.002400pt;}
.yc1{bottom:300.905333pt;}
.y1d4{bottom:302.316264pt;}
.y214{bottom:302.767741pt;}
.y16a{bottom:304.432800pt;}
.y138{bottom:304.994792pt;}
.y37{bottom:306.267741pt;}
.y137{bottom:307.220540pt;}
.y10{bottom:309.452000pt;}
.y19e{bottom:310.267741pt;}
.y116{bottom:313.033732pt;}
.y18c{bottom:313.335733pt;}
.y1d3{bottom:314.316264pt;}
.y213{bottom:314.767741pt;}
.yc0{bottom:316.464274pt;}
.y169{bottom:317.766133pt;}
.y136{bottom:320.553874pt;}
.y36{bottom:322.267741pt;}
.y1d2{bottom:326.316264pt;}
.y115{bottom:326.367065pt;}
.y212{bottom:326.767741pt;}
.y18b{bottom:328.894796pt;}
.y168{bottom:331.099467pt;}
.ybf{bottom:332.023336pt;}
.y135{bottom:333.887207pt;}
.y35{bottom:338.267741pt;}
.y1d1{bottom:338.316264pt;}
.y211{bottom:338.767741pt;}
.y114{bottom:341.926147pt;}
.yf{bottom:343.809333pt;}
.y167{bottom:344.432780pt;}
.y18a{bottom:344.453857pt;}
.ybe{bottom:347.582397pt;}
.y134{bottom:349.446248pt;}
.y1d0{bottom:350.316284pt;}
.y210{bottom:350.767741pt;}
.y34{bottom:354.267741pt;}
.y113{bottom:357.485189pt;}
.y166{bottom:357.766113pt;}
.y189{bottom:357.787191pt;}
.y1cf{bottom:362.316284pt;}
.ye{bottom:362.706666pt;}
.y20f{bottom:362.767741pt;}
.ybd{bottom:363.141479pt;}
.y133{bottom:365.005330pt;}
.y33{bottom:370.267741pt;}
.y165{bottom:371.099447pt;}
.y188{bottom:371.120524pt;}
.y112{bottom:373.044271pt;}
.y1ce{bottom:374.316284pt;}
.y20e{bottom:374.767741pt;}
.ybc{bottom:378.700521pt;}
.y132{bottom:380.564250pt;}
.y32{bottom:386.267741pt;}
.y1cd{bottom:386.316284pt;}
.y164{bottom:386.658529pt;}
.y187{bottom:386.679606pt;}
.y20d{bottom:386.767741pt;}
.y111{bottom:388.603353pt;}
.ybb{bottom:394.259603pt;}
.y131{bottom:396.123332pt;}
.y1cc{bottom:398.316284pt;}
.y20c{bottom:398.767741pt;}
.y163{bottom:399.991862pt;}
.y186{bottom:400.012939pt;}
.y110{bottom:401.936686pt;}
.y31{bottom:402.267741pt;}
.yba{bottom:409.818685pt;}
.y1cb{bottom:410.316284pt;}
.y20b{bottom:410.767741pt;}
.y130{bottom:411.682414pt;}
.y162{bottom:415.550944pt;}
.y185{bottom:415.571981pt;}
.y10f{bottom:417.495728pt;}
.y30{bottom:418.267741pt;}
.y1ca{bottom:422.316284pt;}
.y20a{bottom:422.767741pt;}
.y12f{bottom:425.015747pt;}
.yb9{bottom:425.377726pt;}
.y161{bottom:428.884277pt;}
.y184{bottom:428.905314pt;}
.y10e{bottom:433.054647pt;}
.y2f{bottom:434.267741pt;}
.y1c9{bottom:434.316284pt;}
.y209{bottom:434.767741pt;}
.y12e{bottom:440.574788pt;}
.yb8{bottom:440.936808pt;}
.y160{bottom:444.443319pt;}
.y183{bottom:444.464274pt;}
.y1c8{bottom:446.316284pt;}
.y208{bottom:446.767741pt;}
.yd{bottom:446.990669pt;}
.y10d{bottom:448.613729pt;}
.y2e{bottom:450.267741pt;}
.y12d{bottom:456.133870pt;}
.yb7{bottom:456.495850pt;}
.y15f{bottom:457.776652pt;}
.y1c7{bottom:458.316284pt;}
.y207{bottom:458.767741pt;}
.y182{bottom:460.023315pt;}
.yc{bottom:462.990669pt;}
.y10c{bottom:464.172811pt;}
.y2d{bottom:466.267741pt;}
.y1c6{bottom:470.316284pt;}
.y206{bottom:470.767741pt;}
.y15e{bottom:471.109985pt;}
.y12c{bottom:471.692952pt;}
.yb6{bottom:472.054932pt;}
.y181{bottom:473.356649pt;}
.yb{bottom:478.990666pt;}
.y10b{bottom:479.731852pt;}
.y2c{bottom:482.267741pt;}
.y1c5{bottom:482.316284pt;}
.y205{bottom:482.767741pt;}
.y15d{bottom:486.669067pt;}
.y12b{bottom:487.251994pt;}
.yb5{bottom:487.613851pt;}
.y180{bottom:488.915731pt;}
.y1c4{bottom:494.316284pt;}
.y204{bottom:494.767741pt;}
.ya{bottom:494.990666pt;}
.y10a{bottom:495.290933pt;}
.y73{bottom:498.267741pt;}
.y15c{bottom:500.002400pt;}
.y17f{bottom:502.249064pt;}
.y12a{bottom:502.811076pt;}
.yb4{bottom:503.172933pt;}
.y1c3{bottom:506.316284pt;}
.y203{bottom:506.767741pt;}
.y109{bottom:510.850016pt;}
.y72{bottom:514.267741pt;}
.y15b{bottom:515.561483pt;}
.y17e{bottom:517.808146pt;}
.y1c2{bottom:518.316284pt;}
.y129{bottom:518.370117pt;}
.yb3{bottom:518.732015pt;}
.y202{bottom:518.767741pt;}
.ye4{bottom:518.812948pt;}
.y108{bottom:526.409058pt;}
.y71{bottom:530.267741pt;}
.y1c1{bottom:530.316284pt;}
.y201{bottom:530.767741pt;}
.y15a{bottom:531.120524pt;}
.y17d{bottom:531.141479pt;}
.y128{bottom:533.929199pt;}
.yb2{bottom:534.291056pt;}
.y53{bottom:536.314819pt;}
.y107{bottom:541.968140pt;}
.y1c0{bottom:542.316284pt;}
.y200{bottom:542.767741pt;}
.y70{bottom:546.267741pt;}
.y159{bottom:546.679606pt;}
.y17c{bottom:546.700521pt;}
.ye5{bottom:547.228271pt;}
.y127{bottom:547.262533pt;}
.yb1{bottom:549.850138pt;}
.y1bf{bottom:554.316284pt;}
.y1ff{bottom:554.767741pt;}
.y52{bottom:554.981486pt;}
.y106{bottom:557.527181pt;}
.y17b{bottom:560.033854pt;}
.y126{bottom:560.595866pt;}
.y158{bottom:562.238647pt;}
.y6f{bottom:562.267741pt;}
.yb0{bottom:565.409180pt;}
.y1be{bottom:566.316284pt;}
.y1fe{bottom:566.767741pt;}
.y51{bottom:570.981486pt;}
.y105{bottom:573.086263pt;}
.y17a{bottom:573.367188pt;}
.y9{bottom:573.786667pt;}
.y125{bottom:576.154785pt;}
.y157{bottom:577.797607pt;}
.y6e{bottom:578.267741pt;}
.y1bd{bottom:578.316284pt;}
.y1fd{bottom:578.767741pt;}
.y156{bottom:580.023315pt;}
.yaf{bottom:580.968262pt;}
.y179{bottom:586.700521pt;}
.y104{bottom:588.645182pt;}
.y1bc{bottom:590.316284pt;}
.y1fc{bottom:590.767741pt;}
.y50{bottom:590.981486pt;}
.y8{bottom:592.685334pt;}
.y155{bottom:593.356649pt;}
.y6d{bottom:594.267741pt;}
.yae{bottom:596.527344pt;}
.y178{bottom:600.033854pt;}
.y1bb{bottom:602.316284pt;}
.y1fb{bottom:602.767741pt;}
.yd2{bottom:603.457316pt;}
.yd1{bottom:603.457600pt;}
.y103{bottom:604.204264pt;}
.y4f{bottom:606.981486pt;}
.y154{bottom:608.915731pt;}
.yd4{bottom:610.175741pt;}
.y6c{bottom:610.267741pt;}
.yad{bottom:612.086385pt;}
.y177{bottom:613.367188pt;}
.y1ba{bottom:614.316284pt;}
.y1fa{bottom:614.767741pt;}
.y102{bottom:617.537598pt;}
.y4e{bottom:622.981486pt;}
.y153{bottom:624.474813pt;}
.y6b{bottom:626.267741pt;}
.y176{bottom:626.700521pt;}
.y1f9{bottom:626.767741pt;}
.yac{bottom:627.645467pt;}
.y101{bottom:633.096680pt;}
.y100{bottom:635.322388pt;}
.y152{bottom:637.808146pt;}
.y1f8{bottom:638.767741pt;}
.y4d{bottom:638.981486pt;}
.y175{bottom:640.033854pt;}
.y6a{bottom:642.267741pt;}
.yab{bottom:643.204549pt;}
.y7{bottom:645.598667pt;}
.yff{bottom:648.655721pt;}
.y1f7{bottom:650.767741pt;}
.y151{bottom:653.367188pt;}
.y4c{bottom:654.981486pt;}
.y174{bottom:655.592936pt;}
.y69{bottom:658.267741pt;}
.yaa{bottom:658.763590pt;}
.y1f6{bottom:662.767741pt;}
.yfe{bottom:664.314819pt;}
.y150{bottom:666.700521pt;}
.y173{bottom:668.926270pt;}
.y4{bottom:668.977329pt;}
.y4b{bottom:670.981486pt;}
.y68{bottom:674.267741pt;}
.ya9{bottom:674.322550pt;}
.y1f5{bottom:674.767741pt;}
.y1b9{bottom:675.649618pt;}
.yfd{bottom:679.873861pt;}
.y14f{bottom:680.033854pt;}
.y172{bottom:682.259603pt;}
.yfb{bottom:684.325358pt;}
.y1f4{bottom:686.767741pt;}
.y4a{bottom:686.981445pt;}
.ya8{bottom:689.881755pt;}
.y67{bottom:690.267741pt;}
.yfc{bottom:695.432943pt;}
.y14e{bottom:695.592936pt;}
.yfa{bottom:697.658691pt;}
.y1f3{bottom:698.767741pt;}
.y1b8{bottom:702.767741pt;}
.y49{bottom:702.981445pt;}
.ya7{bottom:705.440837pt;}
.y66{bottom:706.267741pt;}
.y14d{bottom:708.926270pt;}
.y1f2{bottom:710.767741pt;}
.yf9{bottom:710.992025pt;}
.y171{bottom:711.152018pt;}
.y1b7{bottom:714.767741pt;}
.y48{bottom:718.981445pt;}
.ya6{bottom:720.999756pt;}
.y65{bottom:722.267741pt;}
.y1f1{bottom:722.767741pt;}
.y14c{bottom:724.485352pt;}
.yf8{bottom:726.551107pt;}
.y1f0{bottom:734.767741pt;}
.y47{bottom:734.981445pt;}
.ya5{bottom:736.558838pt;}
.y14b{bottom:737.818685pt;}
.y64{bottom:738.267741pt;}
.y1b6{bottom:738.767741pt;}
.y19d{bottom:744.663900pt;}
.y1ef{bottom:746.767741pt;}
.y1b5{bottom:750.767741pt;}
.y14a{bottom:751.152018pt;}
.ya4{bottom:752.117839pt;}
.y63{bottom:754.267741pt;}
.y1ee{bottom:758.767741pt;}
.yf7{bottom:760.663900pt;}
.ye1{bottom:764.110107pt;}
.y149{bottom:764.485352pt;}
.ya3{bottom:767.676921pt;}
.y62{bottom:770.267741pt;}
.y1ed{bottom:770.767741pt;}
.y1b4{bottom:774.767741pt;}
.yf6{bottom:776.663900pt;}
.y148{bottom:777.818685pt;}
.y93{bottom:778.797770pt;}
.ye0{bottom:779.222900pt;}
.y3{bottom:781.661334pt;}
.y1ec{bottom:782.767741pt;}
.ya2{bottom:783.236003pt;}
.y61{bottom:786.267741pt;}
.y1b3{bottom:786.767741pt;}
.y56{bottom:786.948161pt;}
.y170{bottom:791.152018pt;}
.yf5{bottom:792.663900pt;}
.y92{bottom:793.356689pt;}
.y147{bottom:793.377767pt;}
.ydf{bottom:794.335856pt;}
.y1eb{bottom:794.767741pt;}
.y1b2{bottom:798.767741pt;}
.ya1{bottom:798.795085pt;}
.y60{bottom:802.267741pt;}
.y146{bottom:806.711100pt;}
.y1ea{bottom:806.767741pt;}
.yf4{bottom:808.663900pt;}
.y91{bottom:808.915771pt;}
.yde{bottom:809.448649pt;}
.ya0{bottom:814.354167pt;}
.y5f{bottom:818.267741pt;}
.y1e9{bottom:818.767741pt;}
.y145{bottom:820.044434pt;}
.y1b1{bottom:822.767741pt;}
.ydd{bottom:824.007894pt;}
.y90{bottom:824.474772pt;}
.yf3{bottom:824.663900pt;}
.y9f{bottom:829.913167pt;}
.y1e8{bottom:830.767741pt;}
.y55{bottom:832.281494pt;}
.y144{bottom:833.377767pt;}
.y5e{bottom:834.267741pt;}
.ydc{bottom:839.566895pt;}
.y8f{bottom:840.033854pt;}
.y2{bottom:840.112001pt;}
.yf2{bottom:840.663900pt;}
.y94{bottom:842.321370pt;}
.y1e7{bottom:842.767741pt;}
.y9e{bottom:845.472168pt;}
.y143{bottom:846.711100pt;}
.y16f{bottom:848.936768pt;}
.y5d{bottom:850.267741pt;}
.y96{bottom:850.958659pt;}
.y1b0{bottom:854.767741pt;}
.ydb{bottom:855.125895pt;}
.y8e{bottom:855.592936pt;}
.yf1{bottom:856.663900pt;}
.y9d{bottom:858.805501pt;}
.y1{bottom:859.312000pt;}
.y142{bottom:862.270101pt;}
.y5c{bottom:866.267741pt;}
.y1af{bottom:866.767741pt;}
.y54{bottom:866.948161pt;}
.yda{bottom:870.684896pt;}
.y8d{bottom:871.152018pt;}
.yf0{bottom:872.663900pt;}
.y9c{bottom:874.364502pt;}
.y141{bottom:875.603434pt;}
.y1ae{bottom:878.767741pt;}
.y5b{bottom:882.267741pt;}
.yd9{bottom:886.243978pt;}
.y8c{bottom:886.711100pt;}
.yef{bottom:888.663900pt;}
.y9b{bottom:889.923584pt;}
.y1ad{bottom:890.767741pt;}
.y140{bottom:891.262533pt;}
.y5a{bottom:898.267741pt;}
.yd8{bottom:901.803060pt;}
.y8b{bottom:902.270101pt;}
.y1e6{bottom:902.767741pt;}
.y13f{bottom:904.595866pt;}
.yee{bottom:904.663900pt;}
.y9a{bottom:905.482666pt;}
.y226{bottom:906.267741pt;}
.y81{bottom:914.267741pt;}
.y59{bottom:914.267904pt;}
.y1ac{bottom:914.767741pt;}
.yd7{bottom:917.362142pt;}
.y8a{bottom:917.929199pt;}
.y225{bottom:918.267741pt;}
.yed{bottom:920.663900pt;}
.y99{bottom:921.141764pt;}
.y23{bottom:921.267741pt;}
.y1ab{bottom:926.767741pt;}
.y80{bottom:930.267741pt;}
.y58{bottom:930.267904pt;}
.y89{bottom:933.488118pt;}
.ye2{bottom:935.173991pt;}
.yec{bottom:936.663900pt;}
.yd0{bottom:937.267741pt;}
.y1aa{bottom:938.767741pt;}
.y40{bottom:980.542562pt;}
.y2b{bottom:990.267741pt;}
.y3f{bottom:1000.430501pt;}
.y2a{bottom:1003.601074pt;}
.y57{bottom:1003.934408pt;}
.h26{height:20.197333pt;}
.h21{height:21.333333pt;}
.h15{height:26.180000pt;}
.h22{height:26.872400pt;}
.h27{height:27.450000pt;}
.h23{height:27.768147pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h24{height:34.504162pt;}
.h2b{height:34.832000pt;}
.he{height:34.906667pt;}
.h28{height:35.245800pt;}
.h20{height:35.541333pt;}
.hd{height:36.288000pt;}
.h14{height:37.400000pt;}
.h2f{height:38.080000pt;}
.h18{height:38.880000pt;}
.h25{height:39.808000pt;}
.h1f{height:39.893333pt;}
.h10{height:40.618667pt;}
.hf{height:40.661333pt;}
.h7{height:40.853333pt;}
.h1e{height:41.472000pt;}
.h2d{height:42.197333pt;}
.h2c{height:42.656250pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h2e{height:44.880000pt;}
.h2a{height:46.096806pt;}
.h1d{height:47.472000pt;}
.h1b{height:47.692799pt;}
.h1c{height:48.555733pt;}
.h2{height:49.024000pt;}
.h11{height:49.653333pt;}
.h16{height:49.866667pt;}
.h17{height:51.840000pt;}
.h12{height:54.329067pt;}
.h29{height:60.756000pt;}
.h1a{height:61.863804pt;}
.h13{height:63.111253pt;}
.h5{height:69.450667pt;}
.hc{height:70.130237pt;}
.h4{height:105.826671pt;}
.h19{height:121.856000pt;}
.hb{height:1058.000000pt;}
.ha{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:272.125326pt;}
.w4{width:272.126668pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:19.751872pt;}
.x14{left:47.349609pt;}
.x1d{left:63.162933pt;}
.x7{left:75.590535pt;}
.x5{left:81.097066pt;}
.x29{left:83.149602pt;}
.xc{left:84.257202pt;}
.xe{left:86.257333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1b{left:95.590535pt;}
.x16{left:97.799316pt;}
.x1c{left:105.944132pt;}
.x1e{left:111.762930pt;}
.x17{left:147.000529pt;}
.x28{left:157.499064pt;}
.x4{left:180.874667pt;}
.x20{left:183.794800pt;}
.x25{left:235.504801pt;}
.x6{left:240.944804pt;}
.x26{left:287.599325pt;}
.x18{left:314.376404pt;}
.x27{left:339.693868pt;}
.x3{left:404.408000pt;}
.x8{left:406.299194pt;}
.x9{left:416.965861pt;}
.x10{left:426.299194pt;}
.xf{left:432.965861pt;}
.x11{left:438.682780pt;}
.x13{left:454.916789pt;}
.x1f{left:466.226400pt;}
.x19{left:469.237874pt;}
.x15{left:482.639486pt;}
.x24{left:488.207886pt;}
.xa{left:540.132121pt;}
.x21{left:566.213582pt;}
.x22{left:618.307983pt;}
.x1a{left:627.715332pt;}
.xb{left:656.093465pt;}
.xd{left:662.060140pt;}
.x23{left:670.402547pt;}
}




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