
    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_6f7f2536537469636875465d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_734b8434ec89f38e72dff4d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_268495ca4f24a80883aa51ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_290127ac3f2bd5bd3f346e81.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bb1047bc124f5370ba6f3a5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f5115023d670605e3889cf51.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_61b4d489f227e045d7ac49fd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c33a642f04e91926f8a328cb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e7cdb9138188f76776c649f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9829d0a0dca0fc9e8026722d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cd77f0682b2c2e4163b7114f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_50cdf759e4e8f4d3cc0b0348.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0575f04b434c5f3bfac3403c.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_b26bd031c4629c55448a9139.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_818c690f65ecb7beb12f2d84.woff2')format("woff");}.fff{font-family:fff;line-height:0.918000;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_55d2d67efce4ac34226d4e34.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.046000;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_b5156a904d81301ecbf00fbf.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b2768c13a782c54edcea9a4b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b457c904e190cfece7f38354.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.918000;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_22ac64e86f1c86e6edab03c5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.707000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-16.938000px;}
.v2{vertical-align:-14.946000px;}
.v3{vertical-align:-10.764000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:10.764000px;}
.v6{vertical-align:37.770000px;}
.v1{vertical-align:47.820000px;}
.v5{vertical-align:49.206000px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.001288px;}
.ls41{letter-spacing:0.002867px;}
.ls24{letter-spacing:0.003160px;}
.ls52{letter-spacing:0.003454px;}
.ls53{letter-spacing:0.005587px;}
.ls31{letter-spacing:0.013509px;}
.ls43{letter-spacing:0.013613px;}
.ls46{letter-spacing:0.020340px;}
.ls34{letter-spacing:0.020665px;}
.ls36{letter-spacing:0.021398px;}
.ls6c{letter-spacing:0.021496px;}
.ls27{letter-spacing:0.022612px;}
.ls48{letter-spacing:0.027354px;}
.ls35{letter-spacing:0.029372px;}
.ls2e{letter-spacing:0.030801px;}
.ls4d{letter-spacing:0.035580px;}
.ls5b{letter-spacing:0.047821px;}
.ls63{letter-spacing:1.936742px;}
.ls1{letter-spacing:2.290911px;}
.ls0{letter-spacing:2.356366px;}
.ls60{letter-spacing:2.510592px;}
.ls4{letter-spacing:2.582323px;}
.ls74{letter-spacing:2.654054px;}
.ls2f{letter-spacing:2.984915px;}
.ls26{letter-spacing:2.987207px;}
.ls25{letter-spacing:2.987236px;}
.ls70{letter-spacing:2.989739px;}
.ls33{letter-spacing:2.990915px;}
.ls38{letter-spacing:2.995289px;}
.ls29{letter-spacing:3.156173px;}
.lsb{letter-spacing:3.718526px;}
.ls44{letter-spacing:4.702593px;}
.ls73{letter-spacing:5.236378px;}
.ls45{letter-spacing:7.172400px;}
.ls55{letter-spacing:7.193956px;}
.ls2b{letter-spacing:7.388314px;}
.ls20{letter-spacing:7.779279px;}
.ls4e{letter-spacing:7.962163px;}
.ls11{letter-spacing:11.907379px;}
.ls16{letter-spacing:11.933418px;}
.ls37{letter-spacing:11.956404px;}
.ls32{letter-spacing:11.979110px;}
.ls2a{letter-spacing:14.776627px;}
.ls71{letter-spacing:14.936915px;}
.ls19{letter-spacing:14.942915px;}
.ls17{letter-spacing:14.947289px;}
.ls1f{letter-spacing:15.924326px;}
.ls75{letter-spacing:15.996058px;}
.ls3d{letter-spacing:16.354714px;}
.ls76{letter-spacing:17.215488px;}
.ls77{letter-spacing:18.076262px;}
.ls1e{letter-spacing:18.506650px;}
.ls4b{letter-spacing:18.793574px;}
.ls54{letter-spacing:18.923236px;}
.ls4a{letter-spacing:18.929236px;}
.ls2c{letter-spacing:19.152230px;}
.ls12{letter-spacing:19.869542px;}
.ls8{letter-spacing:19.941274px;}
.ls69{letter-spacing:20.371661px;}
.ls64{letter-spacing:20.443392px;}
.ls42{letter-spacing:20.644593px;}
.ls5c{letter-spacing:21.806285px;}
.ls57{letter-spacing:21.878016px;}
.ls50{letter-spacing:22.308403px;}
.ls3b{letter-spacing:22.667059px;}
.ls49{letter-spacing:22.913236px;}
.ls6{letter-spacing:23.169178px;}
.ls4f{letter-spacing:23.345236px;}
.lsa{letter-spacing:23.384371px;}
.ls2d{letter-spacing:23.456102px;}
.ls1c{letter-spacing:23.527834px;}
.ls3c{letter-spacing:23.814758px;}
.ls40{letter-spacing:23.958221px;}
.ls3e{letter-spacing:24.029952px;}
.ls21{letter-spacing:24.747264px;}
.ls72{letter-spacing:25.464576px;}
.ls15{letter-spacing:25.894963px;}
.ls9{letter-spacing:25.966694px;}
.ls6f{letter-spacing:26.038426px;}
.ls4c{letter-spacing:26.147236px;}
.ls30{letter-spacing:26.396915px;}
.ls59{letter-spacing:26.399236px;}
.ls1b{letter-spacing:26.401289px;}
.ls1d{letter-spacing:27.108845px;}
.ls6d{letter-spacing:27.257856px;}
.ls22{letter-spacing:27.329587px;}
.ls56{letter-spacing:27.903437px;}
.ls67{letter-spacing:27.975168px;}
.lsc{letter-spacing:28.046899px;}
.ls47{letter-spacing:28.114593px;}
.ls28{letter-spacing:28.907236px;}
.ls3a{letter-spacing:29.266330px;}
.ls6e{letter-spacing:29.624986px;}
.ls23{letter-spacing:29.768448px;}
.ls58{letter-spacing:29.867236px;}
.ls1a{letter-spacing:29.893289px;}
.ls66{letter-spacing:29.983642px;}
.ls65{letter-spacing:30.485760px;}
.ls5f{letter-spacing:31.203072px;}
.ls14{letter-spacing:31.418266px;}
.ls3f{letter-spacing:31.489997px;}
.ls39{letter-spacing:31.633459px;}
.ls5a{letter-spacing:33.221236px;}
.ls61{letter-spacing:34.287514px;}
.ls6b{letter-spacing:34.646170px;}
.ls7{letter-spacing:35.148288px;}
.ls2{letter-spacing:35.149120px;}
.ls68{letter-spacing:35.506944px;}
.lsf{letter-spacing:35.722138px;}
.lse{letter-spacing:35.793869px;}
.ls5{letter-spacing:35.865600px;}
.lsd{letter-spacing:36.080794px;}
.ls10{letter-spacing:37.443686px;}
.ls13{letter-spacing:38.160998px;}
.ls5e{letter-spacing:39.810816px;}
.ls5d{letter-spacing:39.882547px;}
.ls62{letter-spacing:41.819290px;}
.ls6a{letter-spacing:48.490291px;}
.ls51{letter-spacing:70.541518px;}
.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;}
}
.ws84{word-spacing:-59.752090px;}
.ws14{word-spacing:-58.101975px;}
.ws6c{word-spacing:-57.643192px;}
.ws1d{word-spacing:-56.925880px;}
.ws11f{word-spacing:-55.806874px;}
.ws103{word-spacing:-55.735142px;}
.ws90{word-spacing:-54.796746px;}
.wsc5{word-spacing:-51.861658px;}
.wsc3{word-spacing:-51.789926px;}
.ws16{word-spacing:-49.681029px;}
.ws1e{word-spacing:-48.605061px;}
.ws20{word-spacing:-47.672556px;}
.ws21{word-spacing:-46.166200px;}
.ws2b{word-spacing:-45.664082px;}
.wsb{word-spacing:-42.637126px;}
.ws67{word-spacing:-40.348800px;}
.ws28{word-spacing:-35.119596px;}
.ws17{word-spacing:-35.047864px;}
.wsc2{word-spacing:-33.756703px;}
.ws6b{word-spacing:-33.684972px;}
.ws9e{word-spacing:-33.211407px;}
.wsc8{word-spacing:-32.278875px;}
.ws104{word-spacing:-27.157432px;}
.wsa4{word-spacing:-25.722808px;}
.wsf0{word-spacing:-24.933765px;}
.ws0{word-spacing:-23.245313px;}
.ws6f{word-spacing:-22.774656px;}
.ws3b{word-spacing:-22.559462px;}
.wsee{word-spacing:-22.416000px;}
.ws108{word-spacing:-21.770419px;}
.ws12e{word-spacing:-21.698688px;}
.ws125{word-spacing:-20.909645px;}
.ws3d{word-spacing:-20.766182px;}
.ws12f{word-spacing:-19.833677px;}
.ws8f{word-spacing:-19.584239px;}
.wsef{word-spacing:-19.553925px;}
.ws4e{word-spacing:-19.510886px;}
.ws2a{word-spacing:-19.482194px;}
.ws91{word-spacing:-19.410463px;}
.ws22{word-spacing:-19.367325px;}
.ws96{word-spacing:-19.338732px;}
.ws10b{word-spacing:-19.051807px;}
.ws109{word-spacing:-18.980076px;}
.ws102{word-spacing:-18.908344px;}
.wsf6{word-spacing:-18.836613px;}
.ws81{word-spacing:-18.406226px;}
.ws80{word-spacing:-18.334495px;}
.ws42{word-spacing:-18.327322px;}
.wsff{word-spacing:-18.262764px;}
.ws126{word-spacing:-18.191032px;}
.ws11c{word-spacing:-18.119301px;}
.wsb7{word-spacing:-18.047570px;}
.ws11a{word-spacing:-17.975839px;}
.ws7{word-spacing:-17.869106px;}
.ws10a{word-spacing:-17.832376px;}
.ws8c{word-spacing:-17.688914px;}
.ws70{word-spacing:-17.617183px;}
.wsd5{word-spacing:-17.538278px;}
.ws3c{word-spacing:-17.330258px;}
.ws107{word-spacing:-17.258527px;}
.ws2f{word-spacing:-17.186796px;}
.wsf1{word-spacing:-17.107891px;}
.wse8{word-spacing:-16.964429px;}
.ws98{word-spacing:-16.899871px;}
.ws60{word-spacing:-16.677504px;}
.ws87{word-spacing:-16.612946px;}
.wsc7{word-spacing:-16.541215px;}
.ws106{word-spacing:-16.462310px;}
.wsb3{word-spacing:-16.397752px;}
.ws29{word-spacing:-16.326021px;}
.wsba{word-spacing:-16.182559px;}
.ws57{word-spacing:-16.139475px;}
.ws43{word-spacing:-15.967365px;}
.ws59{word-spacing:-15.895634px;}
.ws30{word-spacing:-15.752172px;}
.ws1f{word-spacing:-15.673267px;}
.ws3e{word-spacing:-15.608709px;}
.wsaa{word-spacing:-15.536978px;}
.ws54{word-spacing:-15.393516px;}
.wsb5{word-spacing:-15.250053px;}
.ws120{word-spacing:-15.178322px;}
.ws105{word-spacing:-15.106591px;}
.ws6{word-spacing:-14.989103px;}
.ws56{word-spacing:-14.963128px;}
.ws55{word-spacing:-14.891397px;}
.wsf2{word-spacing:-14.819666px;}
.ws95{word-spacing:-14.747935px;}
.ws12d{word-spacing:-14.669030px;}
.ws61{word-spacing:-14.532741px;}
.ws77{word-spacing:-14.461010px;}
.wsa8{word-spacing:-14.389279px;}
.ws68{word-spacing:-14.317548px;}
.wse0{word-spacing:-14.245816px;}
.ws12b{word-spacing:-14.238643px;}
.wse1{word-spacing:-14.102354px;}
.ws2{word-spacing:-14.082230px;}
.ws92{word-spacing:-14.030623px;}
.ws1{word-spacing:-13.996153px;}
.ws119{word-spacing:-13.958892px;}
.ws69{word-spacing:-13.887160px;}
.wsc9{word-spacing:-13.815429px;}
.ws19{word-spacing:-13.600236px;}
.ws32{word-spacing:-13.456773px;}
.ws15{word-spacing:-13.449600px;}
.ws33{word-spacing:-13.385042px;}
.ws71{word-spacing:-13.313311px;}
.wsf8{word-spacing:-13.306138px;}
.wsca{word-spacing:-13.241580px;}
.ws13{word-spacing:-13.221829px;}
.wscf{word-spacing:-13.098117px;}
.ws118{word-spacing:-13.026386px;}
.ws78{word-spacing:-12.882924px;}
.wscd{word-spacing:-12.875750px;}
.ws62{word-spacing:-12.811192px;}
.ws12c{word-spacing:-12.739461px;}
.ws86{word-spacing:-12.667730px;}
.wsbc{word-spacing:-12.595999px;}
.wsb8{word-spacing:-12.524268px;}
.ws8a{word-spacing:-12.452536px;}
.ws74{word-spacing:-12.380805px;}
.wsfb{word-spacing:-12.301901px;}
.ws114{word-spacing:-12.165612px;}
.ws35{word-spacing:-12.158438px;}
.ws89{word-spacing:-12.093880px;}
.ws10f{word-spacing:-12.086707px;}
.wsa7{word-spacing:-12.022149px;}
.ws93{word-spacing:-11.950418px;}
.ws2d{word-spacing:-11.878687px;}
.ws2e{word-spacing:-11.806956px;}
.ws1a{word-spacing:-11.735224px;}
.ws47{word-spacing:-11.663493px;}
.wsf9{word-spacing:-11.591762px;}
.ws10e{word-spacing:-11.520031px;}
.ws53{word-spacing:-11.376568px;}
.wsb6{word-spacing:-11.304837px;}
.wsce{word-spacing:-11.233106px;}
.ws7e{word-spacing:-11.161375px;}
.ws112{word-spacing:-11.154202px;}
.ws7f{word-spacing:-11.089644px;}
.ws5a{word-spacing:-10.946181px;}
.ws3{word-spacing:-10.930918px;}
.ws11{word-spacing:-10.865464px;}
.ws3f{word-spacing:-10.795546px;}
.ws63{word-spacing:-10.730988px;}
.ws34{word-spacing:-10.587525px;}
.ws110{word-spacing:-10.515794px;}
.ws36{word-spacing:-10.372332px;}
.wse2{word-spacing:-10.365158px;}
.ws5c{word-spacing:-10.300600px;}
.ws7c{word-spacing:-10.228869px;}
.ws12a{word-spacing:-10.221696px;}
.ws7d{word-spacing:-10.157138px;}
.ws122{word-spacing:-10.085407px;}
.wsec{word-spacing:-10.078234px;}
.ws9b{word-spacing:-9.870213px;}
.ws24{word-spacing:-9.798482px;}
.ws124{word-spacing:-9.726751px;}
.wse4{word-spacing:-9.719578px;}
.ws113{word-spacing:-9.655020px;}
.ws5d{word-spacing:-9.504384px;}
.ws40{word-spacing:-9.439826px;}
.ws41{word-spacing:-9.368095px;}
.ws66{word-spacing:-9.224632px;}
.wsd1{word-spacing:-9.152901px;}
.ws49{word-spacing:-9.009439px;}
.ws10{word-spacing:-8.967280px;}
.wse7{word-spacing:-8.937708px;}
.ws94{word-spacing:-8.865976px;}
.ws76{word-spacing:-8.794245px;}
.ws9{word-spacing:-8.770916px;}
.ws75{word-spacing:-8.722514px;}
.ws128{word-spacing:-8.715341px;}
.wsd{word-spacing:-8.640007px;}
.wsb0{word-spacing:-8.507320px;}
.wsb2{word-spacing:-8.435589px;}
.wsdd{word-spacing:-8.292127px;}
.ws5f{word-spacing:-8.220396px;}
.wse{word-spacing:-8.181825px;}
.ws121{word-spacing:-8.005202px;}
.wsdf{word-spacing:-7.933471px;}
.ws4c{word-spacing:-7.926298px;}
.wsfa{word-spacing:-7.861740px;}
.wsf{word-spacing:-7.789097px;}
.wsfe{word-spacing:-7.287890px;}
.ws72{word-spacing:-7.208986px;}
.ws100{word-spacing:-7.144428px;}
.wsf3{word-spacing:-7.065523px;}
.ws44{word-spacing:-7.000965px;}
.wsf4{word-spacing:-6.993792px;}
.ws46{word-spacing:-6.929234px;}
.wsac{word-spacing:-6.922061px;}
.wsa3{word-spacing:-6.907937px;}
.ws11d{word-spacing:-6.714040px;}
.ws127{word-spacing:-6.706867px;}
.wsfd{word-spacing:-6.563405px;}
.ws2c{word-spacing:-6.498847px;}
.ws73{word-spacing:-6.283653px;}
.ws6e{word-spacing:-6.211922px;}
.ws64{word-spacing:-6.204749px;}
.ws79{word-spacing:-6.140191px;}
.wsf5{word-spacing:-6.068460px;}
.ws26{word-spacing:-5.781535px;}
.wsb4{word-spacing:-5.709804px;}
.ws3a{word-spacing:-5.494610px;}
.ws65{word-spacing:-5.351148px;}
.ws5b{word-spacing:-5.279416px;}
.wse3{word-spacing:-5.135954px;}
.ws115{word-spacing:-5.057050px;}
.wsaf{word-spacing:-4.992492px;}
.wsa1{word-spacing:-4.920760px;}
.wsa2{word-spacing:-4.849029px;}
.wsc0{word-spacing:-4.777298px;}
.ws37{word-spacing:-4.633836px;}
.ws116{word-spacing:-4.418642px;}
.ws6d{word-spacing:-4.346911px;}
.ws50{word-spacing:-4.203448px;}
.wsbf{word-spacing:-3.988255px;}
.ws8{word-spacing:-3.927276px;}
.wsbe{word-spacing:-3.916524px;}
.wsa6{word-spacing:-3.763937px;}
.ws97{word-spacing:-3.730022px;}
.ws4a{word-spacing:-3.629599px;}
.wse9{word-spacing:-3.550694px;}
.ws11e{word-spacing:-3.514829px;}
.ws129{word-spacing:-3.486136px;}
.wsc{word-spacing:-3.469094px;}
.wsa5{word-spacing:-3.448308px;}
.wsdc{word-spacing:-3.335501px;}
.wsd7{word-spacing:-3.270943px;}
.wsf7{word-spacing:-3.227904px;}
.wsea{word-spacing:-3.055749px;}
.wsde{word-spacing:-2.912287px;}
.ws4b{word-spacing:-2.840556px;}
.ws99{word-spacing:-2.768824px;}
.ws9d{word-spacing:-2.553631px;}
.ws7b{word-spacing:-2.481900px;}
.ws4d{word-spacing:-2.410168px;}
.wscb{word-spacing:-2.402995px;}
.ws48{word-spacing:-2.194975px;}
.ws8e{word-spacing:-2.151936px;}
.wscc{word-spacing:-2.123244px;}
.ws130{word-spacing:-1.764588px;}
.wse6{word-spacing:-1.721549px;}
.wsab{word-spacing:-1.692856px;}
.wsbd{word-spacing:-1.549394px;}
.ws51{word-spacing:-1.405932px;}
.wsd2{word-spacing:-1.119007px;}
.ws88{word-spacing:-1.004237px;}
.ws9c{word-spacing:-0.975544px;}
.ws10c{word-spacing:-0.832082px;}
.wsfc{word-spacing:-0.760351px;}
.wsd0{word-spacing:-0.616888px;}
.ws7a{word-spacing:-0.258232px;}
.ws6a{word-spacing:-0.071731px;}
.ws5e{word-spacing:-0.059776px;}
.ws83{word-spacing:-0.047821px;}
.ws12{word-spacing:0.000000px;}
.ws23{word-spacing:0.028692px;}
.ws8b{word-spacing:0.358656px;}
.ws82{word-spacing:0.430387px;}
.wsa{word-spacing:0.523637px;}
.ws18{word-spacing:0.746004px;}
.wsa9{word-spacing:1.147699px;}
.ws1c{word-spacing:1.176392px;}
.wsae{word-spacing:1.248123px;}
.ws4{word-spacing:1.832729px;}
.ws5{word-spacing:2.160002px;}
.ws11b{word-spacing:2.395822px;}
.ws27{word-spacing:3.873485px;}
.wsc4{word-spacing:3.945216px;}
.ws25{word-spacing:5.738496px;}
.wsd6{word-spacing:6.814464px;}
.ws45{word-spacing:8.679475px;}
.wsdb{word-spacing:9.898906px;}
.wsda{word-spacing:10.544486px;}
.wsd9{word-spacing:12.409498px;}
.wseb{word-spacing:12.552960px;}
.ws4f{word-spacing:13.198541px;}
.ws52{word-spacing:14.202778px;}
.wsd8{word-spacing:14.776627px;}
.ws1b{word-spacing:21.763246px;}
.wsed{word-spacing:22.846258px;}
.ws8d{word-spacing:22.888079px;}
.ws31{word-spacing:23.456102px;}
.wsb9{word-spacing:24.245146px;}
.ws58{word-spacing:25.034189px;}
.wsbb{word-spacing:26.110157px;}
.ws111{word-spacing:26.325350px;}
.ws85{word-spacing:26.336871px;}
.wsc6{word-spacing:27.544781px;}
.ws101{word-spacing:27.903437px;}
.wse5{word-spacing:28.046899px;}
.ws39{word-spacing:28.262093px;}
.ws9f{word-spacing:28.831802px;}
.wsa0{word-spacing:28.847251px;}
.wsb1{word-spacing:30.557491px;}
.wsc1{word-spacing:31.418266px;}
.ws38{word-spacing:31.561728px;}
.wsd4{word-spacing:33.498470px;}
.ws10d{word-spacing:35.004826px;}
.ws117{word-spacing:35.506944px;}
.wsd3{word-spacing:38.806579px;}
.wsad{word-spacing:40.312934px;}
.ws9a{word-spacing:48.418425px;}
.ws123{word-spacing:58.101975px;}
._1d{margin-left:-41.546724px;}
._42{margin-left:-38.945118px;}
._20{margin-left:-37.802342px;}
._15{margin-left:-35.865600px;}
._21{margin-left:-33.928858px;}
._1e{margin-left:-17.158116px;}
._16{margin-left:-12.610332px;}
._38{margin-left:-9.709486px;}
._1{margin-left:-7.810425px;}
._10{margin-left:-6.742733px;}
._d{margin-left:-5.432732px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-2.324084px;}
._5{margin-left:-1.275919px;}
._4{width:1.433063px;}
._7{width:2.520448px;}
._2{width:3.843225px;}
._b{width:5.170913px;}
._3e{width:6.500927px;}
._48{width:7.829710px;}
._47{width:9.688183px;}
._22{width:10.817052px;}
._9{width:16.908802px;}
._36{width:17.916443px;}
._8{width:19.375454px;}
._3b{width:20.785471px;}
._23{width:21.964751px;}
._1a{width:23.456102px;}
._c{width:25.102285px;}
._2b{width:27.186125px;}
._3a{width:29.051136px;}
._37{width:30.085619px;}
._35{width:31.241605px;}
._a{width:32.334572px;}
._49{width:33.343770px;}
._6{width:34.560029px;}
._13{width:36.066434px;}
._18{width:37.142402px;}
._40{width:38.505972px;}
._3f{width:40.700276px;}
._34{width:43.110451px;}
._24{width:46.151848px;}
._4a{width:48.934121px;}
._39{width:50.186498px;}
._3c{width:51.306088px;}
._45{width:52.636342px;}
._46{width:53.827970px;}
._27{width:55.448218px;}
._43{width:58.000281px;}
._44{width:61.946155px;}
._e{width:64.988467px;}
._41{width:66.516773px;}
._26{width:70.068218px;}
._1c{width:71.802931px;}
._32{width:73.151465px;}
._19{width:80.338944px;}
._3d{width:96.836850px;}
._17{width:107.510710px;}
._33{width:116.203950px;}
._1b{width:142.745088px;}
._29{width:717.082447px;}
._1f{width:863.759985px;}
._2c{width:956.846522px;}
._2a{width:1016.660624px;}
._12{width:1081.993388px;}
._2f{width:1148.204953px;}
._2e{width:1181.057843px;}
._25{width:1257.677489px;}
._14{width:1381.042354px;}
._f{width:1447.422400px;}
._11{width:1489.498368px;}
._30{width:1534.397458px;}
._28{width:1704.148365px;}
._2d{width:1855.257317px;}
._31{width:2135.581286px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:63.168000px;}
.y1c{bottom:108.000000px;}
.y19a{bottom:108.205500px;}
.y205{bottom:111.009000px;}
.ye5{bottom:125.004000px;}
.y1b7{bottom:129.517500px;}
.y17f{bottom:131.175000px;}
.y61{bottom:134.890500px;}
.y199{bottom:135.096000px;}
.y204{bottom:137.899500px;}
.y1b{bottom:140.665500px;}
.y166{bottom:142.383000px;}
.y1d0{bottom:146.250000px;}
.y96{bottom:147.705000px;}
.y131{bottom:149.139000px;}
.ye4{bottom:151.894500px;}
.y7c{bottom:152.239500px;}
.y1b6{bottom:156.408000px;}
.yb2{bottom:161.781000px;}
.y203{bottom:164.791500px;}
.y101{bottom:168.339000px;}
.y165{bottom:169.275000px;}
.y17e{bottom:169.648500px;}
.y1ea{bottom:171.504000px;}
.y1a{bottom:173.329500px;}
.y3a{bottom:174.859500px;}
.y60{bottom:175.306500px;}
.y198{bottom:176.931000px;}
.y7b{bottom:179.130000px;}
.y1b5{bottom:183.298500px;}
.y14c{bottom:184.801500px;}
.y95{bottom:187.411500px;}
.y1cf{bottom:188.085000px;}
.y130{bottom:190.278000px;}
.y202{bottom:191.682000px;}
.y164{bottom:196.165500px;}
.ye3{bottom:198.213000px;}
.y1e9{bottom:198.394500px;}
.yb1{bottom:199.146000px;}
.y39{bottom:201.750000px;}
.y5f{bottom:202.197000px;}
.yca{bottom:204.235500px;}
.y19{bottom:206.010000px;}
.y7a{bottom:206.022000px;}
.y100{bottom:207.379500px;}
.y14b{bottom:211.693500px;}
.y1ce{bottom:214.977000px;}
.y201{bottom:218.572500px;}
.y197{bottom:218.766000px;}
.y117{bottom:220.095000px;}
.ye2{bottom:225.103500px;}
.y1b4{bottom:225.133500px;}
.y94{bottom:227.116500px;}
.y17d{bottom:228.123000px;}
.y38{bottom:228.640500px;}
.yc9{bottom:231.127500px;}
.y18{bottom:231.231000px;}
.y79{bottom:232.912500px;}
.y12f{bottom:233.812500px;}
.y163{bottom:238.000500px;}
.y1e8{bottom:238.489500px;}
.y14a{bottom:238.584000px;}
.yb0{bottom:239.503500px;}
.y5e{bottom:242.841000px;}
.y200{bottom:245.463000px;}
.yff{bottom:246.418500px;}
.y116{bottom:246.985500px;}
.y1b3{bottom:252.025500px;}
.y196{bottom:253.129500px;}
.y17c{bottom:255.013500px;}
.y17{bottom:256.453500px;}
.y1cd{bottom:256.810500px;}
.yc8{bottom:258.018000px;}
.y162{bottom:264.891000px;}
.y93{bottom:266.823000px;}
.ye1{bottom:266.938500px;}
.y5d{bottom:269.731500px;}
.y1ff{bottom:272.355000px;}
.y12e{bottom:272.757000px;}
.y37{bottom:273.090000px;}
.y78{bottom:274.747500px;}
.y1e7{bottom:275.101500px;}
.y1b2{bottom:278.916000px;}
.yaf{bottom:279.847500px;}
.yfe{bottom:279.867000px;}
.y149{bottom:280.419000px;}
.y16{bottom:281.674500px;}
.y17b{bottom:281.904000px;}
.y1cc{bottom:283.702500px;}
.yc7{bottom:284.908500px;}
.y195{bottom:287.491500px;}
.y115{bottom:293.304000px;}
.ye0{bottom:293.829000px;}
.y77{bottom:301.638000px;}
.y92{bottom:304.623000px;}
.y1b1{bottom:305.806500px;}
.y1fe{bottom:306.717000px;}
.y15{bottom:306.897000px;}
.y148{bottom:307.309500px;}
.y1cb{bottom:310.593000px;}
.y161{bottom:311.209500px;}
.y1e6{bottom:311.715000px;}
.yc6{bottom:311.799000px;}
.y5c{bottom:314.380500px;}
.yfd{bottom:315.003000px;}
.y36{bottom:317.539500px;}
.yae{bottom:320.191500px;}
.y114{bottom:320.194500px;}
.y194{bottom:321.855000px;}
.y17a{bottom:323.739000px;}
.y12d{bottom:326.539500px;}
.y1b0{bottom:332.697000px;}
.y147{bottom:334.200000px;}
.ydf{bottom:335.664000px;}
.y160{bottom:338.100000px;}
.yc5{bottom:338.691000px;}
.y91{bottom:343.096500px;}
.y14{bottom:344.031000px;}
.y1fd{bottom:348.552000px;}
.y179{bottom:350.631000px;}
.y76{bottom:350.784000px;}
.y1e5{bottom:351.810000px;}
.y1ca{bottom:352.428000px;}
.y12c{bottom:353.430000px;}
.yfc{bottom:354.043500px;}
.y113{bottom:354.558000px;}
.yad{bottom:360.549000px;}
.y35{bottom:361.990500px;}
.yde{bottom:362.554500px;}
.yc4{bottom:365.581500px;}
.y193{bottom:367.425000px;}
.y13{bottom:369.252000px;}
.y1af{bottom:374.532000px;}
.y146{bottom:376.035000px;}
.y15f{bottom:376.572000px;}
.y178{bottom:377.521500px;}
.y1e4{bottom:378.700500px;}
.y12b{bottom:380.320500px;}
.y5b{bottom:381.471000px;}
.yac{bottom:387.439500px;}
.y34{bottom:388.881000px;}
.y1fc{bottom:390.387000px;}
.yc3{bottom:392.472000px;}
.yfb{bottom:393.082500px;}
.y12{bottom:394.474500px;}
.y112{bottom:396.391500px;}
.y75{bottom:399.928500px;}
.y90{bottom:400.471500px;}
.y1ae{bottom:401.422500px;}
.y145{bottom:402.925500px;}
.y1c9{bottom:404.412000px;}
.y5a{bottom:408.361500px;}
.ydd{bottom:408.873000px;}
.y192{bottom:409.260000px;}
.y1e3{bottom:415.314000px;}
.y33{bottom:415.771500px;}
.y1fb{bottom:417.277500px;}
.y177{bottom:419.356500px;}
.y11{bottom:419.695500px;}
.y12a{bottom:424.969500px;}
.yab{bottom:425.913000px;}
.y74{bottom:426.819000px;}
.y8f{bottom:427.362000px;}
.yfa{bottom:428.218500px;}
.y1ad{bottom:428.314500px;}
.y144{bottom:429.816000px;}
.y1c8{bottom:431.302500px;}
.y15e{bottom:435.048000px;}
.y59{bottom:435.253500px;}
.y111{bottom:438.226500px;}
.yc2{bottom:438.790500px;}
.y32{bottom:442.662000px;}
.y10{bottom:444.918000px;}
.y176{bottom:446.247000px;}
.ydc{bottom:447.345000px;}
.y191{bottom:451.095000px;}
.y8e{bottom:454.252500px;}
.y1ac{bottom:455.205000px;}
.y1fa{bottom:455.749500px;}
.y1e2{bottom:459.963000px;}
.y15d{bottom:461.938500px;}
.y58{bottom:462.144000px;}
.y110{bottom:465.118500px;}
.yf9{bottom:466.692000px;}
.y73{bottom:468.654000px;}
.y31{bottom:469.554000px;}
.y143{bottom:471.651000px;}
.y175{bottom:473.137500px;}
.yf{bottom:477.582000px;}
.yc1{bottom:480.625500px;}
.y8d{bottom:481.143000px;}
.y1ab{bottom:482.095500px;}
.yaa{bottom:483.618000px;}
.y15c{bottom:488.829000px;}
.y129{bottom:492.433500px;}
.y190{bottom:492.930000px;}
.y72{bottom:495.544500px;}
.y30{bottom:496.444500px;}
.y142{bottom:498.543000px;}
.y1c7{bottom:500.028000px;}
.y57{bottom:502.786500px;}
.ye{bottom:502.804500px;}
.ydb{bottom:505.821000px;}
.y10f{bottom:506.952000px;}
.yc0{bottom:507.516000px;}
.y8c{bottom:508.035000px;}
.ya9{bottom:510.508500px;}
.y1f9{bottom:514.225500px;}
.y174{bottom:514.972500px;}
.y15b{bottom:515.719500px;}
.y128{bottom:519.325500px;}
.y18f{bottom:519.820500px;}
.y71{bottom:522.436500px;}
.yf8{bottom:523.722000px;}
.y1aa{bottom:523.930500px;}
.y141{bottom:525.433500px;}
.y1e1{bottom:526.887000px;}
.yd{bottom:528.025500px;}
.y56{bottom:529.677000px;}
.yda{bottom:532.711500px;}
.y10e{bottom:533.844000px;}
.y8b{bottom:534.925500px;}
.ya8{bottom:537.399000px;}
.y2f{bottom:540.894000px;}
.y1f8{bottom:541.116000px;}
.y173{bottom:541.863000px;}
.y127{bottom:546.216000px;}
.y70{bottom:549.327000px;}
.ybf{bottom:549.351000px;}
.yf7{bottom:550.612500px;}
.y1a9{bottom:550.821000px;}
.yc{bottom:553.248000px;}
.y1e0{bottom:553.777500px;}
.y18e{bottom:561.655500px;}
.y15a{bottom:562.038000px;}
.y55{bottom:562.621500px;}
.ya7{bottom:564.289500px;}
.y140{bottom:567.268500px;}
.y2e{bottom:567.784500px;}
.y1c6{bottom:568.753500px;}
.y8a{bottom:572.727000px;}
.y126{bottom:573.106500px;}
.yd9{bottom:574.546500px;}
.y10d{bottom:575.679000px;}
.yf6{bottom:577.504500px;}
.yb{bottom:578.469000px;}
.y1f7{bottom:582.951000px;}
.y172{bottom:583.698000px;}
.y18d{bottom:588.546000px;}
.y54{bottom:589.512000px;}
.y6f{bottom:591.162000px;}
.ybe{bottom:591.186000px;}
.y1df{bottom:593.872500px;}
.y2d{bottom:594.675000px;}
.y1a8{bottom:595.470000px;}
.yd8{bottom:601.437000px;}
.y159{bottom:603.873000px;}
.yf5{bottom:604.395000px;}
.ya6{bottom:604.647000px;}
.y10c{bottom:610.041000px;}
.y171{bottom:610.588500px;}
.y89{bottom:612.432000px;}
.y13f{bottom:613.585500px;}
.ya{bottom:615.603000px;}
.y125{bottom:616.641000px;}
.y6e{bottom:618.052500px;}
.y1de{bottom:620.763000px;}
.y2c{bottom:621.567000px;}
.y53{bottom:622.456500px;}
.y1f6{bottom:624.786000px;}
.yf4{bottom:631.285500px;}
.ybd{bottom:633.019500px;}
.y18c{bottom:633.196500px;}
.y170{bottom:637.480500px;}
.y13e{bottom:640.477500px;}
.yd7{bottom:643.272000px;}
.y10b{bottom:644.404500px;}
.y6d{bottom:644.943000px;}
.ya5{bottom:644.992500px;}
.y52{bottom:649.347000px;}
.y158{bottom:650.190000px;}
.y9{bottom:650.728500px;}
.y1f5{bottom:651.676500px;}
.y88{bottom:652.137000px;}
.y1c5{bottom:655.237500px;}
.y124{bottom:657.780000px;}
.yf3{bottom:658.176000px;}
.y1dd{bottom:660.856500px;}
.y1a7{bottom:663.294000px;}
.y2b{bottom:666.016500px;}
.ya4{bottom:671.883000px;}
.ybc{bottom:674.854500px;}
.y157{bottom:677.082000px;}
.y16f{bottom:679.314000px;}
.y13d{bottom:682.311000px;}
.y123{bottom:684.670500px;}
.y10a{bottom:686.239500px;}
.y1dc{bottom:687.748500px;}
.yd6{bottom:689.589000px;}
.y51{bottom:689.763000px;}
.y1a6{bottom:690.184500px;}
.y6c{bottom:691.261500px;}
.y87{bottom:691.843500px;}
.y2a{bottom:692.907000px;}
.y20f{bottom:695.745000px;}
.yf2{bottom:697.122000px;}
.ya3{bottom:698.773500px;}
.y18b{bottom:701.019000px;}
.y156{bottom:703.972500px;}
.y16e{bottom:706.206000px;}
.y13c{bottom:709.203000px;}
.y122{bottom:711.561000px;}
.y1db{bottom:714.639000px;}
.yd5{bottom:716.481000px;}
.y50{bottom:716.653500px;}
.y1a5{bottom:717.076500px;}
.y6b{bottom:718.152000px;}
.y29{bottom:719.797500px;}
.y1f4{bottom:720.402000px;}
.ybb{bottom:721.173000px;}
.y8{bottom:721.602000px;}
.y20e{bottom:722.635500px;}
.y1c4{bottom:723.061500px;}
.y18a{bottom:727.911000px;}
.y86{bottom:731.548500px;}
.y109{bottom:732.556500px;}
.ya2{bottom:739.117500px;}
.y4f{bottom:743.544000px;}
.y1a4{bottom:743.967000px;}
.y28{bottom:746.689500px;}
.y16d{bottom:748.041000px;}
.y1c3{bottom:749.952000px;}
.yf1{bottom:750.903000px;}
.y1da{bottom:754.732500px;}
.y189{bottom:754.801500px;}
.y121{bottom:755.095500px;}
.y13b{bottom:755.520000px;}
.y155{bottom:755.956500px;}
.yd4{bottom:758.316000px;}
.yba{bottom:759.645000px;}
.y1f3{bottom:762.237000px;}
.y6a{bottom:762.801000px;}
.y20d{bottom:764.470500px;}
.y7{bottom:765.493500px;}
.ya1{bottom:766.009500px;}
.y1a3{bottom:770.857500px;}
.y108{bottom:771.028500px;}
.y85{bottom:771.255000px;}
.y27{bottom:773.580000px;}
.y16c{bottom:774.931500px;}
.yf0{bottom:780.592500px;}
.y1d9{bottom:781.624500px;}
.y120{bottom:781.986000px;}
.y13a{bottom:782.412000px;}
.y154{bottom:782.847000px;}
.y4e{bottom:783.960000px;}
.y1f2{bottom:789.127500px;}
.y20c{bottom:791.361000px;}
.yef{bottom:792.892500px;}
.ya0{bottom:792.900000px;}
.y1c2{bottom:796.270500px;}
.y188{bottom:796.636500px;}
.y1a2{bottom:797.748000px;}
.y6{bottom:798.874500px;}
.yd3{bottom:799.432500px;}
.y26{bottom:800.470500px;}
.y16b{bottom:801.822000px;}
.y43{bottom:807.090000px;}
.y11f{bottom:808.876500px;}
.y139{bottom:809.302500px;}
.yb9{bottom:810.786000px;}
.y4d{bottom:810.852000px;}
.y84{bottom:810.960000px;}
.yd2{bottom:811.732500px;}
.y20b{bottom:818.251500px;}
.y1d8{bottom:821.718000px;}
.y1c1{bottom:823.161000px;}
.y187{bottom:823.527000px;}
.y153{bottom:824.682000px;}
.y107{bottom:829.504500px;}
.y69{bottom:830.625000px;}
.y1f1{bottom:830.962500px;}
.y9f{bottom:833.584500px;}
.y42{bottom:833.980500px;}
.y11e{bottom:835.768500px;}
.y138{bottom:836.193000px;}
.y4c{bottom:837.742500px;}
.y1a1{bottom:839.583000px;}
.y16a{bottom:843.657000px;}
.y25{bottom:844.920000px;}
.y9e{bottom:845.886000px;}
.yee{bottom:846.675000px;}
.y1d7{bottom:848.608500px;}
.y1c0{bottom:850.053000px;}
.y186{bottom:850.417500px;}
.y83{bottom:850.666500px;}
.y152{bottom:851.572500px;}
.y106{bottom:856.395000px;}
.y68{bottom:857.515500px;}
.y1f0{bottom:857.853000px;}
.y5{bottom:858.595500px;}
.y20a{bottom:860.086500px;}
.y41{bottom:860.871000px;}
.yd1{bottom:860.878500px;}
.y11d{bottom:862.659000px;}
.y137{bottom:863.083500px;}
.y169{bottom:870.547500px;}
.y4b{bottom:870.687000px;}
.yed{bottom:873.565500px;}
.y1d6{bottom:875.500500px;}
.y1bf{bottom:876.943500px;}
.yb8{bottom:878.608500px;}
.y1a0{bottom:881.418000px;}
.y105{bottom:883.285500px;}
.y209{bottom:886.977000px;}
.yd0{bottom:887.769000px;}
.y24{bottom:889.369500px;}
.y82{bottom:890.371500px;}
.y185{bottom:892.252500px;}
.y151{bottom:893.407500px;}
.y9d{bottom:896.710500px;}
.y67{bottom:899.350500px;}
.y1ef{bottom:899.688000px;}
.yec{bottom:900.456000px;}
.y4a{bottom:903.630000px;}
.y4{bottom:904.959000px;}
.y40{bottom:905.320500px;}
.yb7{bottom:905.500500px;}
.y11c{bottom:906.193500px;}
.y136{bottom:907.732500px;}
.y19f{bottom:908.308500px;}
.y104{bottom:910.177500px;}
.y1d5{bottom:912.112500px;}
.ycf{bottom:914.659500px;}
.y168{bottom:916.866000px;}
.y1be{bottom:918.778500px;}
.y184{bottom:919.143000px;}
.y150{bottom:920.299500px;}
.y66{bottom:926.241000px;}
.y1ee{bottom:926.580000px;}
.yeb{bottom:927.346500px;}
.y208{bottom:928.812000px;}
.y81{bottom:930.076500px;}
.yb6{bottom:932.391000px;}
.y11b{bottom:933.084000px;}
.y23{bottom:933.820500px;}
.y9c{bottom:937.056000px;}
.y103{bottom:937.068000px;}
.y49{bottom:944.046000px;}
.y1bd{bottom:945.669000px;}
.y183{bottom:946.033500px;}
.y3f{bottom:949.771500px;}
.y19e{bottom:950.143500px;}
.y3{bottom:951.322500px;}
.y207{bottom:955.704000px;}
.yce{bottom:956.494500px;}
.yb5{bottom:959.281500px;}
.y167{bottom:961.515000px;}
.y1d4{bottom:963.198000px;}
.y9b{bottom:963.946500px;}
.yea{bottom:966.292500px;}
.y14f{bottom:966.616500px;}
.y65{bottom:968.076000px;}
.y1ed{bottom:968.413500px;}
.y80{bottom:969.783000px;}
.y48{bottom:970.938000px;}
.y1bc{bottom:972.559500px;}
.y11a{bottom:974.223000px;}
.y135{bottom:975.556500px;}
.y22{bottom:978.469500px;}
.ycd{bottom:983.386500px;}
.yb4{bottom:986.172000px;}
.y182{bottom:987.868500px;}
.y9a{bottom:990.837000px;}
.y19d{bottom:991.978500px;}
.y14e{bottom:993.507000px;}
.y3e{bottom:994.221000px;}
.y64{bottom:994.968000px;}
.y2{bottom:997.686000px;}
.y47{bottom:997.828500px;}
.y1bb{bottom:999.450000px;}
.y119{bottom:1001.113500px;}
.y134{bottom:1002.447000px;}
.y1d3{bottom:1003.293000px;}
.y1ec{bottom:1006.887000px;}
.y206{bottom:1007.824500px;}
.y7f{bottom:1009.488000px;}
.y181{bottom:1014.760500px;}
.ye9{bottom:1020.073500px;}
.y14d{bottom:1020.399000px;}
.yb3{bottom:1024.645500px;}
.y46{bottom:1024.719000px;}
.ycc{bottom:1025.220000px;}
.y118{bottom:1028.004000px;}
.y133{bottom:1029.339000px;}
.y1d2{bottom:1030.183500px;}
.y99{bottom:1031.181000px;}
.y19c{bottom:1033.813500px;}
.y63{bottom:1036.801500px;}
.y3d{bottom:1038.670500px;}
.y1ba{bottom:1041.285000px;}
.y21{bottom:1046.292000px;}
.ye8{bottom:1046.965500px;}
.y7e{bottom:1047.289500px;}
.y45{bottom:1051.609500px;}
.ycb{bottom:1052.112000px;}
.y1{bottom:1055.421000px;}
.y132{bottom:1056.229500px;}
.y180{bottom:1056.594000px;}
.y98{bottom:1058.073000px;}
.y62{bottom:1063.693500px;}
.y1eb{bottom:1065.361500px;}
.y19b{bottom:1068.175500px;}
.y20{bottom:1071.514500px;}
.y102{bottom:1071.538500px;}
.y1b9{bottom:1075.648500px;}
.y3c{bottom:1083.120000px;}
.ye7{bottom:1085.437500px;}
.y7d{bottom:1085.761500px;}
.y44{bottom:1092.252000px;}
.y97{bottom:1098.429000px;}
.y1d1{bottom:1100.289000px;}
.y1b8{bottom:1102.539000px;}
.y1f{bottom:1104.208500px;}
.y3b{bottom:1110.010500px;}
.ye6{bottom:1136.577000px;}
.y1e{bottom:1136.902500px;}
.h4{height:45.818220px;}
.h5{height:49.090950px;}
.h6{height:53.798400px;}
.h3{height:64.557900px;}
.h7{height:77.469300px;}
.h2{height:92.981250px;}
.h8{height:102.326400px;}
.ha{height:102.998400px;}
.h9{height:103.004400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:76.783500px;}
.x1e{left:85.563000px;}
.xf{left:108.000000px;}
.x14{left:120.681000px;}
.x4{left:122.521500px;}
.x12{left:129.460500px;}
.x10{left:134.338500px;}
.x2{left:144.030000px;}
.xd{left:151.897500px;}
.xb{left:169.020000px;}
.x20{left:171.660000px;}
.x21{left:173.358000px;}
.x11{left:174.724500px;}
.xa{left:176.443500px;}
.xc{left:190.527000px;}
.x22{left:195.795000px;}
.x7{left:228.925500px;}
.x5{left:277.672500px;}
.x1d{left:290.785500px;}
.x17{left:300.183000px;}
.x1{left:326.715000px;}
.x13{left:349.138500px;}
.x8{left:359.394000px;}
.x6{left:362.716500px;}
.x3{left:384.553500px;}
.x1a{left:392.130000px;}
.x19{left:400.908000px;}
.x9{left:410.457000px;}
.x15{left:423.688500px;}
.x1c{left:437.677500px;}
.xe{left:442.066500px;}
.x1b{left:448.953000px;}
.x16{left:463.491000px;}
.x18{left:531.441000px;}
@media print{
.v4{vertical-align:-15.056000pt;}
.v2{vertical-align:-13.285333pt;}
.v3{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:9.568000pt;}
.v6{vertical-align:33.573333pt;}
.v1{vertical-align:42.506667pt;}
.v5{vertical-align:43.738667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.001145pt;}
.ls41{letter-spacing:0.002548pt;}
.ls24{letter-spacing:0.002809pt;}
.ls52{letter-spacing:0.003070pt;}
.ls53{letter-spacing:0.004966pt;}
.ls31{letter-spacing:0.012008pt;}
.ls43{letter-spacing:0.012100pt;}
.ls46{letter-spacing:0.018080pt;}
.ls34{letter-spacing:0.018369pt;}
.ls36{letter-spacing:0.019021pt;}
.ls6c{letter-spacing:0.019108pt;}
.ls27{letter-spacing:0.020099pt;}
.ls48{letter-spacing:0.024315pt;}
.ls35{letter-spacing:0.026109pt;}
.ls2e{letter-spacing:0.027378pt;}
.ls4d{letter-spacing:0.031626pt;}
.ls5b{letter-spacing:0.042507pt;}
.ls63{letter-spacing:1.721549pt;}
.ls1{letter-spacing:2.036365pt;}
.ls0{letter-spacing:2.094547pt;}
.ls60{letter-spacing:2.231637pt;}
.ls4{letter-spacing:2.295398pt;}
.ls74{letter-spacing:2.359159pt;}
.ls2f{letter-spacing:2.653258pt;}
.ls26{letter-spacing:2.655295pt;}
.ls25{letter-spacing:2.655321pt;}
.ls70{letter-spacing:2.657546pt;}
.ls33{letter-spacing:2.658591pt;}
.ls38{letter-spacing:2.662479pt;}
.ls29{letter-spacing:2.805487pt;}
.lsb{letter-spacing:3.305357pt;}
.ls44{letter-spacing:4.180083pt;}
.ls73{letter-spacing:4.654558pt;}
.ls45{letter-spacing:6.375467pt;}
.ls55{letter-spacing:6.394627pt;}
.ls2b{letter-spacing:6.567390pt;}
.ls20{letter-spacing:6.914915pt;}
.ls4e{letter-spacing:7.077478pt;}
.ls11{letter-spacing:10.584337pt;}
.ls16{letter-spacing:10.607483pt;}
.ls37{letter-spacing:10.627915pt;}
.ls32{letter-spacing:10.648098pt;}
.ls2a{letter-spacing:13.134780pt;}
.ls71{letter-spacing:13.277258pt;}
.ls19{letter-spacing:13.282591pt;}
.ls17{letter-spacing:13.286479pt;}
.ls1f{letter-spacing:14.154957pt;}
.ls75{letter-spacing:14.218718pt;}
.ls3d{letter-spacing:14.537523pt;}
.ls76{letter-spacing:15.302656pt;}
.ls77{letter-spacing:16.067789pt;}
.ls1e{letter-spacing:16.450355pt;}
.ls4b{letter-spacing:16.705399pt;}
.ls54{letter-spacing:16.820654pt;}
.ls4a{letter-spacing:16.825987pt;}
.ls2c{letter-spacing:17.024205pt;}
.ls12{letter-spacing:17.661815pt;}
.ls8{letter-spacing:17.725577pt;}
.ls69{letter-spacing:18.108143pt;}
.ls64{letter-spacing:18.171904pt;}
.ls42{letter-spacing:18.350750pt;}
.ls5c{letter-spacing:19.383364pt;}
.ls57{letter-spacing:19.447125pt;}
.ls50{letter-spacing:19.829692pt;}
.ls3b{letter-spacing:20.148497pt;}
.ls49{letter-spacing:20.367321pt;}
.ls6{letter-spacing:20.594825pt;}
.ls4f{letter-spacing:20.751321pt;}
.lsa{letter-spacing:20.786108pt;}
.ls2d{letter-spacing:20.849869pt;}
.ls1c{letter-spacing:20.913630pt;}
.ls3c{letter-spacing:21.168674pt;}
.ls40{letter-spacing:21.296196pt;}
.ls3e{letter-spacing:21.359957pt;}
.ls21{letter-spacing:21.997568pt;}
.ls72{letter-spacing:22.635179pt;}
.ls15{letter-spacing:23.017745pt;}
.ls9{letter-spacing:23.081506pt;}
.ls6f{letter-spacing:23.145267pt;}
.ls4c{letter-spacing:23.241987pt;}
.ls30{letter-spacing:23.463925pt;}
.ls59{letter-spacing:23.465987pt;}
.ls1b{letter-spacing:23.467812pt;}
.ls1d{letter-spacing:24.096751pt;}
.ls6d{letter-spacing:24.229205pt;}
.ls22{letter-spacing:24.292966pt;}
.ls56{letter-spacing:24.803055pt;}
.ls67{letter-spacing:24.866816pt;}
.lsc{letter-spacing:24.930577pt;}
.ls47{letter-spacing:24.990750pt;}
.ls28{letter-spacing:25.695321pt;}
.ls3a{letter-spacing:26.014515pt;}
.ls6e{letter-spacing:26.333321pt;}
.ls23{letter-spacing:26.460843pt;}
.ls58{letter-spacing:26.548654pt;}
.ls1a{letter-spacing:26.571812pt;}
.ls66{letter-spacing:26.652126pt;}
.ls65{letter-spacing:27.098453pt;}
.ls5f{letter-spacing:27.736064pt;}
.ls14{letter-spacing:27.927347pt;}
.ls3f{letter-spacing:27.991108pt;}
.ls39{letter-spacing:28.118630pt;}
.ls5a{letter-spacing:29.529987pt;}
.ls61{letter-spacing:30.477790pt;}
.ls6b{letter-spacing:30.796595pt;}
.ls7{letter-spacing:31.242923pt;}
.ls2{letter-spacing:31.243662pt;}
.ls68{letter-spacing:31.561728pt;}
.lsf{letter-spacing:31.753011pt;}
.lse{letter-spacing:31.816772pt;}
.ls5{letter-spacing:31.880533pt;}
.lsd{letter-spacing:32.071817pt;}
.ls10{letter-spacing:33.283277pt;}
.ls13{letter-spacing:33.920887pt;}
.ls5e{letter-spacing:35.387392pt;}
.ls5d{letter-spacing:35.451153pt;}
.ls62{letter-spacing:37.172702pt;}
.ls6a{letter-spacing:43.102481pt;}
.ls51{letter-spacing:62.703572pt;}
.ws84{word-spacing:-53.112969pt;}
.ws14{word-spacing:-51.646200pt;}
.ws6c{word-spacing:-51.238393pt;}
.ws1d{word-spacing:-50.600783pt;}
.ws11f{word-spacing:-49.606110pt;}
.ws103{word-spacing:-49.542349pt;}
.ws90{word-spacing:-48.708218pt;}
.wsc5{word-spacing:-46.099251pt;}
.wsc3{word-spacing:-46.035490pt;}
.ws16{word-spacing:-44.160915pt;}
.ws1e{word-spacing:-43.204499pt;}
.ws20{word-spacing:-42.375605pt;}
.ws21{word-spacing:-41.036623pt;}
.ws2b{word-spacing:-40.590295pt;}
.wsb{word-spacing:-37.899668pt;}
.ws67{word-spacing:-35.865600pt;}
.ws28{word-spacing:-31.217418pt;}
.ws17{word-spacing:-31.153657pt;}
.wsc2{word-spacing:-30.005958pt;}
.ws6b{word-spacing:-29.942197pt;}
.ws9e{word-spacing:-29.521250pt;}
.wsc8{word-spacing:-28.692333pt;}
.ws104{word-spacing:-24.139940pt;}
.wsa4{word-spacing:-22.864719pt;}
.wsf0{word-spacing:-22.163347pt;}
.ws0{word-spacing:-20.662500pt;}
.ws6f{word-spacing:-20.244139pt;}
.ws3b{word-spacing:-20.052855pt;}
.wsee{word-spacing:-19.925333pt;}
.ws108{word-spacing:-19.351484pt;}
.ws12e{word-spacing:-19.287723pt;}
.ws125{word-spacing:-18.586351pt;}
.ws3d{word-spacing:-18.458829pt;}
.ws12f{word-spacing:-17.629935pt;}
.ws8f{word-spacing:-17.408212pt;}
.wsef{word-spacing:-17.381267pt;}
.ws4e{word-spacing:-17.343010pt;}
.ws2a{word-spacing:-17.317506pt;}
.ws91{word-spacing:-17.253745pt;}
.ws22{word-spacing:-17.215400pt;}
.ws96{word-spacing:-17.189984pt;}
.ws10b{word-spacing:-16.934939pt;}
.ws109{word-spacing:-16.871178pt;}
.ws102{word-spacing:-16.807417pt;}
.wsf6{word-spacing:-16.743656pt;}
.ws81{word-spacing:-16.361090pt;}
.ws80{word-spacing:-16.297329pt;}
.ws42{word-spacing:-16.290953pt;}
.wsff{word-spacing:-16.233568pt;}
.ws126{word-spacing:-16.169807pt;}
.ws11c{word-spacing:-16.106045pt;}
.wsb7{word-spacing:-16.042284pt;}
.ws11a{word-spacing:-15.978523pt;}
.ws7{word-spacing:-15.883650pt;}
.ws10a{word-spacing:-15.851001pt;}
.ws8c{word-spacing:-15.723479pt;}
.ws70{word-spacing:-15.659718pt;}
.wsd5{word-spacing:-15.589581pt;}
.ws3c{word-spacing:-15.404674pt;}
.ws107{word-spacing:-15.340913pt;}
.ws2f{word-spacing:-15.277152pt;}
.wsf1{word-spacing:-15.207014pt;}
.wse8{word-spacing:-15.079492pt;}
.ws98{word-spacing:-15.022107pt;}
.ws60{word-spacing:-14.824448pt;}
.ws87{word-spacing:-14.767063pt;}
.wsc7{word-spacing:-14.703302pt;}
.ws106{word-spacing:-14.633165pt;}
.wsb3{word-spacing:-14.575780pt;}
.ws29{word-spacing:-14.512019pt;}
.wsba{word-spacing:-14.384497pt;}
.ws57{word-spacing:-14.346200pt;}
.ws43{word-spacing:-14.193213pt;}
.ws59{word-spacing:-14.129452pt;}
.ws30{word-spacing:-14.001930pt;}
.ws1f{word-spacing:-13.931793pt;}
.ws3e{word-spacing:-13.874408pt;}
.wsaa{word-spacing:-13.810647pt;}
.ws54{word-spacing:-13.683125pt;}
.wsb5{word-spacing:-13.555603pt;}
.ws120{word-spacing:-13.491842pt;}
.ws105{word-spacing:-13.428081pt;}
.ws6{word-spacing:-13.323647pt;}
.ws56{word-spacing:-13.300559pt;}
.ws55{word-spacing:-13.236797pt;}
.wsf2{word-spacing:-13.173036pt;}
.ws95{word-spacing:-13.109275pt;}
.ws12d{word-spacing:-13.039138pt;}
.ws61{word-spacing:-12.917992pt;}
.ws77{word-spacing:-12.854231pt;}
.wsa8{word-spacing:-12.790470pt;}
.ws68{word-spacing:-12.726709pt;}
.wse0{word-spacing:-12.662948pt;}
.ws12b{word-spacing:-12.656572pt;}
.wse1{word-spacing:-12.535426pt;}
.ws2{word-spacing:-12.517538pt;}
.ws92{word-spacing:-12.471665pt;}
.ws1{word-spacing:-12.441025pt;}
.ws119{word-spacing:-12.407904pt;}
.ws69{word-spacing:-12.344143pt;}
.wsc9{word-spacing:-12.280381pt;}
.ws19{word-spacing:-12.089098pt;}
.ws32{word-spacing:-11.961576pt;}
.ws15{word-spacing:-11.955200pt;}
.ws33{word-spacing:-11.897815pt;}
.ws71{word-spacing:-11.834054pt;}
.wsf8{word-spacing:-11.827678pt;}
.wsca{word-spacing:-11.770293pt;}
.ws13{word-spacing:-11.752737pt;}
.wscf{word-spacing:-11.642771pt;}
.ws118{word-spacing:-11.579010pt;}
.ws78{word-spacing:-11.451488pt;}
.wscd{word-spacing:-11.445111pt;}
.ws62{word-spacing:-11.387727pt;}
.ws12c{word-spacing:-11.323965pt;}
.ws86{word-spacing:-11.260204pt;}
.wsbc{word-spacing:-11.196443pt;}
.wsb8{word-spacing:-11.132682pt;}
.ws8a{word-spacing:-11.068921pt;}
.ws74{word-spacing:-11.005160pt;}
.wsfb{word-spacing:-10.935023pt;}
.ws114{word-spacing:-10.813877pt;}
.ws35{word-spacing:-10.807501pt;}
.ws89{word-spacing:-10.750116pt;}
.ws10f{word-spacing:-10.743740pt;}
.wsa7{word-spacing:-10.686355pt;}
.ws93{word-spacing:-10.622594pt;}
.ws2d{word-spacing:-10.558833pt;}
.ws2e{word-spacing:-10.495072pt;}
.ws1a{word-spacing:-10.431311pt;}
.ws47{word-spacing:-10.367549pt;}
.wsf9{word-spacing:-10.303788pt;}
.ws10e{word-spacing:-10.240027pt;}
.ws53{word-spacing:-10.112505pt;}
.wsb6{word-spacing:-10.048744pt;}
.wsce{word-spacing:-9.984983pt;}
.ws7e{word-spacing:-9.921222pt;}
.ws112{word-spacing:-9.914846pt;}
.ws7f{word-spacing:-9.857461pt;}
.ws5a{word-spacing:-9.729939pt;}
.ws3{word-spacing:-9.716372pt;}
.ws11{word-spacing:-9.658190pt;}
.ws3f{word-spacing:-9.596041pt;}
.ws63{word-spacing:-9.538656pt;}
.ws34{word-spacing:-9.411133pt;}
.ws110{word-spacing:-9.347372pt;}
.ws36{word-spacing:-9.219850pt;}
.wse2{word-spacing:-9.213474pt;}
.ws5c{word-spacing:-9.156089pt;}
.ws7c{word-spacing:-9.092328pt;}
.ws12a{word-spacing:-9.085952pt;}
.ws7d{word-spacing:-9.028567pt;}
.ws122{word-spacing:-8.964806pt;}
.wsec{word-spacing:-8.958430pt;}
.ws9b{word-spacing:-8.773523pt;}
.ws24{word-spacing:-8.709762pt;}
.ws124{word-spacing:-8.646001pt;}
.wse4{word-spacing:-8.639625pt;}
.ws113{word-spacing:-8.582240pt;}
.ws5d{word-spacing:-8.448341pt;}
.ws40{word-spacing:-8.390956pt;}
.ws41{word-spacing:-8.327195pt;}
.ws66{word-spacing:-8.199673pt;}
.wsd1{word-spacing:-8.135912pt;}
.ws49{word-spacing:-8.008390pt;}
.ws10{word-spacing:-7.970916pt;}
.wse7{word-spacing:-7.944629pt;}
.ws94{word-spacing:-7.880868pt;}
.ws76{word-spacing:-7.817107pt;}
.ws9{word-spacing:-7.796370pt;}
.ws75{word-spacing:-7.753346pt;}
.ws128{word-spacing:-7.746970pt;}
.wsd{word-spacing:-7.680006pt;}
.wsb0{word-spacing:-7.562063pt;}
.wsb2{word-spacing:-7.498301pt;}
.wsdd{word-spacing:-7.370779pt;}
.ws5f{word-spacing:-7.307018pt;}
.wse{word-spacing:-7.272733pt;}
.ws121{word-spacing:-7.115735pt;}
.wsdf{word-spacing:-7.051974pt;}
.ws4c{word-spacing:-7.045598pt;}
.wsfa{word-spacing:-6.988213pt;}
.wsf{word-spacing:-6.923642pt;}
.wsfe{word-spacing:-6.478124pt;}
.ws72{word-spacing:-6.407987pt;}
.ws100{word-spacing:-6.350602pt;}
.wsf3{word-spacing:-6.280465pt;}
.ws44{word-spacing:-6.223080pt;}
.wsf4{word-spacing:-6.216704pt;}
.ws46{word-spacing:-6.159319pt;}
.wsac{word-spacing:-6.152943pt;}
.wsa3{word-spacing:-6.140388pt;}
.ws11d{word-spacing:-5.968036pt;}
.ws127{word-spacing:-5.961660pt;}
.wsfd{word-spacing:-5.834138pt;}
.ws2c{word-spacing:-5.776753pt;}
.ws73{word-spacing:-5.585469pt;}
.ws6e{word-spacing:-5.521708pt;}
.ws64{word-spacing:-5.515332pt;}
.ws79{word-spacing:-5.457947pt;}
.wsf5{word-spacing:-5.394186pt;}
.ws26{word-spacing:-5.139142pt;}
.wsb4{word-spacing:-5.075381pt;}
.ws3a{word-spacing:-4.884098pt;}
.ws65{word-spacing:-4.756576pt;}
.ws5b{word-spacing:-4.692815pt;}
.wse3{word-spacing:-4.565292pt;}
.ws115{word-spacing:-4.495155pt;}
.wsaf{word-spacing:-4.437770pt;}
.wsa1{word-spacing:-4.374009pt;}
.wsa2{word-spacing:-4.310248pt;}
.wsc0{word-spacing:-4.246487pt;}
.ws37{word-spacing:-4.118965pt;}
.ws116{word-spacing:-3.927682pt;}
.ws6d{word-spacing:-3.863921pt;}
.ws50{word-spacing:-3.736399pt;}
.wsbf{word-spacing:-3.545115pt;}
.ws8{word-spacing:-3.490912pt;}
.wsbe{word-spacing:-3.481354pt;}
.wsa6{word-spacing:-3.345721pt;}
.ws97{word-spacing:-3.315575pt;}
.ws4a{word-spacing:-3.226310pt;}
.wse9{word-spacing:-3.156173pt;}
.ws11e{word-spacing:-3.124292pt;}
.ws129{word-spacing:-3.098788pt;}
.wsc{word-spacing:-3.083639pt;}
.wsa5{word-spacing:-3.065163pt;}
.wsdc{word-spacing:-2.964890pt;}
.wsd7{word-spacing:-2.907505pt;}
.wsf7{word-spacing:-2.869248pt;}
.wsea{word-spacing:-2.716221pt;}
.wsde{word-spacing:-2.588699pt;}
.ws4b{word-spacing:-2.524938pt;}
.ws99{word-spacing:-2.461177pt;}
.ws9d{word-spacing:-2.269894pt;}
.ws7b{word-spacing:-2.206133pt;}
.ws4d{word-spacing:-2.142372pt;}
.wscb{word-spacing:-2.135996pt;}
.ws48{word-spacing:-1.951089pt;}
.ws8e{word-spacing:-1.912832pt;}
.wscc{word-spacing:-1.887328pt;}
.ws130{word-spacing:-1.568522pt;}
.wse6{word-spacing:-1.530266pt;}
.wsab{word-spacing:-1.504761pt;}
.wsbd{word-spacing:-1.377239pt;}
.ws51{word-spacing:-1.249717pt;}
.wsd2{word-spacing:-0.994673pt;}
.ws88{word-spacing:-0.892655pt;}
.ws9c{word-spacing:-0.867151pt;}
.ws10c{word-spacing:-0.739628pt;}
.wsfc{word-spacing:-0.675867pt;}
.wsd0{word-spacing:-0.548345pt;}
.ws7a{word-spacing:-0.229540pt;}
.ws6a{word-spacing:-0.063761pt;}
.ws5e{word-spacing:-0.053134pt;}
.ws83{word-spacing:-0.042507pt;}
.ws12{word-spacing:0.000000pt;}
.ws23{word-spacing:0.025504pt;}
.ws8b{word-spacing:0.318805pt;}
.ws82{word-spacing:0.382566pt;}
.wsa{word-spacing:0.465455pt;}
.ws18{word-spacing:0.663115pt;}
.wsa9{word-spacing:1.020177pt;}
.ws1c{word-spacing:1.045681pt;}
.wsae{word-spacing:1.109443pt;}
.ws4{word-spacing:1.629092pt;}
.ws5{word-spacing:1.920002pt;}
.ws11b{word-spacing:2.129620pt;}
.ws27{word-spacing:3.443098pt;}
.wsc4{word-spacing:3.506859pt;}
.ws25{word-spacing:5.100885pt;}
.wsd6{word-spacing:6.057301pt;}
.ws45{word-spacing:7.715089pt;}
.wsdb{word-spacing:8.799027pt;}
.wsda{word-spacing:9.372877pt;}
.wsd9{word-spacing:11.030665pt;}
.wseb{word-spacing:11.158187pt;}
.ws4f{word-spacing:11.732036pt;}
.ws52{word-spacing:12.624691pt;}
.wsd8{word-spacing:13.134780pt;}
.ws1b{word-spacing:19.345108pt;}
.wsed{word-spacing:20.307785pt;}
.ws8d{word-spacing:20.344959pt;}
.ws31{word-spacing:20.849869pt;}
.wsb9{word-spacing:21.551241pt;}
.ws58{word-spacing:22.252612pt;}
.wsbb{word-spacing:23.209028pt;}
.ws111{word-spacing:23.400311pt;}
.ws85{word-spacing:23.410552pt;}
.wsc6{word-spacing:24.484250pt;}
.ws101{word-spacing:24.803055pt;}
.wse5{word-spacing:24.930577pt;}
.ws39{word-spacing:25.121860pt;}
.ws9f{word-spacing:25.628269pt;}
.wsa0{word-spacing:25.642001pt;}
.wsb1{word-spacing:27.162214pt;}
.wsc1{word-spacing:27.927347pt;}
.ws38{word-spacing:28.054869pt;}
.wsd4{word-spacing:29.776418pt;}
.ws10d{word-spacing:31.115401pt;}
.ws117{word-spacing:31.561728pt;}
.wsd3{word-spacing:34.494737pt;}
.wsad{word-spacing:35.833719pt;}
.ws9a{word-spacing:43.038600pt;}
.ws123{word-spacing:51.646200pt;}
._1d{margin-left:-36.930421pt;}
._42{margin-left:-34.617882pt;}
._20{margin-left:-33.602082pt;}
._15{margin-left:-31.880533pt;}
._21{margin-left:-30.158985pt;}
._1e{margin-left:-15.251659pt;}
._16{margin-left:-11.209184pt;}
._38{margin-left:-8.630654pt;}
._1{margin-left:-6.942600pt;}
._10{margin-left:-5.993540pt;}
._d{margin-left:-4.829095pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-2.065853pt;}
._5{margin-left:-1.134150pt;}
._4{width:1.273834pt;}
._7{width:2.240398pt;}
._2{width:3.416200pt;}
._b{width:4.596367pt;}
._3e{width:5.778602pt;}
._48{width:6.959742pt;}
._47{width:8.611718pt;}
._22{width:9.615157pt;}
._9{width:15.030046pt;}
._36{width:15.925727pt;}
._8{width:17.222626pt;}
._3b{width:18.475974pt;}
._23{width:19.524223pt;}
._1a{width:20.849869pt;}
._c{width:22.313142pt;}
._2b{width:24.165444pt;}
._3a{width:25.823232pt;}
._37{width:26.742773pt;}
._35{width:27.770315pt;}
._a{width:28.741842pt;}
._49{width:29.638907pt;}
._6{width:30.720026pt;}
._13{width:32.059053pt;}
._18{width:33.015469pt;}
._40{width:34.227531pt;}
._3f{width:36.178023pt;}
._34{width:38.320401pt;}
._24{width:41.023865pt;}
._4a{width:43.496997pt;}
._39{width:44.610220pt;}
._3c{width:45.605412pt;}
._45{width:46.787859pt;}
._46{width:47.847084pt;}
._27{width:49.287305pt;}
._43{width:51.555805pt;}
._44{width:55.063249pt;}
._e{width:57.767526pt;}
._41{width:59.126021pt;}
._26{width:62.282861pt;}
._1c{width:63.824828pt;}
._32{width:65.023524pt;}
._19{width:71.412395pt;}
._3d{width:86.077200pt;}
._17{width:95.565075pt;}
._33{width:103.292400pt;}
._1b{width:126.884523pt;}
._29{width:637.406620pt;}
._1f{width:767.786653pt;}
._2c{width:850.530242pt;}
._2a{width:903.698333pt;}
._12{width:961.771901pt;}
._2f{width:1020.626625pt;}
._2e{width:1049.829194pt;}
._25{width:1117.935546pt;}
._14{width:1227.593204pt;}
._f{width:1286.597689pt;}
._11{width:1323.998549pt;}
._30{width:1363.908852pt;}
._28{width:1514.798547pt;}
._2d{width:1649.117615pt;}
._31{width:1898.294477pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:56.149333pt;}
.y1c{bottom:96.000000pt;}
.y19a{bottom:96.182667pt;}
.y205{bottom:98.674667pt;}
.ye5{bottom:111.114667pt;}
.y1b7{bottom:115.126667pt;}
.y17f{bottom:116.600000pt;}
.y61{bottom:119.902667pt;}
.y199{bottom:120.085333pt;}
.y204{bottom:122.577333pt;}
.y1b{bottom:125.036000pt;}
.y166{bottom:126.562667pt;}
.y1d0{bottom:130.000000pt;}
.y96{bottom:131.293333pt;}
.y131{bottom:132.568000pt;}
.ye4{bottom:135.017333pt;}
.y7c{bottom:135.324000pt;}
.y1b6{bottom:139.029333pt;}
.yb2{bottom:143.805333pt;}
.y203{bottom:146.481333pt;}
.y101{bottom:149.634667pt;}
.y165{bottom:150.466667pt;}
.y17e{bottom:150.798667pt;}
.y1ea{bottom:152.448000pt;}
.y1a{bottom:154.070667pt;}
.y3a{bottom:155.430667pt;}
.y60{bottom:155.828000pt;}
.y198{bottom:157.272000pt;}
.y7b{bottom:159.226667pt;}
.y1b5{bottom:162.932000pt;}
.y14c{bottom:164.268000pt;}
.y95{bottom:166.588000pt;}
.y1cf{bottom:167.186667pt;}
.y130{bottom:169.136000pt;}
.y202{bottom:170.384000pt;}
.y164{bottom:174.369333pt;}
.ye3{bottom:176.189333pt;}
.y1e9{bottom:176.350667pt;}
.yb1{bottom:177.018667pt;}
.y39{bottom:179.333333pt;}
.y5f{bottom:179.730667pt;}
.yca{bottom:181.542667pt;}
.y19{bottom:183.120000pt;}
.y7a{bottom:183.130667pt;}
.y100{bottom:184.337333pt;}
.y14b{bottom:188.172000pt;}
.y1ce{bottom:191.090667pt;}
.y201{bottom:194.286667pt;}
.y197{bottom:194.458667pt;}
.y117{bottom:195.640000pt;}
.ye2{bottom:200.092000pt;}
.y1b4{bottom:200.118667pt;}
.y94{bottom:201.881333pt;}
.y17d{bottom:202.776000pt;}
.y38{bottom:203.236000pt;}
.yc9{bottom:205.446667pt;}
.y18{bottom:205.538667pt;}
.y79{bottom:207.033333pt;}
.y12f{bottom:207.833333pt;}
.y163{bottom:211.556000pt;}
.y1e8{bottom:211.990667pt;}
.y14a{bottom:212.074667pt;}
.yb0{bottom:212.892000pt;}
.y5e{bottom:215.858667pt;}
.y200{bottom:218.189333pt;}
.yff{bottom:219.038667pt;}
.y116{bottom:219.542667pt;}
.y1b3{bottom:224.022667pt;}
.y196{bottom:225.004000pt;}
.y17c{bottom:226.678667pt;}
.y17{bottom:227.958667pt;}
.y1cd{bottom:228.276000pt;}
.yc8{bottom:229.349333pt;}
.y162{bottom:235.458667pt;}
.y93{bottom:237.176000pt;}
.ye1{bottom:237.278667pt;}
.y5d{bottom:239.761333pt;}
.y1ff{bottom:242.093333pt;}
.y12e{bottom:242.450667pt;}
.y37{bottom:242.746667pt;}
.y78{bottom:244.220000pt;}
.y1e7{bottom:244.534667pt;}
.y1b2{bottom:247.925333pt;}
.yaf{bottom:248.753333pt;}
.yfe{bottom:248.770667pt;}
.y149{bottom:249.261333pt;}
.y16{bottom:250.377333pt;}
.y17b{bottom:250.581333pt;}
.y1cc{bottom:252.180000pt;}
.yc7{bottom:253.252000pt;}
.y195{bottom:255.548000pt;}
.y115{bottom:260.714667pt;}
.ye0{bottom:261.181333pt;}
.y77{bottom:268.122667pt;}
.y92{bottom:270.776000pt;}
.y1b1{bottom:271.828000pt;}
.y1fe{bottom:272.637333pt;}
.y15{bottom:272.797333pt;}
.y148{bottom:273.164000pt;}
.y1cb{bottom:276.082667pt;}
.y161{bottom:276.630667pt;}
.y1e6{bottom:277.080000pt;}
.yc6{bottom:277.154667pt;}
.y5c{bottom:279.449333pt;}
.yfd{bottom:280.002667pt;}
.y36{bottom:282.257333pt;}
.yae{bottom:284.614667pt;}
.y114{bottom:284.617333pt;}
.y194{bottom:286.093333pt;}
.y17a{bottom:287.768000pt;}
.y12d{bottom:290.257333pt;}
.y1b0{bottom:295.730667pt;}
.y147{bottom:297.066667pt;}
.ydf{bottom:298.368000pt;}
.y160{bottom:300.533333pt;}
.yc5{bottom:301.058667pt;}
.y91{bottom:304.974667pt;}
.y14{bottom:305.805333pt;}
.y1fd{bottom:309.824000pt;}
.y179{bottom:311.672000pt;}
.y76{bottom:311.808000pt;}
.y1e5{bottom:312.720000pt;}
.y1ca{bottom:313.269333pt;}
.y12c{bottom:314.160000pt;}
.yfc{bottom:314.705333pt;}
.y113{bottom:315.162667pt;}
.yad{bottom:320.488000pt;}
.y35{bottom:321.769333pt;}
.yde{bottom:322.270667pt;}
.yc4{bottom:324.961333pt;}
.y193{bottom:326.600000pt;}
.y13{bottom:328.224000pt;}
.y1af{bottom:332.917333pt;}
.y146{bottom:334.253333pt;}
.y15f{bottom:334.730667pt;}
.y178{bottom:335.574667pt;}
.y1e4{bottom:336.622667pt;}
.y12b{bottom:338.062667pt;}
.y5b{bottom:339.085333pt;}
.yac{bottom:344.390667pt;}
.y34{bottom:345.672000pt;}
.y1fc{bottom:347.010667pt;}
.yc3{bottom:348.864000pt;}
.yfb{bottom:349.406667pt;}
.y12{bottom:350.644000pt;}
.y112{bottom:352.348000pt;}
.y75{bottom:355.492000pt;}
.y90{bottom:355.974667pt;}
.y1ae{bottom:356.820000pt;}
.y145{bottom:358.156000pt;}
.y1c9{bottom:359.477333pt;}
.y5a{bottom:362.988000pt;}
.ydd{bottom:363.442667pt;}
.y192{bottom:363.786667pt;}
.y1e3{bottom:369.168000pt;}
.y33{bottom:369.574667pt;}
.y1fb{bottom:370.913333pt;}
.y177{bottom:372.761333pt;}
.y11{bottom:373.062667pt;}
.y12a{bottom:377.750667pt;}
.yab{bottom:378.589333pt;}
.y74{bottom:379.394667pt;}
.y8f{bottom:379.877333pt;}
.yfa{bottom:380.638667pt;}
.y1ad{bottom:380.724000pt;}
.y144{bottom:382.058667pt;}
.y1c8{bottom:383.380000pt;}
.y15e{bottom:386.709333pt;}
.y59{bottom:386.892000pt;}
.y111{bottom:389.534667pt;}
.yc2{bottom:390.036000pt;}
.y32{bottom:393.477333pt;}
.y10{bottom:395.482667pt;}
.y176{bottom:396.664000pt;}
.ydc{bottom:397.640000pt;}
.y191{bottom:400.973333pt;}
.y8e{bottom:403.780000pt;}
.y1ac{bottom:404.626667pt;}
.y1fa{bottom:405.110667pt;}
.y1e2{bottom:408.856000pt;}
.y15d{bottom:410.612000pt;}
.y58{bottom:410.794667pt;}
.y110{bottom:413.438667pt;}
.yf9{bottom:414.837333pt;}
.y73{bottom:416.581333pt;}
.y31{bottom:417.381333pt;}
.y143{bottom:419.245333pt;}
.y175{bottom:420.566667pt;}
.yf{bottom:424.517333pt;}
.yc1{bottom:427.222667pt;}
.y8d{bottom:427.682667pt;}
.y1ab{bottom:428.529333pt;}
.yaa{bottom:429.882667pt;}
.y15c{bottom:434.514667pt;}
.y129{bottom:437.718667pt;}
.y190{bottom:438.160000pt;}
.y72{bottom:440.484000pt;}
.y30{bottom:441.284000pt;}
.y142{bottom:443.149333pt;}
.y1c7{bottom:444.469333pt;}
.y57{bottom:446.921333pt;}
.ye{bottom:446.937333pt;}
.ydb{bottom:449.618667pt;}
.y10f{bottom:450.624000pt;}
.yc0{bottom:451.125333pt;}
.y8c{bottom:451.586667pt;}
.ya9{bottom:453.785333pt;}
.y1f9{bottom:457.089333pt;}
.y174{bottom:457.753333pt;}
.y15b{bottom:458.417333pt;}
.y128{bottom:461.622667pt;}
.y18f{bottom:462.062667pt;}
.y71{bottom:464.388000pt;}
.yf8{bottom:465.530667pt;}
.y1aa{bottom:465.716000pt;}
.y141{bottom:467.052000pt;}
.y1e1{bottom:468.344000pt;}
.yd{bottom:469.356000pt;}
.y56{bottom:470.824000pt;}
.yda{bottom:473.521333pt;}
.y10e{bottom:474.528000pt;}
.y8b{bottom:475.489333pt;}
.ya8{bottom:477.688000pt;}
.y2f{bottom:480.794667pt;}
.y1f8{bottom:480.992000pt;}
.y173{bottom:481.656000pt;}
.y127{bottom:485.525333pt;}
.y70{bottom:488.290667pt;}
.ybf{bottom:488.312000pt;}
.yf7{bottom:489.433333pt;}
.y1a9{bottom:489.618667pt;}
.yc{bottom:491.776000pt;}
.y1e0{bottom:492.246667pt;}
.y18e{bottom:499.249333pt;}
.y15a{bottom:499.589333pt;}
.y55{bottom:500.108000pt;}
.ya7{bottom:501.590667pt;}
.y140{bottom:504.238667pt;}
.y2e{bottom:504.697333pt;}
.y1c6{bottom:505.558667pt;}
.y8a{bottom:509.090667pt;}
.y126{bottom:509.428000pt;}
.yd9{bottom:510.708000pt;}
.y10d{bottom:511.714667pt;}
.yf6{bottom:513.337333pt;}
.yb{bottom:514.194667pt;}
.y1f7{bottom:518.178667pt;}
.y172{bottom:518.842667pt;}
.y18d{bottom:523.152000pt;}
.y54{bottom:524.010667pt;}
.y6f{bottom:525.477333pt;}
.ybe{bottom:525.498667pt;}
.y1df{bottom:527.886667pt;}
.y2d{bottom:528.600000pt;}
.y1a8{bottom:529.306667pt;}
.yd8{bottom:534.610667pt;}
.y159{bottom:536.776000pt;}
.yf5{bottom:537.240000pt;}
.ya6{bottom:537.464000pt;}
.y10c{bottom:542.258667pt;}
.y171{bottom:542.745333pt;}
.y89{bottom:544.384000pt;}
.y13f{bottom:545.409333pt;}
.ya{bottom:547.202667pt;}
.y125{bottom:548.125333pt;}
.y6e{bottom:549.380000pt;}
.y1de{bottom:551.789333pt;}
.y2c{bottom:552.504000pt;}
.y53{bottom:553.294667pt;}
.y1f6{bottom:555.365333pt;}
.yf4{bottom:561.142667pt;}
.ybd{bottom:562.684000pt;}
.y18c{bottom:562.841333pt;}
.y170{bottom:566.649333pt;}
.y13e{bottom:569.313333pt;}
.yd7{bottom:571.797333pt;}
.y10b{bottom:572.804000pt;}
.y6d{bottom:573.282667pt;}
.ya5{bottom:573.326667pt;}
.y52{bottom:577.197333pt;}
.y158{bottom:577.946667pt;}
.y9{bottom:578.425333pt;}
.y1f5{bottom:579.268000pt;}
.y88{bottom:579.677333pt;}
.y1c5{bottom:582.433333pt;}
.y124{bottom:584.693333pt;}
.yf3{bottom:585.045333pt;}
.y1dd{bottom:587.428000pt;}
.y1a7{bottom:589.594667pt;}
.y2b{bottom:592.014667pt;}
.ya4{bottom:597.229333pt;}
.ybc{bottom:599.870667pt;}
.y157{bottom:601.850667pt;}
.y16f{bottom:603.834667pt;}
.y13d{bottom:606.498667pt;}
.y123{bottom:608.596000pt;}
.y10a{bottom:609.990667pt;}
.y1dc{bottom:611.332000pt;}
.yd6{bottom:612.968000pt;}
.y51{bottom:613.122667pt;}
.y1a6{bottom:613.497333pt;}
.y6c{bottom:614.454667pt;}
.y87{bottom:614.972000pt;}
.y2a{bottom:615.917333pt;}
.y20f{bottom:618.440000pt;}
.yf2{bottom:619.664000pt;}
.ya3{bottom:621.132000pt;}
.y18b{bottom:623.128000pt;}
.y156{bottom:625.753333pt;}
.y16e{bottom:627.738667pt;}
.y13c{bottom:630.402667pt;}
.y122{bottom:632.498667pt;}
.y1db{bottom:635.234667pt;}
.yd5{bottom:636.872000pt;}
.y50{bottom:637.025333pt;}
.y1a5{bottom:637.401333pt;}
.y6b{bottom:638.357333pt;}
.y29{bottom:639.820000pt;}
.y1f4{bottom:640.357333pt;}
.ybb{bottom:641.042667pt;}
.y8{bottom:641.424000pt;}
.y20e{bottom:642.342667pt;}
.y1c4{bottom:642.721333pt;}
.y18a{bottom:647.032000pt;}
.y86{bottom:650.265333pt;}
.y109{bottom:651.161333pt;}
.ya2{bottom:656.993333pt;}
.y4f{bottom:660.928000pt;}
.y1a4{bottom:661.304000pt;}
.y28{bottom:663.724000pt;}
.y16d{bottom:664.925333pt;}
.y1c3{bottom:666.624000pt;}
.yf1{bottom:667.469333pt;}
.y1da{bottom:670.873333pt;}
.y189{bottom:670.934667pt;}
.y121{bottom:671.196000pt;}
.y13b{bottom:671.573333pt;}
.y155{bottom:671.961333pt;}
.yd4{bottom:674.058667pt;}
.yba{bottom:675.240000pt;}
.y1f3{bottom:677.544000pt;}
.y6a{bottom:678.045333pt;}
.y20d{bottom:679.529333pt;}
.y7{bottom:680.438667pt;}
.ya1{bottom:680.897333pt;}
.y1a3{bottom:685.206667pt;}
.y108{bottom:685.358667pt;}
.y85{bottom:685.560000pt;}
.y27{bottom:687.626667pt;}
.y16c{bottom:688.828000pt;}
.yf0{bottom:693.860000pt;}
.y1d9{bottom:694.777333pt;}
.y120{bottom:695.098667pt;}
.y13a{bottom:695.477333pt;}
.y154{bottom:695.864000pt;}
.y4e{bottom:696.853333pt;}
.y1f2{bottom:701.446667pt;}
.y20c{bottom:703.432000pt;}
.yef{bottom:704.793333pt;}
.ya0{bottom:704.800000pt;}
.y1c2{bottom:707.796000pt;}
.y188{bottom:708.121333pt;}
.y1a2{bottom:709.109333pt;}
.y6{bottom:710.110667pt;}
.yd3{bottom:710.606667pt;}
.y26{bottom:711.529333pt;}
.y16b{bottom:712.730667pt;}
.y43{bottom:717.413333pt;}
.y11f{bottom:719.001333pt;}
.y139{bottom:719.380000pt;}
.yb9{bottom:720.698667pt;}
.y4d{bottom:720.757333pt;}
.y84{bottom:720.853333pt;}
.yd2{bottom:721.540000pt;}
.y20b{bottom:727.334667pt;}
.y1d8{bottom:730.416000pt;}
.y1c1{bottom:731.698667pt;}
.y187{bottom:732.024000pt;}
.y153{bottom:733.050667pt;}
.y107{bottom:737.337333pt;}
.y69{bottom:738.333333pt;}
.y1f1{bottom:738.633333pt;}
.y9f{bottom:740.964000pt;}
.y42{bottom:741.316000pt;}
.y11e{bottom:742.905333pt;}
.y138{bottom:743.282667pt;}
.y4c{bottom:744.660000pt;}
.y1a1{bottom:746.296000pt;}
.y16a{bottom:749.917333pt;}
.y25{bottom:751.040000pt;}
.y9e{bottom:751.898667pt;}
.yee{bottom:752.600000pt;}
.y1d7{bottom:754.318667pt;}
.y1c0{bottom:755.602667pt;}
.y186{bottom:755.926667pt;}
.y83{bottom:756.148000pt;}
.y152{bottom:756.953333pt;}
.y106{bottom:761.240000pt;}
.y68{bottom:762.236000pt;}
.y1f0{bottom:762.536000pt;}
.y5{bottom:763.196000pt;}
.y20a{bottom:764.521333pt;}
.y41{bottom:765.218667pt;}
.yd1{bottom:765.225333pt;}
.y11d{bottom:766.808000pt;}
.y137{bottom:767.185333pt;}
.y169{bottom:773.820000pt;}
.y4b{bottom:773.944000pt;}
.yed{bottom:776.502667pt;}
.y1d6{bottom:778.222667pt;}
.y1bf{bottom:779.505333pt;}
.yb8{bottom:780.985333pt;}
.y1a0{bottom:783.482667pt;}
.y105{bottom:785.142667pt;}
.y209{bottom:788.424000pt;}
.yd0{bottom:789.128000pt;}
.y24{bottom:790.550667pt;}
.y82{bottom:791.441333pt;}
.y185{bottom:793.113333pt;}
.y151{bottom:794.140000pt;}
.y9d{bottom:797.076000pt;}
.y67{bottom:799.422667pt;}
.y1ef{bottom:799.722667pt;}
.yec{bottom:800.405333pt;}
.y4a{bottom:803.226667pt;}
.y4{bottom:804.408000pt;}
.y40{bottom:804.729333pt;}
.yb7{bottom:804.889333pt;}
.y11c{bottom:805.505333pt;}
.y136{bottom:806.873333pt;}
.y19f{bottom:807.385333pt;}
.y104{bottom:809.046667pt;}
.y1d5{bottom:810.766667pt;}
.ycf{bottom:813.030667pt;}
.y168{bottom:814.992000pt;}
.y1be{bottom:816.692000pt;}
.y184{bottom:817.016000pt;}
.y150{bottom:818.044000pt;}
.y66{bottom:823.325333pt;}
.y1ee{bottom:823.626667pt;}
.yeb{bottom:824.308000pt;}
.y208{bottom:825.610667pt;}
.y81{bottom:826.734667pt;}
.yb6{bottom:828.792000pt;}
.y11b{bottom:829.408000pt;}
.y23{bottom:830.062667pt;}
.y9c{bottom:832.938667pt;}
.y103{bottom:832.949333pt;}
.y49{bottom:839.152000pt;}
.y1bd{bottom:840.594667pt;}
.y183{bottom:840.918667pt;}
.y3f{bottom:844.241333pt;}
.y19e{bottom:844.572000pt;}
.y3{bottom:845.620000pt;}
.y207{bottom:849.514667pt;}
.yce{bottom:850.217333pt;}
.yb5{bottom:852.694667pt;}
.y167{bottom:854.680000pt;}
.y1d4{bottom:856.176000pt;}
.y9b{bottom:856.841333pt;}
.yea{bottom:858.926667pt;}
.y14f{bottom:859.214667pt;}
.y65{bottom:860.512000pt;}
.y1ed{bottom:860.812000pt;}
.y80{bottom:862.029333pt;}
.y48{bottom:863.056000pt;}
.y1bc{bottom:864.497333pt;}
.y11a{bottom:865.976000pt;}
.y135{bottom:867.161333pt;}
.y22{bottom:869.750667pt;}
.ycd{bottom:874.121333pt;}
.yb4{bottom:876.597333pt;}
.y182{bottom:878.105333pt;}
.y9a{bottom:880.744000pt;}
.y19d{bottom:881.758667pt;}
.y14e{bottom:883.117333pt;}
.y3e{bottom:883.752000pt;}
.y64{bottom:884.416000pt;}
.y2{bottom:886.832000pt;}
.y47{bottom:886.958667pt;}
.y1bb{bottom:888.400000pt;}
.y119{bottom:889.878667pt;}
.y134{bottom:891.064000pt;}
.y1d3{bottom:891.816000pt;}
.y1ec{bottom:895.010667pt;}
.y206{bottom:895.844000pt;}
.y7f{bottom:897.322667pt;}
.y181{bottom:902.009333pt;}
.ye9{bottom:906.732000pt;}
.y14d{bottom:907.021333pt;}
.yb3{bottom:910.796000pt;}
.y46{bottom:910.861333pt;}
.ycc{bottom:911.306667pt;}
.y118{bottom:913.781333pt;}
.y133{bottom:914.968000pt;}
.y1d2{bottom:915.718667pt;}
.y99{bottom:916.605333pt;}
.y19c{bottom:918.945333pt;}
.y63{bottom:921.601333pt;}
.y3d{bottom:923.262667pt;}
.y1ba{bottom:925.586667pt;}
.y21{bottom:930.037333pt;}
.ye8{bottom:930.636000pt;}
.y7e{bottom:930.924000pt;}
.y45{bottom:934.764000pt;}
.ycb{bottom:935.210667pt;}
.y1{bottom:938.152000pt;}
.y132{bottom:938.870667pt;}
.y180{bottom:939.194667pt;}
.y98{bottom:940.509333pt;}
.y62{bottom:945.505333pt;}
.y1eb{bottom:946.988000pt;}
.y19b{bottom:949.489333pt;}
.y20{bottom:952.457333pt;}
.y102{bottom:952.478667pt;}
.y1b9{bottom:956.132000pt;}
.y3c{bottom:962.773333pt;}
.ye7{bottom:964.833333pt;}
.y7d{bottom:965.121333pt;}
.y44{bottom:970.890667pt;}
.y97{bottom:976.381333pt;}
.y1d1{bottom:978.034667pt;}
.y1b8{bottom:980.034667pt;}
.y1f{bottom:981.518667pt;}
.y3b{bottom:986.676000pt;}
.ye6{bottom:1010.290667pt;}
.y1e{bottom:1010.580000pt;}
.h4{height:40.727307pt;}
.h5{height:43.636400pt;}
.h6{height:47.820800pt;}
.h3{height:57.384800pt;}
.h7{height:68.861600pt;}
.h2{height:82.650000pt;}
.h8{height:90.956800pt;}
.ha{height:91.554133pt;}
.h9{height:91.559467pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:68.252000pt;}
.x1e{left:76.056000pt;}
.xf{left:96.000000pt;}
.x14{left:107.272000pt;}
.x4{left:108.908000pt;}
.x12{left:115.076000pt;}
.x10{left:119.412000pt;}
.x2{left:128.026667pt;}
.xd{left:135.020000pt;}
.xb{left:150.240000pt;}
.x20{left:152.586667pt;}
.x21{left:154.096000pt;}
.x11{left:155.310667pt;}
.xa{left:156.838667pt;}
.xc{left:169.357333pt;}
.x22{left:174.040000pt;}
.x7{left:203.489333pt;}
.x5{left:246.820000pt;}
.x1d{left:258.476000pt;}
.x17{left:266.829333pt;}
.x1{left:290.413333pt;}
.x13{left:310.345333pt;}
.x8{left:319.461333pt;}
.x6{left:322.414667pt;}
.x3{left:341.825333pt;}
.x1a{left:348.560000pt;}
.x19{left:356.362667pt;}
.x9{left:364.850667pt;}
.x15{left:376.612000pt;}
.x1c{left:389.046667pt;}
.xe{left:392.948000pt;}
.x1b{left:399.069333pt;}
.x16{left:411.992000pt;}
.x18{left:472.392000pt;}
}




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