
    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_53fbf2ccde34b8e274b3c768.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_44827d4de9811aae76f714a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3ef27d5ec1b27122a98973d1.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_209e87965f0891e45fb62dbd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.793000;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_c126dbd5920bbd0e47a4e517.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_f0978dce0621ae205b0d3192.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5cddaf1bdf8b40c3901f53fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.044000;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_f381820ec1845d19a3c9de2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_605ed7ae22b9c9927b4280a5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5737637b786f6b8bc3ddae37.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.044000;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_3bea27b05d4fb7b579612d19.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8fbe05cf26e29e41ce647d53.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_1f92a1a4cca0a61dbcacc923.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d494d0345b5b1777f809f2da.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932000;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_c76d0755ebb5c74ba8e1aaaf.woff2')format("woff");}.fff{font-family:fff;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_760fea4603def6461ea5eb0f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_92ccfcea282eb631f27a6cab.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e4e7745a9d52e78f6bfdae84.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.644000;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_187b4d8119b3eb9dbc5ce342.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.820000;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_833cc1a39a90b492657c7312.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_9f967cd216850dd0ee31fc16.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.644000;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_03576f53ba32f4d8bebc6deb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.867000;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_67e2510714c3a4b72bc06e4c.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.022000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_444185479d2635ef631d2088.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_b39da9387bd3d437abd341f5.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_d02d7aa9130657d3904839e9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.451000;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:ff1b;src:url('chunks/assets/font_f4b4f14bc72beeaa30fd6f7a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.852000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.vd{vertical-align:-48.420000px;}
.v2{vertical-align:-22.854000px;}
.ve{vertical-align:-14.610000px;}
.v11{vertical-align:-12.552000px;}
.v5{vertical-align:-8.964000px;}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:5.814000px;}
.v9{vertical-align:14.778000px;}
.v1{vertical-align:21.690000px;}
.v8{vertical-align:24.684000px;}
.v6{vertical-align:30.054000px;}
.vb{vertical-align:39.462000px;}
.v12{vertical-align:41.004000px;}
.v7{vertical-align:48.420000px;}
.vc{vertical-align:63.198000px;}
.v4{vertical-align:95.808000px;}
.vf{vertical-align:97.788000px;}
.v10{vertical-align:120.150000px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000312px;}
.ls49{letter-spacing:0.000319px;}
.ls4d{letter-spacing:0.000557px;}
.ls48{letter-spacing:0.000780px;}
.ls14{letter-spacing:0.000843px;}
.ls43{letter-spacing:0.001578px;}
.ls4e{letter-spacing:0.001626px;}
.lsa{letter-spacing:0.002177px;}
.ls69{letter-spacing:0.002246px;}
.ls34{letter-spacing:0.002338px;}
.ls30{letter-spacing:0.003269px;}
.ls37{letter-spacing:0.003413px;}
.ls4b{letter-spacing:0.003980px;}
.ls1b{letter-spacing:0.004188px;}
.lsc{letter-spacing:0.004738px;}
.lsf{letter-spacing:0.005374px;}
.ls44{letter-spacing:0.319594px;}
.ls61{letter-spacing:2.265723px;}
.ls36{letter-spacing:2.414908px;}
.ls52{letter-spacing:2.674984px;}
.ls58{letter-spacing:2.680984px;}
.lsb{letter-spacing:2.983590px;}
.ls1{letter-spacing:2.985650px;}
.ls21{letter-spacing:2.987373px;}
.ls1c{letter-spacing:2.989140px;}
.lsd{letter-spacing:2.989590px;}
.ls1d{letter-spacing:2.990525px;}
.ls19{letter-spacing:2.993373px;}
.ls3c{letter-spacing:3.002207px;}
.ls0{letter-spacing:3.252356px;}
.ls2f{letter-spacing:3.422408px;}
.ls32{letter-spacing:4.685915px;}
.ls5a{letter-spacing:4.737748px;}
.ls45{letter-spacing:4.743748px;}
.ls33{letter-spacing:6.432479px;}
.ls28{letter-spacing:7.472450px;}
.ls38{letter-spacing:8.303139px;}
.ls2d{letter-spacing:9.962338px;}
.ls13{letter-spacing:9.964893px;}
.ls57{letter-spacing:12.288557px;}
.ls23{letter-spacing:13.275223px;}
.ls18{letter-spacing:13.278538px;}
.ls12{letter-spacing:13.284538px;}
.ls3d{letter-spacing:14.586300px;}
.ls56{letter-spacing:15.354557px;}
.ls53{letter-spacing:15.355559px;}
.ls46{letter-spacing:15.356004px;}
.ls4f{letter-spacing:15.357103px;}
.ls51{letter-spacing:15.357573px;}
.ls4a{letter-spacing:15.360780px;}
.ls50{letter-spacing:15.361336px;}
.ls47{letter-spacing:15.362004px;}
.ls6a{letter-spacing:15.912367px;}
.ls10{letter-spacing:15.972538px;}
.ls11{letter-spacing:16.268525px;}
.ls16{letter-spacing:16.271373px;}
.ls24{letter-spacing:16.273140px;}
.ls1a{letter-spacing:16.274525px;}
.ls66{letter-spacing:16.466316px;}
.ls22{letter-spacing:16.602538px;}
.ls63{letter-spacing:16.617617px;}
.ls3e{letter-spacing:17.582207px;}
.ls4c{letter-spacing:18.346293px;}
.ls5{letter-spacing:18.426622px;}
.ls4{letter-spacing:18.780622px;}
.ls65{letter-spacing:19.616316px;}
.ls64{letter-spacing:19.918200px;}
.ls2c{letter-spacing:20.174338px;}
.ls67{letter-spacing:20.488200px;}
.ls55{letter-spacing:21.100984px;}
.ls60{letter-spacing:21.293915px;}
.ls54{letter-spacing:21.412293px;}
.ls27{letter-spacing:22.368538px;}
.ls35{letter-spacing:22.394338px;}
.ls59{letter-spacing:23.041490px;}
.ls2b{letter-spacing:23.167140px;}
.ls17{letter-spacing:23.191140px;}
.ls8{letter-spacing:23.378685px;}
.ls29{letter-spacing:23.380200px;}
.ls20{letter-spacing:23.437140px;}
.ls2e{letter-spacing:23.600408px;}
.ls68{letter-spacing:23.778538px;}
.ls1f{letter-spacing:24.167373px;}
.ls31{letter-spacing:24.881915px;}
.ls2a{letter-spacing:25.051140px;}
.ls3{letter-spacing:25.296622px;}
.ls41{letter-spacing:25.442207px;}
.ls9{letter-spacing:26.012801px;}
.ls42{letter-spacing:27.642300px;}
.ls5d{letter-spacing:28.634207px;}
.ls5f{letter-spacing:29.881140px;}
.ls7{letter-spacing:29.883008px;}
.ls2{letter-spacing:30.623065px;}
.ls5e{letter-spacing:31.802208px;}
.ls3a{letter-spacing:33.204300px;}
.ls3b{letter-spacing:33.206400px;}
.ls26{letter-spacing:37.568208px;}
.ls3f{letter-spacing:41.628300px;}
.ls40{letter-spacing:41.630400px;}
.ls5c{letter-spacing:52.268400px;}
.ls5b{letter-spacing:52.272300px;}
.lse{letter-spacing:52.519590px;}
.ls1e{letter-spacing:228.576843px;}
.ls39{letter-spacing:421.894350px;}
.ls62{letter-spacing:522.093269px;}
.ls25{letter-spacing:634.829373px;}
.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;}
}
.ws85{word-spacing:-59.775600px;}
.ws9d{word-spacing:-44.592598px;}
.wsd0{word-spacing:-43.157983px;}
.wsc3{word-spacing:-43.027960px;}
.wsb5{word-spacing:-39.961452px;}
.ws99{word-spacing:-39.571447px;}
.ws97{word-spacing:-39.566786px;}
.ws83{word-spacing:-38.937826px;}
.wscd{word-spacing:-32.876580px;}
.ws70{word-spacing:-30.545332px;}
.ws5{word-spacing:-29.883022px;}
.ws9b{word-spacing:-29.881822px;}
.ws94{word-spacing:-28.955301px;}
.ws1e{word-spacing:-27.640385px;}
.wsf8{word-spacing:-20.213927px;}
.wsf9{word-spacing:-19.032551px;}
.wsfa{word-spacing:-17.837039px;}
.wsd2{word-spacing:-16.677392px;}
.ws5b{word-spacing:-16.551864px;}
.ws5d{word-spacing:-16.193210px;}
.ws4a{word-spacing:-16.133434px;}
.wsaa{word-spacing:-16.013883px;}
.ws30{word-spacing:-15.535678px;}
.ws3a{word-spacing:-15.416127px;}
.ws142{word-spacing:-15.375583px;}
.wsa1{word-spacing:-15.300828px;}
.wsa2{word-spacing:-15.300381px;}
.wsa3{word-spacing:-15.296576px;}
.ws8f{word-spacing:-15.057474px;}
.wsef{word-spacing:-14.948374px;}
.wscb{word-spacing:-14.878147px;}
.ws12e{word-spacing:-14.837599px;}
.ws8e{word-spacing:-14.519493px;}
.ws139{word-spacing:-14.514808px;}
.ws148{word-spacing:-14.461010px;}
.ws110{word-spacing:-14.459718px;}
.wsae{word-spacing:-14.436725px;}
.wsd6{word-spacing:-14.399942px;}
.ws77{word-spacing:-14.340166px;}
.ws140{word-spacing:-14.030623px;}
.ws43{word-spacing:-13.981513px;}
.ws126{word-spacing:-13.869228px;}
.ws11{word-spacing:-13.868609px;}
.ws25{word-spacing:-13.862399px;}
.ws149{word-spacing:-13.815429px;}
.wsde{word-spacing:-13.802186px;}
.ws29{word-spacing:-13.683603px;}
.ws80{word-spacing:-13.622859px;}
.wsf2{word-spacing:-13.563084px;}
.ws13f{word-spacing:-13.492639px;}
.wse1{word-spacing:-13.443532px;}
.ws15{word-spacing:-13.384445px;}
.ws10f{word-spacing:-13.323981px;}
.ws12f{word-spacing:-13.223647px;}
.ws28{word-spacing:-13.204781px;}
.ws8d{word-spacing:-13.084879px;}
.ws115{word-spacing:-13.025103px;}
.ws32{word-spacing:-12.965328px;}
.ws54{word-spacing:-12.905552px;}
.ws136{word-spacing:-12.900856px;}
.wsf7{word-spacing:-12.845776px;}
.ws131{word-spacing:-12.685663px;}
.ws10c{word-spacing:-12.606674px;}
.wse3{word-spacing:-12.427347px;}
.ws91{word-spacing:-12.367572px;}
.ws7a{word-spacing:-12.248020px;}
.wscc{word-spacing:-12.188245px;}
.ws64{word-spacing:-12.128469px;}
.ws5e{word-spacing:-12.068694px;}
.wsf4{word-spacing:-12.057790px;}
.ws8c{word-spacing:-12.014896px;}
.ws48{word-spacing:-12.008918px;}
.wse2{word-spacing:-11.889367px;}
.ws36{word-spacing:-11.829591px;}
.ws11e{word-spacing:-11.771090px;}
.ws7e{word-spacing:-11.769816px;}
.ws147{word-spacing:-11.717292px;}
.ws117{word-spacing:-11.650264px;}
.ws133{word-spacing:-11.555896px;}
.ws18{word-spacing:-11.555004px;}
.ws3d{word-spacing:-11.530713px;}
.ws122{word-spacing:-11.502098px;}
.wsd{word-spacing:-11.501585px;}
.ws73{word-spacing:-11.470938px;}
.wsf5{word-spacing:-11.411162px;}
.ws129{word-spacing:-11.394501px;}
.ws14{word-spacing:-11.393616px;}
.ws24{word-spacing:-11.352022px;}
.ws60{word-spacing:-11.351386px;}
.ws49{word-spacing:-11.291611px;}
.ws119{word-spacing:-11.231835px;}
.ws13d{word-spacing:-11.125509px;}
.ws40{word-spacing:-11.052508px;}
.ws44{word-spacing:-10.992733px;}
.ws4b{word-spacing:-10.873182px;}
.ws7d{word-spacing:-10.819384px;}
.wsf6{word-spacing:-10.813406px;}
.ws65{word-spacing:-10.753630px;}
.ws14a{word-spacing:-10.641324px;}
.wsf3{word-spacing:-10.574304px;}
.ws12d{word-spacing:-10.479928px;}
.wsc8{word-spacing:-10.454752px;}
.ws79{word-spacing:-10.335201px;}
.wse5{word-spacing:-10.275426px;}
.ws102{word-spacing:-10.155874px;}
.ws144{word-spacing:-10.103340px;}
.ws34{word-spacing:-10.096099px;}
.ws120{word-spacing:-10.049541px;}
.ws38{word-spacing:-10.036323px;}
.ws2a{word-spacing:-9.977247px;}
.ws2{word-spacing:-9.976948px;}
.ws4{word-spacing:-9.976649px;}
.ws35{word-spacing:-9.976548px;}
.wsd3{word-spacing:-9.962952px;}
.wsd1{word-spacing:-9.957897px;}
.wscf{word-spacing:-9.916772px;}
.ws124{word-spacing:-9.888146px;}
.ws5f{word-spacing:-9.856996px;}
.ws6d{word-spacing:-9.797221px;}
.wsdb{word-spacing:-9.677670px;}
.ws41{word-spacing:-9.617894px;}
.ws123{word-spacing:-9.565356px;}
.ws78{word-spacing:-9.564096px;}
.ws63{word-spacing:-9.558118px;}
.ws11c{word-spacing:-9.498343px;}
.ws3e{word-spacing:-9.438567px;}
.wsee{word-spacing:-9.378792px;}
.ws37{word-spacing:-9.319016px;}
.ws50{word-spacing:-9.259240px;}
.wsb1{word-spacing:-9.242565px;}
.ws6{word-spacing:-9.242207px;}
.ws1a{word-spacing:-9.241991px;}
.wsb0{word-spacing:-9.229536px;}
.wsb3{word-spacing:-9.208024px;}
.wsad{word-spacing:-9.199465px;}
.ws128{word-spacing:-9.197107px;}
.ws21{word-spacing:-9.195703px;}
.ws2c{word-spacing:-9.188767px;}
.ws55{word-spacing:-9.139689px;}
.ws8b{word-spacing:-9.079914px;}
.wsd9{word-spacing:-9.026116px;}
.ws12a{word-spacing:-8.973573px;}
.ws16{word-spacing:-8.919431px;}
.ws130{word-spacing:-8.865976px;}
.ws20{word-spacing:-8.865419px;}
.ws1f{word-spacing:-8.864139px;}
.ws76{word-spacing:-8.781036px;}
.ws88{word-spacing:-8.721260px;}
.ws89{word-spacing:-8.706381px;}
.ws145{word-spacing:-8.704581px;}
.ws6b{word-spacing:-8.661484px;}
.ws92{word-spacing:-8.601709px;}
.wse0{word-spacing:-8.541933px;}
.ws10b{word-spacing:-8.482158px;}
.ws31{word-spacing:-8.302831px;}
.wsfb{word-spacing:-8.243055px;}
.ws114{word-spacing:-8.123504px;}
.ws109{word-spacing:-8.063728px;}
.ws10{word-spacing:-8.058479px;}
.ws11f{word-spacing:-8.005202px;}
.ws11b{word-spacing:-8.003953px;}
.ws51{word-spacing:-7.944177px;}
.ws135{word-spacing:-7.897605px;}
.ws96{word-spacing:-7.824626px;}
.ws95{word-spacing:-7.815572px;}
.ws9a{word-spacing:-7.797958px;}
.ws137{word-spacing:-7.790008px;}
.ws2f{word-spacing:-7.705075px;}
.ws66{word-spacing:-7.645299px;}
.ws57{word-spacing:-7.585524px;}
.ws2d{word-spacing:-7.525748px;}
.wsa7{word-spacing:-7.465972px;}
.ws13b{word-spacing:-7.413420px;}
.wsa8{word-spacing:-7.406197px;}
.wsfc{word-spacing:-7.286646px;}
.ws134{word-spacing:-7.252024px;}
.ws67{word-spacing:-7.226870px;}
.ws13e{word-spacing:-7.198226px;}
.ws4e{word-spacing:-7.167094px;}
.ws42{word-spacing:-7.107319px;}
.wsa4{word-spacing:-7.047543px;}
.ws56{word-spacing:-6.987768px;}
.ws138{word-spacing:-6.983032px;}
.ws19{word-spacing:-6.875290px;}
.wsff{word-spacing:-6.868216px;}
.wsdc{word-spacing:-6.808441px;}
.wsc{word-spacing:-6.766999px;}
.wsac{word-spacing:-6.748665px;}
.wse7{word-spacing:-6.629114px;}
.ws10d{word-spacing:-6.569338px;}
.wsf{word-spacing:-6.552191px;}
.ws6c{word-spacing:-6.509563px;}
.ws93{word-spacing:-6.502670px;}
.ws90{word-spacing:-6.449787px;}
.wsdf{word-spacing:-6.390012px;}
.ws75{word-spacing:-6.210685px;}
.wsda{word-spacing:-6.150909px;}
.wsa{word-spacing:-6.014339px;}
.wsed{word-spacing:-5.977560px;}
.wsca{word-spacing:-5.971582px;}
.ws6f{word-spacing:-5.911807px;}
.ws10a{word-spacing:-5.792256px;}
.ws33{word-spacing:-5.732480px;}
.ws7b{word-spacing:-5.493378px;}
.wsf1{word-spacing:-5.433602px;}
.ws5c{word-spacing:-5.373826px;}
.wse{word-spacing:-5.314991px;}
.ws45{word-spacing:-5.314051px;}
.ws146{word-spacing:-5.261484px;}
.ws53{word-spacing:-5.254275px;}
.ws3c{word-spacing:-5.194500px;}
.ws121{word-spacing:-5.153887px;}
.ws86{word-spacing:-5.134724px;}
.ws13c{word-spacing:-5.100088px;}
.wse8{word-spacing:-5.080926px;}
.wsfe{word-spacing:-5.015173px;}
.wsec{word-spacing:-4.955397px;}
.ws132{word-spacing:-4.938693px;}
.ws4f{word-spacing:-4.895622px;}
.ws3f{word-spacing:-4.835846px;}
.ws141{word-spacing:-4.777298px;}
.ws39{word-spacing:-4.596744px;}
.wsdd{word-spacing:-4.538268px;}
.ws7c{word-spacing:-4.536968px;}
.ws127{word-spacing:-4.508306px;}
.wsc7{word-spacing:-4.417417px;}
.ws125{word-spacing:-4.293112px;}
.wsc9{word-spacing:-4.238090px;}
.ws9f{word-spacing:-4.178314px;}
.ws13{word-spacing:-4.077629px;}
.ws116{word-spacing:-3.998988px;}
.wse6{word-spacing:-3.939212px;}
.wsce{word-spacing:-3.819661px;}
.ws71{word-spacing:-3.759885px;}
.ws6e{word-spacing:-3.700110px;}
.ws12{word-spacing:-3.647476px;}
.wsd7{word-spacing:-3.640334px;}
.wsfd{word-spacing:-3.580558px;}
.wsab{word-spacing:-3.461007px;}
.ws52{word-spacing:-3.401232px;}
.ws12b{word-spacing:-3.270943px;}
.ws101{word-spacing:-3.221905px;}
.ws118{word-spacing:-3.162129px;}
.ws113{word-spacing:-3.102354px;}
.ws7f{word-spacing:-2.803476px;}
.ws26{word-spacing:-2.743930px;}
.ws100{word-spacing:-2.743700px;}
.wsea{word-spacing:-2.683924px;}
.wseb{word-spacing:-2.570351px;}
.wsd4{word-spacing:-2.564373px;}
.wsa5{word-spacing:-2.539028px;}
.wsb{word-spacing:-2.463695px;}
.ws46{word-spacing:-2.444822px;}
.ws17{word-spacing:-2.410330px;}
.ws2e{word-spacing:-2.385046px;}
.ws1c{word-spacing:-2.356319px;}
.ws1d{word-spacing:-2.336515px;}
.ws13a{word-spacing:-2.302572px;}
.wsa9{word-spacing:-2.265495px;}
.wse9{word-spacing:-2.205720px;}
.ws61{word-spacing:-2.145944px;}
.ws12c{word-spacing:-2.033580px;}
.ws11a{word-spacing:-1.934547px;}
.wsa6{word-spacing:-1.906842px;}
.ws68{word-spacing:-1.667739px;}
.ws143{word-spacing:-1.656991px;}
.ws5a{word-spacing:-1.548188px;}
.ws11d{word-spacing:-1.387999px;}
.wse4{word-spacing:-1.309086px;}
.ws74{word-spacing:-1.249310px;}
.ws69{word-spacing:-0.950432px;}
.ws27{word-spacing:-0.532263px;}
.ws10e{word-spacing:-0.412452px;}
.ws82{word-spacing:-0.059776px;}
.ws6a{word-spacing:-0.053798px;}
.ws7{word-spacing:-0.053796px;}
.ws3{word-spacing:-0.041844px;}
.ws81{word-spacing:-0.041843px;}
.wsb4{word-spacing:-0.005299px;}
.wsc5{word-spacing:-0.004917px;}
.ws2b{word-spacing:0.000000px;}
.ws23{word-spacing:0.005978px;}
.ws3b{word-spacing:0.065753px;}
.ws9e{word-spacing:0.125529px;}
.ws4d{word-spacing:1.261265px;}
.ws59{word-spacing:1.321041px;}
.ws4c{word-spacing:1.380816px;}
.ws58{word-spacing:2.098124px;}
.wsa0{word-spacing:2.397002px;}
.ws107{word-spacing:8.134318px;}
.wsb9{word-spacing:9.145728px;}
.ws72{word-spacing:10.544486px;}
.wsc4{word-spacing:12.211584px;}
.wsbe{word-spacing:12.212237px;}
.wsbd{word-spacing:13.129127px;}
.wsb6{word-spacing:15.283584px;}
.wsb7{word-spacing:16.201127px;}
.ws84{word-spacing:16.230670px;}
.ws9c{word-spacing:16.557841px;}
.ws105{word-spacing:16.677504px;}
.wsf0{word-spacing:17.454475px;}
.wsbb{word-spacing:18.351502px;}
.ws111{word-spacing:18.365570px;}
.ws103{word-spacing:18.371570px;}
.wsc6{word-spacing:18.377931px;}
.wsc1{word-spacing:18.378125px;}
.wsb8{word-spacing:18.392369px;}
.ws8a{word-spacing:19.554670px;}
.ws106{word-spacing:21.142771px;}
.ws98{word-spacing:22.002763px;}
.ws62{word-spacing:23.169178px;}
.wsc0{word-spacing:24.457926px;}
.wsb2{word-spacing:27.590628px;}
.wsaf{word-spacing:27.592420px;}
.ws1b{word-spacing:27.619242px;}
.ws87{word-spacing:27.720670px;}
.ws8{word-spacing:28.189319px;}
.ws47{word-spacing:29.624986px;}
.ws9{word-spacing:29.845661px;}
.ws0{word-spacing:31.417740px;}
.ws1{word-spacing:31.503902px;}
.wsd8{word-spacing:34.376948px;}
.ws112{word-spacing:48.472358px;}
.ws104{word-spacing:48.526157px;}
.ws108{word-spacing:80.321011px;}
.ws22{word-spacing:80.624520px;}
.wsd5{word-spacing:80.625869px;}
.wsba{word-spacing:82.914701px;}
.wsbc{word-spacing:165.834701px;}
.wsbf{word-spacing:248.754701px;}
.wsc2{word-spacing:331.669083px;}
._11{margin-left:-32.579282px;}
._18{margin-left:-9.959462px;}
._a{margin-left:-5.640452px;}
._2{margin-left:-4.370223px;}
._0{margin-left:-2.668356px;}
._3{margin-left:-1.559923px;}
._4{width:1.558201px;}
._1{width:2.668356px;}
._6{width:3.717020px;}
._16{width:5.129908px;}
._19{width:7.698520px;}
._9{width:9.982525px;}
._5{width:15.290855px;}
._1a{width:16.416744px;}
._13{width:17.518300px;}
._d{width:18.873301px;}
._b{width:20.911428px;}
._1b{width:22.189280px;}
._f{width:23.311912px;}
._14{width:24.598949px;}
._15{width:26.398552px;}
._12{width:27.527013px;}
._28{width:29.858112px;}
._26{width:30.869506px;}
._e{width:32.268792px;}
._27{width:36.859783px;}
._7{width:41.356850px;}
._17{width:49.631063px;}
._25{width:64.611878px;}
._10{width:68.741940px;}
._23{width:73.650010px;}
._c{width:80.697600px;}
._20{width:89.574336px;}
._24{width:127.340813px;}
._1e{width:135.434492px;}
._21{width:143.265139px;}
._1f{width:156.576988px;}
._8{width:170.648525px;}
._1d{width:223.042752px;}
._22{width:238.967078px;}
._1c{width:285.403262px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.887800px;}
.fsb{font-size:35.865600px;}
.fs3{font-size:35.868000px;}
.fs9{font-size:41.842800px;}
.fs2{font-size:41.844000px;}
.fs4{font-size:53.796000px;}
.fs6{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:59.778000px;}
.fs5{font-size:71.730000px;}
.fs8{font-size:71.731200px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y89{bottom:190.254000px;}
.y4f{bottom:193.615500px;}
.y27{bottom:193.617000px;}
.y88{bottom:199.054500px;}
.y8a{bottom:205.114500px;}
.y87{bottom:208.809000px;}
.y15c{bottom:210.054000px;}
.y26{bottom:211.549500px;}
.yd3{bottom:223.455000px;}
.y15b{bottom:226.492500px;}
.y25{bottom:229.482000px;}
.y138{bottom:229.768500px;}
.yd2{bottom:231.063000px;}
.yd1{bottom:241.314000px;}
.y15a{bottom:243.058500px;}
.y24{bottom:247.414500px;}
.y137{bottom:247.701000px;}
.y86{bottom:249.045000px;}
.y105{bottom:254.763000px;}
.y159{bottom:259.497000px;}
.y188{bottom:259.576500px;}
.y23{bottom:265.347000px;}
.y136{bottom:265.633500px;}
.y85{bottom:266.977500px;}
.y187{bottom:276.015000px;}
.y158{bottom:276.063000px;}
.yd0{bottom:280.303500px;}
.y4e{bottom:283.279500px;}
.y22{bottom:283.281000px;}
.y135{bottom:283.566000px;}
.y84{bottom:284.910000px;}
.y11b{bottom:284.922000px;}
.y186{bottom:292.453500px;}
.y157{bottom:292.501500px;}
.yf3{bottom:294.978000px;}
.ycf{bottom:298.236000px;}
.y21{bottom:301.213500px;}
.y134{bottom:301.500000px;}
.y83{bottom:302.844000px;}
.y11a{bottom:302.856000px;}
.y185{bottom:308.892000px;}
.y156{bottom:309.067500px;}
.yf2{bottom:312.910500px;}
.yce{bottom:316.170000px;}
.y20{bottom:319.146000px;}
.y133{bottom:319.432500px;}
.y82{bottom:320.776500px;}
.y119{bottom:320.788500px;}
.y184{bottom:325.330500px;}
.y155{bottom:325.506000px;}
.y104{bottom:327.156000px;}
.ycd{bottom:334.102500px;}
.yae{bottom:337.078500px;}
.y132{bottom:337.365000px;}
.y6b{bottom:338.388000px;}
.y81{bottom:338.709000px;}
.y118{bottom:338.721000px;}
.yf1{bottom:340.633500px;}
.y183{bottom:341.769000px;}
.y154{bottom:341.944500px;}
.ycc{bottom:352.035000px;}
.y4d{bottom:352.960500px;}
.y1f{bottom:353.446500px;}
.yad{bottom:355.011000px;}
.y131{bottom:355.297500px;}
.y6a{bottom:356.320500px;}
.y80{bottom:356.641500px;}
.y117{bottom:356.653500px;}
.y182{bottom:358.207500px;}
.y153{bottom:358.510500px;}
.ycb{bottom:369.967500px;}
.yac{bottom:372.943500px;}
.y130{bottom:373.516500px;}
.y4c{bottom:373.881000px;}
.y69{bottom:374.253000px;}
.y116{bottom:374.586000px;}
.y181{bottom:374.644500px;}
.y152{bottom:374.949000px;}
.y7f{bottom:375.667500px;}
.yf0{bottom:383.302500px;}
.yca{bottom:387.900000px;}
.y180{bottom:391.083000px;}
.y12f{bottom:391.449000px;}
.y151{bottom:391.515000px;}
.yab{bottom:391.891500px;}
.y68{bottom:392.185500px;}
.y115{bottom:392.518500px;}
.y7e{bottom:394.692000px;}
.yef{bottom:401.235000px;}
.y1e{bottom:402.237000px;}
.yc9{bottom:405.832500px;}
.y17f{bottom:407.521500px;}
.y150{bottom:407.953500px;}
.y12e{bottom:409.381500px;}
.yaa{bottom:409.824000px;}
.y114{bottom:410.452500px;}
.y67{bottom:411.427500px;}
.y7d{bottom:412.624500px;}
.y1d{bottom:418.675500px;}
.yee{bottom:419.167500px;}
.y4b{bottom:419.652000px;}
.yc8{bottom:423.766500px;}
.y17e{bottom:423.960000px;}
.y14f{bottom:424.519500px;}
.y12d{bottom:427.315500px;}
.ya9{bottom:427.756500px;}
.y66{bottom:429.360000px;}
.y7c{bottom:430.558500px;}
.y1c{bottom:435.114000px;}
.yed{bottom:437.100000px;}
.y4a{bottom:437.584500px;}
.y17d{bottom:440.398500px;}
.y14e{bottom:440.958000px;}
.yc7{bottom:441.699000px;}
.y12c{bottom:445.248000px;}
.ya8{bottom:445.689000px;}
.y65{bottom:447.292500px;}
.y7b{bottom:448.491000px;}
.yec{bottom:455.032500px;}
.y49{bottom:455.517000px;}
.y17c{bottom:456.837000px;}
.y14d{bottom:457.524000px;}
.yc6{bottom:459.631500px;}
.y12b{bottom:463.180500px;}
.ya7{bottom:464.635500px;}
.y7a{bottom:466.423500px;}
.y1b{bottom:467.598000px;}
.y113{bottom:471.480000px;}
.yeb{bottom:472.965000px;}
.y17b{bottom:473.275500px;}
.y48{bottom:473.449500px;}
.y14c{bottom:473.962500px;}
.yc5{bottom:477.564000px;}
.ya6{bottom:482.569500px;}
.y1a{bottom:484.036500px;}
.y79{bottom:484.356000px;}
.y112{bottom:487.918500px;}
.y64{bottom:489.703500px;}
.y17a{bottom:489.714000px;}
.y14b{bottom:490.401000px;}
.yea{bottom:490.899000px;}
.y47{bottom:491.382000px;}
.yc4{bottom:495.496500px;}
.y19{bottom:500.475000px;}
.y12a{bottom:500.478000px;}
.ya5{bottom:500.502000px;}
.y78{bottom:502.288500px;}
.y179{bottom:506.152500px;}
.y14a{bottom:506.839500px;}
.ye9{bottom:508.831500px;}
.y46{bottom:509.316000px;}
.y63{bottom:510.624000px;}
.y111{bottom:511.857000px;}
.yc3{bottom:513.429000px;}
.y18{bottom:516.913500px;}
.ya4{bottom:518.434500px;}
.y77{bottom:521.314500px;}
.y178{bottom:522.591000px;}
.y149{bottom:523.405500px;}
.ye8{bottom:526.764000px;}
.yc2{bottom:531.363000px;}
.y17{bottom:533.352000px;}
.y177{bottom:539.028000px;}
.y76{bottom:539.247000px;}
.y45{bottom:539.628000px;}
.y148{bottom:539.844000px;}
.ye7{bottom:544.696500px;}
.y110{bottom:547.794000px;}
.ya0{bottom:548.548500px;}
.yc1{bottom:549.295500px;}
.y16{bottom:549.790500px;}
.y176{bottom:555.466500px;}
.y9f{bottom:556.156500px;}
.y147{bottom:556.282500px;}
.y75{bottom:557.179500px;}
.y44{bottom:557.562000px;}
.ye6{bottom:562.629000px;}
.y62{bottom:564.990000px;}
.y15{bottom:566.229000px;}
.y9e{bottom:566.407500px;}
.ya2{bottom:569.545500px;}
.y175{bottom:571.905000px;}
.y146{bottom:572.848500px;}
.y43{bottom:574.981500px;}
.y74{bottom:575.112000px;}
.ya3{bottom:576.517500px;}
.yc0{bottom:579.108000px;}
.ye5{bottom:580.561500px;}
.y14{bottom:582.667500px;}
.y61{bottom:582.922500px;}
.y174{bottom:588.343500px;}
.y145{bottom:589.287000px;}
.y129{bottom:589.827000px;}
.y42{bottom:592.914000px;}
.y73{bottom:593.046000px;}
.ya1{bottom:596.445000px;}
.ye4{bottom:598.495500px;}
.y13{bottom:599.106000px;}
.y60{bottom:600.855000px;}
.y173{bottom:604.782000px;}
.y144{bottom:605.725500px;}
.y128{bottom:606.265500px;}
.y103{bottom:609.600000px;}
.y72{bottom:610.978500px;}
.y12{bottom:615.544500px;}
.ye3{bottom:616.428000px;}
.y5f{bottom:618.787500px;}
.y9d{bottom:620.526000px;}
.y172{bottom:621.220500px;}
.y143{bottom:622.164000px;}
.y41{bottom:622.714500px;}
.y102{bottom:627.532500px;}
.y71{bottom:628.911000px;}
.y127{bottom:630.204000px;}
.y11{bottom:631.981500px;}
.ye2{bottom:634.360500px;}
.y5e{bottom:636.720000px;}
.y171{bottom:637.659000px;}
.y9c{bottom:638.458500px;}
.y142{bottom:638.730000px;}
.y10f{bottom:638.733000px;}
.y40{bottom:640.647000px;}
.y101{bottom:647.736000px;}
.y10{bottom:648.420000px;}
.ye1{bottom:652.293000px;}
.y170{bottom:654.097500px;}
.y5d{bottom:654.654000px;}
.y141{bottom:655.168500px;}
.y10e{bottom:655.171500px;}
.y9b{bottom:656.391000px;}
.y100{bottom:657.987000px;}
.y3f{bottom:658.579500px;}
.y126{bottom:663.526500px;}
.ybf{bottom:663.822000px;}
.y70{bottom:664.261500px;}
.yf{bottom:664.858500px;}
.ye0{bottom:670.225500px;}
.y16f{bottom:670.536000px;}
.y5c{bottom:673.894500px;}
.y9a{bottom:674.323500px;}
.y3e{bottom:676.513500px;}
.y10d{bottom:679.111500px;}
.ybe{bottom:680.260500px;}
.ye{bottom:681.297000px;}
.y16e{bottom:686.974500px;}
.ydf{bottom:688.158000px;}
.y140{bottom:690.178500px;}
.y5b{bottom:691.828500px;}
.y99{bottom:693.271500px;}
.y3d{bottom:694.446000px;}
.ybd{bottom:696.699000px;}
.yff{bottom:696.750000px;}
.yd{bottom:697.735500px;}
.y16d{bottom:703.411500px;}
.yde{bottom:706.092000px;}
.y5a{bottom:709.761000px;}
.y98{bottom:711.204000px;}
.y3c{bottom:712.378500px;}
.ybc{bottom:713.137500px;}
.yc{bottom:714.174000px;}
.yfe{bottom:714.682500px;}
.y10c{bottom:715.047000px;}
.y16c{bottom:719.850000px;}
.ydd{bottom:724.024500px;}
.y59{bottom:727.693500px;}
.y97{bottom:729.136500px;}
.ybb{bottom:729.574500px;}
.y3b{bottom:730.311000px;}
.yb{bottom:730.612500px;}
.yfd{bottom:732.615000px;}
.y16b{bottom:736.288500px;}
.y13f{bottom:738.639000px;}
.ydc{bottom:741.957000px;}
.y58{bottom:745.626000px;}
.yba{bottom:746.013000px;}
.ya{bottom:747.051000px;}
.y96{bottom:747.069000px;}
.y3a{bottom:748.243500px;}
.y6f{bottom:748.543500px;}
.y125{bottom:750.397500px;}
.yfc{bottom:750.547500px;}
.y16a{bottom:752.727000px;}
.y13e{bottom:756.571500px;}
.ydb{bottom:759.889500px;}
.yb9{bottom:762.451500px;}
.y57{bottom:763.558500px;}
.y10b{bottom:764.535000px;}
.y95{bottom:765.001500px;}
.y39{bottom:766.176000px;}
.y124{bottom:766.836000px;}
.yfb{bottom:768.480000px;}
.y169{bottom:769.165500px;}
.y13d{bottom:774.504000px;}
.yda{bottom:777.822000px;}
.yb8{bottom:778.890000px;}
.y56{bottom:781.491000px;}
.y10a{bottom:782.467500px;}
.y94{bottom:782.935500px;}
.y38{bottom:784.110000px;}
.y168{bottom:785.604000px;}
.yfa{bottom:786.412500px;}
.y123{bottom:790.776000px;}
.y13c{bottom:792.436500px;}
.yb7{bottom:795.328500px;}
.yd9{bottom:795.756000px;}
.y55{bottom:799.425000px;}
.y109{bottom:800.400000px;}
.y93{bottom:800.868000px;}
.y37{bottom:802.042500px;}
.yf9{bottom:803.194500px;}
.y9{bottom:803.953500px;}
.y13b{bottom:810.369000px;}
.yb6{bottom:811.767000px;}
.y108{bottom:818.332500px;}
.y167{bottom:818.481000px;}
.y54{bottom:818.665500px;}
.y92{bottom:819.814500px;}
.y36{bottom:819.975000px;}
.yf8{bottom:821.127000px;}
.yd8{bottom:823.479000px;}
.y8{bottom:826.105500px;}
.y122{bottom:826.711500px;}
.yb5{bottom:828.205500px;}
.y13a{bottom:828.303000px;}
.y166{bottom:834.919500px;}
.y107{bottom:836.265000px;}
.y53{bottom:836.599500px;}
.y7{bottom:836.830500px;}
.y91{bottom:837.747000px;}
.y35{bottom:837.907500px;}
.yf7{bottom:839.059500px;}
.yb4{bottom:844.644000px;}
.y139{bottom:846.235500px;}
.y165{bottom:851.358000px;}
.y106{bottom:854.197500px;}
.y52{bottom:854.532000px;}
.y34{bottom:855.840000px;}
.y90{bottom:856.693500px;}
.yf6{bottom:856.992000px;}
.y6{bottom:858.982500px;}
.yb3{bottom:861.082500px;}
.yd7{bottom:866.146500px;}
.y164{bottom:867.796500px;}
.y51{bottom:872.464500px;}
.y121{bottom:873.487500px;}
.y33{bottom:873.774000px;}
.y8f{bottom:874.627500px;}
.yf5{bottom:874.924500px;}
.yb2{bottom:877.521000px;}
.yd6{bottom:884.079000px;}
.y163{bottom:884.233500px;}
.y5{bottom:884.589000px;}
.y50{bottom:890.397000px;}
.y120{bottom:891.420000px;}
.y32{bottom:891.706500px;}
.y8e{bottom:892.560000px;}
.yf4{bottom:892.858500px;}
.yb1{bottom:893.958000px;}
.y162{bottom:900.672000px;}
.yd5{bottom:902.011500px;}
.y4{bottom:902.521500px;}
.y11f{bottom:909.352500px;}
.y31{bottom:909.639000px;}
.yb0{bottom:910.396500px;}
.y161{bottom:917.110500px;}
.y8d{bottom:919.821000px;}
.y3{bottom:920.455500px;}
.y8c{bottom:923.515500px;}
.y6e{bottom:925.386000px;}
.y11e{bottom:927.285000px;}
.y30{bottom:927.571500px;}
.yaf{bottom:929.158500px;}
.y160{bottom:933.549000px;}
.yd4{bottom:935.713500px;}
.y6d{bottom:943.318500px;}
.y11d{bottom:945.217500px;}
.y2f{bottom:945.504000px;}
.y15f{bottom:949.987500px;}
.y8b{bottom:959.547000px;}
.y6c{bottom:962.344500px;}
.y11c{bottom:963.151500px;}
.y2e{bottom:963.436500px;}
.y15e{bottom:966.426000px;}
.y2{bottom:972.403500px;}
.y2d{bottom:981.370500px;}
.y15d{bottom:982.864500px;}
.y1{bottom:999.303000px;}
.y2c{bottom:1038.157500px;}
.y2b{bottom:1084.752000px;}
.y2a{bottom:1110.574500px;}
.y29{bottom:1136.397000px;}
.y28{bottom:1162.219500px;}
.h1a{height:2.988780px;}
.h4{height:23.852220px;}
.h19{height:30.001288px;}
.h10{height:31.382100px;}
.h1c{height:32.339476px;}
.h5{height:37.442016px;}
.h1f{height:37.712678px;}
.h6{height:41.584308px;}
.ha{height:41.586163px;}
.hd{height:41.902696px;}
.he{height:44.831700px;}
.hb{height:44.891476px;}
.h8{height:44.893278px;}
.h7{height:50.282730px;}
.hc{height:50.283571px;}
.h13{height:51.697288px;}
.h2{height:53.073000px;}
.h3{height:53.079000px;}
.h15{height:54.679288px;}
.h16{height:59.669476px;}
.h1{height:60.425352px;}
.h14{height:60.449476px;}
.h9{height:61.286112px;}
.h11{height:61.436100px;}
.h12{height:70.844100px;}
.h1d{height:83.239330px;}
.h17{height:85.265700px;}
.h1e{height:85.895476px;}
.hf{height:98.796780px;}
.h18{height:100.776780px;}
.h1b{height:123.138780px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:54.327000px;}
.xa{left:202.147500px;}
.x22{left:207.982500px;}
.x2d{left:209.056500px;}
.xd{left:211.489500px;}
.x2{left:212.994000px;}
.x3{left:214.341000px;}
.xc{left:224.563500px;}
.xe{left:227.551500px;}
.xf{left:232.401000px;}
.x11{left:240.196500px;}
.x28{left:242.734500px;}
.x1{left:244.021500px;}
.x29{left:246.031500px;}
.x6{left:247.771500px;}
.x2b{left:252.255000px;}
.x8{left:273.655500px;}
.x13{left:278.382000px;}
.x12{left:288.804000px;}
.x4{left:297.333000px;}
.x26{left:299.641500px;}
.x2a{left:301.677000px;}
.x2c{left:303.808500px;}
.x7{left:316.801500px;}
.x14{left:326.623500px;}
.x23{left:351.762000px;}
.x10{left:354.172500px;}
.x5{left:361.825500px;}
.x9{left:369.745500px;}
.x18{left:379.870500px;}
.x27{left:392.637000px;}
.x1a{left:432.828000px;}
.x24{left:454.891500px;}
.x1b{left:457.351500px;}
.x25{left:479.415000px;}
.x1c{left:486.090000px;}
.x15{left:487.377000px;}
.x1e{left:500.959500px;}
.x1d{left:508.152000px;}
.x19{left:516.388500px;}
.x16{left:519.867000px;}
.x1f{left:527.100000px;}
.x20{left:553.806000px;}
.x21{left:583.246500px;}
.x17{left:585.430500px;}
@media print{
.vd{vertical-align:-43.040000pt;}
.v2{vertical-align:-20.314667pt;}
.ve{vertical-align:-12.986667pt;}
.v11{vertical-align:-11.157333pt;}
.v5{vertical-align:-7.968000pt;}
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.168000pt;}
.v9{vertical-align:13.136000pt;}
.v1{vertical-align:19.280000pt;}
.v8{vertical-align:21.941333pt;}
.v6{vertical-align:26.714667pt;}
.vb{vertical-align:35.077333pt;}
.v12{vertical-align:36.448000pt;}
.v7{vertical-align:43.040000pt;}
.vc{vertical-align:56.176000pt;}
.v4{vertical-align:85.162667pt;}
.vf{vertical-align:86.922667pt;}
.v10{vertical-align:106.800000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000278pt;}
.ls49{letter-spacing:0.000283pt;}
.ls4d{letter-spacing:0.000495pt;}
.ls48{letter-spacing:0.000693pt;}
.ls14{letter-spacing:0.000749pt;}
.ls43{letter-spacing:0.001403pt;}
.ls4e{letter-spacing:0.001446pt;}
.lsa{letter-spacing:0.001935pt;}
.ls69{letter-spacing:0.001997pt;}
.ls34{letter-spacing:0.002079pt;}
.ls30{letter-spacing:0.002906pt;}
.ls37{letter-spacing:0.003033pt;}
.ls4b{letter-spacing:0.003538pt;}
.ls1b{letter-spacing:0.003723pt;}
.lsc{letter-spacing:0.004212pt;}
.lsf{letter-spacing:0.004777pt;}
.ls44{letter-spacing:0.284083pt;}
.ls61{letter-spacing:2.013976pt;}
.ls36{letter-spacing:2.146585pt;}
.ls52{letter-spacing:2.377764pt;}
.ls58{letter-spacing:2.383097pt;}
.lsb{letter-spacing:2.652080pt;}
.ls1{letter-spacing:2.653911pt;}
.ls21{letter-spacing:2.655443pt;}
.ls1c{letter-spacing:2.657014pt;}
.lsd{letter-spacing:2.657414pt;}
.ls1d{letter-spacing:2.658245pt;}
.ls19{letter-spacing:2.660776pt;}
.ls3c{letter-spacing:2.668629pt;}
.ls0{letter-spacing:2.890983pt;}
.ls2f{letter-spacing:3.042140pt;}
.ls32{letter-spacing:4.165258pt;}
.ls5a{letter-spacing:4.211331pt;}
.ls45{letter-spacing:4.216665pt;}
.ls33{letter-spacing:5.717759pt;}
.ls28{letter-spacing:6.642178pt;}
.ls38{letter-spacing:7.380568pt;}
.ls2d{letter-spacing:8.855412pt;}
.ls13{letter-spacing:8.857682pt;}
.ls57{letter-spacing:10.923162pt;}
.ls23{letter-spacing:11.800199pt;}
.ls18{letter-spacing:11.803145pt;}
.ls12{letter-spacing:11.808479pt;}
.ls3d{letter-spacing:12.965600pt;}
.ls56{letter-spacing:13.648495pt;}
.ls53{letter-spacing:13.649386pt;}
.ls46{letter-spacing:13.649782pt;}
.ls4f{letter-spacing:13.650758pt;}
.ls51{letter-spacing:13.651176pt;}
.ls4a{letter-spacing:13.654026pt;}
.ls50{letter-spacing:13.654521pt;}
.ls47{letter-spacing:13.655115pt;}
.ls6a{letter-spacing:14.144326pt;}
.ls10{letter-spacing:14.197812pt;}
.ls11{letter-spacing:14.460911pt;}
.ls16{letter-spacing:14.463443pt;}
.ls24{letter-spacing:14.465014pt;}
.ls1a{letter-spacing:14.466245pt;}
.ls66{letter-spacing:14.636725pt;}
.ls22{letter-spacing:14.757812pt;}
.ls63{letter-spacing:14.771215pt;}
.ls3e{letter-spacing:15.628629pt;}
.ls4c{letter-spacing:16.307816pt;}
.ls5{letter-spacing:16.379219pt;}
.ls4{letter-spacing:16.693886pt;}
.ls65{letter-spacing:17.436725pt;}
.ls64{letter-spacing:17.705067pt;}
.ls2c{letter-spacing:17.932745pt;}
.ls67{letter-spacing:18.211733pt;}
.ls55{letter-spacing:18.756431pt;}
.ls60{letter-spacing:18.927925pt;}
.ls54{letter-spacing:19.033149pt;}
.ls27{letter-spacing:19.883145pt;}
.ls35{letter-spacing:19.906079pt;}
.ls59{letter-spacing:20.481324pt;}
.ls2b{letter-spacing:20.593014pt;}
.ls17{letter-spacing:20.614347pt;}
.ls8{letter-spacing:20.781053pt;}
.ls29{letter-spacing:20.782400pt;}
.ls20{letter-spacing:20.833014pt;}
.ls2e{letter-spacing:20.978140pt;}
.ls68{letter-spacing:21.136479pt;}
.ls1f{letter-spacing:21.482109pt;}
.ls31{letter-spacing:22.117258pt;}
.ls2a{letter-spacing:22.267680pt;}
.ls3{letter-spacing:22.485886pt;}
.ls41{letter-spacing:22.615295pt;}
.ls9{letter-spacing:23.122490pt;}
.ls42{letter-spacing:24.570933pt;}
.ls5d{letter-spacing:25.452629pt;}
.ls5f{letter-spacing:26.561014pt;}
.ls7{letter-spacing:26.562673pt;}
.ls2{letter-spacing:27.220502pt;}
.ls5e{letter-spacing:28.268630pt;}
.ls3a{letter-spacing:29.514933pt;}
.ls3b{letter-spacing:29.516800pt;}
.ls26{letter-spacing:33.393963pt;}
.ls3f{letter-spacing:37.002933pt;}
.ls40{letter-spacing:37.004800pt;}
.ls5c{letter-spacing:46.460800pt;}
.ls5b{letter-spacing:46.464267pt;}
.lse{letter-spacing:46.684080pt;}
.ls1e{letter-spacing:203.179416pt;}
.ls39{letter-spacing:375.017200pt;}
.ls62{letter-spacing:464.082906pt;}
.ls25{letter-spacing:564.292776pt;}
.ws85{word-spacing:-53.133867pt;}
.ws9d{word-spacing:-39.637865pt;}
.wsd0{word-spacing:-38.362652pt;}
.wsc3{word-spacing:-38.247076pt;}
.wsb5{word-spacing:-35.521290pt;}
.ws99{word-spacing:-35.174620pt;}
.ws97{word-spacing:-35.170476pt;}
.ws83{word-spacing:-34.611401pt;}
.wscd{word-spacing:-29.223627pt;}
.ws70{word-spacing:-27.151406pt;}
.ws5{word-spacing:-26.562686pt;}
.ws9b{word-spacing:-26.561620pt;}
.ws94{word-spacing:-25.738045pt;}
.ws1e{word-spacing:-24.569231pt;}
.wsf8{word-spacing:-17.967935pt;}
.wsf9{word-spacing:-16.917823pt;}
.wsfa{word-spacing:-15.855146pt;}
.wsd2{word-spacing:-14.824349pt;}
.ws5b{word-spacing:-14.712768pt;}
.ws5d{word-spacing:-14.393964pt;}
.ws4a{word-spacing:-14.340831pt;}
.wsaa{word-spacing:-14.234563pt;}
.ws30{word-spacing:-13.809492pt;}
.ws3a{word-spacing:-13.703224pt;}
.ws142{word-spacing:-13.667185pt;}
.wsa1{word-spacing:-13.600736pt;}
.wsa2{word-spacing:-13.600339pt;}
.wsa3{word-spacing:-13.596956pt;}
.ws8f{word-spacing:-13.384421pt;}
.wsef{word-spacing:-13.287443pt;}
.wscb{word-spacing:-13.225019pt;}
.ws12e{word-spacing:-13.188977pt;}
.ws8e{word-spacing:-12.906216pt;}
.ws139{word-spacing:-12.902052pt;}
.ws148{word-spacing:-12.854231pt;}
.ws110{word-spacing:-12.853082pt;}
.wsae{word-spacing:-12.832644pt;}
.wsd6{word-spacing:-12.799948pt;}
.ws77{word-spacing:-12.746815pt;}
.ws140{word-spacing:-12.471665pt;}
.ws43{word-spacing:-12.428011pt;}
.ws126{word-spacing:-12.328202pt;}
.ws11{word-spacing:-12.327652pt;}
.ws25{word-spacing:-12.322132pt;}
.ws149{word-spacing:-12.280381pt;}
.wsde{word-spacing:-12.268610pt;}
.ws29{word-spacing:-12.163202pt;}
.ws80{word-spacing:-12.109208pt;}
.wsf2{word-spacing:-12.056074pt;}
.ws13f{word-spacing:-11.993457pt;}
.wse1{word-spacing:-11.949807pt;}
.ws15{word-spacing:-11.897284pt;}
.ws10f{word-spacing:-11.843539pt;}
.ws12f{word-spacing:-11.754353pt;}
.ws28{word-spacing:-11.737583pt;}
.ws8d{word-spacing:-11.631003pt;}
.ws115{word-spacing:-11.577870pt;}
.ws32{word-spacing:-11.524736pt;}
.ws54{word-spacing:-11.471602pt;}
.ws136{word-spacing:-11.467428pt;}
.wsf7{word-spacing:-11.418468pt;}
.ws131{word-spacing:-11.276145pt;}
.ws10c{word-spacing:-11.205932pt;}
.wse3{word-spacing:-11.046531pt;}
.ws91{word-spacing:-10.993397pt;}
.ws7a{word-spacing:-10.887129pt;}
.wscc{word-spacing:-10.833995pt;}
.ws64{word-spacing:-10.780862pt;}
.ws5e{word-spacing:-10.727728pt;}
.wsf4{word-spacing:-10.718036pt;}
.ws8c{word-spacing:-10.679907pt;}
.ws48{word-spacing:-10.674594pt;}
.wse2{word-spacing:-10.568326pt;}
.ws36{word-spacing:-10.515192pt;}
.ws11e{word-spacing:-10.463191pt;}
.ws7e{word-spacing:-10.462058pt;}
.ws147{word-spacing:-10.415370pt;}
.ws117{word-spacing:-10.355791pt;}
.ws133{word-spacing:-10.271908pt;}
.ws18{word-spacing:-10.271115pt;}
.ws3d{word-spacing:-10.249523pt;}
.ws122{word-spacing:-10.224087pt;}
.wsd{word-spacing:-10.223631pt;}
.ws73{word-spacing:-10.196389pt;}
.wsf5{word-spacing:-10.143255pt;}
.ws129{word-spacing:-10.128445pt;}
.ws14{word-spacing:-10.127659pt;}
.ws24{word-spacing:-10.090686pt;}
.ws60{word-spacing:-10.090121pt;}
.ws49{word-spacing:-10.036987pt;}
.ws119{word-spacing:-9.983854pt;}
.ws13d{word-spacing:-9.889341pt;}
.ws40{word-spacing:-9.824452pt;}
.ws44{word-spacing:-9.771318pt;}
.ws4b{word-spacing:-9.665050pt;}
.ws7d{word-spacing:-9.617230pt;}
.wsf6{word-spacing:-9.611916pt;}
.ws65{word-spacing:-9.558783pt;}
.ws14a{word-spacing:-9.458954pt;}
.wsf3{word-spacing:-9.399381pt;}
.ws12d{word-spacing:-9.315492pt;}
.wsc8{word-spacing:-9.293113pt;}
.ws79{word-spacing:-9.186846pt;}
.wse5{word-spacing:-9.133712pt;}
.ws102{word-spacing:-9.027444pt;}
.ws144{word-spacing:-8.980746pt;}
.ws34{word-spacing:-8.974310pt;}
.ws120{word-spacing:-8.932925pt;}
.ws38{word-spacing:-8.921176pt;}
.ws2a{word-spacing:-8.868664pt;}
.ws2{word-spacing:-8.868398pt;}
.ws4{word-spacing:-8.868133pt;}
.ws35{word-spacing:-8.868042pt;}
.wsd3{word-spacing:-8.855958pt;}
.wsd1{word-spacing:-8.851464pt;}
.wscf{word-spacing:-8.814908pt;}
.ws124{word-spacing:-8.789463pt;}
.ws5f{word-spacing:-8.761775pt;}
.ws6d{word-spacing:-8.708641pt;}
.wsdb{word-spacing:-8.602373pt;}
.ws41{word-spacing:-8.549239pt;}
.ws123{word-spacing:-8.502538pt;}
.ws78{word-spacing:-8.501419pt;}
.ws63{word-spacing:-8.496105pt;}
.ws11c{word-spacing:-8.442971pt;}
.ws3e{word-spacing:-8.389838pt;}
.wsee{word-spacing:-8.336704pt;}
.ws37{word-spacing:-8.283570pt;}
.ws50{word-spacing:-8.230436pt;}
.wsb1{word-spacing:-8.215613pt;}
.ws6{word-spacing:-8.215295pt;}
.ws1a{word-spacing:-8.215103pt;}
.wsb0{word-spacing:-8.204032pt;}
.wsb3{word-spacing:-8.184911pt;}
.wsad{word-spacing:-8.177302pt;}
.ws128{word-spacing:-8.175206pt;}
.ws21{word-spacing:-8.173958pt;}
.ws2c{word-spacing:-8.167793pt;}
.ws55{word-spacing:-8.124168pt;}
.ws8b{word-spacing:-8.071034pt;}
.wsd9{word-spacing:-8.023214pt;}
.ws12a{word-spacing:-7.976509pt;}
.ws16{word-spacing:-7.928383pt;}
.ws130{word-spacing:-7.880868pt;}
.ws20{word-spacing:-7.880373pt;}
.ws1f{word-spacing:-7.879235pt;}
.ws76{word-spacing:-7.805365pt;}
.ws88{word-spacing:-7.752231pt;}
.ws89{word-spacing:-7.739006pt;}
.ws145{word-spacing:-7.737405pt;}
.ws6b{word-spacing:-7.699097pt;}
.ws92{word-spacing:-7.645963pt;}
.wse0{word-spacing:-7.592830pt;}
.ws10b{word-spacing:-7.539696pt;}
.ws31{word-spacing:-7.380294pt;}
.wsfb{word-spacing:-7.327160pt;}
.ws114{word-spacing:-7.220892pt;}
.ws109{word-spacing:-7.167759pt;}
.ws10{word-spacing:-7.163093pt;}
.ws11f{word-spacing:-7.115735pt;}
.ws11b{word-spacing:-7.114625pt;}
.ws51{word-spacing:-7.061491pt;}
.ws135{word-spacing:-7.020093pt;}
.ws96{word-spacing:-6.955223pt;}
.ws95{word-spacing:-6.947175pt;}
.ws9a{word-spacing:-6.931518pt;}
.ws137{word-spacing:-6.924452pt;}
.ws2f{word-spacing:-6.848955pt;}
.ws66{word-spacing:-6.795822pt;}
.ws57{word-spacing:-6.742688pt;}
.ws2d{word-spacing:-6.689554pt;}
.wsa7{word-spacing:-6.636420pt;}
.ws13b{word-spacing:-6.589706pt;}
.wsa8{word-spacing:-6.583286pt;}
.wsfc{word-spacing:-6.477018pt;}
.ws134{word-spacing:-6.446244pt;}
.ws67{word-spacing:-6.423884pt;}
.ws13e{word-spacing:-6.398423pt;}
.ws4e{word-spacing:-6.370751pt;}
.ws42{word-spacing:-6.317617pt;}
.wsa4{word-spacing:-6.264483pt;}
.ws56{word-spacing:-6.211349pt;}
.ws138{word-spacing:-6.207140pt;}
.ws19{word-spacing:-6.111369pt;}
.wsff{word-spacing:-6.105081pt;}
.wsdc{word-spacing:-6.051947pt;}
.wsc{word-spacing:-6.015110pt;}
.wsac{word-spacing:-5.998814pt;}
.wse7{word-spacing:-5.892546pt;}
.ws10d{word-spacing:-5.839412pt;}
.wsf{word-spacing:-5.824170pt;}
.ws6c{word-spacing:-5.786278pt;}
.ws93{word-spacing:-5.780151pt;}
.ws90{word-spacing:-5.733144pt;}
.wsdf{word-spacing:-5.680010pt;}
.ws75{word-spacing:-5.520609pt;}
.wsda{word-spacing:-5.467475pt;}
.wsa{word-spacing:-5.346079pt;}
.wsed{word-spacing:-5.313387pt;}
.wsca{word-spacing:-5.308073pt;}
.ws6f{word-spacing:-5.254939pt;}
.ws10a{word-spacing:-5.148672pt;}
.ws33{word-spacing:-5.095538pt;}
.ws7b{word-spacing:-4.883002pt;}
.wsf1{word-spacing:-4.829868pt;}
.ws5c{word-spacing:-4.776735pt;}
.wse{word-spacing:-4.724436pt;}
.ws45{word-spacing:-4.723601pt;}
.ws146{word-spacing:-4.676874pt;}
.ws53{word-spacing:-4.670467pt;}
.ws3c{word-spacing:-4.617333pt;}
.ws121{word-spacing:-4.581233pt;}
.ws86{word-spacing:-4.564199pt;}
.ws13c{word-spacing:-4.533412pt;}
.wse8{word-spacing:-4.516379pt;}
.wsfe{word-spacing:-4.457931pt;}
.wsec{word-spacing:-4.404798pt;}
.ws132{word-spacing:-4.389949pt;}
.ws4f{word-spacing:-4.351664pt;}
.ws3f{word-spacing:-4.298530pt;}
.ws141{word-spacing:-4.246487pt;}
.ws39{word-spacing:-4.085994pt;}
.wsdd{word-spacing:-4.034016pt;}
.ws7c{word-spacing:-4.032860pt;}
.ws127{word-spacing:-4.007383pt;}
.wsc7{word-spacing:-3.926593pt;}
.ws125{word-spacing:-3.816100pt;}
.wsc9{word-spacing:-3.767191pt;}
.ws9f{word-spacing:-3.714057pt;}
.ws13{word-spacing:-3.624559pt;}
.ws116{word-spacing:-3.554656pt;}
.wse6{word-spacing:-3.501522pt;}
.wsce{word-spacing:-3.395254pt;}
.ws71{word-spacing:-3.342120pt;}
.ws6e{word-spacing:-3.288986pt;}
.ws12{word-spacing:-3.242201pt;}
.wsd7{word-spacing:-3.235852pt;}
.wsfd{word-spacing:-3.182719pt;}
.wsab{word-spacing:-3.076451pt;}
.ws52{word-spacing:-3.023317pt;}
.ws12b{word-spacing:-2.907505pt;}
.ws101{word-spacing:-2.863915pt;}
.ws118{word-spacing:-2.810782pt;}
.ws113{word-spacing:-2.757648pt;}
.ws7f{word-spacing:-2.491978pt;}
.ws26{word-spacing:-2.439049pt;}
.ws100{word-spacing:-2.438844pt;}
.wsea{word-spacing:-2.385711pt;}
.wseb{word-spacing:-2.284756pt;}
.wsd4{word-spacing:-2.279443pt;}
.wsa5{word-spacing:-2.256914pt;}
.wsb{word-spacing:-2.189951pt;}
.ws46{word-spacing:-2.173175pt;}
.ws17{word-spacing:-2.142515pt;}
.ws2e{word-spacing:-2.120041pt;}
.ws1c{word-spacing:-2.094505pt;}
.ws1d{word-spacing:-2.076902pt;}
.ws13a{word-spacing:-2.046730pt;}
.wsa9{word-spacing:-2.013774pt;}
.wse9{word-spacing:-1.960640pt;}
.ws61{word-spacing:-1.907506pt;}
.ws12c{word-spacing:-1.807626pt;}
.ws11a{word-spacing:-1.719597pt;}
.wsa6{word-spacing:-1.694970pt;}
.ws68{word-spacing:-1.482435pt;}
.ws143{word-spacing:-1.472881pt;}
.ws5a{word-spacing:-1.376167pt;}
.ws11d{word-spacing:-1.233777pt;}
.wse4{word-spacing:-1.163632pt;}
.ws74{word-spacing:-1.110498pt;}
.ws69{word-spacing:-0.844828pt;}
.ws27{word-spacing:-0.473123pt;}
.ws10e{word-spacing:-0.366624pt;}
.ws82{word-spacing:-0.053134pt;}
.ws6a{word-spacing:-0.047820pt;}
.ws7{word-spacing:-0.047819pt;}
.ws3{word-spacing:-0.037195pt;}
.ws81{word-spacing:-0.037194pt;}
.wsb4{word-spacing:-0.004710pt;}
.wsc5{word-spacing:-0.004371pt;}
.ws2b{word-spacing:0.000000pt;}
.ws23{word-spacing:0.005314pt;}
.ws3b{word-spacing:0.058447pt;}
.ws9e{word-spacing:0.111581pt;}
.ws4d{word-spacing:1.121125pt;}
.ws59{word-spacing:1.174258pt;}
.ws4c{word-spacing:1.227392pt;}
.ws58{word-spacing:1.864999pt;}
.wsa0{word-spacing:2.130668pt;}
.ws107{word-spacing:7.230505pt;}
.wsb9{word-spacing:8.129536pt;}
.ws72{word-spacing:9.372877pt;}
.wsc4{word-spacing:10.854741pt;}
.wsbe{word-spacing:10.855322pt;}
.wsbd{word-spacing:11.670335pt;}
.wsb6{word-spacing:13.585408pt;}
.wsb7{word-spacing:14.401002pt;}
.ws84{word-spacing:14.427263pt;}
.ws9c{word-spacing:14.718081pt;}
.ws105{word-spacing:14.824448pt;}
.wsf0{word-spacing:15.515089pt;}
.wsbb{word-spacing:16.312446pt;}
.ws111{word-spacing:16.324951pt;}
.ws103{word-spacing:16.330284pt;}
.wsc6{word-spacing:16.335939pt;}
.wsc1{word-spacing:16.336111pt;}
.wsb8{word-spacing:16.348773pt;}
.ws8a{word-spacing:17.381929pt;}
.ws106{word-spacing:18.793574pt;}
.ws98{word-spacing:19.558011pt;}
.ws62{word-spacing:20.594825pt;}
.wsc0{word-spacing:21.740378pt;}
.wsb2{word-spacing:24.525003pt;}
.wsaf{word-spacing:24.526595pt;}
.ws1b{word-spacing:24.550437pt;}
.ws87{word-spacing:24.640596pt;}
.ws8{word-spacing:25.057173pt;}
.ws47{word-spacing:26.333321pt;}
.ws9{word-spacing:26.529476pt;}
.ws0{word-spacing:27.926880pt;}
.ws1{word-spacing:28.003469pt;}
.wsd8{word-spacing:30.557287pt;}
.ws112{word-spacing:43.086541pt;}
.ws104{word-spacing:43.134362pt;}
.ws108{word-spacing:71.396454pt;}
.ws22{word-spacing:71.666240pt;}
.wsd5{word-spacing:71.667439pt;}
.wsba{word-spacing:73.701956pt;}
.wsbc{word-spacing:147.408623pt;}
.wsbf{word-spacing:221.115290pt;}
.wsc2{word-spacing:294.816963pt;}
._11{margin-left:-28.959361pt;}
._18{margin-left:-8.852855pt;}
._a{margin-left:-5.013735pt;}
._2{margin-left:-3.884643pt;}
._0{margin-left:-2.371872pt;}
._3{margin-left:-1.386598pt;}
._4{width:1.385068pt;}
._1{width:2.371872pt;}
._6{width:3.304018pt;}
._16{width:4.559918pt;}
._19{width:6.843129pt;}
._9{width:8.873356pt;}
._5{width:13.591871pt;}
._1a{width:14.592661pt;}
._13{width:15.571822pt;}
._d{width:16.776267pt;}
._b{width:18.587936pt;}
._1b{width:19.723804pt;}
._f{width:20.721700pt;}
._14{width:21.865733pt;}
._15{width:23.465380pt;}
._12{width:24.468456pt;}
._28{width:26.540544pt;}
._26{width:27.439561pt;}
._e{width:28.683371pt;}
._27{width:32.764251pt;}
._7{width:36.761644pt;}
._17{width:44.116500pt;}
._25{width:57.432781pt;}
._10{width:61.103947pt;}
._23{width:65.466675pt;}
._c{width:71.731200pt;}
._20{width:79.621632pt;}
._24{width:113.191834pt;}
._1e{width:120.386215pt;}
._21{width:127.346790pt;}
._1f{width:139.179545pt;}
._8{width:151.687578pt;}
._1d{width:198.260224pt;}
._22{width:212.415181pt;}
._1c{width:253.691788pt;}
.fsa{font-size:26.566933pt;}
.fsb{font-size:31.880533pt;}
.fs3{font-size:31.882667pt;}
.fs9{font-size:37.193600pt;}
.fs2{font-size:37.194667pt;}
.fs4{font-size:47.818667pt;}
.fs6{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:53.136000pt;}
.fs5{font-size:63.760000pt;}
.fs8{font-size:63.761067pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:169.114667pt;}
.y4f{bottom:172.102667pt;}
.y27{bottom:172.104000pt;}
.y88{bottom:176.937333pt;}
.y8a{bottom:182.324000pt;}
.y87{bottom:185.608000pt;}
.y15c{bottom:186.714667pt;}
.y26{bottom:188.044000pt;}
.yd3{bottom:198.626667pt;}
.y15b{bottom:201.326667pt;}
.y25{bottom:203.984000pt;}
.y138{bottom:204.238667pt;}
.yd2{bottom:205.389333pt;}
.yd1{bottom:214.501333pt;}
.y15a{bottom:216.052000pt;}
.y24{bottom:219.924000pt;}
.y137{bottom:220.178667pt;}
.y86{bottom:221.373333pt;}
.y105{bottom:226.456000pt;}
.y159{bottom:230.664000pt;}
.y188{bottom:230.734667pt;}
.y23{bottom:235.864000pt;}
.y136{bottom:236.118667pt;}
.y85{bottom:237.313333pt;}
.y187{bottom:245.346667pt;}
.y158{bottom:245.389333pt;}
.yd0{bottom:249.158667pt;}
.y4e{bottom:251.804000pt;}
.y22{bottom:251.805333pt;}
.y135{bottom:252.058667pt;}
.y84{bottom:253.253333pt;}
.y11b{bottom:253.264000pt;}
.y186{bottom:259.958667pt;}
.y157{bottom:260.001333pt;}
.yf3{bottom:262.202667pt;}
.ycf{bottom:265.098667pt;}
.y21{bottom:267.745333pt;}
.y134{bottom:268.000000pt;}
.y83{bottom:269.194667pt;}
.y11a{bottom:269.205333pt;}
.y185{bottom:274.570667pt;}
.y156{bottom:274.726667pt;}
.yf2{bottom:278.142667pt;}
.yce{bottom:281.040000pt;}
.y20{bottom:283.685333pt;}
.y133{bottom:283.940000pt;}
.y82{bottom:285.134667pt;}
.y119{bottom:285.145333pt;}
.y184{bottom:289.182667pt;}
.y155{bottom:289.338667pt;}
.y104{bottom:290.805333pt;}
.ycd{bottom:296.980000pt;}
.yae{bottom:299.625333pt;}
.y132{bottom:299.880000pt;}
.y6b{bottom:300.789333pt;}
.y81{bottom:301.074667pt;}
.y118{bottom:301.085333pt;}
.yf1{bottom:302.785333pt;}
.y183{bottom:303.794667pt;}
.y154{bottom:303.950667pt;}
.ycc{bottom:312.920000pt;}
.y4d{bottom:313.742667pt;}
.y1f{bottom:314.174667pt;}
.yad{bottom:315.565333pt;}
.y131{bottom:315.820000pt;}
.y6a{bottom:316.729333pt;}
.y80{bottom:317.014667pt;}
.y117{bottom:317.025333pt;}
.y182{bottom:318.406667pt;}
.y153{bottom:318.676000pt;}
.ycb{bottom:328.860000pt;}
.yac{bottom:331.505333pt;}
.y130{bottom:332.014667pt;}
.y4c{bottom:332.338667pt;}
.y69{bottom:332.669333pt;}
.y116{bottom:332.965333pt;}
.y181{bottom:333.017333pt;}
.y152{bottom:333.288000pt;}
.y7f{bottom:333.926667pt;}
.yf0{bottom:340.713333pt;}
.yca{bottom:344.800000pt;}
.y180{bottom:347.629333pt;}
.y12f{bottom:347.954667pt;}
.y151{bottom:348.013333pt;}
.yab{bottom:348.348000pt;}
.y68{bottom:348.609333pt;}
.y115{bottom:348.905333pt;}
.y7e{bottom:350.837333pt;}
.yef{bottom:356.653333pt;}
.y1e{bottom:357.544000pt;}
.yc9{bottom:360.740000pt;}
.y17f{bottom:362.241333pt;}
.y150{bottom:362.625333pt;}
.y12e{bottom:363.894667pt;}
.yaa{bottom:364.288000pt;}
.y114{bottom:364.846667pt;}
.y67{bottom:365.713333pt;}
.y7d{bottom:366.777333pt;}
.y1d{bottom:372.156000pt;}
.yee{bottom:372.593333pt;}
.y4b{bottom:373.024000pt;}
.yc8{bottom:376.681333pt;}
.y17e{bottom:376.853333pt;}
.y14f{bottom:377.350667pt;}
.y12d{bottom:379.836000pt;}
.ya9{bottom:380.228000pt;}
.y66{bottom:381.653333pt;}
.y7c{bottom:382.718667pt;}
.y1c{bottom:386.768000pt;}
.yed{bottom:388.533333pt;}
.y4a{bottom:388.964000pt;}
.y17d{bottom:391.465333pt;}
.y14e{bottom:391.962667pt;}
.yc7{bottom:392.621333pt;}
.y12c{bottom:395.776000pt;}
.ya8{bottom:396.168000pt;}
.y65{bottom:397.593333pt;}
.y7b{bottom:398.658667pt;}
.yec{bottom:404.473333pt;}
.y49{bottom:404.904000pt;}
.y17c{bottom:406.077333pt;}
.y14d{bottom:406.688000pt;}
.yc6{bottom:408.561333pt;}
.y12b{bottom:411.716000pt;}
.ya7{bottom:413.009333pt;}
.y7a{bottom:414.598667pt;}
.y1b{bottom:415.642667pt;}
.y113{bottom:419.093333pt;}
.yeb{bottom:420.413333pt;}
.y17b{bottom:420.689333pt;}
.y48{bottom:420.844000pt;}
.y14c{bottom:421.300000pt;}
.yc5{bottom:424.501333pt;}
.ya6{bottom:428.950667pt;}
.y1a{bottom:430.254667pt;}
.y79{bottom:430.538667pt;}
.y112{bottom:433.705333pt;}
.y64{bottom:435.292000pt;}
.y17a{bottom:435.301333pt;}
.y14b{bottom:435.912000pt;}
.yea{bottom:436.354667pt;}
.y47{bottom:436.784000pt;}
.yc4{bottom:440.441333pt;}
.y19{bottom:444.866667pt;}
.y12a{bottom:444.869333pt;}
.ya5{bottom:444.890667pt;}
.y78{bottom:446.478667pt;}
.y179{bottom:449.913333pt;}
.y14a{bottom:450.524000pt;}
.ye9{bottom:452.294667pt;}
.y46{bottom:452.725333pt;}
.y63{bottom:453.888000pt;}
.y111{bottom:454.984000pt;}
.yc3{bottom:456.381333pt;}
.y18{bottom:459.478667pt;}
.ya4{bottom:460.830667pt;}
.y77{bottom:463.390667pt;}
.y178{bottom:464.525333pt;}
.y149{bottom:465.249333pt;}
.ye8{bottom:468.234667pt;}
.yc2{bottom:472.322667pt;}
.y17{bottom:474.090667pt;}
.y177{bottom:479.136000pt;}
.y76{bottom:479.330667pt;}
.y45{bottom:479.669333pt;}
.y148{bottom:479.861333pt;}
.ye7{bottom:484.174667pt;}
.y110{bottom:486.928000pt;}
.ya0{bottom:487.598667pt;}
.yc1{bottom:488.262667pt;}
.y16{bottom:488.702667pt;}
.y176{bottom:493.748000pt;}
.y9f{bottom:494.361333pt;}
.y147{bottom:494.473333pt;}
.y75{bottom:495.270667pt;}
.y44{bottom:495.610667pt;}
.ye6{bottom:500.114667pt;}
.y62{bottom:502.213333pt;}
.y15{bottom:503.314667pt;}
.y9e{bottom:503.473333pt;}
.ya2{bottom:506.262667pt;}
.y175{bottom:508.360000pt;}
.y146{bottom:509.198667pt;}
.y43{bottom:511.094667pt;}
.y74{bottom:511.210667pt;}
.ya3{bottom:512.460000pt;}
.yc0{bottom:514.762667pt;}
.ye5{bottom:516.054667pt;}
.y14{bottom:517.926667pt;}
.y61{bottom:518.153333pt;}
.y174{bottom:522.972000pt;}
.y145{bottom:523.810667pt;}
.y129{bottom:524.290667pt;}
.y42{bottom:527.034667pt;}
.y73{bottom:527.152000pt;}
.ya1{bottom:530.173333pt;}
.ye4{bottom:531.996000pt;}
.y13{bottom:532.538667pt;}
.y60{bottom:534.093333pt;}
.y173{bottom:537.584000pt;}
.y144{bottom:538.422667pt;}
.y128{bottom:538.902667pt;}
.y103{bottom:541.866667pt;}
.y72{bottom:543.092000pt;}
.y12{bottom:547.150667pt;}
.ye3{bottom:547.936000pt;}
.y5f{bottom:550.033333pt;}
.y9d{bottom:551.578667pt;}
.y172{bottom:552.196000pt;}
.y143{bottom:553.034667pt;}
.y41{bottom:553.524000pt;}
.y102{bottom:557.806667pt;}
.y71{bottom:559.032000pt;}
.y127{bottom:560.181333pt;}
.y11{bottom:561.761333pt;}
.ye2{bottom:563.876000pt;}
.y5e{bottom:565.973333pt;}
.y171{bottom:566.808000pt;}
.y9c{bottom:567.518667pt;}
.y142{bottom:567.760000pt;}
.y10f{bottom:567.762667pt;}
.y40{bottom:569.464000pt;}
.y101{bottom:575.765333pt;}
.y10{bottom:576.373333pt;}
.ye1{bottom:579.816000pt;}
.y170{bottom:581.420000pt;}
.y5d{bottom:581.914667pt;}
.y141{bottom:582.372000pt;}
.y10e{bottom:582.374667pt;}
.y9b{bottom:583.458667pt;}
.y100{bottom:584.877333pt;}
.y3f{bottom:585.404000pt;}
.y126{bottom:589.801333pt;}
.ybf{bottom:590.064000pt;}
.y70{bottom:590.454667pt;}
.yf{bottom:590.985333pt;}
.ye0{bottom:595.756000pt;}
.y16f{bottom:596.032000pt;}
.y5c{bottom:599.017333pt;}
.y9a{bottom:599.398667pt;}
.y3e{bottom:601.345333pt;}
.y10d{bottom:603.654667pt;}
.ybe{bottom:604.676000pt;}
.ye{bottom:605.597333pt;}
.y16e{bottom:610.644000pt;}
.ydf{bottom:611.696000pt;}
.y140{bottom:613.492000pt;}
.y5b{bottom:614.958667pt;}
.y99{bottom:616.241333pt;}
.y3d{bottom:617.285333pt;}
.ybd{bottom:619.288000pt;}
.yff{bottom:619.333333pt;}
.yd{bottom:620.209333pt;}
.y16d{bottom:625.254667pt;}
.yde{bottom:627.637333pt;}
.y5a{bottom:630.898667pt;}
.y98{bottom:632.181333pt;}
.y3c{bottom:633.225333pt;}
.ybc{bottom:633.900000pt;}
.yc{bottom:634.821333pt;}
.yfe{bottom:635.273333pt;}
.y10c{bottom:635.597333pt;}
.y16c{bottom:639.866667pt;}
.ydd{bottom:643.577333pt;}
.y59{bottom:646.838667pt;}
.y97{bottom:648.121333pt;}
.ybb{bottom:648.510667pt;}
.y3b{bottom:649.165333pt;}
.yb{bottom:649.433333pt;}
.yfd{bottom:651.213333pt;}
.y16b{bottom:654.478667pt;}
.y13f{bottom:656.568000pt;}
.ydc{bottom:659.517333pt;}
.y58{bottom:662.778667pt;}
.yba{bottom:663.122667pt;}
.ya{bottom:664.045333pt;}
.y96{bottom:664.061333pt;}
.y3a{bottom:665.105333pt;}
.y6f{bottom:665.372000pt;}
.y125{bottom:667.020000pt;}
.yfc{bottom:667.153333pt;}
.y16a{bottom:669.090667pt;}
.y13e{bottom:672.508000pt;}
.ydb{bottom:675.457333pt;}
.yb9{bottom:677.734667pt;}
.y57{bottom:678.718667pt;}
.y10b{bottom:679.586667pt;}
.y95{bottom:680.001333pt;}
.y39{bottom:681.045333pt;}
.y124{bottom:681.632000pt;}
.yfb{bottom:683.093333pt;}
.y169{bottom:683.702667pt;}
.y13d{bottom:688.448000pt;}
.yda{bottom:691.397333pt;}
.yb8{bottom:692.346667pt;}
.y56{bottom:694.658667pt;}
.y10a{bottom:695.526667pt;}
.y94{bottom:695.942667pt;}
.y38{bottom:696.986667pt;}
.y168{bottom:698.314667pt;}
.yfa{bottom:699.033333pt;}
.y123{bottom:702.912000pt;}
.y13c{bottom:704.388000pt;}
.yb7{bottom:706.958667pt;}
.yd9{bottom:707.338667pt;}
.y55{bottom:710.600000pt;}
.y109{bottom:711.466667pt;}
.y93{bottom:711.882667pt;}
.y37{bottom:712.926667pt;}
.yf9{bottom:713.950667pt;}
.y9{bottom:714.625333pt;}
.y13b{bottom:720.328000pt;}
.yb6{bottom:721.570667pt;}
.y108{bottom:727.406667pt;}
.y167{bottom:727.538667pt;}
.y54{bottom:727.702667pt;}
.y92{bottom:728.724000pt;}
.y36{bottom:728.866667pt;}
.yf8{bottom:729.890667pt;}
.yd8{bottom:731.981333pt;}
.y8{bottom:734.316000pt;}
.y122{bottom:734.854667pt;}
.yb5{bottom:736.182667pt;}
.y13a{bottom:736.269333pt;}
.y166{bottom:742.150667pt;}
.y107{bottom:743.346667pt;}
.y53{bottom:743.644000pt;}
.y7{bottom:743.849333pt;}
.y91{bottom:744.664000pt;}
.y35{bottom:744.806667pt;}
.yf7{bottom:745.830667pt;}
.yb4{bottom:750.794667pt;}
.y139{bottom:752.209333pt;}
.y165{bottom:756.762667pt;}
.y106{bottom:759.286667pt;}
.y52{bottom:759.584000pt;}
.y34{bottom:760.746667pt;}
.y90{bottom:761.505333pt;}
.yf6{bottom:761.770667pt;}
.y6{bottom:763.540000pt;}
.yb3{bottom:765.406667pt;}
.yd7{bottom:769.908000pt;}
.y164{bottom:771.374667pt;}
.y51{bottom:775.524000pt;}
.y121{bottom:776.433333pt;}
.y33{bottom:776.688000pt;}
.y8f{bottom:777.446667pt;}
.yf5{bottom:777.710667pt;}
.yb2{bottom:780.018667pt;}
.yd6{bottom:785.848000pt;}
.y163{bottom:785.985333pt;}
.y5{bottom:786.301333pt;}
.y50{bottom:791.464000pt;}
.y120{bottom:792.373333pt;}
.y32{bottom:792.628000pt;}
.y8e{bottom:793.386667pt;}
.yf4{bottom:793.652000pt;}
.yb1{bottom:794.629333pt;}
.y162{bottom:800.597333pt;}
.yd5{bottom:801.788000pt;}
.y4{bottom:802.241333pt;}
.y11f{bottom:808.313333pt;}
.y31{bottom:808.568000pt;}
.yb0{bottom:809.241333pt;}
.y161{bottom:815.209333pt;}
.y8d{bottom:817.618667pt;}
.y3{bottom:818.182667pt;}
.y8c{bottom:820.902667pt;}
.y6e{bottom:822.565333pt;}
.y11e{bottom:824.253333pt;}
.y30{bottom:824.508000pt;}
.yaf{bottom:825.918667pt;}
.y160{bottom:829.821333pt;}
.yd4{bottom:831.745333pt;}
.y6d{bottom:838.505333pt;}
.y11d{bottom:840.193333pt;}
.y2f{bottom:840.448000pt;}
.y15f{bottom:844.433333pt;}
.y8b{bottom:852.930667pt;}
.y6c{bottom:855.417333pt;}
.y11c{bottom:856.134667pt;}
.y2e{bottom:856.388000pt;}
.y15e{bottom:859.045333pt;}
.y2{bottom:864.358667pt;}
.y2d{bottom:872.329333pt;}
.y15d{bottom:873.657333pt;}
.y1{bottom:888.269333pt;}
.y2c{bottom:922.806667pt;}
.y2b{bottom:964.224000pt;}
.y2a{bottom:987.177333pt;}
.y29{bottom:1010.130667pt;}
.y28{bottom:1033.084000pt;}
.h1a{height:2.656693pt;}
.h4{height:21.201973pt;}
.h19{height:26.667811pt;}
.h10{height:27.895200pt;}
.h1c{height:28.746201pt;}
.h5{height:33.281792pt;}
.h1f{height:33.522381pt;}
.h6{height:36.963829pt;}
.ha{height:36.965478pt;}
.hd{height:37.246841pt;}
.he{height:39.850400pt;}
.hb{height:39.903534pt;}
.h8{height:39.905136pt;}
.h7{height:44.695760pt;}
.hc{height:44.696508pt;}
.h13{height:45.953145pt;}
.h2{height:47.176000pt;}
.h3{height:47.181333pt;}
.h15{height:48.603811pt;}
.h16{height:53.039534pt;}
.h1{height:53.711424pt;}
.h14{height:53.732867pt;}
.h9{height:54.476544pt;}
.h11{height:54.609867pt;}
.h12{height:62.972533pt;}
.h1d{height:73.990515pt;}
.h17{height:75.791733pt;}
.h1e{height:76.351534pt;}
.hf{height:87.819360pt;}
.h18{height:89.579360pt;}
.h1b{height:109.456693pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:48.290667pt;}
.xa{left:179.686667pt;}
.x22{left:184.873333pt;}
.x2d{left:185.828000pt;}
.xd{left:187.990667pt;}
.x2{left:189.328000pt;}
.x3{left:190.525333pt;}
.xc{left:199.612000pt;}
.xe{left:202.268000pt;}
.xf{left:206.578667pt;}
.x11{left:213.508000pt;}
.x28{left:215.764000pt;}
.x1{left:216.908000pt;}
.x29{left:218.694667pt;}
.x6{left:220.241333pt;}
.x2b{left:224.226667pt;}
.x8{left:243.249333pt;}
.x13{left:247.450667pt;}
.x12{left:256.714667pt;}
.x4{left:264.296000pt;}
.x26{left:266.348000pt;}
.x2a{left:268.157333pt;}
.x2c{left:270.052000pt;}
.x7{left:281.601333pt;}
.x14{left:290.332000pt;}
.x23{left:312.677333pt;}
.x10{left:314.820000pt;}
.x5{left:321.622667pt;}
.x9{left:328.662667pt;}
.x18{left:337.662667pt;}
.x27{left:349.010667pt;}
.x1a{left:384.736000pt;}
.x24{left:404.348000pt;}
.x1b{left:406.534667pt;}
.x25{left:426.146667pt;}
.x1c{left:432.080000pt;}
.x15{left:433.224000pt;}
.x1e{left:445.297333pt;}
.x1d{left:451.690667pt;}
.x19{left:459.012000pt;}
.x16{left:462.104000pt;}
.x1f{left:468.533333pt;}
.x20{left:492.272000pt;}
.x21{left:518.441333pt;}
.x17{left:520.382667pt;}
}




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