
    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_4812f46dd2f40ad13e737fdd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_63945a2c7611a4c65b32a5f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.503000;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_a2eeab49f171c30858fed4c4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_17fe8b934552c57d0c4f9412.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_75af8b3088f1f7d5e0939643.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ea3e9db9e98234534451ffc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_2f6986bfa3e244f1be92e161.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9c4ef6239f3a7c27786ca879.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.482000;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_eb4e3a3bfa8e2e4c3bfca768.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_500bab88b4d9233d48301360.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.928000;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_a1b82d887d86bea9c127abdc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_939680828bd43a0541050372.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.330566;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_3565ad52486e9b04df375be5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.386719;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_233e24e3db2708c6a5c5f8b3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921000;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_eefbe986b05a7845942a48e8.woff2')format("woff");}.fff{font-family:fff;line-height:0.909000;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_2bc2da11539c62e5f3bb25e1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.704000;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_911842add12ade7c747308c2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.580000;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_80c2f997a3ce611f5e584ab6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0955e246104fa07087aed6e3.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.313477;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_3ea67aa9c2a22fae5044c88c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.665000;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;}
.m8{transform:matrix(0.000072,-0.234043,0.250000,0.000077,0,0);-ms-transform:matrix(0.000072,-0.234043,0.250000,0.000077,0,0);-webkit-transform:matrix(0.000072,-0.234043,0.250000,0.000077,0,0);}
.m3{transform:matrix(0.000072,-0.241390,0.250000,0.000072,0,0);-ms-transform:matrix(0.000072,-0.241390,0.250000,0.000072,0,0);-webkit-transform:matrix(0.000072,-0.241390,0.250000,0.000072,0,0);}
.m6{transform:matrix(0.000073,-0.225662,0.250000,0.000073,0,0);-ms-transform:matrix(0.000073,-0.225662,0.250000,0.000073,0,0);-webkit-transform:matrix(0.000073,-0.225662,0.250000,0.000073,0,0);}
.m11{transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187720,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.210704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210704,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.219209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219209,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.219211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219211,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234043,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242390,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242897,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249639,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,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);}
.m2{transform:matrix(0.258917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258917,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.924460px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.677000px;}
.v4{vertical-align:8.965800px;}
.v7{vertical-align:13.611000px;}
.v6{vertical-align:21.690600px;}
.v1{vertical-align:31.236600px;}
.ls2c{letter-spacing:-2.217834px;}
.ls20{letter-spacing:-1.958404px;}
.ls24{letter-spacing:-1.725679px;}
.ls2f{letter-spacing:-1.596057px;}
.ls27{letter-spacing:-1.185581px;}
.ls2b{letter-spacing:-0.499380px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000002px;}
.lsf{letter-spacing:0.009096px;}
.ls23{letter-spacing:0.184424px;}
.ls1d{letter-spacing:0.242688px;}
.ls1f{letter-spacing:0.460272px;}
.ls26{letter-spacing:0.724522px;}
.ls2a{letter-spacing:1.140740px;}
.ls21{letter-spacing:1.822282px;}
.ls22{letter-spacing:2.362380px;}
.ls28{letter-spacing:2.599496px;}
.ls2d{letter-spacing:2.731901px;}
.ls10{letter-spacing:2.977601px;}
.ls8{letter-spacing:2.996909px;}
.ls25{letter-spacing:3.139594px;}
.ls2e{letter-spacing:3.348782px;}
.ls29{letter-spacing:3.833474px;}
.ls1c{letter-spacing:6.515540px;}
.lse{letter-spacing:9.964593px;}
.lsc{letter-spacing:13.270183px;}
.ls1a{letter-spacing:13.270192px;}
.ls1b{letter-spacing:13.270200px;}
.ls1e{letter-spacing:13.282138px;}
.ls2{letter-spacing:16.109471px;}
.lsb{letter-spacing:16.290647px;}
.lsd{letter-spacing:16.291247px;}
.ls17{letter-spacing:16.605662px;}
.lsa{letter-spacing:16.617583px;}
.ls9{letter-spacing:16.617600px;}
.ls19{letter-spacing:16.617643px;}
.ls7{letter-spacing:19.600709px;}
.ls15{letter-spacing:19.905240px;}
.ls14{letter-spacing:19.905300px;}
.ls1{letter-spacing:21.415282px;}
.ls34{letter-spacing:21.423518px;}
.ls3c{letter-spacing:23.082647px;}
.ls13{letter-spacing:24.029795px;}
.ls12{letter-spacing:24.089614px;}
.ls11{letter-spacing:24.507979px;}
.ls35{letter-spacing:24.747242px;}
.ls36{letter-spacing:24.747276px;}
.ls16{letter-spacing:25.404643px;}
.ls18{letter-spacing:26.719680px;}
.ls6{letter-spacing:29.536109px;}
.ls4{letter-spacing:29.887770px;}
.ls39{letter-spacing:55.304702px;}
.ls37{letter-spacing:55.304762px;}
.ls3d{letter-spacing:58.061366px;}
.ls33{letter-spacing:75.811325px;}
.ls31{letter-spacing:81.360396px;}
.ls32{letter-spacing:82.154512px;}
.ls3b{letter-spacing:82.903322px;}
.ls3a{letter-spacing:82.903382px;}
.ls38{letter-spacing:82.957142px;}
.ls30{letter-spacing:87.698712px;}
.ls5{letter-spacing:145.672669px;}
.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;}
}
.ws3e{word-spacing:-152.907119px;}
.ws9b{word-spacing:-99.878412px;}
.ws9e{word-spacing:-94.334212px;}
.wse1{word-spacing:-59.327806px;}
.ws6a{word-spacing:-48.167178px;}
.ws94{word-spacing:-44.843655px;}
.ws84{word-spacing:-31.651147px;}
.ws79{word-spacing:-31.561517px;}
.ws0{word-spacing:-31.246024px;}
.ws3{word-spacing:-28.244160px;}
.ws22{word-spacing:-27.652378px;}
.ws2c{word-spacing:-26.038426px;}
.wsb1{word-spacing:-18.291334px;}
.wsa9{word-spacing:-17.992456px;}
.wscf{word-spacing:-17.992438px;}
.wsd0{word-spacing:-17.932680px;}
.ws4c{word-spacing:-17.872904px;}
.wsd5{word-spacing:-17.693578px;}
.ws65{word-spacing:-17.334924px;}
.ws66{word-spacing:-17.275148px;}
.wsbc{word-spacing:-17.215373px;}
.ws31{word-spacing:-16.677392px;}
.wsa8{word-spacing:-16.498066px;}
.ws64{word-spacing:-16.438290px;}
.ws15{word-spacing:-16.019861px;}
.wsd4{word-spacing:-15.840534px;}
.wsd3{word-spacing:-15.720983px;}
.ws17{word-spacing:-15.601432px;}
.ws5a{word-spacing:-15.541656px;}
.ws73{word-spacing:-15.541644px;}
.ws71{word-spacing:-15.541614px;}
.ws75{word-spacing:-15.481880px;}
.ws60{word-spacing:-15.183002px;}
.wsad{word-spacing:-14.943900px;}
.ws2b{word-spacing:-14.884124px;}
.ws1c{word-spacing:-14.824349px;}
.ws86{word-spacing:-14.764573px;}
.ws58{word-spacing:-14.704798px;}
.ws4d{word-spacing:-14.585246px;}
.wsa2{word-spacing:-14.405920px;}
.wsa7{word-spacing:-14.286368px;}
.wsaa{word-spacing:-14.107042px;}
.ws87{word-spacing:-14.047266px;}
.ws2d{word-spacing:-13.987490px;}
.ws14{word-spacing:-13.867939px;}
.ws52{word-spacing:-13.808164px;}
.wsaf{word-spacing:-13.748388px;}
.ws39{word-spacing:-13.688612px;}
.ws7{word-spacing:-13.664794px;}
.ws59{word-spacing:-13.628837px;}
.ws88{word-spacing:-13.569061px;}
.ws8d{word-spacing:-13.509286px;}
.ws54{word-spacing:-13.389734px;}
.wsd7{word-spacing:-13.270183px;}
.ws8b{word-spacing:-13.210408px;}
.wsb3{word-spacing:-13.150632px;}
.wsb2{word-spacing:-13.090856px;}
.ws56{word-spacing:-13.031081px;}
.ws7a{word-spacing:-12.971305px;}
.ws3a{word-spacing:-12.851754px;}
.ws1d{word-spacing:-12.791978px;}
.ws16{word-spacing:-12.732203px;}
.ws63{word-spacing:-12.612652px;}
.ws19{word-spacing:-12.552876px;}
.ws3b{word-spacing:-12.493100px;}
.wsb{word-spacing:-12.427430px;}
.ws53{word-spacing:-12.194222px;}
.wsa0{word-spacing:-12.179700px;}
.ws32{word-spacing:-12.134447px;}
.ws28{word-spacing:-12.074671px;}
.ws55{word-spacing:-12.014896px;}
.ws8a{word-spacing:-11.955120px;}
.ws10{word-spacing:-11.728051px;}
.ws18{word-spacing:-11.716018px;}
.ws1{word-spacing:-11.656242px;}
.ws21{word-spacing:-11.512858px;}
.ws62{word-spacing:-11.476915px;}
.wsb4{word-spacing:-11.357364px;}
.wsa5{word-spacing:-11.297588px;}
.ws9{word-spacing:-11.243866px;}
.ws8f{word-spacing:-11.178037px;}
.ws3d{word-spacing:-11.118262px;}
.ws5f{word-spacing:-11.058486px;}
.ws34{word-spacing:-10.998710px;}
.ws8{word-spacing:-10.974874px;}
.wsd6{word-spacing:-10.938935px;}
.wscb{word-spacing:-10.921075px;}
.ws50{word-spacing:-10.759608px;}
.wsd2{word-spacing:-10.640057px;}
.wsd1{word-spacing:-10.460730px;}
.ws7f{word-spacing:-10.400954px;}
.wsa{word-spacing:-10.383091px;}
.wsea{word-spacing:-10.221696px;}
.wse0{word-spacing:-10.102076px;}
.ws20{word-spacing:-10.042301px;}
.wsec{word-spacing:-10.006502px;}
.ws7c{word-spacing:-9.982550px;}
.ws7e{word-spacing:-9.982525px;}
.wsf1{word-spacing:-9.845107px;}
.ws26{word-spacing:-9.803198px;}
.wsae{word-spacing:-9.743423px;}
.wsf{word-spacing:-9.683712px;}
.ws29{word-spacing:-9.683647px;}
.ws5d{word-spacing:-9.623872px;}
.wsef{word-spacing:-9.522317px;}
.ws8c{word-spacing:-9.504320px;}
.wse9{word-spacing:-9.468518px;}
.ws5b{word-spacing:-9.444545px;}
.ws25{word-spacing:-9.384769px;}
.wsd{word-spacing:-9.360922px;}
.ws57{word-spacing:-9.324994px;}
.wseb{word-spacing:-9.307123px;}
.ws48{word-spacing:-9.253346px;}
.ws2{word-spacing:-9.199526px;}
.ws1b{word-spacing:-8.906564px;}
.ws1e{word-spacing:-8.846789px;}
.wse4{word-spacing:-8.787013px;}
.ws7b{word-spacing:-8.727238px;}
.ws35{word-spacing:-8.667462px;}
.ws1a{word-spacing:-8.607686px;}
.ws80{word-spacing:-8.488135px;}
.wse6{word-spacing:-8.392550px;}
.ws51{word-spacing:-8.308808px;}
.ws78{word-spacing:-8.249033px;}
.ws30{word-spacing:-8.189257px;}
.wse7{word-spacing:-8.177357px;}
.ws38{word-spacing:-8.069706px;}
.ws2f{word-spacing:-7.890379px;}
.wse5{word-spacing:-7.830604px;}
.ws2a{word-spacing:-7.770828px;}
.ws90{word-spacing:-7.711052px;}
.ws23{word-spacing:-7.699075px;}
.wsee{word-spacing:-7.693171px;}
.ws5e{word-spacing:-7.651277px;}
.wse{word-spacing:-7.639373px;}
.wsf5{word-spacing:-7.531776px;}
.ws6d{word-spacing:-7.531730px;}
.ws4b{word-spacing:-7.531726px;}
.ws6f{word-spacing:-7.471950px;}
.wsb0{word-spacing:-7.412174px;}
.wsa4{word-spacing:-7.173072px;}
.ws82{word-spacing:-7.113296px;}
.ws13{word-spacing:-6.814418px;}
.wsb7{word-spacing:-6.724800px;}
.ws76{word-spacing:-6.694867px;}
.ws91{word-spacing:-6.575316px;}
.ws36{word-spacing:-6.515540px;}
.wse3{word-spacing:-6.336214px;}
.ws4f{word-spacing:-6.276438px;}
.wsf4{word-spacing:-6.186816px;}
.ws37{word-spacing:-6.156887px;}
.ws89{word-spacing:-5.917784px;}
.wsf2{word-spacing:-5.810227px;}
.ws70{word-spacing:-5.738458px;}
.ws12{word-spacing:-5.678682px;}
.wsab{word-spacing:-5.439580px;}
.ws4a{word-spacing:-5.260253px;}
.wsd8{word-spacing:-5.164646px;}
.wsb5{word-spacing:-5.140702px;}
.ws61{word-spacing:-5.080926px;}
.ws68{word-spacing:-5.021150px;}
.wsc{word-spacing:-5.003251px;}
.ws5c{word-spacing:-4.841824px;}
.wsc2{word-spacing:-4.519066px;}
.ws8e{word-spacing:-4.483170px;}
.wsc5{word-spacing:-4.476051px;}
.wsc7{word-spacing:-4.465291px;}
.wsc4{word-spacing:-4.465274px;}
.wsc3{word-spacing:-4.465272px;}
.wsc8{word-spacing:-4.465231px;}
.wscd{word-spacing:-4.465214px;}
.wsc9{word-spacing:-4.465212px;}
.wscc{word-spacing:-4.411522px;}
.wsa3{word-spacing:-4.363619px;}
.ws33{word-spacing:-4.303843px;}
.wsa6{word-spacing:-4.124516px;}
.wse8{word-spacing:-3.712090px;}
.ws1f{word-spacing:-3.526760px;}
.ws49{word-spacing:-3.466985px;}
.ws2e{word-spacing:-3.347434px;}
.wsa1{word-spacing:-3.287658px;}
.ws5{word-spacing:-3.174106px;}
.ws4e{word-spacing:-3.108331px;}
.wsbf{word-spacing:-2.905114px;}
.wsac{word-spacing:-2.869229px;}
.ws45{word-spacing:-2.743752px;}
.ws43{word-spacing:-2.689920px;}
.wsbd{word-spacing:-2.151922px;}
.ws99{word-spacing:-1.853044px;}
.wsf3{word-spacing:-0.268992px;}
.ws69{word-spacing:-0.059776px;}
.ws46{word-spacing:-0.053798px;}
.ws96{word-spacing:-0.041843px;}
.ws24{word-spacing:0.000000px;}
.wsed{word-spacing:0.645581px;}
.ws27{word-spacing:0.717307px;}
.ws6{word-spacing:1.990541px;}
.wsf0{word-spacing:2.205734px;}
.ws6c{word-spacing:3.180044px;}
.wsba{word-spacing:6.455808px;}
.ws83{word-spacing:8.009930px;}
.ws6b{word-spacing:9.922750px;}
.ws42{word-spacing:10.544486px;}
.ws95{word-spacing:16.198288px;}
.ws93{word-spacing:16.235250px;}
.wsda{word-spacing:16.677504px;}
.wsde{word-spacing:16.731302px;}
.wsd9{word-spacing:18.399050px;}
.ws92{word-spacing:19.081720px;}
.ws98{word-spacing:19.690214px;}
.ws74{word-spacing:19.785703px;}
.wsb6{word-spacing:20.927597px;}
.ws72{word-spacing:21.698534px;}
.ws47{word-spacing:22.649136px;}
.ws67{word-spacing:22.834279px;}
.ws7d{word-spacing:22.894055px;}
.ws81{word-spacing:24.209118px;}
.wsb9{word-spacing:24.585869px;}
.wsbe{word-spacing:24.693446px;}
.ws85{word-spacing:27.616327px;}
.ws11{word-spacing:27.759974px;}
.ws6e{word-spacing:28.453136px;}
.ws44{word-spacing:29.266337px;}
.ws77{word-spacing:29.290039px;}
.ws4{word-spacing:29.858110px;}
.ws41{word-spacing:40.081441px;}
.wsdd{word-spacing:44.383680px;}
.wsdb{word-spacing:55.143360px;}
.wse2{word-spacing:59.669141px;}
.wsdc{word-spacing:61.760563px;}
.ws3c{word-spacing:68.682164px;}
.wsc6{word-spacing:78.438067px;}
.ws9a{word-spacing:79.995188px;}
.wsce{word-spacing:82.795723px;}
.wsbb{word-spacing:89.251543px;}
.ws3f{word-spacing:106.064896px;}
.wsca{word-spacing:106.090445px;}
.wsc1{word-spacing:109.156954px;}
.wsb8{word-spacing:122.714150px;}
.ws40{word-spacing:133.082136px;}
.ws97{word-spacing:301.920577px;}
.wsc0{word-spacing:316.926374px;}
.ws9c{word-spacing:485.970030px;}
.ws9f{word-spacing:498.924359px;}
.wsdf{word-spacing:788.254162px;}
.ws9d{word-spacing:864.320263px;}
._39{margin-left:-583.461398px;}
._3c{margin-left:-578.499473px;}
._33{margin-left:-486.532697px;}
._38{margin-left:-480.983445px;}
._27{margin-left:-413.099241px;}
._20{margin-left:-369.933640px;}
._1d{margin-left:-360.839257px;}
._3a{margin-left:-231.170767px;}
._3d{margin-left:-221.977433px;}
._3e{margin-left:-158.043809px;}
._3b{margin-left:-149.030795px;}
._e{margin-left:-145.601762px;}
._2b{margin-left:-143.471381px;}
._36{margin-left:-140.893688px;}
._2a{margin-left:-139.753011px;}
._35{margin-left:-135.344436px;}
._2f{margin-left:-133.092116px;}
._23{margin-left:-121.359708px;}
._1f{margin-left:-117.101626px;}
._7b{margin-left:-58.061366px;}
._5{margin-left:-31.441931px;}
._8{margin-left:-29.164721px;}
._4{margin-left:-27.219398px;}
._7d{margin-left:-25.811046px;}
._16{margin-left:-16.016017px;}
._1b{margin-left:-12.676419px;}
._0{margin-left:-8.091257px;}
._c{margin-left:-6.742733px;}
._d{margin-left:-5.226851px;}
._9{margin-left:-4.026474px;}
._1{margin-left:-2.668393px;}
._6{margin-left:-1.560154px;}
._3{width:1.673717px;}
._7{width:3.066509px;}
._2{width:5.336786px;}
._24{width:6.630470px;}
._17{width:10.184598px;}
._42{width:16.731302px;}
._31{width:18.345259px;}
._68{width:21.097379px;}
._63{width:22.989567px;}
._14{width:24.854839px;}
._1a{width:26.656341px;}
._18{width:28.013248px;}
._15{width:30.007357px;}
._19{width:31.681067px;}
._44{width:33.159843px;}
._54{width:35.076557px;}
._21{width:36.394912px;}
._25{width:38.965634px;}
._1c{width:42.047731px;}
._26{width:45.368529px;}
._28{width:47.631342px;}
._2d{width:48.726312px;}
._52{width:49.871117px;}
._13{width:51.787830px;}
._48{width:54.356413px;}
._4e{width:56.253098px;}
._2c{width:58.625781px;}
._4f{width:67.166708px;}
._61{width:73.219622px;}
._4d{width:75.855744px;}
._7c{width:77.155558px;}
._b{width:80.697600px;}
._70{width:81.875198px;}
._32{width:87.418691px;}
._6b{width:89.574336px;}
._76{width:96.568128px;}
._59{width:99.345616px;}
._62{width:100.979597px;}
._5b{width:103.938509px;}
._5a{width:105.225956px;}
._5c{width:107.038787px;}
._6e{width:110.448115px;}
._5d{width:111.625714px;}
._a{width:115.343770px;}
._f{width:117.205078px;}
._10{width:119.251762px;}
._4b{width:122.660352px;}
._72{width:126.581669px;}
._5e{width:134.691165px;}
._40{width:136.217549px;}
._79{width:139.015066px;}
._60{width:141.113203px;}
._74{width:143.426534px;}
._11{width:146.940948px;}
._12{width:149.412384px;}
._4c{width:150.474125px;}
._66{width:158.167296px;}
._6c{width:164.790466px;}
._5f{width:168.281395px;}
._75{width:171.186509px;}
._6f{width:174.145421px;}
._46{width:181.031616px;}
._65{width:185.544715px;}
._47{width:188.718821px;}
._4a{width:190.553933px;}
._6d{width:195.234394px;}
._45{width:196.417958px;}
._3f{width:208.576397px;}
._73{width:211.320115px;}
._67{width:220.842432px;}
._78{width:228.374208px;}
._43{width:230.310950px;}
._41{width:233.377459px;}
._51{width:235.039243px;}
._64{width:236.067379px;}
._71{width:238.488307px;}
._49{width:245.374502px;}
._6a{width:251.077133px;}
._55{width:258.286118px;}
._53{width:270.283162px;}
._58{width:277.922534px;}
._7a{width:278.998502px;}
._30{width:284.964556px;}
._77{width:306.274291px;}
._50{width:313.160486px;}
._57{width:336.670387px;}
._69{width:371.370355px;}
._56{width:422.048448px;}
._22{width:443.343507px;}
._1e{width:450.635473px;}
._29{width:506.099112px;}
._2e{width:514.745236px;}
._34{width:666.125564px;}
._37{width:881.754040px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:25.907400px;}
.fs6{font-size:26.023200px;}
.fsb{font-size:26.878201px;}
.fs7{font-size:26.951401px;}
.fsd{font-size:31.284000px;}
.fse{font-size:31.284001px;}
.fs9{font-size:31.885800px;}
.fs8{font-size:32.028600px;}
.fs4{font-size:35.865600px;}
.fsc{font-size:38.503200px;}
.fs5{font-size:41.842800px;}
.fs10{font-size:43.910400px;}
.fs17{font-size:48.709200px;}
.fs15{font-size:48.718800px;}
.fs13{font-size:48.958800px;}
.fs2{font-size:53.798400px;}
.fs11{font-size:54.043200px;}
.fsf{font-size:56.295000px;}
.fs1{font-size:59.775600px;}
.fs14{font-size:61.842600px;}
.fs12{font-size:63.131400px;}
.fs16{font-size:66.814200px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y29{bottom:45.035775px;}
.y28{bottom:45.349590px;}
.y27{bottom:56.992350px;}
.y4f{bottom:89.869335px;}
.y10c{bottom:89.869530px;}
.ydf{bottom:89.869620px;}
.y93{bottom:89.870520px;}
.y15d{bottom:89.872140px;}
.y26{bottom:89.872290px;}
.ybc{bottom:89.880015px;}
.y17f{bottom:92.484450px;}
.y131{bottom:95.583150px;}
.y4e{bottom:107.802015px;}
.y10b{bottom:107.802210px;}
.yde{bottom:107.802300px;}
.y92{bottom:107.803200px;}
.ybb{bottom:107.812695px;}
.y15c{bottom:112.021050px;}
.y25{bottom:112.021200px;}
.y130{bottom:114.260280px;}
.y179{bottom:125.342850px;}
.y10a{bottom:125.734890px;}
.y91{bottom:125.735880px;}
.yba{bottom:125.745375px;}
.y12f{bottom:132.192960px;}
.y24{bottom:134.851770px;}
.ydd{bottom:136.612080px;}
.y4d{bottom:139.214100px;}
.y15b{bottom:139.608990px;}
.y109{bottom:143.667570px;}
.y90{bottom:143.668560px;}
.yb9{bottom:143.678055px;}
.y12e{bottom:150.125640px;}
.y23{bottom:152.784450px;}
.ydc{bottom:153.047490px;}
.y15a{bottom:157.541670px;}
.y108{bottom:161.600250px;}
.y8f{bottom:161.601240px;}
.yb8{bottom:161.610735px;}
.y17a{bottom:163.068120px;}
.y12d{bottom:168.058320px;}
.ydb{bottom:169.482900px;}
.y22{bottom:170.717130px;}
.y159{bottom:175.475460px;}
.y4c{bottom:176.603550px;}
.y8e{bottom:179.533920px;}
.yb7{bottom:179.543415px;}
.yda{bottom:185.918310px;}
.y12c{bottom:185.991000px;}
.y21{bottom:188.649810px;}
.y158{bottom:193.408140px;}
.y1a5{bottom:194.771970px;}
.y107{bottom:195.666450px;}
.yb6{bottom:197.117445px;}
.y8d{bottom:197.466600px;}
.yd9{bottom:202.353720px;}
.y17b{bottom:203.983860px;}
.y20{bottom:206.582490px;}
.y1a4{bottom:211.207380px;}
.y157{bottom:211.340820px;}
.yb5{bottom:215.050125px;}
.y8c{bottom:215.399280px;}
.yd8{bottom:218.789130px;}
.y1f{bottom:224.515170px;}
.y4b{bottom:225.949230px;}
.y1a3{bottom:227.642790px;}
.y156{bottom:229.273500px;}
.yb4{bottom:232.982805px;}
.y8b{bottom:233.331960px;}
.yd7{bottom:235.224540px;}
.y12b{bottom:239.399550px;}
.y106{bottom:241.688850px;}
.y1e{bottom:242.447850px;}
.y17c{bottom:243.840150px;}
.y4a{bottom:243.881910px;}
.y1a2{bottom:244.078200px;}
.y155{bottom:247.206180px;}
.yb3{bottom:250.915485px;}
.y8a{bottom:251.264640px;}
.yd6{bottom:251.659950px;}
.y12a{bottom:256.479585px;}
.y105{bottom:259.621530px;}
.y1d{bottom:260.380530px;}
.y1a1{bottom:260.513610px;}
.y49{bottom:261.814590px;}
.y154{bottom:265.138860px;}
.yb2{bottom:268.489500px;}
.y89{bottom:269.197320px;}
.y129{bottom:272.914995px;}
.y1a0{bottom:276.949020px;}
.y104{bottom:277.554210px;}
.y1c{bottom:278.313210px;}
.yd5{bottom:278.908845px;}
.y48{bottom:279.747270px;}
.y153{bottom:283.071540px;}
.y17d{bottom:284.755890px;}
.yb1{bottom:286.422180px;}
.y88{bottom:287.130000px;}
.y128{bottom:289.350405px;}
.y19f{bottom:293.384430px;}
.y103{bottom:295.486890px;}
.y1b{bottom:296.245890px;}
.y47{bottom:297.679950px;}
.y152{bottom:301.004220px;}
.yb0{bottom:304.354860px;}
.y87{bottom:305.062680px;}
.y127{bottom:305.785815px;}
.yd4{bottom:306.157725px;}
.y19e{bottom:309.819840px;}
.y102{bottom:313.419570px;}
.y1a{bottom:314.178570px;}
.y46{bottom:315.612630px;}
.y151{bottom:318.936900px;}
.y126{bottom:322.221225px;}
.yaf{bottom:322.287540px;}
.yd3{bottom:322.593150px;}
.y86{bottom:322.995360px;}
.y17e{bottom:325.671150px;}
.y19d{bottom:326.255250px;}
.y101{bottom:331.352250px;}
.y19{bottom:332.111250px;}
.y45{bottom:333.545310px;}
.y150{bottom:336.869580px;}
.y125{bottom:338.656635px;}
.yd2{bottom:339.028560px;}
.yae{bottom:340.220220px;}
.y85{bottom:340.928040px;}
.y19c{bottom:342.690660px;}
.y100{bottom:349.284930px;}
.y18{bottom:350.043930px;}
.y44{bottom:351.477990px;}
.y14f{bottom:354.802260px;}
.y124{bottom:355.092045px;}
.yd1{bottom:355.463970px;}
.yad{bottom:358.152900px;}
.y84{bottom:358.860720px;}
.y19b{bottom:359.126070px;}
.yff{bottom:367.217610px;}
.y17{bottom:367.976610px;}
.y43{bottom:369.410670px;}
.y123{bottom:371.527455px;}
.yd0{bottom:371.899380px;}
.y14e{bottom:372.734940px;}
.y19a{bottom:375.561480px;}
.yac{bottom:375.726930px;}
.y83{bottom:376.793400px;}
.yfe{bottom:385.150290px;}
.y16{bottom:385.909290px;}
.y42{bottom:387.343350px;}
.y122{bottom:387.962865px;}
.ycf{bottom:388.334790px;}
.y14d{bottom:390.667620px;}
.y199{bottom:391.996905px;}
.yab{bottom:393.659610px;}
.y82{bottom:394.726080px;}
.y178{bottom:397.904190px;}
.yfd{bottom:403.082970px;}
.y15{bottom:403.841970px;}
.y121{bottom:404.398290px;}
.yce{bottom:404.770200px;}
.y41{bottom:405.276030px;}
.y198{bottom:408.432315px;}
.y14c{bottom:408.600300px;}
.yaa{bottom:411.592290px;}
.y81{bottom:412.658760px;}
.y177{bottom:415.836870px;}
.y120{bottom:420.833700px;}
.yfc{bottom:421.015650px;}
.y14{bottom:421.774650px;}
.y40{bottom:423.208710px;}
.y197{bottom:424.867725px;}
.y14b{bottom:426.532980px;}
.ya9{bottom:429.524970px;}
.y80{bottom:430.591440px;}
.ycd{bottom:432.019095px;}
.y176{bottom:433.769550px;}
.y11f{bottom:437.269110px;}
.yfb{bottom:438.948330px;}
.y3f{bottom:441.141390px;}
.y196{bottom:441.303135px;}
.y14a{bottom:444.465660px;}
.ya8{bottom:447.099270px;}
.y7f{bottom:448.524120px;}
.y175{bottom:451.702230px;}
.y11e{bottom:453.704520px;}
.ycc{bottom:456.847050px;}
.yfa{bottom:456.881010px;}
.y195{bottom:457.738545px;}
.y3e{bottom:459.074070px;}
.y13{bottom:461.226600px;}
.y149{bottom:462.398340px;}
.ya7{bottom:465.031770px;}
.y7e{bottom:466.456800px;}
.y174{bottom:469.634910px;}
.y11d{bottom:470.139930px;}
.y194{bottom:474.173955px;}
.yf9{bottom:474.813690px;}
.y3d{bottom:477.006750px;}
.y148{bottom:480.331020px;}
.ya6{bottom:482.954115px;}
.y11c{bottom:486.575340px;}
.ycb{bottom:486.794700px;}
.y173{bottom:487.567590px;}
.y193{bottom:490.609365px;}
.yf8{bottom:492.746370px;}
.y3c{bottom:494.939430px;}
.y147{bottom:498.263700px;}
.y11b{bottom:503.010750px;}
.y172{bottom:505.500270px;}
.y192{bottom:507.044775px;}
.yf7{bottom:510.679050px;}
.ya5{bottom:511.422255px;}
.y3b{bottom:512.872110px;}
.y12{bottom:514.700145px;}
.yca{bottom:518.251620px;}
.y11a{bottom:520.049610px;}
.y171{bottom:523.432950px;}
.y191{bottom:523.480185px;}
.yf6{bottom:528.611730px;}
.y3a{bottom:530.804790px;}
.y11{bottom:531.135555px;}
.y7d{bottom:531.859890px;}
.yc9{bottom:536.184300px;}
.y119{bottom:536.485020px;}
.y190{bottom:539.915595px;}
.yf5{bottom:546.544410px;}
.y10{bottom:547.570980px;}
.y7c{bottom:548.295300px;}
.y39{bottom:548.737470px;}
.yc8{bottom:554.116980px;}
.ya4{bottom:554.834280px;}
.y146{bottom:556.327500px;}
.y18f{bottom:556.351005px;}
.yf{bottom:564.006390px;}
.y118{bottom:564.433290px;}
.yf4{bottom:564.477090px;}
.y38{bottom:566.670150px;}
.yc7{bottom:572.049660px;}
.ya3{bottom:572.766960px;}
.y18e{bottom:572.786415px;}
.y145{bottom:573.407535px;}
.y170{bottom:576.128250px;}
.ye{bottom:580.441800px;}
.y117{bottom:580.868700px;}
.yf3{bottom:582.409770px;}
.y18d{bottom:589.221840px;}
.y144{bottom:589.842945px;}
.yc6{bottom:589.982340px;}
.ya2{bottom:590.699640px;}
.y6e{bottom:591.421200px;}
.y16f{bottom:593.208285px;}
.y79{bottom:594.557250px;}
.yd{bottom:596.877210px;}
.yf2{bottom:600.342450px;}
.y37{bottom:604.059600px;}
.y18c{bottom:605.657250px;}
.y143{bottom:606.278355px;}
.yc5{bottom:607.915020px;}
.y78{bottom:608.416050px;}
.ya1{bottom:608.632320px;}
.y16e{bottom:609.643695px;}
.yc{bottom:613.312620px;}
.y6f{bottom:619.866000px;}
.y18b{bottom:622.092660px;}
.y142{bottom:622.713765px;}
.yc4{bottom:625.847700px;}
.y16d{bottom:626.079105px;}
.y116{bottom:626.564700px;}
.ya0{bottom:626.565000px;}
.yb{bottom:629.748030px;}
.y70{bottom:633.052200px;}
.y18a{bottom:638.528070px;}
.y141{bottom:639.149175px;}
.y16c{bottom:642.514515px;}
.yc3{bottom:643.780380px;}
.y115{bottom:644.497380px;}
.y9f{bottom:644.497680px;}
.ya{bottom:646.183440px;}
.y71{bottom:646.340085px;}
.yf1{bottom:650.117850px;}
.y36{bottom:653.389305px;}
.y7a{bottom:653.986650px;}
.y189{bottom:654.963480px;}
.y140{bottom:655.584585px;}
.y16b{bottom:658.949925px;}
.y72{bottom:659.526285px;}
.yc2{bottom:661.713060px;}
.y114{bottom:662.430060px;}
.y9e{bottom:662.430360px;}
.y9{bottom:662.618850px;}
.y35{bottom:671.321985px;}
.y188{bottom:671.398890px;}
.y13f{bottom:672.019995px;}
.y73{bottom:672.814170px;}
.y16a{bottom:675.385335px;}
.y8{bottom:679.054260px;}
.yc1{bottom:679.645740px;}
.y113{bottom:680.362740px;}
.y9d{bottom:680.363040px;}
.yf0{bottom:682.287000px;}
.y74{bottom:686.672985px;}
.y187{bottom:687.834300px;}
.y13e{bottom:688.455405px;}
.y34{bottom:689.254665px;}
.y169{bottom:691.820745px;}
.y7{bottom:695.489670px;}
.yee{bottom:696.695265px;}
.yc0{bottom:697.578420px;}
.y112{bottom:698.295420px;}
.y9c{bottom:698.295720px;}
.y75{bottom:699.859185px;}
.y13d{bottom:704.890815px;}
.y33{bottom:707.187345px;}
.y168{bottom:708.256155px;}
.y6{bottom:711.925080px;}
.y76{bottom:713.147070px;}
.ybf{bottom:715.511100px;}
.y111{bottom:716.228100px;}
.y9b{bottom:716.228400px;}
.yef{bottom:720.085500px;}
.yed{bottom:721.249530px;}
.y13c{bottom:721.326240px;}
.y186{bottom:722.205450px;}
.y167{bottom:724.691565px;}
.y32{bottom:725.120025px;}
.y77{bottom:726.333270px;}
.ybe{bottom:733.443780px;}
.y110{bottom:734.160780px;}
.y9a{bottom:734.161080px;}
.y13b{bottom:737.761650px;}
.yec{bottom:738.459450px;}
.y166{bottom:741.126990px;}
.yeb{bottom:744.639750px;}
.y7b{bottom:745.579500px;}
.y10f{bottom:752.093460px;}
.y99{bottom:752.093760px;}
.y13a{bottom:754.197060px;}
.y31{bottom:755.769960px;}
.y165{bottom:757.562400px;}
.ybd{bottom:762.195840px;}
.y10e{bottom:770.026140px;}
.y185{bottom:770.026350px;}
.y98{bottom:770.026440px;}
.y139{bottom:770.632470px;}
.y5f{bottom:771.085350px;}
.y5e{bottom:772.088400px;}
.y5c{bottom:773.628480px;}
.y164{bottom:773.997810px;}
.y6c{bottom:774.051930px;}
.y30{bottom:774.091185px;}
.y5{bottom:779.415180px;}
.y5b{bottom:785.078685px;}
.y6b{bottom:785.528910px;}
.yea{bottom:785.570850px;}
.y138{bottom:787.067880px;}
.y10d{bottom:787.958820px;}
.y184{bottom:787.959030px;}
.y97{bottom:787.959120px;}
.y163{bottom:790.433220px;}
.y2f{bottom:792.023865px;}
.y50{bottom:794.629200px;}
.y60{bottom:794.959200px;}
.y4{bottom:795.850590px;}
.y137{bottom:803.503290px;}
.y51{bottom:804.635115px;}
.y61{bottom:804.920595px;}
.y183{bottom:805.891710px;}
.y96{bottom:805.891800px;}
.y162{bottom:806.868630px;}
.y2e{bottom:810.345075px;}
.y3{bottom:812.286000px;}
.y52{bottom:814.641045px;}
.y62{bottom:814.881990px;}
.ye4{bottom:817.602450px;}
.ye9{bottom:817.690050px;}
.y136{bottom:819.938700px;}
.y161{bottom:823.304040px;}
.y182{bottom:823.824390px;}
.y95{bottom:823.824480px;}
.y63{bottom:824.843385px;}
.y53{bottom:825.128385px;}
.ye8{bottom:825.301800px;}
.y2d{bottom:828.666300px;}
.y5d{bottom:829.577850px;}
.y6d{bottom:829.753200px;}
.ye3{bottom:833.301300px;}
.y64{bottom:834.804780px;}
.y54{bottom:835.134315px;}
.y135{bottom:836.980500px;}
.y160{bottom:839.739450px;}
.y181{bottom:841.757070px;}
.y94{bottom:841.757160px;}
.y2{bottom:843.603690px;}
.y65{bottom:844.766175px;}
.y55{bottom:845.140230px;}
.ye6{bottom:848.029050px;}
.y134{bottom:853.415910px;}
.y56{bottom:855.146145px;}
.y66{bottom:855.291060px;}
.y15f{bottom:856.778310px;}
.y180{bottom:859.689750px;}
.y2c{bottom:859.689840px;}
.ye2{bottom:864.241050px;}
.y57{bottom:865.152075px;}
.y67{bottom:865.252455px;}
.ye7{bottom:870.756450px;}
.y15e{bottom:873.213720px;}
.ye5{bottom:874.157700px;}
.y68{bottom:875.213850px;}
.y58{bottom:875.724000px;}
.y2b{bottom:877.622520px;}
.y133{bottom:884.726580px;}
.y69{bottom:885.175245px;}
.y59{bottom:885.729915px;}
.ye1{bottom:894.235200px;}
.y6a{bottom:895.136640px;}
.y1{bottom:895.555200px;}
.y5a{bottom:895.735845px;}
.ye0{bottom:897.207600px;}
.y132{bottom:901.161990px;}
.y2a{bottom:934.409400px;}
.h6{height:17.645875px;}
.h25{height:23.850624px;}
.he{height:26.059201px;}
.hf{height:26.173052px;}
.h9{height:26.175680px;}
.ha{height:26.290039px;}
.h10{height:27.153808px;}
.hb{height:27.227758px;}
.h7{height:31.382100px;}
.h12{height:31.467305px;}
.h13{height:31.604783px;}
.h14{height:31.604785px;}
.hd{height:32.072631px;}
.hc{height:32.216268px;}
.h19{height:37.336090px;}
.h24{height:37.658880px;}
.h18{height:38.519654px;}
.h11{height:38.728805px;}
.h4{height:40.348800px;}
.h8{height:41.842920px;}
.h1b{height:44.210569px;}
.h3{height:44.831700px;}
.h16{height:44.832420px;}
.h15{height:44.873040px;}
.h17{height:44.873700px;}
.h27{height:48.994605px;}
.h20{height:49.051839px;}
.h1e{height:49.293479px;}
.h5{height:50.211840px;}
.h26{height:53.070060px;}
.h23{height:53.072700px;}
.h21{height:53.728839px;}
.h28{height:53.959800px;}
.h1c{height:54.412636px;}
.h1a{height:56.679829px;}
.h2{height:61.303727px;}
.h1f{height:62.265352px;}
.h1d{height:63.562962px;}
.h22{height:67.270938px;}
.h0{height:999.378000px;}
.h1{height:999.750000px;}
.w0{width:646.311600px;}
.w1{width:646.500000px;}
.x0{left:0.000000px;}
.x7{left:70.761000px;}
.x1{left:74.942100px;}
.x3e{left:77.672550px;}
.xa{left:80.101095px;}
.x35{left:82.932885px;}
.x9{left:85.705050px;}
.x10{left:87.261150px;}
.x8{left:93.176850px;}
.x22{left:94.361250px;}
.xb{left:96.165780px;}
.xd{left:99.406500px;}
.xe{left:106.622730px;}
.x2c{left:108.754500px;}
.x6{left:113.273820px;}
.x11{left:116.738250px;}
.x1f{left:127.244835px;}
.x2{left:135.273240px;}
.x3{left:137.362050px;}
.x24{left:143.199900px;}
.x23{left:144.279300px;}
.x20{left:155.488995px;}
.x30{left:157.073850px;}
.x2e{left:160.748550px;}
.x1e{left:163.502850px;}
.x37{left:165.669195px;}
.x4{left:175.666515px;}
.x34{left:181.491555px;}
.x21{left:183.733155px;}
.xf{left:192.698775px;}
.x1c{left:198.792450px;}
.x36{left:205.049625px;}
.x19{left:206.243250px;}
.x3a{left:208.113315px;}
.x5{left:210.245430px;}
.x39{left:213.672690px;}
.x1a{left:214.714575px;}
.x33{left:216.433620px;}
.x3b{left:226.400715px;}
.x18{left:233.388150px;}
.xc{left:254.503800px;}
.x38{left:257.562450px;}
.x25{left:274.875450px;}
.x3d{left:277.905450px;}
.x32{left:280.510800px;}
.x1d{left:291.047100px;}
.x3c{left:294.137250px;}
.x2f{left:312.413805px;}
.x2d{left:313.586250px;}
.x1b{left:319.350420px;}
.x26{left:327.761550px;}
.x27{left:332.842350px;}
.x17{left:347.445000px;}
.x14{left:353.851125px;}
.x13{left:359.558700px;}
.x15{left:366.839475px;}
.x12{left:376.678200px;}
.x28{left:381.781350px;}
.x29{left:382.865850px;}
.x16{left:453.680115px;}
.x2a{left:513.686400px;}
.x31{left:563.638650px;}
.x2b{left:566.692350px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.932853pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.157333pt;}
.v4{vertical-align:7.969600pt;}
.v7{vertical-align:12.098667pt;}
.v6{vertical-align:19.280533pt;}
.v1{vertical-align:27.765867pt;}
.ls2c{letter-spacing:-1.971408pt;}
.ls20{letter-spacing:-1.740803pt;}
.ls24{letter-spacing:-1.533937pt;}
.ls2f{letter-spacing:-1.418717pt;}
.ls27{letter-spacing:-1.053850pt;}
.ls2b{letter-spacing:-0.443893pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000002pt;}
.lsf{letter-spacing:0.008085pt;}
.ls23{letter-spacing:0.163932pt;}
.ls1d{letter-spacing:0.215723pt;}
.ls1f{letter-spacing:0.409131pt;}
.ls26{letter-spacing:0.644019pt;}
.ls2a{letter-spacing:1.013991pt;}
.ls21{letter-spacing:1.619806pt;}
.ls22{letter-spacing:2.099893pt;}
.ls28{letter-spacing:2.310663pt;}
.ls2d{letter-spacing:2.428356pt;}
.ls10{letter-spacing:2.646756pt;}
.ls8{letter-spacing:2.663919pt;}
.ls25{letter-spacing:2.790750pt;}
.ls2e{letter-spacing:2.976695pt;}
.ls29{letter-spacing:3.407532pt;}
.ls1c{letter-spacing:5.791591pt;}
.lse{letter-spacing:8.857416pt;}
.lsc{letter-spacing:11.795718pt;}
.ls1a{letter-spacing:11.795726pt;}
.ls1b{letter-spacing:11.795733pt;}
.ls1e{letter-spacing:11.806345pt;}
.ls2{letter-spacing:14.319530pt;}
.lsb{letter-spacing:14.480575pt;}
.lsd{letter-spacing:14.481108pt;}
.ls17{letter-spacing:14.760588pt;}
.lsa{letter-spacing:14.771185pt;}
.ls9{letter-spacing:14.771200pt;}
.ls19{letter-spacing:14.771238pt;}
.ls7{letter-spacing:17.422852pt;}
.ls15{letter-spacing:17.693547pt;}
.ls14{letter-spacing:17.693600pt;}
.ls1{letter-spacing:19.035806pt;}
.ls34{letter-spacing:19.043127pt;}
.ls3c{letter-spacing:20.517908pt;}
.ls13{letter-spacing:21.359818pt;}
.ls12{letter-spacing:21.412990pt;}
.ls11{letter-spacing:21.784870pt;}
.ls35{letter-spacing:21.997549pt;}
.ls36{letter-spacing:21.997579pt;}
.ls16{letter-spacing:22.581905pt;}
.ls18{letter-spacing:23.750827pt;}
.ls6{letter-spacing:26.254319pt;}
.ls4{letter-spacing:26.566907pt;}
.ls39{letter-spacing:49.159735pt;}
.ls37{letter-spacing:49.159789pt;}
.ls3d{letter-spacing:51.610103pt;}
.ls33{letter-spacing:67.387844pt;}
.ls31{letter-spacing:72.320352pt;}
.ls32{letter-spacing:73.026233pt;}
.ls3b{letter-spacing:73.691842pt;}
.ls3a{letter-spacing:73.691895pt;}
.ls38{letter-spacing:73.739682pt;}
.ls30{letter-spacing:77.954411pt;}
.ls5{letter-spacing:129.486817pt;}
.ws3e{word-spacing:-135.917439pt;}
.ws9b{word-spacing:-88.780811pt;}
.ws9e{word-spacing:-83.852633pt;}
.wse1{word-spacing:-52.735827pt;}
.ws6a{word-spacing:-42.815270pt;}
.ws94{word-spacing:-39.861027pt;}
.ws84{word-spacing:-28.134353pt;}
.ws79{word-spacing:-28.054682pt;}
.ws0{word-spacing:-27.774243pt;}
.ws3{word-spacing:-25.105920pt;}
.ws22{word-spacing:-24.579891pt;}
.ws2c{word-spacing:-23.145267pt;}
.wsb1{word-spacing:-16.258963pt;}
.wsa9{word-spacing:-15.993294pt;}
.wscf{word-spacing:-15.993278pt;}
.wsd0{word-spacing:-15.940160pt;}
.ws4c{word-spacing:-15.887026pt;}
.wsd5{word-spacing:-15.727625pt;}
.ws65{word-spacing:-15.408821pt;}
.ws66{word-spacing:-15.355687pt;}
.wsbc{word-spacing:-15.302554pt;}
.ws31{word-spacing:-14.824349pt;}
.wsa8{word-spacing:-14.664947pt;}
.ws64{word-spacing:-14.611813pt;}
.ws15{word-spacing:-14.239876pt;}
.wsd4{word-spacing:-14.080475pt;}
.wsd3{word-spacing:-13.974207pt;}
.ws17{word-spacing:-13.867939pt;}
.ws5a{word-spacing:-13.814805pt;}
.ws73{word-spacing:-13.814795pt;}
.ws71{word-spacing:-13.814768pt;}
.ws75{word-spacing:-13.761671pt;}
.ws60{word-spacing:-13.496002pt;}
.wsad{word-spacing:-13.283467pt;}
.ws2b{word-spacing:-13.230333pt;}
.ws1c{word-spacing:-13.177199pt;}
.ws86{word-spacing:-13.124065pt;}
.ws58{word-spacing:-13.070931pt;}
.ws4d{word-spacing:-12.964663pt;}
.wsa2{word-spacing:-12.805262pt;}
.wsa7{word-spacing:-12.698994pt;}
.wsaa{word-spacing:-12.539593pt;}
.ws87{word-spacing:-12.486459pt;}
.ws2d{word-spacing:-12.433325pt;}
.ws14{word-spacing:-12.327057pt;}
.ws52{word-spacing:-12.273923pt;}
.wsaf{word-spacing:-12.220789pt;}
.ws39{word-spacing:-12.167655pt;}
.ws7{word-spacing:-12.146483pt;}
.ws59{word-spacing:-12.114522pt;}
.ws88{word-spacing:-12.061388pt;}
.ws8d{word-spacing:-12.008254pt;}
.ws54{word-spacing:-11.901986pt;}
.wsd7{word-spacing:-11.795718pt;}
.ws8b{word-spacing:-11.742585pt;}
.wsb3{word-spacing:-11.689451pt;}
.wsb2{word-spacing:-11.636317pt;}
.ws56{word-spacing:-11.583183pt;}
.ws7a{word-spacing:-11.530049pt;}
.ws3a{word-spacing:-11.423781pt;}
.ws1d{word-spacing:-11.370647pt;}
.ws16{word-spacing:-11.317514pt;}
.ws63{word-spacing:-11.211246pt;}
.ws19{word-spacing:-11.158112pt;}
.ws3b{word-spacing:-11.104978pt;}
.wsb{word-spacing:-11.046605pt;}
.ws53{word-spacing:-10.839309pt;}
.wsa0{word-spacing:-10.826400pt;}
.ws32{word-spacing:-10.786175pt;}
.ws28{word-spacing:-10.733041pt;}
.ws55{word-spacing:-10.679907pt;}
.ws8a{word-spacing:-10.626773pt;}
.ws10{word-spacing:-10.424934pt;}
.ws18{word-spacing:-10.414238pt;}
.ws1{word-spacing:-10.361104pt;}
.ws21{word-spacing:-10.233651pt;}
.ws62{word-spacing:-10.201702pt;}
.wsb4{word-spacing:-10.095435pt;}
.wsa5{word-spacing:-10.042301pt;}
.ws9{word-spacing:-9.994547pt;}
.ws8f{word-spacing:-9.936033pt;}
.ws3d{word-spacing:-9.882899pt;}
.ws5f{word-spacing:-9.829765pt;}
.ws34{word-spacing:-9.776631pt;}
.ws8{word-spacing:-9.755443pt;}
.wsd6{word-spacing:-9.723498pt;}
.wscb{word-spacing:-9.707622pt;}
.ws50{word-spacing:-9.564096pt;}
.wsd2{word-spacing:-9.457828pt;}
.wsd1{word-spacing:-9.298427pt;}
.ws7f{word-spacing:-9.245293pt;}
.wsa{word-spacing:-9.229414pt;}
.wsea{word-spacing:-9.085952pt;}
.wse0{word-spacing:-8.979623pt;}
.ws20{word-spacing:-8.926490pt;}
.wsec{word-spacing:-8.894669pt;}
.ws7c{word-spacing:-8.873378pt;}
.ws7e{word-spacing:-8.873356pt;}
.wsf1{word-spacing:-8.751206pt;}
.ws26{word-spacing:-8.713954pt;}
.wsae{word-spacing:-8.660820pt;}
.wsf{word-spacing:-8.607744pt;}
.ws29{word-spacing:-8.607686pt;}
.ws5d{word-spacing:-8.554553pt;}
.wsef{word-spacing:-8.464282pt;}
.ws8c{word-spacing:-8.448285pt;}
.wse9{word-spacing:-8.416461pt;}
.ws5b{word-spacing:-8.395151pt;}
.ws25{word-spacing:-8.342017pt;}
.wsd{word-spacing:-8.320819pt;}
.ws57{word-spacing:-8.288883pt;}
.wseb{word-spacing:-8.272998pt;}
.ws48{word-spacing:-8.225197pt;}
.ws2{word-spacing:-8.177357pt;}
.ws1b{word-spacing:-7.916946pt;}
.ws1e{word-spacing:-7.863812pt;}
.wse4{word-spacing:-7.810678pt;}
.ws7b{word-spacing:-7.757545pt;}
.ws35{word-spacing:-7.704411pt;}
.ws1a{word-spacing:-7.651277pt;}
.ws80{word-spacing:-7.545009pt;}
.wse6{word-spacing:-7.460045pt;}
.ws51{word-spacing:-7.385607pt;}
.ws78{word-spacing:-7.332474pt;}
.ws30{word-spacing:-7.279340pt;}
.wse7{word-spacing:-7.268762pt;}
.ws38{word-spacing:-7.173072pt;}
.ws2f{word-spacing:-7.013670pt;}
.wse5{word-spacing:-6.960537pt;}
.ws2a{word-spacing:-6.907403pt;}
.ws90{word-spacing:-6.854269pt;}
.ws23{word-spacing:-6.843622pt;}
.wsee{word-spacing:-6.838374pt;}
.ws5e{word-spacing:-6.801135pt;}
.wse{word-spacing:-6.790554pt;}
.wsf5{word-spacing:-6.694912pt;}
.ws6d{word-spacing:-6.694871pt;}
.ws4b{word-spacing:-6.694867pt;}
.ws6f{word-spacing:-6.641733pt;}
.wsb0{word-spacing:-6.588599pt;}
.wsa4{word-spacing:-6.376064pt;}
.ws82{word-spacing:-6.322930pt;}
.ws13{word-spacing:-6.057261pt;}
.wsb7{word-spacing:-5.977600pt;}
.ws76{word-spacing:-5.950993pt;}
.ws91{word-spacing:-5.844725pt;}
.ws36{word-spacing:-5.791591pt;}
.wse3{word-spacing:-5.632190pt;}
.ws4f{word-spacing:-5.579056pt;}
.wsf4{word-spacing:-5.499392pt;}
.ws37{word-spacing:-5.472788pt;}
.ws89{word-spacing:-5.260253pt;}
.wsf2{word-spacing:-5.164646pt;}
.ws70{word-spacing:-5.100851pt;}
.ws12{word-spacing:-5.047717pt;}
.wsab{word-spacing:-4.835182pt;}
.ws4a{word-spacing:-4.675780pt;}
.wsd8{word-spacing:-4.590797pt;}
.wsb5{word-spacing:-4.569513pt;}
.ws61{word-spacing:-4.516379pt;}
.ws68{word-spacing:-4.463245pt;}
.wsc{word-spacing:-4.447334pt;}
.ws5c{word-spacing:-4.303843pt;}
.wsc2{word-spacing:-4.016947pt;}
.ws8e{word-spacing:-3.985040pt;}
.wsc5{word-spacing:-3.978712pt;}
.wsc7{word-spacing:-3.969148pt;}
.wsc4{word-spacing:-3.969133pt;}
.wsc3{word-spacing:-3.969131pt;}
.wsc8{word-spacing:-3.969094pt;}
.wscd{word-spacing:-3.969079pt;}
.wsc9{word-spacing:-3.969077pt;}
.wscc{word-spacing:-3.921353pt;}
.wsa3{word-spacing:-3.878772pt;}
.ws33{word-spacing:-3.825638pt;}
.wsa6{word-spacing:-3.666237pt;}
.wse8{word-spacing:-3.299635pt;}
.ws1f{word-spacing:-3.134898pt;}
.ws49{word-spacing:-3.081764pt;}
.ws2e{word-spacing:-2.975497pt;}
.wsa1{word-spacing:-2.922363pt;}
.ws5{word-spacing:-2.821427pt;}
.ws4e{word-spacing:-2.762961pt;}
.wsbf{word-spacing:-2.582323pt;}
.wsac{word-spacing:-2.550426pt;}
.ws45{word-spacing:-2.438891pt;}
.ws43{word-spacing:-2.391040pt;}
.wsbd{word-spacing:-1.912819pt;}
.ws99{word-spacing:-1.647150pt;}
.wsf3{word-spacing:-0.239104pt;}
.ws69{word-spacing:-0.053134pt;}
.ws46{word-spacing:-0.047821pt;}
.ws96{word-spacing:-0.037194pt;}
.ws24{word-spacing:0.000000pt;}
.wsed{word-spacing:0.573850pt;}
.ws27{word-spacing:0.637606pt;}
.ws6{word-spacing:1.769370pt;}
.wsf0{word-spacing:1.960653pt;}
.ws6c{word-spacing:2.826706pt;}
.wsba{word-spacing:5.738496pt;}
.ws83{word-spacing:7.119938pt;}
.ws6b{word-spacing:8.820222pt;}
.ws42{word-spacing:9.372877pt;}
.ws95{word-spacing:14.398478pt;}
.ws93{word-spacing:14.431333pt;}
.wsda{word-spacing:14.824448pt;}
.wsde{word-spacing:14.872269pt;}
.wsd9{word-spacing:16.354711pt;}
.ws92{word-spacing:16.961529pt;}
.ws98{word-spacing:17.502413pt;}
.ws74{word-spacing:17.587292pt;}
.wsb6{word-spacing:18.602308pt;}
.ws72{word-spacing:19.287586pt;}
.ws47{word-spacing:20.132565pt;}
.ws67{word-spacing:20.297137pt;}
.ws7d{word-spacing:20.350271pt;}
.ws81{word-spacing:21.519216pt;}
.wsb9{word-spacing:21.854106pt;}
.wsbe{word-spacing:21.949730pt;}
.ws85{word-spacing:24.547846pt;}
.ws11{word-spacing:24.675533pt;}
.ws6e{word-spacing:25.291677pt;}
.ws44{word-spacing:26.014522pt;}
.ws77{word-spacing:26.035590pt;}
.ws4{word-spacing:26.540542pt;}
.ws41{word-spacing:35.627948pt;}
.wsdd{word-spacing:39.452160pt;}
.wsdb{word-spacing:49.016320pt;}
.wse2{word-spacing:53.039236pt;}
.wsdc{word-spacing:54.898278pt;}
.ws3c{word-spacing:61.050813pt;}
.wsc6{word-spacing:69.722726pt;}
.ws9a{word-spacing:71.106833pt;}
.wsce{word-spacing:73.596198pt;}
.wsbb{word-spacing:79.334705pt;}
.ws3f{word-spacing:94.279907pt;}
.wsca{word-spacing:94.302618pt;}
.wsc1{word-spacing:97.028403pt;}
.wsb8{word-spacing:109.079245pt;}
.ws40{word-spacing:118.295232pt;}
.ws97{word-spacing:268.373846pt;}
.wsc0{word-spacing:281.712333pt;}
.ws9c{word-spacing:431.973360pt;}
.ws9f{word-spacing:443.488319pt;}
.wsdf{word-spacing:700.670366pt;}
.ws9d{word-spacing:768.284678pt;}
._39{margin-left:-518.632354pt;}
._3c{margin-left:-514.221753pt;}
._33{margin-left:-432.473509pt;}
._38{margin-left:-427.540840pt;}
._27{margin-left:-367.199325pt;}
._20{margin-left:-328.829902pt;}
._1d{margin-left:-320.746006pt;}
._3a{margin-left:-205.485126pt;}
._3d{margin-left:-197.313274pt;}
._3e{margin-left:-140.483385pt;}
._3b{margin-left:-132.471818pt;}
._e{margin-left:-129.423789pt;}
._2b{margin-left:-127.530117pt;}
._36{margin-left:-125.238833pt;}
._2a{margin-left:-124.224899pt;}
._35{margin-left:-120.306165pt;}
._2f{margin-left:-118.304103pt;}
._23{margin-left:-107.875296pt;}
._1f{margin-left:-104.090334pt;}
._7b{margin-left:-51.610103pt;}
._5{margin-left:-27.948383pt;}
._8{margin-left:-25.924196pt;}
._4{margin-left:-24.195021pt;}
._7d{margin-left:-22.943152pt;}
._16{margin-left:-14.236460pt;}
._1b{margin-left:-11.267928pt;}
._0{margin-left:-7.192228pt;}
._c{margin-left:-5.993540pt;}
._d{margin-left:-4.646090pt;}
._9{margin-left:-3.579088pt;}
._1{margin-left:-2.371905pt;}
._6{margin-left:-1.386803pt;}
._3{width:1.487748pt;}
._7{width:2.725786pt;}
._2{width:4.743810pt;}
._24{width:5.893751pt;}
._17{width:9.052976pt;}
._42{width:14.872269pt;}
._31{width:16.306897pt;}
._68{width:18.753226pt;}
._63{width:20.435171pt;}
._14{width:22.093190pt;}
._1a{width:23.694526pt;}
._18{width:24.900665pt;}
._15{width:26.673206pt;}
._19{width:28.160948pt;}
._44{width:29.475416pt;}
._54{width:31.179162pt;}
._21{width:32.351033pt;}
._25{width:34.636119pt;}
._1c{width:37.375761pt;}
._26{width:40.327582pt;}
._28{width:42.338971pt;}
._2d{width:43.312277pt;}
._52{width:44.329882pt;}
._13{width:46.033627pt;}
._48{width:48.316811pt;}
._4e{width:50.002753pt;}
._2c{width:52.111805pt;}
._4f{width:59.703741pt;}
._61{width:65.084109pt;}
._4d{width:67.427328pt;}
._7c{width:68.582718pt;}
._b{width:71.731200pt;}
._70{width:72.777954pt;}
._32{width:77.705503pt;}
._6b{width:79.621632pt;}
._76{width:85.838336pt;}
._59{width:88.307214pt;}
._62{width:89.759642pt;}
._5b{width:92.389786pt;}
._5a{width:93.534183pt;}
._5c{width:95.145589pt;}
._6e{width:98.176102pt;}
._5d{width:99.222857pt;}
._a{width:102.527795pt;}
._f{width:104.182291pt;}
._10{width:106.001566pt;}
._4b{width:109.031424pt;}
._72{width:112.517039pt;}
._5e{width:119.725480pt;}
._40{width:121.082266pt;}
._79{width:123.568947pt;}
._60{width:125.433958pt;}
._74{width:127.490253pt;}
._11{width:130.614176pt;}
._12{width:132.811008pt;}
._4c{width:133.754778pt;}
._66{width:140.593152pt;}
._6c{width:146.480414pt;}
._5f{width:149.583462pt;}
._75{width:152.165786pt;}
._6f{width:154.795930pt;}
._46{width:160.916992pt;}
._65{width:164.928636pt;}
._47{width:167.750063pt;}
._4a{width:169.381274pt;}
._6d{width:173.541683pt;}
._45{width:174.593741pt;}
._3f{width:185.401242pt;}
._73{width:187.840102pt;}
._67{width:196.304384pt;}
._78{width:202.999296pt;}
._43{width:204.720845pt;}
._41{width:207.446630pt;}
._51{width:208.923772pt;}
._64{width:209.837670pt;}
._71{width:211.989606pt;}
._49{width:218.110669pt;}
._6a{width:223.179674pt;}
._55{width:229.587661pt;}
._53{width:240.251699pt;}
._58{width:247.042253pt;}
._7a{width:247.998669pt;}
._30{width:253.301827pt;}
._77{width:272.243814pt;}
._50{width:278.364877pt;}
._57{width:299.262566pt;}
._69{width:330.106982pt;}
._56{width:375.154176pt;}
._22{width:394.083117pt;}
._1e{width:400.564865pt;}
._29{width:449.865877pt;}
._2e{width:457.551321pt;}
._34{width:592.111612pt;}
._37{width:783.781369pt;}
.fsa{font-size:23.028800pt;}
.fs6{font-size:23.131733pt;}
.fsb{font-size:23.891734pt;}
.fs7{font-size:23.956801pt;}
.fsd{font-size:27.808000pt;}
.fse{font-size:27.808001pt;}
.fs9{font-size:28.342933pt;}
.fs8{font-size:28.469867pt;}
.fs4{font-size:31.880533pt;}
.fsc{font-size:34.225067pt;}
.fs5{font-size:37.193600pt;}
.fs10{font-size:39.031467pt;}
.fs17{font-size:43.297067pt;}
.fs15{font-size:43.305600pt;}
.fs13{font-size:43.518933pt;}
.fs2{font-size:47.820800pt;}
.fs11{font-size:48.038400pt;}
.fsf{font-size:50.040000pt;}
.fs1{font-size:53.133867pt;}
.fs14{font-size:54.971200pt;}
.fs12{font-size:56.116800pt;}
.fs16{font-size:59.390400pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:40.031800pt;}
.y28{bottom:40.310747pt;}
.y27{bottom:50.659867pt;}
.y4f{bottom:79.883853pt;}
.y10c{bottom:79.884027pt;}
.ydf{bottom:79.884107pt;}
.y93{bottom:79.884907pt;}
.y15d{bottom:79.886347pt;}
.y26{bottom:79.886480pt;}
.ybc{bottom:79.893347pt;}
.y17f{bottom:82.208400pt;}
.y131{bottom:84.962800pt;}
.y4e{bottom:95.824013pt;}
.y10b{bottom:95.824187pt;}
.yde{bottom:95.824267pt;}
.y92{bottom:95.825067pt;}
.ybb{bottom:95.833507pt;}
.y15c{bottom:99.574267pt;}
.y25{bottom:99.574400pt;}
.y130{bottom:101.564693pt;}
.y179{bottom:111.415867pt;}
.y10a{bottom:111.764347pt;}
.y91{bottom:111.765227pt;}
.yba{bottom:111.773667pt;}
.y12f{bottom:117.504853pt;}
.y24{bottom:119.868240pt;}
.ydd{bottom:121.432960pt;}
.y4d{bottom:123.745867pt;}
.y15b{bottom:124.096880pt;}
.y109{bottom:127.704507pt;}
.y90{bottom:127.705387pt;}
.yb9{bottom:127.713827pt;}
.y12e{bottom:133.445013pt;}
.y23{bottom:135.808400pt;}
.ydc{bottom:136.042213pt;}
.y15a{bottom:140.037040pt;}
.y108{bottom:143.644667pt;}
.y8f{bottom:143.645547pt;}
.yb8{bottom:143.653987pt;}
.y17a{bottom:144.949440pt;}
.y12d{bottom:149.385173pt;}
.ydb{bottom:150.651467pt;}
.y22{bottom:151.748560pt;}
.y159{bottom:155.978187pt;}
.y4c{bottom:156.980933pt;}
.y8e{bottom:159.585707pt;}
.yb7{bottom:159.594147pt;}
.yda{bottom:165.260720pt;}
.y12c{bottom:165.325333pt;}
.y21{bottom:167.688720pt;}
.y158{bottom:171.918347pt;}
.y1a5{bottom:173.130640pt;}
.y107{bottom:173.925733pt;}
.yb6{bottom:175.215507pt;}
.y8d{bottom:175.525867pt;}
.yd9{bottom:179.869973pt;}
.y17b{bottom:181.318987pt;}
.y20{bottom:183.628880pt;}
.y1a4{bottom:187.739893pt;}
.y157{bottom:187.858507pt;}
.yb5{bottom:191.155667pt;}
.y8c{bottom:191.466027pt;}
.yd8{bottom:194.479227pt;}
.y1f{bottom:199.569040pt;}
.y4b{bottom:200.843760pt;}
.y1a3{bottom:202.349147pt;}
.y156{bottom:203.798667pt;}
.yb4{bottom:207.095827pt;}
.y8b{bottom:207.406187pt;}
.yd7{bottom:209.088480pt;}
.y12b{bottom:212.799600pt;}
.y106{bottom:214.834533pt;}
.y1e{bottom:215.509200pt;}
.y17c{bottom:216.746800pt;}
.y4a{bottom:216.783920pt;}
.y1a2{bottom:216.958400pt;}
.y155{bottom:219.738827pt;}
.yb3{bottom:223.035987pt;}
.y8a{bottom:223.346347pt;}
.yd6{bottom:223.697733pt;}
.y12a{bottom:227.981853pt;}
.y105{bottom:230.774693pt;}
.y1d{bottom:231.449360pt;}
.y1a1{bottom:231.567653pt;}
.y49{bottom:232.724080pt;}
.y154{bottom:235.678987pt;}
.yb2{bottom:238.657333pt;}
.y89{bottom:239.286507pt;}
.y129{bottom:242.591107pt;}
.y1a0{bottom:246.176907pt;}
.y104{bottom:246.714853pt;}
.y1c{bottom:247.389520pt;}
.yd5{bottom:247.918973pt;}
.y48{bottom:248.664240pt;}
.y153{bottom:251.619147pt;}
.y17d{bottom:253.116347pt;}
.yb1{bottom:254.597493pt;}
.y88{bottom:255.226667pt;}
.y128{bottom:257.200360pt;}
.y19f{bottom:260.786160pt;}
.y103{bottom:262.655013pt;}
.y1b{bottom:263.329680pt;}
.y47{bottom:264.604400pt;}
.y152{bottom:267.559307pt;}
.yb0{bottom:270.537653pt;}
.y87{bottom:271.166827pt;}
.y127{bottom:271.809613pt;}
.yd4{bottom:272.140200pt;}
.y19e{bottom:275.395413pt;}
.y102{bottom:278.595173pt;}
.y1a{bottom:279.269840pt;}
.y46{bottom:280.544560pt;}
.y151{bottom:283.499467pt;}
.y126{bottom:286.418867pt;}
.yaf{bottom:286.477813pt;}
.yd3{bottom:286.749467pt;}
.y86{bottom:287.106987pt;}
.y17e{bottom:289.485467pt;}
.y19d{bottom:290.004667pt;}
.y101{bottom:294.535333pt;}
.y19{bottom:295.210000pt;}
.y45{bottom:296.484720pt;}
.y150{bottom:299.439627pt;}
.y125{bottom:301.028120pt;}
.yd2{bottom:301.358720pt;}
.yae{bottom:302.417973pt;}
.y85{bottom:303.047147pt;}
.y19c{bottom:304.613920pt;}
.y100{bottom:310.475493pt;}
.y18{bottom:311.150160pt;}
.y44{bottom:312.424880pt;}
.y14f{bottom:315.379787pt;}
.y124{bottom:315.637373pt;}
.yd1{bottom:315.967973pt;}
.yad{bottom:318.358133pt;}
.y84{bottom:318.987307pt;}
.y19b{bottom:319.223173pt;}
.yff{bottom:326.415653pt;}
.y17{bottom:327.090320pt;}
.y43{bottom:328.365040pt;}
.y123{bottom:330.246627pt;}
.yd0{bottom:330.577227pt;}
.y14e{bottom:331.319947pt;}
.y19a{bottom:333.832427pt;}
.yac{bottom:333.979493pt;}
.y83{bottom:334.927467pt;}
.yfe{bottom:342.355813pt;}
.y16{bottom:343.030480pt;}
.y42{bottom:344.305200pt;}
.y122{bottom:344.855880pt;}
.ycf{bottom:345.186480pt;}
.y14d{bottom:347.260107pt;}
.y199{bottom:348.441693pt;}
.yab{bottom:349.919653pt;}
.y82{bottom:350.867627pt;}
.y178{bottom:353.692613pt;}
.yfd{bottom:358.295973pt;}
.y15{bottom:358.970640pt;}
.y121{bottom:359.465147pt;}
.yce{bottom:359.795733pt;}
.y41{bottom:360.245360pt;}
.y198{bottom:363.050947pt;}
.y14c{bottom:363.200267pt;}
.yaa{bottom:365.859813pt;}
.y81{bottom:366.807787pt;}
.y177{bottom:369.632773pt;}
.y120{bottom:374.074400pt;}
.yfc{bottom:374.236133pt;}
.y14{bottom:374.910800pt;}
.y40{bottom:376.185520pt;}
.y197{bottom:377.660200pt;}
.y14b{bottom:379.140427pt;}
.ya9{bottom:381.799973pt;}
.y80{bottom:382.747947pt;}
.ycd{bottom:384.016973pt;}
.y176{bottom:385.572933pt;}
.y11f{bottom:388.683653pt;}
.yfb{bottom:390.176293pt;}
.y3f{bottom:392.125680pt;}
.y196{bottom:392.269453pt;}
.y14a{bottom:395.080587pt;}
.ya8{bottom:397.421573pt;}
.y7f{bottom:398.688107pt;}
.y175{bottom:401.513093pt;}
.y11e{bottom:403.292907pt;}
.ycc{bottom:406.086267pt;}
.yfa{bottom:406.116453pt;}
.y195{bottom:406.878707pt;}
.y3e{bottom:408.065840pt;}
.y13{bottom:409.979200pt;}
.y149{bottom:411.020747pt;}
.ya7{bottom:413.361573pt;}
.y7e{bottom:414.628267pt;}
.y174{bottom:417.453253pt;}
.y11d{bottom:417.902160pt;}
.y194{bottom:421.487960pt;}
.yf9{bottom:422.056613pt;}
.y3d{bottom:424.006000pt;}
.y148{bottom:426.960907pt;}
.ya6{bottom:429.292547pt;}
.y11c{bottom:432.511413pt;}
.ycb{bottom:432.706400pt;}
.y173{bottom:433.393413pt;}
.y193{bottom:436.097213pt;}
.yf8{bottom:437.996773pt;}
.y3c{bottom:439.946160pt;}
.y147{bottom:442.901067pt;}
.y11b{bottom:447.120667pt;}
.y172{bottom:449.333573pt;}
.y192{bottom:450.706467pt;}
.yf7{bottom:453.936933pt;}
.ya5{bottom:454.597560pt;}
.y3b{bottom:455.886320pt;}
.y12{bottom:457.511240pt;}
.yca{bottom:460.668107pt;}
.y11a{bottom:462.266320pt;}
.y171{bottom:465.273733pt;}
.y191{bottom:465.315720pt;}
.yf6{bottom:469.877093pt;}
.y3a{bottom:471.826480pt;}
.y11{bottom:472.120493pt;}
.y7d{bottom:472.764347pt;}
.yc9{bottom:476.608267pt;}
.y119{bottom:476.875573pt;}
.y190{bottom:479.924973pt;}
.yf5{bottom:485.817253pt;}
.y10{bottom:486.729760pt;}
.y7c{bottom:487.373600pt;}
.y39{bottom:487.766640pt;}
.yc8{bottom:492.548427pt;}
.ya4{bottom:493.186027pt;}
.y146{bottom:494.513333pt;}
.y18f{bottom:494.534227pt;}
.yf{bottom:501.339013pt;}
.y118{bottom:501.718480pt;}
.yf4{bottom:501.757413pt;}
.y38{bottom:503.706800pt;}
.yc7{bottom:508.488587pt;}
.ya3{bottom:509.126187pt;}
.y18e{bottom:509.143480pt;}
.y145{bottom:509.695587pt;}
.y170{bottom:512.114000pt;}
.ye{bottom:515.948267pt;}
.y117{bottom:516.327733pt;}
.yf3{bottom:517.697573pt;}
.y18d{bottom:523.752747pt;}
.y144{bottom:524.304840pt;}
.yc6{bottom:524.428747pt;}
.ya2{bottom:525.066347pt;}
.y6e{bottom:525.707733pt;}
.y16f{bottom:527.296253pt;}
.y79{bottom:528.495333pt;}
.yd{bottom:530.557520pt;}
.yf2{bottom:533.637733pt;}
.y37{bottom:536.941867pt;}
.y18c{bottom:538.362000pt;}
.y143{bottom:538.914093pt;}
.yc5{bottom:540.368907pt;}
.y78{bottom:540.814267pt;}
.ya1{bottom:541.006507pt;}
.y16e{bottom:541.905507pt;}
.yc{bottom:545.166773pt;}
.y6f{bottom:550.992000pt;}
.y18b{bottom:552.971253pt;}
.y142{bottom:553.523347pt;}
.yc4{bottom:556.309067pt;}
.y16d{bottom:556.514760pt;}
.y116{bottom:556.946400pt;}
.ya0{bottom:556.946667pt;}
.yb{bottom:559.776027pt;}
.y70{bottom:562.713067pt;}
.y18a{bottom:567.580507pt;}
.y141{bottom:568.132600pt;}
.y16c{bottom:571.124013pt;}
.yc3{bottom:572.249227pt;}
.y115{bottom:572.886560pt;}
.y9f{bottom:572.886827pt;}
.ya{bottom:574.385280pt;}
.y71{bottom:574.524520pt;}
.yf1{bottom:577.882533pt;}
.y36{bottom:580.790493pt;}
.y7a{bottom:581.321467pt;}
.y189{bottom:582.189760pt;}
.y140{bottom:582.741853pt;}
.y16b{bottom:585.733267pt;}
.y72{bottom:586.245587pt;}
.yc2{bottom:588.189387pt;}
.y114{bottom:588.826720pt;}
.y9e{bottom:588.826987pt;}
.y9{bottom:588.994533pt;}
.y35{bottom:596.730653pt;}
.y188{bottom:596.799013pt;}
.y13f{bottom:597.351107pt;}
.y73{bottom:598.057040pt;}
.y16a{bottom:600.342520pt;}
.y8{bottom:603.603787pt;}
.yc1{bottom:604.129547pt;}
.y113{bottom:604.766880pt;}
.y9d{bottom:604.767147pt;}
.yf0{bottom:606.477333pt;}
.y74{bottom:610.375987pt;}
.y187{bottom:611.408267pt;}
.y13e{bottom:611.960360pt;}
.y34{bottom:612.670813pt;}
.y169{bottom:614.951773pt;}
.y7{bottom:618.213040pt;}
.yee{bottom:619.284680pt;}
.yc0{bottom:620.069707pt;}
.y112{bottom:620.707040pt;}
.y9c{bottom:620.707307pt;}
.y75{bottom:622.097053pt;}
.y13d{bottom:626.569613pt;}
.y33{bottom:628.610973pt;}
.y168{bottom:629.561027pt;}
.y6{bottom:632.822293pt;}
.y76{bottom:633.908507pt;}
.ybf{bottom:636.009867pt;}
.y111{bottom:636.647200pt;}
.y9b{bottom:636.647467pt;}
.yef{bottom:640.076000pt;}
.yed{bottom:641.110693pt;}
.y13c{bottom:641.178880pt;}
.y186{bottom:641.960400pt;}
.y167{bottom:644.170280pt;}
.y32{bottom:644.551133pt;}
.y77{bottom:645.629573pt;}
.ybe{bottom:651.950027pt;}
.y110{bottom:652.587360pt;}
.y9a{bottom:652.587627pt;}
.y13b{bottom:655.788133pt;}
.yec{bottom:656.408400pt;}
.y166{bottom:658.779547pt;}
.yeb{bottom:661.902000pt;}
.y7b{bottom:662.737333pt;}
.y10f{bottom:668.527520pt;}
.y99{bottom:668.527787pt;}
.y13a{bottom:670.397387pt;}
.y31{bottom:671.795520pt;}
.y165{bottom:673.388800pt;}
.ybd{bottom:677.507413pt;}
.y10e{bottom:684.467680pt;}
.y185{bottom:684.467867pt;}
.y98{bottom:684.467947pt;}
.y139{bottom:685.006640pt;}
.y5f{bottom:685.409200pt;}
.y5e{bottom:686.300800pt;}
.y5c{bottom:687.669760pt;}
.y164{bottom:687.998053pt;}
.y6c{bottom:688.046160pt;}
.y30{bottom:688.081053pt;}
.y5{bottom:692.813493pt;}
.y5b{bottom:697.847720pt;}
.y6b{bottom:698.247920pt;}
.yea{bottom:698.285200pt;}
.y138{bottom:699.615893pt;}
.y10d{bottom:700.407840pt;}
.y184{bottom:700.408027pt;}
.y97{bottom:700.408107pt;}
.y163{bottom:702.607307pt;}
.y2f{bottom:704.021213pt;}
.y50{bottom:706.337067pt;}
.y60{bottom:706.630400pt;}
.y4{bottom:707.422747pt;}
.y137{bottom:714.225147pt;}
.y51{bottom:715.231213pt;}
.y61{bottom:715.484973pt;}
.y183{bottom:716.348187pt;}
.y96{bottom:716.348267pt;}
.y162{bottom:717.216560pt;}
.y2e{bottom:720.306733pt;}
.y3{bottom:722.032000pt;}
.y52{bottom:724.125373pt;}
.y62{bottom:724.339547pt;}
.ye4{bottom:726.757733pt;}
.ye9{bottom:726.835600pt;}
.y136{bottom:728.834400pt;}
.y161{bottom:731.825813pt;}
.y182{bottom:732.288347pt;}
.y95{bottom:732.288427pt;}
.y63{bottom:733.194120pt;}
.y53{bottom:733.447453pt;}
.ye8{bottom:733.601600pt;}
.y2d{bottom:736.592267pt;}
.y5d{bottom:737.402533pt;}
.y6d{bottom:737.558400pt;}
.ye3{bottom:740.712267pt;}
.y64{bottom:742.048693pt;}
.y54{bottom:742.341613pt;}
.y135{bottom:743.982667pt;}
.y160{bottom:746.435067pt;}
.y181{bottom:748.228507pt;}
.y94{bottom:748.228587pt;}
.y2{bottom:749.869947pt;}
.y65{bottom:750.903267pt;}
.y55{bottom:751.235760pt;}
.ye6{bottom:753.803600pt;}
.y134{bottom:758.591920pt;}
.y56{bottom:760.129907pt;}
.y66{bottom:760.258720pt;}
.y15f{bottom:761.580720pt;}
.y180{bottom:764.168667pt;}
.y2c{bottom:764.168747pt;}
.ye2{bottom:768.214267pt;}
.y57{bottom:769.024067pt;}
.y67{bottom:769.113293pt;}
.ye7{bottom:774.005733pt;}
.y15e{bottom:776.189973pt;}
.ye5{bottom:777.029067pt;}
.y68{bottom:777.967867pt;}
.y58{bottom:778.421333pt;}
.y2b{bottom:780.108907pt;}
.y133{bottom:786.423627pt;}
.y69{bottom:786.822440pt;}
.y59{bottom:787.315480pt;}
.ye1{bottom:794.875733pt;}
.y6a{bottom:795.677013pt;}
.y1{bottom:796.049067pt;}
.y5a{bottom:796.209640pt;}
.ye0{bottom:797.517867pt;}
.y132{bottom:801.032880pt;}
.y2a{bottom:830.586133pt;}
.h6{height:15.685222pt;}
.h25{height:21.200555pt;}
.he{height:23.163734pt;}
.hf{height:23.264935pt;}
.h9{height:23.267271pt;}
.ha{height:23.368924pt;}
.h10{height:24.136718pt;}
.hb{height:24.202452pt;}
.h7{height:27.895200pt;}
.h12{height:27.970937pt;}
.h13{height:28.093141pt;}
.h14{height:28.093142pt;}
.hd{height:28.509005pt;}
.hc{height:28.636682pt;}
.h19{height:33.187635pt;}
.h24{height:33.474560pt;}
.h18{height:34.239693pt;}
.h11{height:34.425604pt;}
.h4{height:35.865600pt;}
.h8{height:37.193707pt;}
.h1b{height:39.298283pt;}
.h3{height:39.850400pt;}
.h16{height:39.851040pt;}
.h15{height:39.887147pt;}
.h17{height:39.887733pt;}
.h27{height:43.550760pt;}
.h20{height:43.601634pt;}
.h1e{height:43.816426pt;}
.h5{height:44.632747pt;}
.h26{height:47.173387pt;}
.h23{height:47.175733pt;}
.h21{height:47.758968pt;}
.h28{height:47.964267pt;}
.h1c{height:48.366787pt;}
.h1a{height:50.382070pt;}
.h2{height:54.492202pt;}
.h1f{height:55.346980pt;}
.h1d{height:56.500411pt;}
.h22{height:59.796389pt;}
.h0{height:888.336000pt;}
.h1{height:888.666667pt;}
.w0{width:574.499200pt;}
.w1{width:574.666667pt;}
.x0{left:0.000000pt;}
.x7{left:62.898667pt;}
.x1{left:66.615200pt;}
.x3e{left:69.042267pt;}
.xa{left:71.200973pt;}
.x35{left:73.718120pt;}
.x9{left:76.182267pt;}
.x10{left:77.565467pt;}
.x8{left:82.823867pt;}
.x22{left:83.876667pt;}
.xb{left:85.480693pt;}
.xd{left:88.361333pt;}
.xe{left:94.775760pt;}
.x2c{left:96.670667pt;}
.x6{left:100.687840pt;}
.x11{left:103.767333pt;}
.x1f{left:113.106520pt;}
.x2{left:120.242880pt;}
.x3{left:122.099600pt;}
.x24{left:127.288800pt;}
.x23{left:128.248267pt;}
.x20{left:138.212440pt;}
.x30{left:139.621200pt;}
.x2e{left:142.887600pt;}
.x1e{left:145.335867pt;}
.x37{left:147.261507pt;}
.x4{left:156.148013pt;}
.x34{left:161.325827pt;}
.x21{left:163.318360pt;}
.xf{left:171.287800pt;}
.x1c{left:176.704400pt;}
.x36{left:182.266333pt;}
.x19{left:183.327333pt;}
.x3a{left:184.989613pt;}
.x5{left:186.884827pt;}
.x39{left:189.931280pt;}
.x1a{left:190.857400pt;}
.x33{left:192.385440pt;}
.x3b{left:201.245080pt;}
.x18{left:207.456133pt;}
.xc{left:226.225600pt;}
.x38{left:228.944400pt;}
.x25{left:244.333733pt;}
.x3d{left:247.027067pt;}
.x32{left:249.342933pt;}
.x1d{left:258.708533pt;}
.x3c{left:261.455333pt;}
.x2f{left:277.701160pt;}
.x2d{left:278.743333pt;}
.x1b{left:283.867040pt;}
.x26{left:291.343600pt;}
.x27{left:295.859867pt;}
.x17{left:308.840000pt;}
.x14{left:314.534333pt;}
.x13{left:319.607733pt;}
.x15{left:326.079533pt;}
.x12{left:334.825067pt;}
.x28{left:339.361200pt;}
.x29{left:340.325200pt;}
.x16{left:403.271213pt;}
.x2a{left:456.610133pt;}
.x31{left:501.012133pt;}
.x2b{left:503.726533pt;}
}




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