
    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_5fb72cea317156f77b3f1302.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f5a33d34772c9668fe4b6556.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_553b3c08f7c09b2178b49548.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_5facf72a02db3f6f39dde9de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_809428b9bc618887362ef0a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f17f0276445d0f1f71172220.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70d25ff62b63b819a001a86b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.699000;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_65f1daead62c049ea2c79ad7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.877000;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_3ca3a6fe722445b2dcae0488.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_86141cf7d136f9a2fb89f9d1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6b5d55eb3daa35e80a6d8089.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.780000;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_32fc0ac8182699933a5138f8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002000;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_6209ae5e5de45efbf191cb92.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_345aa8e0978628784d33104f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2934a7ac590497a39b38a515.woff2')format("woff");}.fff{font-family:fff;line-height:0.430000;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_e9cd599b2fc2a2d4d61d55c6.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_831ae840199cdf5e01f47784.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b3a1a6cf78d85d8b97288758.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3c87a1427755ee81b2fe59d9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.002000;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_a43ddfba409f3e9ab4e94a70.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_0267e1e3a68755ab1b3c0c7b.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_a64b631d66d295c9663815e3.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_c314549d3082b71314ea0d84.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e6d92391806c8b4b631d798c.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_2e88c3662f843689abd25385.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.698000;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_51f34cf8829f87a79c3ee5e6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-21.690000px;}
.v5{vertical-align:-13.032513px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.758000px;}
.va{vertical-align:14.694000px;}
.v8{vertical-align:16.878000px;}
.v2{vertical-align:23.754000px;}
.v6{vertical-align:26.028000px;}
.v7{vertical-align:29.616000px;}
.v1{vertical-align:31.242000px;}
.ls9{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000440px;}
.ls4c{letter-spacing:0.001288px;}
.ls2a{letter-spacing:0.002769px;}
.ls38{letter-spacing:0.004040px;}
.ls5b{letter-spacing:0.005898px;}
.ls4d{letter-spacing:0.012712px;}
.ls43{letter-spacing:0.026423px;}
.ls34{letter-spacing:0.030793px;}
.ls2{letter-spacing:1.505456px;}
.ls3{letter-spacing:1.570910px;}
.ls0{letter-spacing:2.356366px;}
.ls7{letter-spacing:2.984915px;}
.ls4{letter-spacing:2.987971px;}
.ls47{letter-spacing:2.990915px;}
.ls5d{letter-spacing:2.991537px;}
.ls5c{letter-spacing:2.992053px;}
.ls8{letter-spacing:2.992894px;}
.ls64{letter-spacing:3.227904px;}
.ls27{letter-spacing:3.242332px;}
.ls1f{letter-spacing:3.586560px;}
.ls6e{letter-spacing:3.765863px;}
.ls5f{letter-spacing:4.447334px;}
.ls5e{letter-spacing:4.519066px;}
.ls6f{letter-spacing:4.722272px;}
.ls6a{letter-spacing:5.021150px;}
.ls2c{letter-spacing:5.092915px;}
.ls11{letter-spacing:5.164646px;}
.ls75{letter-spacing:5.200477px;}
.ls68{letter-spacing:5.379804px;}
.ls78{letter-spacing:5.439580px;}
.ls72{letter-spacing:5.499355px;}
.ls6b{letter-spacing:5.559131px;}
.ls73{letter-spacing:5.618906px;}
.ls16{letter-spacing:5.666765px;}
.ls79{letter-spacing:5.738458px;}
.ls71{letter-spacing:5.798233px;}
.ls7c{letter-spacing:5.858009px;}
.ls7a{letter-spacing:5.917784px;}
.ls76{letter-spacing:6.037336px;}
.ls6d{letter-spacing:6.156887px;}
.ls70{letter-spacing:6.276438px;}
.ls46{letter-spacing:7.603507px;}
.ls3e{letter-spacing:7.675238px;}
.lsb{letter-spacing:9.755443px;}
.ls6{letter-spacing:10.865464px;}
.ls5a{letter-spacing:11.046605px;}
.ls59{letter-spacing:11.118336px;}
.ls32{letter-spacing:15.207014px;}
.ls13{letter-spacing:15.924326px;}
.ls3f{letter-spacing:15.996058px;}
.ls1b{letter-spacing:17.072026px;}
.ls1a{letter-spacing:17.143757px;}
.ls28{letter-spacing:17.275034px;}
.ls33{letter-spacing:17.574144px;}
.ls56{letter-spacing:17.861069px;}
.ls12{letter-spacing:17.932800px;}
.ls1{letter-spacing:18.196379px;}
.ls35{letter-spacing:18.363187px;}
.ls4a{letter-spacing:18.721843px;}
.ls4b{letter-spacing:18.793574px;}
.ls21{letter-spacing:19.280378px;}
.ls2b{letter-spacing:19.869542px;}
.ls2f{letter-spacing:19.941274px;}
.ls52{letter-spacing:20.013005px;}
.ls4e{letter-spacing:20.371661px;}
.ls1c{letter-spacing:20.802048px;}
.ls53{letter-spacing:21.344915px;}
.ls26{letter-spacing:21.625289px;}
.ls20{letter-spacing:21.712138px;}
.ls62{letter-spacing:21.806285px;}
.ls2e{letter-spacing:22.308403px;}
.ls45{letter-spacing:22.322915px;}
.ls60{letter-spacing:22.523597px;}
.ls1e{letter-spacing:22.667059px;}
.ls1d{letter-spacing:22.738790px;}
.ls31{letter-spacing:22.910915px;}
.ls30{letter-spacing:23.025715px;}
.ls36{letter-spacing:23.384371px;}
.ls14{letter-spacing:23.456102px;}
.ls29{letter-spacing:24.057048px;}
.ls57{letter-spacing:24.101683px;}
.ls24{letter-spacing:24.143897px;}
.ls2d{letter-spacing:25.034189px;}
.ls42{letter-spacing:25.105920px;}
.ls5{letter-spacing:25.330930px;}
.ls15{letter-spacing:25.464576px;}
.ls40{letter-spacing:25.902532px;}
.ls3d{letter-spacing:26.390915px;}
.ls48{letter-spacing:26.899200px;}
.ls49{letter-spacing:26.970931px;}
.ls3c{letter-spacing:27.473050px;}
.lsc{letter-spacing:27.544781px;}
.lsd{letter-spacing:27.616512px;}
.ls4f{letter-spacing:27.831706px;}
.ls55{letter-spacing:28.333824px;}
.ls22{letter-spacing:28.399476px;}
.ls23{letter-spacing:29.181113px;}
.ls51{letter-spacing:29.983642px;}
.ls50{letter-spacing:30.055373px;}
.ls10{letter-spacing:31.131341px;}
.ls3b{letter-spacing:31.760915px;}
.ls17{letter-spacing:32.207309px;}
.ls6c{letter-spacing:32.996131px;}
.lse{letter-spacing:33.068083px;}
.ls65{letter-spacing:33.857126px;}
.ls37{letter-spacing:34.861363px;}
.ls69{letter-spacing:34.908950px;}
.lsa{letter-spacing:35.148288px;}
.ls67{letter-spacing:35.267604px;}
.ls39{letter-spacing:35.378915px;}
.ls58{letter-spacing:35.506944px;}
.ls66{letter-spacing:37.658880px;}
.ls61{letter-spacing:38.017536px;}
.ls25{letter-spacing:38.213362px;}
.ls19{letter-spacing:38.304461px;}
.ls54{letter-spacing:39.573813px;}
.ls18{letter-spacing:40.671590px;}
.lsf{letter-spacing:41.173709px;}
.ls7b{letter-spacing:44.951251px;}
.ls74{letter-spacing:45.011027px;}
.ls77{letter-spacing:45.788110px;}
.ls63{letter-spacing:152.070144px;}
.ls41{letter-spacing:716.777971px;}
.ls44{letter-spacing:849.297408px;}
.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;}
}
.ws61{word-spacing:-55.287787px;}
.ws1d{word-spacing:-45.664082px;}
.ws69{word-spacing:-42.512365px;}
.ws64{word-spacing:-40.870928px;}
.ws77{word-spacing:-40.341627px;}
.ws34{word-spacing:-35.112422px;}
.wsea{word-spacing:-33.684972px;}
.wseb{word-spacing:-23.355679px;}
.ws98{word-spacing:-23.341332px;}
.ws38{word-spacing:-21.117665px;}
.wsb3{word-spacing:-20.902472px;}
.ws7b{word-spacing:-19.510886px;}
.wsa5{word-spacing:-19.324385px;}
.wse5{word-spacing:-19.188096px;}
.wse9{word-spacing:-18.829440px;}
.wsc2{word-spacing:-18.540986px;}
.ws68{word-spacing:-18.455317px;}
.ws3a{word-spacing:-18.399053px;}
.ws6a{word-spacing:-18.368468px;}
.ws97{word-spacing:-18.112128px;}
.wsb4{word-spacing:-17.961492px;}
.wsfa{word-spacing:-17.681741px;}
.wsdd{word-spacing:-17.466547px;}
.wse{word-spacing:-17.293105px;}
.wsb{word-spacing:-17.227651px;}
.wsaa{word-spacing:-17.028987px;}
.wscb{word-spacing:-16.957256px;}
.wsa6{word-spacing:-16.820966px;}
.wsc3{word-spacing:-16.749235px;}
.ws27{word-spacing:-16.534042px;}
.wsd1{word-spacing:-16.462310px;}
.ws19{word-spacing:-16.390579px;}
.ws5f{word-spacing:-16.275418px;}
.wsf7{word-spacing:-15.960192px;}
.ws25{word-spacing:-15.953019px;}
.ws23{word-spacing:-15.829597px;}
.ws8a{word-spacing:-15.816730px;}
.ws8b{word-spacing:-15.744998px;}
.ws79{word-spacing:-15.743520px;}
.wsb2{word-spacing:-15.673267px;}
.ws3f{word-spacing:-15.601536px;}
.ws53{word-spacing:-15.379169px;}
.ws13{word-spacing:-15.264013px;}
.ws8f{word-spacing:-15.235707px;}
.wsd0{word-spacing:-15.199841px;}
.wsd7{word-spacing:-15.099418px;}
.wsa2{word-spacing:-14.884224px;}
.wsab{word-spacing:-14.812493px;}
.ws59{word-spacing:-14.740762px;}
.ws1a{word-spacing:-14.597299px;}
.ws55{word-spacing:-14.453837px;}
.wsa8{word-spacing:-14.310374px;}
.ws60{word-spacing:-14.199738px;}
.ws63{word-spacing:-14.112889px;}
.ws45{word-spacing:-14.095181px;}
.ws46{word-spacing:-14.023450px;}
.ws5d{word-spacing:-13.951718px;}
.ws58{word-spacing:-13.879987px;}
.ws6d{word-spacing:-13.872814px;}
.wsd8{word-spacing:-13.836948px;}
.ws26{word-spacing:-13.808256px;}
.wsf{word-spacing:-13.758557px;}
.ws12{word-spacing:-13.693102px;}
.ws1{word-spacing:-13.677667px;}
.ws85{word-spacing:-13.664794px;}
.wsb1{word-spacing:-13.521331px;}
.wsc1{word-spacing:-13.449600px;}
.ws35{word-spacing:-13.442427px;}
.ws54{word-spacing:-13.377869px;}
.ws90{word-spacing:-13.306138px;}
.ws28{word-spacing:-13.298964px;}
.ws4{word-spacing:-13.038556px;}
.ws2d{word-spacing:-12.940308px;}
.wsa4{word-spacing:-12.875750px;}
.ws14{word-spacing:-12.842193px;}
.ws3{word-spacing:-12.776738px;}
.wsa0{word-spacing:-12.725115px;}
.ws39{word-spacing:-12.509921px;}
.wsc0{word-spacing:-12.445363px;}
.wsa{word-spacing:-12.384010px;}
.wsda{word-spacing:-12.301901px;}
.wsb5{word-spacing:-12.230170px;}
.wsc{word-spacing:-12.122192px;}
.ws6f{word-spacing:-12.086707px;}
.ws6e{word-spacing:-12.014976px;}
.ws4a{word-spacing:-12.007803px;}
.wsc7{word-spacing:-11.871514px;}
.wsc5{word-spacing:-11.799782px;}
.ws20{word-spacing:-11.728051px;}
.ws2e{word-spacing:-11.656320px;}
.ws24{word-spacing:-11.584589px;}
.ws91{word-spacing:-11.505684px;}
.ws5e{word-spacing:-11.369395px;}
.ws7{word-spacing:-11.336737px;}
.wsd9{word-spacing:-11.297664px;}
.wsdb{word-spacing:-11.254625px;}
.ws1e{word-spacing:-11.225933px;}
.wsa1{word-spacing:-11.082470px;}
.ws76{word-spacing:-11.075297px;}
.ws5{word-spacing:-11.009464px;}
.wsbe{word-spacing:-11.003566px;}
.wsa7{word-spacing:-10.939008px;}
.wsc6{word-spacing:-10.895969px;}
.wsb0{word-spacing:-10.867277px;}
.wsca{word-spacing:-10.824238px;}
.ws16{word-spacing:-10.813100px;}
.ws2f{word-spacing:-10.752507px;}
.wscd{word-spacing:-10.723814px;}
.ws29{word-spacing:-10.680776px;}
.ws1c{word-spacing:-10.652083px;}
.ws4e{word-spacing:-10.573179px;}
.ws78{word-spacing:-10.436890px;}
.wsac{word-spacing:-10.365158px;}
.wsad{word-spacing:-10.149965px;}
.ws8e{word-spacing:-10.006502px;}
.ws51{word-spacing:-9.934771px;}
.ws6{word-spacing:-9.831281px;}
.ws30{word-spacing:-9.640673px;}
.ws1b{word-spacing:-9.576115px;}
.ws9e{word-spacing:-9.504384px;}
.ws9d{word-spacing:-9.373807px;}
.ws1f{word-spacing:-9.360922px;}
.ws4f{word-spacing:-9.145728px;}
.ws36{word-spacing:-9.138555px;}
.wsc9{word-spacing:-9.002266px;}
.ws2a{word-spacing:-8.858803px;}
.ws41{word-spacing:-8.708168px;}
.ws93{word-spacing:-8.571878px;}
.ws95{word-spacing:-8.500147px;}
.wse7{word-spacing:-8.392550px;}
.ws92{word-spacing:-8.141491px;}
.ws84{word-spacing:-7.926298px;}
.ws5a{word-spacing:-7.919124px;}
.wsde{word-spacing:-7.854566px;}
.wse4{word-spacing:-7.603507px;}
.ws44{word-spacing:-7.567642px;}
.ws6c{word-spacing:-7.495910px;}
.ws56{word-spacing:-7.352448px;}
.wsdf{word-spacing:-7.165947px;}
.ws5c{word-spacing:-6.993792px;}
.ws18{word-spacing:-6.850330px;}
.wsbc{word-spacing:-6.778598px;}
.ws4b{word-spacing:-6.706867px;}
.ws8{word-spacing:-6.689460px;}
.wsb6{word-spacing:-6.663828px;}
.ws99{word-spacing:-6.563405px;}
.ws7a{word-spacing:-6.348211px;}
.ws11f{word-spacing:-6.336214px;}
.ws2b{word-spacing:-6.276480px;}
.wsb7{word-spacing:-6.161710px;}
.ws136{word-spacing:-6.097111px;}
.wsa9{word-spacing:-6.061286px;}
.wsc4{word-spacing:-6.018248px;}
.wsce{word-spacing:-5.917824px;}
.ws75{word-spacing:-5.846093px;}
.ws2c{word-spacing:-5.803054px;}
.ws141{word-spacing:-5.798233px;}
.wsbf{word-spacing:-5.774362px;}
.wscf{word-spacing:-5.702630px;}
.ws14a{word-spacing:-5.618906px;}
.ws138{word-spacing:-5.559131px;}
.ws131{word-spacing:-5.439580px;}
.ws15{word-spacing:-5.380368px;}
.ws130{word-spacing:-5.260253px;}
.ws94{word-spacing:-5.200512px;}
.ws100{word-spacing:-5.080926px;}
.ws3e{word-spacing:-4.985318px;}
.ws11e{word-spacing:-4.782048px;}
.ws71{word-spacing:-4.411469px;}
.ws67{word-spacing:-4.342428px;}
.wsba{word-spacing:-4.332564px;}
.wscc{word-spacing:-4.296699px;}
.wsa3{word-spacing:-4.052813px;}
.ws3b{word-spacing:-3.973908px;}
.ws11d{word-spacing:-3.825638px;}
.wsbb{word-spacing:-3.765888px;}
.wsd4{word-spacing:-3.722849px;}
.ws88{word-spacing:-3.586560px;}
.wsdc{word-spacing:-3.550694px;}
.wse3{word-spacing:-3.514829px;}
.ws3d{word-spacing:-3.407232px;}
.wsf2{word-spacing:-3.120307px;}
.ws57{word-spacing:-2.761651px;}
.ws9{word-spacing:-2.696730px;}
.ws7c{word-spacing:-2.474726px;}
.ws31{word-spacing:-2.395822px;}
.wsef{word-spacing:-1.972608px;}
.wsf9{word-spacing:-1.900877px;}
.ws52{word-spacing:-1.829146px;}
.wsb8{word-spacing:-1.391585px;}
.ws9f{word-spacing:-1.327027px;}
.wsb9{word-spacing:-1.183565px;}
.ws47{word-spacing:-1.104660px;}
.ws4c{word-spacing:-1.040102px;}
.ws49{word-spacing:-0.896640px;}
.wsbd{word-spacing:-0.824909px;}
.ws43{word-spacing:-0.746004px;}
.wsaf{word-spacing:-0.609715px;}
.ws50{word-spacing:-0.351483px;}
.wsd2{word-spacing:-0.179328px;}
.wsd3{word-spacing:-0.136289px;}
.ws4d{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.086077px;}
.wse0{word-spacing:-0.071731px;}
.wsd{word-spacing:-0.065455px;}
.wsfc{word-spacing:-0.059776px;}
.ws62{word-spacing:-0.057899px;}
.ws89{word-spacing:-0.047821px;}
.ws22{word-spacing:0.000000px;}
.ws40{word-spacing:0.035866px;}
.ws7d{word-spacing:0.358656px;}
.ws5b{word-spacing:0.401695px;}
.ws37{word-spacing:0.430387px;}
.ws65{word-spacing:0.521091px;}
.wse8{word-spacing:1.506355px;}
.ws86{word-spacing:1.936742px;}
.wse2{word-spacing:1.972608px;}
.wsd5{word-spacing:2.015647px;}
.ws74{word-spacing:2.553631px;}
.wsae{word-spacing:3.012710px;}
.wsed{word-spacing:3.084442px;}
.ws13c{word-spacing:3.108331px;}
.wsc8{word-spacing:4.382776px;}
.wsf3{word-spacing:5.272243px;}
.ws70{word-spacing:5.494610px;}
.ws32{word-spacing:6.097152px;}
.ws3c{word-spacing:7.503084px;}
.ws42{word-spacing:7.531776px;}
.ws116{word-spacing:8.249033px;}
.ws10b{word-spacing:8.308808px;}
.ws149{word-spacing:8.428360px;}
.ws132{word-spacing:8.547911px;}
.ws118{word-spacing:8.607686px;}
.ws12e{word-spacing:8.667462px;}
.ws111{word-spacing:8.727238px;}
.ws114{word-spacing:8.787013px;}
.ws117{word-spacing:8.846789px;}
.ws115{word-spacing:8.906564px;}
.ws14d{word-spacing:8.966340px;}
.ws11c{word-spacing:9.085891px;}
.ws13b{word-spacing:9.324994px;}
.ws112{word-spacing:9.683647px;}
.ws73{word-spacing:11.190067px;}
.ws103{word-spacing:11.417140px;}
.ws48{word-spacing:12.380805px;}
.wsf1{word-spacing:12.481229px;}
.ws72{word-spacing:12.839885px;}
.wsee{word-spacing:13.628928px;}
.ws15c{word-spacing:13.688612px;}
.wsf8{word-spacing:17.072026px;}
.ws10{word-spacing:18.130924px;}
.wsf6{word-spacing:18.147994px;}
.wsf0{word-spacing:18.506650px;}
.ws11{word-spacing:18.785470px;}
.ws21{word-spacing:19.845499px;}
.ws9b{word-spacing:20.188250px;}
.ws96{word-spacing:22.867701px;}
.wse1{word-spacing:23.312640px;}
.wsd6{word-spacing:23.384371px;}
.ws87{word-spacing:24.281281px;}
.ws9a{word-spacing:25.621030px;}
.ws6b{word-spacing:31.902933px;}
.ws152{word-spacing:32.099497px;}
.ws33{word-spacing:32.287328px;}
.ws142{word-spacing:32.398375px;}
.ws12c{word-spacing:32.876580px;}
.ws106{word-spacing:32.960266px;}
.ws145{word-spacing:33.055907px;}
.ws148{word-spacing:33.295009px;}
.ws146{word-spacing:33.474336px;}
.ws159{word-spacing:33.952541px;}
.ws123{word-spacing:34.430746px;}
.ws154{word-spacing:34.490521px;}
.ws11a{word-spacing:34.574207px;}
.ws104{word-spacing:34.610072px;}
.ws122{word-spacing:34.908950px;}
.ws140{word-spacing:35.028502px;}
.ws135{word-spacing:35.148053px;}
.ws110{word-spacing:35.650168px;}
.ws108{word-spacing:35.709943px;}
.ws14c{word-spacing:35.984911px;}
.wsfd{word-spacing:36.403340px;}
.ws127{word-spacing:36.702218px;}
.wsfb{word-spacing:37.240199px;}
.wsff{word-spacing:37.419526px;}
.ws12a{word-spacing:37.479301px;}
.ws15b{word-spacing:37.539077px;}
.ws102{word-spacing:37.598852px;}
.ws101{word-spacing:37.957506px;}
.wsfe{word-spacing:38.136833px;}
.ws147{word-spacing:38.495486px;}
.ws13e{word-spacing:42.799330px;}
.ws126{word-spacing:42.859105px;}
.ws0{word-spacing:43.763175px;}
.ws109{word-spacing:43.815515px;}
.ws10f{word-spacing:43.875290px;}
.ws113{word-spacing:44.473046px;}
.ws124{word-spacing:44.891476px;}
.ws12f{word-spacing:44.951251px;}
.ws10d{word-spacing:45.130578px;}
.ws119{word-spacing:45.429456px;}
.ws14e{word-spacing:45.489232px;}
.ws137{word-spacing:45.728334px;}
.ws107{word-spacing:45.967436px;}
.ws143{word-spacing:46.206539px;}
.ws105{word-spacing:46.445641px;}
.ws12d{word-spacing:46.505417px;}
.ws129{word-spacing:47.162948px;}
.ws15a{word-spacing:47.222724px;}
.ws156{word-spacing:47.282500px;}
.ws128{word-spacing:47.461826px;}
.ws134{word-spacing:47.521602px;}
.ws151{word-spacing:48.179134px;}
.ws11b{word-spacing:48.298685px;}
.ws83{word-spacing:50.398341px;}
.ws17{word-spacing:55.726250px;}
.wsf4{word-spacing:132.487526px;}
.ws66{word-spacing:164.254216px;}
.ws13f{word-spacing:182.518817px;}
.ws10a{word-spacing:183.594778px;}
.ws10e{word-spacing:184.192534px;}
.ws10c{word-spacing:184.610963px;}
.ws139{word-spacing:185.447821px;}
.ws121{word-spacing:185.806475px;}
.ws120{word-spacing:185.926026px;}
.ws12b{word-spacing:186.045577px;}
.ws125{word-spacing:186.105353px;}
.ws133{word-spacing:186.224904px;}
.ws144{word-spacing:186.344455px;}
.ws7e{word-spacing:213.507917px;}
.ws80{word-spacing:214.153498px;}
.ws81{word-spacing:214.225229px;}
.ws8c{word-spacing:239.259418px;}
.ws7f{word-spacing:283.732762px;}
.ws8d{word-spacing:309.484262px;}
.ws14b{word-spacing:335.723680px;}
.ws13a{word-spacing:336.680089px;}
.ws13d{word-spacing:336.799640px;}
.wsf5{word-spacing:340.651469px;}
.wsec{word-spacing:364.131671px;}
.ws82{word-spacing:381.150904px;}
.wse6{word-spacing:424.541107px;}
.ws150{word-spacing:484.804026px;}
.ws155{word-spacing:485.820211px;}
.ws14f{word-spacing:486.657070px;}
.ws153{word-spacing:487.135274px;}
.ws158{word-spacing:637.470908px;}
.ws157{word-spacing:637.829562px;}
.ws9c{word-spacing:823.904563px;}
._43{margin-left:-35.420873px;}
._44{margin-left:-28.032575px;}
._3f{margin-left:-11.723693px;}
._15{margin-left:-7.833025px;}
._11{margin-left:-6.671002px;}
._8{margin-left:-5.544285px;}
._d{margin-left:-3.903877px;}
._1{margin-left:-2.238007px;}
._b{margin-left:-1.022172px;}
._9{width:1.145009px;}
._0{width:2.324084px;}
._2{width:4.115568px;}
._55{width:5.164646px;}
._5a{width:6.861995px;}
._74{width:7.868697px;}
._1e{width:8.925134px;}
._5c{width:10.357973px;}
._41{width:12.274996px;}
._4f{width:15.924326px;}
._42{width:18.635854px;}
._a{width:19.792391px;}
._1a{width:21.533694px;}
._4{width:22.626669px;}
._3c{width:23.915170px;}
._f{width:24.919406px;}
._6{width:26.861488px;}
._3{width:28.800024px;}
._e{width:30.448994px;}
._14{width:32.035160px;}
._13{width:33.520777px;}
._16{width:34.565478px;}
._18{width:35.793869px;}
._c{width:37.309122px;}
._20{width:38.383660px;}
._12{width:39.761371px;}
._5{width:40.941406px;}
._21{width:43.097707px;}
._40{width:44.447348px;}
._17{width:46.172855px;}
._73{width:47.827117px;}
._3e{width:49.091150px;}
._3d{width:52.220314px;}
._7{width:54.200888px;}
._19{width:57.835972px;}
._2a{width:58.926280px;}
._72{width:60.693644px;}
._3b{width:63.054415px;}
._5b{width:64.605799px;}
._2c{width:71.731200px;}
._57{width:74.889935px;}
._5f{width:76.075555px;}
._45{width:84.355129px;}
._1b{width:90.132435px;}
._10{width:94.684920px;}
._64{width:102.398856px;}
._26{width:110.956211px;}
._49{width:114.781786px;}
._2b{width:124.094976px;}
._46{width:126.409413px;}
._29{width:128.230388px;}
._4a{width:130.180356px;}
._61{width:132.298545px;}
._5e{width:135.573999px;}
._48{width:139.961155px;}
._1f{width:144.036824px;}
._6c{width:146.565880px;}
._37{width:149.846477px;}
._6d{width:151.122288px;}
._4d{width:154.649980px;}
._23{width:158.201822px;}
._4b{width:159.620959px;}
._27{width:164.254216px;}
._68{width:165.459878px;}
._5d{width:169.656147px;}
._58{width:171.320317px;}
._4e{width:176.697508px;}
._60{width:178.864328px;}
._62{width:193.361191px;}
._25{width:200.615969px;}
._1d{width:206.766581px;}
._63{width:225.549105px;}
._22{width:233.351159px;}
._52{width:236.287265px;}
._65{width:248.818706px;}
._50{width:257.168218px;}
._66{width:260.073331px;}
._1c{width:275.144167px;}
._53{width:283.773313px;}
._54{width:287.575651px;}
._56{width:291.711557px;}
._24{width:293.882627px;}
._4c{width:299.788785px;}
._70{width:308.683453px;}
._28{width:315.163979px;}
._71{width:323.890468px;}
._2d{width:346.389965px;}
._51{width:354.404920px;}
._2f{width:373.432627px;}
._36{width:376.517069px;}
._2e{width:381.466522px;}
._6a{width:386.748512px;}
._67{width:388.814377px;}
._59{width:402.385908px;}
._30{width:408.509184px;}
._6b{width:434.126976px;}
._32{width:443.657472px;}
._69{width:447.619608px;}
._3a{width:460.514304px;}
._6e{width:462.558588px;}
._38{width:469.408973px;}
._31{width:498.244915px;}
._35{width:501.974938px;}
._6f{width:523.001389px;}
._33{width:533.393203px;}
._34{width:568.469760px;}
._39{width:594.221261px;}
._47{width:689.138565px;}
.fc3{color:rgb(0,153,0);}
.fc4{color:rgb(148,0,209);}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs9{font-size:57.898791px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs8{font-size:86.848550px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y21{bottom:61.467000px;}
.ya8{bottom:106.299000px;}
.y86{bottom:113.397000px;}
.y18e{bottom:116.436000px;}
.y155{bottom:124.231500px;}
.ya7{bottom:127.968000px;}
.y18d{bottom:134.368500px;}
.y85{bottom:135.664500px;}
.y121{bottom:141.298500px;}
.y154{bottom:142.164000px;}
.ya6{bottom:149.637000px;}
.y18c{bottom:152.301000px;}
.y84{bottom:157.333500px;}
.y153{bottom:160.098000px;}
.y43{bottom:161.716500px;}
.ycb{bottom:162.655500px;}
.y120{bottom:162.967500px;}
.y18b{bottom:170.233500px;}
.ya5{bottom:171.306000px;}
.y152{bottom:178.030500px;}
.y83{bottom:179.001000px;}
.y42{bottom:183.385500px;}
.yca{bottom:184.324500px;}
.y11f{bottom:185.233500px;}
.y18a{bottom:188.167500px;}
.ya4{bottom:192.973500px;}
.y20{bottom:195.028500px;}
.y151{bottom:195.963000px;}
.y82{bottom:200.670000px;}
.y41{bottom:205.053000px;}
.yc9{bottom:205.993500px;}
.y189{bottom:206.100000px;}
.y11e{bottom:206.902500px;}
.y150{bottom:213.895500px;}
.ya3{bottom:214.642500px;}
.y1f{bottom:221.784000px;}
.y81{bottom:222.339000px;}
.y188{bottom:224.032500px;}
.y40{bottom:226.722000px;}
.yc8{bottom:227.662500px;}
.y11d{bottom:229.168500px;}
.y14f{bottom:231.828000px;}
.y64{bottom:233.627683px;}
.y187{bottom:241.965000px;}
.y1e{bottom:243.453000px;}
.y80{bottom:244.008000px;}
.ya2{bottom:247.890000px;}
.y3f{bottom:248.391000px;}
.yc7{bottom:249.330000px;}
.y14e{bottom:249.760500px;}
.y11c{bottom:251.436000px;}
.y186{bottom:259.897500px;}
.y63{bottom:260.586242px;}
.y1d{bottom:265.122000px;}
.y7f{bottom:265.677000px;}
.y14d{bottom:267.694500px;}
.yc6{bottom:270.999000px;}
.y11b{bottom:273.105000px;}
.y185{bottom:277.830000px;}
.y3e{bottom:285.004500px;}
.y14c{bottom:285.627000px;}
.y1c{bottom:286.791000px;}
.y7e{bottom:287.344500px;}
.y62{bottom:287.544802px;}
.ya1{bottom:292.543500px;}
.yc5{bottom:292.668000px;}
.y11a{bottom:295.371000px;}
.y184{bottom:295.764000px;}
.y14b{bottom:303.559500px;}
.y3d{bottom:306.672000px;}
.y1b{bottom:308.460000px;}
.y7d{bottom:309.013500px;}
.y183{bottom:313.696500px;}
.y61{bottom:314.505177px;}
.y119{bottom:317.637000px;}
.y14a{bottom:321.492000px;}
.yf8{bottom:323.589000px;}
.yc4{bottom:325.915500px;}
.y3c{bottom:328.341000px;}
.y1a{bottom:330.129000px;}
.y7c{bottom:330.682500px;}
.y182{bottom:331.629000px;}
.y149{bottom:339.424500px;}
.y118{bottom:339.904500px;}
.y18f{bottom:341.343000px;}
.y60{bottom:341.463737px;}
.yf7{bottom:345.256500px;}
.y181{bottom:349.561500px;}
.y19{bottom:351.796500px;}
.ya0{bottom:351.987000px;}
.y7b{bottom:352.351500px;}
.y148{bottom:357.357000px;}
.y117{bottom:362.170500px;}
.y3b{bottom:364.954500px;}
.y180{bottom:367.494000px;}
.y5f{bottom:368.422296px;}
.y18{bottom:373.465500px;}
.y9f{bottom:373.656000px;}
.y7a{bottom:374.617500px;}
.y147{bottom:375.291000px;}
.yf6{bottom:377.386500px;}
.yc3{bottom:377.902500px;}
.y116{bottom:384.436500px;}
.y17f{bottom:385.426500px;}
.y3a{bottom:386.623500px;}
.y146{bottom:393.223500px;}
.y5e{bottom:395.382672px;}
.yf5{bottom:399.055500px;}
.yc2{bottom:399.570000px;}
.y17e{bottom:403.360500px;}
.y115{bottom:406.105500px;}
.y9e{bottom:409.396500px;}
.y145{bottom:411.156000px;}
.y79{bottom:411.828000px;}
.y17{bottom:412.888500px;}
.y39{bottom:419.871000px;}
.yf4{bottom:420.724500px;}
.yc1{bottom:421.239000px;}
.y17d{bottom:421.293000px;}
.y5d{bottom:422.341231px;}
.y114{bottom:428.371500px;}
.y144{bottom:429.088500px;}
.y9d{bottom:431.065500px;}
.y17c{bottom:439.225500px;}
.yc0{bottom:442.908000px;}
.y143{bottom:447.021000px;}
.y78{bottom:448.567500px;}
.y5c{bottom:449.299791px;}
.y113{bottom:450.639000px;}
.yf3{bottom:452.853000px;}
.y17b{bottom:457.158000px;}
.y9c{bottom:464.313000px;}
.ybf{bottom:464.577000px;}
.y142{bottom:464.953500px;}
.y77{bottom:470.236500px;}
.y38{bottom:471.856500px;}
.y16{bottom:472.782000px;}
.y112{bottom:472.905000px;}
.yf2{bottom:474.522000px;}
.y17a{bottom:475.090500px;}
.y5b{bottom:476.260167px;}
.y141{bottom:482.887500px;}
.ybe{bottom:486.246000px;}
.y179{bottom:493.023000px;}
.y15{bottom:493.105500px;}
.y37{bottom:493.525500px;}
.y111{bottom:494.574000px;}
.yf1{bottom:496.191000px;}
.y140{bottom:500.820000px;}
.y5a{bottom:503.218726px;}
.y76{bottom:503.484000px;}
.y178{bottom:510.957000px;}
.y14{bottom:513.430500px;}
.y36{bottom:515.194500px;}
.y9b{bottom:515.850000px;}
.y110{bottom:516.840000px;}
.y13f{bottom:518.752500px;}
.ybd{bottom:522.858000px;}
.yf0{bottom:528.321000px;}
.y177{bottom:528.889500px;}
.y13{bottom:533.754000px;}
.y13e{bottom:536.685000px;}
.y9a{bottom:537.519000px;}
.y10f{bottom:539.106000px;}
.y59{bottom:543.753000px;}
.ybc{bottom:544.527000px;}
.yef{bottom:546.316500px;}
.y176{bottom:546.822000px;}
.y75{bottom:548.865000px;}
.yee{bottom:549.990000px;}
.y35{bottom:551.806500px;}
.y12{bottom:554.077500px;}
.y13d{bottom:554.617500px;}
.y99{bottom:559.186500px;}
.y10e{bottom:560.775000px;}
.y175{bottom:564.754500px;}
.ybb{bottom:566.196000px;}
.y74{bottom:570.534000px;}
.yed{bottom:571.657500px;}
.y13c{bottom:572.551500px;}
.y34{bottom:573.475500px;}
.y11{bottom:574.401000px;}
.y174{bottom:582.687000px;}
.y10d{bottom:583.042500px;}
.y58{bottom:584.823000px;}
.yba{bottom:587.865000px;}
.y13b{bottom:590.484000px;}
.y10{bottom:594.724500px;}
.y173{bottom:600.619500px;}
.y73{bottom:603.781500px;}
.yec{bottom:603.787500px;}
.y10c{bottom:605.308500px;}
.y98{bottom:607.132500px;}
.y13a{bottom:608.416500px;}
.yb9{bottom:609.534000px;}
.y33{bottom:610.089000px;}
.yf{bottom:615.049500px;}
.y57{bottom:618.070500px;}
.y172{bottom:618.553500px;}
.yeb{bottom:625.456500px;}
.y139{bottom:626.349000px;}
.y10b{bottom:626.977500px;}
.y97{bottom:628.801500px;}
.yb8{bottom:631.201500px;}
.ye{bottom:635.373000px;}
.y171{bottom:636.486000px;}
.y138{bottom:644.281500px;}
.y32{bottom:646.701000px;}
.y10a{bottom:649.243500px;}
.y96{bottom:650.470500px;}
.y72{bottom:654.391500px;}
.y170{bottom:654.418500px;}
.yd{bottom:655.696500px;}
.yea{bottom:657.586500px;}
.y137{bottom:662.214000px;}
.yb7{bottom:667.815000px;}
.y31{bottom:668.370000px;}
.y56{bottom:670.056000px;}
.y109{bottom:671.509500px;}
.y95{bottom:672.139500px;}
.y16f{bottom:672.351000px;}
.yd8{bottom:675.090000px;}
.yc{bottom:676.020000px;}
.y71{bottom:676.060500px;}
.ye9{bottom:679.254000px;}
.y136{bottom:680.148000px;}
.yb6{bottom:689.484000px;}
.y16e{bottom:690.283500px;}
.y55{bottom:691.725000px;}
.y108{bottom:693.178500px;}
.y94{bottom:693.808500px;}
.yb{bottom:696.343500px;}
.yd7{bottom:696.759000px;}
.y70{bottom:697.729500px;}
.y135{bottom:698.080500px;}
.ye8{bottom:700.923000px;}
.y16d{bottom:708.216000px;}
.y30{bottom:709.465500px;}
.yb5{bottom:711.151500px;}
.y54{bottom:713.394000px;}
.y107{bottom:715.444500px;}
.y134{bottom:716.013000px;}
.y93{bottom:716.074500px;}
.ya{bottom:716.668500px;}
.y16c{bottom:726.150000px;}
.y6f{bottom:730.977000px;}
.yb4{bottom:732.820500px;}
.ye7{bottom:733.053000px;}
.y133{bottom:733.945500px;}
.y53{bottom:735.063000px;}
.yd6{bottom:736.182000px;}
.y9{bottom:736.992000px;}
.y106{bottom:737.712000px;}
.y2f{bottom:742.713000px;}
.y16b{bottom:744.082500px;}
.y132{bottom:751.878000px;}
.y92{bottom:753.285000px;}
.yb3{bottom:754.489500px;}
.ye6{bottom:754.722000px;}
.y52{bottom:756.732000px;}
.y105{bottom:759.978000px;}
.y16a{bottom:762.015000px;}
.y8{bottom:767.395500px;}
.y131{bottom:769.810500px;}
.y6e{bottom:776.358000px;}
.ye5{bottom:776.391000px;}
.y51{bottom:778.399500px;}
.y169{bottom:779.947500px;}
.y104{bottom:781.647000px;}
.y130{bottom:787.744500px;}
.y91{bottom:792.612000px;}
.y2e{bottom:794.700000px;}
.yb2{bottom:795.585000px;}
.yd5{bottom:796.075500px;}
.y168{bottom:797.880000px;}
.y6d{bottom:798.025500px;}
.ye4{bottom:798.058500px;}
.y50{bottom:800.068500px;}
.y103{bottom:803.913000px;}
.y12f{bottom:805.677000px;}
.y90{bottom:814.281000px;}
.y167{bottom:815.812500px;}
.y2d{bottom:816.369000px;}
.yb1{bottom:817.254000px;}
.yd4{bottom:817.744500px;}
.y4f{bottom:821.737500px;}
.y12e{bottom:823.609500px;}
.y102{bottom:826.180500px;}
.ye3{bottom:830.188500px;}
.y6c{bottom:831.975000px;}
.y166{bottom:833.746500px;}
.y8f{bottom:835.948500px;}
.yb0{bottom:838.923000px;}
.yd3{bottom:839.413500px;}
.y12d{bottom:841.542000px;}
.y4e{bottom:843.406500px;}
.y101{bottom:848.446500px;}
.y165{bottom:851.679000px;}
.ye2{bottom:851.857500px;}
.y7{bottom:852.906000px;}
.y2c{bottom:852.981000px;}
.y6b{bottom:853.644000px;}
.y12c{bottom:859.474500px;}
.yaf{bottom:860.592000px;}
.yd2{bottom:861.082500px;}
.y4d{bottom:865.075500px;}
.y8e{bottom:869.196000px;}
.y164{bottom:869.611500px;}
.y100{bottom:870.115500px;}
.y2b{bottom:874.650000px;}
.y12b{bottom:877.407000px;}
.yd1{bottom:882.751500px;}
.ye1{bottom:883.987500px;}
.y4c{bottom:886.743000px;}
.y163{bottom:887.544000px;}
.y6a{bottom:887.593500px;}
.yff{bottom:892.381500px;}
.yae{bottom:893.839500px;}
.y6{bottom:894.844500px;}
.y12a{bottom:895.341000px;}
.y2a{bottom:896.319000px;}
.yd0{bottom:904.419000px;}
.y162{bottom:905.476500px;}
.y69{bottom:909.262500px;}
.y129{bottom:913.273500px;}
.yfe{bottom:914.647500px;}
.y8d{bottom:915.502500px;}
.ye0{bottom:916.116000px;}
.y29{bottom:917.986500px;}
.y4b{bottom:919.990500px;}
.yad{bottom:920.739000px;}
.y5{bottom:921.744000px;}
.y161{bottom:923.409000px;}
.y128{bottom:931.206000px;}
.yfd{bottom:936.915000px;}
.ydf{bottom:937.785000px;}
.y160{bottom:941.343000px;}
.y68{bottom:943.212000px;}
.ycf{bottom:943.842000px;}
.y4{bottom:948.642000px;}
.y127{bottom:949.138500px;}
.y8c{bottom:952.054500px;}
.y28{bottom:954.600000px;}
.yfc{bottom:959.181000px;}
.y15f{bottom:959.275500px;}
.yde{bottom:959.454000px;}
.y4a{bottom:971.977500px;}
.yac{bottom:972.724500px;}
.y126{bottom:974.091000px;}
.y27{bottom:976.269000px;}
.y67{bottom:977.163000px;}
.y15e{bottom:977.208000px;}
.yfb{bottom:981.447000px;}
.y8b{bottom:988.605000px;}
.ydd{bottom:991.584000px;}
.y49{bottom:993.646500px;}
.yab{bottom:994.393500px;}
.y15d{bottom:995.140500px;}
.y125{bottom:995.758500px;}
.y26{bottom:997.938000px;}
.y3{bottom:1001.874000px;}
.yfa{bottom:1003.714500px;}
.yce{bottom:1003.735500px;}
.y66{bottom:1005.786000px;}
.y15c{bottom:1013.073000px;}
.ydc{bottom:1013.251500px;}
.y48{bottom:1015.315500px;}
.yaa{bottom:1016.062500px;}
.y8a{bottom:1018.680000px;}
.ycd{bottom:1025.404500px;}
.y65{bottom:1027.455000px;}
.y2{bottom:1028.773500px;}
.y15b{bottom:1031.005500px;}
.y124{bottom:1035.181500px;}
.y25{bottom:1039.033500px;}
.yf9{bottom:1040.925000px;}
.ydb{bottom:1045.381500px;}
.ycc{bottom:1047.073500px;}
.y15a{bottom:1048.939500px;}
.y47{bottom:1051.927500px;}
.ya9{bottom:1055.664000px;}
.y24{bottom:1060.702500px;}
.y89{bottom:1062.018000px;}
.y1{bottom:1066.132500px;}
.y159{bottom:1066.872000px;}
.y46{bottom:1073.596500px;}
.yda{bottom:1077.511500px;}
.y88{bottom:1083.687000px;}
.y158{bottom:1084.804500px;}
.y23{bottom:1093.950000px;}
.y45{bottom:1095.265500px;}
.yd9{bottom:1099.180500px;}
.y123{bottom:1101.766500px;}
.y157{bottom:1102.737000px;}
.y87{bottom:1105.354500px;}
.y44{bottom:1116.934500px;}
.y156{bottom:1120.669500px;}
.y122{bottom:1123.434000px;}
.y22{bottom:1138.602000px;}
.ha{height:23.201476px;}
.h16{height:24.281011px;}
.h15{height:41.603818px;}
.h6{height:49.156405px;}
.h5{height:53.195710px;}
.h14{height:53.798400px;}
.h9{height:53.870131px;}
.hc{height:53.941862px;}
.h7{height:56.080726px;}
.hf{height:58.354726px;}
.h10{height:58.360726px;}
.h3{height:60.598349px;}
.h12{height:61.942726px;}
.hb{height:64.643977px;}
.he{height:65.223261px;}
.hd{height:65.310110px;}
.h13{height:68.564131px;}
.h11{height:70.344624px;}
.h4{height:76.133476px;}
.h8{height:77.675885px;}
.h2{height:87.030450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:82.393500px;}
.x1e{left:87.871500px;}
.x1d{left:93.349500px;}
.xb{left:106.299000px;}
.x19{left:115.077000px;}
.x11{left:117.878613px;}
.xc{left:126.489000px;}
.xf{left:127.762500px;}
.xe{left:132.639000px;}
.x20{left:137.128500px;}
.x1a{left:142.386000px;}
.x1f{left:146.646000px;}
.xa{left:150.196500px;}
.x18{left:160.204500px;}
.x9{left:174.603000px;}
.x16{left:176.820000px;}
.x2{left:179.884500px;}
.x12{left:195.988500px;}
.x1{left:205.336500px;}
.x10{left:235.389000px;}
.x3{left:243.298500px;}
.x1b{left:254.437500px;}
.x17{left:279.621000px;}
.x13{left:282.841500px;}
.x5{left:293.554500px;}
.x14{left:307.179000px;}
.x6{left:313.885500px;}
.x15{left:340.408500px;}
.x7{left:361.822500px;}
.x4{left:378.739500px;}
.x8{left:410.724000px;}
.x21{left:437.679000px;}
.xd{left:442.068000px;}
.x1c{left:554.131500px;}
@media print{
.v4{vertical-align:-19.280000pt;}
.v5{vertical-align:-11.584456pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:9.562667pt;}
.va{vertical-align:13.061333pt;}
.v8{vertical-align:15.002667pt;}
.v2{vertical-align:21.114667pt;}
.v6{vertical-align:23.136000pt;}
.v7{vertical-align:26.325333pt;}
.v1{vertical-align:27.770667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000391pt;}
.ls4c{letter-spacing:0.001145pt;}
.ls2a{letter-spacing:0.002461pt;}
.ls38{letter-spacing:0.003591pt;}
.ls5b{letter-spacing:0.005243pt;}
.ls4d{letter-spacing:0.011300pt;}
.ls43{letter-spacing:0.023487pt;}
.ls34{letter-spacing:0.027372pt;}
.ls2{letter-spacing:1.338183pt;}
.ls3{letter-spacing:1.396365pt;}
.ls0{letter-spacing:2.094547pt;}
.ls7{letter-spacing:2.653258pt;}
.ls4{letter-spacing:2.655975pt;}
.ls47{letter-spacing:2.658591pt;}
.ls5d{letter-spacing:2.659144pt;}
.ls5c{letter-spacing:2.659603pt;}
.ls8{letter-spacing:2.660350pt;}
.ls64{letter-spacing:2.869248pt;}
.ls27{letter-spacing:2.882073pt;}
.ls1f{letter-spacing:3.188053pt;}
.ls6e{letter-spacing:3.347434pt;}
.ls5f{letter-spacing:3.953186pt;}
.ls5e{letter-spacing:4.016947pt;}
.ls6f{letter-spacing:4.197575pt;}
.ls6a{letter-spacing:4.463245pt;}
.ls2c{letter-spacing:4.527036pt;}
.ls11{letter-spacing:4.590797pt;}
.ls75{letter-spacing:4.622646pt;}
.ls68{letter-spacing:4.782048pt;}
.ls78{letter-spacing:4.835182pt;}
.ls72{letter-spacing:4.888316pt;}
.ls6b{letter-spacing:4.941450pt;}
.ls73{letter-spacing:4.994583pt;}
.ls16{letter-spacing:5.037124pt;}
.ls79{letter-spacing:5.100851pt;}
.ls71{letter-spacing:5.153985pt;}
.ls7c{letter-spacing:5.207119pt;}
.ls7a{letter-spacing:5.260253pt;}
.ls76{letter-spacing:5.366521pt;}
.ls6d{letter-spacing:5.472788pt;}
.ls70{letter-spacing:5.579056pt;}
.ls46{letter-spacing:6.758673pt;}
.ls3e{letter-spacing:6.822434pt;}
.lsb{letter-spacing:8.671505pt;}
.ls6{letter-spacing:9.658190pt;}
.ls5a{letter-spacing:9.819204pt;}
.ls59{letter-spacing:9.882965pt;}
.ls32{letter-spacing:13.517346pt;}
.ls13{letter-spacing:14.154957pt;}
.ls3f{letter-spacing:14.218718pt;}
.ls1b{letter-spacing:15.175134pt;}
.ls1a{letter-spacing:15.238895pt;}
.ls28{letter-spacing:15.355586pt;}
.ls33{letter-spacing:15.621461pt;}
.ls56{letter-spacing:15.876506pt;}
.ls12{letter-spacing:15.940267pt;}
.ls1{letter-spacing:16.174559pt;}
.ls35{letter-spacing:16.322833pt;}
.ls4a{letter-spacing:16.641638pt;}
.ls4b{letter-spacing:16.705399pt;}
.ls21{letter-spacing:17.138114pt;}
.ls2b{letter-spacing:17.661815pt;}
.ls2f{letter-spacing:17.725577pt;}
.ls52{letter-spacing:17.789338pt;}
.ls4e{letter-spacing:18.108143pt;}
.ls1c{letter-spacing:18.490709pt;}
.ls53{letter-spacing:18.973258pt;}
.ls26{letter-spacing:19.222479pt;}
.ls20{letter-spacing:19.299678pt;}
.ls62{letter-spacing:19.383364pt;}
.ls2e{letter-spacing:19.829692pt;}
.ls45{letter-spacing:19.842591pt;}
.ls60{letter-spacing:20.020975pt;}
.ls1e{letter-spacing:20.148497pt;}
.ls1d{letter-spacing:20.212258pt;}
.ls31{letter-spacing:20.365258pt;}
.ls30{letter-spacing:20.467302pt;}
.ls36{letter-spacing:20.786108pt;}
.ls14{letter-spacing:20.849869pt;}
.ls29{letter-spacing:21.384043pt;}
.ls57{letter-spacing:21.423718pt;}
.ls24{letter-spacing:21.461242pt;}
.ls2d{letter-spacing:22.252612pt;}
.ls42{letter-spacing:22.316373pt;}
.ls5{letter-spacing:22.516382pt;}
.ls15{letter-spacing:22.635179pt;}
.ls40{letter-spacing:23.024473pt;}
.ls3d{letter-spacing:23.458591pt;}
.ls48{letter-spacing:23.910400pt;}
.ls49{letter-spacing:23.974161pt;}
.ls3c{letter-spacing:24.420489pt;}
.lsc{letter-spacing:24.484250pt;}
.lsd{letter-spacing:24.548011pt;}
.ls4f{letter-spacing:24.739294pt;}
.ls55{letter-spacing:25.185621pt;}
.ls22{letter-spacing:25.243979pt;}
.ls23{letter-spacing:25.938767pt;}
.ls51{letter-spacing:26.652126pt;}
.ls50{letter-spacing:26.715887pt;}
.ls10{letter-spacing:27.672303pt;}
.ls3b{letter-spacing:28.231925pt;}
.ls17{letter-spacing:28.628719pt;}
.ls6c{letter-spacing:29.329894pt;}
.lse{letter-spacing:29.393852pt;}
.ls65{letter-spacing:30.095223pt;}
.ls37{letter-spacing:30.987878pt;}
.ls69{letter-spacing:31.030178pt;}
.lsa{letter-spacing:31.242923pt;}
.ls67{letter-spacing:31.348981pt;}
.ls39{letter-spacing:31.447925pt;}
.ls58{letter-spacing:31.561728pt;}
.ls66{letter-spacing:33.474560pt;}
.ls61{letter-spacing:33.793365pt;}
.ls25{letter-spacing:33.967433pt;}
.ls19{letter-spacing:34.048410pt;}
.ls54{letter-spacing:35.176723pt;}
.ls18{letter-spacing:36.152525pt;}
.lsf{letter-spacing:36.598852pt;}
.ls7b{letter-spacing:39.956668pt;}
.ls74{letter-spacing:40.009802pt;}
.ls77{letter-spacing:40.700542pt;}
.ls63{letter-spacing:135.173461pt;}
.ls41{letter-spacing:637.135975pt;}
.ls44{letter-spacing:754.931029pt;}
.ws61{word-spacing:-49.144700pt;}
.ws1d{word-spacing:-40.590295pt;}
.ws69{word-spacing:-37.788769pt;}
.ws64{word-spacing:-36.329714pt;}
.ws77{word-spacing:-35.859224pt;}
.ws34{word-spacing:-31.211042pt;}
.wsea{word-spacing:-29.942197pt;}
.wseb{word-spacing:-20.760603pt;}
.ws98{word-spacing:-20.747851pt;}
.ws38{word-spacing:-18.771258pt;}
.wsb3{word-spacing:-18.579975pt;}
.ws7b{word-spacing:-17.343010pt;}
.wsa5{word-spacing:-17.177231pt;}
.wse5{word-spacing:-17.056085pt;}
.wse9{word-spacing:-16.737280pt;}
.wsc2{word-spacing:-16.480876pt;}
.ws68{word-spacing:-16.404726pt;}
.ws3a{word-spacing:-16.354714pt;}
.ws6a{word-spacing:-16.327527pt;}
.ws97{word-spacing:-16.099669pt;}
.wsb4{word-spacing:-15.965771pt;}
.wsfa{word-spacing:-15.717103pt;}
.wsdd{word-spacing:-15.525820pt;}
.wse{word-spacing:-15.371649pt;}
.wsb{word-spacing:-15.313467pt;}
.wsaa{word-spacing:-15.136877pt;}
.wscb{word-spacing:-15.073116pt;}
.wsa6{word-spacing:-14.951970pt;}
.wsc3{word-spacing:-14.888209pt;}
.ws27{word-spacing:-14.696926pt;}
.wsd1{word-spacing:-14.633165pt;}
.ws19{word-spacing:-14.569404pt;}
.ws5f{word-spacing:-14.467039pt;}
.wsf7{word-spacing:-14.186837pt;}
.ws25{word-spacing:-14.180461pt;}
.ws23{word-spacing:-14.070753pt;}
.ws8a{word-spacing:-14.059315pt;}
.ws8b{word-spacing:-13.995554pt;}
.ws79{word-spacing:-13.994240pt;}
.wsb2{word-spacing:-13.931793pt;}
.ws3f{word-spacing:-13.868032pt;}
.ws53{word-spacing:-13.670373pt;}
.ws13{word-spacing:-13.568011pt;}
.ws8f{word-spacing:-13.542851pt;}
.wsd0{word-spacing:-13.510970pt;}
.wsd7{word-spacing:-13.421705pt;}
.wsa2{word-spacing:-13.230421pt;}
.wsab{word-spacing:-13.166660pt;}
.ws59{word-spacing:-13.102899pt;}
.ws1a{word-spacing:-12.975377pt;}
.ws55{word-spacing:-12.847855pt;}
.wsa8{word-spacing:-12.720333pt;}
.ws60{word-spacing:-12.621989pt;}
.ws63{word-spacing:-12.544791pt;}
.ws45{word-spacing:-12.529050pt;}
.ws46{word-spacing:-12.465289pt;}
.ws5d{word-spacing:-12.401527pt;}
.ws58{word-spacing:-12.337766pt;}
.ws6d{word-spacing:-12.331390pt;}
.wsd8{word-spacing:-12.299510pt;}
.ws26{word-spacing:-12.274005pt;}
.wsf{word-spacing:-12.229828pt;}
.ws12{word-spacing:-12.171647pt;}
.ws1{word-spacing:-12.157926pt;}
.ws85{word-spacing:-12.146483pt;}
.wsb1{word-spacing:-12.018961pt;}
.wsc1{word-spacing:-11.955200pt;}
.ws35{word-spacing:-11.948824pt;}
.ws54{word-spacing:-11.891439pt;}
.ws90{word-spacing:-11.827678pt;}
.ws28{word-spacing:-11.821302pt;}
.ws4{word-spacing:-11.589828pt;}
.ws2d{word-spacing:-11.502496pt;}
.wsa4{word-spacing:-11.445111pt;}
.ws14{word-spacing:-11.415282pt;}
.ws3{word-spacing:-11.357100pt;}
.wsa0{word-spacing:-11.311213pt;}
.ws39{word-spacing:-11.119930pt;}
.wsc0{word-spacing:-11.062545pt;}
.wsa{word-spacing:-11.008009pt;}
.wsda{word-spacing:-10.935023pt;}
.wsb5{word-spacing:-10.871262pt;}
.wsc{word-spacing:-10.775282pt;}
.ws6f{word-spacing:-10.743740pt;}
.ws6e{word-spacing:-10.679979pt;}
.ws4a{word-spacing:-10.673603pt;}
.wsc7{word-spacing:-10.552457pt;}
.wsc5{word-spacing:-10.488695pt;}
.ws20{word-spacing:-10.424934pt;}
.ws2e{word-spacing:-10.361173pt;}
.ws24{word-spacing:-10.297412pt;}
.ws91{word-spacing:-10.227275pt;}
.ws5e{word-spacing:-10.106129pt;}
.ws7{word-spacing:-10.077099pt;}
.wsd9{word-spacing:-10.042368pt;}
.wsdb{word-spacing:-10.004111pt;}
.ws1e{word-spacing:-9.978607pt;}
.wsa1{word-spacing:-9.851085pt;}
.ws76{word-spacing:-9.844709pt;}
.ws5{word-spacing:-9.786190pt;}
.wsbe{word-spacing:-9.780948pt;}
.wsa7{word-spacing:-9.723563pt;}
.wsc6{word-spacing:-9.685306pt;}
.wsb0{word-spacing:-9.659802pt;}
.wsca{word-spacing:-9.621545pt;}
.ws16{word-spacing:-9.611644pt;}
.ws2f{word-spacing:-9.557784pt;}
.wscd{word-spacing:-9.532279pt;}
.ws29{word-spacing:-9.494023pt;}
.ws1c{word-spacing:-9.468518pt;}
.ws4e{word-spacing:-9.398381pt;}
.ws78{word-spacing:-9.277235pt;}
.wsac{word-spacing:-9.213474pt;}
.wsad{word-spacing:-9.022191pt;}
.ws8e{word-spacing:-8.894669pt;}
.ws51{word-spacing:-8.830908pt;}
.ws6{word-spacing:-8.738916pt;}
.ws30{word-spacing:-8.569487pt;}
.ws1b{word-spacing:-8.512102pt;}
.ws9e{word-spacing:-8.448341pt;}
.ws9d{word-spacing:-8.332273pt;}
.ws1f{word-spacing:-8.320819pt;}
.ws4f{word-spacing:-8.129536pt;}
.ws36{word-spacing:-8.123160pt;}
.wsc9{word-spacing:-8.002014pt;}
.ws2a{word-spacing:-7.874492pt;}
.ws41{word-spacing:-7.740593pt;}
.ws93{word-spacing:-7.619447pt;}
.ws95{word-spacing:-7.555686pt;}
.wse7{word-spacing:-7.460045pt;}
.ws92{word-spacing:-7.236881pt;}
.ws84{word-spacing:-7.045598pt;}
.ws5a{word-spacing:-7.039222pt;}
.wsde{word-spacing:-6.981837pt;}
.wse4{word-spacing:-6.758673pt;}
.ws44{word-spacing:-6.726793pt;}
.ws6c{word-spacing:-6.663031pt;}
.ws56{word-spacing:-6.535509pt;}
.wsdf{word-spacing:-6.369731pt;}
.ws5c{word-spacing:-6.216704pt;}
.ws18{word-spacing:-6.089182pt;}
.wsbc{word-spacing:-6.025421pt;}
.ws4b{word-spacing:-5.961660pt;}
.ws8{word-spacing:-5.946187pt;}
.wsb6{word-spacing:-5.923403pt;}
.ws99{word-spacing:-5.834138pt;}
.ws7a{word-spacing:-5.642854pt;}
.ws11f{word-spacing:-5.632190pt;}
.ws2b{word-spacing:-5.579093pt;}
.wsb7{word-spacing:-5.477076pt;}
.ws136{word-spacing:-5.419654pt;}
.wsa9{word-spacing:-5.387810pt;}
.wsc4{word-spacing:-5.349553pt;}
.wsce{word-spacing:-5.260288pt;}
.ws75{word-spacing:-5.196527pt;}
.ws2c{word-spacing:-5.158270pt;}
.ws141{word-spacing:-5.153985pt;}
.wsbf{word-spacing:-5.132766pt;}
.wscf{word-spacing:-5.069005pt;}
.ws14a{word-spacing:-4.994583pt;}
.ws138{word-spacing:-4.941450pt;}
.ws131{word-spacing:-4.835182pt;}
.ws15{word-spacing:-4.782549pt;}
.ws130{word-spacing:-4.675780pt;}
.ws94{word-spacing:-4.622677pt;}
.ws100{word-spacing:-4.516379pt;}
.ws3e{word-spacing:-4.431394pt;}
.ws11e{word-spacing:-4.250709pt;}
.ws71{word-spacing:-3.921306pt;}
.ws67{word-spacing:-3.859936pt;}
.wsba{word-spacing:-3.851168pt;}
.wscc{word-spacing:-3.819288pt;}
.wsa3{word-spacing:-3.602500pt;}
.ws3b{word-spacing:-3.532363pt;}
.ws11d{word-spacing:-3.400567pt;}
.wsbb{word-spacing:-3.347456pt;}
.wsd4{word-spacing:-3.309199pt;}
.ws88{word-spacing:-3.188053pt;}
.wsdc{word-spacing:-3.156173pt;}
.wse3{word-spacing:-3.124292pt;}
.ws3d{word-spacing:-3.028651pt;}
.wsf2{word-spacing:-2.773606pt;}
.ws57{word-spacing:-2.454801pt;}
.ws9{word-spacing:-2.397093pt;}
.ws7c{word-spacing:-2.199757pt;}
.ws31{word-spacing:-2.129620pt;}
.wsef{word-spacing:-1.753429pt;}
.wsf9{word-spacing:-1.689668pt;}
.ws52{word-spacing:-1.625907pt;}
.wsb8{word-spacing:-1.236965pt;}
.ws9f{word-spacing:-1.179580pt;}
.wsb9{word-spacing:-1.052058pt;}
.ws47{word-spacing:-0.981920pt;}
.ws4c{word-spacing:-0.924535pt;}
.ws49{word-spacing:-0.797013pt;}
.wsbd{word-spacing:-0.733252pt;}
.ws43{word-spacing:-0.663115pt;}
.wsaf{word-spacing:-0.541969pt;}
.ws50{word-spacing:-0.312429pt;}
.wsd2{word-spacing:-0.159403pt;}
.wsd3{word-spacing:-0.121146pt;}
.ws4d{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.076513pt;}
.wse0{word-spacing:-0.063761pt;}
.wsd{word-spacing:-0.058182pt;}
.wsfc{word-spacing:-0.053134pt;}
.ws62{word-spacing:-0.051466pt;}
.ws89{word-spacing:-0.042507pt;}
.ws22{word-spacing:0.000000pt;}
.ws40{word-spacing:0.031881pt;}
.ws7d{word-spacing:0.318805pt;}
.ws5b{word-spacing:0.357062pt;}
.ws37{word-spacing:0.382566pt;}
.ws65{word-spacing:0.463192pt;}
.wse8{word-spacing:1.338982pt;}
.ws86{word-spacing:1.721549pt;}
.wse2{word-spacing:1.753429pt;}
.wsd5{word-spacing:1.791686pt;}
.ws74{word-spacing:2.269894pt;}
.wsae{word-spacing:2.677965pt;}
.wsed{word-spacing:2.741726pt;}
.ws13c{word-spacing:2.762961pt;}
.wsc8{word-spacing:3.895801pt;}
.wsf3{word-spacing:4.686438pt;}
.ws70{word-spacing:4.884098pt;}
.ws32{word-spacing:5.419691pt;}
.ws3c{word-spacing:6.669408pt;}
.ws42{word-spacing:6.694912pt;}
.ws116{word-spacing:7.332474pt;}
.ws10b{word-spacing:7.385607pt;}
.ws149{word-spacing:7.491875pt;}
.ws132{word-spacing:7.598143pt;}
.ws118{word-spacing:7.651277pt;}
.ws12e{word-spacing:7.704411pt;}
.ws111{word-spacing:7.757545pt;}
.ws114{word-spacing:7.810678pt;}
.ws117{word-spacing:7.863812pt;}
.ws115{word-spacing:7.916946pt;}
.ws14d{word-spacing:7.970080pt;}
.ws11c{word-spacing:8.076348pt;}
.ws13b{word-spacing:8.288883pt;}
.ws112{word-spacing:8.607686pt;}
.ws73{word-spacing:9.946726pt;}
.ws103{word-spacing:10.148569pt;}
.ws48{word-spacing:11.005160pt;}
.wsf1{word-spacing:11.094426pt;}
.ws72{word-spacing:11.413231pt;}
.wsee{word-spacing:12.114603pt;}
.ws15c{word-spacing:12.167655pt;}
.wsf8{word-spacing:15.175134pt;}
.ws10{word-spacing:16.116377pt;}
.wsf6{word-spacing:16.131550pt;}
.wsf0{word-spacing:16.450355pt;}
.ws11{word-spacing:16.698196pt;}
.ws21{word-spacing:17.640444pt;}
.ws9b{word-spacing:17.945111pt;}
.ws96{word-spacing:20.326846pt;}
.wse1{word-spacing:20.722347pt;}
.wsd6{word-spacing:20.786108pt;}
.ws87{word-spacing:21.583361pt;}
.ws9a{word-spacing:22.774249pt;}
.ws6b{word-spacing:28.358162pt;}
.ws152{word-spacing:28.532886pt;}
.ws33{word-spacing:28.699847pt;}
.ws142{word-spacing:28.798556pt;}
.ws12c{word-spacing:29.223627pt;}
.ws106{word-spacing:29.298014pt;}
.ws145{word-spacing:29.383028pt;}
.ws148{word-spacing:29.595564pt;}
.ws146{word-spacing:29.754965pt;}
.ws159{word-spacing:30.180036pt;}
.ws123{word-spacing:30.605107pt;}
.ws154{word-spacing:30.658241pt;}
.ws11a{word-spacing:30.732628pt;}
.ws104{word-spacing:30.764509pt;}
.ws122{word-spacing:31.030178pt;}
.ws140{word-spacing:31.136446pt;}
.ws135{word-spacing:31.242714pt;}
.ws110{word-spacing:31.689038pt;}
.ws108{word-spacing:31.742172pt;}
.ws14c{word-spacing:31.986588pt;}
.wsfd{word-spacing:32.358525pt;}
.ws127{word-spacing:32.624194pt;}
.wsfb{word-spacing:33.102399pt;}
.wsff{word-spacing:33.261801pt;}
.ws12a{word-spacing:33.314934pt;}
.ws15b{word-spacing:33.368068pt;}
.ws102{word-spacing:33.421202pt;}
.ws101{word-spacing:33.740005pt;}
.wsfe{word-spacing:33.899407pt;}
.ws147{word-spacing:34.218210pt;}
.ws13e{word-spacing:38.043849pt;}
.ws126{word-spacing:38.096982pt;}
.ws0{word-spacing:38.900600pt;}
.ws109{word-spacing:38.947124pt;}
.ws10f{word-spacing:39.000258pt;}
.ws113{word-spacing:39.531597pt;}
.ws124{word-spacing:39.903534pt;}
.ws12f{word-spacing:39.956668pt;}
.ws10d{word-spacing:40.116069pt;}
.ws119{word-spacing:40.381739pt;}
.ws14e{word-spacing:40.434873pt;}
.ws137{word-spacing:40.647408pt;}
.ws107{word-spacing:40.859943pt;}
.ws143{word-spacing:41.072479pt;}
.ws105{word-spacing:41.285014pt;}
.ws12d{word-spacing:41.338148pt;}
.ws129{word-spacing:41.922621pt;}
.ws15a{word-spacing:41.975755pt;}
.ws156{word-spacing:42.028889pt;}
.ws128{word-spacing:42.188290pt;}
.ws134{word-spacing:42.241424pt;}
.ws151{word-spacing:42.825897pt;}
.ws11b{word-spacing:42.932164pt;}
.ws83{word-spacing:44.798525pt;}
.ws17{word-spacing:49.534444pt;}
.wsf4{word-spacing:117.766690pt;}
.ws66{word-spacing:146.003747pt;}
.ws13f{word-spacing:162.238948pt;}
.ws10a{word-spacing:163.195358pt;}
.ws10e{word-spacing:163.726697pt;}
.ws10c{word-spacing:164.098634pt;}
.ws139{word-spacing:164.842508pt;}
.ws121{word-spacing:165.161311pt;}
.ws120{word-spacing:165.267579pt;}
.ws12b{word-spacing:165.373846pt;}
.ws125{word-spacing:165.426980pt;}
.ws133{word-spacing:165.533248pt;}
.ws144{word-spacing:165.639516pt;}
.ws7e{word-spacing:189.784815pt;}
.ws80{word-spacing:190.358665pt;}
.ws81{word-spacing:190.422426pt;}
.ws8c{word-spacing:212.675038pt;}
.ws7f{word-spacing:252.206899pt;}
.ws8d{word-spacing:275.097122pt;}
.ws14b{word-spacing:298.421049pt;}
.ws13a{word-spacing:299.271190pt;}
.ws13d{word-spacing:299.377458pt;}
.wsf5{word-spacing:302.801306pt;}
.wsec{word-spacing:323.672596pt;}
.ws82{word-spacing:338.800804pt;}
.wse6{word-spacing:377.369873pt;}
.ws150{word-spacing:430.936912pt;}
.ws155{word-spacing:431.840188pt;}
.ws14f{word-spacing:432.584062pt;}
.ws153{word-spacing:433.009133pt;}
.ws158{word-spacing:566.640807pt;}
.ws157{word-spacing:566.959611pt;}
.ws9c{word-spacing:732.359612pt;}
._43{margin-left:-31.485220pt;}
._44{margin-left:-24.917844pt;}
._3f{margin-left:-10.421060pt;}
._15{margin-left:-6.962689pt;}
._11{margin-left:-5.929779pt;}
._8{margin-left:-4.928253pt;}
._d{margin-left:-3.470113pt;}
._1{margin-left:-1.989340pt;}
._b{margin-left:-0.908597pt;}
._9{width:1.017786pt;}
._0{width:2.065853pt;}
._2{width:3.658283pt;}
._55{width:4.590797pt;}
._5a{width:6.099551pt;}
._74{width:6.994397pt;}
._1e{width:7.933453pt;}
._5c{width:9.207087pt;}
._41{width:10.911107pt;}
._4f{width:14.154957pt;}
._42{width:16.565203pt;}
._a{width:17.593236pt;}
._1a{width:19.141061pt;}
._4{width:20.112595pt;}
._3c{width:21.257929pt;}
._f{width:22.150583pt;}
._6{width:23.876878pt;}
._3{width:25.600021pt;}
._e{width:27.065772pt;}
._14{width:28.475698pt;}
._13{width:29.796246pt;}
._16{width:30.724869pt;}
._18{width:31.816772pt;}
._c{width:33.163664pt;}
._20{width:34.118809pt;}
._12{width:35.343441pt;}
._5{width:36.392361pt;}
._21{width:38.309073pt;}
._40{width:39.508754pt;}
._17{width:41.042538pt;}
._73{width:42.512993pt;}
._3e{width:43.636578pt;}
._3d{width:46.418057pt;}
._7{width:48.178567pt;}
._19{width:51.409753pt;}
._2a{width:52.378916pt;}
._72{width:53.949906pt;}
._3b{width:56.048369pt;}
._5b{width:57.427377pt;}
._2c{width:63.761067pt;}
._57{width:66.568831pt;}
._5f{width:67.622716pt;}
._45{width:74.982337pt;}
._1b{width:80.117720pt;}
._10{width:84.164373pt;}
._64{width:91.021205pt;}
._26{width:98.627743pt;}
._49{width:102.028254pt;}
._2b{width:110.306645pt;}
._46{width:112.363923pt;}
._29{width:113.982567pt;}
._4a{width:115.715872pt;}
._61{width:117.598706pt;}
._5e{width:120.510221pt;}
._48{width:124.409916pt;}
._1f{width:128.032732pt;}
._6c{width:130.280783pt;}
._37{width:133.196868pt;}
._6d{width:134.330923pt;}
._4d{width:137.466649pt;}
._23{width:140.623842pt;}
._4b{width:141.885297pt;}
._27{width:146.003747pt;}
._68{width:147.075447pt;}
._5d{width:150.805464pt;}
._58{width:152.284727pt;}
._4e{width:157.064452pt;}
._60{width:158.990513pt;}
._62{width:171.876614pt;}
._25{width:178.325306pt;}
._1d{width:183.792516pt;}
._63{width:200.488093pt;}
._22{width:207.423252pt;}
._52{width:210.033125pt;}
._65{width:221.172183pt;}
._50{width:228.593971pt;}
._66{width:231.176294pt;}
._1c{width:244.572593pt;}
._53{width:252.242945pt;}
._54{width:255.622801pt;}
._56{width:259.299161pt;}
._24{width:261.229002pt;}
._4c{width:266.478920pt;}
._70{width:274.385292pt;}
._28{width:280.145759pt;}
._71{width:287.902638pt;}
._2d{width:307.902191pt;}
._51{width:315.026596pt;}
._2f{width:331.940113pt;}
._36{width:334.681839pt;}
._2e{width:339.081353pt;}
._6a{width:343.776455pt;}
._67{width:345.612780pt;}
._59{width:357.676362pt;}
._30{width:363.119275pt;}
._6b{width:385.890645pt;}
._32{width:394.362197pt;}
._69{width:397.884096pt;}
._3a{width:409.346048pt;}
._6e{width:411.163189pt;}
._38{width:417.252420pt;}
._31{width:442.884369pt;}
._35{width:446.199945pt;}
._6f{width:464.890124pt;}
._33{width:474.127292pt;}
._34{width:505.306453pt;}
._39{width:528.196676pt;}
._47{width:612.567613pt;}
.fsa{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs9{font-size:51.465592pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs8{font-size:77.198711pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:54.637333pt;}
.ya8{bottom:94.488000pt;}
.y86{bottom:100.797333pt;}
.y18e{bottom:103.498667pt;}
.y155{bottom:110.428000pt;}
.ya7{bottom:113.749333pt;}
.y18d{bottom:119.438667pt;}
.y85{bottom:120.590667pt;}
.y121{bottom:125.598667pt;}
.y154{bottom:126.368000pt;}
.ya6{bottom:133.010667pt;}
.y18c{bottom:135.378667pt;}
.y84{bottom:139.852000pt;}
.y153{bottom:142.309333pt;}
.y43{bottom:143.748000pt;}
.ycb{bottom:144.582667pt;}
.y120{bottom:144.860000pt;}
.y18b{bottom:151.318667pt;}
.ya5{bottom:152.272000pt;}
.y152{bottom:158.249333pt;}
.y83{bottom:159.112000pt;}
.y42{bottom:163.009333pt;}
.yca{bottom:163.844000pt;}
.y11f{bottom:164.652000pt;}
.y18a{bottom:167.260000pt;}
.ya4{bottom:171.532000pt;}
.y20{bottom:173.358667pt;}
.y151{bottom:174.189333pt;}
.y82{bottom:178.373333pt;}
.y41{bottom:182.269333pt;}
.yc9{bottom:183.105333pt;}
.y189{bottom:183.200000pt;}
.y11e{bottom:183.913333pt;}
.y150{bottom:190.129333pt;}
.ya3{bottom:190.793333pt;}
.y1f{bottom:197.141333pt;}
.y81{bottom:197.634667pt;}
.y188{bottom:199.140000pt;}
.y40{bottom:201.530667pt;}
.yc8{bottom:202.366667pt;}
.y11d{bottom:203.705333pt;}
.y14f{bottom:206.069333pt;}
.y64{bottom:207.669051pt;}
.y187{bottom:215.080000pt;}
.y1e{bottom:216.402667pt;}
.y80{bottom:216.896000pt;}
.ya2{bottom:220.346667pt;}
.y3f{bottom:220.792000pt;}
.yc7{bottom:221.626667pt;}
.y14e{bottom:222.009333pt;}
.y11c{bottom:223.498667pt;}
.y186{bottom:231.020000pt;}
.y63{bottom:231.632215pt;}
.y1d{bottom:235.664000pt;}
.y7f{bottom:236.157333pt;}
.y14d{bottom:237.950667pt;}
.yc6{bottom:240.888000pt;}
.y11b{bottom:242.760000pt;}
.y185{bottom:246.960000pt;}
.y3e{bottom:253.337333pt;}
.y14c{bottom:253.890667pt;}
.y1c{bottom:254.925333pt;}
.y7e{bottom:255.417333pt;}
.y62{bottom:255.595379pt;}
.ya1{bottom:260.038667pt;}
.yc5{bottom:260.149333pt;}
.y11a{bottom:262.552000pt;}
.y184{bottom:262.901333pt;}
.y14b{bottom:269.830667pt;}
.y3d{bottom:272.597333pt;}
.y1b{bottom:274.186667pt;}
.y7d{bottom:274.678667pt;}
.y183{bottom:278.841333pt;}
.y61{bottom:279.560158pt;}
.y119{bottom:282.344000pt;}
.y14a{bottom:285.770667pt;}
.yf8{bottom:287.634667pt;}
.yc4{bottom:289.702667pt;}
.y3c{bottom:291.858667pt;}
.y1a{bottom:293.448000pt;}
.y7c{bottom:293.940000pt;}
.y182{bottom:294.781333pt;}
.y149{bottom:301.710667pt;}
.y118{bottom:302.137333pt;}
.y18f{bottom:303.416000pt;}
.y60{bottom:303.523322pt;}
.yf7{bottom:306.894667pt;}
.y181{bottom:310.721333pt;}
.y19{bottom:312.708000pt;}
.ya0{bottom:312.877333pt;}
.y7b{bottom:313.201333pt;}
.y148{bottom:317.650667pt;}
.y117{bottom:321.929333pt;}
.y3b{bottom:324.404000pt;}
.y180{bottom:326.661333pt;}
.y5f{bottom:327.486486pt;}
.y18{bottom:331.969333pt;}
.y9f{bottom:332.138667pt;}
.y7a{bottom:332.993333pt;}
.y147{bottom:333.592000pt;}
.yf6{bottom:335.454667pt;}
.yc3{bottom:335.913333pt;}
.y116{bottom:341.721333pt;}
.y17f{bottom:342.601333pt;}
.y3a{bottom:343.665333pt;}
.y146{bottom:349.532000pt;}
.y5e{bottom:351.451264pt;}
.yf5{bottom:354.716000pt;}
.yc2{bottom:355.173333pt;}
.y17e{bottom:358.542667pt;}
.y115{bottom:360.982667pt;}
.y9e{bottom:363.908000pt;}
.y145{bottom:365.472000pt;}
.y79{bottom:366.069333pt;}
.y17{bottom:367.012000pt;}
.y39{bottom:373.218667pt;}
.yf4{bottom:373.977333pt;}
.yc1{bottom:374.434667pt;}
.y17d{bottom:374.482667pt;}
.y5d{bottom:375.414428pt;}
.y114{bottom:380.774667pt;}
.y144{bottom:381.412000pt;}
.y9d{bottom:383.169333pt;}
.y17c{bottom:390.422667pt;}
.yc0{bottom:393.696000pt;}
.y143{bottom:397.352000pt;}
.y78{bottom:398.726667pt;}
.y5c{bottom:399.377592pt;}
.y113{bottom:400.568000pt;}
.yf3{bottom:402.536000pt;}
.y17b{bottom:406.362667pt;}
.y9c{bottom:412.722667pt;}
.ybf{bottom:412.957333pt;}
.y142{bottom:413.292000pt;}
.y77{bottom:417.988000pt;}
.y38{bottom:419.428000pt;}
.y16{bottom:420.250667pt;}
.y112{bottom:420.360000pt;}
.yf2{bottom:421.797333pt;}
.y17a{bottom:422.302667pt;}
.y5b{bottom:423.342370pt;}
.y141{bottom:429.233333pt;}
.ybe{bottom:432.218667pt;}
.y179{bottom:438.242667pt;}
.y15{bottom:438.316000pt;}
.y37{bottom:438.689333pt;}
.y111{bottom:439.621333pt;}
.yf1{bottom:441.058667pt;}
.y140{bottom:445.173333pt;}
.y5a{bottom:447.305534pt;}
.y76{bottom:447.541333pt;}
.y178{bottom:454.184000pt;}
.y14{bottom:456.382667pt;}
.y36{bottom:457.950667pt;}
.y9b{bottom:458.533333pt;}
.y110{bottom:459.413333pt;}
.y13f{bottom:461.113333pt;}
.ybd{bottom:464.762667pt;}
.yf0{bottom:469.618667pt;}
.y177{bottom:470.124000pt;}
.y13{bottom:474.448000pt;}
.y13e{bottom:477.053333pt;}
.y9a{bottom:477.794667pt;}
.y10f{bottom:479.205333pt;}
.y59{bottom:483.336000pt;}
.ybc{bottom:484.024000pt;}
.yef{bottom:485.614667pt;}
.y176{bottom:486.064000pt;}
.y75{bottom:487.880000pt;}
.yee{bottom:488.880000pt;}
.y35{bottom:490.494667pt;}
.y12{bottom:492.513333pt;}
.y13d{bottom:492.993333pt;}
.y99{bottom:497.054667pt;}
.y10e{bottom:498.466667pt;}
.y175{bottom:502.004000pt;}
.ybb{bottom:503.285333pt;}
.y74{bottom:507.141333pt;}
.yed{bottom:508.140000pt;}
.y13c{bottom:508.934667pt;}
.y34{bottom:509.756000pt;}
.y11{bottom:510.578667pt;}
.y174{bottom:517.944000pt;}
.y10d{bottom:518.260000pt;}
.y58{bottom:519.842667pt;}
.yba{bottom:522.546667pt;}
.y13b{bottom:524.874667pt;}
.y10{bottom:528.644000pt;}
.y173{bottom:533.884000pt;}
.y73{bottom:536.694667pt;}
.yec{bottom:536.700000pt;}
.y10c{bottom:538.052000pt;}
.y98{bottom:539.673333pt;}
.y13a{bottom:540.814667pt;}
.yb9{bottom:541.808000pt;}
.y33{bottom:542.301333pt;}
.yf{bottom:546.710667pt;}
.y57{bottom:549.396000pt;}
.y172{bottom:549.825333pt;}
.yeb{bottom:555.961333pt;}
.y139{bottom:556.754667pt;}
.y10b{bottom:557.313333pt;}
.y97{bottom:558.934667pt;}
.yb8{bottom:561.068000pt;}
.ye{bottom:564.776000pt;}
.y171{bottom:565.765333pt;}
.y138{bottom:572.694667pt;}
.y32{bottom:574.845333pt;}
.y10a{bottom:577.105333pt;}
.y96{bottom:578.196000pt;}
.y72{bottom:581.681333pt;}
.y170{bottom:581.705333pt;}
.yd{bottom:582.841333pt;}
.yea{bottom:584.521333pt;}
.y137{bottom:588.634667pt;}
.yb7{bottom:593.613333pt;}
.y31{bottom:594.106667pt;}
.y56{bottom:595.605333pt;}
.y109{bottom:596.897333pt;}
.y95{bottom:597.457333pt;}
.y16f{bottom:597.645333pt;}
.yd8{bottom:600.080000pt;}
.yc{bottom:600.906667pt;}
.y71{bottom:600.942667pt;}
.ye9{bottom:603.781333pt;}
.y136{bottom:604.576000pt;}
.yb6{bottom:612.874667pt;}
.y16e{bottom:613.585333pt;}
.y55{bottom:614.866667pt;}
.y108{bottom:616.158667pt;}
.y94{bottom:616.718667pt;}
.yb{bottom:618.972000pt;}
.yd7{bottom:619.341333pt;}
.y70{bottom:620.204000pt;}
.y135{bottom:620.516000pt;}
.ye8{bottom:623.042667pt;}
.y16d{bottom:629.525333pt;}
.y30{bottom:630.636000pt;}
.yb5{bottom:632.134667pt;}
.y54{bottom:634.128000pt;}
.y107{bottom:635.950667pt;}
.y134{bottom:636.456000pt;}
.y93{bottom:636.510667pt;}
.ya{bottom:637.038667pt;}
.y16c{bottom:645.466667pt;}
.y6f{bottom:649.757333pt;}
.yb4{bottom:651.396000pt;}
.ye7{bottom:651.602667pt;}
.y133{bottom:652.396000pt;}
.y53{bottom:653.389333pt;}
.yd6{bottom:654.384000pt;}
.y9{bottom:655.104000pt;}
.y106{bottom:655.744000pt;}
.y2f{bottom:660.189333pt;}
.y16b{bottom:661.406667pt;}
.y132{bottom:668.336000pt;}
.y92{bottom:669.586667pt;}
.yb3{bottom:670.657333pt;}
.ye6{bottom:670.864000pt;}
.y52{bottom:672.650667pt;}
.y105{bottom:675.536000pt;}
.y16a{bottom:677.346667pt;}
.y8{bottom:682.129333pt;}
.y131{bottom:684.276000pt;}
.y6e{bottom:690.096000pt;}
.ye5{bottom:690.125333pt;}
.y51{bottom:691.910667pt;}
.y169{bottom:693.286667pt;}
.y104{bottom:694.797333pt;}
.y130{bottom:700.217333pt;}
.y91{bottom:704.544000pt;}
.y2e{bottom:706.400000pt;}
.yb2{bottom:707.186667pt;}
.yd5{bottom:707.622667pt;}
.y168{bottom:709.226667pt;}
.y6d{bottom:709.356000pt;}
.ye4{bottom:709.385333pt;}
.y50{bottom:711.172000pt;}
.y103{bottom:714.589333pt;}
.y12f{bottom:716.157333pt;}
.y90{bottom:723.805333pt;}
.y167{bottom:725.166667pt;}
.y2d{bottom:725.661333pt;}
.yb1{bottom:726.448000pt;}
.yd4{bottom:726.884000pt;}
.y4f{bottom:730.433333pt;}
.y12e{bottom:732.097333pt;}
.y102{bottom:734.382667pt;}
.ye3{bottom:737.945333pt;}
.y6c{bottom:739.533333pt;}
.y166{bottom:741.108000pt;}
.y8f{bottom:743.065333pt;}
.yb0{bottom:745.709333pt;}
.yd3{bottom:746.145333pt;}
.y12d{bottom:748.037333pt;}
.y4e{bottom:749.694667pt;}
.y101{bottom:754.174667pt;}
.y165{bottom:757.048000pt;}
.ye2{bottom:757.206667pt;}
.y7{bottom:758.138667pt;}
.y2c{bottom:758.205333pt;}
.y6b{bottom:758.794667pt;}
.y12c{bottom:763.977333pt;}
.yaf{bottom:764.970667pt;}
.yd2{bottom:765.406667pt;}
.y4d{bottom:768.956000pt;}
.y8e{bottom:772.618667pt;}
.y164{bottom:772.988000pt;}
.y100{bottom:773.436000pt;}
.y2b{bottom:777.466667pt;}
.y12b{bottom:779.917333pt;}
.yd1{bottom:784.668000pt;}
.ye1{bottom:785.766667pt;}
.y4c{bottom:788.216000pt;}
.y163{bottom:788.928000pt;}
.y6a{bottom:788.972000pt;}
.yff{bottom:793.228000pt;}
.yae{bottom:794.524000pt;}
.y6{bottom:795.417333pt;}
.y12a{bottom:795.858667pt;}
.y2a{bottom:796.728000pt;}
.yd0{bottom:803.928000pt;}
.y162{bottom:804.868000pt;}
.y69{bottom:808.233333pt;}
.y129{bottom:811.798667pt;}
.yfe{bottom:813.020000pt;}
.y8d{bottom:813.780000pt;}
.ye0{bottom:814.325333pt;}
.y29{bottom:815.988000pt;}
.y4b{bottom:817.769333pt;}
.yad{bottom:818.434667pt;}
.y5{bottom:819.328000pt;}
.y161{bottom:820.808000pt;}
.y128{bottom:827.738667pt;}
.yfd{bottom:832.813333pt;}
.ydf{bottom:833.586667pt;}
.y160{bottom:836.749333pt;}
.y68{bottom:838.410667pt;}
.ycf{bottom:838.970667pt;}
.y4{bottom:843.237333pt;}
.y127{bottom:843.678667pt;}
.y8c{bottom:846.270667pt;}
.y28{bottom:848.533333pt;}
.yfc{bottom:852.605333pt;}
.y15f{bottom:852.689333pt;}
.yde{bottom:852.848000pt;}
.y4a{bottom:863.980000pt;}
.yac{bottom:864.644000pt;}
.y126{bottom:865.858667pt;}
.y27{bottom:867.794667pt;}
.y67{bottom:868.589333pt;}
.y15e{bottom:868.629333pt;}
.yfb{bottom:872.397333pt;}
.y8b{bottom:878.760000pt;}
.ydd{bottom:881.408000pt;}
.y49{bottom:883.241333pt;}
.yab{bottom:883.905333pt;}
.y15d{bottom:884.569333pt;}
.y125{bottom:885.118667pt;}
.y26{bottom:887.056000pt;}
.y3{bottom:890.554667pt;}
.yfa{bottom:892.190667pt;}
.yce{bottom:892.209333pt;}
.y66{bottom:894.032000pt;}
.y15c{bottom:900.509333pt;}
.ydc{bottom:900.668000pt;}
.y48{bottom:902.502667pt;}
.yaa{bottom:903.166667pt;}
.y8a{bottom:905.493333pt;}
.ycd{bottom:911.470667pt;}
.y65{bottom:913.293333pt;}
.y2{bottom:914.465333pt;}
.y15b{bottom:916.449333pt;}
.y124{bottom:920.161333pt;}
.y25{bottom:923.585333pt;}
.yf9{bottom:925.266667pt;}
.ydb{bottom:929.228000pt;}
.ycc{bottom:930.732000pt;}
.y15a{bottom:932.390667pt;}
.y47{bottom:935.046667pt;}
.ya9{bottom:938.368000pt;}
.y24{bottom:942.846667pt;}
.y89{bottom:944.016000pt;}
.y1{bottom:947.673333pt;}
.y159{bottom:948.330667pt;}
.y46{bottom:954.308000pt;}
.yda{bottom:957.788000pt;}
.y88{bottom:963.277333pt;}
.y158{bottom:964.270667pt;}
.y23{bottom:972.400000pt;}
.y45{bottom:973.569333pt;}
.yd9{bottom:977.049333pt;}
.y123{bottom:979.348000pt;}
.y157{bottom:980.210667pt;}
.y87{bottom:982.537333pt;}
.y44{bottom:992.830667pt;}
.y156{bottom:996.150667pt;}
.y122{bottom:998.608000pt;}
.y22{bottom:1012.090667pt;}
.ha{height:20.623534pt;}
.h16{height:21.583121pt;}
.h15{height:36.981171pt;}
.h6{height:43.694582pt;}
.h5{height:47.285075pt;}
.h14{height:47.820800pt;}
.h9{height:47.884561pt;}
.hc{height:47.948322pt;}
.h7{height:49.849534pt;}
.hf{height:51.870867pt;}
.h10{height:51.876201pt;}
.h3{height:53.865199pt;}
.h12{height:55.060201pt;}
.hb{height:57.461313pt;}
.he{height:57.976232pt;}
.hd{height:58.053431pt;}
.h13{height:60.945894pt;}
.h11{height:62.528555pt;}
.h4{height:67.674201pt;}
.h8{height:69.045231pt;}
.h2{height:77.360400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:73.238667pt;}
.x1e{left:78.108000pt;}
.x1d{left:82.977333pt;}
.xb{left:94.488000pt;}
.x19{left:102.290667pt;}
.x11{left:104.780989pt;}
.xc{left:112.434667pt;}
.xf{left:113.566667pt;}
.xe{left:117.901333pt;}
.x20{left:121.892000pt;}
.x1a{left:126.565333pt;}
.x1f{left:130.352000pt;}
.xa{left:133.508000pt;}
.x18{left:142.404000pt;}
.x9{left:155.202667pt;}
.x16{left:157.173333pt;}
.x2{left:159.897333pt;}
.x12{left:174.212000pt;}
.x1{left:182.521333pt;}
.x10{left:209.234667pt;}
.x3{left:216.265333pt;}
.x1b{left:226.166667pt;}
.x17{left:248.552000pt;}
.x13{left:251.414667pt;}
.x5{left:260.937333pt;}
.x14{left:273.048000pt;}
.x6{left:279.009333pt;}
.x15{left:302.585333pt;}
.x7{left:321.620000pt;}
.x4{left:336.657333pt;}
.x8{left:365.088000pt;}
.x21{left:389.048000pt;}
.xd{left:392.949333pt;}
.x1c{left:492.561333pt;}
}




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