
    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_23855b26162fb78b068b5ea7.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_454ad19da5b02ffe540a5f86.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_bde4bf8189d69b916d9c9445.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e797a153137a14de21dfe2c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.304000;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_5d78ecab39147be2e722479a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_2f8a55dbc877a8cef9634e01.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_911eeb3b04e926199790d564.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_618abb8dabb8c9a75f9c6ad5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854000;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_668713d46efec389606e02af.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983887;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_4b04e1981eefb8e0d217a7bf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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_ebe254f464479f6840ba69b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_a1f1a6db32191ea4ba9371ad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.429000;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_e369f4e2d7c7997204924742.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4f5c72b75069ad04a7998a35.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908000;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_5828f10ea7654ce0d45340dc.woff2')format("woff");}.fff{font-family:fff;line-height:0.724000;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_13076bb6a29686b4daec0672.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_46f2454b2d3e5ef1772aa69d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.022000;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_18fc4cd88b8b8e0e5ac147f6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.898200;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_ce63e793570223f162bd1fe3.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cbcb1e51ec0f800c2499b927.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.897450;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_f3b87039a38df2aac74f8108.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.022000;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_ed8b48ed689fb336a799325b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.999000;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_ec54f9d3a7450bd54c0c8f14.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.678000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-16.878000px;}
.v9{vertical-align:-11.958000px;}
.v4{vertical-align:-8.964000px;}
.v8{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.814000px;}
.v5{vertical-align:14.778000px;}
.va{vertical-align:15.923043px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.v6{vertical-align:36.468000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000066px;}
.ls57{letter-spacing:0.000173px;}
.ls4c{letter-spacing:0.000333px;}
.ls4b{letter-spacing:0.000557px;}
.ls45{letter-spacing:0.000780px;}
.ls2f{letter-spacing:0.000994px;}
.ls3a{letter-spacing:0.001405px;}
.ls3c{letter-spacing:0.001489px;}
.ls41{letter-spacing:0.001568px;}
.ls58{letter-spacing:0.001590px;}
.ls40{letter-spacing:0.001682px;}
.ls1c{letter-spacing:0.001692px;}
.lse{letter-spacing:0.002244px;}
.ls1e{letter-spacing:0.002368px;}
.ls31{letter-spacing:0.002686px;}
.ls27{letter-spacing:0.003270px;}
.lsb{letter-spacing:0.003724px;}
.ls5e{letter-spacing:0.004200px;}
.ls2a{letter-spacing:0.004896px;}
.ls2b{letter-spacing:0.007692px;}
.lsf{letter-spacing:1.655250px;}
.ls30{letter-spacing:1.660646px;}
.ls5d{letter-spacing:2.818437px;}
.ls7{letter-spacing:2.964877px;}
.ls14{letter-spacing:2.984525px;}
.ls2{letter-spacing:2.984947px;}
.ls60{letter-spacing:2.987676px;}
.ls1{letter-spacing:2.988053px;}
.ls52{letter-spacing:2.988334px;}
.ls4{letter-spacing:2.988532px;}
.ls3{letter-spacing:2.988600px;}
.ls15{letter-spacing:2.988614px;}
.ls5c{letter-spacing:2.988780px;}
.lsa{letter-spacing:2.989200px;}
.ls28{letter-spacing:2.990233px;}
.ls59{letter-spacing:2.990352px;}
.ls13{letter-spacing:2.990524px;}
.ls53{letter-spacing:2.990856px;}
.ls0{letter-spacing:2.990947px;}
.ls5a{letter-spacing:2.993543px;}
.ls29{letter-spacing:4.490282px;}
.lsc{letter-spacing:4.702200px;}
.ls46{letter-spacing:5.977829px;}
.ls47{letter-spacing:7.047974px;}
.ls4e{letter-spacing:7.082273px;}
.ls56{letter-spacing:7.088273px;}
.ls55{letter-spacing:12.283559px;}
.ls2e{letter-spacing:13.284539px;}
.ls51{letter-spacing:13.825681px;}
.ls38{letter-spacing:15.355336px;}
.ls3f{letter-spacing:15.355559px;}
.ls50{letter-spacing:15.356002px;}
.ls44{letter-spacing:15.362004px;}
.ls20{letter-spacing:16.601608px;}
.ls11{letter-spacing:16.602538px;}
.ls26{letter-spacing:16.604399px;}
.ls22{letter-spacing:16.606896px;}
.ls3e{letter-spacing:16.897682px;}
.ls42{letter-spacing:18.348334px;}
.ls37{letter-spacing:18.350289px;}
.ls5b{letter-spacing:18.828780px;}
.ls43{letter-spacing:18.829001px;}
.ls36{letter-spacing:18.840334px;}
.ls17{letter-spacing:19.142686px;}
.ls16{letter-spacing:19.144201px;}
.ls54{letter-spacing:19.376272px;}
.ls1f{letter-spacing:19.591140px;}
.ls2d{letter-spacing:20.366272px;}
.ls3b{letter-spacing:20.429158px;}
.ls1d{letter-spacing:20.918100px;}
.ls24{letter-spacing:20.920894px;}
.ls34{letter-spacing:20.924525px;}
.ls25{letter-spacing:20.926200px;}
.ls32{letter-spacing:21.117270px;}
.ls2c{letter-spacing:21.310199px;}
.ls35{letter-spacing:21.811569px;}
.ls3d{letter-spacing:21.818289px;}
.lsd{letter-spacing:22.811250px;}
.ls4f{letter-spacing:23.365001px;}
.ls1b{letter-spacing:23.407692px;}
.ls5f{letter-spacing:23.633024px;}
.ls19{letter-spacing:23.681607px;}
.ls18{letter-spacing:23.686896px;}
.ls23{letter-spacing:23.911140px;}
.ls4a{letter-spacing:23.995334px;}
.ls10{letter-spacing:24.906066px;}
.ls8{letter-spacing:24.998243px;}
.ls39{letter-spacing:26.509490px;}
.ls49{letter-spacing:26.982334px;}
.ls48{letter-spacing:26.988334px;}
.ls9{letter-spacing:27.140024px;}
.ls1a{letter-spacing:27.739140px;}
.ls21{letter-spacing:29.226066px;}
.ls4d{letter-spacing:31.076271px;}
.ls33{letter-spacing:33.362686px;}
.ls6{letter-spacing:35.863409px;}
.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;}
}
.wsc2{word-spacing:-59.775599px;}
.ws106{word-spacing:-43.834936px;}
.wsb0{word-spacing:-38.937825px;}
.wsef{word-spacing:-36.071827px;}
.wsfd{word-spacing:-31.299909px;}
.wsc4{word-spacing:-29.015076px;}
.wsc3{word-spacing:-28.955300px;}
.wsfb{word-spacing:-26.872301px;}
.wsd7{word-spacing:-24.479065px;}
.wsd6{word-spacing:-21.155065px;}
.ws135{word-spacing:-18.015682px;}
.ws16e{word-spacing:-17.932680px;}
.ws13c{word-spacing:-17.223682px;}
.ws13e{word-spacing:-17.217679px;}
.wsdb{word-spacing:-16.605661px;}
.ws152{word-spacing:-16.359400px;}
.ws87{word-spacing:-14.920027px;}
.ws138{word-spacing:-14.121681px;}
.ws12{word-spacing:-13.449600px;}
.wsfe{word-spacing:-12.077741px;}
.ws10d{word-spacing:-11.955150px;}
.ws127{word-spacing:-11.278728px;}
.wsec{word-spacing:-6.623136px;}
.wsd8{word-spacing:-3.335478px;}
.ws100{word-spacing:-3.093408px;}
.ws79{word-spacing:-1.075961px;}
.ws131{word-spacing:-1.016185px;}
.ws54{word-spacing:-0.896634px;}
.wsa6{word-spacing:-0.836858px;}
.ws47{word-spacing:-0.717301px;}
.ws118{word-spacing:-0.537980px;}
.ws144{word-spacing:-0.478205px;}
.ws11d{word-spacing:-0.418429px;}
.ws19a{word-spacing:-0.191282px;}
.ws72{word-spacing:-0.179327px;}
.ws58{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws182{word-spacing:-0.047821px;}
.wscc{word-spacing:-0.041843px;}
.wsfc{word-spacing:-0.035866px;}
.ws105{word-spacing:-0.026899px;}
.ws4b{word-spacing:0.000000px;}
.ws194{word-spacing:0.047821px;}
.ws18d{word-spacing:0.286924px;}
.ws62{word-spacing:0.298878px;}
.ws112{word-spacing:0.358654px;}
.ws1b3{word-spacing:0.430385px;}
.ws8d{word-spacing:0.537980px;}
.ws1a8{word-spacing:0.573847px;}
.ws8{word-spacing:0.645600px;}
.ws5c{word-spacing:0.657532px;}
.ws184{word-spacing:0.669488px;}
.ws1a9{word-spacing:0.717309px;}
.ws13a{word-spacing:0.777083px;}
.ws170{word-spacing:0.836858px;}
.wse1{word-spacing:0.956410px;}
.ws172{word-spacing:0.956412px;}
.ws19f{word-spacing:1.004233px;}
.ws5e{word-spacing:1.255288px;}
.ws166{word-spacing:1.315063px;}
.ws191{word-spacing:1.482439px;}
.ws7d{word-spacing:1.554166px;}
.ws35{word-spacing:1.554299px;}
.ws1a1{word-spacing:1.578080px;}
.ws77{word-spacing:1.613941px;}
.ws66{word-spacing:1.853044px;}
.ws1b1{word-spacing:1.865003px;}
.wsc7{word-spacing:1.910738px;}
.wsc8{word-spacing:1.912819px;}
.ws17c{word-spacing:1.960645px;}
.ws74{word-spacing:1.972595px;}
.ws120{word-spacing:2.032370px;}
.ws18c{word-spacing:2.056286px;}
.wsb8{word-spacing:2.092146px;}
.ws6{word-spacing:2.151600px;}
.ws3a{word-spacing:2.151899px;}
.ws5b{word-spacing:2.151922px;}
.ws39{word-spacing:2.211899px;}
.ws188{word-spacing:2.295389px;}
.ws165{word-spacing:2.331248px;}
.wsf1{word-spacing:2.399509px;}
.wsf2{word-spacing:2.420928px;}
.ws17d{word-spacing:2.438851px;}
.ws16b{word-spacing:2.450800px;}
.ws197{word-spacing:2.486671px;}
.wsa3{word-spacing:2.510575px;}
.ws37{word-spacing:2.510699px;}
.wsee{word-spacing:2.528525px;}
.ws7a{word-spacing:2.630126px;}
.ws17e{word-spacing:2.630133px;}
.ws1a7{word-spacing:2.725774px;}
.wsde{word-spacing:2.749678px;}
.ws174{word-spacing:2.773595px;}
.ws11e{word-spacing:2.929004px;}
.wseb{word-spacing:2.988780px;}
.ws163{word-spacing:3.040393px;}
.ws6f{word-spacing:3.048556px;}
.ws18e{word-spacing:3.060518px;}
.wsa9{word-spacing:3.108331px;}
.ws15f{word-spacing:3.168107px;}
.wsae{word-spacing:3.227882px;}
.wsac{word-spacing:3.287658px;}
.ws196{word-spacing:3.299621px;}
.ws148{word-spacing:3.347434px;}
.ws1a5{word-spacing:3.395263px;}
.ws15c{word-spacing:3.407209px;}
.ws85{word-spacing:3.466985px;}
.ws9e{word-spacing:3.526760px;}
.wsbd{word-spacing:3.586536px;}
.ws19c{word-spacing:3.634366px;}
.ws1ae{word-spacing:3.682186px;}
.ws16c{word-spacing:3.765863px;}
.ws4e{word-spacing:3.825638px;}
.ws1af{word-spacing:3.825648px;}
.ws17b{word-spacing:3.873469px;}
.ws164{word-spacing:3.885414px;}
.ws189{word-spacing:4.016930px;}
.ws41{word-spacing:4.124699px;}
.wsc1{word-spacing:4.184292px;}
.wsc5{word-spacing:4.192312px;}
.ws19e{word-spacing:4.303854px;}
.wsb7{word-spacing:4.363619px;}
.wsb4{word-spacing:4.483170px;}
.ws1aa{word-spacing:4.495136px;}
.ws124{word-spacing:4.511491px;}
.ws12e{word-spacing:4.542945px;}
.ws1a4{word-spacing:4.638598px;}
.ws9b{word-spacing:4.722272px;}
.ws186{word-spacing:4.734239px;}
.wsa8{word-spacing:4.782060px;}
.wse{word-spacing:4.787999px;}
.ws183{word-spacing:4.829881px;}
.ws52{word-spacing:4.841823px;}
.ws78{word-spacing:5.021150px;}
.wsb2{word-spacing:5.080926px;}
.ws91{word-spacing:5.200477px;}
.ws20{word-spacing:5.200499px;}
.ws167{word-spacing:5.260253px;}
.ws7b{word-spacing:5.320028px;}
.ws198{word-spacing:5.355907px;}
.ws107{word-spacing:5.375619px;}
.wsf8{word-spacing:5.375643px;}
.ws108{word-spacing:5.379245px;}
.wsf5{word-spacing:5.379291px;}
.ws30{word-spacing:5.379600px;}
.wsf3{word-spacing:5.379840px;}
.ws187{word-spacing:5.403728px;}
.ws1d{word-spacing:5.439299px;}
.ws4d{word-spacing:5.439579px;}
.wsb1{word-spacing:5.499355px;}
.ws199{word-spacing:5.499369px;}
.wsbe{word-spacing:5.559131px;}
.wse8{word-spacing:5.618906px;}
.ws121{word-spacing:5.639364px;}
.ws14a{word-spacing:5.738457px;}
.ws171{word-spacing:5.738472px;}
.ws56{word-spacing:5.858009px;}
.ws143{word-spacing:5.917784px;}
.ws190{word-spacing:5.929754px;}
.wscf{word-spacing:5.974167px;}
.ws154{word-spacing:5.975733px;}
.wscb{word-spacing:5.976355px;}
.ws1c{word-spacing:5.977498px;}
.ws5a{word-spacing:5.977560px;}
.wsd1{word-spacing:5.977844px;}
.ws136{word-spacing:5.978131px;}
.ws134{word-spacing:5.979027px;}
.wsd3{word-spacing:5.979282px;}
.wscd{word-spacing:5.980164px;}
.ws11b{word-spacing:6.037335px;}
.wse9{word-spacing:6.156887px;}
.ws71{word-spacing:6.216662px;}
.ws178{word-spacing:6.216678px;}
.ws6e{word-spacing:6.276438px;}
.ws14d{word-spacing:6.336213px;}
.ws61{word-spacing:6.395989px;}
.ws1f{word-spacing:6.396298px;}
.ws38{word-spacing:6.455698px;}
.ws8f{word-spacing:6.455765px;}
.wsb9{word-spacing:6.505245px;}
.ws68{word-spacing:6.515540px;}
.ws18f{word-spacing:6.551422px;}
.ws42{word-spacing:6.575098px;}
.ws2{word-spacing:6.575259px;}
.ws73{word-spacing:6.575316px;}
.ws1{word-spacing:6.575859px;}
.ws10e{word-spacing:6.635091px;}
.ws1a3{word-spacing:6.647063px;}
.ws65{word-spacing:6.694867px;}
.ws3b{word-spacing:6.754499px;}
.ws13f{word-spacing:6.754643px;}
.ws13b{word-spacing:6.771063px;}
.ws13d{word-spacing:6.776136px;}
.ws1b0{word-spacing:6.790525px;}
.ws168{word-spacing:6.814418px;}
.ws22{word-spacing:6.814498px;}
.ws150{word-spacing:6.874194px;}
.wse0{word-spacing:7.053521px;}
.ws12c{word-spacing:7.232847px;}
.ws158{word-spacing:7.259734px;}
.wsb3{word-spacing:7.292623px;}
.ws1a2{word-spacing:7.316552px;}
.ws19b{word-spacing:7.364372px;}
.wse7{word-spacing:7.412174px;}
.ws1a6{word-spacing:7.412193px;}
.wsbf{word-spacing:7.471699px;}
.ws140{word-spacing:7.531725px;}
.ws90{word-spacing:7.591501px;}
.ws155{word-spacing:7.629937px;}
.ws153{word-spacing:7.631161px;}
.ws156{word-spacing:7.651277px;}
.ws6c{word-spacing:7.770828px;}
.ws11f{word-spacing:7.830603px;}
.ws43{word-spacing:7.890299px;}
.ws9a{word-spacing:7.950155px;}
.ws1ac{word-spacing:7.986040px;}
.ws149{word-spacing:8.009930px;}
.ws49{word-spacing:8.069698px;}
.wsaa{word-spacing:8.069706px;}
.ws11c{word-spacing:8.129481px;}
.ws185{word-spacing:8.129502px;}
.ws1a{word-spacing:8.129699px;}
.wsd{word-spacing:8.177400px;}
.wsaf{word-spacing:8.189257px;}
.ws142{word-spacing:8.249033px;}
.ws19d{word-spacing:8.272964px;}
.ws15b{word-spacing:8.308808px;}
.ws133{word-spacing:8.368584px;}
.ws17a{word-spacing:8.368605px;}
.ws16a{word-spacing:8.428359px;}
.ws15e{word-spacing:8.488135px;}
.ws2a{word-spacing:8.547898px;}
.ws195{word-spacing:8.607708px;}
.ws175{word-spacing:8.655529px;}
.wsb{word-spacing:8.661599px;}
.ws151{word-spacing:8.667462px;}
.ws26{word-spacing:8.787298px;}
.ws15d{word-spacing:8.846789px;}
.ws157{word-spacing:8.900296px;}
.ws159{word-spacing:8.906564px;}
.ws18b{word-spacing:8.942452px;}
.ws57{word-spacing:8.966340px;}
.ws160{word-spacing:9.085891px;}
.ws67{word-spacing:9.145667px;}
.ws12f{word-spacing:9.205442px;}
.ws1b9{word-spacing:9.229376px;}
.ws51{word-spacing:9.265218px;}
.ws104{word-spacing:9.381437px;}
.ws15a{word-spacing:9.384769px;}
.ws141{word-spacing:9.444545px;}
.ws12d{word-spacing:9.504320px;}
.ws63{word-spacing:9.623871px;}
.ws9d{word-spacing:9.743423px;}
.ws4a{word-spacing:9.743698px;}
.ws1ab{word-spacing:9.755402px;}
.wsc6{word-spacing:9.803198px;}
.ws55{word-spacing:9.862974px;}
.ws36{word-spacing:9.863098px;}
.ws18a{word-spacing:9.898864px;}
.wsff{word-spacing:9.898906px;}
.ws9f{word-spacing:9.922749px;}
.ws17f{word-spacing:9.946685px;}
.ws89{word-spacing:9.982525px;}
.wsa2{word-spacing:10.042301px;}
.wsa1{word-spacing:10.046136px;}
.ws21{word-spacing:10.101898px;}
.ws139{word-spacing:10.161852px;}
.ws4c{word-spacing:10.221627px;}
.ws113{word-spacing:10.281403px;}
.ws1b8{word-spacing:10.377070px;}
.ws180{word-spacing:10.424891px;}
.wse4{word-spacing:10.520505px;}
.wse6{word-spacing:10.580281px;}
.ws7f{word-spacing:10.640057px;}
.ws3c{word-spacing:10.640098px;}
.wsa5{word-spacing:10.819383px;}
.ws193{word-spacing:10.855276px;}
.ws98{word-spacing:10.998710px;}
.wsdf{word-spacing:11.118261px;}
.ws6a{word-spacing:11.297588px;}
.ws94{word-spacing:11.357364px;}
.wsb6{word-spacing:11.476915px;}
.ws169{word-spacing:11.536691px;}
.ws33{word-spacing:11.596498px;}
.ws14e{word-spacing:11.656242px;}
.ws130{word-spacing:11.835569px;}
.ws8c{word-spacing:11.895344px;}
.ws10c{word-spacing:11.955120px;}
.ws0{word-spacing:11.955298px;}
.ws13{word-spacing:11.955898px;}
.ws1a0{word-spacing:12.050791px;}
.ws44{word-spacing:12.074698px;}
.wsad{word-spacing:12.134447px;}
.ws25{word-spacing:12.134698px;}
.ws14b{word-spacing:12.194222px;}
.ws76{word-spacing:12.253998px;}
.ws59{word-spacing:12.433324px;}
.ws69{word-spacing:12.732202px;}
.ws179{word-spacing:12.768100px;}
.wse2{word-spacing:12.791978px;}
.ws103{word-spacing:12.849434px;}
.ws16{word-spacing:12.851698px;}
.ws114{word-spacing:12.851754px;}
.ws5d{word-spacing:13.031080px;}
.ws64{word-spacing:13.090856px;}
.ws23{word-spacing:13.150498px;}
.ws132{word-spacing:13.150632px;}
.ws4{word-spacing:13.234200px;}
.wsa7{word-spacing:13.294127px;}
.ws4f{word-spacing:13.329958px;}
.ws192{word-spacing:13.341947px;}
.ws50{word-spacing:13.389734px;}
.wsed{word-spacing:13.444214px;}
.ws53{word-spacing:13.449510px;}
.ws16d{word-spacing:13.569061px;}
.ws70{word-spacing:13.628836px;}
.ws84{word-spacing:13.748388px;}
.ws15{word-spacing:13.808098px;}
.ws14f{word-spacing:13.808163px;}
.wsf{word-spacing:13.933800px;}
.wsb5{word-spacing:13.987490px;}
.ws81{word-spacing:14.166817px;}
.ws1b4{word-spacing:14.202718px;}
.ws162{word-spacing:14.226592px;}
.ws24{word-spacing:14.405698px;}
.wse5{word-spacing:14.645022px;}
.ws17{word-spacing:14.645098px;}
.ws8e{word-spacing:14.704797px;}
.ws19{word-spacing:14.764498px;}
.wsa0{word-spacing:14.764573px;}
.wsc0{word-spacing:14.939626px;}
.ws10a{word-spacing:14.944121px;}
.wsf4{word-spacing:14.944423px;}
.ws110{word-spacing:15.003675px;}
.ws95{word-spacing:15.183002px;}
.ws146{word-spacing:15.242778px;}
.ws176{word-spacing:15.254771px;}
.ws3e{word-spacing:15.302098px;}
.ws92{word-spacing:15.302553px;}
.ws115{word-spacing:15.422104px;}
.ws96{word-spacing:15.601431px;}
.ws97{word-spacing:15.720982px;}
.ws119{word-spacing:15.840534px;}
.wsa4{word-spacing:15.900309px;}
.ws80{word-spacing:16.079636px;}
.ws111{word-spacing:16.139412px;}
.ws45{word-spacing:16.139698px;}
.ws93{word-spacing:16.199187px;}
.ws29{word-spacing:16.318498px;}
.ws7c{word-spacing:16.438290px;}
.ws161{word-spacing:16.617616px;}
.ws173{word-spacing:16.832851px;}
.wse3{word-spacing:16.856719px;}
.ws1ad{word-spacing:17.119775px;}
.ws3f{word-spacing:17.215498px;}
.ws147{word-spacing:17.394699px;}
.ws28{word-spacing:17.514297px;}
.ws5f{word-spacing:17.574026px;}
.ws99{word-spacing:17.693577px;}
.ws1b{word-spacing:17.693698px;}
.ws14c{word-spacing:17.813128px;}
.wsa{word-spacing:17.914799px;}
.wsdd{word-spacing:17.932122px;}
.wsca{word-spacing:17.932423px;}
.ws86{word-spacing:17.932680px;}
.ws1b7{word-spacing:17.932725px;}
.ws137{word-spacing:18.052231px;}
.ws3d{word-spacing:18.171898px;}
.ws181{word-spacing:18.267469px;}
.wsfa{word-spacing:18.309375px;}
.ws177{word-spacing:18.363110px;}
.wsea{word-spacing:18.410884px;}
.ws10{word-spacing:18.453000px;}
.ws11a{word-spacing:18.470660px;}
.ws83{word-spacing:18.590211px;}
.wsab{word-spacing:18.709762px;}
.ws88{word-spacing:18.769538px;}
.wsf0{word-spacing:18.801377px;}
.ws27{word-spacing:19.128298px;}
.ws60{word-spacing:19.247743px;}
.ws34{word-spacing:19.487097px;}
.ws102{word-spacing:19.595754px;}
.ws32{word-spacing:19.606498px;}
.ws117{word-spacing:19.666172px;}
.wsd2{word-spacing:19.787846px;}
.wsd5{word-spacing:19.793844px;}
.ws31{word-spacing:20.084697px;}
.wsba{word-spacing:20.262318px;}
.wsbc{word-spacing:20.263928px;}
.ws8b{word-spacing:20.323703px;}
.wsc{word-spacing:20.389800px;}
.ws8a{word-spacing:20.443255px;}
.ws5{word-spacing:20.497200px;}
.ws40{word-spacing:20.861623px;}
.ws9c{word-spacing:20.861684px;}
.ws1e{word-spacing:21.041097px;}
.wsda{word-spacing:21.047863px;}
.ws6d{word-spacing:21.459440px;}
.ws48{word-spacing:21.638697px;}
.ws82{word-spacing:21.818093px;}
.ws46{word-spacing:21.818098px;}
.ws18{word-spacing:21.878097px;}
.ws11{word-spacing:22.326600px;}
.ws9{word-spacing:22.379999px;}
.ws7e{word-spacing:22.595176px;}
.ws145{word-spacing:22.714727px;}
.ws6b{word-spacing:23.491810px;}
.ws116{word-spacing:23.850464px;}
.wsc9{word-spacing:24.107846px;}
.ws10b{word-spacing:24.207585px;}
.ws7{word-spacing:24.262799px;}
.ws16f{word-spacing:24.507995px;}
.ws2e{word-spacing:26.827651px;}
.ws14{word-spacing:29.828022px;}
.ws75{word-spacing:29.828024px;}
.ws1b2{word-spacing:31.991981px;}
.ws2d{word-spacing:32.225001px;}
.wsbb{word-spacing:38.161175px;}
.ws10f{word-spacing:41.783143px;}
.ws2f{word-spacing:44.903845px;}
.ws1b6{word-spacing:50.068168px;}
.ws2c{word-spacing:63.410239px;}
.ws1b5{word-spacing:68.287817px;}
.ws123{word-spacing:74.440020px;}
.wsf6{word-spacing:74.716423px;}
.ws109{word-spacing:74.722123px;}
.ws2b{word-spacing:75.700034px;}
.wsdc{word-spacing:77.710118px;}
.wsce{word-spacing:77.710423px;}
.ws12b{word-spacing:78.203891px;}
.ws126{word-spacing:85.721501px;}
.ws128{word-spacing:85.721694px;}
.ws122{word-spacing:86.979384px;}
.ws125{word-spacing:93.073145px;}
.ws129{word-spacing:100.584924px;}
.ws12a{word-spacing:128.148640px;}
.ws101{word-spacing:134.494134px;}
.wsf7{word-spacing:134.494419px;}
.wsd9{word-spacing:137.482118px;}
.wsd0{word-spacing:137.482423px;}
.wsf9{word-spacing:194.272415px;}
.wsd4{word-spacing:197.260421px;}
._3{margin-left:-13.868400px;}
._0{margin-left:-8.799000px;}
._9{margin-left:-7.446211px;}
._2{margin-left:-5.834999px;}
._8{margin-left:-4.295612px;}
._4{margin-left:-3.074188px;}
._1{margin-left:-1.530000px;}
._14{width:1.180758px;}
._12{width:2.988780px;}
._13{width:4.686394px;}
._5{width:9.138912px;}
._26{width:13.716270px;}
._25{width:15.043085px;}
._10{width:16.557841px;}
._16{width:19.546621px;}
._6{width:21.088800px;}
._15{width:22.451459px;}
._d{width:24.567599px;}
._a{width:26.060999px;}
._f{width:27.377224px;}
._e{width:29.887798px;}
._11{width:32.517926px;}
._7{width:34.885198px;}
._b{width:39.824599px;}
._27{width:80.195146px;}
._1c{width:81.462288px;}
._1d{width:85.889349px;}
._20{width:93.429663px;}
._21{width:100.764424px;}
._1f{width:104.077277px;}
._22{width:108.276375px;}
._19{width:132.863302px;}
._1a{width:136.201933px;}
._1b{width:139.152771px;}
._1e{width:150.428552px;}
._c{width:333.467172px;}
._17{width:424.949161px;}
._24{width:442.425784px;}
._23{width:445.900699px;}
._18{width:486.709999px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.887799px;}
.fsd{font-size:33.836324px;}
.fs5{font-size:35.865600px;}
.fs9{font-size:41.842800px;}
.fs7{font-size:42.000000px;}
.fsc{font-size:45.114910px;}
.fs2{font-size:47.820540px;}
.fsa{font-size:47.820600px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:53.798400px;}
.fs8{font-size:59.775599px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.753340px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y5d{bottom:32.862000px;}
.y5b{bottom:40.200000px;}
.y5a{bottom:54.600000px;}
.y35{bottom:90.709455px;}
.y149{bottom:90.709486px;}
.y57{bottom:90.709500px;}
.y176{bottom:90.709508px;}
.y112{bottom:90.709515px;}
.y1ca{bottom:90.709517px;}
.y95{bottom:90.709520px;}
.ycb{bottom:90.709545px;}
.ye9{bottom:96.090006px;}
.y34{bottom:104.158455px;}
.yca{bottom:108.378044px;}
.y148{bottom:108.641986px;}
.y56{bottom:108.642000px;}
.y175{bottom:108.642008px;}
.y111{bottom:108.642015px;}
.y1c9{bottom:108.642017px;}
.y94{bottom:108.642020px;}
.ye8{bottom:114.022506px;}
.y33{bottom:117.608955px;}
.y55{bottom:126.574500px;}
.y1c8{bottom:126.574517px;}
.y93{bottom:126.574520px;}
.y174{bottom:126.576008px;}
.y110{bottom:126.576015px;}
.y147{bottom:126.755986px;}
.ye7{bottom:131.955006px;}
.yc9{bottom:135.276043px;}
.y32{bottom:135.277455px;}
.y1c7{bottom:144.231017px;}
.y92{bottom:144.507020px;}
.y173{bottom:144.508508px;}
.y10f{bottom:144.508515px;}
.y146{bottom:144.688486px;}
.y31{bottom:145.090455px;}
.y54{bottom:145.162500px;}
.ye6{bottom:149.887506px;}
.yc8{bottom:153.210043px;}
.y30{bottom:158.539455px;}
.y1c6{bottom:162.163517px;}
.y172{bottom:162.441008px;}
.y1a0{bottom:162.441020px;}
.y145{bottom:162.620986px;}
.y53{bottom:163.095000px;}
.y10e{bottom:164.020515px;}
.y91{bottom:165.448520px;}
.ye5{bottom:167.820006px;}
.y246{bottom:169.513600px;}
.yc7{bottom:171.142543px;}
.y2f{bottom:171.989955px;}
.y1c5{bottom:180.096017px;}
.y171{bottom:180.373508px;}
.y19f{bottom:180.373520px;}
.y144{bottom:180.553486px;}
.y52{bottom:181.027500px;}
.y10d{bottom:181.953015px;}
.y245{bottom:182.962599px;}
.y90{bottom:183.381020px;}
.ye4{bottom:185.754006px;}
.yc6{bottom:189.075043px;}
.y2e{bottom:189.658455px;}
.y244{bottom:196.411599px;}
.y1c4{bottom:198.028517px;}
.y19e{bottom:198.306020px;}
.y143{bottom:198.485986px;}
.y51{bottom:198.960000px;}
.y10c{bottom:199.887015px;}
.y5c{bottom:201.252000px;}
.y8f{bottom:201.315020px;}
.ye3{bottom:203.686506px;}
.y170{bottom:203.869507px;}
.y200{bottom:205.032038px;}
.yc5{bottom:207.007543px;}
.y243{bottom:209.862099px;}
.y1c3{bottom:215.962517px;}
.y19d{bottom:216.238520px;}
.y50{bottom:216.894000px;}
.y2d{bottom:217.400955px;}
.y10b{bottom:217.819515px;}
.y1ff{bottom:218.481037px;}
.y8e{bottom:219.247520px;}
.ye2{bottom:221.619006px;}
.y142{bottom:221.756986px;}
.y16f{bottom:223.021507px;}
.y242{bottom:223.311098px;}
.yc4{bottom:224.940043px;}
.y1fe{bottom:231.930036px;}
.y1c2{bottom:233.895017px;}
.y19c{bottom:234.171020px;}
.y4f{bottom:234.826500px;}
.y2c{bottom:235.333455px;}
.y10a{bottom:235.752015px;}
.y241{bottom:236.761598px;}
.y8d{bottom:237.180020px;}
.ye1{bottom:239.551506px;}
.y16e{bottom:240.954007px;}
.yc3{bottom:242.874043px;}
.y1fd{bottom:245.380536px;}
.y240{bottom:250.210597px;}
.y141{bottom:251.308486px;}
.y1c1{bottom:251.827517px;}
.y19b{bottom:252.105020px;}
.y4e{bottom:252.759000px;}
.y2b{bottom:253.265955px;}
.y109{bottom:253.684515px;}
.y8c{bottom:255.112520px;}
.y1fc{bottom:258.829536px;}
.y16d{bottom:258.886507px;}
.yc2{bottom:260.806543px;}
.y23f{bottom:263.659597px;}
.y140{bottom:269.240986px;}
.y1c0{bottom:269.760017px;}
.y4d{bottom:270.691500px;}
.y2a{bottom:271.198455px;}
.y108{bottom:271.617015px;}
.y1fb{bottom:272.280036px;}
.y19a{bottom:274.257020px;}
.y16c{bottom:276.819007px;}
.y23e{bottom:277.110097px;}
.y8b{bottom:277.785020px;}
.yc1{bottom:278.739043px;}
.y1fa{bottom:285.729035px;}
.y13f{bottom:287.173486px;}
.y1bf{bottom:287.692517px;}
.y29{bottom:289.130955px;}
.y107{bottom:289.549515px;}
.y23d{bottom:290.559096px;}
.y16b{bottom:294.753007px;}
.y4c{bottom:295.621500px;}
.yc0{bottom:296.671543px;}
.y1f9{bottom:299.178035px;}
.y199{bottom:299.347519px;}
.y23c{bottom:304.008096px;}
.y13e{bottom:305.107486px;}
.y1be{bottom:305.626517px;}
.y8a{bottom:305.884519px;}
.y28{bottom:307.064955px;}
.y106{bottom:307.483515px;}
.y1f8{bottom:312.628535px;}
.y16a{bottom:312.685507px;}
.ybf{bottom:314.604043px;}
.y198{bottom:317.280019px;}
.y23b{bottom:317.458596px;}
.y1bd{bottom:323.559017px;}
.y89{bottom:323.817019px;}
.y27{bottom:324.997455px;}
.y105{bottom:325.416015px;}
.y1f7{bottom:326.077534px;}
.y13d{bottom:326.408986px;}
.y4b{bottom:329.205000px;}
.y169{bottom:330.618007px;}
.y23a{bottom:330.907595px;}
.ybe{bottom:332.536543px;}
.y197{bottom:335.214019px;}
.y1f6{bottom:339.526533px;}
.y88{bottom:341.749519px;}
.y26{bottom:342.929955px;}
.y13c{bottom:344.341486px;}
.y239{bottom:344.358095px;}
.y104{bottom:344.928015px;}
.y1bc{bottom:345.922517px;}
.y4a{bottom:347.137500px;}
.y168{bottom:348.550507px;}
.y1f5{bottom:352.977033px;}
.y196{bottom:353.146519px;}
.ybd{bottom:356.563542px;}
.y238{bottom:357.807094px;}
.y87{bottom:359.682019px;}
.y25{bottom:360.862455px;}
.y13b{bottom:362.273986px;}
.y103{bottom:362.860515px;}
.y49{bottom:365.070000px;}
.y1f4{bottom:366.426033px;}
.y195{bottom:371.079019px;}
.y237{bottom:371.256094px;}
.y1bb{bottom:372.283516px;}
.y86{bottom:377.614519px;}
.y24{bottom:378.794955px;}
.y1f3{bottom:379.876533px;}
.y13a{bottom:380.206486px;}
.y102{bottom:380.794515px;}
.y48{bottom:383.002500px;}
.y236{bottom:384.706594px;}
.ybc{bottom:387.949542px;}
.y194{bottom:389.011519px;}
.y1ba{bottom:390.216016px;}
.y1f2{bottom:393.325532px;}
.y85{bottom:395.547019px;}
.y23{bottom:396.728955px;}
.y139{bottom:398.140486px;}
.y235{bottom:398.155593px;}
.y101{bottom:398.727015px;}
.y47{bottom:400.935000px;}
.y167{bottom:404.590871px;}
.ybb{bottom:405.882042px;}
.y1f1{bottom:406.774532px;}
.y193{bottom:406.944019px;}
.y1b9{bottom:408.148516px;}
.y234{bottom:411.604593px;}
.y84{bottom:413.481019px;}
.y22{bottom:414.661455px;}
.y138{bottom:416.072986px;}
.y100{bottom:416.659515px;}
.y166{bottom:417.843593px;}
.y46{bottom:418.867500px;}
.y1f0{bottom:420.225032px;}
.yba{bottom:424.210542px;}
.y192{bottom:424.878019px;}
.y233{bottom:425.055093px;}
.y1b8{bottom:426.081016px;}
.y165{bottom:431.096271px;}
.y83{bottom:431.413519px;}
.y21{bottom:432.593955px;}
.y1ef{bottom:433.674031px;}
.y137{bottom:434.005486px;}
.y45{bottom:436.801500px;}
.y232{bottom:438.504092px;}
.yb9{bottom:442.143042px;}
.y191{bottom:442.810519px;}
.y1b7{bottom:444.015016px;}
.y164{bottom:444.348950px;}
.y1ee{bottom:447.123030px;}
.y82{bottom:449.346019px;}
.y20{bottom:450.526455px;}
.y136{bottom:451.937986px;}
.y231{bottom:451.954592px;}
.y44{bottom:454.734000px;}
.y163{bottom:457.601672px;}
.yb8{bottom:460.075542px;}
.y1ed{bottom:460.573530px;}
.y190{bottom:460.743019px;}
.y1b6{bottom:461.947516px;}
.y230{bottom:465.403591px;}
.y81{bottom:467.278519px;}
.y1f{bottom:468.458955px;}
.y135{bottom:469.870486px;}
.y43{bottom:473.320500px;}
.y1ec{bottom:474.022530px;}
.y162{bottom:474.237914px;}
.yff{bottom:476.074455px;}
.yb7{bottom:478.009542px;}
.y18f{bottom:478.675519px;}
.y22f{bottom:478.852591px;}
.ye0{bottom:479.041459px;}
.y1b5{bottom:479.880016px;}
.y80{bottom:485.211019px;}
.y1e{bottom:486.877455px;}
.y1eb{bottom:487.473030px;}
.y161{bottom:487.490636px;}
.y134{bottom:487.802986px;}
.y42{bottom:491.253000px;}
.y22e{bottom:492.303091px;}
.yfe{bottom:494.008455px;}
.yb6{bottom:495.942042px;}
.y18e{bottom:496.608019px;}
.ydf{bottom:496.973959px;}
.y1b4{bottom:497.812516px;}
.y160{bottom:500.741889px;}
.y1ea{bottom:500.922029px;}
.y7f{bottom:503.154019px;}
.y1d{bottom:504.809955px;}
.y133{bottom:505.736986px;}
.y22d{bottom:505.752090px;}
.yfd{bottom:508.246455px;}
.y41{bottom:509.187000px;}
.yfc{bottom:511.940955px;}
.yb5{bottom:513.874542px;}
.y15f{bottom:513.994611px;}
.y18d{bottom:514.053019px;}
.y1e9{bottom:514.371029px;}
.yde{bottom:514.906459px;}
.y1b3{bottom:515.745016px;}
.y22c{bottom:519.201090px;}
.y7e{bottom:521.086519px;}
.y1c{bottom:522.742455px;}
.y132{bottom:523.669486px;}
.yfb{bottom:526.661955px;}
.y40{bottom:527.119500px;}
.y15e{bottom:527.247290px;}
.y1e8{bottom:527.821529px;}
.yfa{bottom:530.356455px;}
.yb4{bottom:531.807042px;}
.y18c{bottom:531.985519px;}
.y22b{bottom:532.651590px;}
.ydd{bottom:533.072959px;}
.y1b2{bottom:533.677516px;}
.y7d{bottom:539.019019px;}
.y1b{bottom:540.676455px;}
.y1e7{bottom:541.270528px;}
.y131{bottom:541.601986px;}
.y15d{bottom:543.883575px;}
.y3f{bottom:545.052000px;}
.y22a{bottom:546.100589px;}
.yf9{bottom:548.288955px;}
.yb3{bottom:549.739542px;}
.y18b{bottom:549.918019px;}
.ydc{bottom:551.006959px;}
.y1b1{bottom:551.611516px;}
.y1e6{bottom:554.719527px;}
.y7c{bottom:556.951519px;}
.y15c{bottom:557.136253px;}
.y1a{bottom:558.608955px;}
.y229{bottom:559.549589px;}
.y130{bottom:562.903486px;}
.y3e{bottom:562.984500px;}
.yf8{bottom:566.221455px;}
.yb2{bottom:567.673542px;}
.y18a{bottom:567.852019px;}
.y1e5{bottom:568.170027px;}
.y1b0{bottom:569.544016px;}
.y15b{bottom:570.388932px;}
.y228{bottom:573.000089px;}
.ydb{bottom:574.465459px;}
.y7b{bottom:574.884019px;}
.y19{bottom:576.541455px;}
.yf7{bottom:580.460955px;}
.y12f{bottom:580.835986px;}
.y3d{bottom:580.917000px;}
.y1e4{bottom:581.619027px;}
.y15a{bottom:583.641611px;}
.yf6{bottom:584.155455px;}
.y189{bottom:585.784519px;}
.yb1{bottom:586.002042px;}
.y227{bottom:586.449088px;}
.y1af{bottom:587.476516px;}
.y7a{bottom:592.818019px;}
.y18{bottom:594.473955px;}
.y1e3{bottom:595.068026px;}
.y159{bottom:596.894332px;}
.y226{bottom:599.899588px;}
.yf5{bottom:602.087955px;}
.y188{bottom:603.717019px;}
.yb0{bottom:603.934542px;}
.y12e{bottom:604.106986px;}
.yda{bottom:604.475959px;}
.y1ae{bottom:605.409016px;}
.y1e2{bottom:608.518526px;}
.y79{bottom:610.750519px;}
.y17{bottom:612.406455px;}
.y225{bottom:613.348587px;}
.y158{bottom:613.529193px;}
.yf4{bottom:620.020455px;}
.y187{bottom:621.649519px;}
.yaf{bottom:621.867042px;}
.y1e1{bottom:621.967526px;}
.yd9{bottom:622.408459px;}
.y1ad{bottom:623.341516px;}
.y157{bottom:626.781871px;}
.y224{bottom:626.797587px;}
.y12d{bottom:627.827986px;}
.y78{bottom:628.683019px;}
.y1e0{bottom:635.418026px;}
.y3c{bottom:636.460500px;}
.y16{bottom:636.745455px;}
.yf3{bottom:637.952955px;}
.y186{bottom:639.582019px;}
.yae{bottom:639.799542px;}
.y156{bottom:640.034550px;}
.y223{bottom:640.248087px;}
.yd8{bottom:640.340959px;}
.y1ac{bottom:640.998016px;}
.y77{bottom:646.615519px;}
.y1df{bottom:648.867025px;}
.y155{bottom:653.287272px;}
.y222{bottom:653.697086px;}
.y3b{bottom:654.393000px;}
.yf2{bottom:655.885455px;}
.y12c{bottom:657.379486px;}
.y185{bottom:657.514519px;}
.yad{bottom:657.732042px;}
.yd7{bottom:658.274959px;}
.y1ab{bottom:658.930516px;}
.y15{bottom:662.299455px;}
.y1de{bottom:662.316025px;}
.y76{bottom:664.548019px;}
.y154{bottom:666.539950px;}
.y221{bottom:667.146086px;}
.y3a{bottom:672.325500px;}
.yf1{bottom:673.819455px;}
.y184{bottom:675.448519px;}
.yac{bottom:675.666042px;}
.y1dd{bottom:675.766525px;}
.yd6{bottom:676.207459px;}
.y1aa{bottom:676.864516px;}
.y153{bottom:679.792629px;}
.y220{bottom:680.596586px;}
.y75{bottom:682.480519px;}
.y1dc{bottom:689.215524px;}
.y39{bottom:690.259500px;}
.yf0{bottom:691.751955px;}
.y152{bottom:693.045351px;}
.y183{bottom:693.381019px;}
.yab{bottom:693.598542px;}
.y21f{bottom:694.045585px;}
.yd5{bottom:694.139959px;}
.y14{bottom:694.445955px;}
.y1a9{bottom:694.797016px;}
.y74{bottom:700.414519px;}
.y1db{bottom:702.664523px;}
.y21e{bottom:707.496085px;}
.y38{bottom:708.192000px;}
.y13{bottom:709.388955px;}
.yef{bottom:709.684455px;}
.y182{bottom:711.313519px;}
.yaa{bottom:711.531042px;}
.yd4{bottom:712.072459px;}
.y1a8{bottom:712.729516px;}
.y12b{bottom:712.742990px;}
.y1da{bottom:716.115023px;}
.y151{bottom:716.836503px;}
.y73{bottom:718.347019px;}
.y21d{bottom:720.945084px;}
.y12{bottom:724.333455px;}
.y37{bottom:726.124500px;}
.yee{bottom:727.616955px;}
.y12a{bottom:727.687490px;}
.y181{bottom:729.246019px;}
.ya9{bottom:729.463542px;}
.y1d9{bottom:729.564023px;}
.yd3{bottom:730.004959px;}
.y1a7{bottom:730.662016px;}
.y21c{bottom:734.394084px;}
.y72{bottom:736.279519px;}
.y11{bottom:739.277955px;}
.y129{bottom:742.631990px;}
.y1d8{bottom:743.014523px;}
.yed{bottom:745.549455px;}
.y180{bottom:747.178519px;}
.ya8{bottom:747.396042px;}
.y21b{bottom:747.844584px;}
.yd2{bottom:748.172959px;}
.y1a6{bottom:748.594516px;}
.y36{bottom:752.136015px;}
.y71{bottom:754.212019px;}
.y10{bottom:754.220955px;}
.y150{bottom:755.953501px;}
.y1d7{bottom:756.463522px;}
.y128{bottom:757.574990px;}
.y21a{bottom:761.293583px;}
.yec{bottom:763.481955px;}
.ya7{bottom:765.328542px;}
.yd1{bottom:766.105459px;}
.y1a5{bottom:766.527016px;}
.y17f{bottom:766.528518px;}
.yf{bottom:769.165455px;}
.y1d6{bottom:769.912522px;}
.y70{bottom:772.144519px;}
.y127{bottom:772.519490px;}
.y14f{bottom:773.887501px;}
.y219{bottom:774.742583px;}
.yeb{bottom:781.415955px;}
.ya6{bottom:783.262542px;}
.y1d5{bottom:783.363022px;}
.yd0{bottom:784.037959px;}
.ye{bottom:784.109955px;}
.y1a4{bottom:784.461016px;}
.y17e{bottom:784.461018px;}
.y126{bottom:787.462489px;}
.y218{bottom:788.193083px;}
.y6f{bottom:790.078519px;}
.y14e{bottom:791.820001px;}
.y1d4{bottom:796.812021px;}
.yd{bottom:799.052955px;}
.ya5{bottom:801.591041px;}
.y217{bottom:801.642082px;}
.ycf{bottom:801.970459px;}
.y1a3{bottom:802.393516px;}
.y17d{bottom:802.393518px;}
.yea{bottom:805.421997px;}
.y6e{bottom:808.011019px;}
.y14d{bottom:809.752501px;}
.y1d3{bottom:810.261020px;}
.yc{bottom:813.997455px;}
.y216{bottom:815.092582px;}
.y125{bottom:819.068988px;}
.ya4{bottom:819.523541px;}
.y1a2{bottom:820.326016px;}
.y17c{bottom:820.326018px;}
.y1d2{bottom:823.711520px;}
.y6d{bottom:825.943519px;}
.y124{bottom:827.438988px;}
.y14c{bottom:827.685001px;}
.y215{bottom:828.541581px;}
.yb{bottom:828.941955px;}
.y1d1{bottom:837.160520px;}
.ya3{bottom:837.456041px;}
.y1a1{bottom:838.258516px;}
.y17b{bottom:838.258518px;}
.y214{bottom:841.990581px;}
.ya{bottom:843.884955px;}
.y6c{bottom:843.885019px;}
.y1d0{bottom:850.611020px;}
.y123{bottom:852.469488px;}
.y14b{bottom:853.687500px;}
.ya2{bottom:855.388541px;}
.y213{bottom:855.441081px;}
.yce{bottom:855.769460px;}
.y9{bottom:858.829455px;}
.y6b{bottom:861.817519px;}
.y122{bottom:867.413988px;}
.y212{bottom:868.890080px;}
.y1cf{bottom:872.802019px;}
.ycd{bottom:873.701960px;}
.y8{bottom:873.773955px;}
.y6a{bottom:879.751519px;}
.ya1{bottom:880.405541px;}
.y211{bottom:882.339080px;}
.y121{bottom:882.356988px;}
.y7{bottom:888.716955px;}
.ycc{bottom:891.634460px;}
.y17a{bottom:892.057520px;}
.y210{bottom:895.789580px;}
.y120{bottom:897.301488px;}
.y69{bottom:897.684019px;}
.y1ce{bottom:900.822019px;}
.y6{bottom:903.661455px;}
.y20f{bottom:909.238579px;}
.y179{bottom:909.990020px;}
.ya0{bottom:911.791540px;}
.y11f{bottom:912.244488px;}
.y68{bottom:915.616519px;}
.y5{bottom:918.604455px;}
.y1cd{bottom:918.754519px;}
.y20e{bottom:922.687578px;}
.y11e{bottom:927.188988px;}
.y178{bottom:927.922520px;}
.y9f{bottom:929.724040px;}
.y4{bottom:933.548955px;}
.y67{bottom:933.549019px;}
.y20d{bottom:936.138078px;}
.y1cc{bottom:936.687019px;}
.y11d{bottom:942.133488px;}
.y9e{bottom:947.656540px;}
.y20c{bottom:949.587078px;}
.y66{bottom:951.481519px;}
.y177{bottom:953.925018px;}
.y11c{bottom:957.076488px;}
.y1cb{bottom:959.328019px;}
.y20b{bottom:963.037578px;}
.y9d{bottom:965.589040px;}
.y65{bottom:969.414019px;}
.y11b{bottom:972.020987px;}
.y20a{bottom:976.486577px;}
.y9c{bottom:983.521540px;}
.y11a{bottom:986.965486px;}
.y64{bottom:987.348019px;}
.y209{bottom:989.935577px;}
.y3{bottom:993.389955px;}
.y14a{bottom:994.488007px;}
.y9b{bottom:1001.455540px;}
.y119{bottom:1001.908486px;}
.y208{bottom:1003.386077px;}
.y63{bottom:1005.280519px;}
.y2{bottom:1013.362455px;}
.y207{bottom:1014.247577px;}
.y118{bottom:1016.852986px;}
.y9a{bottom:1019.388040px;}
.y62{bottom:1023.213019px;}
.y206{bottom:1027.696576px;}
.y117{bottom:1031.797486px;}
.y99{bottom:1037.320540px;}
.y61{bottom:1041.145519px;}
.y205{bottom:1041.145575px;}
.y116{bottom:1046.740486px;}
.y204{bottom:1054.596075px;}
.y60{bottom:1059.078019px;}
.y98{bottom:1059.078040px;}
.y1{bottom:1060.435455px;}
.y115{bottom:1061.684986px;}
.y203{bottom:1068.045075px;}
.y114{bottom:1076.629486px;}
.y5f{bottom:1077.010519px;}
.y97{bottom:1077.010540px;}
.y202{bottom:1081.494074px;}
.y96{bottom:1094.943040px;}
.y5e{bottom:1094.944519px;}
.y201{bottom:1094.944574px;}
.y113{bottom:1098.395966px;}
.y59{bottom:1123.200000px;}
.y58{bottom:1137.600000px;}
.h7{height:23.850624px;}
.h12{height:24.675533px;}
.h1e{height:24.871000px;}
.h20{height:31.039058px;}
.h1f{height:31.309748px;}
.h23{height:31.944161px;}
.h8{height:32.900532px;}
.h13{height:32.900573px;}
.h22{height:33.140573px;}
.hc{height:34.453125px;}
.h21{height:35.852638px;}
.h9{height:35.937331px;}
.ha{height:37.013299px;}
.hb{height:37.125000px;}
.h4{height:37.336090px;}
.h3{height:37.605082px;}
.h1b{height:38.519654px;}
.h1d{height:40.348800px;}
.hf{height:40.826734px;}
.h6{height:40.826735px;}
.he{height:41.125612px;}
.h5{height:41.125613px;}
.h14{height:41.484265px;}
.h1c{height:41.532365px;}
.hd{height:43.804688px;}
.h11{height:44.831699px;}
.h15{height:46.146762px;}
.h10{height:50.477846px;}
.h16{height:51.147331px;}
.h1a{height:51.153331px;}
.h2{height:55.554659px;}
.h18{height:59.609699px;}
.h19{height:60.924762px;}
.h17{height:65.925331px;}
.h1{height:66.374993px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:26.400015px;}
.xd{left:40.884750px;}
.x5{left:80.999985px;}
.x1a{left:87.838498px;}
.x7{left:93.701985px;}
.x4{left:95.944485px;}
.x1{left:102.319500px;}
.x19{left:103.864496px;}
.x2f{left:108.388495px;}
.xe{left:111.033000px;}
.x2b{left:117.358500px;}
.x1b{left:148.696485px;}
.x2d{left:185.599503px;}
.x6{left:195.506985px;}
.x1c{left:196.835991px;}
.x1f{left:221.472004px;}
.x2e{left:222.757498px;}
.x2{left:226.855500px;}
.x1d{left:269.084991px;}
.x3{left:289.080015px;}
.x1e{left:308.897990px;}
.xb{left:448.992000px;}
.x9{left:469.799970px;}
.x16{left:472.453518px;}
.x13{left:478.431022px;}
.x11{left:481.754997px;}
.x27{left:482.771079px;}
.xa{left:484.744470px;}
.x26{left:489.402385px;}
.x29{left:491.280256px;}
.x12{left:495.204026px;}
.x25{left:498.171932px;}
.xf{left:499.833010px;}
.x2a{left:506.158518px;}
.x8{left:513.115500px;}
.x20{left:516.961487px;}
.x21{left:530.552994px;}
.x17{left:532.611017px;}
.x22{left:550.534498px;}
.x24{left:565.382143px;}
.x10{left:590.203505px;}
.x2c{left:593.228994px;}
.x30{left:614.572487px;}
.x18{left:628.980007px;}
.x28{left:636.697603px;}
.x23{left:640.876487px;}
.x14{left:681.067509px;}
.x15{left:702.751508px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v9{vertical-align:-10.629333pt;}
.v4{vertical-align:-7.968000pt;}
.v8{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.168000pt;}
.v5{vertical-align:13.136000pt;}
.va{vertical-align:14.153816pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.v6{vertical-align:32.416000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000058pt;}
.ls57{letter-spacing:0.000154pt;}
.ls4c{letter-spacing:0.000296pt;}
.ls4b{letter-spacing:0.000495pt;}
.ls45{letter-spacing:0.000693pt;}
.ls2f{letter-spacing:0.000883pt;}
.ls3a{letter-spacing:0.001249pt;}
.ls3c{letter-spacing:0.001323pt;}
.ls41{letter-spacing:0.001394pt;}
.ls58{letter-spacing:0.001413pt;}
.ls40{letter-spacing:0.001495pt;}
.ls1c{letter-spacing:0.001504pt;}
.lse{letter-spacing:0.001995pt;}
.ls1e{letter-spacing:0.002105pt;}
.ls31{letter-spacing:0.002387pt;}
.ls27{letter-spacing:0.002906pt;}
.lsb{letter-spacing:0.003310pt;}
.ls5e{letter-spacing:0.003733pt;}
.ls2a{letter-spacing:0.004352pt;}
.ls2b{letter-spacing:0.006837pt;}
.lsf{letter-spacing:1.471333pt;}
.ls30{letter-spacing:1.476130pt;}
.ls5d{letter-spacing:2.505278pt;}
.ls7{letter-spacing:2.635446pt;}
.ls14{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.653286pt;}
.ls60{letter-spacing:2.655712pt;}
.ls1{letter-spacing:2.656047pt;}
.ls52{letter-spacing:2.656297pt;}
.ls4{letter-spacing:2.656473pt;}
.ls3{letter-spacing:2.656533pt;}
.ls15{letter-spacing:2.656546pt;}
.ls5c{letter-spacing:2.656693pt;}
.lsa{letter-spacing:2.657067pt;}
.ls28{letter-spacing:2.657985pt;}
.ls59{letter-spacing:2.658091pt;}
.ls13{letter-spacing:2.658244pt;}
.ls53{letter-spacing:2.658539pt;}
.ls0{letter-spacing:2.658620pt;}
.ls5a{letter-spacing:2.660927pt;}
.ls29{letter-spacing:3.991361pt;}
.lsc{letter-spacing:4.179733pt;}
.ls46{letter-spacing:5.313626pt;}
.ls47{letter-spacing:6.264866pt;}
.ls4e{letter-spacing:6.295353pt;}
.ls56{letter-spacing:6.300687pt;}
.ls55{letter-spacing:10.918719pt;}
.ls2e{letter-spacing:11.808480pt;}
.ls51{letter-spacing:12.289494pt;}
.ls38{letter-spacing:13.649188pt;}
.ls3f{letter-spacing:13.649386pt;}
.ls50{letter-spacing:13.649780pt;}
.ls44{letter-spacing:13.655115pt;}
.ls20{letter-spacing:14.756985pt;}
.ls11{letter-spacing:14.757812pt;}
.ls26{letter-spacing:14.759466pt;}
.ls22{letter-spacing:14.761686pt;}
.ls3e{letter-spacing:15.020162pt;}
.ls42{letter-spacing:16.309630pt;}
.ls37{letter-spacing:16.311368pt;}
.ls5b{letter-spacing:16.736693pt;}
.ls43{letter-spacing:16.736890pt;}
.ls36{letter-spacing:16.746964pt;}
.ls17{letter-spacing:17.015721pt;}
.ls16{letter-spacing:17.017067pt;}
.ls54{letter-spacing:17.223353pt;}
.ls1f{letter-spacing:17.414347pt;}
.ls2d{letter-spacing:18.103352pt;}
.ls3b{letter-spacing:18.159252pt;}
.ls1d{letter-spacing:18.593867pt;}
.ls24{letter-spacing:18.596350pt;}
.ls34{letter-spacing:18.599578pt;}
.ls25{letter-spacing:18.601067pt;}
.ls32{letter-spacing:18.770906pt;}
.ls2c{letter-spacing:18.942399pt;}
.ls35{letter-spacing:19.388061pt;}
.ls3d{letter-spacing:19.394034pt;}
.lsd{letter-spacing:20.276667pt;}
.ls4f{letter-spacing:20.768890pt;}
.ls1b{letter-spacing:20.806837pt;}
.ls5f{letter-spacing:21.007132pt;}
.ls19{letter-spacing:21.050317pt;}
.ls18{letter-spacing:21.055019pt;}
.ls23{letter-spacing:21.254347pt;}
.ls4a{letter-spacing:21.329186pt;}
.ls10{letter-spacing:22.138725pt;}
.ls8{letter-spacing:22.220661pt;}
.ls39{letter-spacing:23.563991pt;}
.ls49{letter-spacing:23.984297pt;}
.ls48{letter-spacing:23.989630pt;}
.ls9{letter-spacing:24.124466pt;}
.ls1a{letter-spacing:24.657014pt;}
.ls21{letter-spacing:25.978725pt;}
.ls4d{letter-spacing:27.623352pt;}
.ls33{letter-spacing:29.655721pt;}
.ls6{letter-spacing:31.878586pt;}
.wsc2{word-spacing:-53.133865pt;}
.ws106{word-spacing:-38.964388pt;}
.wsb0{word-spacing:-34.611400pt;}
.wsef{word-spacing:-32.063846pt;}
.wsfd{word-spacing:-27.822141pt;}
.wsc4{word-spacing:-25.791178pt;}
.wsc3{word-spacing:-25.738044pt;}
.wsfb{word-spacing:-23.886490pt;}
.wsd7{word-spacing:-21.759169pt;}
.wsd6{word-spacing:-18.804502pt;}
.ws135{word-spacing:-16.013940pt;}
.ws16e{word-spacing:-15.940160pt;}
.ws13c{word-spacing:-15.309940pt;}
.ws13e{word-spacing:-15.304604pt;}
.wsdb{word-spacing:-14.760588pt;}
.ws152{word-spacing:-14.541689pt;}
.ws87{word-spacing:-13.262246pt;}
.ws138{word-spacing:-12.552606pt;}
.ws12{word-spacing:-11.955200pt;}
.wsfe{word-spacing:-10.735770pt;}
.ws10d{word-spacing:-10.626800pt;}
.ws127{word-spacing:-10.025536pt;}
.wsec{word-spacing:-5.887232pt;}
.wsd8{word-spacing:-2.964870pt;}
.ws100{word-spacing:-2.749696pt;}
.ws79{word-spacing:-0.956410pt;}
.ws131{word-spacing:-0.903276pt;}
.ws54{word-spacing:-0.797008pt;}
.wsa6{word-spacing:-0.743874pt;}
.ws47{word-spacing:-0.637601pt;}
.ws118{word-spacing:-0.478205pt;}
.ws144{word-spacing:-0.425071pt;}
.ws11d{word-spacing:-0.371937pt;}
.ws19a{word-spacing:-0.170029pt;}
.ws72{word-spacing:-0.159402pt;}
.ws58{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws182{word-spacing:-0.042507pt;}
.wscc{word-spacing:-0.037194pt;}
.wsfc{word-spacing:-0.031881pt;}
.ws105{word-spacing:-0.023910pt;}
.ws4b{word-spacing:0.000000pt;}
.ws194{word-spacing:0.042507pt;}
.ws18d{word-spacing:0.255043pt;}
.ws62{word-spacing:0.265669pt;}
.ws112{word-spacing:0.318803pt;}
.ws1b3{word-spacing:0.382565pt;}
.ws8d{word-spacing:0.478205pt;}
.ws1a8{word-spacing:0.510086pt;}
.ws8{word-spacing:0.573866pt;}
.ws5c{word-spacing:0.584473pt;}
.ws184{word-spacing:0.595101pt;}
.ws1a9{word-spacing:0.637608pt;}
.ws13a{word-spacing:0.690740pt;}
.ws170{word-spacing:0.743874pt;}
.wse1{word-spacing:0.850142pt;}
.ws172{word-spacing:0.850144pt;}
.ws19f{word-spacing:0.892651pt;}
.ws5e{word-spacing:1.115811pt;}
.ws166{word-spacing:1.168945pt;}
.ws191{word-spacing:1.317723pt;}
.ws7d{word-spacing:1.381480pt;}
.ws35{word-spacing:1.381599pt;}
.ws1a1{word-spacing:1.402738pt;}
.ws77{word-spacing:1.434614pt;}
.ws66{word-spacing:1.647150pt;}
.ws1b1{word-spacing:1.657781pt;}
.wsc7{word-spacing:1.698434pt;}
.wsc8{word-spacing:1.700284pt;}
.ws17c{word-spacing:1.742795pt;}
.ws74{word-spacing:1.753418pt;}
.ws120{word-spacing:1.806551pt;}
.ws18c{word-spacing:1.827810pt;}
.wsb8{word-spacing:1.859685pt;}
.ws6{word-spacing:1.912533pt;}
.ws3a{word-spacing:1.912799pt;}
.ws5b{word-spacing:1.912819pt;}
.ws39{word-spacing:1.966132pt;}
.ws188{word-spacing:2.040346pt;}
.ws165{word-spacing:2.072221pt;}
.wsf1{word-spacing:2.132897pt;}
.wsf2{word-spacing:2.151936pt;}
.ws17d{word-spacing:2.167867pt;}
.ws16b{word-spacing:2.178488pt;}
.ws197{word-spacing:2.210374pt;}
.wsa3{word-spacing:2.231622pt;}
.ws37{word-spacing:2.231732pt;}
.wsee{word-spacing:2.247578pt;}
.ws7a{word-spacing:2.337890pt;}
.ws17e{word-spacing:2.337896pt;}
.ws1a7{word-spacing:2.422910pt;}
.wsde{word-spacing:2.444158pt;}
.ws174{word-spacing:2.465418pt;}
.ws11e{word-spacing:2.603559pt;}
.wseb{word-spacing:2.656693pt;}
.ws163{word-spacing:2.702571pt;}
.ws6f{word-spacing:2.709827pt;}
.ws18e{word-spacing:2.720461pt;}
.wsa9{word-spacing:2.762961pt;}
.ws15f{word-spacing:2.816095pt;}
.wsae{word-spacing:2.869229pt;}
.wsac{word-spacing:2.922363pt;}
.ws196{word-spacing:2.932997pt;}
.ws148{word-spacing:2.975496pt;}
.ws1a5{word-spacing:3.018011pt;}
.ws15c{word-spacing:3.028630pt;}
.ws85{word-spacing:3.081764pt;}
.ws9e{word-spacing:3.134898pt;}
.wsbd{word-spacing:3.188032pt;}
.ws19c{word-spacing:3.230547pt;}
.ws1ae{word-spacing:3.273054pt;}
.ws16c{word-spacing:3.347434pt;}
.ws4e{word-spacing:3.400567pt;}
.ws1af{word-spacing:3.400576pt;}
.ws17b{word-spacing:3.443083pt;}
.ws164{word-spacing:3.453701pt;}
.ws189{word-spacing:3.570605pt;}
.ws41{word-spacing:3.666399pt;}
.wsc1{word-spacing:3.719371pt;}
.wsc5{word-spacing:3.726500pt;}
.ws19e{word-spacing:3.825648pt;}
.wsb7{word-spacing:3.878772pt;}
.wsb4{word-spacing:3.985040pt;}
.ws1aa{word-spacing:3.995677pt;}
.ws124{word-spacing:4.010214pt;}
.ws12e{word-spacing:4.038174pt;}
.ws1a4{word-spacing:4.123198pt;}
.ws9b{word-spacing:4.197575pt;}
.ws186{word-spacing:4.208213pt;}
.wsa8{word-spacing:4.250720pt;}
.wse{word-spacing:4.256000pt;}
.ws183{word-spacing:4.293227pt;}
.ws52{word-spacing:4.303843pt;}
.ws78{word-spacing:4.463245pt;}
.wsb2{word-spacing:4.516379pt;}
.ws91{word-spacing:4.622646pt;}
.ws20{word-spacing:4.622666pt;}
.ws167{word-spacing:4.675780pt;}
.ws7b{word-spacing:4.728914pt;}
.ws198{word-spacing:4.760806pt;}
.ws107{word-spacing:4.778328pt;}
.wsf8{word-spacing:4.778349pt;}
.ws108{word-spacing:4.781551pt;}
.wsf5{word-spacing:4.781592pt;}
.ws30{word-spacing:4.781866pt;}
.wsf3{word-spacing:4.782080pt;}
.ws187{word-spacing:4.803314pt;}
.ws1d{word-spacing:4.834932pt;}
.ws4d{word-spacing:4.835182pt;}
.wsb1{word-spacing:4.888316pt;}
.ws199{word-spacing:4.888328pt;}
.wsbe{word-spacing:4.941449pt;}
.wse8{word-spacing:4.994583pt;}
.ws121{word-spacing:5.012768pt;}
.ws14a{word-spacing:5.100851pt;}
.ws171{word-spacing:5.100864pt;}
.ws56{word-spacing:5.207119pt;}
.ws143{word-spacing:5.260253pt;}
.ws190{word-spacing:5.270893pt;}
.wscf{word-spacing:5.310371pt;}
.ws154{word-spacing:5.311763pt;}
.wscb{word-spacing:5.312315pt;}
.ws1c{word-spacing:5.313332pt;}
.ws5a{word-spacing:5.313387pt;}
.wsd1{word-spacing:5.313639pt;}
.ws136{word-spacing:5.313894pt;}
.ws134{word-spacing:5.314690pt;}
.wsd3{word-spacing:5.314917pt;}
.wscd{word-spacing:5.315701pt;}
.ws11b{word-spacing:5.366520pt;}
.wse9{word-spacing:5.472788pt;}
.ws71{word-spacing:5.525922pt;}
.ws178{word-spacing:5.525936pt;}
.ws6e{word-spacing:5.579056pt;}
.ws14d{word-spacing:5.632190pt;}
.ws61{word-spacing:5.685324pt;}
.ws1f{word-spacing:5.685598pt;}
.ws38{word-spacing:5.738399pt;}
.ws8f{word-spacing:5.738457pt;}
.wsb9{word-spacing:5.782440pt;}
.ws68{word-spacing:5.791591pt;}
.ws18f{word-spacing:5.823486pt;}
.ws42{word-spacing:5.844532pt;}
.ws2{word-spacing:5.844675pt;}
.ws73{word-spacing:5.844725pt;}
.ws1{word-spacing:5.845208pt;}
.ws10e{word-spacing:5.897859pt;}
.ws1a3{word-spacing:5.908501pt;}
.ws65{word-spacing:5.950993pt;}
.ws3b{word-spacing:6.003999pt;}
.ws13f{word-spacing:6.004127pt;}
.ws13b{word-spacing:6.018722pt;}
.ws13d{word-spacing:6.023232pt;}
.ws1b0{word-spacing:6.036022pt;}
.ws168{word-spacing:6.057261pt;}
.ws22{word-spacing:6.057332pt;}
.ws150{word-spacing:6.110395pt;}
.wse0{word-spacing:6.269796pt;}
.ws12c{word-spacing:6.429198pt;}
.ws158{word-spacing:6.453097pt;}
.wsb3{word-spacing:6.482332pt;}
.ws1a2{word-spacing:6.503602pt;}
.ws19b{word-spacing:6.546109pt;}
.wse7{word-spacing:6.588599pt;}
.ws1a6{word-spacing:6.588616pt;}
.wsbf{word-spacing:6.641510pt;}
.ws140{word-spacing:6.694867pt;}
.ws90{word-spacing:6.748001pt;}
.ws155{word-spacing:6.782166pt;}
.ws153{word-spacing:6.783254pt;}
.ws156{word-spacing:6.801135pt;}
.ws6c{word-spacing:6.907402pt;}
.ws11f{word-spacing:6.960536pt;}
.ws43{word-spacing:7.013599pt;}
.ws9a{word-spacing:7.066804pt;}
.ws1ac{word-spacing:7.098702pt;}
.ws149{word-spacing:7.119938pt;}
.ws49{word-spacing:7.173065pt;}
.wsaa{word-spacing:7.173072pt;}
.ws11c{word-spacing:7.226206pt;}
.ws185{word-spacing:7.226224pt;}
.ws1a{word-spacing:7.226399pt;}
.wsd{word-spacing:7.268800pt;}
.wsaf{word-spacing:7.279340pt;}
.ws142{word-spacing:7.332473pt;}
.ws19d{word-spacing:7.353746pt;}
.ws15b{word-spacing:7.385607pt;}
.ws133{word-spacing:7.438741pt;}
.ws17a{word-spacing:7.438760pt;}
.ws16a{word-spacing:7.491875pt;}
.ws15e{word-spacing:7.545009pt;}
.ws2a{word-spacing:7.598132pt;}
.ws195{word-spacing:7.651296pt;}
.ws175{word-spacing:7.693803pt;}
.wsb{word-spacing:7.699199pt;}
.ws151{word-spacing:7.704410pt;}
.ws26{word-spacing:7.810932pt;}
.ws15d{word-spacing:7.863812pt;}
.ws157{word-spacing:7.911374pt;}
.ws159{word-spacing:7.916946pt;}
.ws18b{word-spacing:7.948846pt;}
.ws57{word-spacing:7.970080pt;}
.ws160{word-spacing:8.076348pt;}
.ws67{word-spacing:8.129481pt;}
.ws12f{word-spacing:8.182615pt;}
.ws1b9{word-spacing:8.203890pt;}
.ws51{word-spacing:8.235749pt;}
.ws104{word-spacing:8.339055pt;}
.ws15a{word-spacing:8.342017pt;}
.ws141{word-spacing:8.395151pt;}
.ws12d{word-spacing:8.448285pt;}
.ws63{word-spacing:8.554552pt;}
.ws9d{word-spacing:8.660820pt;}
.ws4a{word-spacing:8.661065pt;}
.ws1ab{word-spacing:8.671469pt;}
.wsc6{word-spacing:8.713954pt;}
.ws55{word-spacing:8.767088pt;}
.ws36{word-spacing:8.767199pt;}
.ws18a{word-spacing:8.798990pt;}
.wsff{word-spacing:8.799027pt;}
.ws9f{word-spacing:8.820222pt;}
.ws17f{word-spacing:8.841498pt;}
.ws89{word-spacing:8.873356pt;}
.wsa2{word-spacing:8.926489pt;}
.wsa1{word-spacing:8.929899pt;}
.ws21{word-spacing:8.979465pt;}
.ws139{word-spacing:9.032757pt;}
.ws4c{word-spacing:9.085891pt;}
.ws113{word-spacing:9.139025pt;}
.ws1b8{word-spacing:9.224062pt;}
.ws180{word-spacing:9.266570pt;}
.wse4{word-spacing:9.351560pt;}
.wse6{word-spacing:9.404694pt;}
.ws7f{word-spacing:9.457828pt;}
.ws3c{word-spacing:9.457865pt;}
.wsa5{word-spacing:9.617230pt;}
.ws193{word-spacing:9.649134pt;}
.ws98{word-spacing:9.776631pt;}
.wsdf{word-spacing:9.882899pt;}
.ws6a{word-spacing:10.042301pt;}
.ws94{word-spacing:10.095434pt;}
.wsb6{word-spacing:10.201702pt;}
.ws169{word-spacing:10.254836pt;}
.ws33{word-spacing:10.307998pt;}
.ws14e{word-spacing:10.361104pt;}
.ws130{word-spacing:10.520505pt;}
.ws8c{word-spacing:10.573639pt;}
.ws10c{word-spacing:10.626773pt;}
.ws0{word-spacing:10.626932pt;}
.ws13{word-spacing:10.627465pt;}
.ws1a0{word-spacing:10.711814pt;}
.ws44{word-spacing:10.733065pt;}
.wsad{word-spacing:10.786175pt;}
.ws25{word-spacing:10.786398pt;}
.ws14b{word-spacing:10.839309pt;}
.ws76{word-spacing:10.892442pt;}
.ws59{word-spacing:11.051844pt;}
.ws69{word-spacing:11.317513pt;}
.ws179{word-spacing:11.349422pt;}
.wse2{word-spacing:11.370647pt;}
.ws103{word-spacing:11.421719pt;}
.ws16{word-spacing:11.423731pt;}
.ws114{word-spacing:11.423781pt;}
.ws5d{word-spacing:11.583183pt;}
.ws64{word-spacing:11.636317pt;}
.ws23{word-spacing:11.689332pt;}
.ws132{word-spacing:11.689450pt;}
.ws4{word-spacing:11.763733pt;}
.wsa7{word-spacing:11.817002pt;}
.ws4f{word-spacing:11.848852pt;}
.ws192{word-spacing:11.859509pt;}
.ws50{word-spacing:11.901986pt;}
.wsed{word-spacing:11.950413pt;}
.ws53{word-spacing:11.955120pt;}
.ws16d{word-spacing:12.061387pt;}
.ws70{word-spacing:12.114521pt;}
.ws84{word-spacing:12.220789pt;}
.ws15{word-spacing:12.273865pt;}
.ws14f{word-spacing:12.273923pt;}
.wsf{word-spacing:12.385600pt;}
.wsb5{word-spacing:12.433324pt;}
.ws81{word-spacing:12.592726pt;}
.ws1b4{word-spacing:12.624638pt;}
.ws162{word-spacing:12.645860pt;}
.ws24{word-spacing:12.805065pt;}
.wse5{word-spacing:13.017797pt;}
.ws17{word-spacing:13.017865pt;}
.ws8e{word-spacing:13.070931pt;}
.ws19{word-spacing:13.123998pt;}
.wsa0{word-spacing:13.124065pt;}
.wsc0{word-spacing:13.279667pt;}
.ws10a{word-spacing:13.283663pt;}
.wsf4{word-spacing:13.283932pt;}
.ws110{word-spacing:13.336600pt;}
.ws95{word-spacing:13.496002pt;}
.ws146{word-spacing:13.549136pt;}
.ws176{word-spacing:13.559797pt;}
.ws3e{word-spacing:13.601865pt;}
.ws92{word-spacing:13.602270pt;}
.ws115{word-spacing:13.708537pt;}
.ws96{word-spacing:13.867939pt;}
.ws97{word-spacing:13.974207pt;}
.ws119{word-spacing:14.080474pt;}
.wsa4{word-spacing:14.133608pt;}
.ws80{word-spacing:14.293010pt;}
.ws111{word-spacing:14.346144pt;}
.ws45{word-spacing:14.346398pt;}
.ws93{word-spacing:14.399278pt;}
.ws29{word-spacing:14.505331pt;}
.ws7c{word-spacing:14.611813pt;}
.ws161{word-spacing:14.771215pt;}
.ws173{word-spacing:14.962534pt;}
.wse3{word-spacing:14.983750pt;}
.ws1ad{word-spacing:15.217578pt;}
.ws3f{word-spacing:15.302665pt;}
.ws147{word-spacing:15.461955pt;}
.ws28{word-spacing:15.568264pt;}
.ws5f{word-spacing:15.621356pt;}
.ws99{word-spacing:15.727624pt;}
.ws1b{word-spacing:15.727731pt;}
.ws14c{word-spacing:15.833892pt;}
.wsa{word-spacing:15.924266pt;}
.wsdd{word-spacing:15.939664pt;}
.wsca{word-spacing:15.939932pt;}
.ws86{word-spacing:15.940160pt;}
.ws1b7{word-spacing:15.940200pt;}
.ws137{word-spacing:16.046427pt;}
.ws3d{word-spacing:16.152798pt;}
.ws181{word-spacing:16.237750pt;}
.wsfa{word-spacing:16.275000pt;}
.ws177{word-spacing:16.322765pt;}
.wsea{word-spacing:16.365231pt;}
.ws10{word-spacing:16.402666pt;}
.ws11a{word-spacing:16.418364pt;}
.ws83{word-spacing:16.524632pt;}
.wsab{word-spacing:16.630900pt;}
.ws88{word-spacing:16.684034pt;}
.wsf0{word-spacing:16.712335pt;}
.ws27{word-spacing:17.002931pt;}
.ws60{word-spacing:17.109105pt;}
.ws34{word-spacing:17.321864pt;}
.ws102{word-spacing:17.418448pt;}
.ws32{word-spacing:17.427998pt;}
.ws117{word-spacing:17.481042pt;}
.wsd2{word-spacing:17.589197pt;}
.wsd5{word-spacing:17.594528pt;}
.ws31{word-spacing:17.853064pt;}
.wsba{word-spacing:18.010949pt;}
.wsbc{word-spacing:18.012380pt;}
.ws8b{word-spacing:18.065514pt;}
.wsc{word-spacing:18.124266pt;}
.ws8a{word-spacing:18.171782pt;}
.ws5{word-spacing:18.219733pt;}
.ws40{word-spacing:18.543665pt;}
.ws9c{word-spacing:18.543719pt;}
.ws1e{word-spacing:18.703198pt;}
.wsda{word-spacing:18.709211pt;}
.ws6d{word-spacing:19.075058pt;}
.ws48{word-spacing:19.234398pt;}
.ws82{word-spacing:19.393861pt;}
.ws46{word-spacing:19.393865pt;}
.ws18{word-spacing:19.447198pt;}
.ws11{word-spacing:19.845866pt;}
.ws9{word-spacing:19.893333pt;}
.ws7e{word-spacing:20.084601pt;}
.ws145{word-spacing:20.190869pt;}
.ws6b{word-spacing:20.881609pt;}
.ws116{word-spacing:21.200412pt;}
.wsc9{word-spacing:21.429197pt;}
.ws10b{word-spacing:21.517854pt;}
.ws7{word-spacing:21.566933pt;}
.ws16f{word-spacing:21.784885pt;}
.ws2e{word-spacing:23.846801pt;}
.ws14{word-spacing:26.513797pt;}
.ws75{word-spacing:26.513799pt;}
.ws1b2{word-spacing:28.437317pt;}
.ws2d{word-spacing:28.644445pt;}
.wsbb{word-spacing:33.921044pt;}
.ws10f{word-spacing:37.140572pt;}
.ws2f{word-spacing:39.914529pt;}
.ws1b6{word-spacing:44.505038pt;}
.ws2c{word-spacing:56.364657pt;}
.ws1b5{word-spacing:60.700282pt;}
.ws123{word-spacing:66.168907pt;}
.wsf6{word-spacing:66.414598pt;}
.ws109{word-spacing:66.419665pt;}
.ws2b{word-spacing:67.288919pt;}
.wsdc{word-spacing:69.075661pt;}
.wsce{word-spacing:69.075932pt;}
.ws12b{word-spacing:69.514570pt;}
.ws126{word-spacing:76.196890pt;}
.ws128{word-spacing:76.197062pt;}
.ws122{word-spacing:77.315008pt;}
.ws125{word-spacing:82.731685pt;}
.ws129{word-spacing:89.408821pt;}
.ws12a{word-spacing:113.909902pt;}
.ws101{word-spacing:119.550341pt;}
.wsf7{word-spacing:119.550594pt;}
.wsd9{word-spacing:122.206327pt;}
.wsd0{word-spacing:122.206598pt;}
.wsf9{word-spacing:172.686591pt;}
.wsd4{word-spacing:175.342597pt;}
._3{margin-left:-12.327466pt;}
._0{margin-left:-7.821333pt;}
._9{margin-left:-6.618854pt;}
._2{margin-left:-5.186666pt;}
._8{margin-left:-3.818322pt;}
._4{margin-left:-2.732612pt;}
._1{margin-left:-1.360000pt;}
._14{width:1.049563pt;}
._12{width:2.656693pt;}
._13{width:4.165683pt;}
._5{width:8.123477pt;}
._26{width:12.192240pt;}
._25{width:13.371631pt;}
._10{width:14.718081pt;}
._16{width:17.374774pt;}
._6{width:18.745600pt;}
._15{width:19.956853pt;}
._d{width:21.837866pt;}
._a{width:23.165332pt;}
._f{width:24.335310pt;}
._e{width:26.566931pt;}
._11{width:28.904823pt;}
._7{width:31.009065pt;}
._b{width:35.399644pt;}
._27{width:71.284574pt;}
._1c{width:72.410923pt;}
._1d{width:76.346088pt;}
._20{width:83.048589pt;}
._21{width:89.568377pt;}
._1f{width:92.513135pt;}
._22{width:96.245667pt;}
._19{width:118.100713pt;}
._1a{width:121.068385pt;}
._1b{width:123.691352pt;}
._1e{width:133.714268pt;}
._c{width:296.415264pt;}
._17{width:377.732587pt;}
._24{width:393.267363pt;}
._23{width:396.356177pt;}
._18{width:432.631110pt;}
.fsb{font-size:26.566933pt;}
.fsd{font-size:30.076733pt;}
.fs5{font-size:31.880533pt;}
.fs9{font-size:37.193600pt;}
.fs7{font-size:37.333333pt;}
.fsc{font-size:40.102143pt;}
.fs2{font-size:42.507147pt;}
.fsa{font-size:42.507200pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:47.820800pt;}
.fs8{font-size:53.133865pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.447413pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:29.210667pt;}
.y5b{bottom:35.733333pt;}
.y5a{bottom:48.533333pt;}
.y35{bottom:80.630627pt;}
.y149{bottom:80.630654pt;}
.y57{bottom:80.630667pt;}
.y176{bottom:80.630674pt;}
.y112{bottom:80.630680pt;}
.y1ca{bottom:80.630682pt;}
.y95{bottom:80.630684pt;}
.ycb{bottom:80.630706pt;}
.ye9{bottom:85.413339pt;}
.y34{bottom:92.585293pt;}
.yca{bottom:96.336039pt;}
.y148{bottom:96.570654pt;}
.y56{bottom:96.570667pt;}
.y175{bottom:96.570674pt;}
.y111{bottom:96.570680pt;}
.y1c9{bottom:96.570682pt;}
.y94{bottom:96.570684pt;}
.ye8{bottom:101.353339pt;}
.y33{bottom:104.541293pt;}
.y55{bottom:112.510667pt;}
.y1c8{bottom:112.510682pt;}
.y93{bottom:112.510684pt;}
.y174{bottom:112.512007pt;}
.y110{bottom:112.512014pt;}
.y147{bottom:112.671988pt;}
.ye7{bottom:117.293339pt;}
.yc9{bottom:120.245371pt;}
.y32{bottom:120.246627pt;}
.y1c7{bottom:128.205348pt;}
.y92{bottom:128.450684pt;}
.y173{bottom:128.452007pt;}
.y10f{bottom:128.452014pt;}
.y146{bottom:128.611988pt;}
.y31{bottom:128.969293pt;}
.y54{bottom:129.033333pt;}
.ye6{bottom:133.233339pt;}
.yc8{bottom:136.186705pt;}
.y30{bottom:140.923960pt;}
.y1c6{bottom:144.145348pt;}
.y172{bottom:144.392007pt;}
.y1a0{bottom:144.392018pt;}
.y145{bottom:144.551988pt;}
.y53{bottom:144.973333pt;}
.y10e{bottom:145.796014pt;}
.y91{bottom:147.065351pt;}
.ye5{bottom:149.173339pt;}
.y246{bottom:150.678755pt;}
.yc7{bottom:152.126705pt;}
.y2f{bottom:152.879960pt;}
.y1c5{bottom:160.085348pt;}
.y171{bottom:160.332007pt;}
.y19f{bottom:160.332018pt;}
.y144{bottom:160.491988pt;}
.y52{bottom:160.913333pt;}
.y10d{bottom:161.736014pt;}
.y245{bottom:162.633422pt;}
.y90{bottom:163.005351pt;}
.ye4{bottom:165.114672pt;}
.yc6{bottom:168.066705pt;}
.y2e{bottom:168.585293pt;}
.y244{bottom:174.588088pt;}
.y1c4{bottom:176.025348pt;}
.y19e{bottom:176.272018pt;}
.y143{bottom:176.431988pt;}
.y51{bottom:176.853333pt;}
.y10c{bottom:177.677347pt;}
.y5c{bottom:178.890667pt;}
.y8f{bottom:178.946684pt;}
.ye3{bottom:181.054672pt;}
.y170{bottom:181.217340pt;}
.y200{bottom:182.250700pt;}
.yc5{bottom:184.006705pt;}
.y243{bottom:186.544088pt;}
.y1c3{bottom:191.966682pt;}
.y19d{bottom:192.212018pt;}
.y50{bottom:192.794667pt;}
.y2d{bottom:193.245293pt;}
.y10b{bottom:193.617347pt;}
.y1ff{bottom:194.205366pt;}
.y8e{bottom:194.886684pt;}
.ye2{bottom:196.994672pt;}
.y142{bottom:197.117321pt;}
.y16f{bottom:198.241339pt;}
.y242{bottom:198.498754pt;}
.yc4{bottom:199.946705pt;}
.y1fe{bottom:206.160032pt;}
.y1c2{bottom:207.906682pt;}
.y19c{bottom:208.152018pt;}
.y4f{bottom:208.734667pt;}
.y2c{bottom:209.185293pt;}
.y10a{bottom:209.557347pt;}
.y241{bottom:210.454754pt;}
.y8d{bottom:210.826684pt;}
.ye1{bottom:212.934672pt;}
.y16e{bottom:214.181339pt;}
.yc3{bottom:215.888038pt;}
.y1fd{bottom:218.116032pt;}
.y240{bottom:222.409420pt;}
.y141{bottom:223.385321pt;}
.y1c1{bottom:223.846682pt;}
.y19b{bottom:224.093351pt;}
.y4e{bottom:224.674667pt;}
.y2b{bottom:225.125293pt;}
.y109{bottom:225.497347pt;}
.y8c{bottom:226.766684pt;}
.y1fc{bottom:230.070699pt;}
.y16d{bottom:230.121339pt;}
.yc2{bottom:231.828038pt;}
.y23f{bottom:234.364086pt;}
.y140{bottom:239.325321pt;}
.y1c0{bottom:239.786682pt;}
.y4d{bottom:240.614667pt;}
.y2a{bottom:241.065293pt;}
.y108{bottom:241.437347pt;}
.y1fb{bottom:242.026699pt;}
.y19a{bottom:243.784017pt;}
.y16c{bottom:246.061339pt;}
.y23e{bottom:246.320086pt;}
.y8b{bottom:246.920017pt;}
.yc1{bottom:247.768038pt;}
.y1fa{bottom:253.981365pt;}
.y13f{bottom:255.265321pt;}
.y1bf{bottom:255.726682pt;}
.y29{bottom:257.005293pt;}
.y107{bottom:257.377347pt;}
.y23d{bottom:258.274752pt;}
.y16b{bottom:262.002673pt;}
.y4c{bottom:262.774667pt;}
.yc0{bottom:263.708038pt;}
.y1f9{bottom:265.936031pt;}
.y199{bottom:266.086683pt;}
.y23c{bottom:270.229418pt;}
.y13e{bottom:271.206654pt;}
.y1be{bottom:271.668015pt;}
.y8a{bottom:271.897350pt;}
.y28{bottom:272.946627pt;}
.y106{bottom:273.318680pt;}
.y1f8{bottom:277.892031pt;}
.y16a{bottom:277.942673pt;}
.ybf{bottom:279.648038pt;}
.y198{bottom:282.026683pt;}
.y23b{bottom:282.185418pt;}
.y1bd{bottom:287.608015pt;}
.y89{bottom:287.837350pt;}
.y27{bottom:288.886627pt;}
.y105{bottom:289.258680pt;}
.y1f7{bottom:289.846697pt;}
.y13d{bottom:290.141321pt;}
.y4b{bottom:292.626667pt;}
.y169{bottom:293.882673pt;}
.y23a{bottom:294.140085pt;}
.ybe{bottom:295.588038pt;}
.y197{bottom:297.968017pt;}
.y1f6{bottom:301.801363pt;}
.y88{bottom:303.777350pt;}
.y26{bottom:304.826627pt;}
.y13c{bottom:306.081321pt;}
.y239{bottom:306.096085pt;}
.y104{bottom:306.602680pt;}
.y1bc{bottom:307.486682pt;}
.y4a{bottom:308.566667pt;}
.y168{bottom:309.822673pt;}
.y1f5{bottom:313.757363pt;}
.y196{bottom:313.908017pt;}
.ybd{bottom:316.945371pt;}
.y238{bottom:318.050751pt;}
.y87{bottom:319.717350pt;}
.y25{bottom:320.766627pt;}
.y13b{bottom:322.021321pt;}
.y103{bottom:322.542680pt;}
.y49{bottom:324.506667pt;}
.y1f4{bottom:325.712029pt;}
.y195{bottom:329.848017pt;}
.y237{bottom:330.005417pt;}
.y1bb{bottom:330.918681pt;}
.y86{bottom:335.657350pt;}
.y24{bottom:336.706627pt;}
.y1f3{bottom:337.668029pt;}
.y13a{bottom:337.961321pt;}
.y102{bottom:338.484014pt;}
.y48{bottom:340.446667pt;}
.y236{bottom:341.961417pt;}
.ybc{bottom:344.844037pt;}
.y194{bottom:345.788017pt;}
.y1ba{bottom:346.858681pt;}
.y1f2{bottom:349.622695pt;}
.y85{bottom:351.597350pt;}
.y23{bottom:352.647960pt;}
.y139{bottom:353.902654pt;}
.y235{bottom:353.916083pt;}
.y101{bottom:354.424014pt;}
.y47{bottom:356.386667pt;}
.y167{bottom:359.636330pt;}
.ybb{bottom:360.784037pt;}
.y1f1{bottom:361.577361pt;}
.y193{bottom:361.728017pt;}
.y1b9{bottom:362.798681pt;}
.y234{bottom:365.870749pt;}
.y84{bottom:367.538684pt;}
.y22{bottom:368.587960pt;}
.y138{bottom:369.842654pt;}
.y100{bottom:370.364014pt;}
.y166{bottom:371.416527pt;}
.y46{bottom:372.326667pt;}
.y1f0{bottom:373.533361pt;}
.yba{bottom:377.076037pt;}
.y192{bottom:377.669350pt;}
.y233{bottom:377.826749pt;}
.y1b8{bottom:378.738681pt;}
.y165{bottom:383.196686pt;}
.y83{bottom:383.478684pt;}
.y21{bottom:384.527960pt;}
.y1ef{bottom:385.488028pt;}
.y137{bottom:385.782654pt;}
.y45{bottom:388.268000pt;}
.y232{bottom:389.781415pt;}
.yb9{bottom:393.016037pt;}
.y191{bottom:393.609350pt;}
.y1b7{bottom:394.680014pt;}
.y164{bottom:394.976844pt;}
.y1ee{bottom:397.442694pt;}
.y82{bottom:399.418684pt;}
.y20{bottom:400.467960pt;}
.y136{bottom:401.722654pt;}
.y231{bottom:401.737415pt;}
.y44{bottom:404.208000pt;}
.y163{bottom:406.757042pt;}
.yb8{bottom:408.956037pt;}
.y1ed{bottom:409.398694pt;}
.y190{bottom:409.549350pt;}
.y1b6{bottom:410.620014pt;}
.y230{bottom:413.692081pt;}
.y81{bottom:415.358684pt;}
.y1f{bottom:416.407960pt;}
.y135{bottom:417.662654pt;}
.y43{bottom:420.729333pt;}
.y1ec{bottom:421.353360pt;}
.y162{bottom:421.544812pt;}
.yff{bottom:423.177293pt;}
.yb7{bottom:424.897371pt;}
.y18f{bottom:425.489350pt;}
.y22f{bottom:425.646747pt;}
.ye0{bottom:425.814630pt;}
.y1b5{bottom:426.560014pt;}
.y80{bottom:431.298684pt;}
.y1e{bottom:432.779960pt;}
.y1eb{bottom:433.309360pt;}
.y161{bottom:433.325009pt;}
.y134{bottom:433.602654pt;}
.y42{bottom:436.669333pt;}
.y22e{bottom:437.602747pt;}
.yfe{bottom:439.118627pt;}
.yb6{bottom:440.837371pt;}
.y18e{bottom:441.429350pt;}
.ydf{bottom:441.754630pt;}
.y1b4{bottom:442.500014pt;}
.y160{bottom:445.103901pt;}
.y1ea{bottom:445.264026pt;}
.y7f{bottom:447.248017pt;}
.y1d{bottom:448.719960pt;}
.y133{bottom:449.543988pt;}
.y22d{bottom:449.557414pt;}
.yfd{bottom:451.774627pt;}
.y41{bottom:452.610667pt;}
.yfc{bottom:455.058627pt;}
.yb5{bottom:456.777371pt;}
.y15f{bottom:456.884099pt;}
.y18d{bottom:456.936017pt;}
.y1e9{bottom:457.218692pt;}
.yde{bottom:457.694630pt;}
.y1b3{bottom:458.440014pt;}
.y22c{bottom:461.512080pt;}
.y7e{bottom:463.188017pt;}
.y1c{bottom:464.659960pt;}
.y132{bottom:465.483988pt;}
.yfb{bottom:468.143960pt;}
.y40{bottom:468.550667pt;}
.y15e{bottom:468.664257pt;}
.y1e8{bottom:469.174692pt;}
.yfa{bottom:471.427960pt;}
.yb4{bottom:472.717371pt;}
.y18c{bottom:472.876017pt;}
.y22b{bottom:473.468080pt;}
.ydd{bottom:473.842630pt;}
.y1b2{bottom:474.380014pt;}
.y7d{bottom:479.128017pt;}
.y1b{bottom:480.601293pt;}
.y1e7{bottom:481.129358pt;}
.y131{bottom:481.423988pt;}
.y15d{bottom:483.452066pt;}
.y3f{bottom:484.490667pt;}
.y22a{bottom:485.422746pt;}
.yf9{bottom:487.367960pt;}
.yb3{bottom:488.657371pt;}
.y18b{bottom:488.816017pt;}
.ydc{bottom:489.783963pt;}
.y1b1{bottom:490.321348pt;}
.y1e6{bottom:493.084024pt;}
.y7c{bottom:495.068017pt;}
.y15c{bottom:495.232225pt;}
.y1a{bottom:496.541293pt;}
.y229{bottom:497.377412pt;}
.y130{bottom:500.358654pt;}
.y3e{bottom:500.430667pt;}
.yf8{bottom:503.307960pt;}
.yb2{bottom:504.598704pt;}
.y18a{bottom:504.757350pt;}
.y1e5{bottom:505.040024pt;}
.y1b0{bottom:506.261348pt;}
.y15b{bottom:507.012384pt;}
.y228{bottom:509.333412pt;}
.ydb{bottom:510.635963pt;}
.y7b{bottom:511.008017pt;}
.y19{bottom:512.481293pt;}
.yf7{bottom:515.965293pt;}
.y12f{bottom:516.298654pt;}
.y3d{bottom:516.370667pt;}
.y1e4{bottom:516.994691pt;}
.y15a{bottom:518.792543pt;}
.yf6{bottom:519.249293pt;}
.y189{bottom:520.697350pt;}
.yb1{bottom:520.890704pt;}
.y227{bottom:521.288078pt;}
.y1af{bottom:522.201348pt;}
.y7a{bottom:526.949350pt;}
.y18{bottom:528.421293pt;}
.y1e3{bottom:528.949357pt;}
.y159{bottom:530.572740pt;}
.y226{bottom:533.244078pt;}
.yf5{bottom:535.189293pt;}
.y188{bottom:536.637350pt;}
.yb0{bottom:536.830704pt;}
.y12e{bottom:536.983988pt;}
.yda{bottom:537.311963pt;}
.y1ae{bottom:538.141348pt;}
.y1e2{bottom:540.905357pt;}
.y79{bottom:542.889350pt;}
.y17{bottom:544.361293pt;}
.y225{bottom:545.198744pt;}
.y158{bottom:545.359282pt;}
.yf4{bottom:551.129293pt;}
.y187{bottom:552.577350pt;}
.yaf{bottom:552.770704pt;}
.y1e1{bottom:552.860023pt;}
.yd9{bottom:553.251963pt;}
.y1ad{bottom:554.081348pt;}
.y157{bottom:557.139441pt;}
.y224{bottom:557.153410pt;}
.y12d{bottom:558.069321pt;}
.y78{bottom:558.829350pt;}
.y1e0{bottom:564.816023pt;}
.y3c{bottom:565.742667pt;}
.y16{bottom:565.995960pt;}
.yf3{bottom:567.069293pt;}
.y186{bottom:568.517350pt;}
.yae{bottom:568.710704pt;}
.y156{bottom:568.919600pt;}
.y223{bottom:569.109410pt;}
.yd8{bottom:569.191963pt;}
.y1ac{bottom:569.776014pt;}
.y77{bottom:574.769350pt;}
.y1df{bottom:576.770689pt;}
.y155{bottom:580.699797pt;}
.y222{bottom:581.064077pt;}
.y3b{bottom:581.682667pt;}
.yf2{bottom:583.009293pt;}
.y12c{bottom:584.337321pt;}
.y185{bottom:584.457350pt;}
.yad{bottom:584.650704pt;}
.yd7{bottom:585.133297pt;}
.y1ab{bottom:585.716014pt;}
.y15{bottom:588.710627pt;}
.y1de{bottom:588.725355pt;}
.y76{bottom:590.709350pt;}
.y154{bottom:592.479956pt;}
.y221{bottom:593.018743pt;}
.y3a{bottom:597.622667pt;}
.yf1{bottom:598.950626pt;}
.y184{bottom:600.398683pt;}
.yac{bottom:600.592037pt;}
.y1dd{bottom:600.681355pt;}
.yd6{bottom:601.073297pt;}
.y1aa{bottom:601.657348pt;}
.y153{bottom:604.260115pt;}
.y220{bottom:604.974743pt;}
.y75{bottom:606.649350pt;}
.y1dc{bottom:612.636021pt;}
.y39{bottom:613.564000pt;}
.yf0{bottom:614.890626pt;}
.y152{bottom:616.040312pt;}
.y183{bottom:616.338683pt;}
.yab{bottom:616.532037pt;}
.y21f{bottom:616.929409pt;}
.yd5{bottom:617.013297pt;}
.y14{bottom:617.285293pt;}
.y1a9{bottom:617.597348pt;}
.y74{bottom:622.590684pt;}
.y1db{bottom:624.590687pt;}
.y21e{bottom:628.885409pt;}
.y38{bottom:629.504000pt;}
.y13{bottom:630.567960pt;}
.yef{bottom:630.830626pt;}
.y182{bottom:632.278683pt;}
.yaa{bottom:632.472037pt;}
.yd4{bottom:632.953297pt;}
.y1a8{bottom:633.537348pt;}
.y12b{bottom:633.549325pt;}
.y1da{bottom:636.546687pt;}
.y151{bottom:637.188002pt;}
.y73{bottom:638.530684pt;}
.y21d{bottom:640.840075pt;}
.y12{bottom:643.851960pt;}
.y37{bottom:645.444000pt;}
.yee{bottom:646.770626pt;}
.y12a{bottom:646.833325pt;}
.y181{bottom:648.218683pt;}
.ya9{bottom:648.412037pt;}
.y1d9{bottom:648.501354pt;}
.yd3{bottom:648.893297pt;}
.y1a7{bottom:649.477348pt;}
.y21c{bottom:652.794741pt;}
.y72{bottom:654.470684pt;}
.y11{bottom:657.135960pt;}
.y129{bottom:660.117325pt;}
.y1d8{bottom:660.457354pt;}
.yed{bottom:662.710626pt;}
.y180{bottom:664.158683pt;}
.ya8{bottom:664.352037pt;}
.y21b{bottom:664.750741pt;}
.yd2{bottom:665.042630pt;}
.y1a6{bottom:665.417348pt;}
.y36{bottom:668.565347pt;}
.y71{bottom:670.410684pt;}
.y10{bottom:670.418627pt;}
.y150{bottom:671.958668pt;}
.y1d7{bottom:672.412020pt;}
.y128{bottom:673.399991pt;}
.y21a{bottom:676.705407pt;}
.yec{bottom:678.650626pt;}
.ya7{bottom:680.292037pt;}
.yd1{bottom:680.982630pt;}
.y1a5{bottom:681.357348pt;}
.y17f{bottom:681.358683pt;}
.yf{bottom:683.702627pt;}
.y1d6{bottom:684.366686pt;}
.y70{bottom:686.350684pt;}
.y127{bottom:686.683991pt;}
.y14f{bottom:687.900001pt;}
.y219{bottom:688.660073pt;}
.yeb{bottom:694.591960pt;}
.ya6{bottom:696.233370pt;}
.y1d5{bottom:696.322686pt;}
.yd0{bottom:696.922630pt;}
.ye{bottom:696.986627pt;}
.y1a4{bottom:697.298681pt;}
.y17e{bottom:697.298683pt;}
.y126{bottom:699.966657pt;}
.y218{bottom:700.616073pt;}
.y6f{bottom:702.292017pt;}
.y14e{bottom:703.840001pt;}
.y1d4{bottom:708.277352pt;}
.yd{bottom:710.269293pt;}
.ya5{bottom:712.525370pt;}
.y217{bottom:712.570740pt;}
.ycf{bottom:712.862630pt;}
.y1a3{bottom:713.238681pt;}
.y17d{bottom:713.238683pt;}
.yea{bottom:715.930664pt;}
.y6e{bottom:718.232017pt;}
.y14d{bottom:719.780001pt;}
.y1d3{bottom:720.232018pt;}
.yc{bottom:723.553293pt;}
.y216{bottom:724.526740pt;}
.y125{bottom:728.061323pt;}
.ya4{bottom:728.465370pt;}
.y1a2{bottom:729.178681pt;}
.y17c{bottom:729.178683pt;}
.y1d2{bottom:732.188018pt;}
.y6d{bottom:734.172017pt;}
.y124{bottom:735.501323pt;}
.y14c{bottom:735.720001pt;}
.y215{bottom:736.481406pt;}
.yb{bottom:736.837293pt;}
.y1d1{bottom:744.142684pt;}
.ya3{bottom:744.405370pt;}
.y1a1{bottom:745.118681pt;}
.y17b{bottom:745.118683pt;}
.y214{bottom:748.436072pt;}
.ya{bottom:750.119960pt;}
.y6c{bottom:750.120017pt;}
.y1d0{bottom:756.098684pt;}
.y123{bottom:757.750656pt;}
.y14b{bottom:758.833333pt;}
.ya2{bottom:760.345370pt;}
.y213{bottom:760.392072pt;}
.yce{bottom:760.683965pt;}
.y9{bottom:763.403960pt;}
.y6b{bottom:766.060017pt;}
.y122{bottom:771.034656pt;}
.y212{bottom:772.346738pt;}
.y1cf{bottom:775.824017pt;}
.ycd{bottom:776.623965pt;}
.y8{bottom:776.687960pt;}
.y6a{bottom:782.001350pt;}
.ya1{bottom:782.582703pt;}
.y211{bottom:784.301404pt;}
.y121{bottom:784.317323pt;}
.y7{bottom:789.970627pt;}
.ycc{bottom:792.563965pt;}
.y17a{bottom:792.940017pt;}
.y210{bottom:796.257404pt;}
.y120{bottom:797.601323pt;}
.y69{bottom:797.941350pt;}
.y1ce{bottom:800.730684pt;}
.y6{bottom:803.254627pt;}
.y20f{bottom:808.212070pt;}
.y179{bottom:808.880017pt;}
.ya0{bottom:810.481369pt;}
.y11f{bottom:810.883989pt;}
.y68{bottom:813.881350pt;}
.y5{bottom:816.537293pt;}
.y1cd{bottom:816.670684pt;}
.y20e{bottom:820.166736pt;}
.y11e{bottom:824.167989pt;}
.y178{bottom:824.820017pt;}
.y9f{bottom:826.421369pt;}
.y4{bottom:829.821293pt;}
.y67{bottom:829.821350pt;}
.y20d{bottom:832.122736pt;}
.y1cc{bottom:832.610684pt;}
.y11d{bottom:837.451989pt;}
.y9e{bottom:842.361369pt;}
.y20c{bottom:844.077402pt;}
.y66{bottom:845.761350pt;}
.y177{bottom:847.933350pt;}
.y11c{bottom:850.734656pt;}
.y1cb{bottom:852.736017pt;}
.y20b{bottom:856.033402pt;}
.y9d{bottom:858.301369pt;}
.y65{bottom:861.701350pt;}
.y11b{bottom:864.018655pt;}
.y20a{bottom:867.988069pt;}
.y9c{bottom:874.241369pt;}
.y11a{bottom:877.302655pt;}
.y64{bottom:877.642684pt;}
.y209{bottom:879.942735pt;}
.y3{bottom:883.013293pt;}
.y14a{bottom:883.989339pt;}
.y9b{bottom:890.182703pt;}
.y119{bottom:890.585321pt;}
.y208{bottom:891.898735pt;}
.y63{bottom:893.582684pt;}
.y2{bottom:900.766627pt;}
.y207{bottom:901.553401pt;}
.y118{bottom:903.869321pt;}
.y9a{bottom:906.122703pt;}
.y62{bottom:909.522684pt;}
.y206{bottom:913.508068pt;}
.y117{bottom:917.153321pt;}
.y99{bottom:922.062703pt;}
.y61{bottom:925.462684pt;}
.y205{bottom:925.462734pt;}
.y116{bottom:930.435988pt;}
.y204{bottom:937.418734pt;}
.y60{bottom:941.402684pt;}
.y98{bottom:941.402703pt;}
.y1{bottom:942.609293pt;}
.y115{bottom:943.719988pt;}
.y203{bottom:949.373400pt;}
.y114{bottom:957.003988pt;}
.y5f{bottom:957.342684pt;}
.y97{bottom:957.342703pt;}
.y202{bottom:961.328066pt;}
.y96{bottom:973.282703pt;}
.y5e{bottom:973.284017pt;}
.y201{bottom:973.284066pt;}
.y113{bottom:976.351969pt;}
.y59{bottom:998.400000pt;}
.y58{bottom:1011.200000pt;}
.h7{height:21.200555pt;}
.h12{height:21.933807pt;}
.h1e{height:22.107556pt;}
.h20{height:27.590274pt;}
.h1f{height:27.830887pt;}
.h23{height:28.394810pt;}
.h8{height:29.244917pt;}
.h13{height:29.244954pt;}
.h22{height:29.458287pt;}
.hc{height:30.625000pt;}
.h21{height:31.869011pt;}
.h9{height:31.944294pt;}
.ha{height:32.900710pt;}
.hb{height:33.000000pt;}
.h4{height:33.187635pt;}
.h3{height:33.426739pt;}
.h1b{height:34.239693pt;}
.h1d{height:35.865600pt;}
.hf{height:36.290430pt;}
.h6{height:36.290431pt;}
.he{height:36.556099pt;}
.h5{height:36.556100pt;}
.h14{height:36.874903pt;}
.h1c{height:36.917658pt;}
.hd{height:38.937500pt;}
.h11{height:39.850399pt;}
.h15{height:41.019344pt;}
.h10{height:44.869197pt;}
.h16{height:45.464294pt;}
.h1a{height:45.469628pt;}
.h2{height:49.381919pt;}
.h18{height:52.986399pt;}
.h19{height:54.155344pt;}
.h17{height:58.600294pt;}
.h1{height:58.999994pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:23.466680pt;}
.xd{left:36.342000pt;}
.x5{left:71.999987pt;}
.x1a{left:78.078665pt;}
.x7{left:83.290653pt;}
.x4{left:85.283987pt;}
.x1{left:90.950667pt;}
.x19{left:92.323997pt;}
.x2f{left:96.345329pt;}
.xe{left:98.696000pt;}
.x2b{left:104.318667pt;}
.x1b{left:132.174654pt;}
.x2d{left:164.977336pt;}
.x6{left:173.783987pt;}
.x1c{left:174.965325pt;}
.x1f{left:196.864003pt;}
.x2e{left:198.006665pt;}
.x2{left:201.649333pt;}
.x1d{left:239.186659pt;}
.x3{left:256.960013pt;}
.x1e{left:274.575991pt;}
.xb{left:399.104000pt;}
.x9{left:417.599973pt;}
.x16{left:419.958683pt;}
.x13{left:425.272020pt;}
.x11{left:428.226664pt;}
.x27{left:429.129848pt;}
.xa{left:430.883973pt;}
.x26{left:435.024342pt;}
.x29{left:436.693561pt;}
.x12{left:440.181356pt;}
.x25{left:442.819495pt;}
.xf{left:444.296009pt;}
.x2a{left:449.918683pt;}
.x8{left:456.102667pt;}
.x20{left:459.521322pt;}
.x21{left:471.602661pt;}
.x17{left:473.432015pt;}
.x22{left:489.363998pt;}
.x24{left:502.561905pt;}
.x10{left:524.625338pt;}
.x2c{left:527.314661pt;}
.x30{left:546.286655pt;}
.x18{left:559.093340pt;}
.x28{left:565.953425pt;}
.x23{left:569.667988pt;}
.x14{left:605.393341pt;}
.x15{left:624.668007pt;}
}




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