
    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_f80f249c4e7afdc5cdb31f2b.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_70f29189a24d7a419b58e4d9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7c717b870bdb146f6518024a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_906c70907270e1ed40950990.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_db282074b1836100b6b43c9b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_88ed2bf310a4905e62c0e32e.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_46c91e8b88e0d88a07814f23.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_1ae6d2e5291281044886da7f.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_04ffd4b31c34f3b9fc1a5a81.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.920000;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_1af56538d6a78a81527a16f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.149902;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;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_e79bce6503ce4448116e3170.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_67c45e93369892f4c8bcc9f3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_170f804251291ea134469838.woff2')format("woff");}.fff{font-family:fff;line-height:0.876000;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_35a945eacf2b85efecea1056.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.400000;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_7c7aa58d6a02e982c8b3aaa8.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ca0848a122cc572984a7a79b.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_7f23b012d8e9063936bdf4ca.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.049000;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_d29097af749477f4326143e4.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_07499ef1d5382b44e172f290.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.872000;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_1e6676f61c4a2adfb467ae8d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_72babfcbf93281b284101555.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_15e26752f0b2daa7d3e20b5c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.806000;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);}
.v7{vertical-align:-44.641658px;}
.v10{vertical-align:-24.479669px;}
.vc{vertical-align:-10.800648px;}
.v8{vertical-align:-8.639498px;}
.v16{vertical-align:-5.758906px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.439126px;}
.v11{vertical-align:6.480869px;}
.v5{vertical-align:9.359182px;}
.vb{vertical-align:15.120367px;}
.vd{vertical-align:16.559614px;}
.v4{vertical-align:18.001080px;}
.v15{vertical-align:20.159830px;}
.ve{vertical-align:21.601356px;}
.v17{vertical-align:23.040422px;}
.va{vertical-align:24.481949px;}
.v14{vertical-align:26.642978px;}
.v3{vertical-align:29.521291px;}
.v13{vertical-align:32.401944px;}
.vf{vertical-align:39.602436px;}
.v12{vertical-align:41.043842px;}
.v2{vertical-align:44.641658px;}
.v9{vertical-align:56.881493px;}
.v6{vertical-align:62.642858px;}
.ls3{letter-spacing:-0.118908px;}
.ls2{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.018561px;}
.ls23{letter-spacing:0.020961px;}
.ls5e{letter-spacing:0.025582px;}
.ls47{letter-spacing:0.030262px;}
.ls29{letter-spacing:0.046643px;}
.ls48{letter-spacing:0.057501px;}
.ls6b{letter-spacing:0.061443px;}
.ls4a{letter-spacing:0.073156px;}
.ls54{letter-spacing:0.085111px;}
.ls0{letter-spacing:0.134408px;}
.lsa9{letter-spacing:0.179338px;}
.ls5c{letter-spacing:0.186046px;}
.ls46{letter-spacing:0.188386px;}
.ls81{letter-spacing:0.190666px;}
.ls84{letter-spacing:0.195467px;}
.ls42{letter-spacing:0.200087px;}
.ls7d{letter-spacing:0.204767px;}
.ls52{letter-spacing:0.224924px;}
.ls4f{letter-spacing:0.236797px;}
.ls21{letter-spacing:0.237864px;}
.ls1{letter-spacing:0.239118px;}
.ls71{letter-spacing:0.244306px;}
.ls6e{letter-spacing:0.246706px;}
.ls7{letter-spacing:0.255470px;}
.ls4d{letter-spacing:0.260259px;}
.ls76{letter-spacing:0.292027px;}
.ls6c{letter-spacing:0.303374px;}
.ls6f{letter-spacing:0.305714px;}
.ls9e{letter-spacing:0.351111px;}
.ls8f{letter-spacing:0.358677px;}
.ls95{letter-spacing:0.506621px;}
.ls49{letter-spacing:0.518449px;}
.ls90{letter-spacing:0.613033px;}
.ls1f{letter-spacing:0.613400px;}
.ls1e{letter-spacing:0.614417px;}
.ls3e{letter-spacing:0.616687px;}
.ls64{letter-spacing:0.708274px;}
.ls22{letter-spacing:1.581812px;}
.ls14{letter-spacing:1.622832px;}
.ls51{letter-spacing:1.805982px;}
.ls5{letter-spacing:1.974055px;}
.ls9a{letter-spacing:2.110923px;}
.ls6d{letter-spacing:2.759536px;}
.ls70{letter-spacing:2.761936px;}
.ls44{letter-spacing:2.830426px;}
.ls61{letter-spacing:2.832826px;}
.ls79{letter-spacing:2.884254px;}
.ls73{letter-spacing:3.254203px;}
.ls69{letter-spacing:3.256483px;}
.ls20{letter-spacing:3.401765px;}
.ls56{letter-spacing:3.402770px;}
.ls4{letter-spacing:3.448396px;}
.ls43{letter-spacing:3.552509px;}
.ls87{letter-spacing:3.576166px;}
.ls7a{letter-spacing:3.674774px;}
.ls60{letter-spacing:3.677114px;}
.ls2f{letter-spacing:3.742902px;}
.ls26{letter-spacing:4.462405px;}
.ls8{letter-spacing:4.657503px;}
.ls65{letter-spacing:4.659844px;}
.ls85{letter-spacing:4.686695px;}
.lsd{letter-spacing:4.689582px;}
.ls1c{letter-spacing:4.828543px;}
.ls45{letter-spacing:5.189555px;}
.ls40{letter-spacing:5.223108px;}
.ls7e{letter-spacing:5.408538px;}
.ls12{letter-spacing:5.702858px;}
.ls59{letter-spacing:5.986735px;}
.ls4b{letter-spacing:5.988944px;}
.ls6a{letter-spacing:6.128101px;}
.ls88{letter-spacing:6.690642px;}
.ls93{letter-spacing:8.055135px;}
.ls28{letter-spacing:8.422037px;}
.ls30{letter-spacing:8.424378px;}
.lsa0{letter-spacing:9.010935px;}
.ls99{letter-spacing:9.025036px;}
.ls5a{letter-spacing:9.027376px;}
.ls3c{letter-spacing:9.908910px;}
.ls3b{letter-spacing:10.122987px;}
.ls2c{letter-spacing:10.479244px;}
.ls32{letter-spacing:13.251365px;}
.ls2b{letter-spacing:13.823986px;}
.ls13{letter-spacing:13.970988px;}
.lsb{letter-spacing:15.236899px;}
.ls9{letter-spacing:15.736329px;}
.ls39{letter-spacing:16.455372px;}
.ls2a{letter-spacing:16.456214px;}
.ls66{letter-spacing:16.514127px;}
.ls3a{letter-spacing:16.851761px;}
.ls37{letter-spacing:17.890931px;}
.ls57{letter-spacing:17.939656px;}
.ls8c{letter-spacing:18.004621px;}
.ls35{letter-spacing:18.182446px;}
.ls63{letter-spacing:18.338684px;}
.ls9d{letter-spacing:18.610890px;}
.ls8d{letter-spacing:18.726584px;}
.ls16{letter-spacing:18.837115px;}
.ls5d{letter-spacing:19.096533px;}
.ls38{letter-spacing:19.270791px;}
.ls4c{letter-spacing:19.383463px;}
.ls8e{letter-spacing:19.446087px;}
.ls77{letter-spacing:19.494689px;}
.lsc{letter-spacing:19.556678px;}
.ls1b{letter-spacing:19.655334px;}
.ls78{letter-spacing:19.695676px;}
.lsa{letter-spacing:19.777931px;}
.ls50{letter-spacing:19.818497px;}
.ls33{letter-spacing:19.964784px;}
.ls53{letter-spacing:20.112003px;}
.lsa7{letter-spacing:20.343775px;}
.ls75{letter-spacing:20.415239px;}
.ls5f{letter-spacing:20.535660px;}
.ls2e{letter-spacing:21.063219px;}
.ls80{letter-spacing:21.171420px;}
.ls58{letter-spacing:21.255283px;}
.ls97{letter-spacing:21.553589px;}
.ls83{letter-spacing:21.715428px;}
.ls41{letter-spacing:21.968639px;}
.ls89{letter-spacing:21.970492px;}
.ls4e{letter-spacing:21.977246px;}
.ls91{letter-spacing:22.216213px;}
.ls8a{letter-spacing:22.690055px;}
.ls15{letter-spacing:22.936411px;}
.lsa1{letter-spacing:22.992656px;}
.ls3f{letter-spacing:23.029074px;}
.ls86{letter-spacing:23.407250px;}
.ls94{letter-spacing:23.448619px;}
.ls5b{letter-spacing:23.712219px;}
.ls82{letter-spacing:23.714499px;}
.ls19{letter-spacing:23.876517px;}
.ls9b{letter-spacing:23.996903px;}
.ls1d{letter-spacing:24.082657px;}
.ls25{letter-spacing:24.309834px;}
.lsf{letter-spacing:24.596080px;}
.ls9c{letter-spacing:25.151405px;}
.ls18{letter-spacing:25.315584px;}
.ls96{letter-spacing:25.429210px;}
.ls74{letter-spacing:25.570768px;}
.ls92{letter-spacing:26.004031px;}
.ls3d{letter-spacing:26.423117px;}
.ls7b{letter-spacing:26.621269px;}
.ls98{letter-spacing:26.870557px;}
.ls7f{letter-spacing:27.572315px;}
.ls7c{letter-spacing:28.448961px;}
.lsaa{letter-spacing:28.751621px;}
.ls24{letter-spacing:28.944354px;}
.ls1a{letter-spacing:29.139392px;}
.ls11{letter-spacing:29.637703px;}
.ls17{letter-spacing:29.859015px;}
.ls6{letter-spacing:30.610897px;}
.ls9f{letter-spacing:30.855757px;}
.ls8b{letter-spacing:31.174931px;}
.lse{letter-spacing:31.623933px;}
.lsa8{letter-spacing:31.863867px;}
.ls10{letter-spacing:33.459291px;}
.ls68{letter-spacing:33.918208px;}
.ls34{letter-spacing:34.142338px;}
.lsa2{letter-spacing:34.744699px;}
.lsa3{letter-spacing:34.898298px;}
.ls62{letter-spacing:37.016031px;}
.ls31{letter-spacing:37.586372px;}
.lsa6{letter-spacing:37.989541px;}
.lsa4{letter-spacing:39.429028px;}
.lsa5{letter-spacing:40.150871px;}
.ls72{letter-spacing:74.591578px;}
.ls67{letter-spacing:119.506861px;}
.ls36{letter-spacing:195.655984px;}
.ls55{letter-spacing:216.072741px;}
.ls2d{letter-spacing:340.004756px;}
.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;}
}
.ws26{word-spacing:-37.799532px;}
.ws7{word-spacing:-23.385774px;}
.wsfe{word-spacing:-21.520615px;}
.wsf6{word-spacing:-21.341277px;}
.wscc{word-spacing:-18.400116px;}
.ws68{word-spacing:-17.915902px;}
.ws72{word-spacing:-16.068714px;}
.ws25{word-spacing:-15.925235px;}
.ws87{word-spacing:-13.934588px;}
.wscd{word-spacing:-8.608241px;}
.ws11c{word-spacing:-5.858390px;}
.ws106{word-spacing:-5.081256px;}
.ws10e{word-spacing:-1.494487px;}
.ws10c{word-spacing:-1.315149px;}
.ws115{word-spacing:-0.956472px;}
.ws123{word-spacing:-0.418456px;}
.ws107{word-spacing:-0.239118px;}
.ws10d{word-spacing:-0.179338px;}
.wsf4{word-spacing:-0.086082px;}
.ws7d{word-spacing:-0.071736px;}
.ws8{word-spacing:-0.059779px;}
.ws89{word-spacing:-0.053802px;}
.ws27{word-spacing:0.000000px;}
.wsfb{word-spacing:0.059779px;}
.ws117{word-spacing:0.119559px;}
.ws120{word-spacing:0.657574px;}
.wsf7{word-spacing:0.836913px;}
.ws11d{word-spacing:0.956472px;}
.wsfd{word-spacing:1.374928px;}
.ws11e{word-spacing:1.554267px;}
.ws111{word-spacing:2.630297px;}
.ws122{word-spacing:2.929195px;}
.wsfa{word-spacing:3.526990px;}
.ws116{word-spacing:4.603020px;}
.ws67{word-spacing:5.133497px;}
.ws11b{word-spacing:5.679051px;}
.ws112{word-spacing:6.336626px;}
.ws11a{word-spacing:6.396405px;}
.ws10f{word-spacing:7.293097px;}
.ws8e{word-spacing:8.915781px;}
.ws75{word-spacing:9.983174px;}
.wsa2{word-spacing:10.339425px;}
.wsbe{word-spacing:10.341851px;}
.ws10b{word-spacing:11.657000px;}
.ws6d{word-spacing:11.947141px;}
.wse3{word-spacing:12.254795px;}
.wsfc{word-spacing:12.314574px;}
.ws121{word-spacing:12.553692px;}
.wsa6{word-spacing:12.673251px;}
.wsc{word-spacing:12.792810px;}
.ws9e{word-spacing:13.216630px;}
.wsf0{word-spacing:13.271046px;}
.ws4e{word-spacing:13.330826px;}
.wsc9{word-spacing:13.510164px;}
.wsb5{word-spacing:13.569943px;}
.ws22{word-spacing:13.749282px;}
.ws58{word-spacing:13.880002px;}
.wsb0{word-spacing:13.988400px;}
.ws105{word-spacing:14.107959px;}
.wsb2{word-spacing:14.200963px;}
.ws45{word-spacing:14.227518px;}
.ws2a{word-spacing:14.287297px;}
.ws64{word-spacing:14.394183px;}
.ws39{word-spacing:14.406856px;}
.ws4b{word-spacing:14.466636px;}
.ws83{word-spacing:14.526415px;}
.wsdf{word-spacing:14.705754px;}
.ws114{word-spacing:14.885092px;}
.wsb1{word-spacing:14.944872px;}
.ws4c{word-spacing:15.004651px;}
.ws86{word-spacing:15.006535px;}
.wse2{word-spacing:15.124210px;}
.ws6a{word-spacing:15.175998px;}
.wsc2{word-spacing:15.183990px;}
.wsaf{word-spacing:15.243769px;}
.wsb3{word-spacing:15.363328px;}
.wsad{word-spacing:15.421209px;}
.wseb{word-spacing:15.423108px;}
.ws8c{word-spacing:15.542667px;}
.ws38{word-spacing:15.602446px;}
.wsa{word-spacing:15.662225px;}
.wsff{word-spacing:15.722005px;}
.wsd0{word-spacing:15.841564px;}
.ws8b{word-spacing:15.864512px;}
.ws118{word-spacing:15.901343px;}
.wsf2{word-spacing:15.961123px;}
.ws9c{word-spacing:16.040804px;}
.ws9d{word-spacing:16.100911px;}
.ws41{word-spacing:16.140461px;}
.wsac{word-spacing:16.261318px;}
.ws33{word-spacing:16.379579px;}
.ws84{word-spacing:16.439359px;}
.ws92{word-spacing:16.558918px;}
.ws74{word-spacing:16.618697px;}
.ws97{word-spacing:16.678477px;}
.ws19{word-spacing:16.857815px;}
.ws3e{word-spacing:17.037154px;}
.ws9{word-spacing:17.156713px;}
.ws56{word-spacing:17.276272px;}
.ws73{word-spacing:17.326722px;}
.ws80{word-spacing:17.395831px;}
.ws3b{word-spacing:17.575169px;}
.ws9a{word-spacing:17.634949px;}
.ws4f{word-spacing:17.754508px;}
.wse{word-spacing:17.874066px;}
.wsd4{word-spacing:17.944737px;}
.ws7a{word-spacing:17.993625px;}
.ws8d{word-spacing:18.032298px;}
.ws8f{word-spacing:18.113184px;}
.ws7f{word-spacing:18.191596px;}
.wsd8{word-spacing:18.292523px;}
.wsf1{word-spacing:18.412082px;}
.ws1a{word-spacing:18.591420px;}
.wsb6{word-spacing:18.710979px;}
.wsa4{word-spacing:18.826079px;}
.wsa5{word-spacing:18.828582px;}
.ws2e{word-spacing:18.830538px;}
.wsa3{word-spacing:18.870530px;}
.ws9f{word-spacing:18.968250px;}
.ws23{word-spacing:18.985941px;}
.ws3d{word-spacing:19.009877px;}
.wsa0{word-spacing:19.129436px;}
.ws5e{word-spacing:19.189215px;}
.wscf{word-spacing:19.200746px;}
.ws10{word-spacing:19.308774px;}
.ws66{word-spacing:19.314741px;}
.ws14{word-spacing:19.428333px;}
.ws47{word-spacing:19.488113px;}
.ws49{word-spacing:19.547892px;}
.wsc0{word-spacing:19.727231px;}
.ws4d{word-spacing:19.846790px;}
.wsc8{word-spacing:19.853625px;}
.ws6f{word-spacing:19.906569px;}
.ws50{word-spacing:19.942470px;}
.ws31{word-spacing:20.026128px;}
.ws2c{word-spacing:20.145687px;}
.wsd5{word-spacing:20.175565px;}
.ws59{word-spacing:20.205466px;}
.wsed{word-spacing:20.336970px;}
.ws76{word-spacing:20.373910px;}
.wsc1{word-spacing:20.390771px;}
.ws65{word-spacing:20.444584px;}
.wsde{word-spacing:20.640232px;}
.ws24{word-spacing:20.659765px;}
.wscb{word-spacing:20.713267px;}
.ws29{word-spacing:20.743482px;}
.ws79{word-spacing:20.803261px;}
.ws61{word-spacing:20.863041px;}
.ws11f{word-spacing:20.982600px;}
.wsb4{word-spacing:21.042379px;}
.ws15{word-spacing:21.143993px;}
.ws37{word-spacing:21.161938px;}
.wsaa{word-spacing:21.254090px;}
.ws81{word-spacing:21.341277px;}
.ws16{word-spacing:21.413000px;}
.ws30{word-spacing:21.460836px;}
.ws1e{word-spacing:21.520615px;}
.wsca{word-spacing:21.547140px;}
.ws90{word-spacing:21.623598px;}
.ws5b{word-spacing:21.640174px;}
.ws53{word-spacing:21.699954px;}
.wse0{word-spacing:21.759733px;}
.wsce{word-spacing:21.843412px;}
.ws85{word-spacing:21.879292px;}
.wsd9{word-spacing:21.998851px;}
.ws77{word-spacing:22.037860px;}
.wsd3{word-spacing:22.058631px;}
.wsa9{word-spacing:22.086071px;}
.ws95{word-spacing:22.178190px;}
.wsda{word-spacing:22.237969px;}
.ws78{word-spacing:22.357528px;}
.ws42{word-spacing:22.417307px;}
.ws63{word-spacing:22.596646px;}
.ws57{word-spacing:22.835764px;}
.ws18{word-spacing:22.895543px;}
.ws28{word-spacing:22.955323px;}
.ws5c{word-spacing:23.074882px;}
.ws4{word-spacing:23.098832px;}
.ws36{word-spacing:23.134661px;}
.wsd{word-spacing:23.194441px;}
.wsab{word-spacing:23.314000px;}
.wsd1{word-spacing:23.433559px;}
.ws5{word-spacing:23.457510px;}
.ws62{word-spacing:23.493338px;}
.wsa1{word-spacing:23.553118px;}
.ws43{word-spacing:23.612897px;}
.ws12{word-spacing:23.672677px;}
.ws70{word-spacing:23.738419px;}
.ws11{word-spacing:23.792236px;}
.ws2d{word-spacing:23.852015px;}
.ws88{word-spacing:23.922122px;}
.ws6b{word-spacing:24.031354px;}
.ws5d{word-spacing:24.065013px;}
.wsae{word-spacing:24.096991px;}
.wsc4{word-spacing:24.210692px;}
.ws6{word-spacing:24.318336px;}
.ws3c{word-spacing:24.330251px;}
.ws71{word-spacing:24.390031px;}
.ws2b{word-spacing:24.629148px;}
.ws3a{word-spacing:24.748707px;}
.ws20{word-spacing:24.928046px;}
.ws5f{word-spacing:25.047605px;}
.ws32{word-spacing:25.107384px;}
.ws82{word-spacing:25.226943px;}
.ws5a{word-spacing:25.286723px;}
.ws6c{word-spacing:25.346502px;}
.ws99{word-spacing:25.466061px;}
.ws46{word-spacing:25.645400px;}
.ws6e{word-spacing:25.705179px;}
.ws4a{word-spacing:25.738645px;}
.ws1d{word-spacing:25.764959px;}
.wsea{word-spacing:25.806871px;}
.wse5{word-spacing:25.824738px;}
.wse9{word-spacing:25.843746px;}
.ws108{word-spacing:25.939665px;}
.ws2f{word-spacing:25.944297px;}
.wsbd{word-spacing:26.183415px;}
.wsdc{word-spacing:26.302777px;}
.ws35{word-spacing:26.362754px;}
.wsc7{word-spacing:26.422533px;}
.ws3{word-spacing:26.470401px;}
.ws48{word-spacing:26.482313px;}
.wsd7{word-spacing:26.542092px;}
.ws40{word-spacing:26.661651px;}
.wsf3{word-spacing:26.781210px;}
.wsec{word-spacing:26.829078px;}
.wsb7{word-spacing:27.116020px;}
.ws7b{word-spacing:27.187756px;}
.ws44{word-spacing:27.199666px;}
.ws113{word-spacing:27.259446px;}
.ws3f{word-spacing:27.379005px;}
.ws17{word-spacing:27.498564px;}
.ws98{word-spacing:27.677902px;}
.wsc6{word-spacing:27.737682px;}
.ws7e{word-spacing:27.797461px;}
.ws51{word-spacing:27.833376px;}
.wsc3{word-spacing:27.917020px;}
.ws102{word-spacing:27.976800px;}
.wsb{word-spacing:28.096359px;}
.wsa8{word-spacing:28.215918px;}
.wsdd{word-spacing:28.395256px;}
.wsef{word-spacing:28.514815px;}
.ws55{word-spacing:28.634374px;}
.wse7{word-spacing:28.804351px;}
.ws54{word-spacing:28.813713px;}
.ws60{word-spacing:29.104055px;}
.wse8{word-spacing:29.232169px;}
.wse4{word-spacing:29.351728px;}
.wsd2{word-spacing:29.411507px;}
.wsd6{word-spacing:29.650625px;}
.wsbc{word-spacing:29.829964px;}
.ws13{word-spacing:30.069082px;}
.ws1b{word-spacing:30.128861px;}
.ws21{word-spacing:30.248420px;}
.wsee{word-spacing:30.786436px;}
.wsdb{word-spacing:30.819028px;}
.ws91{word-spacing:30.993676px;}
.wsc5{word-spacing:31.477842px;}
.wsb8{word-spacing:31.503789px;}
.wsbb{word-spacing:31.563569px;}
.wsf5{word-spacing:32.161364px;}
.ws9b{word-spacing:32.221143px;}
.ws1f{word-spacing:32.400482px;}
.ws101{word-spacing:32.520041px;}
.ws34{word-spacing:32.539157px;}
.ws110{word-spacing:32.998277px;}
.wse6{word-spacing:33.213538px;}
.ws93{word-spacing:33.227816px;}
.ws8a{word-spacing:33.715630px;}
.ws96{word-spacing:34.134087px;}
.ws52{word-spacing:34.313425px;}
.ws1c{word-spacing:34.432984px;}
.ws104{word-spacing:34.851441px;}
.wsb9{word-spacing:35.150338px;}
.ws69{word-spacing:35.269897px;}
.wsf8{word-spacing:35.329677px;}
.wsba{word-spacing:35.867692px;}
.wse1{word-spacing:36.405707px;}
.ws94{word-spacing:36.644825px;}
.ws2{word-spacing:36.774279px;}
.ws1{word-spacing:36.877578px;}
.wsbf{word-spacing:37.362179px;}
.ws0{word-spacing:37.600668px;}
.wsf9{word-spacing:38.826016px;}
.ws103{word-spacing:40.171815px;}
.ws109{word-spacing:43.758584px;}
.ws100{word-spacing:48.122487px;}
.ws10a{word-spacing:49.437635px;}
.ws119{word-spacing:69.930336px;}
.ws7c{word-spacing:71.520297px;}
.wsa7{word-spacing:91.881071px;}
.wsf{word-spacing:97.617470px;}
._6{margin-left:-38.880643px;}
._7{margin-left:-35.796016px;}
._9{margin-left:-34.504777px;}
._2f{margin-left:-27.485658px;}
._10{margin-left:-5.739304px;}
._13{margin-left:-3.885667px;}
._0{margin-left:-2.685762px;}
._5{margin-left:-1.506446px;}
._2{width:1.136284px;}
._a{width:2.210894px;}
._3{width:3.718747px;}
._1e{width:5.329805px;}
._1d{width:6.620421px;}
._20{width:9.323458px;}
._24{width:10.557603px;}
._25{width:12.272976px;}
._1f{width:13.283494px;}
._c{width:14.597679px;}
._1a{width:15.661278px;}
._d{width:16.867789px;}
._b{width:18.412082px;}
._f{width:19.624762px;}
._11{width:21.281497px;}
._18{width:23.074882px;}
._8{width:24.174865px;}
._17{width:25.896476px;}
._e{width:27.019854px;}
._4{width:28.192053px;}
._16{width:30.152726px;}
._12{width:31.622875px;}
._15{width:32.950456px;}
._22{width:34.299572px;}
._14{width:35.747659px;}
._21{width:37.192904px;}
._1{width:38.840250px;}
._31{width:40.052256px;}
._2b{width:41.761957px;}
._27{width:42.773893px;}
._26{width:44.107338px;}
._30{width:46.735276px;}
._2c{width:50.812564px;}
._2a{width:53.861317px;}
._32{width:62.625037px;}
._29{width:66.168134px;}
._23{width:68.148141px;}
._2e{width:71.012145px;}
._28{width:74.735843px;}
._1b{width:81.204590px;}
._19{width:97.531387px;}
._2d{width:116.716247px;}
._1c{width:1410.375250px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:29.889713px;}
.fsa{font-size:35.867632px;}
.fs8{font-size:41.845611px;}
.fs5{font-size:47.823529px;}
.fs4{font-size:53.801508px;}
.fs2{font-size:59.779487px;}
.fs7{font-size:60.120000px;}
.fs1{font-size:71.735504px;}
.fs3{font-size:86.082425px;}
.fs0{font-size:103.298538px;}
.fs6{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:56.313752px;}
.y2b{bottom:70.534740px;}
.y1d0{bottom:86.015222px;}
.y15f{bottom:86.015334px;}
.y212{bottom:86.015384px;}
.y54{bottom:86.015535px;}
.yef{bottom:86.015536px;}
.y1a0{bottom:86.015537px;}
.y181{bottom:86.015540px;}
.y165{bottom:86.015576px;}
.y110{bottom:86.015708px;}
.ycb{bottom:86.015746px;}
.y82{bottom:86.016043px;}
.y13c{bottom:86.016059px;}
.y1e9{bottom:88.535850px;}
.y1cf{bottom:103.836442px;}
.y15e{bottom:103.836553px;}
.y211{bottom:103.836603px;}
.yee{bottom:103.836755px;}
.y19f{bottom:103.836757px;}
.y180{bottom:103.836760px;}
.y164{bottom:103.836795px;}
.y10f{bottom:103.836927px;}
.yca{bottom:103.836965px;}
.y81{bottom:103.837262px;}
.y13b{bottom:103.837279px;}
.y1a{bottom:113.197061px;}
.y1ce{bottom:121.837522px;}
.y15d{bottom:121.837633px;}
.y210{bottom:121.837683px;}
.y19e{bottom:121.837837px;}
.y17f{bottom:121.837840px;}
.y10e{bottom:121.838007px;}
.yc9{bottom:121.838045px;}
.y80{bottom:121.838342px;}
.y13a{bottom:121.838359px;}
.y19{bottom:131.018280px;}
.y1cd{bottom:139.838602px;}
.y15c{bottom:139.838713px;}
.y20f{bottom:139.838763px;}
.y19d{bottom:139.838917px;}
.y17e{bottom:139.838920px;}
.y10d{bottom:139.839087px;}
.yc8{bottom:139.839125px;}
.y7f{bottom:139.839422px;}
.y139{bottom:139.839439px;}
.yed{bottom:151.539617px;}
.y1cc{bottom:157.659821px;}
.y15b{bottom:157.659932px;}
.y20e{bottom:157.659982px;}
.y7e{bottom:157.660042px;}
.y19c{bottom:157.660136px;}
.y17d{bottom:157.660139px;}
.y10c{bottom:157.660306px;}
.yc7{bottom:157.660345px;}
.y138{bottom:157.660658px;}
.y2a{bottom:172.420599px;}
.y1cb{bottom:175.660901px;}
.y15a{bottom:175.661012px;}
.y7d{bottom:175.661122px;}
.y19b{bottom:175.661216px;}
.y10b{bottom:175.661386px;}
.yc6{bottom:175.661425px;}
.y137{bottom:175.661738px;}
.y29{bottom:190.421679px;}
.y1ca{bottom:193.481520px;}
.y159{bottom:193.481632px;}
.y7c{bottom:193.481741px;}
.y10a{bottom:193.482005px;}
.yc5{bottom:193.482044px;}
.y136{bottom:193.482357px;}
.y1e8{bottom:202.122300px;}
.y20d{bottom:205.002523px;}
.y28{bottom:208.242898px;}
.y17c{bottom:209.863271px;}
.y1c9{bottom:211.482600px;}
.y158{bottom:211.482712px;}
.y7b{bottom:211.482821px;}
.y109{bottom:211.483085px;}
.yc4{bottom:211.483124px;}
.yec{bottom:215.803173px;}
.y19a{bottom:220.483455px;}
.y20c{bottom:223.003603px;}
.y27{bottom:226.243978px;}
.y239{bottom:226.964054px;}
.y17b{bottom:227.683890px;}
.y1c8{bottom:229.483680px;}
.y157{bottom:229.483792px;}
.y7a{bottom:229.483901px;}
.y108{bottom:229.484165px;}
.yc3{bottom:229.484204px;}
.yeb{bottom:233.804253px;}
.y135{bottom:236.145217px;}
.y20b{bottom:241.004683px;}
.y263{bottom:242.444728px;}
.y26{bottom:244.065197px;}
.y238{bottom:244.785274px;}
.y1c7{bottom:247.304899px;}
.y156{bottom:247.305011px;}
.y79{bottom:247.305120px;}
.y107{bottom:247.305385px;}
.yc2{bottom:247.305423px;}
.yea{bottom:251.625472px;}
.y20a{bottom:258.825902px;}
.y262{bottom:260.265947px;}
.y25{bottom:262.066277px;}
.y237{bottom:262.786354px;}
.y1c6{bottom:265.305979px;}
.y155{bottom:265.306091px;}
.y78{bottom:265.306200px;}
.yc1{bottom:265.306503px;}
.ye9{bottom:269.626552px;}
.y209{bottom:276.826982px;}
.y261{bottom:278.267027px;}
.y24{bottom:280.067357px;}
.y236{bottom:280.787434px;}
.y1c5{bottom:283.307059px;}
.y77{bottom:283.307087px;}
.y154{bottom:283.307171px;}
.yc0{bottom:283.307583px;}
.y134{bottom:286.728086px;}
.ye8{bottom:287.447771px;}
.y106{bottom:293.387984px;}
.y260{bottom:296.268107px;}
.y23{bottom:297.887977px;}
.y1c4{bottom:301.128278px;}
.y76{bottom:301.128306px;}
.y153{bottom:301.128390px;}
.ybf{bottom:301.128802px;}
.y18{bottom:301.128832px;}
.y1c3{bottom:304.908370px;}
.y235{bottom:309.589162px;}
.y105{bottom:311.389064px;}
.y25f{bottom:314.088727px;}
.y199{bottom:314.268684px;}
.y22{bottom:315.889057px;}
.y17{bottom:318.950051px;}
.y152{bottom:319.129346px;}
.y75{bottom:319.129386px;}
.ybe{bottom:319.129882px;}
.y97{bottom:321.109590px;}
.ye7{bottom:326.509920px;}
.y234{bottom:327.590242px;}
.y208{bottom:328.309921px;}
.y198{bottom:332.269764px;}
.ye6{bottom:332.990497px;}
.y21{bottom:333.890137px;}
.ye5{bottom:336.771188px;}
.y151{bottom:336.950565px;}
.y74{bottom:336.950605px;}
.ybd{bottom:336.951101px;}
.y16{bottom:336.951131px;}
.y104{bottom:340.551114px;}
.y25e{bottom:344.690548px;}
.y233{bottom:345.411461px;}
.y1c2{bottom:347.931101px;}
.y197{bottom:350.270844px;}
.y133{bottom:351.172268px;}
.y20{bottom:351.711356px;}
.y73{bottom:354.951685px;}
.y150{bottom:354.951726px;}
.ybc{bottom:354.952181px;}
.y15{bottom:354.952211px;}
.y103{bottom:358.552194px;}
.y25d{bottom:362.691628px;}
.y232{bottom:363.412541px;}
.y1e7{bottom:367.552716px;}
.y196{bottom:368.092063px;}
.y132{bottom:368.992887px;}
.y14{bottom:372.773430px;}
.y14f{bottom:372.952806px;}
.ybb{bottom:372.953261px;}
.y102{bottom:376.373413px;}
.y25c{bottom:380.512847px;}
.y53{bottom:380.513237px;}
.y1f{bottom:384.653647px;}
.y1e6{bottom:385.553796px;}
.y195{bottom:386.093143px;}
.y131{bottom:386.993967px;}
.y14e{bottom:390.774025px;}
.y13{bottom:390.774510px;}
.ye4{bottom:392.394076px;}
.y231{bottom:392.394130px;}
.y52{bottom:398.334456px;}
.y25b{bottom:398.513927px;}
.y72{bottom:401.034285px;}
.y1e{bottom:402.654727px;}
.y1e5{bottom:403.554876px;}
.y194{bottom:404.094223px;}
.y1c1{bottom:404.994210px;}
.y130{bottom:404.995047px;}
.y101{bottom:405.534863px;}
.y14d{bottom:408.775105px;}
.y12{bottom:408.775590px;}
.y230{bottom:410.215349px;}
.ye3{bottom:410.395156px;}
.y207{bottom:411.475210px;}
.y51{bottom:416.335536px;}
.yba{bottom:417.235768px;}
.y17a{bottom:419.935447px;}
.y1d{bottom:420.475946px;}
.y1e4{bottom:421.376095px;}
.y193{bottom:421.915442px;}
.y71{bottom:422.095234px;}
.y12f{bottom:422.816266px;}
.y1c0{bottom:422.995290px;}
.y100{bottom:423.535943px;}
.y14c{bottom:426.776185px;}
.y22f{bottom:428.216429px;}
.ye2{bottom:428.396236px;}
.y25a{bottom:429.115748px;}
.y206{bottom:429.476290px;}
.y50{bottom:434.156755px;}
.y179{bottom:437.936527px;}
.yb9{bottom:438.116886px;}
.y1c{bottom:438.477026px;}
.y1e3{bottom:439.377175px;}
.y192{bottom:439.916522px;}
.y1bf{bottom:440.816509px;}
.y12e{bottom:440.817346px;}
.y14b{bottom:444.596804px;}
.y22e{bottom:446.037648px;}
.y259{bottom:446.936967px;}
.y205{bottom:447.296909px;}
.y4f{bottom:452.157835px;}
.y178{bottom:455.937607px;}
.y1b{bottom:456.297646px;}
.y11{bottom:456.297991px;}
.y1e2{bottom:457.197794px;}
.y191{bottom:457.737742px;}
.y1be{bottom:458.817589px;}
.y12d{bottom:458.818426px;}
.yb8{bottom:458.998004px;}
.ye1{bottom:461.158486px;}
.y258{bottom:464.938047px;}
.y204{bottom:465.297989px;}
.yff{bottom:469.618543px;}
.y4e{bottom:470.158915px;}
.y177{bottom:473.758826px;}
.y22d{bottom:475.019237px;}
.y1e1{bottom:475.198874px;}
.y190{bottom:475.738822px;}
.y12c{bottom:476.639645px;}
.y1bd{bottom:476.818669px;}
.ye0{bottom:479.159566px;}
.y257{bottom:482.939127px;}
.y203{bottom:483.119209px;}
.y163{bottom:483.299490px;}
.yfe{bottom:487.619623px;}
.y4d{bottom:487.980134px;}
.y176{bottom:491.759906px;}
.y22c{bottom:493.020317px;}
.y1e0{bottom:493.199954px;}
.y18f{bottom:493.739902px;}
.y1bc{bottom:494.639888px;}
.y14a{bottom:494.640107px;}
.y12b{bottom:494.640725px;}
.y70{bottom:496.799716px;}
.ydf{bottom:496.980785px;}
.y256{bottom:500.760346px;}
.y202{bottom:501.120289px;}
.y162{bottom:501.300570px;}
.yfd{bottom:505.440842px;}
.y4c{bottom:505.981214px;}
.y175{bottom:509.760986px;}
.y22b{bottom:510.841536px;}
.y1df{bottom:511.021174px;}
.y18e{bottom:511.561121px;}
.y12a{bottom:512.461945px;}
.y1bb{bottom:512.640968px;}
.y6f{bottom:514.800796px;}
.y201{bottom:519.121369px;}
.yfc{bottom:523.441922px;}
.y4b{bottom:523.982294px;}
.yb7{bottom:524.701946px;}
.y174{bottom:527.582209px;}
.y10{bottom:528.842644px;}
.y1de{bottom:529.022254px;}
.y18d{bottom:529.562201px;}
.y129{bottom:530.463025px;}
.y1ba{bottom:530.642048px;}
.y255{bottom:531.362167px;}
.y6e{bottom:532.622015px;}
.ydd{bottom:535.502632px;}
.ydc{bottom:535.863088px;}
.y22a{bottom:539.823125px;}
.yfb{bottom:541.443002px;}
.y4a{bottom:541.802914px;}
.yb6{bottom:542.703026px;}
.y1dd{bottom:547.023334px;}
.y18c{bottom:547.563281px;}
.y1b9{bottom:548.463268px;}
.y128{bottom:548.464105px;}
.y254{bottom:549.363247px;}
.yde{bottom:549.363823px;}
.y6d{bottom:550.623095px;}
.yd9{bottom:553.503712px;}
.y229{bottom:557.644344px;}
.yfa{bottom:559.264221px;}
.y49{bottom:559.803994px;}
.yb5{bottom:560.704106px;}
.y1dc{bottom:564.844553px;}
.y18b{bottom:565.384961px;}
.y127{bottom:566.285324px;}
.y1b8{bottom:566.464348px;}
.y253{bottom:567.184466px;}
.ydb{bottom:567.724715px;}
.y6c{bottom:568.624175px;}
.y200{bottom:570.604307px;}
.y173{bottom:571.324549px;}
.yda{bottom:572.224985px;}
.y228{bottom:575.645424px;}
.yf9{bottom:577.265301px;}
.y48{bottom:577.625213px;}
.yb4{bottom:578.525325px;}
.yf{bottom:579.605389px;}
.y1db{bottom:582.845633px;}
.y18a{bottom:583.386041px;}
.y96{bottom:583.565173px;}
.y1b7{bottom:584.285567px;}
.y126{bottom:584.286404px;}
.y252{bottom:585.185546px;}
.y149{bottom:585.365700px;}
.y6b{bottom:586.445394px;}
.yb3{bottom:596.526420px;}
.ye{bottom:597.606469px;}
.y189{bottom:601.206385px;}
.y95{bottom:601.566253px;}
.y1b6{bottom:602.286647px;}
.y125{bottom:602.287484px;}
.y251{bottom:603.186626px;}
.y6a{bottom:604.446474px;}
.y227{bottom:604.627013px;}
.yd8{bottom:615.247716px;}
.yd{bottom:615.607549px;}
.y188{bottom:619.207465px;}
.y94{bottom:619.567333px;}
.y124{bottom:620.108103px;}
.y1b5{bottom:620.287727px;}
.y250{bottom:621.007246px;}
.y69{bottom:622.267693px;}
.y226{bottom:622.448232px;}
.yf8{bottom:623.347901px;}
.y1da{bottom:625.328032px;}
.yb2{bottom:625.688405px;}
.y47{bottom:628.028252px;}
.y172{bottom:631.268460px;}
.yb1{bottom:632.348329px;}
.yd7{bottom:633.068935px;}
.yc{bottom:633.428768px;}
.y187{bottom:637.208545px;}
.y93{bottom:637.388552px;}
.y123{bottom:638.109183px;}
.y68{bottom:640.268773px;}
.y225{bottom:640.449312px;}
.yf7{bottom:641.169120px;}
.yd6{bottom:651.070015px;}
.yb{bottom:651.429848px;}
.y24f{bottom:651.609067px;}
.y1ff{bottom:653.769597px;}
.y186{bottom:655.029764px;}
.y92{bottom:655.389632px;}
.y122{bottom:656.110263px;}
.y67{bottom:658.269853px;}
.y224{bottom:658.270531px;}
.y1b4{bottom:667.090535px;}
.y24e{bottom:669.610147px;}
.y1fe{bottom:671.590816px;}
.y91{bottom:673.390712px;}
.y121{bottom:673.931482px;}
.yae{bottom:675.910822px;}
.y66{bottom:676.091072px;}
.y1d9{bottom:681.311240px;}
.yd5{bottom:684.011677px;}
.y223{bottom:687.252120px;}
.y24d{bottom:687.431366px;}
.y1b3{bottom:687.971653px;}
.y1fd{bottom:689.591896px;}
.yaf{bottom:689.592048px;}
.y90{bottom:691.211932px;}
.y120{bottom:691.932562px;}
.yb0{bottom:693.372140px;}
.yab{bottom:693.372170px;}
.y65{bottom:694.092152px;}
.y185{bottom:697.692624px;}
.y1d8{bottom:699.312320px;}
.ya{bottom:699.312586px;}
.yd4{bottom:701.832896px;}
.y46{bottom:705.253035px;}
.y222{bottom:705.253200px;}
.y24c{bottom:705.432446px;}
.y1fc{bottom:707.592976px;}
.yad{bottom:707.593173px;}
.y8f{bottom:709.213012px;}
.y11f{bottom:709.753781px;}
.yac{bottom:712.093443px;}
.y1d7{bottom:717.133540px;}
.yd3{bottom:719.833976px;}
.y45{bottom:723.074254px;}
.y221{bottom:723.074419px;}
.y1fb{bottom:725.413595px;}
.y8e{bottom:727.034231px;}
.y11e{bottom:727.754861px;}
.y1d6{bottom:735.134620px;}
.y24b{bottom:736.034267px;}
.yd2{bottom:737.655195px;}
.y44{bottom:741.075334px;}
.y220{bottom:741.075499px;}
.ya9{bottom:742.334987px;}
.y1fa{bottom:743.414675px;}
.y1b2{bottom:745.034761px;}
.y8d{bottom:745.035311px;}
.y64{bottom:745.395230px;}
.y11d{bottom:745.755941px;}
.y184{bottom:750.975671px;}
.y1d5{bottom:753.135700px;}
.y24a{bottom:753.855486px;}
.yd1{bottom:755.656275px;}
.y43{bottom:758.896553px;}
.y21f{bottom:758.896718px;}
.yaa{bottom:759.796335px;}
.ya6{bottom:759.797006px;}
.y1f9{bottom:761.415755px;}
.y9{bottom:762.136505px;}
.y1b1{bottom:763.035841px;}
.y8c{bottom:763.036391px;}
.y11c{bottom:763.577161px;}
.y183{bottom:768.796890px;}
.y1d4{bottom:770.956919px;}
.y249{bottom:771.856566px;}
.yd0{bottom:773.657355px;}
.ya8{bottom:774.016738px;}
.y42{bottom:776.897633px;}
.ya7{bottom:778.517008px;}
.y1f8{bottom:779.236975px;}
.y1b0{bottom:780.857060px;}
.y8b{bottom:780.857610px;}
.y11b{bottom:781.578241px;}
.y8{bottom:783.198084px;}
.y182{bottom:786.797970px;}
.y21e{bottom:787.878307px;}
.y1d3{bottom:788.957999px;}
.y248{bottom:789.857646px;}
.y41{bottom:794.898713px;}
.y1af{bottom:798.858140px;}
.y8a{bottom:798.858690px;}
.y11a{bottom:799.579321px;}
.y7{bottom:804.079202px;}
.y21d{bottom:805.879387px;}
.y1d2{bottom:806.959079px;}
.y161{bottom:809.659226px;}
.y1f7{bottom:812.179266px;}
.y40{bottom:812.719333px;}
.ycf{bottom:816.139754px;}
.y1ae{bottom:816.679360px;}
.y89{bottom:816.859567px;}
.y119{bottom:817.400540px;}
.y247{bottom:820.459467px;}
.y21c{bottom:823.700606px;}
.y6{bottom:824.960320px;}
.y160{bottom:827.480445px;}
.y63{bottom:827.659866px;}
.ya5{bottom:827.660792px;}
.y1f6{bottom:830.000485px;}
.y3f{bottom:830.720413px;}
.y1ad{bottom:834.680440px;}
.y88{bottom:834.680786px;}
.y118{bottom:835.401620px;}
.y246{bottom:838.280686px;}
.y21b{bottom:841.701686px;}
.y62{bottom:845.660946px;}
.ya4{bottom:845.661872px;}
.y5{bottom:845.841437px;}
.y1f5{bottom:848.001565px;}
.y3e{bottom:848.721493px;}
.y1d1{bottom:849.981810px;}
.y1ac{bottom:852.681520px;}
.y87{bottom:852.681866px;}
.y117{bottom:853.222239px;}
.y245{bottom:856.281766px;}
.y21a{bottom:859.522306px;}
.y61{bottom:863.662026px;}
.ya3{bottom:863.662997px;}
.y1f4{bottom:866.002645px;}
.y171{bottom:866.542105px;}
.y3d{bottom:866.542712px;}
.y1ab{bottom:870.502739px;}
.y86{bottom:870.503085px;}
.yce{bottom:872.843156px;}
.y244{bottom:874.102985px;}
.y4{bottom:875.723095px;}
.y219{bottom:877.523386px;}
.y60{bottom:881.483245px;}
.y148{bottom:881.483770px;}
.ya2{bottom:881.484217px;}
.y1f3{bottom:883.823264px;}
.y170{bottom:884.543185px;}
.y1aa{bottom:888.503819px;}
.ycd{bottom:890.664375px;}
.y243{bottom:892.104065px;}
.y218{bottom:895.524466px;}
.y5f{bottom:899.484325px;}
.y147{bottom:899.484850px;}
.y3c{bottom:899.485003px;}
.ya1{bottom:899.485297px;}
.y116{bottom:901.105562px;}
.y1f2{bottom:901.824344px;}
.y16f{bottom:902.364404px;}
.y1a9{bottom:906.504899px;}
.y85{bottom:916.405995px;}
.y5e{bottom:917.305544px;}
.y146{bottom:917.306069px;}
.y3b{bottom:917.306222px;}
.ya0{bottom:917.306516px;}
.y3{bottom:919.106148px;}
.y1f1{bottom:919.825424px;}
.y16e{bottom:920.365484px;}
.y242{bottom:922.705886px;}
.y1a8{bottom:924.325518px;}
.y217{bottom:924.326194px;}
.y84{bottom:934.407075px;}
.y5d{bottom:935.306624px;}
.y145{bottom:935.307149px;}
.y3a{bottom:935.307302px;}
.y9f{bottom:935.307596px;}
.y1f0{bottom:937.646644px;}
.y16d{bottom:938.366564px;}
.y241{bottom:940.526506px;}
.y1a7{bottom:942.326598px;}
.y216{bottom:942.327274px;}
.y115{bottom:945.567929px;}
.y9e{bottom:948.808376px;}
.y2{bottom:952.047809px;}
.y5c{bottom:953.307704px;}
.y144{bottom:953.308229px;}
.y39{bottom:953.308382px;}
.y9d{bottom:953.308646px;}
.y1ef{bottom:955.647724px;}
.yf6{bottom:956.187743px;}
.y16c{bottom:956.187783px;}
.y240{bottom:958.527586px;}
.y1a6{bottom:960.147817px;}
.y215{bottom:960.148493px;}
.y114{bottom:963.569009px;}
.y5b{bottom:971.128324px;}
.y143{bottom:971.128848px;}
.y38{bottom:971.129002px;}
.y9c{bottom:971.129265px;}
.y1ee{bottom:973.468943px;}
.yf5{bottom:974.188823px;}
.y16b{bottom:974.188863px;}
.y23f{bottom:976.528666px;}
.y1a5{bottom:978.148897px;}
.y214{bottom:978.149573px;}
.y1{bottom:984.810060px;}
.y5a{bottom:989.129404px;}
.y142{bottom:989.129928px;}
.y37{bottom:989.130082px;}
.y9b{bottom:989.130157px;}
.y1ed{bottom:991.470023px;}
.yf4{bottom:992.189903px;}
.y23e{bottom:994.349885px;}
.y1a4{bottom:996.149977px;}
.y213{bottom:996.150653px;}
.y113{bottom:996.511301px;}
.y59{bottom:1007.130484px;}
.y16a{bottom:1007.130524px;}
.y141{bottom:1007.131008px;}
.y36{bottom:1007.131162px;}
.y9a{bottom:1007.131237px;}
.y1ec{bottom:1009.471103px;}
.yf3{bottom:1010.011123px;}
.y23d{bottom:1012.350965px;}
.y1a3{bottom:1013.971196px;}
.y58{bottom:1024.951703px;}
.y169{bottom:1024.951744px;}
.y140{bottom:1024.952227px;}
.y35{bottom:1024.952381px;}
.y99{bottom:1024.952456px;}
.y1eb{bottom:1027.292322px;}
.y23c{bottom:1030.352045px;}
.y1a2{bottom:1031.972276px;}
.y112{bottom:1040.793838px;}
.y57{bottom:1042.952783px;}
.yf2{bottom:1042.952784px;}
.y168{bottom:1042.952824px;}
.y13f{bottom:1042.953307px;}
.y34{bottom:1042.953461px;}
.y98{bottom:1042.953536px;}
.y111{bottom:1045.833795px;}
.y56{bottom:1060.774002px;}
.yf1{bottom:1060.774003px;}
.y23b{bottom:1060.774035px;}
.y167{bottom:1060.774043px;}
.y13e{bottom:1060.774526px;}
.y33{bottom:1060.774680px;}
.y31{bottom:1065.877125px;}
.y55{bottom:1078.775082px;}
.yf0{bottom:1078.775083px;}
.y1a1{bottom:1078.775084px;}
.y23a{bottom:1078.775115px;}
.y166{bottom:1078.775123px;}
.y1ea{bottom:1078.775261px;}
.y13d{bottom:1078.775606px;}
.y32{bottom:1078.775760px;}
.y30{bottom:1083.157245px;}
.y2f{bottom:1100.256825px;}
.y2e{bottom:1117.446675px;}
.ycc{bottom:1136.888190px;}
.y83{bottom:1137.875040px;}
.y2d{bottom:1138.596915px;}
.h15{height:0.000000px;}
.h1a{height:0.190993px;}
.h14{height:31.384208px;}
.h8{height:35.867647px;}
.h9{height:37.306773px;}
.h7{height:40.351131px;}
.h4{height:41.845641px;}
.h27{height:42.802112px;}
.h13{height:44.831872px;}
.h1b{height:44.834555px;}
.h5{height:44.834615px;}
.h23{height:44.835112px;}
.h10{height:44.835369px;}
.hd{height:44.835388px;}
.he{height:44.835429px;}
.h19{height:44.835501px;}
.h25{height:44.835714px;}
.hf{height:44.837627px;}
.h24{height:46.892398px;}
.h3{height:51.219150px;}
.h1d{height:52.985564px;}
.h2{height:53.801628px;}
.h1e{height:55.863877px;}
.h17{height:55.866157px;}
.h16{height:56.881493px;}
.hc{height:59.004492px;}
.h26{height:59.954982px;}
.hb{height:60.589687px;}
.h11{height:60.905499px;}
.h1c{height:61.394228px;}
.h12{height:62.835815px;}
.h21{height:63.786092px;}
.h6{height:64.561818px;}
.h18{height:75.075349px;}
.h22{height:76.745549px;}
.h1{height:77.473903px;}
.h20{height:85.878457px;}
.h1f{height:100.279321px;}
.ha{height:126.120410px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x40{left:94.236645px;}
.xb{left:95.588284px;}
.x14{left:101.706795px;}
.x20{left:103.686765px;}
.x34{left:109.446390px;}
.x38{left:111.066465px;}
.x2f{left:112.506270px;}
.x39{left:117.006461px;}
.x31{left:118.446746px;}
.x41{left:126.366448px;}
.xc{left:128.707260px;}
.x2{left:131.947735px;}
.x1{left:137.527950px;}
.x28{left:143.828153px;}
.x12{left:145.448595px;}
.x3b{left:150.129165px;}
.x35{left:153.549403px;}
.xd{left:155.529019px;}
.x22{left:168.129101px;}
.x29{left:186.491103px;}
.x23{left:204.851395px;}
.xf{left:211.872602px;}
.x33{left:216.912541px;}
.x3a{left:227.893564px;}
.x25{left:228.972932px;}
.x21{left:232.573733px;}
.x24{left:234.373271px;}
.x4{left:236.354014px;}
.x15{left:249.134590px;}
.x26{left:250.754119px;}
.x30{left:252.374977px;}
.x2a{left:253.995480px;}
.x5{left:267.315572px;}
.x3{left:270.556066px;}
.x3d{left:295.037160px;}
.x9{left:304.757998px;}
.x27{left:325.098849px;}
.x7{left:328.879580px;}
.x6{left:362.721311px;}
.x8{left:364.881740px;}
.xa{left:413.665897px;}
.x11{left:432.273840px;}
.xe{left:478.288369px;}
.x3c{left:482.609068px;}
.x3e{left:485.849073px;}
.x37{left:493.770120px;}
.x2d{left:496.650336px;}
.x32{left:506.910915px;}
.x3f{left:509.070616px;}
.x2b{left:511.051170px;}
.x2e{left:515.731316px;}
.x13{left:529.951349px;}
.x36{left:536.252700px;}
.x1b{left:545.612765px;}
.x16{left:576.213895px;}
.x1c{left:579.094624px;}
.x17{left:581.433923px;}
.x10{left:586.084125px;}
.x2c{left:592.956099px;}
.x1d{left:603.216206px;}
.x19{left:614.376770px;}
.x18{left:620.677148px;}
.x1e{left:624.637041px;}
.x1a{left:638.498353px;}
.x1f{left:686.380955px;}
@media print{
.v7{vertical-align:-39.681474pt;}
.v10{vertical-align:-21.759706pt;}
.vc{vertical-align:-9.600576pt;}
.v8{vertical-align:-7.679554pt;}
.v16{vertical-align:-5.119027pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.279223pt;}
.v11{vertical-align:5.760772pt;}
.v5{vertical-align:8.319272pt;}
.vb{vertical-align:13.440326pt;}
.vd{vertical-align:14.719656pt;}
.v4{vertical-align:16.000960pt;}
.v15{vertical-align:17.919848pt;}
.ve{vertical-align:19.201205pt;}
.v17{vertical-align:20.480375pt;}
.va{vertical-align:21.761732pt;}
.v14{vertical-align:23.682648pt;}
.v3{vertical-align:26.241148pt;}
.v13{vertical-align:28.801728pt;}
.vf{vertical-align:35.202165pt;}
.v12{vertical-align:36.483416pt;}
.v2{vertical-align:39.681474pt;}
.v9{vertical-align:50.561327pt;}
.v6{vertical-align:55.682541pt;}
.ls3{letter-spacing:-0.105696pt;}
.ls2{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.016499pt;}
.ls23{letter-spacing:0.018632pt;}
.ls5e{letter-spacing:0.022739pt;}
.ls47{letter-spacing:0.026899pt;}
.ls29{letter-spacing:0.041460pt;}
.ls48{letter-spacing:0.051112pt;}
.ls6b{letter-spacing:0.054616pt;}
.ls4a{letter-spacing:0.065028pt;}
.ls54{letter-spacing:0.075654pt;}
.ls0{letter-spacing:0.119474pt;}
.lsa9{letter-spacing:0.159412pt;}
.ls5c{letter-spacing:0.165374pt;}
.ls46{letter-spacing:0.167454pt;}
.ls81{letter-spacing:0.169481pt;}
.ls84{letter-spacing:0.173748pt;}
.ls42{letter-spacing:0.177855pt;}
.ls7d{letter-spacing:0.182015pt;}
.ls52{letter-spacing:0.199933pt;}
.ls4f{letter-spacing:0.210486pt;}
.ls21{letter-spacing:0.211435pt;}
.ls1{letter-spacing:0.212549pt;}
.ls71{letter-spacing:0.217161pt;}
.ls6e{letter-spacing:0.219294pt;}
.ls7{letter-spacing:0.227084pt;}
.ls4d{letter-spacing:0.231341pt;}
.ls76{letter-spacing:0.259580pt;}
.ls6c{letter-spacing:0.269666pt;}
.ls6f{letter-spacing:0.271746pt;}
.ls9e{letter-spacing:0.312099pt;}
.ls8f{letter-spacing:0.318824pt;}
.ls95{letter-spacing:0.450329pt;}
.ls49{letter-spacing:0.460844pt;}
.ls90{letter-spacing:0.544918pt;}
.ls1f{letter-spacing:0.545244pt;}
.ls1e{letter-spacing:0.546148pt;}
.ls3e{letter-spacing:0.548166pt;}
.ls64{letter-spacing:0.629577pt;}
.ls22{letter-spacing:1.406055pt;}
.ls14{letter-spacing:1.442517pt;}
.ls51{letter-spacing:1.605317pt;}
.ls5{letter-spacing:1.754715pt;}
.ls9a{letter-spacing:1.876376pt;}
.ls6d{letter-spacing:2.452921pt;}
.ls70{letter-spacing:2.455055pt;}
.ls44{letter-spacing:2.515934pt;}
.ls61{letter-spacing:2.518068pt;}
.ls79{letter-spacing:2.563781pt;}
.ls73{letter-spacing:2.892625pt;}
.ls69{letter-spacing:2.894652pt;}
.ls20{letter-spacing:3.023791pt;}
.ls56{letter-spacing:3.024684pt;}
.ls4{letter-spacing:3.065241pt;}
.ls43{letter-spacing:3.157786pt;}
.ls87{letter-spacing:3.178814pt;}
.ls7a{letter-spacing:3.266466pt;}
.ls60{letter-spacing:3.268546pt;}
.ls2f{letter-spacing:3.327024pt;}
.ls26{letter-spacing:3.966582pt;}
.ls8{letter-spacing:4.140003pt;}
.ls65{letter-spacing:4.142083pt;}
.ls85{letter-spacing:4.165951pt;}
.lsd{letter-spacing:4.168518pt;}
.ls1c{letter-spacing:4.292038pt;}
.ls45{letter-spacing:4.612938pt;}
.ls40{letter-spacing:4.642763pt;}
.ls7e{letter-spacing:4.807590pt;}
.ls12{letter-spacing:5.069207pt;}
.ls59{letter-spacing:5.321542pt;}
.ls4b{letter-spacing:5.323506pt;}
.ls6a{letter-spacing:5.447201pt;}
.ls88{letter-spacing:5.947237pt;}
.ls93{letter-spacing:7.160120pt;}
.ls28{letter-spacing:7.486256pt;}
.ls30{letter-spacing:7.488336pt;}
.lsa0{letter-spacing:8.009720pt;}
.ls99{letter-spacing:8.022254pt;}
.ls5a{letter-spacing:8.024334pt;}
.ls3c{letter-spacing:8.807920pt;}
.ls3b{letter-spacing:8.998211pt;}
.ls2c{letter-spacing:9.314883pt;}
.ls32{letter-spacing:11.778991pt;}
.ls2b{letter-spacing:12.287988pt;}
.ls13{letter-spacing:12.418656pt;}
.lsb{letter-spacing:13.543910pt;}
.ls9{letter-spacing:13.987848pt;}
.ls39{letter-spacing:14.626998pt;}
.ls2a{letter-spacing:14.627746pt;}
.ls66{letter-spacing:14.679224pt;}
.ls3a{letter-spacing:14.979343pt;}
.ls37{letter-spacing:15.903050pt;}
.ls57{letter-spacing:15.946361pt;}
.ls8c{letter-spacing:16.004107pt;}
.ls35{letter-spacing:16.162174pt;}
.ls63{letter-spacing:16.301053pt;}
.ls9d{letter-spacing:16.543013pt;}
.ls8d{letter-spacing:16.645853pt;}
.ls16{letter-spacing:16.744102pt;}
.ls5d{letter-spacing:16.974696pt;}
.ls38{letter-spacing:17.129592pt;}
.ls4c{letter-spacing:17.229745pt;}
.ls8e{letter-spacing:17.285411pt;}
.ls77{letter-spacing:17.328613pt;}
.lsc{letter-spacing:17.383714pt;}
.ls1b{letter-spacing:17.471408pt;}
.ls78{letter-spacing:17.507268pt;}
.lsa{letter-spacing:17.580383pt;}
.ls50{letter-spacing:17.616441pt;}
.ls33{letter-spacing:17.746474pt;}
.ls53{letter-spacing:17.877336pt;}
.lsa7{letter-spacing:18.083356pt;}
.ls75{letter-spacing:18.146879pt;}
.ls5f{letter-spacing:18.253920pt;}
.ls2e{letter-spacing:18.722861pt;}
.ls80{letter-spacing:18.819040pt;}
.ls58{letter-spacing:18.893585pt;}
.ls97{letter-spacing:19.158746pt;}
.ls83{letter-spacing:19.302602pt;}
.ls41{letter-spacing:19.527679pt;}
.ls89{letter-spacing:19.529326pt;}
.ls4e{letter-spacing:19.535330pt;}
.ls91{letter-spacing:19.747745pt;}
.ls8a{letter-spacing:20.168938pt;}
.ls15{letter-spacing:20.387920pt;}
.lsa1{letter-spacing:20.437916pt;}
.ls3f{letter-spacing:20.470288pt;}
.ls86{letter-spacing:20.806444pt;}
.ls94{letter-spacing:20.843216pt;}
.ls5b{letter-spacing:21.077528pt;}
.ls82{letter-spacing:21.079555pt;}
.ls19{letter-spacing:21.223571pt;}
.ls9b{letter-spacing:21.330580pt;}
.ls1d{letter-spacing:21.406806pt;}
.ls25{letter-spacing:21.608741pt;}
.lsf{letter-spacing:21.863183pt;}
.ls9c{letter-spacing:22.356805pt;}
.ls18{letter-spacing:22.502741pt;}
.ls96{letter-spacing:22.603743pt;}
.ls74{letter-spacing:22.729571pt;}
.ls92{letter-spacing:23.114694pt;}
.ls3d{letter-spacing:23.487216pt;}
.ls7b{letter-spacing:23.663350pt;}
.ls98{letter-spacing:23.884939pt;}
.ls7f{letter-spacing:24.508724pt;}
.ls7c{letter-spacing:25.287965pt;}
.lsaa{letter-spacing:25.556997pt;}
.ls24{letter-spacing:25.728314pt;}
.ls1a{letter-spacing:25.901682pt;}
.ls11{letter-spacing:26.344625pt;}
.ls17{letter-spacing:26.541347pt;}
.ls6{letter-spacing:27.209687pt;}
.ls9f{letter-spacing:27.427340pt;}
.ls8b{letter-spacing:27.711049pt;}
.lse{letter-spacing:28.110163pt;}
.lsa8{letter-spacing:28.323437pt;}
.ls10{letter-spacing:29.741592pt;}
.ls68{letter-spacing:30.149518pt;}
.ls34{letter-spacing:30.348745pt;}
.lsa2{letter-spacing:30.884177pt;}
.lsa3{letter-spacing:31.020709pt;}
.ls62{letter-spacing:32.903138pt;}
.ls31{letter-spacing:33.410108pt;}
.lsa6{letter-spacing:33.768481pt;}
.lsa4{letter-spacing:35.048025pt;}
.lsa5{letter-spacing:35.689663pt;}
.ls72{letter-spacing:66.303625pt;}
.ls67{letter-spacing:106.228321pt;}
.ls36{letter-spacing:173.916431pt;}
.ls55{letter-spacing:192.064659pt;}
.ls2d{letter-spacing:302.226450pt;}
.ws26{word-spacing:-33.599584pt;}
.ws7{word-spacing:-20.787355pt;}
.wsfe{word-spacing:-19.129436pt;}
.wsf6{word-spacing:-18.970024pt;}
.wscc{word-spacing:-16.355658pt;}
.ws68{word-spacing:-15.925246pt;}
.ws72{word-spacing:-14.283302pt;}
.ws25{word-spacing:-14.155765pt;}
.ws87{word-spacing:-12.386301pt;}
.wscd{word-spacing:-7.651770pt;}
.ws11c{word-spacing:-5.207457pt;}
.ws106{word-spacing:-4.516672pt;}
.ws10e{word-spacing:-1.328433pt;}
.ws10c{word-spacing:-1.169021pt;}
.ws115{word-spacing:-0.850197pt;}
.ws123{word-spacing:-0.371961pt;}
.ws107{word-spacing:-0.212549pt;}
.ws10d{word-spacing:-0.159412pt;}
.wsf4{word-spacing:-0.076518pt;}
.ws7d{word-spacing:-0.063765pt;}
.ws8{word-spacing:-0.053137pt;}
.ws89{word-spacing:-0.047824pt;}
.ws27{word-spacing:0.000000pt;}
.wsfb{word-spacing:0.053137pt;}
.ws117{word-spacing:0.106275pt;}
.ws120{word-spacing:0.584511pt;}
.wsf7{word-spacing:0.743922pt;}
.ws11d{word-spacing:0.850197pt;}
.wsfd{word-spacing:1.222158pt;}
.ws11e{word-spacing:1.381570pt;}
.ws111{word-spacing:2.338042pt;}
.ws122{word-spacing:2.603729pt;}
.wsfa{word-spacing:3.135102pt;}
.ws116{word-spacing:4.091574pt;}
.ws67{word-spacing:4.563109pt;}
.ws11b{word-spacing:5.048046pt;}
.ws112{word-spacing:5.632556pt;}
.ws11a{word-spacing:5.685693pt;}
.ws10f{word-spacing:6.482753pt;}
.ws8e{word-spacing:7.925139pt;}
.ws75{word-spacing:8.873933pt;}
.wsa2{word-spacing:9.190600pt;}
.wsbe{word-spacing:9.192757pt;}
.ws10b{word-spacing:10.361778pt;}
.ws6d{word-spacing:10.619681pt;}
.wse3{word-spacing:10.893151pt;}
.wsfc{word-spacing:10.946288pt;}
.ws121{word-spacing:11.158837pt;}
.wsa6{word-spacing:11.265112pt;}
.wsc{word-spacing:11.371387pt;}
.ws9e{word-spacing:11.748115pt;}
.wsf0{word-spacing:11.796485pt;}
.ws4e{word-spacing:11.849623pt;}
.wsc9{word-spacing:12.009035pt;}
.wsb5{word-spacing:12.062172pt;}
.ws22{word-spacing:12.221584pt;}
.ws58{word-spacing:12.337780pt;}
.wsb0{word-spacing:12.434133pt;}
.ws105{word-spacing:12.540408pt;}
.wsb2{word-spacing:12.623078pt;}
.ws45{word-spacing:12.646682pt;}
.ws2a{word-spacing:12.699820pt;}
.ws64{word-spacing:12.794829pt;}
.ws39{word-spacing:12.806094pt;}
.ws4b{word-spacing:12.859232pt;}
.ws83{word-spacing:12.912369pt;}
.wsdf{word-spacing:13.071781pt;}
.ws114{word-spacing:13.231193pt;}
.wsb1{word-spacing:13.284330pt;}
.ws4c{word-spacing:13.337468pt;}
.ws86{word-spacing:13.339142pt;}
.wse2{word-spacing:13.443742pt;}
.ws6a{word-spacing:13.489776pt;}
.wsc2{word-spacing:13.496880pt;}
.wsaf{word-spacing:13.550017pt;}
.wsb3{word-spacing:13.656292pt;}
.wsad{word-spacing:13.707741pt;}
.wseb{word-spacing:13.709429pt;}
.ws8c{word-spacing:13.815704pt;}
.ws38{word-spacing:13.868841pt;}
.wsa{word-spacing:13.921978pt;}
.wsff{word-spacing:13.975116pt;}
.wsd0{word-spacing:14.081390pt;}
.ws8b{word-spacing:14.101788pt;}
.ws118{word-spacing:14.134527pt;}
.wsf2{word-spacing:14.187665pt;}
.ws9c{word-spacing:14.258492pt;}
.ws9d{word-spacing:14.311921pt;}
.ws41{word-spacing:14.347077pt;}
.wsac{word-spacing:14.454505pt;}
.ws33{word-spacing:14.559626pt;}
.ws84{word-spacing:14.612763pt;}
.ws92{word-spacing:14.719038pt;}
.ws74{word-spacing:14.772175pt;}
.ws97{word-spacing:14.825313pt;}
.ws19{word-spacing:14.984725pt;}
.ws3e{word-spacing:15.144137pt;}
.ws9{word-spacing:15.250411pt;}
.ws56{word-spacing:15.356686pt;}
.ws73{word-spacing:15.401530pt;}
.ws80{word-spacing:15.462961pt;}
.ws3b{word-spacing:15.622372pt;}
.ws9a{word-spacing:15.675510pt;}
.ws4f{word-spacing:15.781784pt;}
.wse{word-spacing:15.888059pt;}
.wsd4{word-spacing:15.950877pt;}
.ws7a{word-spacing:15.994334pt;}
.ws8d{word-spacing:16.028710pt;}
.ws8f{word-spacing:16.100608pt;}
.ws7f{word-spacing:16.170307pt;}
.wsd8{word-spacing:16.260020pt;}
.wsf1{word-spacing:16.366295pt;}
.ws1a{word-spacing:16.525707pt;}
.wsb6{word-spacing:16.631982pt;}
.wsa4{word-spacing:16.734292pt;}
.wsa5{word-spacing:16.736517pt;}
.ws2e{word-spacing:16.738256pt;}
.wsa3{word-spacing:16.773805pt;}
.ws9f{word-spacing:16.860667pt;}
.ws23{word-spacing:16.876392pt;}
.ws3d{word-spacing:16.897668pt;}
.wsa0{word-spacing:17.003943pt;}
.ws5e{word-spacing:17.057080pt;}
.wscf{word-spacing:17.067330pt;}
.ws10{word-spacing:17.163355pt;}
.ws66{word-spacing:17.168659pt;}
.ws14{word-spacing:17.269629pt;}
.ws47{word-spacing:17.322767pt;}
.ws49{word-spacing:17.375904pt;}
.wsc0{word-spacing:17.535316pt;}
.ws4d{word-spacing:17.641591pt;}
.wsc8{word-spacing:17.647667pt;}
.ws6f{word-spacing:17.694728pt;}
.ws50{word-spacing:17.726640pt;}
.ws31{word-spacing:17.801003pt;}
.ws2c{word-spacing:17.907277pt;}
.wsd5{word-spacing:17.933836pt;}
.ws59{word-spacing:17.960415pt;}
.wsed{word-spacing:18.077307pt;}
.ws76{word-spacing:18.110142pt;}
.wsc1{word-spacing:18.125130pt;}
.ws65{word-spacing:18.172964pt;}
.wsde{word-spacing:18.346873pt;}
.ws24{word-spacing:18.364235pt;}
.wscb{word-spacing:18.411793pt;}
.ws29{word-spacing:18.438651pt;}
.ws79{word-spacing:18.491788pt;}
.ws61{word-spacing:18.544925pt;}
.ws11f{word-spacing:18.651200pt;}
.wsb4{word-spacing:18.704337pt;}
.ws15{word-spacing:18.794660pt;}
.ws37{word-spacing:18.810612pt;}
.wsaa{word-spacing:18.892524pt;}
.ws81{word-spacing:18.970024pt;}
.ws16{word-spacing:19.033778pt;}
.ws30{word-spacing:19.076298pt;}
.ws1e{word-spacing:19.129436pt;}
.wsca{word-spacing:19.153013pt;}
.ws90{word-spacing:19.220976pt;}
.ws5b{word-spacing:19.235710pt;}
.ws53{word-spacing:19.288848pt;}
.wse0{word-spacing:19.341985pt;}
.wsce{word-spacing:19.416366pt;}
.ws85{word-spacing:19.448260pt;}
.wsd9{word-spacing:19.554534pt;}
.ws77{word-spacing:19.589209pt;}
.wsd3{word-spacing:19.607672pt;}
.wsa9{word-spacing:19.632063pt;}
.ws95{word-spacing:19.713946pt;}
.wsda{word-spacing:19.767084pt;}
.ws78{word-spacing:19.873358pt;}
.ws42{word-spacing:19.926496pt;}
.ws63{word-spacing:20.085907pt;}
.ws57{word-spacing:20.298457pt;}
.ws18{word-spacing:20.351594pt;}
.ws28{word-spacing:20.404731pt;}
.ws5c{word-spacing:20.511006pt;}
.ws4{word-spacing:20.532295pt;}
.ws36{word-spacing:20.564143pt;}
.wsd{word-spacing:20.617281pt;}
.wsab{word-spacing:20.723555pt;}
.wsd1{word-spacing:20.829830pt;}
.ws5{word-spacing:20.851120pt;}
.ws62{word-spacing:20.882967pt;}
.wsa1{word-spacing:20.936105pt;}
.ws43{word-spacing:20.989242pt;}
.ws12{word-spacing:21.042379pt;}
.ws70{word-spacing:21.100817pt;}
.ws11{word-spacing:21.148654pt;}
.ws2d{word-spacing:21.201791pt;}
.ws88{word-spacing:21.264109pt;}
.ws6b{word-spacing:21.361203pt;}
.ws5d{word-spacing:21.391122pt;}
.wsae{word-spacing:21.419547pt;}
.wsc4{word-spacing:21.520615pt;}
.ws6{word-spacing:21.616299pt;}
.ws3c{word-spacing:21.626890pt;}
.ws71{word-spacing:21.680027pt;}
.ws2b{word-spacing:21.892576pt;}
.ws3a{word-spacing:21.998851pt;}
.ws20{word-spacing:22.158263pt;}
.ws5f{word-spacing:22.264538pt;}
.ws32{word-spacing:22.317675pt;}
.ws82{word-spacing:22.423950pt;}
.ws5a{word-spacing:22.477087pt;}
.ws6c{word-spacing:22.530224pt;}
.ws99{word-spacing:22.636499pt;}
.ws46{word-spacing:22.795911pt;}
.ws6e{word-spacing:22.849048pt;}
.ws4a{word-spacing:22.878796pt;}
.ws1d{word-spacing:22.902186pt;}
.wsea{word-spacing:22.939441pt;}
.wse5{word-spacing:22.955323pt;}
.wse9{word-spacing:22.972219pt;}
.ws108{word-spacing:23.057480pt;}
.ws2f{word-spacing:23.061597pt;}
.wsbd{word-spacing:23.274147pt;}
.wsdc{word-spacing:23.380246pt;}
.ws35{word-spacing:23.433559pt;}
.wsc7{word-spacing:23.486696pt;}
.ws3{word-spacing:23.529245pt;}
.ws48{word-spacing:23.539833pt;}
.wsd7{word-spacing:23.592971pt;}
.ws40{word-spacing:23.699245pt;}
.wsf3{word-spacing:23.805520pt;}
.wsec{word-spacing:23.848070pt;}
.wsb7{word-spacing:24.103129pt;}
.ws7b{word-spacing:24.166894pt;}
.ws44{word-spacing:24.177481pt;}
.ws113{word-spacing:24.230619pt;}
.ws3f{word-spacing:24.336893pt;}
.ws17{word-spacing:24.443168pt;}
.ws98{word-spacing:24.602580pt;}
.wsc6{word-spacing:24.655717pt;}
.ws7e{word-spacing:24.708854pt;}
.ws51{word-spacing:24.740778pt;}
.wsc3{word-spacing:24.815129pt;}
.ws102{word-spacing:24.868266pt;}
.wsb{word-spacing:24.974541pt;}
.wsa8{word-spacing:25.080816pt;}
.wsdd{word-spacing:25.240228pt;}
.wsef{word-spacing:25.346502pt;}
.ws55{word-spacing:25.452777pt;}
.wse7{word-spacing:25.603868pt;}
.ws54{word-spacing:25.612189pt;}
.ws60{word-spacing:25.870271pt;}
.wse8{word-spacing:25.984150pt;}
.wse4{word-spacing:26.090425pt;}
.wsd2{word-spacing:26.143562pt;}
.wsd6{word-spacing:26.356111pt;}
.wsbc{word-spacing:26.515523pt;}
.ws13{word-spacing:26.728073pt;}
.ws1b{word-spacing:26.781210pt;}
.ws21{word-spacing:26.887485pt;}
.wsee{word-spacing:27.365721pt;}
.wsdb{word-spacing:27.394692pt;}
.ws91{word-spacing:27.549934pt;}
.wsc5{word-spacing:27.980304pt;}
.wsb8{word-spacing:28.003368pt;}
.wsbb{word-spacing:28.056506pt;}
.wsf5{word-spacing:28.587879pt;}
.ws9b{word-spacing:28.641016pt;}
.ws1f{word-spacing:28.800428pt;}
.ws101{word-spacing:28.906703pt;}
.ws34{word-spacing:28.923695pt;}
.ws110{word-spacing:29.331801pt;}
.wse6{word-spacing:29.523145pt;}
.ws93{word-spacing:29.535836pt;}
.ws8a{word-spacing:29.969449pt;}
.ws96{word-spacing:30.341411pt;}
.ws52{word-spacing:30.500822pt;}
.ws1c{word-spacing:30.607097pt;}
.ws104{word-spacing:30.979058pt;}
.wsb9{word-spacing:31.244745pt;}
.ws69{word-spacing:31.351020pt;}
.wsf8{word-spacing:31.404157pt;}
.wsba{word-spacing:31.882393pt;}
.wse1{word-spacing:32.360629pt;}
.ws94{word-spacing:32.573178pt;}
.ws2{word-spacing:32.688248pt;}
.ws1{word-spacing:32.780069pt;}
.wsbf{word-spacing:33.210826pt;}
.ws0{word-spacing:33.422816pt;}
.wsf9{word-spacing:34.512014pt;}
.ws103{word-spacing:35.708280pt;}
.ws109{word-spacing:38.896519pt;}
.ws100{word-spacing:42.775544pt;}
.ws10a{word-spacing:43.944565pt;}
.ws119{word-spacing:62.160299pt;}
.ws7c{word-spacing:63.573598pt;}
.wsa7{word-spacing:81.672063pt;}
.wsf{word-spacing:86.771084pt;}
._6{margin-left:-34.560572pt;}
._7{margin-left:-31.818681pt;}
._9{margin-left:-30.670913pt;}
._2f{margin-left:-24.431696pt;}
._10{margin-left:-5.101604pt;}
._13{margin-left:-3.453926pt;}
._0{margin-left:-2.387344pt;}
._5{margin-left:-1.339063pt;}
._2{width:1.010030pt;}
._a{width:1.965239pt;}
._3{width:3.305553pt;}
._1e{width:4.737605pt;}
._1d{width:5.884818pt;}
._20{width:8.287518pt;}
._24{width:9.384536pt;}
._25{width:10.909312pt;}
._1f{width:11.807550pt;}
._c{width:12.975715pt;}
._1a{width:13.921136pt;}
._d{width:14.993590pt;}
._b{width:16.366295pt;}
._f{width:17.444233pt;}
._11{width:18.916886pt;}
._18{width:20.511006pt;}
._8{width:21.488769pt;}
._17{width:23.019090pt;}
._e{width:24.017648pt;}
._4{width:25.059603pt;}
._16{width:26.802423pt;}
._12{width:28.109222pt;}
._15{width:29.289294pt;}
._22{width:30.488509pt;}
._14{width:31.775697pt;}
._21{width:33.060359pt;}
._1{width:34.524667pt;}
._31{width:35.602005pt;}
._2b{width:37.121739pt;}
._27{width:38.021238pt;}
._26{width:39.206522pt;}
._30{width:41.542468pt;}
._2c{width:45.166723pt;}
._2a{width:47.876727pt;}
._32{width:55.666700pt;}
._29{width:58.816120pt;}
._23{width:60.576125pt;}
._2e{width:63.121907pt;}
._28{width:66.431860pt;}
._1b{width:72.181858pt;}
._19{width:86.694566pt;}
._2d{width:103.747775pt;}
._1c{width:1253.666889pt;}
.fs9{font-size:26.568634pt;}
.fsa{font-size:31.882339pt;}
.fs8{font-size:37.196098pt;}
.fs5{font-size:42.509804pt;}
.fs4{font-size:47.823563pt;}
.fs2{font-size:53.137321pt;}
.fs7{font-size:53.440000pt;}
.fs1{font-size:63.764892pt;}
.fs3{font-size:76.517711pt;}
.fs0{font-size:91.820922pt;}
.fs6{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:50.056668pt;}
.y2b{bottom:62.697547pt;}
.y1d0{bottom:76.457975pt;}
.y15f{bottom:76.458075pt;}
.y212{bottom:76.458119pt;}
.y54{bottom:76.458253pt;}
.yef{bottom:76.458254pt;}
.y1a0{bottom:76.458255pt;}
.y181{bottom:76.458258pt;}
.y165{bottom:76.458290pt;}
.y110{bottom:76.458407pt;}
.ycb{bottom:76.458441pt;}
.y82{bottom:76.458705pt;}
.y13c{bottom:76.458719pt;}
.y1e9{bottom:78.698533pt;}
.y1cf{bottom:92.299059pt;}
.y15e{bottom:92.299158pt;}
.y211{bottom:92.299203pt;}
.yee{bottom:92.299338pt;}
.y19f{bottom:92.299339pt;}
.y180{bottom:92.299342pt;}
.y164{bottom:92.299373pt;}
.y10f{bottom:92.299491pt;}
.yca{bottom:92.299525pt;}
.y81{bottom:92.299789pt;}
.y13b{bottom:92.299803pt;}
.y1a{bottom:100.619610pt;}
.y1ce{bottom:108.300019pt;}
.y15d{bottom:108.300118pt;}
.y210{bottom:108.300163pt;}
.y19e{bottom:108.300299pt;}
.y17f{bottom:108.300302pt;}
.y10e{bottom:108.300451pt;}
.yc9{bottom:108.300485pt;}
.y80{bottom:108.300749pt;}
.y13a{bottom:108.300763pt;}
.y19{bottom:116.460693pt;}
.y1cd{bottom:124.300979pt;}
.y15c{bottom:124.301078pt;}
.y20f{bottom:124.301123pt;}
.y19d{bottom:124.301259pt;}
.y17e{bottom:124.301262pt;}
.y10d{bottom:124.301411pt;}
.yc8{bottom:124.301445pt;}
.y7f{bottom:124.301709pt;}
.y139{bottom:124.301723pt;}
.yed{bottom:134.701882pt;}
.y1cc{bottom:140.142063pt;}
.y15b{bottom:140.142162pt;}
.y20e{bottom:140.142206pt;}
.y7e{bottom:140.142259pt;}
.y19c{bottom:140.142343pt;}
.y17d{bottom:140.142346pt;}
.y10c{bottom:140.142494pt;}
.yc7{bottom:140.142529pt;}
.y138{bottom:140.142807pt;}
.y2a{bottom:153.262755pt;}
.y1cb{bottom:156.143023pt;}
.y15a{bottom:156.143122pt;}
.y7d{bottom:156.143219pt;}
.y19b{bottom:156.143303pt;}
.y10b{bottom:156.143454pt;}
.yc6{bottom:156.143489pt;}
.y137{bottom:156.143767pt;}
.y29{bottom:169.263715pt;}
.y1ca{bottom:171.983573pt;}
.y159{bottom:171.983673pt;}
.y7c{bottom:171.983770pt;}
.y10a{bottom:171.984005pt;}
.yc5{bottom:171.984039pt;}
.y136{bottom:171.984317pt;}
.y1e8{bottom:179.664267pt;}
.y20d{bottom:182.224465pt;}
.y28{bottom:185.104798pt;}
.y17c{bottom:186.545130pt;}
.y1c9{bottom:187.984533pt;}
.y158{bottom:187.984633pt;}
.y7b{bottom:187.984730pt;}
.y109{bottom:187.984965pt;}
.yc4{bottom:187.984999pt;}
.yec{bottom:191.825043pt;}
.y19a{bottom:195.985293pt;}
.y20c{bottom:198.225425pt;}
.y27{bottom:201.105758pt;}
.y239{bottom:201.745826pt;}
.y17b{bottom:202.385680pt;}
.y1c8{bottom:203.985493pt;}
.y157{bottom:203.985593pt;}
.y7a{bottom:203.985690pt;}
.y108{bottom:203.985925pt;}
.yc3{bottom:203.985959pt;}
.yeb{bottom:207.826003pt;}
.y135{bottom:209.906859pt;}
.y20b{bottom:214.226385pt;}
.y263{bottom:215.506425pt;}
.y26{bottom:216.946842pt;}
.y238{bottom:217.586910pt;}
.y1c7{bottom:219.826577pt;}
.y156{bottom:219.826676pt;}
.y79{bottom:219.826773pt;}
.y107{bottom:219.827009pt;}
.yc2{bottom:219.827043pt;}
.yea{bottom:223.667086pt;}
.y20a{bottom:230.067468pt;}
.y262{bottom:231.347509pt;}
.y25{bottom:232.947802pt;}
.y237{bottom:233.587870pt;}
.y1c6{bottom:235.827537pt;}
.y155{bottom:235.827636pt;}
.y78{bottom:235.827733pt;}
.yc1{bottom:235.828003pt;}
.ye9{bottom:239.668046pt;}
.y209{bottom:246.068428pt;}
.y261{bottom:247.348469pt;}
.y24{bottom:248.948762pt;}
.y236{bottom:249.588830pt;}
.y1c5{bottom:251.828497pt;}
.y77{bottom:251.828522pt;}
.y154{bottom:251.828596pt;}
.yc0{bottom:251.828963pt;}
.y134{bottom:254.869410pt;}
.ye8{bottom:255.509130pt;}
.y106{bottom:260.789319pt;}
.y260{bottom:263.349429pt;}
.y23{bottom:264.789313pt;}
.y1c4{bottom:267.669581pt;}
.y76{bottom:267.669605pt;}
.y153{bottom:267.669680pt;}
.ybf{bottom:267.670046pt;}
.y18{bottom:267.670073pt;}
.y1c3{bottom:271.029662pt;}
.y235{bottom:275.190366pt;}
.y105{bottom:276.790279pt;}
.y25f{bottom:279.189979pt;}
.y199{bottom:279.349941pt;}
.y22{bottom:280.790273pt;}
.y17{bottom:283.511156pt;}
.y152{bottom:283.670530pt;}
.y75{bottom:283.670565pt;}
.ybe{bottom:283.671006pt;}
.y97{bottom:285.430747pt;}
.ye7{bottom:290.231040pt;}
.y234{bottom:291.191326pt;}
.y208{bottom:291.831041pt;}
.y198{bottom:295.350901pt;}
.ye6{bottom:295.991553pt;}
.y21{bottom:296.791233pt;}
.ye5{bottom:299.352167pt;}
.y151{bottom:299.511613pt;}
.y74{bottom:299.511649pt;}
.ybd{bottom:299.512090pt;}
.y16{bottom:299.512116pt;}
.y104{bottom:302.712101pt;}
.y25e{bottom:306.391598pt;}
.y233{bottom:307.032410pt;}
.y1c2{bottom:309.272090pt;}
.y197{bottom:311.351861pt;}
.y133{bottom:312.153127pt;}
.y20{bottom:312.632316pt;}
.y73{bottom:315.512609pt;}
.y150{bottom:315.512645pt;}
.ybc{bottom:315.513050pt;}
.y15{bottom:315.513076pt;}
.y103{bottom:318.713061pt;}
.y25d{bottom:322.392558pt;}
.y232{bottom:323.033370pt;}
.y1e7{bottom:326.713525pt;}
.y196{bottom:327.192945pt;}
.y132{bottom:327.993677pt;}
.y14{bottom:331.354160pt;}
.y14f{bottom:331.513605pt;}
.ybb{bottom:331.514010pt;}
.y102{bottom:334.554145pt;}
.y25c{bottom:338.233642pt;}
.y53{bottom:338.233988pt;}
.y1f{bottom:341.914353pt;}
.y1e6{bottom:342.714485pt;}
.y195{bottom:343.193905pt;}
.y131{bottom:343.994637pt;}
.y14e{bottom:347.354689pt;}
.y13{bottom:347.355120pt;}
.ye4{bottom:348.794734pt;}
.y231{bottom:348.794782pt;}
.y52{bottom:354.075072pt;}
.y25b{bottom:354.234602pt;}
.y72{bottom:356.474920pt;}
.y1e{bottom:357.915313pt;}
.y1e5{bottom:358.715445pt;}
.y194{bottom:359.194865pt;}
.y1c1{bottom:359.994853pt;}
.y130{bottom:359.995597pt;}
.y101{bottom:360.475434pt;}
.y14d{bottom:363.355649pt;}
.y12{bottom:363.356080pt;}
.y230{bottom:364.635866pt;}
.ye3{bottom:364.795694pt;}
.y207{bottom:365.755742pt;}
.y51{bottom:370.076032pt;}
.yba{bottom:370.876238pt;}
.y17a{bottom:373.275953pt;}
.y1d{bottom:373.756397pt;}
.y1e4{bottom:374.556529pt;}
.y193{bottom:375.035949pt;}
.y71{bottom:375.195763pt;}
.y12f{bottom:375.836681pt;}
.y1c0{bottom:375.995813pt;}
.y100{bottom:376.476394pt;}
.y14c{bottom:379.356609pt;}
.y22f{bottom:380.636826pt;}
.ye2{bottom:380.796654pt;}
.y25a{bottom:381.436220pt;}
.y206{bottom:381.756702pt;}
.y50{bottom:385.917116pt;}
.y179{bottom:389.276913pt;}
.yb9{bottom:389.437232pt;}
.y1c{bottom:389.757357pt;}
.y1e3{bottom:390.557489pt;}
.y192{bottom:391.036909pt;}
.y1bf{bottom:391.836897pt;}
.y12e{bottom:391.837641pt;}
.y14b{bottom:395.197159pt;}
.y22e{bottom:396.477909pt;}
.y259{bottom:397.277304pt;}
.y205{bottom:397.597253pt;}
.y4f{bottom:401.918076pt;}
.y178{bottom:405.277873pt;}
.y1b{bottom:405.597907pt;}
.y11{bottom:405.598214pt;}
.y1e2{bottom:406.398039pt;}
.y191{bottom:406.877993pt;}
.y1be{bottom:407.837857pt;}
.y12d{bottom:407.838601pt;}
.yb8{bottom:407.998226pt;}
.ye1{bottom:409.918654pt;}
.y258{bottom:413.278264pt;}
.y204{bottom:413.598213pt;}
.yff{bottom:417.438705pt;}
.y4e{bottom:417.919036pt;}
.y177{bottom:421.118956pt;}
.y22d{bottom:422.239322pt;}
.y1e1{bottom:422.398999pt;}
.y190{bottom:422.878953pt;}
.y12c{bottom:423.679685pt;}
.y1bd{bottom:423.838817pt;}
.ye0{bottom:425.919614pt;}
.y257{bottom:429.279224pt;}
.y203{bottom:429.439297pt;}
.y163{bottom:429.599547pt;}
.yfe{bottom:433.439665pt;}
.y4d{bottom:433.760119pt;}
.y176{bottom:437.119916pt;}
.y22c{bottom:438.240282pt;}
.y1e0{bottom:438.399959pt;}
.y18f{bottom:438.879913pt;}
.y1bc{bottom:439.679901pt;}
.y14a{bottom:439.680095pt;}
.y12b{bottom:439.680645pt;}
.y70{bottom:441.599747pt;}
.ydf{bottom:441.760698pt;}
.y256{bottom:445.120308pt;}
.y202{bottom:445.440257pt;}
.y162{bottom:445.600507pt;}
.yfd{bottom:449.280748pt;}
.y4c{bottom:449.761079pt;}
.y175{bottom:453.120876pt;}
.y22b{bottom:454.081365pt;}
.y1df{bottom:454.241043pt;}
.y18e{bottom:454.720996pt;}
.y12a{bottom:455.521729pt;}
.y1bb{bottom:455.680861pt;}
.y6f{bottom:457.600707pt;}
.y201{bottom:461.441217pt;}
.yfc{bottom:465.281708pt;}
.y4b{bottom:465.762039pt;}
.yb7{bottom:466.401730pt;}
.y174{bottom:468.961964pt;}
.y10{bottom:470.082350pt;}
.y1de{bottom:470.242003pt;}
.y18d{bottom:470.721956pt;}
.y129{bottom:471.522689pt;}
.y1ba{bottom:471.681821pt;}
.y255{bottom:472.321926pt;}
.y6e{bottom:473.441791pt;}
.ydd{bottom:476.002339pt;}
.ydc{bottom:476.322745pt;}
.y22a{bottom:479.842778pt;}
.yfb{bottom:481.282668pt;}
.y4a{bottom:481.602590pt;}
.yb6{bottom:482.402690pt;}
.y1dd{bottom:486.242963pt;}
.y18c{bottom:486.722916pt;}
.y1b9{bottom:487.522905pt;}
.y128{bottom:487.523649pt;}
.y254{bottom:488.322886pt;}
.yde{bottom:488.323398pt;}
.y6d{bottom:489.442751pt;}
.yd9{bottom:492.003299pt;}
.y229{bottom:495.683861pt;}
.yfa{bottom:497.123752pt;}
.y49{bottom:497.603550pt;}
.yb5{bottom:498.403650pt;}
.y1dc{bottom:502.084047pt;}
.y18b{bottom:502.564410pt;}
.y127{bottom:503.364732pt;}
.y1b8{bottom:503.523865pt;}
.y253{bottom:504.163970pt;}
.ydb{bottom:504.644191pt;}
.y6c{bottom:505.443711pt;}
.y200{bottom:507.203829pt;}
.y173{bottom:507.844043pt;}
.yda{bottom:508.644431pt;}
.y228{bottom:511.684821pt;}
.yf9{bottom:513.124712pt;}
.y48{bottom:513.444634pt;}
.yb4{bottom:514.244733pt;}
.yf{bottom:515.204790pt;}
.y1db{bottom:518.085007pt;}
.y18a{bottom:518.565370pt;}
.y96{bottom:518.724598pt;}
.y1b7{bottom:519.364948pt;}
.y126{bottom:519.365692pt;}
.y252{bottom:520.164930pt;}
.y149{bottom:520.325067pt;}
.y6b{bottom:521.284795pt;}
.yb3{bottom:530.245707pt;}
.ye{bottom:531.205750pt;}
.y189{bottom:534.405676pt;}
.y95{bottom:534.725558pt;}
.y1b6{bottom:535.365908pt;}
.y125{bottom:535.366652pt;}
.y251{bottom:536.165890pt;}
.y6a{bottom:537.285755pt;}
.y227{bottom:537.446234pt;}
.yd8{bottom:546.886859pt;}
.yd{bottom:547.206710pt;}
.y188{bottom:550.406636pt;}
.y94{bottom:550.726518pt;}
.y124{bottom:551.207203pt;}
.y1b5{bottom:551.366868pt;}
.y250{bottom:552.006440pt;}
.y69{bottom:553.126838pt;}
.y226{bottom:553.287317pt;}
.yf8{bottom:554.087023pt;}
.y1da{bottom:555.847139pt;}
.yb2{bottom:556.167471pt;}
.y47{bottom:558.247335pt;}
.y172{bottom:561.127520pt;}
.yb1{bottom:562.087403pt;}
.yd7{bottom:562.727942pt;}
.yc{bottom:563.047794pt;}
.y187{bottom:566.407596pt;}
.y93{bottom:566.567602pt;}
.y123{bottom:567.208163pt;}
.y68{bottom:569.127798pt;}
.y225{bottom:569.288277pt;}
.yf7{bottom:569.928107pt;}
.yd6{bottom:578.728902pt;}
.yb{bottom:579.048754pt;}
.y24f{bottom:579.208059pt;}
.y1ff{bottom:581.128531pt;}
.y186{bottom:582.248679pt;}
.y92{bottom:582.568562pt;}
.y122{bottom:583.209123pt;}
.y67{bottom:585.128758pt;}
.y224{bottom:585.129361pt;}
.y1b4{bottom:592.969364pt;}
.y24e{bottom:595.209019pt;}
.y1fe{bottom:596.969614pt;}
.y91{bottom:598.569522pt;}
.y121{bottom:599.050206pt;}
.yae{bottom:600.809620pt;}
.y66{bottom:600.969842pt;}
.y1d9{bottom:605.609991pt;}
.yd5{bottom:608.010379pt;}
.y223{bottom:610.890773pt;}
.y24d{bottom:611.050103pt;}
.y1b3{bottom:611.530358pt;}
.y1fd{bottom:612.970574pt;}
.yaf{bottom:612.970709pt;}
.y90{bottom:614.410606pt;}
.y120{bottom:615.051166pt;}
.yb0{bottom:616.330791pt;}
.yab{bottom:616.330818pt;}
.y65{bottom:616.970802pt;}
.y185{bottom:620.171221pt;}
.y1d8{bottom:621.610951pt;}
.ya{bottom:621.611188pt;}
.yd4{bottom:623.851463pt;}
.y46{bottom:626.891587pt;}
.y222{bottom:626.891733pt;}
.y24c{bottom:627.051063pt;}
.y1fc{bottom:628.971534pt;}
.yad{bottom:628.971709pt;}
.y8f{bottom:630.411566pt;}
.y11f{bottom:630.892250pt;}
.yac{bottom:632.971949pt;}
.y1d7{bottom:637.452035pt;}
.yd3{bottom:639.852423pt;}
.y45{bottom:642.732670pt;}
.y221{bottom:642.732817pt;}
.y1fb{bottom:644.812085pt;}
.y8e{bottom:646.252650pt;}
.y11e{bottom:646.893210pt;}
.y1d6{bottom:653.452995pt;}
.y24b{bottom:654.252682pt;}
.yd2{bottom:655.693507pt;}
.y44{bottom:658.733630pt;}
.y220{bottom:658.733777pt;}
.ya9{bottom:659.853322pt;}
.y1fa{bottom:660.813045pt;}
.y1b2{bottom:662.253121pt;}
.y8d{bottom:662.253610pt;}
.y64{bottom:662.573538pt;}
.y11d{bottom:662.894170pt;}
.y184{bottom:667.533930pt;}
.y1d5{bottom:669.453955pt;}
.y24a{bottom:670.093765pt;}
.yd1{bottom:671.694467pt;}
.y43{bottom:674.574714pt;}
.y21f{bottom:674.574861pt;}
.yaa{bottom:675.374520pt;}
.ya6{bottom:675.375116pt;}
.y1f9{bottom:676.814005pt;}
.y9{bottom:677.454671pt;}
.y1b1{bottom:678.254081pt;}
.y8c{bottom:678.254570pt;}
.y11c{bottom:678.735254pt;}
.y183{bottom:683.375013pt;}
.y1d4{bottom:685.295039pt;}
.y249{bottom:686.094725pt;}
.yd0{bottom:687.695427pt;}
.ya8{bottom:688.014878pt;}
.y42{bottom:690.575674pt;}
.ya7{bottom:692.015118pt;}
.y1f8{bottom:692.655089pt;}
.y1b0{bottom:694.095165pt;}
.y8b{bottom:694.095653pt;}
.y11b{bottom:694.736214pt;}
.y8{bottom:696.176075pt;}
.y182{bottom:699.375973pt;}
.y21e{bottom:700.336273pt;}
.y1d3{bottom:701.295999pt;}
.y248{bottom:702.095685pt;}
.y41{bottom:706.576634pt;}
.y1af{bottom:710.096125pt;}
.y8a{bottom:710.096613pt;}
.y11a{bottom:710.737174pt;}
.y7{bottom:714.737068pt;}
.y21d{bottom:716.337233pt;}
.y1d2{bottom:717.296959pt;}
.y161{bottom:719.697090pt;}
.y1f7{bottom:721.937125pt;}
.y40{bottom:722.417185pt;}
.ycf{bottom:725.457559pt;}
.y1ae{bottom:725.937209pt;}
.y89{bottom:726.097393pt;}
.y119{bottom:726.578258pt;}
.y247{bottom:729.297304pt;}
.y21c{bottom:732.178317pt;}
.y6{bottom:733.298062pt;}
.y160{bottom:735.538173pt;}
.y63{bottom:735.697659pt;}
.ya5{bottom:735.698482pt;}
.y1f6{bottom:737.778209pt;}
.y3f{bottom:738.418145pt;}
.y1ad{bottom:741.938169pt;}
.y88{bottom:741.938476pt;}
.y118{bottom:742.579218pt;}
.y246{bottom:745.138388pt;}
.y21b{bottom:748.179277pt;}
.y62{bottom:751.698619pt;}
.ya4{bottom:751.699442pt;}
.y5{bottom:751.859055pt;}
.y1f5{bottom:753.779169pt;}
.y3e{bottom:754.419105pt;}
.y1d1{bottom:755.539387pt;}
.y1ac{bottom:757.939129pt;}
.y87{bottom:757.939436pt;}
.y117{bottom:758.419768pt;}
.y245{bottom:761.139348pt;}
.y21a{bottom:764.019827pt;}
.y61{bottom:767.699579pt;}
.ya3{bottom:767.700442pt;}
.y1f4{bottom:769.780129pt;}
.y171{bottom:770.259649pt;}
.y3d{bottom:770.260188pt;}
.y1ab{bottom:773.780212pt;}
.y86{bottom:773.780520pt;}
.yce{bottom:775.860583pt;}
.y244{bottom:776.980431pt;}
.y4{bottom:778.420529pt;}
.y219{bottom:780.020787pt;}
.y60{bottom:783.540662pt;}
.y148{bottom:783.541129pt;}
.ya2{bottom:783.541526pt;}
.y1f3{bottom:785.620679pt;}
.y170{bottom:786.260609pt;}
.y1aa{bottom:789.781172pt;}
.ycd{bottom:791.701667pt;}
.y243{bottom:792.981391pt;}
.y218{bottom:796.021747pt;}
.y5f{bottom:799.541622pt;}
.y147{bottom:799.542089pt;}
.y3c{bottom:799.542225pt;}
.ya1{bottom:799.542486pt;}
.y116{bottom:800.982722pt;}
.y1f2{bottom:801.621639pt;}
.y16f{bottom:802.101692pt;}
.y1a9{bottom:805.782132pt;}
.y85{bottom:814.583107pt;}
.y5e{bottom:815.382706pt;}
.y146{bottom:815.383172pt;}
.y3b{bottom:815.383309pt;}
.ya0{bottom:815.383570pt;}
.y3{bottom:816.983243pt;}
.y1f1{bottom:817.622599pt;}
.y16e{bottom:818.102652pt;}
.y242{bottom:820.183010pt;}
.y1a8{bottom:821.622683pt;}
.y217{bottom:821.623283pt;}
.y84{bottom:830.584067pt;}
.y5d{bottom:831.383666pt;}
.y145{bottom:831.384132pt;}
.y3a{bottom:831.384269pt;}
.y9f{bottom:831.384530pt;}
.y1f0{bottom:833.463683pt;}
.y16d{bottom:834.103612pt;}
.y241{bottom:836.023560pt;}
.y1a7{bottom:837.623643pt;}
.y216{bottom:837.624243pt;}
.y115{bottom:840.504826pt;}
.y9e{bottom:843.385223pt;}
.y2{bottom:846.264719pt;}
.y5c{bottom:847.384626pt;}
.y144{bottom:847.385092pt;}
.y39{bottom:847.385229pt;}
.y9d{bottom:847.385463pt;}
.y1ef{bottom:849.464643pt;}
.yf6{bottom:849.944661pt;}
.y16c{bottom:849.944696pt;}
.y240{bottom:852.024520pt;}
.y1a6{bottom:853.464726pt;}
.y215{bottom:853.465327pt;}
.y114{bottom:856.505786pt;}
.y5b{bottom:863.225177pt;}
.y143{bottom:863.225643pt;}
.y38{bottom:863.225779pt;}
.y9c{bottom:863.226013pt;}
.y1ee{bottom:865.305727pt;}
.yf5{bottom:865.945621pt;}
.y16b{bottom:865.945656pt;}
.y23f{bottom:868.025480pt;}
.y1a5{bottom:869.465686pt;}
.y214{bottom:869.466287pt;}
.y1{bottom:875.386720pt;}
.y5a{bottom:879.226137pt;}
.y142{bottom:879.226603pt;}
.y37{bottom:879.226739pt;}
.y9b{bottom:879.226806pt;}
.y1ed{bottom:881.306687pt;}
.yf4{bottom:881.946581pt;}
.y23e{bottom:883.866564pt;}
.y1a4{bottom:885.466646pt;}
.y213{bottom:885.467247pt;}
.y113{bottom:885.787823pt;}
.y59{bottom:895.227097pt;}
.y16a{bottom:895.227133pt;}
.y141{bottom:895.227563pt;}
.y36{bottom:895.227699pt;}
.y9a{bottom:895.227766pt;}
.y1ec{bottom:897.307647pt;}
.yf3{bottom:897.787665pt;}
.y23d{bottom:899.867524pt;}
.y1a3{bottom:901.307730pt;}
.y58{bottom:911.068180pt;}
.y169{bottom:911.068217pt;}
.y140{bottom:911.068646pt;}
.y35{bottom:911.068783pt;}
.y99{bottom:911.068850pt;}
.y1eb{bottom:913.148731pt;}
.y23c{bottom:915.868484pt;}
.y1a2{bottom:917.308690pt;}
.y112{bottom:925.150078pt;}
.y57{bottom:927.069140pt;}
.yf2{bottom:927.069141pt;}
.y168{bottom:927.069177pt;}
.y13f{bottom:927.069606pt;}
.y34{bottom:927.069743pt;}
.y98{bottom:927.069810pt;}
.y111{bottom:929.630040pt;}
.y56{bottom:942.910224pt;}
.yf1{bottom:942.910225pt;}
.y23b{bottom:942.910253pt;}
.y167{bottom:942.910260pt;}
.y13e{bottom:942.910690pt;}
.y33{bottom:942.910827pt;}
.y31{bottom:947.446333pt;}
.y55{bottom:958.911184pt;}
.yf0{bottom:958.911185pt;}
.y1a1{bottom:958.911186pt;}
.y23a{bottom:958.911213pt;}
.y166{bottom:958.911220pt;}
.y1ea{bottom:958.911343pt;}
.y13d{bottom:958.911650pt;}
.y32{bottom:958.911787pt;}
.y30{bottom:962.806440pt;}
.y2f{bottom:978.006067pt;}
.y2e{bottom:993.285933pt;}
.ycc{bottom:1010.567280pt;}
.y83{bottom:1011.444480pt;}
.y2d{bottom:1012.086147pt;}
.h15{height:0.000000pt;}
.h1a{height:0.169772pt;}
.h14{height:27.897074pt;}
.h8{height:31.882353pt;}
.h9{height:33.161576pt;}
.h7{height:35.867672pt;}
.h4{height:37.196125pt;}
.h27{height:38.046322pt;}
.h13{height:39.850553pt;}
.h1b{height:39.852938pt;}
.h5{height:39.852991pt;}
.h23{height:39.853433pt;}
.h10{height:39.853661pt;}
.hd{height:39.853678pt;}
.he{height:39.853714pt;}
.h19{height:39.853778pt;}
.h25{height:39.853968pt;}
.hf{height:39.855668pt;}
.h24{height:41.682131pt;}
.h3{height:45.528133pt;}
.h1d{height:47.098279pt;}
.h2{height:47.823669pt;}
.h1e{height:49.656779pt;}
.h17{height:49.658806pt;}
.h16{height:50.561327pt;}
.hc{height:52.448437pt;}
.h26{height:53.293317pt;}
.hb{height:53.857500pt;}
.h11{height:54.138221pt;}
.h1c{height:54.572647pt;}
.h12{height:55.854058pt;}
.h21{height:56.698748pt;}
.h6{height:57.388283pt;}
.h18{height:66.733644pt;}
.h22{height:68.218266pt;}
.h1{height:68.865692pt;}
.h20{height:76.336407pt;}
.h1f{height:89.137175pt;}
.ha{height:112.107031pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x40{left:83.765907pt;}
.xb{left:84.967363pt;}
.x14{left:90.406040pt;}
.x20{left:92.166013pt;}
.x34{left:97.285680pt;}
.x38{left:98.725747pt;}
.x2f{left:100.005573pt;}
.x39{left:104.005743pt;}
.x31{left:105.285997pt;}
.x41{left:112.325732pt;}
.xc{left:114.406453pt;}
.x2{left:117.286876pt;}
.x1{left:122.247067pt;}
.x28{left:127.847247pt;}
.x12{left:129.287640pt;}
.x3b{left:133.448147pt;}
.x35{left:136.488358pt;}
.xd{left:138.248017pt;}
.x22{left:149.448090pt;}
.x29{left:165.769869pt;}
.x23{left:182.090128pt;}
.xf{left:188.331202pt;}
.x33{left:192.811148pt;}
.x3a{left:202.572057pt;}
.x25{left:203.531495pt;}
.x21{left:206.732207pt;}
.x24{left:208.331796pt;}
.x4{left:210.092457pt;}
.x15{left:221.452969pt;}
.x26{left:222.892550pt;}
.x30{left:224.333313pt;}
.x2a{left:225.773760pt;}
.x5{left:237.613842pt;}
.x3{left:240.494281pt;}
.x3d{left:262.255253pt;}
.x9{left:270.895998pt;}
.x27{left:288.976755pt;}
.x7{left:292.337405pt;}
.x6{left:322.418943pt;}
.x8{left:324.339325pt;}
.xa{left:367.703020pt;}
.x11{left:384.243413pt;}
.xe{left:425.145217pt;}
.x3c{left:428.985838pt;}
.x3e{left:431.865843pt;}
.x37{left:438.906773pt;}
.x2d{left:441.466965pt;}
.x32{left:450.587480pt;}
.x3f{left:452.507214pt;}
.x2b{left:454.267707pt;}
.x2e{left:458.427836pt;}
.x13{left:471.067866pt;}
.x36{left:476.669067pt;}
.x1b{left:484.989124pt;}
.x16{left:512.190129pt;}
.x1c{left:514.750777pt;}
.x17{left:516.830154pt;}
.x10{left:520.963667pt;}
.x2c{left:527.072088pt;}
.x1d{left:536.192183pt;}
.x19{left:546.112685pt;}
.x18{left:551.713021pt;}
.x1e{left:555.232925pt;}
.x1a{left:567.554091pt;}
.x1f{left:610.116405pt;}
}




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