
    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_ed0e8e9aec5527badc017002.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e8ff0cc13d842a9284dfa398.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_547d20f398396eb626851902.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_719d71db46885054a3fea65c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6976e6e681cf1437ab92a03a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8dbd761de81dcd39700aae92.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_8d554b1ae6fc4a4cf4788412.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.844000;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_34c5b430a489d6b9780eee6f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_266bdcafb2b94ef5e8638f60.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b788bbed6a06af4be002709a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fc480287d811c862ee998a98.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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_42bad033cf8564d9ae6adc34.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_76923faacdede7603df71b94.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.852000;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_14381313abf4a1fb818d05b1.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2430563c99a8cc09c54cc127.woff2')format("woff");}.fff{font-family:fff;line-height:0.919000;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_1ebc51a685a053948b6f8903.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.431000;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_d6b88a8bfc7edda5d1f9d2e2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.767000;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_905c9cab50cd6844042b3f35.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727000;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_877b5c03099c06b701ecd5d6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.905000;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_7f85285644025aa591082346.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.919000;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_7df6b020aa000ba087c1946f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.919000;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_3c81d635bcece1186eedde03.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.919000;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);}
.ve{vertical-align:-35.295276px;}
.v6{vertical-align:-32.880000px;}
.vd{vertical-align:-29.863668px;}
.vc{vertical-align:-26.404800px;}
.vb{vertical-align:-24.755250px;}
.v2{vertical-align:-22.854000px;}
.v7{vertical-align:-10.278000px;}
.v3{vertical-align:-8.970000px;}
.v8{vertical-align:-5.982000px;}
.va{vertical-align:-1.569762px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.121451px;}
.v1{vertical-align:21.690000px;}
.v5{vertical-align:22.854000px;}
.v4{vertical-align:40.440000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000300px;}
.ls2{letter-spacing:0.001002px;}
.ls22{letter-spacing:0.001140px;}
.ls19{letter-spacing:0.001908px;}
.ls5d{letter-spacing:0.002066px;}
.ls41{letter-spacing:0.002245px;}
.ls5c{letter-spacing:0.002864px;}
.ls2c{letter-spacing:0.003269px;}
.ls5a{letter-spacing:0.003352px;}
.ls44{letter-spacing:0.003573px;}
.ls63{letter-spacing:0.721591px;}
.ls59{letter-spacing:1.012868px;}
.ls25{letter-spacing:2.143908px;}
.ls2a{letter-spacing:2.146172px;}
.ls27{letter-spacing:2.149908px;}
.ls5b{letter-spacing:2.150234px;}
.ls5f{letter-spacing:2.943818px;}
.ls0{letter-spacing:2.984525px;}
.ls5e{letter-spacing:2.988185px;}
.ls5{letter-spacing:2.989409px;}
.ls23{letter-spacing:2.990525px;}
.ls4c{letter-spacing:3.059364px;}
.ls39{letter-spacing:3.443602px;}
.ls54{letter-spacing:3.449602px;}
.ls10{letter-spacing:5.580538px;}
.ls4d{letter-spacing:5.809235px;}
.ls40{letter-spacing:6.433866px;}
.ls56{letter-spacing:7.172481px;}
.ls50{letter-spacing:7.678479px;}
.ls3c{letter-spacing:8.298312px;}
.ls16{letter-spacing:8.303139px;}
.ls31{letter-spacing:8.304312px;}
.lsf{letter-spacing:9.029602px;}
.ls20{letter-spacing:9.962338px;}
.ls1a{letter-spacing:12.950525px;}
.ls42{letter-spacing:13.284538px;}
.lsb{letter-spacing:16.598446px;}
.ls1d{letter-spacing:16.601607px;}
.lse{letter-spacing:16.602538px;}
.ls1f{letter-spacing:16.607306px;}
.ls18{letter-spacing:16.608538px;}
.ls38{letter-spacing:17.792338px;}
.ls1b{letter-spacing:17.826615px;}
.ls1e{letter-spacing:18.281602px;}
.ls4f{letter-spacing:18.426557px;}
.ls4e{letter-spacing:18.427559px;}
.ls51{letter-spacing:18.432780px;}
.ls52{letter-spacing:18.433559px;}
.ls17{letter-spacing:18.745908px;}
.ls3e{letter-spacing:18.793409px;}
.ls65{letter-spacing:19.237409px;}
.ls37{letter-spacing:19.364446px;}
.lsc{letter-spacing:19.523602px;}
.ls21{letter-spacing:19.591140px;}
.ls29{letter-spacing:19.592525px;}
.ls1c{letter-spacing:19.597140px;}
.ls6{letter-spacing:19.814338px;}
.ls3d{letter-spacing:19.923199px;}
.ls30{letter-spacing:20.321607px;}
.ls2e{letter-spacing:20.322538px;}
.ls45{letter-spacing:21.413468px;}
.lsa{letter-spacing:21.420532px;}
.ls49{letter-spacing:21.491364px;}
.ls3a{letter-spacing:21.530338px;}
.ls28{letter-spacing:21.559908px;}
.ls58{letter-spacing:21.893549px;}
.ls35{letter-spacing:21.896446px;}
.ls8{letter-spacing:21.969269px;}
.ls26{letter-spacing:22.400338px;}
.ls32{letter-spacing:22.538446px;}
.ls2d{letter-spacing:23.306525px;}
.ls2f{letter-spacing:23.311409px;}
.ls34{letter-spacing:24.046172px;}
.ls4b{letter-spacing:24.247235px;}
.ls2b{letter-spacing:24.301908px;}
.ls61{letter-spacing:24.741158px;}
.lsd{letter-spacing:24.905139px;}
.ls55{letter-spacing:25.327866px;}
.ls48{letter-spacing:25.379602px;}
.ls24{letter-spacing:25.387140px;}
.ls9{letter-spacing:25.664525px;}
.ls4a{letter-spacing:26.104479px;}
.ls53{letter-spacing:26.110479px;}
.ls3f{letter-spacing:26.359866px;}
.ls36{letter-spacing:27.666312px;}
.ls12{letter-spacing:29.225607px;}
.ls15{letter-spacing:29.226538px;}
.ls3b{letter-spacing:29.831139px;}
.ls4{letter-spacing:29.889030px;}
.ls1{letter-spacing:30.636532px;}
.ls62{letter-spacing:30.717254px;}
.ls33{letter-spacing:30.845139px;}
.ls13{letter-spacing:30.947602px;}
.ls11{letter-spacing:31.378172px;}
.ls47{letter-spacing:35.621139px;}
.ls14{letter-spacing:37.536312px;}
.ls60{letter-spacing:125.197278px;}
.ls43{letter-spacing:157.200538px;}
.ls64{letter-spacing:174.766082px;}
.ls46{letter-spacing:224.927468px;}
.ls57{letter-spacing:501.612384px;}
.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;}
}
.ws9d{word-spacing:-59.775600px;}
.ws62{word-spacing:-38.937826px;}
.wse5{word-spacing:-36.071827px;}
.ws108{word-spacing:-31.633157px;}
.ws8e{word-spacing:-30.654822px;}
.wsef{word-spacing:-30.619438px;}
.ws95{word-spacing:-28.955301px;}
.wsbf{word-spacing:-25.650940px;}
.wsbe{word-spacing:-23.794968px;}
.wsc8{word-spacing:-22.638940px;}
.wsca{word-spacing:-19.681368px;}
.wscc{word-spacing:-17.800968px;}
.wse3{word-spacing:-17.665688px;}
.ws22{word-spacing:-16.605662px;}
.wscf{word-spacing:-16.252968px;}
.wsd8{word-spacing:-15.665181px;}
.wse4{word-spacing:-15.359443px;}
.ws28{word-spacing:-15.278643px;}
.wsda{word-spacing:-15.185181px;}
.wse1{word-spacing:-14.573887px;}
.wsed{word-spacing:-11.015181px;}
.ws147{word-spacing:-6.904518px;}
.ws122{word-spacing:-5.993639px;}
.ws129{word-spacing:-5.813294px;}
.ws11e{word-spacing:-5.137404px;}
.wsc0{word-spacing:-3.335478px;}
.ws13f{word-spacing:-3.215927px;}
.ws45{word-spacing:-3.156152px;}
.wsb9{word-spacing:-3.036600px;}
.wsba{word-spacing:-2.976825px;}
.ws6f{word-spacing:-2.917049px;}
.ws88{word-spacing:-2.857274px;}
.ws4c{word-spacing:-2.677947px;}
.wsfa{word-spacing:-2.558396px;}
.ws11{word-spacing:-2.447827px;}
.ws7b{word-spacing:-2.319293px;}
.wsf8{word-spacing:-2.259518px;}
.ws37{word-spacing:-2.199742px;}
.ws8b{word-spacing:-2.139966px;}
.ws64{word-spacing:-2.020415px;}
.ws24{word-spacing:-1.960640px;}
.ws16f{word-spacing:-1.909843px;}
.ws47{word-spacing:-1.900864px;}
.ws4a{word-spacing:-1.781313px;}
.ws97{word-spacing:-1.768988px;}
.ws98{word-spacing:-1.766108px;}
.ws96{word-spacing:-1.763579px;}
.ws35{word-spacing:-1.601986px;}
.ws164{word-spacing:-1.542210px;}
.wsfd{word-spacing:-1.422659px;}
.ws49{word-spacing:-1.243332px;}
.ws111{word-spacing:-1.183557px;}
.ws8{word-spacing:-1.156666px;}
.ws1d{word-spacing:-1.123781px;}
.ws33{word-spacing:-0.944454px;}
.ws115{word-spacing:-0.884679px;}
.wsb8{word-spacing:-0.824903px;}
.ws6b{word-spacing:-0.765128px;}
.ws140{word-spacing:-0.645576px;}
.ws56{word-spacing:-0.585801px;}
.ws8c{word-spacing:-0.528419px;}
.ws89{word-spacing:-0.526025px;}
.ws16c{word-spacing:-0.346698px;}
.wsc7{word-spacing:-0.317579px;}
.ws143{word-spacing:-0.312818px;}
.ws141{word-spacing:-0.308265px;}
.wsc9{word-spacing:-0.286923px;}
.ws14e{word-spacing:-0.227147px;}
.ws119{word-spacing:-0.167372px;}
.wsf{word-spacing:-0.080698px;}
.ws16b{word-spacing:-0.071731px;}
.ws100{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws72{word-spacing:-0.047820px;}
.ws99{word-spacing:-0.041843px;}
.ws17d{word-spacing:-0.026899px;}
.wsbd{word-spacing:-0.015471px;}
.ws23{word-spacing:0.000000px;}
.ws8d{word-spacing:0.011955px;}
.ws17f{word-spacing:0.134496px;}
.ws27{word-spacing:0.191282px;}
.ws7e{word-spacing:0.251058px;}
.ws179{word-spacing:0.295891px;}
.ws5f{word-spacing:0.310833px;}
.ws11b{word-spacing:0.370609px;}
.ws16e{word-spacing:0.403488px;}
.ws8a{word-spacing:0.430384px;}
.ws7a{word-spacing:0.490160px;}
.ws2e{word-spacing:0.549936px;}
.ws32{word-spacing:0.609711px;}
.ws6a{word-spacing:0.729262px;}
.ws83{word-spacing:0.789038px;}
.ws5c{word-spacing:0.809755px;}
.ws5d{word-spacing:0.848814px;}
.wsdc{word-spacing:0.860188px;}
.ws170{word-spacing:0.941472px;}
.ws1e{word-spacing:0.968365px;}
.ws86{word-spacing:1.028140px;}
.ws178{word-spacing:1.049069px;}
.ws151{word-spacing:1.087916px;}
.ws34{word-spacing:1.147692px;}
.wsa7{word-spacing:1.207467px;}
.ws14f{word-spacing:1.327018px;}
.ws130{word-spacing:1.366714px;}
.ws15d{word-spacing:1.369572px;}
.ws132{word-spacing:1.371564px;}
.ws135{word-spacing:1.375559px;}
.ws139{word-spacing:1.376561px;}
.ws133{word-spacing:1.377564px;}
.ws159{word-spacing:1.379848px;}
.wsf6{word-spacing:1.386794px;}
.ws4e{word-spacing:1.446570px;}
.ws39{word-spacing:1.506345px;}
.ws169{word-spacing:1.566121px;}
.ws1b{word-spacing:1.625896px;}
.wsa1{word-spacing:1.745448px;}
.ws55{word-spacing:1.805223px;}
.wsb{word-spacing:1.856045px;}
.ws31{word-spacing:1.864999px;}
.ws166{word-spacing:1.924774px;}
.ws18{word-spacing:1.984550px;}
.wse{word-spacing:2.071238px;}
.wsf4{word-spacing:2.104101px;}
.ws117{word-spacing:2.163877px;}
.ws73{word-spacing:2.283428px;}
.ws17a{word-spacing:2.340230px;}
.wsb2{word-spacing:2.343204px;}
.ws10{word-spacing:2.394029px;}
.ws50{word-spacing:2.402979px;}
.ws2a{word-spacing:2.522530px;}
.ws104{word-spacing:2.577516px;}
.wseb{word-spacing:2.582306px;}
.wscb{word-spacing:2.642082px;}
.ws175{word-spacing:2.663021px;}
.ws3c{word-spacing:2.701857px;}
.wsa6{word-spacing:2.757353px;}
.ws21{word-spacing:2.761633px;}
.ws9e{word-spacing:2.821408px;}
.wsae{word-spacing:2.881184px;}
.wsb5{word-spacing:2.940960px;}
.ws5{word-spacing:3.039610px;}
.ws48{word-spacing:3.060511px;}
.ws181{word-spacing:3.065866px;}
.ws171{word-spacing:3.067572px;}
.wsdf{word-spacing:3.083455px;}
.ws3{word-spacing:3.093408px;}
.ws4d{word-spacing:3.120286px;}
.ws59{word-spacing:3.180062px;}
.ws106{word-spacing:3.207413px;}
.wsbb{word-spacing:3.238956px;}
.wsd9{word-spacing:3.239838px;}
.wsac{word-spacing:3.295346px;}
.ws1{word-spacing:3.299613px;}
.ws155{word-spacing:3.315892px;}
.wsa0{word-spacing:3.317518px;}
.ws2{word-spacing:3.359389px;}
.ws17c{word-spacing:3.416198px;}
.ws112{word-spacing:3.419164px;}
.wsd4{word-spacing:3.478940px;}
.ws9{word-spacing:3.577594px;}
.ws114{word-spacing:3.598491px;}
.ws85{word-spacing:3.658267px;}
.wsdb{word-spacing:3.714296px;}
.ws7f{word-spacing:3.718042px;}
.wsfc{word-spacing:3.777818px;}
.ws5b{word-spacing:3.789773px;}
.wsf3{word-spacing:3.801728px;}
.ws25{word-spacing:3.837594px;}
.ws70{word-spacing:3.861504px;}
.ws63{word-spacing:3.897369px;}
.ws173{word-spacing:3.954182px;}
.ws10f{word-spacing:3.957145px;}
.ws80{word-spacing:4.016920px;}
.ws46{word-spacing:4.076696px;}
.ws11a{word-spacing:4.136472px;}
.wsce{word-spacing:4.196247px;}
.ws38{word-spacing:4.256023px;}
.ws81{word-spacing:4.315798px;}
.ws16a{word-spacing:4.375574px;}
.ws76{word-spacing:4.435350px;}
.wsf2{word-spacing:4.495125px;}
.ws113{word-spacing:4.734228px;}
.ws29{word-spacing:4.794003px;}
.ws94{word-spacing:4.853779px;}
.ws2b{word-spacing:4.913554px;}
.wsaa{word-spacing:4.923892px;}
.ws150{word-spacing:4.973330px;}
.wsa{word-spacing:4.976352px;}
.ws2d{word-spacing:5.033106px;}
.ws60{word-spacing:5.051338px;}
.ws6e{word-spacing:5.092881px;}
.ws156{word-spacing:5.152657px;}
.ws12f{word-spacing:5.191546px;}
.ws82{word-spacing:5.272208px;}
.wsa5{word-spacing:5.295353px;}
.wsd7{word-spacing:5.319115px;}
.ws20{word-spacing:5.331984px;}
.ws66{word-spacing:5.359705px;}
.wsa3{word-spacing:5.511310px;}
.wsa2{word-spacing:5.563093px;}
.ws2c{word-spacing:5.571086px;}
.ws13b{word-spacing:5.630862px;}
.wsd{word-spacing:5.675731px;}
.ws110{word-spacing:5.690637px;}
.ws9a{word-spacing:5.750413px;}
.ws9b{word-spacing:5.792007px;}
.ws9c{word-spacing:5.810188px;}
.ws14c{word-spacing:5.837126px;}
.ws16{word-spacing:5.869964px;}
.ws1c{word-spacing:5.929740px;}
.wsa4{word-spacing:5.931353px;}
.ws2f{word-spacing:5.989515px;}
.ws77{word-spacing:6.049291px;}
.wsf7{word-spacing:6.109066px;}
.ws7c{word-spacing:6.121021px;}
.ws54{word-spacing:6.168842px;}
.wsfe{word-spacing:6.228618px;}
.ws7{word-spacing:6.267514px;}
.ws11d{word-spacing:6.288393px;}
.wsfb{word-spacing:6.467720px;}
.ws52{word-spacing:6.527496px;}
.ws26{word-spacing:6.599226px;}
.ws116{word-spacing:6.647047px;}
.ws87{word-spacing:6.706822px;}
.wsf9{word-spacing:6.766598px;}
.ws11c{word-spacing:6.826374px;}
.ws68{word-spacing:6.886149px;}
.ws177{word-spacing:7.020691px;}
.wsd6{word-spacing:7.065476px;}
.wsa8{word-spacing:7.096734px;}
.wsff{word-spacing:7.121021px;}
.wsab{word-spacing:7.125252px;}
.wsbc{word-spacing:7.185027px;}
.ws10e{word-spacing:7.244803px;}
.wsea{word-spacing:7.304578px;}
.ws146{word-spacing:7.364354px;}
.ws157{word-spacing:7.483905px;}
.wsb7{word-spacing:7.493001px;}
.ws78{word-spacing:7.543681px;}
.wsa9{word-spacing:7.555636px;}
.ws158{word-spacing:7.603456px;}
.ws53{word-spacing:7.663232px;}
.ws61{word-spacing:7.675187px;}
.ws3e{word-spacing:7.782783px;}
.ws3a{word-spacing:7.842559px;}
.wsec{word-spacing:7.875124px;}
.ws12{word-spacing:7.881466px;}
.wsee{word-spacing:7.902334px;}
.ws9f{word-spacing:7.914289px;}
.ws67{word-spacing:7.974065px;}
.ws152{word-spacing:8.021886px;}
.ws6c{word-spacing:8.081661px;}
.ws13e{word-spacing:8.141437px;}
.ws176{word-spacing:8.150458px;}
.ws79{word-spacing:8.260988px;}
.ws167{word-spacing:8.320764px;}
.ws174{word-spacing:8.365651px;}
.ws74{word-spacing:8.440315px;}
.ws172{word-spacing:8.527046px;}
.ws30{word-spacing:8.571821px;}
.wscd{word-spacing:8.739193px;}
.wsf5{word-spacing:8.798968px;}
.wsb1{word-spacing:8.858744px;}
.wsd2{word-spacing:8.859811px;}
.ws17b{word-spacing:8.903635px;}
.ws17{word-spacing:8.978295px;}
.ws36{word-spacing:9.038071px;}
.ws41{word-spacing:9.217398px;}
.wsaf{word-spacing:9.336949px;}
.ws1f{word-spacing:9.396724px;}
.ws3f{word-spacing:9.456500px;}
.ws92{word-spacing:9.516276px;}
.ws4f{word-spacing:9.815154px;}
.wsb6{word-spacing:9.832754px;}
.ws168{word-spacing:9.874929px;}
.wsc{word-spacing:9.925805px;}
.ws3b{word-spacing:9.934705px;}
.ws161{word-spacing:9.994480px;}
.ws65{word-spacing:10.059510px;}
.wsb3{word-spacing:10.114032px;}
.ws6d{word-spacing:10.173807px;}
.wsd3{word-spacing:10.175406px;}
.ws13a{word-spacing:10.233583px;}
.ws4b{word-spacing:10.293358px;}
.wsf1{word-spacing:10.353134px;}
.ws5e{word-spacing:10.532461px;}
.ws12e{word-spacing:10.544486px;}
.ws5a{word-spacing:10.702488px;}
.wsd5{word-spacing:10.711788px;}
.ws44{word-spacing:10.771563px;}
.ws13{word-spacing:10.799759px;}
.wsad{word-spacing:10.811936px;}
.ws90{word-spacing:10.889915px;}
.ws8f{word-spacing:10.891114px;}
.ws17e{word-spacing:11.001773px;}
.ws13c{word-spacing:11.130217px;}
.ws1a{word-spacing:11.249768px;}
.ws69{word-spacing:11.309544px;}
.ws19{word-spacing:11.429095px;}
.ws40{word-spacing:11.548646px;}
.ws57{word-spacing:11.608422px;}
.ws43{word-spacing:11.668197px;}
.ws3d{word-spacing:11.727973px;}
.ws93{word-spacing:11.799703px;}
.ws71{word-spacing:11.967075px;}
.wsf0{word-spacing:12.026851px;}
.ws180{word-spacing:12.131539px;}
.ws58{word-spacing:12.146402px;}
.ws10d{word-spacing:12.206178px;}
.wsdd{word-spacing:12.284116px;}
.wse8{word-spacing:12.285118px;}
.ws101{word-spacing:12.445280px;}
.ws162{word-spacing:12.863709px;}
.ws75{word-spacing:12.923485px;}
.ws42{word-spacing:13.043036px;}
.ws91{word-spacing:13.054991px;}
.ws14{word-spacing:14.118997px;}
.wsd1{word-spacing:14.656977px;}
.ws16d{word-spacing:14.776528px;}
.wsb4{word-spacing:14.809340px;}
.wsb0{word-spacing:15.150383px;}
.wsd0{word-spacing:15.434060px;}
.ws145{word-spacing:15.671654px;}
.ws142{word-spacing:16.241654px;}
.wsc3{word-spacing:16.674739px;}
.ws7d{word-spacing:16.769084px;}
.ws84{word-spacing:17.357084px;}
.ws102{word-spacing:18.117932px;}
.wsc2{word-spacing:18.366392px;}
.ws131{word-spacing:18.371722px;}
.wsde{word-spacing:18.375421px;}
.ws15a{word-spacing:18.377722px;}
.wse7{word-spacing:18.399053px;}
.ws165{word-spacing:18.447464px;}
.ws153{word-spacing:19.415654px;}
.ws154{word-spacing:19.865654px;}
.ws14d{word-spacing:21.125722px;}
.ws163{word-spacing:21.627464px;}
.ws118{word-spacing:22.055654px;}
.ws13d{word-spacing:24.089654px;}
.ws144{word-spacing:24.209654px;}
.wse2{word-spacing:24.465166px;}
.ws51{word-spacing:26.827469px;}
.ws109{word-spacing:28.125413px;}
.ws15c{word-spacing:29.016570px;}
.ws134{word-spacing:29.019564px;}
.ws6{word-spacing:29.829450px;}
.ws0{word-spacing:32.192873px;}
.wse9{word-spacing:36.803512px;}
.ws120{word-spacing:49.077291px;}
.ws107{word-spacing:50.517413px;}
.ws128{word-spacing:52.642610px;}
.ws10a{word-spacing:53.313413px;}
.ws15b{word-spacing:56.663568px;}
.ws136{word-spacing:56.671559px;}
.ws11f{word-spacing:57.511735px;}
.wse0{word-spacing:72.056116px;}
.ws127{word-spacing:74.646110px;}
.ws124{word-spacing:76.077071px;}
.ws126{word-spacing:77.162981px;}
.ws15{word-spacing:80.625869px;}
.ws121{word-spacing:80.918116px;}
.ws125{word-spacing:87.594362px;}
.ws15f{word-spacing:88.263562px;}
.ws10b{word-spacing:95.523413px;}
.ws12d{word-spacing:114.584054px;}
.ws103{word-spacing:120.897169px;}
.ws12c{word-spacing:129.056354px;}
.ws12a{word-spacing:131.087047px;}
.wse6{word-spacing:131.834116px;}
.ws12b{word-spacing:132.738412px;}
.ws137{word-spacing:133.455562px;}
.ws160{word-spacing:143.559562px;}
.wsc6{word-spacing:158.833187px;}
.ws14b{word-spacing:165.634242px;}
.ws15e{word-spacing:167.251559px;}
.ws14a{word-spacing:167.924892px;}
.ws148{word-spacing:173.018241px;}
.ws149{word-spacing:174.420495px;}
.ws10c{word-spacing:176.001413px;}
.ws138{word-spacing:188.745562px;}
.ws123{word-spacing:204.388865px;}
.wsc5{word-spacing:247.796160px;}
.wsc1{word-spacing:328.096632px;}
.wsc4{word-spacing:735.213675px;}
.ws105{word-spacing:792.794982px;}
._3{margin-left:-27.652378px;}
._4{margin-left:-26.038426px;}
._14{margin-left:-6.742733px;}
._1{margin-left:-5.422864px;}
._6{margin-left:-3.755143px;}
._0{margin-left:-2.668393px;}
._2{margin-left:-1.560154px;}
._5{width:1.560154px;}
._8{width:2.668393px;}
._18{width:4.222559px;}
._f{width:6.305031px;}
._15{width:10.090267px;}
._17{width:14.650419px;}
._56{width:16.839007px;}
._c{width:17.851396px;}
._13{width:19.465337px;}
._7{width:20.959727px;}
._d{width:22.523425px;}
._a{width:23.542054px;}
._12{width:25.325258px;}
._b{width:26.553464px;}
._4c{width:27.690671px;}
._9{width:28.856094px;}
._11{width:30.583598px;}
._16{width:32.872289px;}
._21{width:36.851904px;}
._4e{width:39.765007px;}
._62{width:41.108142px;}
._5a{width:42.215115px;}
._5f{width:44.064304px;}
._50{width:45.141007px;}
._54{width:46.291002px;}
._63{width:48.784404px;}
._64{width:52.373534px;}
._40{width:58.725426px;}
._48{width:64.127615px;}
._5e{width:67.413007px;}
._10{width:68.741940px;}
._5d{width:70.483002px;}
._53{width:72.031002px;}
._43{width:77.659576px;}
._e{width:80.697600px;}
._23{width:88.356330px;}
._52{width:95.059002px;}
._5b{width:98.426107px;}
._58{width:99.975717px;}
._33{width:101.489051px;}
._4b{width:107.026916px;}
._4f{width:113.122618px;}
._55{width:114.228393px;}
._4d{width:115.681002px;}
._44{width:124.746085px;}
._5c{width:138.074072px;}
._57{width:140.436292px;}
._51{width:143.324004px;}
._59{width:168.410613px;}
._25{width:171.193788px;}
._26{width:172.868849px;}
._60{width:182.094583px;}
._47{width:189.035863px;}
._3c{width:192.145288px;}
._30{width:195.980638px;}
._1b{width:201.101403px;}
._3f{width:204.969601px;}
._24{width:207.788072px;}
._42{width:212.024298px;}
._1f{width:221.035164px;}
._28{width:227.374687px;}
._2c{width:228.525258px;}
._41{width:237.074066px;}
._2e{width:263.209402px;}
._1d{width:271.051402px;}
._2a{width:279.244053px;}
._61{width:281.964304px;}
._19{width:291.856644px;}
._22{width:293.337335px;}
._1c{width:295.231402px;}
._32{width:296.844148px;}
._2d{width:303.050116px;}
._20{width:310.898116px;}
._3d{width:317.460290px;}
._38{width:326.237161px;}
._39{width:333.698315px;}
._1a{width:335.851824px;}
._45{width:344.603792px;}
._1e{width:358.578388px;}
._35{width:361.172298px;}
._46{width:363.240575px;}
._34{width:370.181052px;}
._4a{width:373.722119px;}
._37{width:393.559790px;}
._31{width:406.002168px;}
._27{width:416.145984px;}
._36{width:454.448267px;}
._2b{width:502.396293px;}
._29{width:540.067250px;}
._49{width:581.976753px;}
._3b{width:588.449834px;}
._3e{width:594.169766px;}
._3a{width:622.928884px;}
._2f{width:642.414214px;}
.fc1{color:rgb(16,15,13);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.233040px;}
.fs9{font-size:27.421200px;}
.fs7{font-size:28.271880px;}
.fs6{font-size:29.887800px;}
.fsa{font-size:31.991400px;}
.fsb{font-size:32.568480px;}
.fs3{font-size:35.865600px;}
.fsc{font-size:37.996560px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y175{bottom:1.713517px;}
.y167{bottom:1.766993px;}
.y1a7{bottom:2.035476px;}
.y169{bottom:10.215967px;}
.y16a{bottom:10.402789px;}
.y168{bottom:10.528213px;}
.y174{bottom:16.566670px;}
.y165{bottom:17.361021px;}
.y1a6{bottom:19.862611px;}
.y173{bottom:39.163567px;}
.y19e{bottom:45.495453px;}
.y164{bottom:48.886591px;}
.y1a8{bottom:55.410745px;}
.y1a5{bottom:57.105211px;}
.y172{bottom:62.268670px;}
.y15f{bottom:63.695873px;}
.y176{bottom:65.697006px;}
.y163{bottom:80.636181px;}
.y171{bottom:84.992923px;}
.y1a4{bottom:94.046371px;}
.y19f{bottom:100.228593px;}
.y170{bottom:107.843923px;}
.y162{bottom:112.161751px;}
.y16f{bottom:130.948874px;}
.y1a3{bottom:130.987713px;}
.y161{bottom:143.686782px;}
.y16e{bottom:153.799874px;}
.y1a0{bottom:160.389813px;}
.y16c{bottom:163.575075px;}
.y166{bottom:166.630422px;}
.y1a2{bottom:168.381213px;}
.y160{bottom:175.660932px;}
.y16d{bottom:176.650874px;}
.y1ca{bottom:178.224000px;}
.ybc{bottom:189.051000px;}
.y50{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.y1c9{bottom:194.662500px;}
.y178{bottom:196.231500px;}
.ybb{bottom:199.300500px;}
.y99{bottom:199.330500px;}
.y1a1{bottom:205.623813px;}
.y210{bottom:208.579500px;}
.y25{bottom:211.549500px;}
.y1c8{bottom:211.698000px;}
.y177{bottom:212.670000px;}
.y20f{bottom:225.016500px;}
.y98{bottom:225.706500px;}
.y1c7{bottom:228.136500px;}
.y24{bottom:229.482000px;}
.y1e5{bottom:229.872000px;}
.y4f{bottom:231.267000px;}
.yba{bottom:238.468500px;}
.y20e{bottom:240.786000px;}
.y97{bottom:243.639000px;}
.y1c6{bottom:244.575000px;}
.y23{bottom:247.414500px;}
.y1e4{bottom:247.806000px;}
.y4e{bottom:249.199500px;}
.y16b{bottom:249.283500px;}
.yb9{bottom:256.401000px;}
.y20d{bottom:257.224500px;}
.y1c5{bottom:261.013500px;}
.y96{bottom:261.573000px;}
.y22{bottom:265.347000px;}
.y15e{bottom:265.720500px;}
.y1e3{bottom:265.738500px;}
.y4d{bottom:267.132000px;}
.y20c{bottom:273.663000px;}
.yb8{bottom:274.333500px;}
.y1c4{bottom:277.452000px;}
.y71{bottom:283.279500px;}
.y21{bottom:283.281000px;}
.y1e2{bottom:283.671000px;}
.y4c{bottom:286.849500px;}
.y20b{bottom:290.101500px;}
.yb7{bottom:292.266000px;}
.y1c3{bottom:294.489000px;}
.y20{bottom:301.213500px;}
.y1e1{bottom:301.603500px;}
.y95{bottom:301.686000px;}
.y4b{bottom:304.782000px;}
.y20a{bottom:305.871000px;}
.yb6{bottom:310.200000px;}
.y1c2{bottom:310.926000px;}
.y1f{bottom:319.146000px;}
.y1e0{bottom:319.536000px;}
.yde{bottom:320.557500px;}
.y209{bottom:322.309500px;}
.y1c1{bottom:327.364500px;}
.yb5{bottom:328.132500px;}
.y143{bottom:332.583000px;}
.y1e{bottom:337.078500px;}
.y1df{bottom:337.468500px;}
.y70{bottom:337.530000px;}
.ydd{bottom:338.490000px;}
.y208{bottom:338.748000px;}
.y1c0{bottom:343.803000px;}
.yb4{bottom:346.065000px;}
.y4a{bottom:346.584000px;}
.y142{bottom:350.515500px;}
.y94{bottom:353.754000px;}
.y207{bottom:354.517500px;}
.y1d{bottom:355.011000px;}
.y1de{bottom:355.402500px;}
.y6f{bottom:355.462500px;}
.ydc{bottom:356.424000px;}
.y1bf{bottom:360.241500px;}
.yb3{bottom:363.997500px;}
.y49{bottom:364.516500px;}
.y141{bottom:368.449500px;}
.y206{bottom:370.956000px;}
.y93{bottom:371.686500px;}
.y1c{bottom:372.943500px;}
.y1dd{bottom:373.335000px;}
.y6e{bottom:373.395000px;}
.ydb{bottom:374.356500px;}
.y1be{bottom:377.278500px;}
.yb2{bottom:381.930000px;}
.y48{bottom:382.449000px;}
.y205{bottom:386.725500px;}
.y92{bottom:389.619000px;}
.yfb{bottom:390.876000px;}
.y1b{bottom:390.877500px;}
.y1dc{bottom:391.267500px;}
.y6d{bottom:391.329000px;}
.yda{bottom:392.289000px;}
.y1bd{bottom:393.715500px;}
.yb1{bottom:399.862500px;}
.y47{bottom:402.166500px;}
.y204{bottom:403.164000px;}
.y91{bottom:408.402000px;}
.y1a{bottom:408.810000px;}
.y1db{bottom:409.200000px;}
.y6c{bottom:409.261500px;}
.y1aa{bottom:410.016000px;}
.y1bc{bottom:410.154000px;}
.yd9{bottom:410.221500px;}
.yb0{bottom:417.796500px;}
.y203{bottom:418.933500px;}
.y46{bottom:420.099000px;}
.y90{bottom:426.334500px;}
.y1a9{bottom:426.454500px;}
.y1bb{bottom:426.592500px;}
.y19{bottom:426.742500px;}
.y1da{bottom:427.132500px;}
.y6b{bottom:427.194000px;}
.y202{bottom:435.372000px;}
.yaf{bottom:435.729000px;}
.y45{bottom:438.033000px;}
.yfa{bottom:442.713000px;}
.y1ba{bottom:443.031000px;}
.y8f{bottom:444.267000px;}
.y116{bottom:444.675000px;}
.y1d9{bottom:445.065000px;}
.y6a{bottom:445.126500px;}
.yd8{bottom:447.171000px;}
.y201{bottom:451.810500px;}
.yae{bottom:453.661500px;}
.y44{bottom:455.965500px;}
.y19d{bottom:457.837500px;}
.y1b9{bottom:460.068000px;}
.y18{bottom:460.740000px;}
.y8e{bottom:462.199500px;}
.y115{bottom:462.607500px;}
.y1d8{bottom:462.999000px;}
.y140{bottom:463.413000px;}
.y69{bottom:463.510500px;}
.y200{bottom:467.580000px;}
.yad{bottom:471.594000px;}
.y43{bottom:473.898000px;}
.y13f{bottom:475.368000px;}
.y8d{bottom:480.133500px;}
.y114{bottom:480.540000px;}
.y1d7{bottom:480.931500px;}
.y68{bottom:481.444500px;}
.y1ff{bottom:484.018500px;}
.y13e{bottom:487.323000px;}
.yac{bottom:489.526500px;}
.yf9{bottom:491.562000px;}
.y42{bottom:491.830500px;}
.y15d{bottom:495.366000px;}
.y8c{bottom:498.066000px;}
.y113{bottom:498.472500px;}
.yd7{bottom:499.065000px;}
.y13d{bottom:499.278000px;}
.y67{bottom:499.377000px;}
.y1fe{bottom:500.457000px;}
.y17{bottom:506.692500px;}
.y1b8{bottom:506.916000px;}
.yab{bottom:507.459000px;}
.yf8{bottom:509.494500px;}
.y41{bottom:509.763000px;}
.y13c{bottom:511.831500px;}
.y15c{bottom:513.298500px;}
.y8b{bottom:515.998500px;}
.y1fd{bottom:516.226500px;}
.y112{bottom:516.406500px;}
.yd6{bottom:516.997500px;}
.y66{bottom:517.309500px;}
.y1d6{bottom:518.751000px;}
.y13b{bottom:524.383500px;}
.y16{bottom:524.625000px;}
.yaa{bottom:525.393000px;}
.yf7{bottom:527.427000px;}
.y40{bottom:527.695500px;}
.y15b{bottom:531.231000px;}
.y1fc{bottom:532.663500px;}
.y8a{bottom:533.931000px;}
.y111{bottom:534.339000px;}
.yd5{bottom:534.930000px;}
.y65{bottom:535.242000px;}
.y13a{bottom:536.937000px;}
.yf6{bottom:545.359500px;}
.y3f{bottom:545.629500px;}
.y139{bottom:548.892000px;}
.y1fb{bottom:549.102000px;}
.y15a{bottom:549.163500px;}
.y89{bottom:551.863500px;}
.y18d{bottom:552.271500px;}
.yd4{bottom:552.862500px;}
.y64{bottom:553.174500px;}
.y1b7{bottom:558.915000px;}
.ya9{bottom:559.110000px;}
.y138{bottom:560.847000px;}
.yf5{bottom:563.292000px;}
.y1fa{bottom:564.871500px;}
.y3e{bottom:565.347000px;}
.y159{bottom:567.096000px;}
.y1d5{bottom:568.525500px;}
.y88{bottom:569.796000px;}
.y15{bottom:570.049500px;}
.y18c{bottom:570.204000px;}
.y63{bottom:571.107000px;}
.y110{bottom:572.158500px;}
.yd3{bottom:572.208000px;}
.y137{bottom:572.802000px;}
.y1b6{bottom:576.847500px;}
.yf4{bottom:581.226000px;}
.y1f9{bottom:581.310000px;}
.y3d{bottom:583.279500px;}
.y136{bottom:584.757000px;}
.y158{bottom:585.030000px;}
.y1d4{bottom:586.458000px;}
.y14{bottom:586.488000px;}
.y87{bottom:587.730000px;}
.y18b{bottom:588.136500px;}
.y62{bottom:589.041000px;}
.yd2{bottom:590.140500px;}
.y1b5{bottom:594.780000px;}
.y135{bottom:596.712000px;}
.y1f8{bottom:597.079500px;}
.yf3{bottom:599.158500px;}
.y3c{bottom:601.212000px;}
.y13{bottom:602.926500px;}
.y157{bottom:602.962500px;}
.y1d3{bottom:604.390500px;}
.ya8{bottom:604.782000px;}
.y86{bottom:605.662500px;}
.y61{bottom:606.973500px;}
.yd1{bottom:608.073000px;}
.y134{bottom:608.667000px;}
.y1b4{bottom:612.712500px;}
.y1f7{bottom:613.518000px;}
.y3b{bottom:619.144500px;}
.y12{bottom:619.365000px;}
.y156{bottom:620.895000px;}
.y133{bottom:621.220500px;}
.y10f{bottom:621.933000px;}
.y1d2{bottom:622.324500px;}
.ya7{bottom:622.714500px;}
.y85{bottom:623.595000px;}
.y60{bottom:624.906000px;}
.yd0{bottom:627.418500px;}
.yf1{bottom:629.269500px;}
.y1f6{bottom:629.956500px;}
.y1b3{bottom:630.645000px;}
.yf2{bottom:631.839000px;}
.y132{bottom:633.774000px;}
.y11{bottom:635.802000px;}
.y3a{bottom:637.077000px;}
.y155{bottom:638.827500px;}
.y10e{bottom:639.865500px;}
.y1d1{bottom:640.257000px;}
.ya6{bottom:640.647000px;}
.y84{bottom:641.527500px;}
.y5f{bottom:642.838500px;}
.ycf{bottom:645.351000px;}
.y1f5{bottom:645.726000px;}
.y131{bottom:646.326000px;}
.y1b2{bottom:648.577500px;}
.y10{bottom:652.240500px;}
.y39{bottom:655.011000px;}
.y154{bottom:656.760000px;}
.y10d{bottom:657.798000px;}
.y1d0{bottom:658.189500px;}
.y130{bottom:658.281000px;}
.ya5{bottom:658.579500px;}
.y83{bottom:659.460000px;}
.y5e{bottom:660.771000px;}
.y1f4{bottom:662.164500px;}
.yce{bottom:663.283500px;}
.y1b1{bottom:666.511500px;}
.yf0{bottom:668.349000px;}
.yf{bottom:668.679000px;}
.y12f{bottom:670.236000px;}
.y38{bottom:672.943500px;}
.y153{bottom:674.692500px;}
.y10c{bottom:675.732000px;}
.y1cf{bottom:676.122000px;}
.ya4{bottom:676.513500px;}
.y18a{bottom:676.962000px;}
.y82{bottom:677.392500px;}
.y1f3{bottom:678.603000px;}
.y5d{bottom:679.156500px;}
.ycd{bottom:681.217500px;}
.y12e{bottom:682.192500px;}
.y1b0{bottom:684.444000px;}
.ye{bottom:685.117500px;}
.yef{bottom:686.281500px;}
.y37{bottom:690.876000px;}
.y152{bottom:692.626500px;}
.y189{bottom:693.400500px;}
.y10b{bottom:693.664500px;}
.y1ce{bottom:694.054500px;}
.y12d{bottom:694.147500px;}
.y1f2{bottom:694.372500px;}
.ya3{bottom:694.446000px;}
.y81{bottom:696.175500px;}
.y5c{bottom:697.089000px;}
.ycc{bottom:699.150000px;}
.yd{bottom:701.556000px;}
.y1af{bottom:702.376500px;}
.yee{bottom:704.214000px;}
.y12c{bottom:706.102500px;}
.y36{bottom:708.808500px;}
.y1f1{bottom:710.142000px;}
.y188{bottom:710.436000px;}
.y151{bottom:710.559000px;}
.y19c{bottom:710.704500px;}
.y10a{bottom:711.597000px;}
.y1cd{bottom:711.987000px;}
.ya2{bottom:712.378500px;}
.y80{bottom:714.108000px;}
.y5b{bottom:715.021500px;}
.ycb{bottom:717.082500px;}
.yc{bottom:717.994500px;}
.y12b{bottom:718.057500px;}
.y1ae{bottom:720.309000px;}
.yed{bottom:722.146500px;}
.y1f0{bottom:726.580500px;}
.y187{bottom:726.874500px;}
.y150{bottom:728.491500px;}
.y35{bottom:728.526000px;}
.y19b{bottom:728.637000px;}
.y109{bottom:729.529500px;}
.y1cc{bottom:729.921000px;}
.y12a{bottom:730.012500px;}
.ya1{bottom:730.311000px;}
.y7f{bottom:732.040500px;}
.y5a{bottom:732.954000px;}
.yb{bottom:734.433000px;}
.yca{bottom:735.015000px;}
.y1ad{bottom:738.241500px;}
.yec{bottom:740.883000px;}
.y129{bottom:741.967500px;}
.y1ef{bottom:742.350000px;}
.y186{bottom:743.313000px;}
.y14f{bottom:746.424000px;}
.y34{bottom:746.458500px;}
.y19a{bottom:746.569500px;}
.y108{bottom:747.462000px;}
.y1cb{bottom:747.853500px;}
.ya0{bottom:748.243500px;}
.y7e{bottom:749.974500px;}
.ya{bottom:750.871500px;}
.y59{bottom:750.886500px;}
.y128{bottom:753.922500px;}
.y1ac{bottom:756.174000px;}
.y1ee{bottom:758.788500px;}
.yeb{bottom:758.815500px;}
.y185{bottom:759.751500px;}
.y14e{bottom:764.356500px;}
.y33{bottom:764.392500px;}
.y199{bottom:764.503500px;}
.y107{bottom:765.786000px;}
.y127{bottom:765.877500px;}
.y9f{bottom:766.176000px;}
.y9{bottom:767.310000px;}
.y7d{bottom:767.907000px;}
.y1ed{bottom:775.227000px;}
.y184{bottom:776.190000px;}
.y126{bottom:778.431000px;}
.y14d{bottom:782.290500px;}
.y32{bottom:782.325000px;}
.y198{bottom:782.436000px;}
.y106{bottom:783.718500px;}
.y8{bottom:783.748500px;}
.y9e{bottom:784.110000px;}
.y7c{bottom:785.839500px;}
.y58{bottom:789.010500px;}
.y125{bottom:790.984500px;}
.y1ec{bottom:790.996500px;}
.yc9{bottom:792.328500px;}
.y183{bottom:793.225500px;}
.y1ab{bottom:798.535500px;}
.y14c{bottom:800.223000px;}
.y31{bottom:800.257500px;}
.y197{bottom:800.368500px;}
.y105{bottom:801.651000px;}
.y9d{bottom:802.042500px;}
.y124{bottom:803.536500px;}
.y7b{bottom:803.772000px;}
.yc8{bottom:808.767000px;}
.y182{bottom:809.664000px;}
.y123{bottom:815.491500px;}
.yea{bottom:815.733000px;}
.y14b{bottom:818.155500px;}
.y30{bottom:818.190000px;}
.y196{bottom:818.301000px;}
.y104{bottom:819.583500px;}
.y9c{bottom:819.975000px;}
.y7a{bottom:821.704500px;}
.y1eb{bottom:822.024000px;}
.yc7{bottom:825.205500px;}
.y181{bottom:826.102500px;}
.y122{bottom:827.446500px;}
.ye9{bottom:832.171500px;}
.y14a{bottom:836.088000px;}
.y2f{bottom:836.122500px;}
.y195{bottom:836.233500px;}
.y103{bottom:837.517500px;}
.y9b{bottom:837.907500px;}
.y57{bottom:839.089500px;}
.y121{bottom:839.403000px;}
.y79{bottom:839.637000px;}
.y7{bottom:839.820000px;}
.yc6{bottom:841.644000px;}
.y180{bottom:842.541000px;}
.ye8{bottom:848.610000px;}
.y1ea{bottom:849.235500px;}
.y120{bottom:851.358000px;}
.y149{bottom:854.020500px;}
.y2e{bottom:854.055000px;}
.y194{bottom:854.167500px;}
.y102{bottom:855.450000px;}
.y9a{bottom:855.840000px;}
.y56{bottom:857.022000px;}
.y78{bottom:857.571000px;}
.yc5{bottom:858.082500px;}
.y17f{bottom:858.979500px;}
.y6{bottom:861.970500px;}
.y11f{bottom:863.313000px;}
.ye7{bottom:865.047000px;}
.y1e9{bottom:867.168000px;}
.y148{bottom:871.953000px;}
.y193{bottom:872.100000px;}
.y5{bottom:872.695500px;}
.y101{bottom:873.382500px;}
.y2d{bottom:873.774000px;}
.yc4{bottom:874.521000px;}
.y55{bottom:874.956000px;}
.y11e{bottom:875.268000px;}
.y77{bottom:875.503500px;}
.y17e{bottom:876.015000px;}
.ye6{bottom:881.485500px;}
.y1e8{bottom:885.102000px;}
.y11d{bottom:887.223000px;}
.y147{bottom:889.887000px;}
.y192{bottom:890.032500px;}
.yc3{bottom:890.959500px;}
.y100{bottom:891.315000px;}
.y2c{bottom:891.706500px;}
.y17d{bottom:892.453500px;}
.y54{bottom:892.888500px;}
.y76{bottom:893.436000px;}
.y4{bottom:894.847500px;}
.ye5{bottom:897.924000px;}
.y11c{bottom:899.178000px;}
.y1e7{bottom:903.034500px;}
.yc2{bottom:907.398000px;}
.y146{bottom:907.819500px;}
.y191{bottom:907.965000px;}
.y17c{bottom:908.892000px;}
.yff{bottom:909.247500px;}
.y2b{bottom:909.639000px;}
.y53{bottom:910.821000px;}
.y75{bottom:911.368500px;}
.y11b{bottom:911.731500px;}
.ye4{bottom:914.362500px;}
.y3{bottom:920.455500px;}
.yc1{bottom:923.835000px;}
.y11a{bottom:924.283500px;}
.y17b{bottom:925.330500px;}
.y145{bottom:925.752000px;}
.y190{bottom:925.897500px;}
.yfe{bottom:927.181500px;}
.y2a{bottom:927.571500px;}
.y52{bottom:928.753500px;}
.y74{bottom:929.301000px;}
.ye3{bottom:930.801000px;}
.y1e6{bottom:936.225000px;}
.y119{bottom:936.837000px;}
.yc0{bottom:940.273500px;}
.y17a{bottom:941.769000px;}
.y144{bottom:943.684500px;}
.y18f{bottom:943.830000px;}
.yfd{bottom:945.114000px;}
.y29{bottom:945.504000px;}
.y51{bottom:946.686000px;}
.y73{bottom:947.233500px;}
.ye2{bottom:947.239500px;}
.y118{bottom:949.390500px;}
.ybf{bottom:956.712000px;}
.y179{bottom:958.804500px;}
.y18e{bottom:961.764000px;}
.y117{bottom:961.942500px;}
.yfc{bottom:963.046500px;}
.y28{bottom:963.436500px;}
.ye1{bottom:963.678000px;}
.y72{bottom:965.167500px;}
.y2{bottom:972.403500px;}
.ybe{bottom:973.749000px;}
.ye0{bottom:980.116500px;}
.y27{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.ydf{bottom:999.684000px;}
.ybd{bottom:1004.907000px;}
.h12{height:17.472022px;}
.h13{height:18.368644px;}
.h17{height:19.770685px;}
.h11{height:20.384025px;}
.h16{height:21.294085px;}
.h14{height:22.712149px;}
.h18{height:23.065799px;}
.h1a{height:23.481874px;}
.h3{height:23.850624px;}
.h1b{height:27.395520px;}
.he{height:29.457331px;}
.hf{height:31.382100px;}
.h5{height:33.139814px;}
.hd{height:34.553700px;}
.hb{height:37.658880px;}
.h4{height:40.348800px;}
.h8{height:41.842920px;}
.h6{height:44.831700px;}
.h7{height:50.211840px;}
.h2{height:53.072100px;}
.h1{height:60.254040px;}
.hc{height:62.145665px;}
.h9{height:85.271700px;}
.ha{height:85.829700px;}
.h10{height:180.731695px;}
.h15{height:182.388684px;}
.h19{height:212.438767px;}
.h0{height:1188.000000px;}
.w2{width:233.668232px;}
.w1{width:254.843399px;}
.w3{width:298.875513px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1e{left:5.915891px;}
.x35{left:7.950780px;}
.x31{left:10.086368px;}
.x1f{left:12.759436px;}
.x20{left:15.451866px;}
.x2a{left:16.469708px;}
.x32{left:18.379212px;}
.x21{left:22.071255px;}
.x26{left:26.702454px;}
.x33{left:27.727809px;}
.x24{left:55.744743px;}
.x25{left:84.682022px;}
.x22{left:99.315412px;}
.x2f{left:101.308328px;}
.x29{left:120.949200px;}
.x2b{left:124.377157px;}
.x23{left:133.812827px;}
.x30{left:156.041468px;}
.x34{left:159.475819px;}
.x9{left:202.147500px;}
.x11{left:204.238500px;}
.xc{left:206.256000px;}
.x12{left:207.984000px;}
.x38{left:209.058000px;}
.x1{left:210.972000px;}
.x1d{left:214.725000px;}
.x17{left:217.813500px;}
.xa{left:224.563500px;}
.xb{left:227.551500px;}
.x37{left:229.764000px;}
.x27{left:236.740500px;}
.x8{left:244.666500px;}
.x16{left:262.606500px;}
.x1b{left:267.933000px;}
.x10{left:273.019500px;}
.x3{left:276.015000px;}
.x2e{left:277.300500px;}
.x19{left:281.250000px;}
.xf{left:297.564000px;}
.x36{left:308.700000px;}
.xd{left:311.212500px;}
.x2{left:313.660500px;}
.x6{left:334.209000px;}
.x13{left:338.305500px;}
.x15{left:343.191000px;}
.x2d{left:351.408000px;}
.x4{left:370.611000px;}
.x5{left:375.015000px;}
.x7{left:387.376500px;}
.x1a{left:400.414500px;}
.x18{left:411.834000px;}
.x1c{left:421.758000px;}
.x28{left:474.450000px;}
.x2c{left:514.201500px;}
.xe{left:534.186000px;}
.x14{left:570.169500px;}
@media print{
.ve{vertical-align:-31.373579pt;}
.v6{vertical-align:-29.226667pt;}
.vd{vertical-align:-26.545482pt;}
.vc{vertical-align:-23.470933pt;}
.vb{vertical-align:-22.004667pt;}
.v2{vertical-align:-20.314667pt;}
.v7{vertical-align:-9.136000pt;}
.v3{vertical-align:-7.973333pt;}
.v8{vertical-align:-5.317333pt;}
.va{vertical-align:-1.395344pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:0.996846pt;}
.v1{vertical-align:19.280000pt;}
.v5{vertical-align:20.314667pt;}
.v4{vertical-align:35.946667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000267pt;}
.ls2{letter-spacing:0.000891pt;}
.ls22{letter-spacing:0.001014pt;}
.ls19{letter-spacing:0.001696pt;}
.ls5d{letter-spacing:0.001837pt;}
.ls41{letter-spacing:0.001995pt;}
.ls5c{letter-spacing:0.002546pt;}
.ls2c{letter-spacing:0.002906pt;}
.ls5a{letter-spacing:0.002980pt;}
.ls44{letter-spacing:0.003176pt;}
.ls63{letter-spacing:0.641414pt;}
.ls59{letter-spacing:0.900327pt;}
.ls25{letter-spacing:1.905696pt;}
.ls2a{letter-spacing:1.907709pt;}
.ls27{letter-spacing:1.911029pt;}
.ls5b{letter-spacing:1.911319pt;}
.ls5f{letter-spacing:2.616727pt;}
.ls0{letter-spacing:2.652911pt;}
.ls5e{letter-spacing:2.656165pt;}
.ls5{letter-spacing:2.657253pt;}
.ls23{letter-spacing:2.658245pt;}
.ls4c{letter-spacing:2.719435pt;}
.ls39{letter-spacing:3.060980pt;}
.ls54{letter-spacing:3.066313pt;}
.ls10{letter-spacing:4.960479pt;}
.ls4d{letter-spacing:5.163764pt;}
.ls40{letter-spacing:5.718992pt;}
.ls56{letter-spacing:6.375538pt;}
.ls50{letter-spacing:6.825315pt;}
.ls3c{letter-spacing:7.376277pt;}
.ls16{letter-spacing:7.380568pt;}
.ls31{letter-spacing:7.381610pt;}
.lsf{letter-spacing:8.026313pt;}
.ls20{letter-spacing:8.855412pt;}
.ls1a{letter-spacing:11.511578pt;}
.ls42{letter-spacing:11.808479pt;}
.lsb{letter-spacing:14.754174pt;}
.ls1d{letter-spacing:14.756984pt;}
.lse{letter-spacing:14.757812pt;}
.ls1f{letter-spacing:14.762050pt;}
.ls18{letter-spacing:14.763145pt;}
.ls38{letter-spacing:15.815412pt;}
.ls1b{letter-spacing:15.845880pt;}
.ls1e{letter-spacing:16.250313pt;}
.ls4f{letter-spacing:16.379162pt;}
.ls4e{letter-spacing:16.380052pt;}
.ls51{letter-spacing:16.384693pt;}
.ls52{letter-spacing:16.385386pt;}
.ls17{letter-spacing:16.663029pt;}
.ls3e{letter-spacing:16.705253pt;}
.ls65{letter-spacing:17.099919pt;}
.ls37{letter-spacing:17.212841pt;}
.lsc{letter-spacing:17.354313pt;}
.ls21{letter-spacing:17.414347pt;}
.ls29{letter-spacing:17.415578pt;}
.ls1c{letter-spacing:17.419680pt;}
.ls6{letter-spacing:17.612745pt;}
.ls3d{letter-spacing:17.709510pt;}
.ls30{letter-spacing:18.063651pt;}
.ls2e{letter-spacing:18.064479pt;}
.ls45{letter-spacing:19.034194pt;}
.lsa{letter-spacing:19.040473pt;}
.ls49{letter-spacing:19.103435pt;}
.ls3a{letter-spacing:19.138079pt;}
.ls28{letter-spacing:19.164363pt;}
.ls58{letter-spacing:19.460932pt;}
.ls35{letter-spacing:19.463507pt;}
.ls8{letter-spacing:19.528239pt;}
.ls26{letter-spacing:19.911412pt;}
.ls32{letter-spacing:20.034174pt;}
.ls2d{letter-spacing:20.716911pt;}
.ls2f{letter-spacing:20.721253pt;}
.ls34{letter-spacing:21.374375pt;}
.ls4b{letter-spacing:21.553097pt;}
.ls2b{letter-spacing:21.601696pt;}
.ls61{letter-spacing:21.992141pt;}
.lsd{letter-spacing:22.137902pt;}
.ls55{letter-spacing:22.513659pt;}
.ls48{letter-spacing:22.559646pt;}
.ls24{letter-spacing:22.566347pt;}
.ls9{letter-spacing:22.812911pt;}
.ls4a{letter-spacing:23.203982pt;}
.ls53{letter-spacing:23.209315pt;}
.ls3f{letter-spacing:23.430992pt;}
.ls36{letter-spacing:24.592277pt;}
.ls12{letter-spacing:25.978318pt;}
.ls15{letter-spacing:25.979145pt;}
.ls3b{letter-spacing:26.516568pt;}
.ls4{letter-spacing:26.568027pt;}
.ls1{letter-spacing:27.232473pt;}
.ls62{letter-spacing:27.304226pt;}
.ls33{letter-spacing:27.417902pt;}
.ls13{letter-spacing:27.508980pt;}
.ls11{letter-spacing:27.891709pt;}
.ls47{letter-spacing:31.663235pt;}
.ls14{letter-spacing:33.365610pt;}
.ls60{letter-spacing:111.286469pt;}
.ls43{letter-spacing:139.733812pt;}
.ls64{letter-spacing:155.347629pt;}
.ls46{letter-spacing:199.935527pt;}
.ls57{letter-spacing:445.877675pt;}
.ws9d{word-spacing:-53.133867pt;}
.ws62{word-spacing:-34.611401pt;}
.wse5{word-spacing:-32.063846pt;}
.ws108{word-spacing:-28.118362pt;}
.ws8e{word-spacing:-27.248731pt;}
.wsef{word-spacing:-27.217278pt;}
.ws95{word-spacing:-25.738045pt;}
.wsbf{word-spacing:-22.800836pt;}
.wsbe{word-spacing:-21.151083pt;}
.wsc8{word-spacing:-20.123503pt;}
.wsca{word-spacing:-17.494549pt;}
.wscc{word-spacing:-15.823083pt;}
.wse3{word-spacing:-15.702833pt;}
.ws22{word-spacing:-14.760588pt;}
.wscf{word-spacing:-14.447083pt;}
.wsd8{word-spacing:-13.924606pt;}
.wse4{word-spacing:-13.652838pt;}
.ws28{word-spacing:-13.581016pt;}
.wsda{word-spacing:-13.497939pt;}
.wse1{word-spacing:-12.954566pt;}
.wsed{word-spacing:-9.791272pt;}
.ws147{word-spacing:-6.137349pt;}
.ws122{word-spacing:-5.327679pt;}
.ws129{word-spacing:-5.167373pt;}
.ws11e{word-spacing:-4.566582pt;}
.wsc0{word-spacing:-2.964870pt;}
.ws13f{word-spacing:-2.858602pt;}
.ws45{word-spacing:-2.805468pt;}
.wsb9{word-spacing:-2.699200pt;}
.wsba{word-spacing:-2.646067pt;}
.ws6f{word-spacing:-2.592933pt;}
.ws88{word-spacing:-2.539799pt;}
.ws4c{word-spacing:-2.380397pt;}
.wsfa{word-spacing:-2.274129pt;}
.ws11{word-spacing:-2.175846pt;}
.ws7b{word-spacing:-2.061594pt;}
.wsf8{word-spacing:-2.008460pt;}
.ws37{word-spacing:-1.955326pt;}
.ws8b{word-spacing:-1.902192pt;}
.ws64{word-spacing:-1.795925pt;}
.ws24{word-spacing:-1.742791pt;}
.ws16f{word-spacing:-1.697638pt;}
.ws47{word-spacing:-1.689657pt;}
.ws4a{word-spacing:-1.583389pt;}
.ws97{word-spacing:-1.572433pt;}
.ws98{word-spacing:-1.569874pt;}
.ws96{word-spacing:-1.567626pt;}
.ws35{word-spacing:-1.423988pt;}
.ws164{word-spacing:-1.370854pt;}
.wsfd{word-spacing:-1.264586pt;}
.ws49{word-spacing:-1.105184pt;}
.ws111{word-spacing:-1.052051pt;}
.ws8{word-spacing:-1.028147pt;}
.ws1d{word-spacing:-0.998917pt;}
.ws33{word-spacing:-0.839515pt;}
.ws115{word-spacing:-0.786381pt;}
.wsb8{word-spacing:-0.733247pt;}
.ws6b{word-spacing:-0.680113pt;}
.ws140{word-spacing:-0.573846pt;}
.ws56{word-spacing:-0.520712pt;}
.ws8c{word-spacing:-0.469706pt;}
.ws89{word-spacing:-0.467578pt;}
.ws16c{word-spacing:-0.308176pt;}
.wsc7{word-spacing:-0.282293pt;}
.ws143{word-spacing:-0.278061pt;}
.ws141{word-spacing:-0.274013pt;}
.wsc9{word-spacing:-0.255043pt;}
.ws14e{word-spacing:-0.201909pt;}
.ws119{word-spacing:-0.148775pt;}
.wsf{word-spacing:-0.071731pt;}
.ws16b{word-spacing:-0.063761pt;}
.ws100{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws72{word-spacing:-0.042507pt;}
.ws99{word-spacing:-0.037194pt;}
.ws17d{word-spacing:-0.023910pt;}
.wsbd{word-spacing:-0.013752pt;}
.ws23{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.010627pt;}
.ws17f{word-spacing:0.119552pt;}
.ws27{word-spacing:0.170028pt;}
.ws7e{word-spacing:0.223162pt;}
.ws179{word-spacing:0.263014pt;}
.ws5f{word-spacing:0.276296pt;}
.ws11b{word-spacing:0.329430pt;}
.ws16e{word-spacing:0.358656pt;}
.ws8a{word-spacing:0.382564pt;}
.ws7a{word-spacing:0.435698pt;}
.ws2e{word-spacing:0.488832pt;}
.ws32{word-spacing:0.541965pt;}
.ws6a{word-spacing:0.648233pt;}
.ws83{word-spacing:0.701367pt;}
.ws5c{word-spacing:0.719782pt;}
.ws5d{word-spacing:0.754501pt;}
.wsdc{word-spacing:0.764611pt;}
.ws170{word-spacing:0.836864pt;}
.ws1e{word-spacing:0.860769pt;}
.ws86{word-spacing:0.913903pt;}
.ws178{word-spacing:0.932506pt;}
.ws151{word-spacing:0.967036pt;}
.ws34{word-spacing:1.020170pt;}
.wsa7{word-spacing:1.073304pt;}
.ws14f{word-spacing:1.179572pt;}
.ws130{word-spacing:1.214857pt;}
.ws15d{word-spacing:1.217398pt;}
.ws132{word-spacing:1.219168pt;}
.ws135{word-spacing:1.222719pt;}
.ws139{word-spacing:1.223610pt;}
.ws133{word-spacing:1.224501pt;}
.ws159{word-spacing:1.226532pt;}
.wsf6{word-spacing:1.232706pt;}
.ws4e{word-spacing:1.285840pt;}
.ws39{word-spacing:1.338973pt;}
.ws169{word-spacing:1.392107pt;}
.ws1b{word-spacing:1.445241pt;}
.wsa1{word-spacing:1.551509pt;}
.ws55{word-spacing:1.604643pt;}
.wsb{word-spacing:1.649818pt;}
.ws31{word-spacing:1.657777pt;}
.ws166{word-spacing:1.710911pt;}
.ws18{word-spacing:1.764044pt;}
.wse{word-spacing:1.841101pt;}
.wsf4{word-spacing:1.870312pt;}
.ws117{word-spacing:1.923446pt;}
.ws73{word-spacing:2.029714pt;}
.ws17a{word-spacing:2.080205pt;}
.wsb2{word-spacing:2.082848pt;}
.ws10{word-spacing:2.128026pt;}
.ws50{word-spacing:2.135981pt;}
.ws2a{word-spacing:2.242249pt;}
.ws104{word-spacing:2.291126pt;}
.wseb{word-spacing:2.295383pt;}
.wscb{word-spacing:2.348517pt;}
.ws175{word-spacing:2.367130pt;}
.ws3c{word-spacing:2.401651pt;}
.wsa6{word-spacing:2.450981pt;}
.ws21{word-spacing:2.454785pt;}
.ws9e{word-spacing:2.507919pt;}
.wsae{word-spacing:2.561052pt;}
.wsb5{word-spacing:2.614186pt;}
.ws5{word-spacing:2.701875pt;}
.ws48{word-spacing:2.720454pt;}
.ws181{word-spacing:2.725214pt;}
.ws171{word-spacing:2.726731pt;}
.wsdf{word-spacing:2.740849pt;}
.ws3{word-spacing:2.749696pt;}
.ws4d{word-spacing:2.773588pt;}
.ws59{word-spacing:2.826722pt;}
.ws106{word-spacing:2.851033pt;}
.wsbb{word-spacing:2.879072pt;}
.wsd9{word-spacing:2.879856pt;}
.wsac{word-spacing:2.929197pt;}
.ws1{word-spacing:2.932989pt;}
.ws155{word-spacing:2.947459pt;}
.wsa0{word-spacing:2.948905pt;}
.ws2{word-spacing:2.986123pt;}
.ws17c{word-spacing:3.036621pt;}
.ws112{word-spacing:3.039257pt;}
.wsd4{word-spacing:3.092391pt;}
.ws9{word-spacing:3.180083pt;}
.ws114{word-spacing:3.198659pt;}
.ws85{word-spacing:3.251793pt;}
.wsdb{word-spacing:3.301596pt;}
.ws7f{word-spacing:3.304927pt;}
.wsfc{word-spacing:3.358060pt;}
.ws5b{word-spacing:3.368687pt;}
.wsf3{word-spacing:3.379314pt;}
.ws25{word-spacing:3.411194pt;}
.ws70{word-spacing:3.432448pt;}
.ws63{word-spacing:3.464328pt;}
.ws173{word-spacing:3.514829pt;}
.ws10f{word-spacing:3.517462pt;}
.ws80{word-spacing:3.570596pt;}
.ws46{word-spacing:3.623730pt;}
.ws11a{word-spacing:3.676864pt;}
.wsce{word-spacing:3.729997pt;}
.ws38{word-spacing:3.783131pt;}
.ws81{word-spacing:3.836265pt;}
.ws16a{word-spacing:3.889399pt;}
.ws76{word-spacing:3.942533pt;}
.wsf2{word-spacing:3.995667pt;}
.ws113{word-spacing:4.208202pt;}
.ws29{word-spacing:4.261336pt;}
.ws94{word-spacing:4.314470pt;}
.ws2b{word-spacing:4.367604pt;}
.wsaa{word-spacing:4.376793pt;}
.ws150{word-spacing:4.420738pt;}
.wsa{word-spacing:4.423424pt;}
.ws2d{word-spacing:4.473872pt;}
.ws60{word-spacing:4.490079pt;}
.ws6e{word-spacing:4.527005pt;}
.ws156{word-spacing:4.580139pt;}
.ws12f{word-spacing:4.614707pt;}
.ws82{word-spacing:4.686407pt;}
.wsa5{word-spacing:4.706981pt;}
.wsd7{word-spacing:4.728102pt;}
.ws20{word-spacing:4.739541pt;}
.ws66{word-spacing:4.764182pt;}
.wsa3{word-spacing:4.898943pt;}
.wsa2{word-spacing:4.944972pt;}
.ws2c{word-spacing:4.952076pt;}
.ws13b{word-spacing:5.005210pt;}
.wsd{word-spacing:5.045094pt;}
.ws110{word-spacing:5.058344pt;}
.ws9a{word-spacing:5.111478pt;}
.ws9b{word-spacing:5.148451pt;}
.ws9c{word-spacing:5.164612pt;}
.ws14c{word-spacing:5.188557pt;}
.ws16{word-spacing:5.217746pt;}
.ws1c{word-spacing:5.270880pt;}
.wsa4{word-spacing:5.272314pt;}
.ws2f{word-spacing:5.324013pt;}
.ws77{word-spacing:5.377147pt;}
.wsf7{word-spacing:5.430281pt;}
.ws7c{word-spacing:5.440908pt;}
.ws54{word-spacing:5.483415pt;}
.wsfe{word-spacing:5.536549pt;}
.ws7{word-spacing:5.571123pt;}
.ws11d{word-spacing:5.589683pt;}
.wsfb{word-spacing:5.749084pt;}
.ws52{word-spacing:5.802218pt;}
.ws26{word-spacing:5.865979pt;}
.ws116{word-spacing:5.908486pt;}
.ws87{word-spacing:5.961620pt;}
.wsf9{word-spacing:6.014754pt;}
.ws11c{word-spacing:6.067888pt;}
.ws68{word-spacing:6.121021pt;}
.ws177{word-spacing:6.240614pt;}
.wsd6{word-spacing:6.280423pt;}
.wsa8{word-spacing:6.308208pt;}
.wsff{word-spacing:6.329797pt;}
.wsab{word-spacing:6.333557pt;}
.wsbc{word-spacing:6.386691pt;}
.ws10e{word-spacing:6.439825pt;}
.wsea{word-spacing:6.492959pt;}
.ws146{word-spacing:6.546092pt;}
.ws157{word-spacing:6.652360pt;}
.wsb7{word-spacing:6.660445pt;}
.ws78{word-spacing:6.705494pt;}
.wsa9{word-spacing:6.716121pt;}
.ws158{word-spacing:6.758628pt;}
.ws53{word-spacing:6.811762pt;}
.ws61{word-spacing:6.822388pt;}
.ws3e{word-spacing:6.918029pt;}
.ws3a{word-spacing:6.971163pt;}
.wsec{word-spacing:7.000110pt;}
.ws12{word-spacing:7.005747pt;}
.wsee{word-spacing:7.024297pt;}
.ws9f{word-spacing:7.034924pt;}
.ws67{word-spacing:7.088058pt;}
.ws152{word-spacing:7.130565pt;}
.ws6c{word-spacing:7.183699pt;}
.ws13e{word-spacing:7.236833pt;}
.ws176{word-spacing:7.244851pt;}
.ws79{word-spacing:7.343100pt;}
.ws167{word-spacing:7.396234pt;}
.ws174{word-spacing:7.436134pt;}
.ws74{word-spacing:7.502502pt;}
.ws172{word-spacing:7.579597pt;}
.ws30{word-spacing:7.619396pt;}
.wscd{word-spacing:7.768171pt;}
.wsf5{word-spacing:7.821305pt;}
.wsb1{word-spacing:7.874439pt;}
.wsd2{word-spacing:7.875387pt;}
.ws17b{word-spacing:7.914342pt;}
.ws17{word-spacing:7.980707pt;}
.ws36{word-spacing:8.033841pt;}
.ws41{word-spacing:8.193242pt;}
.wsaf{word-spacing:8.299510pt;}
.ws1f{word-spacing:8.352644pt;}
.ws3f{word-spacing:8.405778pt;}
.ws92{word-spacing:8.458912pt;}
.ws4f{word-spacing:8.724581pt;}
.wsb6{word-spacing:8.740226pt;}
.ws168{word-spacing:8.777715pt;}
.wsc{word-spacing:8.822938pt;}
.ws3b{word-spacing:8.830849pt;}
.ws161{word-spacing:8.883983pt;}
.ws65{word-spacing:8.941787pt;}
.wsb3{word-spacing:8.990250pt;}
.ws6d{word-spacing:9.043384pt;}
.wsd3{word-spacing:9.044806pt;}
.ws13a{word-spacing:9.096518pt;}
.ws4b{word-spacing:9.149652pt;}
.wsf1{word-spacing:9.202786pt;}
.ws5e{word-spacing:9.362187pt;}
.ws12e{word-spacing:9.372877pt;}
.ws5a{word-spacing:9.513323pt;}
.wsd5{word-spacing:9.521589pt;}
.ws44{word-spacing:9.574723pt;}
.ws13{word-spacing:9.599786pt;}
.wsad{word-spacing:9.610610pt;}
.ws90{word-spacing:9.679924pt;}
.ws8f{word-spacing:9.680991pt;}
.ws17e{word-spacing:9.779354pt;}
.ws13c{word-spacing:9.893526pt;}
.ws1a{word-spacing:9.999794pt;}
.ws69{word-spacing:10.052928pt;}
.ws19{word-spacing:10.159195pt;}
.ws40{word-spacing:10.265463pt;}
.ws57{word-spacing:10.318597pt;}
.ws43{word-spacing:10.371731pt;}
.ws3d{word-spacing:10.424865pt;}
.ws93{word-spacing:10.488625pt;}
.ws71{word-spacing:10.637400pt;}
.wsf0{word-spacing:10.690534pt;}
.ws180{word-spacing:10.783590pt;}
.ws58{word-spacing:10.796802pt;}
.ws10d{word-spacing:10.849936pt;}
.wsdd{word-spacing:10.919214pt;}
.wse8{word-spacing:10.920105pt;}
.ws101{word-spacing:11.062471pt;}
.ws162{word-spacing:11.434408pt;}
.ws75{word-spacing:11.487542pt;}
.ws42{word-spacing:11.593810pt;}
.ws91{word-spacing:11.604436pt;}
.ws14{word-spacing:12.550219pt;}
.wsd1{word-spacing:13.028424pt;}
.ws16d{word-spacing:13.134692pt;}
.wsb4{word-spacing:13.163858pt;}
.wsb0{word-spacing:13.467007pt;}
.wsd0{word-spacing:13.719164pt;}
.ws145{word-spacing:13.930359pt;}
.ws142{word-spacing:14.437026pt;}
.wsc3{word-spacing:14.821990pt;}
.ws7d{word-spacing:14.905853pt;}
.ws84{word-spacing:15.428519pt;}
.ws102{word-spacing:16.104829pt;}
.wsc2{word-spacing:16.325681pt;}
.ws131{word-spacing:16.330419pt;}
.wsde{word-spacing:16.333708pt;}
.ws15a{word-spacing:16.335753pt;}
.wse7{word-spacing:16.354714pt;}
.ws165{word-spacing:16.397746pt;}
.ws153{word-spacing:17.258359pt;}
.ws154{word-spacing:17.658359pt;}
.ws14d{word-spacing:18.778419pt;}
.ws163{word-spacing:19.224413pt;}
.ws118{word-spacing:19.605026pt;}
.ws13d{word-spacing:21.413026pt;}
.ws144{word-spacing:21.519693pt;}
.wse2{word-spacing:21.746814pt;}
.ws51{word-spacing:23.846639pt;}
.ws109{word-spacing:25.000367pt;}
.ws15c{word-spacing:25.792507pt;}
.ws134{word-spacing:25.795168pt;}
.ws6{word-spacing:26.515067pt;}
.ws0{word-spacing:28.615887pt;}
.wse9{word-spacing:32.714233pt;}
.ws120{word-spacing:43.624259pt;}
.ws107{word-spacing:44.904367pt;}
.ws128{word-spacing:46.793431pt;}
.ws10a{word-spacing:47.389700pt;}
.ws15b{word-spacing:50.367616pt;}
.ws136{word-spacing:50.374719pt;}
.ws11f{word-spacing:51.121543pt;}
.wse0{word-spacing:64.049881pt;}
.ws127{word-spacing:66.352098pt;}
.ws124{word-spacing:67.624063pt;}
.ws126{word-spacing:68.589316pt;}
.ws15{word-spacing:71.667439pt;}
.ws121{word-spacing:71.927214pt;}
.ws125{word-spacing:77.861655pt;}
.ws15f{word-spacing:78.456499pt;}
.ws10b{word-spacing:84.909700pt;}
.ws12d{word-spacing:101.852493pt;}
.ws103{word-spacing:107.464151pt;}
.ws12c{word-spacing:114.716759pt;}
.ws12a{word-spacing:116.521819pt;}
.wse6{word-spacing:117.185881pt;}
.ws12b{word-spacing:117.989700pt;}
.ws137{word-spacing:118.627166pt;}
.ws160{word-spacing:127.608499pt;}
.wsc6{word-spacing:141.185055pt;}
.ws14b{word-spacing:147.230438pt;}
.ws15e{word-spacing:148.668052pt;}
.ws14a{word-spacing:149.266571pt;}
.ws148{word-spacing:153.793992pt;}
.ws149{word-spacing:155.040440pt;}
.ws10c{word-spacing:156.445700pt;}
.ws138{word-spacing:167.773833pt;}
.ws123{word-spacing:181.678991pt;}
.wsc5{word-spacing:220.263253pt;}
.wsc1{word-spacing:291.641451pt;}
.wsc4{word-spacing:653.523267pt;}
.ws105{word-spacing:704.706651pt;}
._3{margin-left:-24.579891pt;}
._4{margin-left:-23.145267pt;}
._14{margin-left:-5.993540pt;}
._1{margin-left:-4.820323pt;}
._6{margin-left:-3.337905pt;}
._0{margin-left:-2.371905pt;}
._2{margin-left:-1.386803pt;}
._5{width:1.386803pt;}
._8{width:2.371905pt;}
._18{width:3.753386pt;}
._f{width:5.604472pt;}
._15{width:8.969126pt;}
._17{width:13.022595pt;}
._56{width:14.968006pt;}
._c{width:15.867907pt;}
._13{width:17.302522pt;}
._7{width:18.630868pt;}
._d{width:20.020822pt;}
._a{width:20.926270pt;}
._12{width:22.511340pt;}
._b{width:23.603079pt;}
._4c{width:24.613930pt;}
._9{width:25.649861pt;}
._11{width:27.185421pt;}
._16{width:29.219812pt;}
._21{width:32.757248pt;}
._4e{width:35.346673pt;}
._62{width:36.540571pt;}
._5a{width:37.524547pt;}
._5f{width:39.168270pt;}
._50{width:40.125339pt;}
._54{width:41.147558pt;}
._63{width:43.363915pt;}
._64{width:46.554253pt;}
._40{width:52.200379pt;}
._48{width:57.002324pt;}
._5e{width:59.922673pt;}
._10{width:61.103947pt;}
._5d{width:62.651558pt;}
._53{width:64.027558pt;}
._43{width:69.030734pt;}
._e{width:71.731200pt;}
._23{width:78.538960pt;}
._52{width:84.496891pt;}
._5b{width:87.489873pt;}
._58{width:88.867304pt;}
._33{width:90.212490pt;}
._4b{width:95.135036pt;}
._4f{width:100.553438pt;}
._55{width:101.536350pt;}
._4d{width:102.827558pt;}
._44{width:110.885409pt;}
._5c{width:122.732508pt;}
._57{width:124.832260pt;}
._51{width:127.399115pt;}
._59{width:149.698323pt;}
._25{width:152.172256pt;}
._26{width:153.661199pt;}
._60{width:161.861851pt;}
._47{width:168.031878pt;}
._3c{width:170.795812pt;}
._30{width:174.205011pt;}
._1b{width:178.756803pt;}
._3f{width:182.195201pt;}
._24{width:184.700508pt;}
._42{width:188.466042pt;}
._1f{width:196.475701pt;}
._28{width:202.110833pt;}
._2c{width:203.133563pt;}
._41{width:210.732503pt;}
._2e{width:233.963913pt;}
._1d{width:240.934579pt;}
._2a{width:248.216936pt;}
._61{width:250.634937pt;}
._19{width:259.428128pt;}
._22{width:260.744298pt;}
._1c{width:262.427913pt;}
._32{width:263.861465pt;}
._2d{width:269.377881pt;}
._20{width:276.353881pt;}
._3d{width:282.186924pt;}
._38{width:289.988588pt;}
._39{width:296.620724pt;}
._1a{width:298.534955pt;}
._45{width:306.314482pt;}
._1e{width:318.736345pt;}
._35{width:321.042042pt;}
._46{width:322.880511pt;}
._34{width:329.049824pt;}
._4a{width:332.197439pt;}
._37{width:349.830925pt;}
._31{width:360.890816pt;}
._27{width:369.907541pt;}
._36{width:403.954015pt;}
._2b{width:446.574483pt;}
._29{width:480.059778pt;}
._49{width:517.312669pt;}
._3b{width:523.066519pt;}
._3e{width:528.150903pt;}
._3a{width:553.714564pt;}
._2f{width:571.034857pt;}
.fs8{font-size:21.540480pt;}
.fs9{font-size:24.374400pt;}
.fs7{font-size:25.130560pt;}
.fs6{font-size:26.566933pt;}
.fsa{font-size:28.436800pt;}
.fsb{font-size:28.949760pt;}
.fs3{font-size:31.880533pt;}
.fsc{font-size:33.774720pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y175{bottom:1.523126pt;}
.y167{bottom:1.570660pt;}
.y1a7{bottom:1.809312pt;}
.y169{bottom:9.080859pt;}
.y16a{bottom:9.246924pt;}
.y168{bottom:9.358411pt;}
.y174{bottom:14.725929pt;}
.y165{bottom:15.432019pt;}
.y1a6{bottom:17.655654pt;}
.y173{bottom:34.812060pt;}
.y19e{bottom:40.440402pt;}
.y164{bottom:43.454747pt;}
.y1a8{bottom:49.253996pt;}
.y1a5{bottom:50.760188pt;}
.y172{bottom:55.349929pt;}
.y15f{bottom:56.618553pt;}
.y176{bottom:58.397339pt;}
.y163{bottom:71.676605pt;}
.y171{bottom:75.549265pt;}
.y1a4{bottom:83.596774pt;}
.y19f{bottom:89.092082pt;}
.y170{bottom:95.861265pt;}
.y162{bottom:99.699334pt;}
.y16f{bottom:116.398999pt;}
.y1a3{bottom:116.433522pt;}
.y161{bottom:127.721584pt;}
.y16e{bottom:136.710999pt;}
.y1a0{bottom:142.568722pt;}
.y16c{bottom:145.400067pt;}
.y166{bottom:148.115931pt;}
.y1a2{bottom:149.672189pt;}
.y160{bottom:156.143050pt;}
.y16d{bottom:157.022999pt;}
.y1ca{bottom:158.421333pt;}
.ybc{bottom:168.045333pt;}
.y50{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.y1c9{bottom:173.033333pt;}
.y178{bottom:174.428000pt;}
.ybb{bottom:177.156000pt;}
.y99{bottom:177.182667pt;}
.y1a1{bottom:182.776722pt;}
.y210{bottom:185.404000pt;}
.y25{bottom:188.044000pt;}
.y1c8{bottom:188.176000pt;}
.y177{bottom:189.040000pt;}
.y20f{bottom:200.014667pt;}
.y98{bottom:200.628000pt;}
.y1c7{bottom:202.788000pt;}
.y24{bottom:203.984000pt;}
.y1e5{bottom:204.330667pt;}
.y4f{bottom:205.570667pt;}
.yba{bottom:211.972000pt;}
.y20e{bottom:214.032000pt;}
.y97{bottom:216.568000pt;}
.y1c6{bottom:217.400000pt;}
.y23{bottom:219.924000pt;}
.y1e4{bottom:220.272000pt;}
.y4e{bottom:221.510667pt;}
.y16b{bottom:221.585333pt;}
.yb9{bottom:227.912000pt;}
.y20d{bottom:228.644000pt;}
.y1c5{bottom:232.012000pt;}
.y96{bottom:232.509333pt;}
.y22{bottom:235.864000pt;}
.y15e{bottom:236.196000pt;}
.y1e3{bottom:236.212000pt;}
.y4d{bottom:237.450667pt;}
.y20c{bottom:243.256000pt;}
.yb8{bottom:243.852000pt;}
.y1c4{bottom:246.624000pt;}
.y71{bottom:251.804000pt;}
.y21{bottom:251.805333pt;}
.y1e2{bottom:252.152000pt;}
.y4c{bottom:254.977333pt;}
.y20b{bottom:257.868000pt;}
.yb7{bottom:259.792000pt;}
.y1c3{bottom:261.768000pt;}
.y20{bottom:267.745333pt;}
.y1e1{bottom:268.092000pt;}
.y95{bottom:268.165333pt;}
.y4b{bottom:270.917333pt;}
.y20a{bottom:271.885333pt;}
.yb6{bottom:275.733333pt;}
.y1c2{bottom:276.378667pt;}
.y1f{bottom:283.685333pt;}
.y1e0{bottom:284.032000pt;}
.yde{bottom:284.940000pt;}
.y209{bottom:286.497333pt;}
.y1c1{bottom:290.990667pt;}
.yb5{bottom:291.673333pt;}
.y143{bottom:295.629333pt;}
.y1e{bottom:299.625333pt;}
.y1df{bottom:299.972000pt;}
.y70{bottom:300.026667pt;}
.ydd{bottom:300.880000pt;}
.y208{bottom:301.109333pt;}
.y1c0{bottom:305.602667pt;}
.yb4{bottom:307.613333pt;}
.y4a{bottom:308.074667pt;}
.y142{bottom:311.569333pt;}
.y94{bottom:314.448000pt;}
.y207{bottom:315.126667pt;}
.y1d{bottom:315.565333pt;}
.y1de{bottom:315.913333pt;}
.y6f{bottom:315.966667pt;}
.ydc{bottom:316.821333pt;}
.y1bf{bottom:320.214667pt;}
.yb3{bottom:323.553333pt;}
.y49{bottom:324.014667pt;}
.y141{bottom:327.510667pt;}
.y206{bottom:329.738667pt;}
.y93{bottom:330.388000pt;}
.y1c{bottom:331.505333pt;}
.y1dd{bottom:331.853333pt;}
.y6e{bottom:331.906667pt;}
.ydb{bottom:332.761333pt;}
.y1be{bottom:335.358667pt;}
.yb2{bottom:339.493333pt;}
.y48{bottom:339.954667pt;}
.y205{bottom:343.756000pt;}
.y92{bottom:346.328000pt;}
.yfb{bottom:347.445333pt;}
.y1b{bottom:347.446667pt;}
.y1dc{bottom:347.793333pt;}
.y6d{bottom:347.848000pt;}
.yda{bottom:348.701333pt;}
.y1bd{bottom:349.969333pt;}
.yb1{bottom:355.433333pt;}
.y47{bottom:357.481333pt;}
.y204{bottom:358.368000pt;}
.y91{bottom:363.024000pt;}
.y1a{bottom:363.386667pt;}
.y1db{bottom:363.733333pt;}
.y6c{bottom:363.788000pt;}
.y1aa{bottom:364.458667pt;}
.y1bc{bottom:364.581333pt;}
.yd9{bottom:364.641333pt;}
.yb0{bottom:371.374667pt;}
.y203{bottom:372.385333pt;}
.y46{bottom:373.421333pt;}
.y90{bottom:378.964000pt;}
.y1a9{bottom:379.070667pt;}
.y1bb{bottom:379.193333pt;}
.y19{bottom:379.326667pt;}
.y1da{bottom:379.673333pt;}
.y6b{bottom:379.728000pt;}
.y202{bottom:386.997333pt;}
.yaf{bottom:387.314667pt;}
.y45{bottom:389.362667pt;}
.yfa{bottom:393.522667pt;}
.y1ba{bottom:393.805333pt;}
.y8f{bottom:394.904000pt;}
.y116{bottom:395.266667pt;}
.y1d9{bottom:395.613333pt;}
.y6a{bottom:395.668000pt;}
.yd8{bottom:397.485333pt;}
.y201{bottom:401.609333pt;}
.yae{bottom:403.254667pt;}
.y44{bottom:405.302667pt;}
.y19d{bottom:406.966667pt;}
.y1b9{bottom:408.949333pt;}
.y18{bottom:409.546667pt;}
.y8e{bottom:410.844000pt;}
.y115{bottom:411.206667pt;}
.y1d8{bottom:411.554667pt;}
.y140{bottom:411.922667pt;}
.y69{bottom:412.009333pt;}
.y200{bottom:415.626667pt;}
.yad{bottom:419.194667pt;}
.y43{bottom:421.242667pt;}
.y13f{bottom:422.549333pt;}
.y8d{bottom:426.785333pt;}
.y114{bottom:427.146667pt;}
.y1d7{bottom:427.494667pt;}
.y68{bottom:427.950667pt;}
.y1ff{bottom:430.238667pt;}
.y13e{bottom:433.176000pt;}
.yac{bottom:435.134667pt;}
.yf9{bottom:436.944000pt;}
.y42{bottom:437.182667pt;}
.y15d{bottom:440.325333pt;}
.y8c{bottom:442.725333pt;}
.y113{bottom:443.086667pt;}
.yd7{bottom:443.613333pt;}
.y13d{bottom:443.802667pt;}
.y67{bottom:443.890667pt;}
.y1fe{bottom:444.850667pt;}
.y17{bottom:450.393333pt;}
.y1b8{bottom:450.592000pt;}
.yab{bottom:451.074667pt;}
.yf8{bottom:452.884000pt;}
.y41{bottom:453.122667pt;}
.y13c{bottom:454.961333pt;}
.y15c{bottom:456.265333pt;}
.y8b{bottom:458.665333pt;}
.y1fd{bottom:458.868000pt;}
.y112{bottom:459.028000pt;}
.yd6{bottom:459.553333pt;}
.y66{bottom:459.830667pt;}
.y1d6{bottom:461.112000pt;}
.y13b{bottom:466.118667pt;}
.y16{bottom:466.333333pt;}
.yaa{bottom:467.016000pt;}
.yf7{bottom:468.824000pt;}
.y40{bottom:469.062667pt;}
.y15b{bottom:472.205333pt;}
.y1fc{bottom:473.478667pt;}
.y8a{bottom:474.605333pt;}
.y111{bottom:474.968000pt;}
.yd5{bottom:475.493333pt;}
.y65{bottom:475.770667pt;}
.y13a{bottom:477.277333pt;}
.yf6{bottom:484.764000pt;}
.y3f{bottom:485.004000pt;}
.y139{bottom:487.904000pt;}
.y1fb{bottom:488.090667pt;}
.y15a{bottom:488.145333pt;}
.y89{bottom:490.545333pt;}
.y18d{bottom:490.908000pt;}
.yd4{bottom:491.433333pt;}
.y64{bottom:491.710667pt;}
.y1b7{bottom:496.813333pt;}
.ya9{bottom:496.986667pt;}
.y138{bottom:498.530667pt;}
.yf5{bottom:500.704000pt;}
.y1fa{bottom:502.108000pt;}
.y3e{bottom:502.530667pt;}
.y159{bottom:504.085333pt;}
.y1d5{bottom:505.356000pt;}
.y88{bottom:506.485333pt;}
.y15{bottom:506.710667pt;}
.y18c{bottom:506.848000pt;}
.y63{bottom:507.650667pt;}
.y110{bottom:508.585333pt;}
.yd3{bottom:508.629333pt;}
.y137{bottom:509.157333pt;}
.y1b6{bottom:512.753333pt;}
.yf4{bottom:516.645333pt;}
.y1f9{bottom:516.720000pt;}
.y3d{bottom:518.470667pt;}
.y136{bottom:519.784000pt;}
.y158{bottom:520.026667pt;}
.y1d4{bottom:521.296000pt;}
.y14{bottom:521.322667pt;}
.y87{bottom:522.426667pt;}
.y18b{bottom:522.788000pt;}
.y62{bottom:523.592000pt;}
.yd2{bottom:524.569333pt;}
.y1b5{bottom:528.693333pt;}
.y135{bottom:530.410667pt;}
.y1f8{bottom:530.737333pt;}
.yf3{bottom:532.585333pt;}
.y3c{bottom:534.410667pt;}
.y13{bottom:535.934667pt;}
.y157{bottom:535.966667pt;}
.y1d3{bottom:537.236000pt;}
.ya8{bottom:537.584000pt;}
.y86{bottom:538.366667pt;}
.y61{bottom:539.532000pt;}
.yd1{bottom:540.509333pt;}
.y134{bottom:541.037333pt;}
.y1b4{bottom:544.633333pt;}
.y1f7{bottom:545.349333pt;}
.y3b{bottom:550.350667pt;}
.y12{bottom:550.546667pt;}
.y156{bottom:551.906667pt;}
.y133{bottom:552.196000pt;}
.y10f{bottom:552.829333pt;}
.y1d2{bottom:553.177333pt;}
.ya7{bottom:553.524000pt;}
.y85{bottom:554.306667pt;}
.y60{bottom:555.472000pt;}
.yd0{bottom:557.705333pt;}
.yf1{bottom:559.350667pt;}
.y1f6{bottom:559.961333pt;}
.y1b3{bottom:560.573333pt;}
.yf2{bottom:561.634667pt;}
.y132{bottom:563.354667pt;}
.y11{bottom:565.157333pt;}
.y3a{bottom:566.290667pt;}
.y155{bottom:567.846667pt;}
.y10e{bottom:568.769333pt;}
.y1d1{bottom:569.117333pt;}
.ya6{bottom:569.464000pt;}
.y84{bottom:570.246667pt;}
.y5f{bottom:571.412000pt;}
.ycf{bottom:573.645333pt;}
.y1f5{bottom:573.978667pt;}
.y131{bottom:574.512000pt;}
.y1b2{bottom:576.513333pt;}
.y10{bottom:579.769333pt;}
.y39{bottom:582.232000pt;}
.y154{bottom:583.786667pt;}
.y10d{bottom:584.709333pt;}
.y1d0{bottom:585.057333pt;}
.y130{bottom:585.138667pt;}
.ya5{bottom:585.404000pt;}
.y83{bottom:586.186667pt;}
.y5e{bottom:587.352000pt;}
.y1f4{bottom:588.590667pt;}
.yce{bottom:589.585333pt;}
.y1b1{bottom:592.454667pt;}
.yf0{bottom:594.088000pt;}
.yf{bottom:594.381333pt;}
.y12f{bottom:595.765333pt;}
.y38{bottom:598.172000pt;}
.y153{bottom:599.726667pt;}
.y10c{bottom:600.650667pt;}
.y1cf{bottom:600.997333pt;}
.ya4{bottom:601.345333pt;}
.y18a{bottom:601.744000pt;}
.y82{bottom:602.126667pt;}
.y1f3{bottom:603.202667pt;}
.y5d{bottom:603.694667pt;}
.ycd{bottom:605.526667pt;}
.y12e{bottom:606.393333pt;}
.y1b0{bottom:608.394667pt;}
.ye{bottom:608.993333pt;}
.yef{bottom:610.028000pt;}
.y37{bottom:614.112000pt;}
.y152{bottom:615.668000pt;}
.y189{bottom:616.356000pt;}
.y10b{bottom:616.590667pt;}
.y1ce{bottom:616.937333pt;}
.y12d{bottom:617.020000pt;}
.y1f2{bottom:617.220000pt;}
.ya3{bottom:617.285333pt;}
.y81{bottom:618.822667pt;}
.y5c{bottom:619.634667pt;}
.ycc{bottom:621.466667pt;}
.yd{bottom:623.605333pt;}
.y1af{bottom:624.334667pt;}
.yee{bottom:625.968000pt;}
.y12c{bottom:627.646667pt;}
.y36{bottom:630.052000pt;}
.y1f1{bottom:631.237333pt;}
.y188{bottom:631.498667pt;}
.y151{bottom:631.608000pt;}
.y19c{bottom:631.737333pt;}
.y10a{bottom:632.530667pt;}
.y1cd{bottom:632.877333pt;}
.ya2{bottom:633.225333pt;}
.y80{bottom:634.762667pt;}
.y5b{bottom:635.574667pt;}
.ycb{bottom:637.406667pt;}
.yc{bottom:638.217333pt;}
.y12b{bottom:638.273333pt;}
.y1ae{bottom:640.274667pt;}
.yed{bottom:641.908000pt;}
.y1f0{bottom:645.849333pt;}
.y187{bottom:646.110667pt;}
.y150{bottom:647.548000pt;}
.y35{bottom:647.578667pt;}
.y19b{bottom:647.677333pt;}
.y109{bottom:648.470667pt;}
.y1cc{bottom:648.818667pt;}
.y12a{bottom:648.900000pt;}
.ya1{bottom:649.165333pt;}
.y7f{bottom:650.702667pt;}
.y5a{bottom:651.514667pt;}
.yb{bottom:652.829333pt;}
.yca{bottom:653.346667pt;}
.y1ad{bottom:656.214667pt;}
.yec{bottom:658.562667pt;}
.y129{bottom:659.526667pt;}
.y1ef{bottom:659.866667pt;}
.y186{bottom:660.722667pt;}
.y14f{bottom:663.488000pt;}
.y34{bottom:663.518667pt;}
.y19a{bottom:663.617333pt;}
.y108{bottom:664.410667pt;}
.y1cb{bottom:664.758667pt;}
.ya0{bottom:665.105333pt;}
.y7e{bottom:666.644000pt;}
.ya{bottom:667.441333pt;}
.y59{bottom:667.454667pt;}
.y128{bottom:670.153333pt;}
.y1ac{bottom:672.154667pt;}
.y1ee{bottom:674.478667pt;}
.yeb{bottom:674.502667pt;}
.y185{bottom:675.334667pt;}
.y14e{bottom:679.428000pt;}
.y33{bottom:679.460000pt;}
.y199{bottom:679.558667pt;}
.y107{bottom:680.698667pt;}
.y127{bottom:680.780000pt;}
.y9f{bottom:681.045333pt;}
.y9{bottom:682.053333pt;}
.y7d{bottom:682.584000pt;}
.y1ed{bottom:689.090667pt;}
.y184{bottom:689.946667pt;}
.y126{bottom:691.938667pt;}
.y14d{bottom:695.369333pt;}
.y32{bottom:695.400000pt;}
.y198{bottom:695.498667pt;}
.y106{bottom:696.638667pt;}
.y8{bottom:696.665333pt;}
.y9e{bottom:696.986667pt;}
.y7c{bottom:698.524000pt;}
.y58{bottom:701.342667pt;}
.y125{bottom:703.097333pt;}
.y1ec{bottom:703.108000pt;}
.yc9{bottom:704.292000pt;}
.y183{bottom:705.089333pt;}
.y1ab{bottom:709.809333pt;}
.y14c{bottom:711.309333pt;}
.y31{bottom:711.340000pt;}
.y197{bottom:711.438667pt;}
.y105{bottom:712.578667pt;}
.y9d{bottom:712.926667pt;}
.y124{bottom:714.254667pt;}
.y7b{bottom:714.464000pt;}
.yc8{bottom:718.904000pt;}
.y182{bottom:719.701333pt;}
.y123{bottom:724.881333pt;}
.yea{bottom:725.096000pt;}
.y14b{bottom:727.249333pt;}
.y30{bottom:727.280000pt;}
.y196{bottom:727.378667pt;}
.y104{bottom:728.518667pt;}
.y9c{bottom:728.866667pt;}
.y7a{bottom:730.404000pt;}
.y1eb{bottom:730.688000pt;}
.yc7{bottom:733.516000pt;}
.y181{bottom:734.313333pt;}
.y122{bottom:735.508000pt;}
.ye9{bottom:739.708000pt;}
.y14a{bottom:743.189333pt;}
.y2f{bottom:743.220000pt;}
.y195{bottom:743.318667pt;}
.y103{bottom:744.460000pt;}
.y9b{bottom:744.806667pt;}
.y57{bottom:745.857333pt;}
.y121{bottom:746.136000pt;}
.y79{bottom:746.344000pt;}
.y7{bottom:746.506667pt;}
.yc6{bottom:748.128000pt;}
.y180{bottom:748.925333pt;}
.ye8{bottom:754.320000pt;}
.y1ea{bottom:754.876000pt;}
.y120{bottom:756.762667pt;}
.y149{bottom:759.129333pt;}
.y2e{bottom:759.160000pt;}
.y194{bottom:759.260000pt;}
.y102{bottom:760.400000pt;}
.y9a{bottom:760.746667pt;}
.y56{bottom:761.797333pt;}
.y78{bottom:762.285333pt;}
.yc5{bottom:762.740000pt;}
.y17f{bottom:763.537333pt;}
.y6{bottom:766.196000pt;}
.y11f{bottom:767.389333pt;}
.ye7{bottom:768.930667pt;}
.y1e9{bottom:770.816000pt;}
.y148{bottom:775.069333pt;}
.y193{bottom:775.200000pt;}
.y5{bottom:775.729333pt;}
.y101{bottom:776.340000pt;}
.y2d{bottom:776.688000pt;}
.yc4{bottom:777.352000pt;}
.y55{bottom:777.738667pt;}
.y11e{bottom:778.016000pt;}
.y77{bottom:778.225333pt;}
.y17e{bottom:778.680000pt;}
.ye6{bottom:783.542667pt;}
.y1e8{bottom:786.757333pt;}
.y11d{bottom:788.642667pt;}
.y147{bottom:791.010667pt;}
.y192{bottom:791.140000pt;}
.yc3{bottom:791.964000pt;}
.y100{bottom:792.280000pt;}
.y2c{bottom:792.628000pt;}
.y17d{bottom:793.292000pt;}
.y54{bottom:793.678667pt;}
.y76{bottom:794.165333pt;}
.y4{bottom:795.420000pt;}
.ye5{bottom:798.154667pt;}
.y11c{bottom:799.269333pt;}
.y1e7{bottom:802.697333pt;}
.yc2{bottom:806.576000pt;}
.y146{bottom:806.950667pt;}
.y191{bottom:807.080000pt;}
.y17c{bottom:807.904000pt;}
.yff{bottom:808.220000pt;}
.y2b{bottom:808.568000pt;}
.y53{bottom:809.618667pt;}
.y75{bottom:810.105333pt;}
.y11b{bottom:810.428000pt;}
.ye4{bottom:812.766667pt;}
.y3{bottom:818.182667pt;}
.yc1{bottom:821.186667pt;}
.y11a{bottom:821.585333pt;}
.y17b{bottom:822.516000pt;}
.y145{bottom:822.890667pt;}
.y190{bottom:823.020000pt;}
.yfe{bottom:824.161333pt;}
.y2a{bottom:824.508000pt;}
.y52{bottom:825.558667pt;}
.y74{bottom:826.045333pt;}
.ye3{bottom:827.378667pt;}
.y1e6{bottom:832.200000pt;}
.y119{bottom:832.744000pt;}
.yc0{bottom:835.798667pt;}
.y17a{bottom:837.128000pt;}
.y144{bottom:838.830667pt;}
.y18f{bottom:838.960000pt;}
.yfd{bottom:840.101333pt;}
.y29{bottom:840.448000pt;}
.y51{bottom:841.498667pt;}
.y73{bottom:841.985333pt;}
.ye2{bottom:841.990667pt;}
.y118{bottom:843.902667pt;}
.ybf{bottom:850.410667pt;}
.y179{bottom:852.270667pt;}
.y18e{bottom:854.901333pt;}
.y117{bottom:855.060000pt;}
.yfc{bottom:856.041333pt;}
.y28{bottom:856.388000pt;}
.ye1{bottom:856.602667pt;}
.y72{bottom:857.926667pt;}
.y2{bottom:864.358667pt;}
.ybe{bottom:865.554667pt;}
.ye0{bottom:871.214667pt;}
.y27{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.ydf{bottom:888.608000pt;}
.ybd{bottom:893.250667pt;}
.h12{height:15.530686pt;}
.h13{height:16.327684pt;}
.h17{height:17.573942pt;}
.h11{height:18.119134pt;}
.h16{height:18.928076pt;}
.h14{height:20.188577pt;}
.h18{height:20.502933pt;}
.h1a{height:20.872777pt;}
.h3{height:21.200555pt;}
.h1b{height:24.351573pt;}
.he{height:26.184294pt;}
.hf{height:27.895200pt;}
.h5{height:29.457613pt;}
.hd{height:30.714400pt;}
.hb{height:33.474560pt;}
.h4{height:35.865600pt;}
.h8{height:37.193707pt;}
.h6{height:39.850400pt;}
.h7{height:44.632747pt;}
.h2{height:47.175200pt;}
.h1{height:53.559147pt;}
.hc{height:55.240591pt;}
.h9{height:75.797067pt;}
.ha{height:76.293067pt;}
.h10{height:160.650396pt;}
.h15{height:162.123275pt;}
.h19{height:188.834460pt;}
.h0{height:1056.000000pt;}
.w2{width:207.705095pt;}
.w1{width:226.527466pt;}
.w3{width:265.667123pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:5.258570pt;}
.x35{left:7.067360pt;}
.x31{left:8.965660pt;}
.x1f{left:11.341721pt;}
.x20{left:13.734992pt;}
.x2a{left:14.639741pt;}
.x32{left:16.337077pt;}
.x21{left:19.618894pt;}
.x26{left:23.735515pt;}
.x33{left:24.646941pt;}
.x24{left:49.550883pt;}
.x25{left:75.272908pt;}
.x22{left:88.280366pt;}
.x2f{left:90.051847pt;}
.x29{left:107.510400pt;}
.x2b{left:110.557473pt;}
.x23{left:118.944736pt;}
.x30{left:138.703527pt;}
.x34{left:141.756283pt;}
.x9{left:179.686667pt;}
.x11{left:181.545333pt;}
.xc{left:183.338667pt;}
.x12{left:184.874667pt;}
.x38{left:185.829333pt;}
.x1{left:187.530667pt;}
.x1d{left:190.866667pt;}
.x17{left:193.612000pt;}
.xa{left:199.612000pt;}
.xb{left:202.268000pt;}
.x37{left:204.234667pt;}
.x27{left:210.436000pt;}
.x8{left:217.481333pt;}
.x16{left:233.428000pt;}
.x1b{left:238.162667pt;}
.x10{left:242.684000pt;}
.x3{left:245.346667pt;}
.x2e{left:246.489333pt;}
.x19{left:250.000000pt;}
.xf{left:264.501333pt;}
.x36{left:274.400000pt;}
.xd{left:276.633333pt;}
.x2{left:278.809333pt;}
.x6{left:297.074667pt;}
.x13{left:300.716000pt;}
.x15{left:305.058667pt;}
.x2d{left:312.362667pt;}
.x4{left:329.432000pt;}
.x5{left:333.346667pt;}
.x7{left:344.334667pt;}
.x1a{left:355.924000pt;}
.x18{left:366.074667pt;}
.x1c{left:374.896000pt;}
.x28{left:421.733333pt;}
.x2c{left:457.068000pt;}
.xe{left:474.832000pt;}
.x14{left:506.817333pt;}
}




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