
    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_5898ed01ed04fd63be6d3c17.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.890000;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_4a12ec65d37c31dda99431a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.078000;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_c0c9d346945f71d8c9bbf6af.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040000;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_c5616fcaafa156b6d3ef22be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065000;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_4b0e55946c3bcfa12222d698.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891000;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_ebb9e44827ced25ea33143f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_818d0316a5fa71cebe73c9eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.870000;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_2a44907d4970f9b39a2b45e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.880000;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_59219d09208f6a329a3ea4e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_adad3a55cbbdc27dd2b3fd19.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.870000;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_e532451d5c30f257107e0efb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.880000;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_82f4d9e8aae8f9dcbfcf9813.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_77dfb48b953c9c605cc5ca70.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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_28518f4bc85086f1a0b4c8e4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.870000;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_f284ec6a5f7642d10b418805.woff2')format("woff");}.fff{font-family:fff;line-height:0.880000;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_6cf0e7545e0c6283de7fd7c9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;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_a54066c0d67fee52d6c3a97f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.870000;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_27e603084da623d739e4aca6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.880000;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_5a835993fd8d1b0d6d8351ab.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.702000;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_e4e01fe7f65a8205c6432e32.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.700000;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_23d27a1ba084a84ec842ade5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.870000;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_c1aad2c20f984b72d9595b8a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.880000;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_ba748f003f8dfc04adeeab36.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.700000;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:ff18;src:url('chunks/assets/font_63ec2a1a4d6d0a45d28d7fdc.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.870000;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:ff19;src:url('chunks/assets/font_1790e0e0c393881eb35c2620.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.880000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v4{vertical-align:30.000000px;}
.v1{vertical-align:35.964000px;}
.ls3c{letter-spacing:-5.244000px;}
.ls36{letter-spacing:-4.788000px;}
.ls4c{letter-spacing:-4.617000px;}
.ls40{letter-spacing:-4.560000px;}
.ls44{letter-spacing:-4.503000px;}
.ls17{letter-spacing:-4.332000px;}
.ls46{letter-spacing:-4.161000px;}
.ls3b{letter-spacing:-3.990000px;}
.ls1f{letter-spacing:-3.942000px;}
.ls34{letter-spacing:-3.819000px;}
.ls16{letter-spacing:-3.534000px;}
.ls3f{letter-spacing:-3.363000px;}
.ls2c{letter-spacing:-3.192000px;}
.ls45{letter-spacing:-3.135000px;}
.ls37{letter-spacing:-3.078000px;}
.ls2e{letter-spacing:-2.862000px;}
.ls4b{letter-spacing:-2.793000px;}
.ls3a{letter-spacing:-2.508000px;}
.ls30{letter-spacing:-2.448000px;}
.ls24{letter-spacing:-2.394000px;}
.ls42{letter-spacing:-2.166000px;}
.ls39{letter-spacing:-2.109000px;}
.ls23{letter-spacing:-1.938000px;}
.ls38{letter-spacing:-1.881000px;}
.ls22{letter-spacing:-1.872000px;}
.ls18{letter-spacing:-1.728000px;}
.ls1b{letter-spacing:-1.710000px;}
.ls1c{letter-spacing:-1.653000px;}
.ls25{letter-spacing:-1.596000px;}
.ls1d{letter-spacing:-1.425000px;}
.ls26{letter-spacing:-1.368000px;}
.ls49{letter-spacing:-1.311000px;}
.lsb{letter-spacing:-1.254000px;}
.ls1e{letter-spacing:-1.188000px;}
.ls3e{letter-spacing:-1.140000px;}
.ls48{letter-spacing:-1.083000px;}
.ls2f{letter-spacing:-1.026000px;}
.ls43{letter-spacing:-0.969000px;}
.ls4a{letter-spacing:-0.912000px;}
.ls1{letter-spacing:-0.864000px;}
.ls41{letter-spacing:-0.855000px;}
.lsa{letter-spacing:-0.798000px;}
.ls14{letter-spacing:-0.756000px;}
.ls21{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.684000px;}
.ls31{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.627000px;}
.lsf{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.570000px;}
.ls20{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.513000px;}
.ls19{letter-spacing:-0.510000px;}
.ls8{letter-spacing:-0.480000px;}
.ls47{letter-spacing:-0.456000px;}
.ls9{letter-spacing:-0.399000px;}
.ls5{letter-spacing:-0.342000px;}
.ls2{letter-spacing:-0.285000px;}
.ls10{letter-spacing:-0.228000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls3d{letter-spacing:-0.171000px;}
.ls2b{letter-spacing:-0.162000px;}
.ls3{letter-spacing:-0.114000px;}
.ls27{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000144px;}
.ls33{letter-spacing:0.057000px;}
.ls15{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.285000px;}
.lse{letter-spacing:0.378000px;}
.ls6{letter-spacing:0.456000px;}
.ls2a{letter-spacing:0.702000px;}
.lsc{letter-spacing:0.816000px;}
.ls2d{letter-spacing:1.658700px;}
.ls13{letter-spacing:9.843900px;}
.ls29{letter-spacing:229.776000px;}
.ls32{letter-spacing:272.352000px;}
.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;}
}
.ws1{word-spacing:-19.656000px;}
.ws3c{word-spacing:-14.160000px;}
.wsdc{word-spacing:-13.986000px;}
.ws15a{word-spacing:-13.737000px;}
.ws11b{word-spacing:-13.680000px;}
.ws11e{word-spacing:-13.566000px;}
.wsce{word-spacing:-13.554000px;}
.ws12b{word-spacing:-13.509000px;}
.ws145{word-spacing:-13.452000px;}
.ws11d{word-spacing:-13.395000px;}
.ws144{word-spacing:-13.338000px;}
.ws13f{word-spacing:-13.281000px;}
.ws168{word-spacing:-13.224000px;}
.ws2{word-spacing:-13.167000px;}
.ws12f{word-spacing:-13.110000px;}
.ws142{word-spacing:-13.053000px;}
.ws22{word-spacing:-12.996000px;}
.ws5a{word-spacing:-12.939000px;}
.ws3{word-spacing:-12.825000px;}
.ws167{word-spacing:-12.768000px;}
.ws4{word-spacing:-12.711000px;}
.ws6{word-spacing:-12.654000px;}
.ws11a{word-spacing:-12.597000px;}
.ws5{word-spacing:-12.426000px;}
.ws130{word-spacing:-12.198000px;}
.ws143{word-spacing:-12.141000px;}
.wsf0{word-spacing:-12.096000px;}
.ws12c{word-spacing:-12.084000px;}
.wsb7{word-spacing:-11.571000px;}
.ws0{word-spacing:-11.328000px;}
.wsb6{word-spacing:-11.286000px;}
.wsae{word-spacing:-11.088000px;}
.ws12e{word-spacing:-10.716000px;}
.wseb{word-spacing:-10.422000px;}
.ws11c{word-spacing:-10.146000px;}
.ws119{word-spacing:-9.861000px;}
.ws12a{word-spacing:-9.690000px;}
.ws141{word-spacing:-9.519000px;}
.ws132{word-spacing:-9.291000px;}
.ws133{word-spacing:-8.778000px;}
.ws140{word-spacing:-8.721000px;}
.ws12d{word-spacing:-8.664000px;}
.ws15b{word-spacing:-7.980000px;}
.ws162{word-spacing:-6.897000px;}
.ws3b{word-spacing:-6.884064px;}
.ws13e{word-spacing:-6.156000px;}
.wscd{word-spacing:-3.990000px;}
.ws87{word-spacing:-3.819000px;}
.ws14a{word-spacing:-3.591000px;}
.wsa5{word-spacing:-3.534000px;}
.ws13c{word-spacing:-3.477000px;}
.wse7{word-spacing:-3.420000px;}
.ws98{word-spacing:-3.249000px;}
.ws14d{word-spacing:-2.850000px;}
.ws15d{word-spacing:-2.793000px;}
.ws14e{word-spacing:-2.736000px;}
.ws131{word-spacing:-2.679000px;}
.wse8{word-spacing:-2.622000px;}
.wsea{word-spacing:-2.565000px;}
.ws117{word-spacing:-2.508000px;}
.ws7f{word-spacing:-2.337000px;}
.wsd6{word-spacing:-2.280000px;}
.ws31{word-spacing:-2.223000px;}
.wsd2{word-spacing:-2.166000px;}
.wsca{word-spacing:-2.109000px;}
.ws71{word-spacing:-2.052000px;}
.ws30{word-spacing:-1.995000px;}
.wsa4{word-spacing:-1.938000px;}
.wsdb{word-spacing:-1.881000px;}
.ws39{word-spacing:-1.824000px;}
.ws63{word-spacing:-1.767000px;}
.ws83{word-spacing:-1.710000px;}
.wsa7{word-spacing:-1.653000px;}
.ws11{word-spacing:-1.596000px;}
.wse6{word-spacing:-1.539000px;}
.ws58{word-spacing:-1.482000px;}
.ws43{word-spacing:-1.425000px;}
.wsa3{word-spacing:-1.368000px;}
.ws10e{word-spacing:-1.320000px;}
.ws114{word-spacing:-1.311000px;}
.ws16{word-spacing:-1.254000px;}
.ws76{word-spacing:-1.197000px;}
.ws2a{word-spacing:-1.140000px;}
.ws33{word-spacing:-1.083000px;}
.wsb{word-spacing:-1.026000px;}
.ws15{word-spacing:-0.969000px;}
.ws13{word-spacing:-0.912000px;}
.wsf9{word-spacing:-0.855000px;}
.ws29{word-spacing:-0.840000px;}
.ws23{word-spacing:-0.816000px;}
.ws10{word-spacing:-0.798000px;}
.wsd9{word-spacing:-0.741000px;}
.wsa2{word-spacing:-0.684000px;}
.ws6e{word-spacing:-0.660000px;}
.ws10f{word-spacing:-0.627000px;}
.ws67{word-spacing:-0.570000px;}
.wsd0{word-spacing:-0.513000px;}
.ws9{word-spacing:-0.456000px;}
.ws1c{word-spacing:-0.399000px;}
.ws24{word-spacing:-0.378000px;}
.wsa1{word-spacing:-0.342000px;}
.ws8{word-spacing:-0.285000px;}
.ws28{word-spacing:-0.228000px;}
.ws5b{word-spacing:-0.216000px;}
.ws1e{word-spacing:-0.192000px;}
.ws18{word-spacing:-0.171000px;}
.ws9e{word-spacing:-0.114000px;}
.wsc9{word-spacing:-0.057000px;}
.ws21{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.wsc5{word-spacing:0.054000px;}
.wsbd{word-spacing:0.057000px;}
.ws6a{word-spacing:0.114000px;}
.ws26{word-spacing:0.171000px;}
.ws9d{word-spacing:0.216000px;}
.ws115{word-spacing:0.228000px;}
.ws14{word-spacing:0.285000px;}
.ws107{word-spacing:0.324000px;}
.wsa{word-spacing:0.342000px;}
.ws2e{word-spacing:0.399000px;}
.ws159{word-spacing:0.456000px;}
.wsf6{word-spacing:0.486000px;}
.ws2c{word-spacing:0.513000px;}
.ws20{word-spacing:0.528000px;}
.ws12{word-spacing:0.570000px;}
.ws93{word-spacing:0.612000px;}
.ws51{word-spacing:0.627000px;}
.wsbf{word-spacing:0.684000px;}
.wsba{word-spacing:0.720000px;}
.wsaa{word-spacing:0.741000px;}
.ws3d{word-spacing:0.756000px;}
.ws1d{word-spacing:0.768000px;}
.ws9a{word-spacing:0.798000px;}
.ws46{word-spacing:0.855000px;}
.ws49{word-spacing:0.912000px;}
.ws6f{word-spacing:0.969000px;}
.wsc0{word-spacing:1.026000px;}
.ws2f{word-spacing:1.083000px;}
.ws8b{word-spacing:1.140000px;}
.wsb8{word-spacing:1.188000px;}
.ws47{word-spacing:1.197000px;}
.ws79{word-spacing:1.254000px;}
.ws2d{word-spacing:1.311000px;}
.ws60{word-spacing:1.368000px;}
.ws5e{word-spacing:1.425000px;}
.ws75{word-spacing:1.539000px;}
.ws82{word-spacing:1.596000px;}
.ws44{word-spacing:1.653000px;}
.ws55{word-spacing:1.710000px;}
.ws88{word-spacing:1.728000px;}
.ws99{word-spacing:1.767000px;}
.ws1f{word-spacing:1.824000px;}
.ws64{word-spacing:1.881000px;}
.wsf{word-spacing:1.938000px;}
.ws17{word-spacing:1.995000px;}
.ws5f{word-spacing:2.052000px;}
.ws1b{word-spacing:2.109000px;}
.ws70{word-spacing:2.166000px;}
.wscf{word-spacing:2.223000px;}
.ws4a{word-spacing:2.280000px;}
.ws8d{word-spacing:2.337000px;}
.ws42{word-spacing:2.394000px;}
.wsd5{word-spacing:2.451000px;}
.wsbc{word-spacing:2.508000px;}
.ws4b{word-spacing:2.565000px;}
.ws3a{word-spacing:2.622000px;}
.ws19{word-spacing:2.679000px;}
.ws85{word-spacing:2.736000px;}
.ws9f{word-spacing:2.793000px;}
.ws116{word-spacing:2.850000px;}
.ws6d{word-spacing:2.907000px;}
.ws81{word-spacing:2.964000px;}
.wsbe{word-spacing:3.021000px;}
.ws27{word-spacing:3.078000px;}
.ws5d{word-spacing:3.135000px;}
.ws54{word-spacing:3.192000px;}
.wsf7{word-spacing:3.249000px;}
.ws36{word-spacing:3.306000px;}
.wsb9{word-spacing:3.402000px;}
.ws118{word-spacing:3.420000px;}
.ws8c{word-spacing:3.477000px;}
.ws4c{word-spacing:3.534000px;}
.wsd3{word-spacing:3.591000px;}
.ws4d{word-spacing:3.648000px;}
.ws69{word-spacing:3.705000px;}
.ws7b{word-spacing:3.762000px;}
.ws62{word-spacing:3.819000px;}
.wse{word-spacing:3.876000px;}
.ws97{word-spacing:3.990000px;}
.wsa8{word-spacing:4.047000px;}
.ws56{word-spacing:4.104000px;}
.wsd1{word-spacing:4.161000px;}
.ws124{word-spacing:4.218000px;}
.ws10a{word-spacing:4.332000px;}
.wsa6{word-spacing:4.389000px;}
.ws7e{word-spacing:4.446000px;}
.wsab{word-spacing:4.503000px;}
.ws6c{word-spacing:4.560000px;}
.wsa0{word-spacing:4.674000px;}
.ws94{word-spacing:4.731000px;}
.wsa9{word-spacing:4.788000px;}
.wsc7{word-spacing:4.902000px;}
.ws50{word-spacing:4.959000px;}
.ws45{word-spacing:5.016000px;}
.ws53{word-spacing:5.073000px;}
.wsc{word-spacing:5.130000px;}
.ws4f{word-spacing:5.187000px;}
.ws86{word-spacing:5.244000px;}
.ws73{word-spacing:5.301000px;}
.ws1a{word-spacing:5.358000px;}
.ws66{word-spacing:5.415000px;}
.ws72{word-spacing:5.472000px;}
.ws25{word-spacing:5.529000px;}
.ws95{word-spacing:5.586000px;}
.ws68{word-spacing:5.643000px;}
.wsc2{word-spacing:5.700000px;}
.wsc1{word-spacing:5.757000px;}
.wse9{word-spacing:5.814000px;}
.wscc{word-spacing:5.871000px;}
.ws8e{word-spacing:5.985000px;}
.wsf8{word-spacing:6.042000px;}
.ws128{word-spacing:6.099000px;}
.ws125{word-spacing:6.156000px;}
.wscb{word-spacing:6.270000px;}
.ws126{word-spacing:6.327000px;}
.ws7a{word-spacing:6.384000px;}
.ws37{word-spacing:6.441000px;}
.ws41{word-spacing:6.498000px;}
.ws32{word-spacing:6.555000px;}
.ws8f{word-spacing:6.612000px;}
.ws48{word-spacing:6.669000px;}
.wsc8{word-spacing:6.726000px;}
.ws129{word-spacing:6.783000px;}
.wse4{word-spacing:6.840000px;}
.ws7d{word-spacing:6.897000px;}
.ws80{word-spacing:6.954000px;}
.wsbb{word-spacing:7.011000px;}
.ws35{word-spacing:7.068000px;}
.wsd4{word-spacing:7.125000px;}
.ws61{word-spacing:7.182000px;}
.ws91{word-spacing:7.191000px;}
.ws92{word-spacing:7.293000px;}
.ws4e{word-spacing:7.296000px;}
.wsd7{word-spacing:7.353000px;}
.ws113{word-spacing:7.410000px;}
.ws151{word-spacing:7.467000px;}
.ws89{word-spacing:7.581000px;}
.wsd{word-spacing:7.638000px;}
.ws52{word-spacing:7.695000px;}
.wsda{word-spacing:7.752000px;}
.ws9c{word-spacing:8.037000px;}
.ws65{word-spacing:8.094000px;}
.wsc6{word-spacing:8.151000px;}
.ws152{word-spacing:8.265000px;}
.ws2b{word-spacing:8.322000px;}
.ws110{word-spacing:8.493000px;}
.ws139{word-spacing:8.664000px;}
.ws5c{word-spacing:9.006000px;}
.ws6b{word-spacing:9.120000px;}
.ws84{word-spacing:9.177000px;}
.ws121{word-spacing:9.234000px;}
.ws14b{word-spacing:9.291000px;}
.ws112{word-spacing:9.348000px;}
.ws123{word-spacing:9.462000px;}
.wse5{word-spacing:9.519000px;}
.ws122{word-spacing:9.576000px;}
.ws164{word-spacing:9.690000px;}
.ws7c{word-spacing:9.747000px;}
.ws78{word-spacing:9.804000px;}
.ws38{word-spacing:9.861000px;}
.ws120{word-spacing:9.975000px;}
.ws15e{word-spacing:10.032000px;}
.ws40{word-spacing:10.089000px;}
.ws3e{word-spacing:10.146000px;}
.ws158{word-spacing:10.260000px;}
.ws59{word-spacing:10.317000px;}
.ws57{word-spacing:10.431000px;}
.ws3f{word-spacing:10.488000px;}
.ws90{word-spacing:10.659000px;}
.ws127{word-spacing:10.716000px;}
.ws111{word-spacing:10.773000px;}
.ws96{word-spacing:10.830000px;}
.wsd8{word-spacing:10.944000px;}
.ws14f{word-spacing:11.001000px;}
.ws8a{word-spacing:11.172000px;}
.ws163{word-spacing:11.799000px;}
.ws9b{word-spacing:12.198000px;}
.ws109{word-spacing:12.939000px;}
.ws161{word-spacing:13.053000px;}
.ws108{word-spacing:13.395000px;}
.ws14c{word-spacing:13.509000px;}
.ws134{word-spacing:13.794000px;}
.ws148{word-spacing:14.307000px;}
.ws13a{word-spacing:14.592000px;}
.ws147{word-spacing:14.763000px;}
.ws77{word-spacing:14.820000px;}
.ws165{word-spacing:14.877000px;}
.ws150{word-spacing:14.934000px;}
.ws160{word-spacing:14.991000px;}
.ws15f{word-spacing:15.105000px;}
.ws34{word-spacing:15.390000px;}
.ws13b{word-spacing:15.561000px;}
.ws154{word-spacing:15.618000px;}
.ws166{word-spacing:15.675000px;}
.ws15c{word-spacing:15.903000px;}
.ws169{word-spacing:16.131000px;}
.ws153{word-spacing:16.188000px;}
.ws146{word-spacing:16.245000px;}
.ws74{word-spacing:17.157000px;}
.ws135{word-spacing:18.069000px;}
.ws149{word-spacing:18.525000px;}
.ws156{word-spacing:19.209000px;}
.wsac{word-spacing:19.437000px;}
.ws157{word-spacing:19.608000px;}
.ws11f{word-spacing:20.634000px;}
.ws155{word-spacing:22.743000px;}
.ws13d{word-spacing:27.075000px;}
.ws136{word-spacing:30.894000px;}
.ws138{word-spacing:31.749000px;}
.ws137{word-spacing:35.568000px;}
.wsaf{word-spacing:69.936000px;}
.wsb1{word-spacing:114.960000px;}
.ws10b{word-spacing:119.136000px;}
.wsc3{word-spacing:132.624000px;}
.wsdd{word-spacing:144.624000px;}
.wsc4{word-spacing:157.440000px;}
.wsf1{word-spacing:168.624000px;}
.wsad{word-spacing:177.552000px;}
.wsfa{word-spacing:187.248000px;}
.ws10c{word-spacing:192.144000px;}
.wsdf{word-spacing:194.256000px;}
.wse0{word-spacing:217.632000px;}
.wsf2{word-spacing:218.256000px;}
.wsfb{word-spacing:236.880000px;}
.wsf4{word-spacing:241.632000px;}
.wsee{word-spacing:244.992000px;}
.wsfc{word-spacing:260.256000px;}
.wsb0{word-spacing:271.440000px;}
.wsfe{word-spacing:281.328000px;}
.wsb3{word-spacing:290.208000px;}
.ws10d{word-spacing:297.840000px;}
.ws105{word-spacing:330.528000px;}
.wsf3{word-spacing:362.352000px;}
.wsb2{word-spacing:367.008000px;}
.ws102{word-spacing:368.640000px;}
.ws103{word-spacing:393.840000px;}
.wsfd{word-spacing:398.592000px;}
.wsff{word-spacing:408.912000px;}
.ws101{word-spacing:413.520000px;}
.ws104{word-spacing:425.616000px;}
.wsf5{word-spacing:451.584000px;}
.wse3{word-spacing:458.016000px;}
.ws100{word-spacing:458.112000px;}
.wse2{word-spacing:478.224000px;}
.ws106{word-spacing:489.696000px;}
.wsde{word-spacing:491.136000px;}
.wse1{word-spacing:498.480000px;}
.wsed{word-spacing:557.424000px;}
.wsef{word-spacing:582.000000px;}
.wsec{word-spacing:597.456000px;}
.wsb5{word-spacing:922.848000px;}
.wsb4{word-spacing:951.216000px;}
._32{margin-left:-6.868500px;}
._4{margin-left:-5.785500px;}
._7{margin-left:-4.437000px;}
._3{margin-left:-3.380400px;}
._5{margin-left:-2.157900px;}
._0{margin-left:-1.152000px;}
._2{width:1.144800px;}
._1{width:2.948400px;}
._9{width:4.567500px;}
._25{width:6.447000px;}
._c{width:7.993800px;}
._33{width:15.494400px;}
._31{width:30.723000px;}
._b{width:51.129000px;}
._a{width:54.108600px;}
._6{width:64.704000px;}
._e{width:72.768000px;}
._13{width:78.192000px;}
._30{width:85.617744px;}
._26{width:86.827344px;}
._14{width:101.664000px;}
._2b{width:103.920000px;}
._1a{width:110.948544px;}
._8{width:112.363344px;}
._11{width:116.036400px;}
._d{width:125.040000px;}
._2c{width:143.712000px;}
._16{width:148.224000px;}
._12{width:164.928000px;}
._18{width:173.040000px;}
._10{width:188.544000px;}
._1f{width:197.712000px;}
._2e{width:217.440000px;}
._2d{width:222.000000px;}
._1e{width:230.756400px;}
._28{width:242.064000px;}
._21{width:247.344000px;}
._f{width:249.552000px;}
._29{width:270.288000px;}
._24{width:271.440000px;}
._1b{width:273.504000px;}
._15{width:286.320000px;}
._2f{width:288.932400px;}
._27{width:333.600000px;}
._23{width:381.888000px;}
._1c{width:385.440000px;}
._22{width:426.765900px;}
._20{width:458.112000px;}
._2a{width:465.888000px;}
._1d{width:486.864000px;}
._17{width:557.472000px;}
._19{width:577.584000px;}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(90,87,88);}
.fc1{color:rgb(79,76,77);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.984000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:62.964000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:62.158500px;}
.y1{bottom:63.283500px;}
.y1f9{bottom:96.420450px;}
.y140{bottom:100.706400px;}
.y22{bottom:106.299150px;}
.yf4{bottom:106.401900px;}
.y67{bottom:107.642850px;}
.yb6{bottom:111.918150px;}
.y107{bottom:113.274900px;}
.y183{bottom:114.170100px;}
.y1f8{bottom:117.424950px;}
.y46{bottom:117.675900px;}
.y12f{bottom:118.336800px;}
.yd1{bottom:120.387750px;}
.y21{bottom:121.299150px;}
.y13f{bottom:121.710900px;}
.y1a6{bottom:123.466500px;}
.y1ee{bottom:125.917950px;}
.yf3{bottom:127.406400px;}
.y66{bottom:128.647350px;}
.yb5{bottom:132.922650px;}
.y162{bottom:133.979550px;}
.y1d1{bottom:134.093100px;}
.y106{bottom:134.279400px;}
.y182{bottom:135.174600px;}
.y20{bottom:136.299150px;}
.y45{bottom:138.680400px;}
.y12e{bottom:139.341300px;}
.yd0{bottom:141.392250px;}
.y13e{bottom:142.715400px;}
.y1b1{bottom:143.359950px;}
.y1a5{bottom:144.471000px;}
.y81{bottom:145.430100px;}
.y1ed{bottom:146.922450px;}
.y9b{bottom:147.378450px;}
.yf2{bottom:148.410900px;}
.y65{bottom:149.651850px;}
.y1f{bottom:151.299150px;}
.y161{bottom:154.984050px;}
.y1d0{bottom:155.097600px;}
.y105{bottom:155.283900px;}
.y181{bottom:156.179100px;}
.y44{bottom:159.684900px;}
.y12d{bottom:160.345800px;}
.ycf{bottom:162.396750px;}
.yb4{bottom:162.420150px;}
.y13d{bottom:163.719900px;}
.y1b0{bottom:164.364450px;}
.y1a4{bottom:165.475500px;}
.y1e{bottom:166.299150px;}
.y80{bottom:166.434600px;}
.y1ec{bottom:167.926950px;}
.y9a{bottom:168.382950px;}
.yf1{bottom:169.415400px;}
.y160{bottom:175.988550px;}
.y104{bottom:176.288400px;}
.y180{bottom:177.183600px;}
.y64{bottom:179.149350px;}
.y43{bottom:180.689400px;}
.y12c{bottom:181.350300px;}
.yce{bottom:183.401250px;}
.yb3{bottom:183.424650px;}
.y1cf{bottom:184.595100px;}
.y13c{bottom:184.724400px;}
.y1af{bottom:185.368950px;}
.y1a3{bottom:186.480000px;}
.y7f{bottom:187.439100px;}
.y1f7{bottom:188.931450px;}
.y99{bottom:189.387450px;}
.yf0{bottom:190.419900px;}
.y15f{bottom:196.993050px;}
.y103{bottom:197.292900px;}
.y1eb{bottom:197.424450px;}
.y17f{bottom:198.188100px;}
.y63{bottom:200.153850px;}
.y42{bottom:201.693900px;}
.y12b{bottom:202.354800px;}
.ycd{bottom:204.405750px;}
.yb2{bottom:204.429150px;}
.y1ce{bottom:205.599600px;}
.y1ae{bottom:206.373450px;}
.y1a2{bottom:207.484500px;}
.y7e{bottom:208.443600px;}
.yef{bottom:211.424400px;}
.y15e{bottom:217.997550px;}
.y102{bottom:218.297400px;}
.y1ea{bottom:218.428950px;}
.y98{bottom:218.884950px;}
.y62{bottom:221.158350px;}
.y41{bottom:222.698400px;}
.y12a{bottom:223.359300px;}
.y1d{bottom:224.451900px;}
.ycc{bottom:225.410250px;}
.yb1{bottom:225.433650px;}
.y13b{bottom:226.908750px;}
.y1ad{bottom:227.377950px;}
.y17e{bottom:227.685600px;}
.y1a1{bottom:228.489000px;}
.y7d{bottom:229.448100px;}
.yee{bottom:232.428900px;}
.y1cd{bottom:235.097100px;}
.y15d{bottom:239.002050px;}
.y1e9{bottom:239.433450px;}
.y97{bottom:239.889450px;}
.y61{bottom:242.162850px;}
.y129{bottom:244.363800px;}
.y1c{bottom:245.456400px;}
.ycb{bottom:246.414750px;}
.yb0{bottom:246.438150px;}
.y101{bottom:247.794900px;}
.y1ac{bottom:248.382450px;}
.y17d{bottom:248.690100px;}
.y13a{bottom:249.624750px;}
.y7c{bottom:250.452600px;}
.yed{bottom:253.433400px;}
.y1cc{bottom:256.101600px;}
.y1a0{bottom:257.986500px;}
.y1e8{bottom:260.437950px;}
.y96{bottom:260.893950px;}
.y128{bottom:265.368300px;}
.y1b{bottom:266.460900px;}
.yaf{bottom:267.442650px;}
.y100{bottom:268.799400px;}
.y1ab{bottom:269.386950px;}
.y17c{bottom:269.694600px;}
.y7b{bottom:271.457100px;}
.y139{bottom:271.488750px;}
.y60{bottom:271.660350px;}
.yec{bottom:274.437900px;}
.yca{bottom:275.912250px;}
.y1cb{bottom:277.106100px;}
.y40{bottom:277.711050px;}
.y19f{bottom:278.991000px;}
.y1f6{bottom:281.442450px;}
.y95{bottom:281.898450px;}
.y15c{bottom:283.854000px;}
.y127{bottom:286.372800px;}
.y1a{bottom:287.465400px;}
.yae{bottom:288.447150px;}
.yff{bottom:289.803900px;}
.y1e7{bottom:289.935450px;}
.y1aa{bottom:290.391450px;}
.y17b{bottom:290.699100px;}
.y138{bottom:290.916750px;}
.y7a{bottom:292.461600px;}
.y5f{bottom:292.664850px;}
.yeb{bottom:295.442400px;}
.yc9{bottom:296.916750px;}
.y19e{bottom:299.995500px;}
.y15b{bottom:300.582000px;}
.y3f{bottom:301.714050px;}
.y1f5{bottom:302.446950px;}
.y94{bottom:302.902950px;}
.y1ca{bottom:306.603600px;}
.y126{bottom:307.377300px;}
.y19{bottom:308.469900px;}
.yad{bottom:309.451650px;}
.yfe{bottom:310.808400px;}
.y1e6{bottom:310.939950px;}
.y1a9{bottom:311.395950px;}
.y137{bottom:311.568750px;}
.y17a{bottom:311.703600px;}
.y79{bottom:313.466100px;}
.y5e{bottom:313.669350px;}
.y15a{bottom:315.582000px;}
.yea{bottom:316.446900px;}
.yc8{bottom:317.921250px;}
.y19d{bottom:321.000000px;}
.y1c9{bottom:327.608100px;}
.y125{bottom:328.381800px;}
.y18{bottom:329.474400px;}
.y159{bottom:330.186000px;}
.yac{bottom:330.456150px;}
.yfd{bottom:331.812900px;}
.y136{bottom:331.860750px;}
.y1e5{bottom:331.944450px;}
.y93{bottom:332.400450px;}
.y5d{bottom:334.673850px;}
.ye9{bottom:337.451400px;}
.yc7{bottom:338.925750px;}
.y19c{bottom:342.004500px;}
.y3e{bottom:346.973850px;}
.y78{bottom:347.221950px;}
.y1c8{bottom:348.612600px;}
.y124{bottom:349.386300px;}
.y158{bottom:349.854000px;}
.y17{bottom:350.478900px;}
.yab{bottom:351.460650px;}
.yfc{bottom:352.817400px;}
.y1f4{bottom:352.948950px;}
.y92{bottom:353.404950px;}
.y135{bottom:353.856750px;}
.y5c{bottom:355.678350px;}
.yc6{bottom:359.930250px;}
.y1e4{bottom:361.441950px;}
.y179{bottom:362.311050px;}
.y19b{bottom:363.009000px;}
.ye8{bottom:366.948900px;}
.y3d{bottom:367.973850px;}
.y1c7{bottom:369.617100px;}
.y123{bottom:370.390800px;}
.y157{bottom:371.118000px;}
.y16{bottom:371.483400px;}
.yaa{bottom:372.465150px;}
.y1f3{bottom:373.953450px;}
.y91{bottom:374.409450px;}
.y5b{bottom:376.682850px;}
.yfb{bottom:377.229900px;}
.y178{bottom:380.227050px;}
.y1e3{bottom:382.446450px;}
.ye7{bottom:387.953400px;}
.y134{bottom:388.740600px;}
.yc5{bottom:389.427750px;}
.y122{bottom:391.395300px;}
.y15{bottom:392.487900px;}
.y19a{bottom:392.506500px;}
.y156{bottom:393.438000px;}
.ya9{bottom:393.469650px;}
.y90{bottom:395.413950px;}
.y177{bottom:395.959050px;}
.y5a{bottom:397.687350px;}
.y1c6{bottom:399.114600px;}
.y77{bottom:399.432450px;}
.yfa{bottom:403.101900px;}
.y1e2{bottom:403.450950px;}
.y3c{bottom:405.914250px;}
.ye6{bottom:408.957900px;}
.y176{bottom:410.167050px;}
.yc4{bottom:410.432250px;}
.y121{bottom:412.399800px;}
.y14{bottom:413.492400px;}
.y199{bottom:413.511000px;}
.y155{bottom:413.982000px;}
.y8f{bottom:416.418450px;}
.y133{bottom:419.493600px;}
.y1c5{bottom:420.119100px;}
.y76{bottom:420.436950px;}
.ya8{bottom:422.967150px;}
.y1e1{bottom:424.455450px;}
.y175{bottom:426.031050px;}
.y3b{bottom:426.918750px;}
.y59{bottom:427.184850px;}
.yf9{bottom:429.129900px;}
.ye5{bottom:429.962400px;}
.yc3{bottom:431.436750px;}
.y154{bottom:431.718000px;}
.y200{bottom:432.948450px;}
.y120{bottom:433.404300px;}
.y13{bottom:434.496900px;}
.y198{bottom:434.515500px;}
.y8e{bottom:437.422950px;}
.y1c4{bottom:441.123600px;}
.y174{bottom:442.723050px;}
.ya7{bottom:443.971650px;}
.y1e0{bottom:445.459950px;}
.y132{bottom:445.915950px;}
.y3a{bottom:447.923250px;}
.y58{bottom:448.189350px;}
.y75{bottom:449.934450px;}
.ye4{bottom:450.966900px;}
.yc2{bottom:452.441250px;}
.y1ff{bottom:453.952950px;}
.y11f{bottom:454.408800px;}
.y12{bottom:455.501400px;}
.y197{bottom:455.520000px;}
.y1a8{bottom:458.427450px;}
.y173{bottom:458.959050px;}
.y153{bottom:462.806100px;}
.ya6{bottom:464.976150px;}
.y8d{bottom:466.920450px;}
.y39{bottom:468.927750px;}
.y57{bottom:469.193850px;}
.yf8{bottom:469.641600px;}
.y1c3{bottom:470.621100px;}
.y74{bottom:470.938950px;}
.ye3{bottom:471.971400px;}
.yc1{bottom:473.445750px;}
.y172{bottom:474.739050px;}
.y1df{bottom:474.957450px;}
.y11e{bottom:475.413300px;}
.y11{bottom:476.505900px;}
.y196{bottom:476.524500px;}
.y1a7{bottom:479.431950px;}
.y1fe{bottom:483.450450px;}
.yf7{bottom:485.493600px;}
.ya5{bottom:485.980650px;}
.y8c{bottom:487.924950px;}
.y38{bottom:489.932250px;}
.y56{bottom:490.198350px;}
.y171{bottom:490.915050px;}
.y1c2{bottom:491.625600px;}
.y152{bottom:493.559100px;}
.yc0{bottom:494.450250px;}
.y1de{bottom:495.961950px;}
.y11d{bottom:496.417800px;}
.y10{bottom:497.510400px;}
.y195{bottom:497.529000px;}
.y73{bottom:500.436450px;}
.y1fd{bottom:504.454950px;}
.ye2{bottom:505.727400px;}
.ya4{bottom:506.985150px;}
.y170{bottom:507.055050px;}
.y8b{bottom:508.929450px;}
.y37{bottom:510.936750px;}
.y55{bottom:511.202850px;}
.y1c1{bottom:512.630100px;}
.ybf{bottom:515.454750px;}
.y1dd{bottom:516.966450px;}
.y11c{bottom:517.422300px;}
.y194{bottom:518.533500px;}
.y151{bottom:520.036050px;}
.y72{bottom:521.440950px;}
.y16f{bottom:524.023050px;}
.y1f2{bottom:525.459450px;}
.ya3{bottom:527.989650px;}
.y8a{bottom:529.933950px;}
.y36{bottom:531.941250px;}
.y54{bottom:532.207350px;}
.ybe{bottom:536.459250px;}
.y11b{bottom:538.426800px;}
.y193{bottom:539.538000px;}
.y150{bottom:541.040550px;}
.y16e{bottom:541.951050px;}
.y1c0{bottom:542.127600px;}
.y71{bottom:542.445450px;}
.y1dc{bottom:546.463950px;}
.y89{bottom:550.938450px;}
.y35{bottom:552.945750px;}
.y53{bottom:553.211850px;}
.y1fc{bottom:554.956950px;}
.ybd{bottom:557.463750px;}
.ye1{bottom:557.982150px;}
.y11a{bottom:559.431300px;}
.y192{bottom:560.542500px;}
.yf{bottom:560.873250px;}
.y16d{bottom:561.259050px;}
.ya2{bottom:561.733650px;}
.y14f{bottom:562.045050px;}
.y1bf{bottom:563.132100px;}
.y1db{bottom:567.468450px;}
.y70{bottom:571.942950px;}
.y34{bottom:573.950250px;}
.y52{bottom:574.216350px;}
.y1fb{bottom:575.961450px;}
.ye{bottom:576.797250px;}
.ybc{bottom:578.468250px;}
.ye0{bottom:578.986650px;}
.ya1{bottom:579.736650px;}
.y191{bottom:581.547000px;}
.y14e{bottom:583.049550px;}
.y1be{bottom:584.136600px;}
.y1da{bottom:588.472950px;}
.y119{bottom:588.928800px;}
.y6f{bottom:592.947450px;}
.y33{bottom:594.954750px;}
.y16c{bottom:595.108650px;}
.y51{bottom:595.220850px;}
.y1f1{bottom:596.965950px;}
.ya0{bottom:597.739650px;}
.ybb{bottom:599.472750px;}
.ydf{bottom:599.991150px;}
.yf6{bottom:601.440450px;}
.y14d{bottom:604.054050px;}
.y1bd{bottom:605.141100px;}
.y118{bottom:609.933300px;}
.y190{bottom:611.044500px;}
.yd{bottom:611.726100px;}
.y6e{bottom:613.951950px;}
.y9f{bottom:615.742650px;}
.y32{bottom:615.959250px;}
.y50{bottom:616.225350px;}
.y1d9{bottom:617.970450px;}
.yba{bottom:620.477250px;}
.yf5{bottom:622.444950px;}
.y14c{bottom:625.058550px;}
.y16b{bottom:625.861650px;}
.y117{bottom:630.937800px;}
.y18f{bottom:632.049000px;}
.y9e{bottom:633.745650px;}
.yc{bottom:634.098600px;}
.y1bc{bottom:634.638600px;}
.y88{bottom:634.956450px;}
.yde{bottom:636.846000px;}
.y31{bottom:636.963750px;}
.y4f{bottom:637.229850px;}
.y1d8{bottom:638.974950px;}
.yb9{bottom:641.481750px;}
.y6d{bottom:643.449450px;}
.y14b{bottom:646.063050px;}
.y116{bottom:651.942300px;}
.y18e{bottom:653.053500px;}
.y1bb{bottom:655.643100px;}
.y131{bottom:655.960950px;}
.yb{bottom:656.471100px;}
.y30{bottom:657.968250px;}
.y1d7{bottom:659.979450px;}
.ydd{bottom:662.526000px;}
.y87{bottom:664.453950px;}
.y4e{bottom:666.737550px;}
.y1f0{bottom:668.472450px;}
.y115{bottom:672.946800px;}
.y6c{bottom:672.946950px;}
.y18d{bottom:674.058000px;}
.yb8{bottom:675.237750px;}
.y16a{bottom:675.556650px;}
.y1ba{bottom:676.647600px;}
.y130{bottom:676.965450px;}
.ya{bottom:678.843600px;}
.y2f{bottom:678.972750px;}
.ydb{bottom:681.198000px;}
.y86{bottom:685.458450px;}
.y14a{bottom:686.599800px;}
.yda{bottom:688.698000px;}
.y1d6{bottom:689.476950px;}
.y169{bottom:691.120650px;}
.y114{bottom:693.951300px;}
.y6b{bottom:693.951450px;}
.y18c{bottom:695.062500px;}
.ydc{bottom:696.198000px;}
.y2e{bottom:699.977250px;}
.y149{bottom:704.467800px;}
.y168{bottom:706.120650px;}
.y85{bottom:706.462950px;}
.y1b9{bottom:710.403600px;}
.y1d5{bottom:710.481450px;}
.y113{bottom:714.955800px;}
.y6a{bottom:714.955950px;}
.yd9{bottom:717.102000px;}
.y4d{bottom:718.997550px;}
.y2d{bottom:720.981750px;}
.y167{bottom:721.864650px;}
.y148{bottom:722.767800px;}
.y9{bottom:723.588600px;}
.y84{bottom:727.467450px;}
.y18b{bottom:728.818500px;}
.y1ef{bottom:731.485950px;}
.y112{bottom:735.960300px;}
.y69{bottom:735.960450px;}
.y147{bottom:739.795800px;}
.y1d4{bottom:739.978950px;}
.y4c{bottom:739.997550px;}
.y166{bottom:744.364650px;}
.yd8{bottom:744.894000px;}
.y8{bottom:745.961100px;}
.y83{bottom:748.471950px;}
.yd7{bottom:752.394000px;}
.y203{bottom:752.490450px;}
.y2c{bottom:754.734600px;}
.y111{bottom:756.964800px;}
.y68{bottom:756.964950px;}
.y146{bottom:757.003800px;}
.y1d3{bottom:760.983450px;}
.y1b8{bottom:762.653850px;}
.y165{bottom:766.864650px;}
.y7{bottom:768.333600px;}
.y82{bottom:769.476450px;}
.y202{bottom:773.494950px;}
.y145{bottom:775.951800px;}
.y110{bottom:777.969300px;}
.y4b{bottom:777.969450px;}
.y2b{bottom:778.737600px;}
.y1d2{bottom:781.987950px;}
.y1b7{bottom:783.658350px;}
.y18a{bottom:788.985900px;}
.y164{bottom:789.172650px;}
.y9d{bottom:790.480950px;}
.y6{bottom:790.706100px;}
.y144{bottom:795.211800px;}
.yd6{bottom:796.244550px;}
.y10f{bottom:798.973800px;}
.y4a{bottom:798.973950px;}
.y1fa{bottom:802.992450px;}
.y1b6{bottom:804.662850px;}
.y9c{bottom:811.485450px;}
.y163{bottom:811.864650px;}
.y189{bottom:812.685900px;}
.y143{bottom:813.775800px;}
.y10e{bottom:819.978300px;}
.y49{bottom:819.978450px;}
.y201{bottom:823.996950px;}
.y2a{bottom:823.997550px;}
.y1b5{bottom:825.667350px;}
.yd5{bottom:826.997550px;}
.yb7{bottom:832.489950px;}
.y188{bottom:836.793900px;}
.y10d{bottom:840.982800px;}
.y48{bottom:840.982950px;}
.y29{bottom:844.997550px;}
.y142{bottom:846.748500px;}
.yd4{bottom:853.494450px;}
.y5{bottom:855.442950px;}
.y187{bottom:858.777900px;}
.y1b4{bottom:859.423350px;}
.y10c{bottom:861.987300px;}
.y47{bottom:861.987450px;}
.yd3{bottom:874.498950px;}
.y141{bottom:877.501500px;}
.y186{bottom:880.869900px;}
.y4{bottom:882.442950px;}
.y10b{bottom:882.991800px;}
.y28{bottom:882.991950px;}
.yd2{bottom:895.503450px;}
.y10a{bottom:903.996300px;}
.y27{bottom:903.996450px;}
.y3{bottom:909.442950px;}
.y1b3{bottom:911.687100px;}
.y185{bottom:915.814950px;}
.y109{bottom:925.000800px;}
.y26{bottom:925.000950px;}
.y2{bottom:936.442950px;}
.y1b2{bottom:945.442950px;}
.y108{bottom:946.005300px;}
.y25{bottom:946.005450px;}
.y184{bottom:946.567950px;}
.y24{bottom:1003.464600px;}
.h8{height:33.120000px;}
.h11{height:33.168000px;}
.hc{height:33.600000px;}
.h6{height:35.292960px;}
.he{height:37.314000px;}
.hf{height:37.800000px;}
.h12{height:39.900000px;}
.h5{height:41.952000px;}
.h2{height:42.624000px;}
.hb{height:43.452000px;}
.hd{height:44.574000px;}
.h7{height:47.952000px;}
.h4{height:49.818000px;}
.h9{height:53.280000px;}
.h10{height:72.624000px;}
.ha{height:74.592000px;}
.h3{height:95.904000px;}
.h0{height:1084.252530px;}
.h1{height:1084.500000px;}
.w1{width:744.000000px;}
.w0{width:744.094485px;}
.x0{left:0.000000px;}
.xb{left:62.716500px;}
.x2{left:106.299150px;}
.x11{left:114.399300px;}
.xa{left:131.811150px;}
.xe{left:136.067400px;}
.x1d{left:157.328400px;}
.xf{left:163.056900px;}
.x15{left:170.672850px;}
.x13{left:182.079300px;}
.x10{left:191.338650px;}
.x1{left:223.987200px;}
.x1b{left:244.084200px;}
.x1a{left:252.249150px;}
.x18{left:257.274150px;}
.x14{left:268.539300px;}
.xd{left:273.539850px;}
.x16{left:284.124150px;}
.x1c{left:362.164200px;}
.x3{left:384.231000px;}
.x4{left:389.090250px;}
.x8{left:394.020750px;}
.x19{left:401.202150px;}
.x17{left:411.696150px;}
.x5{left:424.017000px;}
.x6{left:447.900000px;}
.x9{left:473.721000px;}
.x7{left:478.209750px;}
.xc{left:490.535700px;}
.x12{left:571.935300px;}
@media print{
.v3{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v4{vertical-align:26.666667pt;}
.v1{vertical-align:31.968000pt;}
.ls3c{letter-spacing:-4.661333pt;}
.ls36{letter-spacing:-4.256000pt;}
.ls4c{letter-spacing:-4.104000pt;}
.ls40{letter-spacing:-4.053333pt;}
.ls44{letter-spacing:-4.002667pt;}
.ls17{letter-spacing:-3.850667pt;}
.ls46{letter-spacing:-3.698667pt;}
.ls3b{letter-spacing:-3.546667pt;}
.ls1f{letter-spacing:-3.504000pt;}
.ls34{letter-spacing:-3.394667pt;}
.ls16{letter-spacing:-3.141333pt;}
.ls3f{letter-spacing:-2.989333pt;}
.ls2c{letter-spacing:-2.837333pt;}
.ls45{letter-spacing:-2.786667pt;}
.ls37{letter-spacing:-2.736000pt;}
.ls2e{letter-spacing:-2.544000pt;}
.ls4b{letter-spacing:-2.482667pt;}
.ls3a{letter-spacing:-2.229333pt;}
.ls30{letter-spacing:-2.176000pt;}
.ls24{letter-spacing:-2.128000pt;}
.ls42{letter-spacing:-1.925333pt;}
.ls39{letter-spacing:-1.874667pt;}
.ls23{letter-spacing:-1.722667pt;}
.ls38{letter-spacing:-1.672000pt;}
.ls22{letter-spacing:-1.664000pt;}
.ls18{letter-spacing:-1.536000pt;}
.ls1b{letter-spacing:-1.520000pt;}
.ls1c{letter-spacing:-1.469333pt;}
.ls25{letter-spacing:-1.418667pt;}
.ls1d{letter-spacing:-1.266667pt;}
.ls26{letter-spacing:-1.216000pt;}
.ls49{letter-spacing:-1.165333pt;}
.lsb{letter-spacing:-1.114667pt;}
.ls1e{letter-spacing:-1.056000pt;}
.ls3e{letter-spacing:-1.013333pt;}
.ls48{letter-spacing:-0.962667pt;}
.ls2f{letter-spacing:-0.912000pt;}
.ls43{letter-spacing:-0.861333pt;}
.ls4a{letter-spacing:-0.810667pt;}
.ls1{letter-spacing:-0.768000pt;}
.ls41{letter-spacing:-0.760000pt;}
.lsa{letter-spacing:-0.709333pt;}
.ls14{letter-spacing:-0.672000pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.608000pt;}
.ls31{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.557333pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.506667pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.456000pt;}
.ls19{letter-spacing:-0.453333pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls47{letter-spacing:-0.405333pt;}
.ls9{letter-spacing:-0.354667pt;}
.ls5{letter-spacing:-0.304000pt;}
.ls2{letter-spacing:-0.253333pt;}
.ls10{letter-spacing:-0.202667pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls3d{letter-spacing:-0.152000pt;}
.ls2b{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:-0.101333pt;}
.ls27{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000128pt;}
.ls33{letter-spacing:0.050667pt;}
.ls15{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.253333pt;}
.lse{letter-spacing:0.336000pt;}
.ls6{letter-spacing:0.405333pt;}
.ls2a{letter-spacing:0.624000pt;}
.lsc{letter-spacing:0.725333pt;}
.ls2d{letter-spacing:1.474400pt;}
.ls13{letter-spacing:8.750133pt;}
.ls29{letter-spacing:204.245333pt;}
.ls32{letter-spacing:242.090667pt;}
.ws1{word-spacing:-17.472000pt;}
.ws3c{word-spacing:-12.586667pt;}
.wsdc{word-spacing:-12.432000pt;}
.ws15a{word-spacing:-12.210667pt;}
.ws11b{word-spacing:-12.160000pt;}
.ws11e{word-spacing:-12.058667pt;}
.wsce{word-spacing:-12.048000pt;}
.ws12b{word-spacing:-12.008000pt;}
.ws145{word-spacing:-11.957333pt;}
.ws11d{word-spacing:-11.906667pt;}
.ws144{word-spacing:-11.856000pt;}
.ws13f{word-spacing:-11.805333pt;}
.ws168{word-spacing:-11.754667pt;}
.ws2{word-spacing:-11.704000pt;}
.ws12f{word-spacing:-11.653333pt;}
.ws142{word-spacing:-11.602667pt;}
.ws22{word-spacing:-11.552000pt;}
.ws5a{word-spacing:-11.501333pt;}
.ws3{word-spacing:-11.400000pt;}
.ws167{word-spacing:-11.349333pt;}
.ws4{word-spacing:-11.298667pt;}
.ws6{word-spacing:-11.248000pt;}
.ws11a{word-spacing:-11.197333pt;}
.ws5{word-spacing:-11.045333pt;}
.ws130{word-spacing:-10.842667pt;}
.ws143{word-spacing:-10.792000pt;}
.wsf0{word-spacing:-10.752000pt;}
.ws12c{word-spacing:-10.741333pt;}
.wsb7{word-spacing:-10.285333pt;}
.ws0{word-spacing:-10.069333pt;}
.wsb6{word-spacing:-10.032000pt;}
.wsae{word-spacing:-9.856000pt;}
.ws12e{word-spacing:-9.525333pt;}
.wseb{word-spacing:-9.264000pt;}
.ws11c{word-spacing:-9.018667pt;}
.ws119{word-spacing:-8.765333pt;}
.ws12a{word-spacing:-8.613333pt;}
.ws141{word-spacing:-8.461333pt;}
.ws132{word-spacing:-8.258667pt;}
.ws133{word-spacing:-7.802667pt;}
.ws140{word-spacing:-7.752000pt;}
.ws12d{word-spacing:-7.701333pt;}
.ws15b{word-spacing:-7.093333pt;}
.ws162{word-spacing:-6.130667pt;}
.ws3b{word-spacing:-6.119168pt;}
.ws13e{word-spacing:-5.472000pt;}
.wscd{word-spacing:-3.546667pt;}
.ws87{word-spacing:-3.394667pt;}
.ws14a{word-spacing:-3.192000pt;}
.wsa5{word-spacing:-3.141333pt;}
.ws13c{word-spacing:-3.090667pt;}
.wse7{word-spacing:-3.040000pt;}
.ws98{word-spacing:-2.888000pt;}
.ws14d{word-spacing:-2.533333pt;}
.ws15d{word-spacing:-2.482667pt;}
.ws14e{word-spacing:-2.432000pt;}
.ws131{word-spacing:-2.381333pt;}
.wse8{word-spacing:-2.330667pt;}
.wsea{word-spacing:-2.280000pt;}
.ws117{word-spacing:-2.229333pt;}
.ws7f{word-spacing:-2.077333pt;}
.wsd6{word-spacing:-2.026667pt;}
.ws31{word-spacing:-1.976000pt;}
.wsd2{word-spacing:-1.925333pt;}
.wsca{word-spacing:-1.874667pt;}
.ws71{word-spacing:-1.824000pt;}
.ws30{word-spacing:-1.773333pt;}
.wsa4{word-spacing:-1.722667pt;}
.wsdb{word-spacing:-1.672000pt;}
.ws39{word-spacing:-1.621333pt;}
.ws63{word-spacing:-1.570667pt;}
.ws83{word-spacing:-1.520000pt;}
.wsa7{word-spacing:-1.469333pt;}
.ws11{word-spacing:-1.418667pt;}
.wse6{word-spacing:-1.368000pt;}
.ws58{word-spacing:-1.317333pt;}
.ws43{word-spacing:-1.266667pt;}
.wsa3{word-spacing:-1.216000pt;}
.ws10e{word-spacing:-1.173333pt;}
.ws114{word-spacing:-1.165333pt;}
.ws16{word-spacing:-1.114667pt;}
.ws76{word-spacing:-1.064000pt;}
.ws2a{word-spacing:-1.013333pt;}
.ws33{word-spacing:-0.962667pt;}
.wsb{word-spacing:-0.912000pt;}
.ws15{word-spacing:-0.861333pt;}
.ws13{word-spacing:-0.810667pt;}
.wsf9{word-spacing:-0.760000pt;}
.ws29{word-spacing:-0.746667pt;}
.ws23{word-spacing:-0.725333pt;}
.ws10{word-spacing:-0.709333pt;}
.wsd9{word-spacing:-0.658667pt;}
.wsa2{word-spacing:-0.608000pt;}
.ws6e{word-spacing:-0.586667pt;}
.ws10f{word-spacing:-0.557333pt;}
.ws67{word-spacing:-0.506667pt;}
.wsd0{word-spacing:-0.456000pt;}
.ws9{word-spacing:-0.405333pt;}
.ws1c{word-spacing:-0.354667pt;}
.ws24{word-spacing:-0.336000pt;}
.wsa1{word-spacing:-0.304000pt;}
.ws8{word-spacing:-0.253333pt;}
.ws28{word-spacing:-0.202667pt;}
.ws5b{word-spacing:-0.192000pt;}
.ws1e{word-spacing:-0.170667pt;}
.ws18{word-spacing:-0.152000pt;}
.ws9e{word-spacing:-0.101333pt;}
.wsc9{word-spacing:-0.050667pt;}
.ws21{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.wsc5{word-spacing:0.048000pt;}
.wsbd{word-spacing:0.050667pt;}
.ws6a{word-spacing:0.101333pt;}
.ws26{word-spacing:0.152000pt;}
.ws9d{word-spacing:0.192000pt;}
.ws115{word-spacing:0.202667pt;}
.ws14{word-spacing:0.253333pt;}
.ws107{word-spacing:0.288000pt;}
.wsa{word-spacing:0.304000pt;}
.ws2e{word-spacing:0.354667pt;}
.ws159{word-spacing:0.405333pt;}
.wsf6{word-spacing:0.432000pt;}
.ws2c{word-spacing:0.456000pt;}
.ws20{word-spacing:0.469333pt;}
.ws12{word-spacing:0.506667pt;}
.ws93{word-spacing:0.544000pt;}
.ws51{word-spacing:0.557333pt;}
.wsbf{word-spacing:0.608000pt;}
.wsba{word-spacing:0.640000pt;}
.wsaa{word-spacing:0.658667pt;}
.ws3d{word-spacing:0.672000pt;}
.ws1d{word-spacing:0.682667pt;}
.ws9a{word-spacing:0.709333pt;}
.ws46{word-spacing:0.760000pt;}
.ws49{word-spacing:0.810667pt;}
.ws6f{word-spacing:0.861333pt;}
.wsc0{word-spacing:0.912000pt;}
.ws2f{word-spacing:0.962667pt;}
.ws8b{word-spacing:1.013333pt;}
.wsb8{word-spacing:1.056000pt;}
.ws47{word-spacing:1.064000pt;}
.ws79{word-spacing:1.114667pt;}
.ws2d{word-spacing:1.165333pt;}
.ws60{word-spacing:1.216000pt;}
.ws5e{word-spacing:1.266667pt;}
.ws75{word-spacing:1.368000pt;}
.ws82{word-spacing:1.418667pt;}
.ws44{word-spacing:1.469333pt;}
.ws55{word-spacing:1.520000pt;}
.ws88{word-spacing:1.536000pt;}
.ws99{word-spacing:1.570667pt;}
.ws1f{word-spacing:1.621333pt;}
.ws64{word-spacing:1.672000pt;}
.wsf{word-spacing:1.722667pt;}
.ws17{word-spacing:1.773333pt;}
.ws5f{word-spacing:1.824000pt;}
.ws1b{word-spacing:1.874667pt;}
.ws70{word-spacing:1.925333pt;}
.wscf{word-spacing:1.976000pt;}
.ws4a{word-spacing:2.026667pt;}
.ws8d{word-spacing:2.077333pt;}
.ws42{word-spacing:2.128000pt;}
.wsd5{word-spacing:2.178667pt;}
.wsbc{word-spacing:2.229333pt;}
.ws4b{word-spacing:2.280000pt;}
.ws3a{word-spacing:2.330667pt;}
.ws19{word-spacing:2.381333pt;}
.ws85{word-spacing:2.432000pt;}
.ws9f{word-spacing:2.482667pt;}
.ws116{word-spacing:2.533333pt;}
.ws6d{word-spacing:2.584000pt;}
.ws81{word-spacing:2.634667pt;}
.wsbe{word-spacing:2.685333pt;}
.ws27{word-spacing:2.736000pt;}
.ws5d{word-spacing:2.786667pt;}
.ws54{word-spacing:2.837333pt;}
.wsf7{word-spacing:2.888000pt;}
.ws36{word-spacing:2.938667pt;}
.wsb9{word-spacing:3.024000pt;}
.ws118{word-spacing:3.040000pt;}
.ws8c{word-spacing:3.090667pt;}
.ws4c{word-spacing:3.141333pt;}
.wsd3{word-spacing:3.192000pt;}
.ws4d{word-spacing:3.242667pt;}
.ws69{word-spacing:3.293333pt;}
.ws7b{word-spacing:3.344000pt;}
.ws62{word-spacing:3.394667pt;}
.wse{word-spacing:3.445333pt;}
.ws97{word-spacing:3.546667pt;}
.wsa8{word-spacing:3.597333pt;}
.ws56{word-spacing:3.648000pt;}
.wsd1{word-spacing:3.698667pt;}
.ws124{word-spacing:3.749333pt;}
.ws10a{word-spacing:3.850667pt;}
.wsa6{word-spacing:3.901333pt;}
.ws7e{word-spacing:3.952000pt;}
.wsab{word-spacing:4.002667pt;}
.ws6c{word-spacing:4.053333pt;}
.wsa0{word-spacing:4.154667pt;}
.ws94{word-spacing:4.205333pt;}
.wsa9{word-spacing:4.256000pt;}
.wsc7{word-spacing:4.357333pt;}
.ws50{word-spacing:4.408000pt;}
.ws45{word-spacing:4.458667pt;}
.ws53{word-spacing:4.509333pt;}
.wsc{word-spacing:4.560000pt;}
.ws4f{word-spacing:4.610667pt;}
.ws86{word-spacing:4.661333pt;}
.ws73{word-spacing:4.712000pt;}
.ws1a{word-spacing:4.762667pt;}
.ws66{word-spacing:4.813333pt;}
.ws72{word-spacing:4.864000pt;}
.ws25{word-spacing:4.914667pt;}
.ws95{word-spacing:4.965333pt;}
.ws68{word-spacing:5.016000pt;}
.wsc2{word-spacing:5.066667pt;}
.wsc1{word-spacing:5.117333pt;}
.wse9{word-spacing:5.168000pt;}
.wscc{word-spacing:5.218667pt;}
.ws8e{word-spacing:5.320000pt;}
.wsf8{word-spacing:5.370667pt;}
.ws128{word-spacing:5.421333pt;}
.ws125{word-spacing:5.472000pt;}
.wscb{word-spacing:5.573333pt;}
.ws126{word-spacing:5.624000pt;}
.ws7a{word-spacing:5.674667pt;}
.ws37{word-spacing:5.725333pt;}
.ws41{word-spacing:5.776000pt;}
.ws32{word-spacing:5.826667pt;}
.ws8f{word-spacing:5.877333pt;}
.ws48{word-spacing:5.928000pt;}
.wsc8{word-spacing:5.978667pt;}
.ws129{word-spacing:6.029333pt;}
.wse4{word-spacing:6.080000pt;}
.ws7d{word-spacing:6.130667pt;}
.ws80{word-spacing:6.181333pt;}
.wsbb{word-spacing:6.232000pt;}
.ws35{word-spacing:6.282667pt;}
.wsd4{word-spacing:6.333333pt;}
.ws61{word-spacing:6.384000pt;}
.ws91{word-spacing:6.392000pt;}
.ws92{word-spacing:6.482667pt;}
.ws4e{word-spacing:6.485333pt;}
.wsd7{word-spacing:6.536000pt;}
.ws113{word-spacing:6.586667pt;}
.ws151{word-spacing:6.637333pt;}
.ws89{word-spacing:6.738667pt;}
.wsd{word-spacing:6.789333pt;}
.ws52{word-spacing:6.840000pt;}
.wsda{word-spacing:6.890667pt;}
.ws9c{word-spacing:7.144000pt;}
.ws65{word-spacing:7.194667pt;}
.wsc6{word-spacing:7.245333pt;}
.ws152{word-spacing:7.346667pt;}
.ws2b{word-spacing:7.397333pt;}
.ws110{word-spacing:7.549333pt;}
.ws139{word-spacing:7.701333pt;}
.ws5c{word-spacing:8.005333pt;}
.ws6b{word-spacing:8.106667pt;}
.ws84{word-spacing:8.157333pt;}
.ws121{word-spacing:8.208000pt;}
.ws14b{word-spacing:8.258667pt;}
.ws112{word-spacing:8.309333pt;}
.ws123{word-spacing:8.410667pt;}
.wse5{word-spacing:8.461333pt;}
.ws122{word-spacing:8.512000pt;}
.ws164{word-spacing:8.613333pt;}
.ws7c{word-spacing:8.664000pt;}
.ws78{word-spacing:8.714667pt;}
.ws38{word-spacing:8.765333pt;}
.ws120{word-spacing:8.866667pt;}
.ws15e{word-spacing:8.917333pt;}
.ws40{word-spacing:8.968000pt;}
.ws3e{word-spacing:9.018667pt;}
.ws158{word-spacing:9.120000pt;}
.ws59{word-spacing:9.170667pt;}
.ws57{word-spacing:9.272000pt;}
.ws3f{word-spacing:9.322667pt;}
.ws90{word-spacing:9.474667pt;}
.ws127{word-spacing:9.525333pt;}
.ws111{word-spacing:9.576000pt;}
.ws96{word-spacing:9.626667pt;}
.wsd8{word-spacing:9.728000pt;}
.ws14f{word-spacing:9.778667pt;}
.ws8a{word-spacing:9.930667pt;}
.ws163{word-spacing:10.488000pt;}
.ws9b{word-spacing:10.842667pt;}
.ws109{word-spacing:11.501333pt;}
.ws161{word-spacing:11.602667pt;}
.ws108{word-spacing:11.906667pt;}
.ws14c{word-spacing:12.008000pt;}
.ws134{word-spacing:12.261333pt;}
.ws148{word-spacing:12.717333pt;}
.ws13a{word-spacing:12.970667pt;}
.ws147{word-spacing:13.122667pt;}
.ws77{word-spacing:13.173333pt;}
.ws165{word-spacing:13.224000pt;}
.ws150{word-spacing:13.274667pt;}
.ws160{word-spacing:13.325333pt;}
.ws15f{word-spacing:13.426667pt;}
.ws34{word-spacing:13.680000pt;}
.ws13b{word-spacing:13.832000pt;}
.ws154{word-spacing:13.882667pt;}
.ws166{word-spacing:13.933333pt;}
.ws15c{word-spacing:14.136000pt;}
.ws169{word-spacing:14.338667pt;}
.ws153{word-spacing:14.389333pt;}
.ws146{word-spacing:14.440000pt;}
.ws74{word-spacing:15.250667pt;}
.ws135{word-spacing:16.061333pt;}
.ws149{word-spacing:16.466667pt;}
.ws156{word-spacing:17.074667pt;}
.wsac{word-spacing:17.277333pt;}
.ws157{word-spacing:17.429333pt;}
.ws11f{word-spacing:18.341333pt;}
.ws155{word-spacing:20.216000pt;}
.ws13d{word-spacing:24.066667pt;}
.ws136{word-spacing:27.461333pt;}
.ws138{word-spacing:28.221333pt;}
.ws137{word-spacing:31.616000pt;}
.wsaf{word-spacing:62.165333pt;}
.wsb1{word-spacing:102.186667pt;}
.ws10b{word-spacing:105.898667pt;}
.wsc3{word-spacing:117.888000pt;}
.wsdd{word-spacing:128.554667pt;}
.wsc4{word-spacing:139.946667pt;}
.wsf1{word-spacing:149.888000pt;}
.wsad{word-spacing:157.824000pt;}
.wsfa{word-spacing:166.442667pt;}
.ws10c{word-spacing:170.794667pt;}
.wsdf{word-spacing:172.672000pt;}
.wse0{word-spacing:193.450667pt;}
.wsf2{word-spacing:194.005333pt;}
.wsfb{word-spacing:210.560000pt;}
.wsf4{word-spacing:214.784000pt;}
.wsee{word-spacing:217.770667pt;}
.wsfc{word-spacing:231.338667pt;}
.wsb0{word-spacing:241.280000pt;}
.wsfe{word-spacing:250.069333pt;}
.wsb3{word-spacing:257.962667pt;}
.ws10d{word-spacing:264.746667pt;}
.ws105{word-spacing:293.802667pt;}
.wsf3{word-spacing:322.090667pt;}
.wsb2{word-spacing:326.229333pt;}
.ws102{word-spacing:327.680000pt;}
.ws103{word-spacing:350.080000pt;}
.wsfd{word-spacing:354.304000pt;}
.wsff{word-spacing:363.477333pt;}
.ws101{word-spacing:367.573333pt;}
.ws104{word-spacing:378.325333pt;}
.wsf5{word-spacing:401.408000pt;}
.wse3{word-spacing:407.125333pt;}
.ws100{word-spacing:407.210667pt;}
.wse2{word-spacing:425.088000pt;}
.ws106{word-spacing:435.285333pt;}
.wsde{word-spacing:436.565333pt;}
.wse1{word-spacing:443.093333pt;}
.wsed{word-spacing:495.488000pt;}
.wsef{word-spacing:517.333333pt;}
.wsec{word-spacing:531.072000pt;}
.wsb5{word-spacing:820.309333pt;}
.wsb4{word-spacing:845.525333pt;}
._32{margin-left:-6.105333pt;}
._4{margin-left:-5.142667pt;}
._7{margin-left:-3.944000pt;}
._3{margin-left:-3.004800pt;}
._5{margin-left:-1.918133pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.017600pt;}
._1{width:2.620800pt;}
._9{width:4.060000pt;}
._25{width:5.730667pt;}
._c{width:7.105600pt;}
._33{width:13.772800pt;}
._31{width:27.309333pt;}
._b{width:45.448000pt;}
._a{width:48.096533pt;}
._6{width:57.514667pt;}
._e{width:64.682667pt;}
._13{width:69.504000pt;}
._30{width:76.104661pt;}
._26{width:77.179861pt;}
._14{width:90.368000pt;}
._2b{width:92.373333pt;}
._1a{width:98.620928pt;}
._8{width:99.878528pt;}
._11{width:103.143467pt;}
._d{width:111.146667pt;}
._2c{width:127.744000pt;}
._16{width:131.754667pt;}
._12{width:146.602667pt;}
._18{width:153.813333pt;}
._10{width:167.594667pt;}
._1f{width:175.744000pt;}
._2e{width:193.280000pt;}
._2d{width:197.333333pt;}
._1e{width:205.116800pt;}
._28{width:215.168000pt;}
._21{width:219.861333pt;}
._f{width:221.824000pt;}
._29{width:240.256000pt;}
._24{width:241.280000pt;}
._1b{width:243.114667pt;}
._15{width:254.506667pt;}
._2f{width:256.828800pt;}
._27{width:296.533333pt;}
._23{width:339.456000pt;}
._1c{width:342.613333pt;}
._22{width:379.347467pt;}
._20{width:407.210667pt;}
._2a{width:414.122667pt;}
._1d{width:432.768000pt;}
._17{width:495.530667pt;}
._19{width:513.408000pt;}
.fs4{font-size:24.874667pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:55.968000pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:55.252000pt;}
.y1{bottom:56.252000pt;}
.y1f9{bottom:85.707067pt;}
.y140{bottom:89.516800pt;}
.y22{bottom:94.488133pt;}
.yf4{bottom:94.579467pt;}
.y67{bottom:95.682533pt;}
.yb6{bottom:99.482800pt;}
.y107{bottom:100.688800pt;}
.y183{bottom:101.484533pt;}
.y1f8{bottom:104.377733pt;}
.y46{bottom:104.600800pt;}
.y12f{bottom:105.188267pt;}
.yd1{bottom:107.011333pt;}
.y21{bottom:107.821467pt;}
.y13f{bottom:108.187467pt;}
.y1a6{bottom:109.748000pt;}
.y1ee{bottom:111.927067pt;}
.yf3{bottom:113.250133pt;}
.y66{bottom:114.353200pt;}
.yb5{bottom:118.153467pt;}
.y162{bottom:119.092933pt;}
.y1d1{bottom:119.193867pt;}
.y106{bottom:119.359467pt;}
.y182{bottom:120.155200pt;}
.y20{bottom:121.154800pt;}
.y45{bottom:123.271467pt;}
.y12e{bottom:123.858933pt;}
.yd0{bottom:125.682000pt;}
.y13e{bottom:126.858133pt;}
.y1b1{bottom:127.431067pt;}
.y1a5{bottom:128.418667pt;}
.y81{bottom:129.271200pt;}
.y1ed{bottom:130.597733pt;}
.y9b{bottom:131.003067pt;}
.yf2{bottom:131.920800pt;}
.y65{bottom:133.023867pt;}
.y1f{bottom:134.488133pt;}
.y161{bottom:137.763600pt;}
.y1d0{bottom:137.864533pt;}
.y105{bottom:138.030133pt;}
.y181{bottom:138.825867pt;}
.y44{bottom:141.942133pt;}
.y12d{bottom:142.529600pt;}
.ycf{bottom:144.352667pt;}
.yb4{bottom:144.373467pt;}
.y13d{bottom:145.528800pt;}
.y1b0{bottom:146.101733pt;}
.y1a4{bottom:147.089333pt;}
.y1e{bottom:147.821467pt;}
.y80{bottom:147.941867pt;}
.y1ec{bottom:149.268400pt;}
.y9a{bottom:149.673733pt;}
.yf1{bottom:150.591467pt;}
.y160{bottom:156.434267pt;}
.y104{bottom:156.700800pt;}
.y180{bottom:157.496533pt;}
.y64{bottom:159.243867pt;}
.y43{bottom:160.612800pt;}
.y12c{bottom:161.200267pt;}
.yce{bottom:163.023333pt;}
.yb3{bottom:163.044133pt;}
.y1cf{bottom:164.084533pt;}
.y13c{bottom:164.199467pt;}
.y1af{bottom:164.772400pt;}
.y1a3{bottom:165.760000pt;}
.y7f{bottom:166.612533pt;}
.y1f7{bottom:167.939067pt;}
.y99{bottom:168.344400pt;}
.yf0{bottom:169.262133pt;}
.y15f{bottom:175.104933pt;}
.y103{bottom:175.371467pt;}
.y1eb{bottom:175.488400pt;}
.y17f{bottom:176.167200pt;}
.y63{bottom:177.914533pt;}
.y42{bottom:179.283467pt;}
.y12b{bottom:179.870933pt;}
.ycd{bottom:181.694000pt;}
.yb2{bottom:181.714800pt;}
.y1ce{bottom:182.755200pt;}
.y1ae{bottom:183.443067pt;}
.y1a2{bottom:184.430667pt;}
.y7e{bottom:185.283200pt;}
.yef{bottom:187.932800pt;}
.y15e{bottom:193.775600pt;}
.y102{bottom:194.042133pt;}
.y1ea{bottom:194.159067pt;}
.y98{bottom:194.564400pt;}
.y62{bottom:196.585200pt;}
.y41{bottom:197.954133pt;}
.y12a{bottom:198.541600pt;}
.y1d{bottom:199.512800pt;}
.ycc{bottom:200.364667pt;}
.yb1{bottom:200.385467pt;}
.y13b{bottom:201.696667pt;}
.y1ad{bottom:202.113733pt;}
.y17e{bottom:202.387200pt;}
.y1a1{bottom:203.101333pt;}
.y7d{bottom:203.953867pt;}
.yee{bottom:206.603467pt;}
.y1cd{bottom:208.975200pt;}
.y15d{bottom:212.446267pt;}
.y1e9{bottom:212.829733pt;}
.y97{bottom:213.235067pt;}
.y61{bottom:215.255867pt;}
.y129{bottom:217.212267pt;}
.y1c{bottom:218.183467pt;}
.ycb{bottom:219.035333pt;}
.yb0{bottom:219.056133pt;}
.y101{bottom:220.262133pt;}
.y1ac{bottom:220.784400pt;}
.y17d{bottom:221.057867pt;}
.y13a{bottom:221.888667pt;}
.y7c{bottom:222.624533pt;}
.yed{bottom:225.274133pt;}
.y1cc{bottom:227.645867pt;}
.y1a0{bottom:229.321333pt;}
.y1e8{bottom:231.500400pt;}
.y96{bottom:231.905733pt;}
.y128{bottom:235.882933pt;}
.y1b{bottom:236.854133pt;}
.yaf{bottom:237.726800pt;}
.y100{bottom:238.932800pt;}
.y1ab{bottom:239.455067pt;}
.y17c{bottom:239.728533pt;}
.y7b{bottom:241.295200pt;}
.y139{bottom:241.323333pt;}
.y60{bottom:241.475867pt;}
.yec{bottom:243.944800pt;}
.yca{bottom:245.255333pt;}
.y1cb{bottom:246.316533pt;}
.y40{bottom:246.854267pt;}
.y19f{bottom:247.992000pt;}
.y1f6{bottom:250.171067pt;}
.y95{bottom:250.576400pt;}
.y15c{bottom:252.314667pt;}
.y127{bottom:254.553600pt;}
.y1a{bottom:255.524800pt;}
.yae{bottom:256.397467pt;}
.yff{bottom:257.603467pt;}
.y1e7{bottom:257.720400pt;}
.y1aa{bottom:258.125733pt;}
.y17b{bottom:258.399200pt;}
.y138{bottom:258.592667pt;}
.y7a{bottom:259.965867pt;}
.y5f{bottom:260.146533pt;}
.yeb{bottom:262.615467pt;}
.yc9{bottom:263.926000pt;}
.y19e{bottom:266.662667pt;}
.y15b{bottom:267.184000pt;}
.y3f{bottom:268.190267pt;}
.y1f5{bottom:268.841733pt;}
.y94{bottom:269.247067pt;}
.y1ca{bottom:272.536533pt;}
.y126{bottom:273.224267pt;}
.y19{bottom:274.195467pt;}
.yad{bottom:275.068133pt;}
.yfe{bottom:276.274133pt;}
.y1e6{bottom:276.391067pt;}
.y1a9{bottom:276.796400pt;}
.y137{bottom:276.950000pt;}
.y17a{bottom:277.069867pt;}
.y79{bottom:278.636533pt;}
.y5e{bottom:278.817200pt;}
.y15a{bottom:280.517333pt;}
.yea{bottom:281.286133pt;}
.yc8{bottom:282.596667pt;}
.y19d{bottom:285.333333pt;}
.y1c9{bottom:291.207200pt;}
.y125{bottom:291.894933pt;}
.y18{bottom:292.866133pt;}
.y159{bottom:293.498667pt;}
.yac{bottom:293.738800pt;}
.yfd{bottom:294.944800pt;}
.y136{bottom:294.987333pt;}
.y1e5{bottom:295.061733pt;}
.y93{bottom:295.467067pt;}
.y5d{bottom:297.487867pt;}
.ye9{bottom:299.956800pt;}
.yc7{bottom:301.267333pt;}
.y19c{bottom:304.004000pt;}
.y3e{bottom:308.421200pt;}
.y78{bottom:308.641733pt;}
.y1c8{bottom:309.877867pt;}
.y124{bottom:310.565600pt;}
.y158{bottom:310.981333pt;}
.y17{bottom:311.536800pt;}
.yab{bottom:312.409467pt;}
.yfc{bottom:313.615467pt;}
.y1f4{bottom:313.732400pt;}
.y92{bottom:314.137733pt;}
.y135{bottom:314.539333pt;}
.y5c{bottom:316.158533pt;}
.yc6{bottom:319.938000pt;}
.y1e4{bottom:321.281733pt;}
.y179{bottom:322.054267pt;}
.y19b{bottom:322.674667pt;}
.ye8{bottom:326.176800pt;}
.y3d{bottom:327.087867pt;}
.y1c7{bottom:328.548533pt;}
.y123{bottom:329.236267pt;}
.y157{bottom:329.882667pt;}
.y16{bottom:330.207467pt;}
.yaa{bottom:331.080133pt;}
.y1f3{bottom:332.403067pt;}
.y91{bottom:332.808400pt;}
.y5b{bottom:334.829200pt;}
.yfb{bottom:335.315467pt;}
.y178{bottom:337.979600pt;}
.y1e3{bottom:339.952400pt;}
.ye7{bottom:344.847467pt;}
.y134{bottom:345.547200pt;}
.yc5{bottom:346.158000pt;}
.y122{bottom:347.906933pt;}
.y15{bottom:348.878133pt;}
.y19a{bottom:348.894667pt;}
.y156{bottom:349.722667pt;}
.ya9{bottom:349.750800pt;}
.y90{bottom:351.479067pt;}
.y177{bottom:351.963600pt;}
.y5a{bottom:353.499867pt;}
.y1c6{bottom:354.768533pt;}
.y77{bottom:355.051067pt;}
.yfa{bottom:358.312800pt;}
.y1e2{bottom:358.623067pt;}
.y3c{bottom:360.812667pt;}
.ye6{bottom:363.518133pt;}
.y176{bottom:364.592933pt;}
.yc4{bottom:364.828667pt;}
.y121{bottom:366.577600pt;}
.y14{bottom:367.548800pt;}
.y199{bottom:367.565333pt;}
.y155{bottom:367.984000pt;}
.y8f{bottom:370.149733pt;}
.y133{bottom:372.883200pt;}
.y1c5{bottom:373.439200pt;}
.y76{bottom:373.721733pt;}
.ya8{bottom:375.970800pt;}
.y1e1{bottom:377.293733pt;}
.y175{bottom:378.694267pt;}
.y3b{bottom:379.483333pt;}
.y59{bottom:379.719867pt;}
.yf9{bottom:381.448800pt;}
.ye5{bottom:382.188800pt;}
.yc3{bottom:383.499333pt;}
.y154{bottom:383.749333pt;}
.y200{bottom:384.843067pt;}
.y120{bottom:385.248267pt;}
.y13{bottom:386.219467pt;}
.y198{bottom:386.236000pt;}
.y8e{bottom:388.820400pt;}
.y1c4{bottom:392.109867pt;}
.y174{bottom:393.531600pt;}
.ya7{bottom:394.641467pt;}
.y1e0{bottom:395.964400pt;}
.y132{bottom:396.369733pt;}
.y3a{bottom:398.154000pt;}
.y58{bottom:398.390533pt;}
.y75{bottom:399.941733pt;}
.ye4{bottom:400.859467pt;}
.yc2{bottom:402.170000pt;}
.y1ff{bottom:403.513733pt;}
.y11f{bottom:403.918933pt;}
.y12{bottom:404.890133pt;}
.y197{bottom:404.906667pt;}
.y1a8{bottom:407.491067pt;}
.y173{bottom:407.963600pt;}
.y153{bottom:411.383200pt;}
.ya6{bottom:413.312133pt;}
.y8d{bottom:415.040400pt;}
.y39{bottom:416.824667pt;}
.y57{bottom:417.061200pt;}
.yf8{bottom:417.459200pt;}
.y1c3{bottom:418.329867pt;}
.y74{bottom:418.612400pt;}
.ye3{bottom:419.530133pt;}
.yc1{bottom:420.840667pt;}
.y172{bottom:421.990267pt;}
.y1df{bottom:422.184400pt;}
.y11e{bottom:422.589600pt;}
.y11{bottom:423.560800pt;}
.y196{bottom:423.577333pt;}
.y1a7{bottom:426.161733pt;}
.y1fe{bottom:429.733733pt;}
.yf7{bottom:431.549867pt;}
.ya5{bottom:431.982800pt;}
.y8c{bottom:433.711067pt;}
.y38{bottom:435.495333pt;}
.y56{bottom:435.731867pt;}
.y171{bottom:436.368933pt;}
.y1c2{bottom:437.000533pt;}
.y152{bottom:438.719200pt;}
.yc0{bottom:439.511333pt;}
.y1de{bottom:440.855067pt;}
.y11d{bottom:441.260267pt;}
.y10{bottom:442.231467pt;}
.y195{bottom:442.248000pt;}
.y73{bottom:444.832400pt;}
.y1fd{bottom:448.404400pt;}
.ye2{bottom:449.535467pt;}
.ya4{bottom:450.653467pt;}
.y170{bottom:450.715600pt;}
.y8b{bottom:452.381733pt;}
.y37{bottom:454.166000pt;}
.y55{bottom:454.402533pt;}
.y1c1{bottom:455.671200pt;}
.ybf{bottom:458.182000pt;}
.y1dd{bottom:459.525733pt;}
.y11c{bottom:459.930933pt;}
.y194{bottom:460.918667pt;}
.y151{bottom:462.254267pt;}
.y72{bottom:463.503067pt;}
.y16f{bottom:465.798267pt;}
.y1f2{bottom:467.075067pt;}
.ya3{bottom:469.324133pt;}
.y8a{bottom:471.052400pt;}
.y36{bottom:472.836667pt;}
.y54{bottom:473.073200pt;}
.ybe{bottom:476.852667pt;}
.y11b{bottom:478.601600pt;}
.y193{bottom:479.589333pt;}
.y150{bottom:480.924933pt;}
.y16e{bottom:481.734267pt;}
.y1c0{bottom:481.891200pt;}
.y71{bottom:482.173733pt;}
.y1dc{bottom:485.745733pt;}
.y89{bottom:489.723067pt;}
.y35{bottom:491.507333pt;}
.y53{bottom:491.743867pt;}
.y1fc{bottom:493.295067pt;}
.ybd{bottom:495.523333pt;}
.ye1{bottom:495.984133pt;}
.y11a{bottom:497.272267pt;}
.y192{bottom:498.260000pt;}
.yf{bottom:498.554000pt;}
.y16d{bottom:498.896933pt;}
.ya2{bottom:499.318800pt;}
.y14f{bottom:499.595600pt;}
.y1bf{bottom:500.561867pt;}
.y1db{bottom:504.416400pt;}
.y70{bottom:508.393733pt;}
.y34{bottom:510.178000pt;}
.y52{bottom:510.414533pt;}
.y1fb{bottom:511.965733pt;}
.ye{bottom:512.708667pt;}
.ybc{bottom:514.194000pt;}
.ye0{bottom:514.654800pt;}
.ya1{bottom:515.321467pt;}
.y191{bottom:516.930667pt;}
.y14e{bottom:518.266267pt;}
.y1be{bottom:519.232533pt;}
.y1da{bottom:523.087067pt;}
.y119{bottom:523.492267pt;}
.y6f{bottom:527.064400pt;}
.y33{bottom:528.848667pt;}
.y16c{bottom:528.985467pt;}
.y51{bottom:529.085200pt;}
.y1f1{bottom:530.636400pt;}
.ya0{bottom:531.324133pt;}
.ybb{bottom:532.864667pt;}
.ydf{bottom:533.325467pt;}
.yf6{bottom:534.613733pt;}
.y14d{bottom:536.936933pt;}
.y1bd{bottom:537.903200pt;}
.y118{bottom:542.162933pt;}
.y190{bottom:543.150667pt;}
.yd{bottom:543.756533pt;}
.y6e{bottom:545.735067pt;}
.y9f{bottom:547.326800pt;}
.y32{bottom:547.519333pt;}
.y50{bottom:547.755867pt;}
.y1d9{bottom:549.307067pt;}
.yba{bottom:551.535333pt;}
.yf5{bottom:553.284400pt;}
.y14c{bottom:555.607600pt;}
.y16b{bottom:556.321467pt;}
.y117{bottom:560.833600pt;}
.y18f{bottom:561.821333pt;}
.y9e{bottom:563.329467pt;}
.yc{bottom:563.643200pt;}
.y1bc{bottom:564.123200pt;}
.y88{bottom:564.405733pt;}
.yde{bottom:566.085333pt;}
.y31{bottom:566.190000pt;}
.y4f{bottom:566.426533pt;}
.y1d8{bottom:567.977733pt;}
.yb9{bottom:570.206000pt;}
.y6d{bottom:571.955067pt;}
.y14b{bottom:574.278267pt;}
.y116{bottom:579.504267pt;}
.y18e{bottom:580.492000pt;}
.y1bb{bottom:582.793867pt;}
.y131{bottom:583.076400pt;}
.yb{bottom:583.529867pt;}
.y30{bottom:584.860667pt;}
.y1d7{bottom:586.648400pt;}
.ydd{bottom:588.912000pt;}
.y87{bottom:590.625733pt;}
.y4e{bottom:592.655600pt;}
.y1f0{bottom:594.197733pt;}
.y115{bottom:598.174933pt;}
.y6c{bottom:598.175067pt;}
.y18d{bottom:599.162667pt;}
.yb8{bottom:600.211333pt;}
.y16a{bottom:600.494800pt;}
.y1ba{bottom:601.464533pt;}
.y130{bottom:601.747067pt;}
.ya{bottom:603.416533pt;}
.y2f{bottom:603.531333pt;}
.ydb{bottom:605.509333pt;}
.y86{bottom:609.296400pt;}
.y14a{bottom:610.310933pt;}
.yda{bottom:612.176000pt;}
.y1d6{bottom:612.868400pt;}
.y169{bottom:614.329467pt;}
.y114{bottom:616.845600pt;}
.y6b{bottom:616.845733pt;}
.y18c{bottom:617.833333pt;}
.ydc{bottom:618.842667pt;}
.y2e{bottom:622.202000pt;}
.y149{bottom:626.193600pt;}
.y168{bottom:627.662800pt;}
.y85{bottom:627.967067pt;}
.y1b9{bottom:631.469867pt;}
.y1d5{bottom:631.539067pt;}
.y113{bottom:635.516267pt;}
.y6a{bottom:635.516400pt;}
.yd9{bottom:637.424000pt;}
.y4d{bottom:639.108933pt;}
.y2d{bottom:640.872667pt;}
.y167{bottom:641.657467pt;}
.y148{bottom:642.460267pt;}
.y9{bottom:643.189867pt;}
.y84{bottom:646.637733pt;}
.y18b{bottom:647.838667pt;}
.y1ef{bottom:650.209733pt;}
.y112{bottom:654.186933pt;}
.y69{bottom:654.187067pt;}
.y147{bottom:657.596267pt;}
.y1d4{bottom:657.759067pt;}
.y4c{bottom:657.775600pt;}
.y166{bottom:661.657467pt;}
.yd8{bottom:662.128000pt;}
.y8{bottom:663.076533pt;}
.y83{bottom:665.308400pt;}
.yd7{bottom:668.794667pt;}
.y203{bottom:668.880400pt;}
.y2c{bottom:670.875200pt;}
.y111{bottom:672.857600pt;}
.y68{bottom:672.857733pt;}
.y146{bottom:672.892267pt;}
.y1d3{bottom:676.429733pt;}
.y1b8{bottom:677.914533pt;}
.y165{bottom:681.657467pt;}
.y7{bottom:682.963200pt;}
.y82{bottom:683.979067pt;}
.y202{bottom:687.551067pt;}
.y145{bottom:689.734933pt;}
.y110{bottom:691.528267pt;}
.y4b{bottom:691.528400pt;}
.y2b{bottom:692.211200pt;}
.y1d2{bottom:695.100400pt;}
.y1b7{bottom:696.585200pt;}
.y18a{bottom:701.320800pt;}
.y164{bottom:701.486800pt;}
.y9d{bottom:702.649733pt;}
.y6{bottom:702.849867pt;}
.y144{bottom:706.854933pt;}
.yd6{bottom:707.772933pt;}
.y10f{bottom:710.198933pt;}
.y4a{bottom:710.199067pt;}
.y1fa{bottom:713.771067pt;}
.y1b6{bottom:715.255867pt;}
.y9c{bottom:721.320400pt;}
.y163{bottom:721.657467pt;}
.y189{bottom:722.387467pt;}
.y143{bottom:723.356267pt;}
.y10e{bottom:728.869600pt;}
.y49{bottom:728.869733pt;}
.y201{bottom:732.441733pt;}
.y2a{bottom:732.442267pt;}
.y1b5{bottom:733.926533pt;}
.yd5{bottom:735.108933pt;}
.yb7{bottom:739.991067pt;}
.y188{bottom:743.816800pt;}
.y10d{bottom:747.540267pt;}
.y48{bottom:747.540400pt;}
.y29{bottom:751.108933pt;}
.y142{bottom:752.665333pt;}
.yd4{bottom:758.661733pt;}
.y5{bottom:760.393733pt;}
.y187{bottom:763.358133pt;}
.y1b4{bottom:763.931867pt;}
.y10c{bottom:766.210933pt;}
.y47{bottom:766.211067pt;}
.yd3{bottom:777.332400pt;}
.y141{bottom:780.001333pt;}
.y186{bottom:782.995467pt;}
.y4{bottom:784.393733pt;}
.y10b{bottom:784.881600pt;}
.y28{bottom:784.881733pt;}
.yd2{bottom:796.003067pt;}
.y10a{bottom:803.552267pt;}
.y27{bottom:803.552400pt;}
.y3{bottom:808.393733pt;}
.y1b3{bottom:810.388533pt;}
.y185{bottom:814.057733pt;}
.y109{bottom:822.222933pt;}
.y26{bottom:822.223067pt;}
.y2{bottom:832.393733pt;}
.y1b2{bottom:840.393733pt;}
.y108{bottom:840.893600pt;}
.y25{bottom:840.893733pt;}
.y184{bottom:841.393733pt;}
.y24{bottom:891.968533pt;}
.h8{height:29.440000pt;}
.h11{height:29.482667pt;}
.hc{height:29.866667pt;}
.h6{height:31.371520pt;}
.he{height:33.168000pt;}
.hf{height:33.600000pt;}
.h12{height:35.466667pt;}
.h5{height:37.290667pt;}
.h2{height:37.888000pt;}
.hb{height:38.624000pt;}
.hd{height:39.621333pt;}
.h7{height:42.624000pt;}
.h4{height:44.282667pt;}
.h9{height:47.360000pt;}
.h10{height:64.554667pt;}
.ha{height:66.304000pt;}
.h3{height:85.248000pt;}
.h0{height:963.780027pt;}
.h1{height:964.000000pt;}
.w1{width:661.333333pt;}
.w0{width:661.417320pt;}
.x0{left:0.000000pt;}
.xb{left:55.748000pt;}
.x2{left:94.488133pt;}
.x11{left:101.688267pt;}
.xa{left:117.165467pt;}
.xe{left:120.948800pt;}
.x1d{left:139.847467pt;}
.xf{left:144.939467pt;}
.x15{left:151.709200pt;}
.x13{left:161.848267pt;}
.x10{left:170.078800pt;}
.x1{left:199.099733pt;}
.x1b{left:216.963733pt;}
.x1a{left:224.221467pt;}
.x18{left:228.688133pt;}
.x14{left:238.701600pt;}
.xd{left:243.146533pt;}
.x16{left:252.554800pt;}
.x1c{left:321.923733pt;}
.x3{left:341.538667pt;}
.x4{left:345.858000pt;}
.x8{left:350.240667pt;}
.x19{left:356.624133pt;}
.x17{left:365.952133pt;}
.x5{left:376.904000pt;}
.x6{left:398.133333pt;}
.x9{left:421.085333pt;}
.x7{left:425.075333pt;}
.xc{left:436.031733pt;}
.x12{left:508.386933pt;}
}




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