
    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_8c010e8a6d6eb437b8818997.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ac34e4d71d77a283e7095e19.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.734000;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_ac34e4d71d77a283e7095e19.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;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_c20a63df79fa51d136846e30.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2cce673d5565a272e727beec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.840000;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_4b20a3c3ec4f54e28b16290e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_75791c6547868b0228fd9fc3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_8deb17094966e8f8628fbbfb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_e1e633c0097c232d55df5539.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;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_4373e52f1054f5d6a9f7b15d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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_b4addaad5a550d764b27d095.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_cdd27879804dd937981ab418.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.070312;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_02a681f676859a4294e475c7.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_fb46a31e35d1c9b2ab8ec07e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_40d1f20a99b09c61d7a584f4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740234;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_56be2e928843f6ae8c440745.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.730957;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_6672b778eb67f14ad04a10c2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.575000;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_118eeb238d8e57edc1b96964.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.575000;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_ed3b68d69cdaf186ecbd2dd1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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_eb636af9af2aeb0539a9a3b7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;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_e096f610a9f37fcf31bf3881.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.592000;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);}
.ve{vertical-align:-53.576640px;}
.v12{vertical-align:-51.040080px;}
.vd{vertical-align:-40.182480px;}
.v9{vertical-align:-26.788320px;}
.v3{vertical-align:-20.880000px;}
.v7{vertical-align:-18.000000px;}
.vc{vertical-align:-13.394160px;}
.v4{vertical-align:-6.120000px;}
.v2{vertical-align:-2.833200px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:5.054400px;}
.v5{vertical-align:6.120000px;}
.v11{vertical-align:13.394160px;}
.v8{vertical-align:18.000000px;}
.v14{vertical-align:19.440000px;}
.v6{vertical-align:20.996640px;}
.v1{vertical-align:24.120000px;}
.vb{vertical-align:26.788320px;}
.v13{vertical-align:30.960000px;}
.v10{vertical-align:35.128080px;}
.va{vertical-align:40.182480px;}
.v15{vertical-align:46.440000px;}
.lsd2{letter-spacing:-2.031840px;}
.lsc8{letter-spacing:-1.314000px;}
.lsd0{letter-spacing:-1.194000px;}
.ls61{letter-spacing:-0.841680px;}
.ls62{letter-spacing:-0.781560px;}
.lscf{letter-spacing:-0.774000px;}
.ls60{letter-spacing:-0.661320px;}
.lscc{letter-spacing:-0.660000px;}
.lscb{letter-spacing:-0.600000px;}
.ls9b{letter-spacing:-0.587160px;}
.ls5f{letter-spacing:-0.480960px;}
.ls2f{letter-spacing:-0.420840px;}
.ls27{letter-spacing:-0.300600px;}
.lsd1{letter-spacing:-0.298800px;}
.lsd4{letter-spacing:-0.270000px;}
.ls6b{letter-spacing:-0.252000px;}
.ls81{letter-spacing:-0.240480px;}
.ls95{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.180360px;}
.ls29{letter-spacing:-0.162000px;}
.ls6a{letter-spacing:-0.126360px;}
.ls26{letter-spacing:-0.120240px;}
.ls1c{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.095760px;}
.ls1d{letter-spacing:-0.083880px;}
.ls1e{letter-spacing:-0.072000px;}
.lsc7{letter-spacing:-0.066240px;}
.ls25{letter-spacing:-0.060120px;}
.lscd{letter-spacing:-0.060000px;}
.lsd3{letter-spacing:-0.059760px;}
.ls6c{letter-spacing:-0.054000px;}
.lsae{letter-spacing:-0.042120px;}
.ls0{letter-spacing:0.000000px;}
.ls97{letter-spacing:0.006012px;}
.lsb9{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.018720px;}
.ls15{letter-spacing:0.024048px;}
.lsc3{letter-spacing:0.033120px;}
.ls66{letter-spacing:0.048096px;}
.ls9d{letter-spacing:0.054108px;}
.lsc9{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.060120px;}
.lsb5{letter-spacing:0.081000px;}
.ls53{letter-spacing:0.090180px;}
.ls3e{letter-spacing:0.095760px;}
.lsc2{letter-spacing:0.102204px;}
.ls1a{letter-spacing:0.108000px;}
.lsc6{letter-spacing:0.119520px;}
.lsc4{letter-spacing:0.120000px;}
.ls43{letter-spacing:0.120240px;}
.ls3{letter-spacing:0.143640px;}
.ls5{letter-spacing:0.144000px;}
.ls49{letter-spacing:0.144288px;}
.ls70{letter-spacing:0.150300px;}
.ls30{letter-spacing:0.162000px;}
.ls37{letter-spacing:0.162324px;}
.ls4{letter-spacing:0.167760px;}
.lsb0{letter-spacing:0.172800px;}
.lsc5{letter-spacing:0.179280px;}
.ls2c{letter-spacing:0.180360px;}
.ls2b{letter-spacing:0.186372px;}
.ls8a{letter-spacing:0.210420px;}
.ls31{letter-spacing:0.216000px;}
.lsad{letter-spacing:0.232200px;}
.lsce{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.240480px;}
.ls20{letter-spacing:0.300600px;}
.lsa1{letter-spacing:0.305280px;}
.lsb6{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.342720px;}
.lsc1{letter-spacing:0.378000px;}
.ls5d{letter-spacing:0.419400px;}
.lsd{letter-spacing:0.420840px;}
.ls21{letter-spacing:0.480960px;}
.lsaf{letter-spacing:0.486000px;}
.ls32{letter-spacing:0.492984px;}
.ls2a{letter-spacing:0.503280px;}
.ls52{letter-spacing:0.505008px;}
.ls23{letter-spacing:0.541080px;}
.ls24{letter-spacing:0.601200px;}
.ls1f{letter-spacing:0.661320px;}
.ls7f{letter-spacing:0.685800px;}
.lsca{letter-spacing:0.714000px;}
.ls63{letter-spacing:0.750600px;}
.lsf{letter-spacing:0.781560px;}
.ls9{letter-spacing:0.841680px;}
.ls34{letter-spacing:0.871740px;}
.lsa{letter-spacing:0.901800px;}
.ls42{letter-spacing:0.907812px;}
.ls5b{letter-spacing:0.925848px;}
.ls5c{letter-spacing:0.931860px;}
.ls4e{letter-spacing:0.961920px;}
.ls4d{letter-spacing:1.022040px;}
.ls40{letter-spacing:1.142280px;}
.ls46{letter-spacing:1.202400px;}
.ls36{letter-spacing:1.262520px;}
.ls3b{letter-spacing:1.298592px;}
.ls3c{letter-spacing:1.304604px;}
.ls2d{letter-spacing:1.496988px;}
.ls45{letter-spacing:1.503000px;}
.ls8b{letter-spacing:1.527048px;}
.ls48{letter-spacing:1.563120px;}
.ls94{letter-spacing:1.566000px;}
.ls93{letter-spacing:1.582200px;}
.ls8c{letter-spacing:1.617228px;}
.ls12{letter-spacing:1.623240px;}
.ls2{letter-spacing:1.800000px;}
.ls88{letter-spacing:1.965924px;}
.ls38{letter-spacing:1.983960px;}
.ls1{letter-spacing:2.250000px;}
.ls85{letter-spacing:2.338668px;}
.ls2e{letter-spacing:2.344680px;}
.ls4a{letter-spacing:2.374740px;}
.ls4b{letter-spacing:2.434320px;}
.ls57{letter-spacing:2.663316px;}
.ls8f{letter-spacing:2.681352px;}
.ls86{letter-spacing:2.687364px;}
.ls3d{letter-spacing:2.705400px;}
.ls99{letter-spacing:2.999988px;}
.ls4f{letter-spacing:3.030048px;}
.ls7c{letter-spacing:3.036060px;}
.ls7e{letter-spacing:3.054096px;}
.ls35{letter-spacing:3.066120px;}
.ls3f{letter-spacing:3.368232px;}
.ls7d{letter-spacing:3.408804px;}
.ls33{letter-spacing:3.426840px;}
.ls89{letter-spacing:3.522636px;}
.ls39{letter-spacing:3.617280px;}
.ls92{letter-spacing:3.661308px;}
.ls5a{letter-spacing:3.733452px;}
.lsb{letter-spacing:3.787560px;}
.ls90{letter-spacing:3.805596px;}
.ls84{letter-spacing:4.082148px;}
.ls98{letter-spacing:4.100184px;}
.ls91{letter-spacing:4.130244px;}
.lsc{letter-spacing:4.148280px;}
.ls6d{letter-spacing:4.311360px;}
.ls41{letter-spacing:4.509000px;}
.ls8d{letter-spacing:4.521024px;}
.ls96{letter-spacing:4.533048px;}
.ls65{letter-spacing:4.851684px;}
.ls16{letter-spacing:4.869720px;}
.ls8e{letter-spacing:4.875732px;}
.ls50{letter-spacing:4.887756px;}
.ls80{letter-spacing:5.130000px;}
.ls10{letter-spacing:5.206392px;}
.ls56{letter-spacing:5.218416px;}
.ls55{letter-spacing:5.224428px;}
.ls44{letter-spacing:5.230440px;}
.ls54{letter-spacing:5.236452px;}
.ls3a{letter-spacing:5.591160px;}
.ls6f{letter-spacing:5.751360px;}
.ls4c{letter-spacing:5.886000px;}
.ls13{letter-spacing:5.951880px;}
.ls5e{letter-spacing:6.096600px;}
.ls14{letter-spacing:6.246468px;}
.ls68{letter-spacing:6.264504px;}
.ls67{letter-spacing:6.282540px;}
.lse{letter-spacing:6.312600px;}
.ls83{letter-spacing:6.643260px;}
.ls47{letter-spacing:6.649272px;}
.ls6e{letter-spacing:6.673320px;}
.ls58{letter-spacing:7.034040px;}
.ls64{letter-spacing:7.328628px;}
.ls59{letter-spacing:7.394760px;}
.ls7{letter-spacing:7.755480px;}
.ls9c{letter-spacing:8.116200px;}
.ls17{letter-spacing:8.476920px;}
.ls87{letter-spacing:10.641240px;}
.ls82{letter-spacing:11.362680px;}
.ls51{letter-spacing:22.027968px;}
.ls69{letter-spacing:24.534972px;}
.ls18{letter-spacing:29.646000px;}
.ls19{letter-spacing:53.028000px;}
.lsb2{letter-spacing:53.208000px;}
.lsa4{letter-spacing:64.566000px;}
.lsbf{letter-spacing:73.008000px;}
.lsa2{letter-spacing:89.370000px;}
.lsa9{letter-spacing:89.442000px;}
.lsb1{letter-spacing:93.546000px;}
.ls9e{letter-spacing:114.588000px;}
.lsc0{letter-spacing:146.466000px;}
.lsbe{letter-spacing:260.586000px;}
.ls78{letter-spacing:266.490000px;}
.lsba{letter-spacing:285.048000px;}
.lsbc{letter-spacing:285.066000px;}
.ls75{letter-spacing:290.768400px;}
.lsb3{letter-spacing:309.528000px;}
.lsb4{letter-spacing:309.888000px;}
.lsb8{letter-spacing:309.906000px;}
.ls7a{letter-spacing:335.610000px;}
.ls74{letter-spacing:335.664000px;}
.lsb7{letter-spacing:370.710000px;}
.ls7b{letter-spacing:378.108000px;}
.ls72{letter-spacing:378.126000px;}
.ls79{letter-spacing:411.210000px;}
.ls76{letter-spacing:437.886000px;}
.ls71{letter-spacing:473.850000px;}
.lsbb{letter-spacing:493.830000px;}
.ls73{letter-spacing:521.748000px;}
.ls77{letter-spacing:554.850000px;}
.lsbd{letter-spacing:567.666000px;}
.ls9a{letter-spacing:847.309320px;}
.lsa0{letter-spacing:898.668000px;}
.lsa3{letter-spacing:902.610000px;}
.ls9f{letter-spacing:1005.588000px;}
.lsa5{letter-spacing:1016.748000px;}
.lsa7{letter-spacing:1119.006000px;}
.lsab{letter-spacing:1444.770000px;}
.lsaa{letter-spacing:1448.730000px;}
.lsa8{letter-spacing:1500.930000px;}
.lsac{letter-spacing:1562.850000px;}
.lsa6{letter-spacing:1629.126000px;}
.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;}
}
.wsd8{word-spacing:-28.745040px;}
.ws49{word-spacing:-23.486400px;}
.ws3{word-spacing:-23.318640px;}
.ws47{word-spacing:-23.234760px;}
.ws4{word-spacing:-19.944000px;}
.ws74{word-spacing:-17.975880px;}
.ws72{word-spacing:-17.855640px;}
.ws71{word-spacing:-17.735400px;}
.ws73{word-spacing:-17.675280px;}
.ws5f{word-spacing:-17.585100px;}
.ws60{word-spacing:-17.555040px;}
.ws5{word-spacing:-17.494920px;}
.wsb2{word-spacing:-17.388000px;}
.ws9{word-spacing:-17.314560px;}
.ws5e{word-spacing:-17.254440px;}
.ws8{word-spacing:-17.194320px;}
.ws6{word-spacing:-17.134200px;}
.ws4a{word-spacing:-17.013960px;}
.ws7{word-spacing:-16.953840px;}
.ws70{word-spacing:-16.893720px;}
.ws83{word-spacing:-16.833600px;}
.wsa{word-spacing:-16.773480px;}
.ws82{word-spacing:-16.713360px;}
.wsc{word-spacing:-16.653240px;}
.wsb{word-spacing:-16.593120px;}
.ws75{word-spacing:-16.533000px;}
.wsbb{word-spacing:-16.472880px;}
.wsd{word-spacing:-16.412760px;}
.wsc2{word-spacing:-16.292520px;}
.ws99{word-spacing:-16.232400px;}
.ws9a{word-spacing:-16.052040px;}
.ws61{word-spacing:-15.228000px;}
.wsb9{word-spacing:-15.120000px;}
.wsd5{word-spacing:-15.102720px;}
.wsd4{word-spacing:-15.036480px;}
.ws48{word-spacing:-15.012000px;}
.ws10{word-spacing:-14.904000px;}
.wsf{word-spacing:-14.850000px;}
.wsd7{word-spacing:-13.745280px;}
.wsdb{word-spacing:-13.744800px;}
.wsd6{word-spacing:-13.625280px;}
.wsd9{word-spacing:-13.326480px;}
.wsd2{word-spacing:-12.528000px;}
.wsd1{word-spacing:-12.420000px;}
.wsb5{word-spacing:-12.258000px;}
.ws4b{word-spacing:-12.150000px;}
.wsdc{word-spacing:-12.042000px;}
.wse{word-spacing:-11.709360px;}
.wscb{word-spacing:-11.667240px;}
.wsda{word-spacing:-11.593440px;}
.ws62{word-spacing:-11.060280px;}
.wsab{word-spacing:-10.916640px;}
.wsad{word-spacing:-10.820880px;}
.wsba{word-spacing:-10.808640px;}
.ws1{word-spacing:-10.440000px;}
.wsaa{word-spacing:-9.477000px;}
.wsb3{word-spacing:-8.352000px;}
.wsb1{word-spacing:-8.208000px;}
.ws30{word-spacing:-4.509000px;}
.ws4e{word-spacing:-4.148280px;}
.ws67{word-spacing:-4.028040px;}
.ws29{word-spacing:-3.787560px;}
.wsa0{word-spacing:-3.607200px;}
.ws2a{word-spacing:-3.426840px;}
.wsa3{word-spacing:-3.294000px;}
.ws2b{word-spacing:-3.066120px;}
.ws44{word-spacing:-2.705400px;}
.ws9f{word-spacing:-2.585160px;}
.ws53{word-spacing:-2.344680px;}
.ws7d{word-spacing:-2.214000px;}
.wseb{word-spacing:-2.124000px;}
.ws6b{word-spacing:-2.044080px;}
.ws52{word-spacing:-1.983960px;}
.ws6c{word-spacing:-1.863720px;}
.wsc7{word-spacing:-1.803600px;}
.ws65{word-spacing:-1.623240px;}
.wsa6{word-spacing:-1.512000px;}
.ws9d{word-spacing:-1.503000px;}
.ws7a{word-spacing:-1.442880px;}
.ws3b{word-spacing:-1.262520px;}
.ws78{word-spacing:-1.202400px;}
.ws3a{word-spacing:-1.142280px;}
.ws20{word-spacing:-0.901800px;}
.ws2c{word-spacing:-0.841680px;}
.wsa7{word-spacing:-0.810000px;}
.ws24{word-spacing:-0.781560px;}
.wse9{word-spacing:-0.714000px;}
.ws1a{word-spacing:-0.661320px;}
.ws31{word-spacing:-0.601200px;}
.ws21{word-spacing:-0.541080px;}
.wsd0{word-spacing:-0.486000px;}
.wsb8{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.420840px;}
.ws68{word-spacing:-0.378000px;}
.ws6a{word-spacing:-0.324000px;}
.ws22{word-spacing:-0.300600px;}
.ws5d{word-spacing:-0.270000px;}
.ws51{word-spacing:-0.240480px;}
.wse6{word-spacing:-0.240000px;}
.ws6e{word-spacing:-0.239400px;}
.ws69{word-spacing:-0.216000px;}
.wsf4{word-spacing:-0.198000px;}
.ws6f{word-spacing:-0.191520px;}
.ws26{word-spacing:-0.180360px;}
.ws15{word-spacing:-0.167760px;}
.ws19{word-spacing:-0.144000px;}
.ws12{word-spacing:-0.143640px;}
.wsf3{word-spacing:-0.126000px;}
.ws85{word-spacing:-0.120240px;}
.wsdf{word-spacing:-0.120000px;}
.wsf8{word-spacing:-0.119520px;}
.ws13{word-spacing:-0.083880px;}
.wsb7{word-spacing:-0.072000px;}
.wsdd{word-spacing:-0.066240px;}
.wse4{word-spacing:-0.066000px;}
.ws38{word-spacing:-0.060120px;}
.wse7{word-spacing:-0.060000px;}
.wsf9{word-spacing:-0.059760px;}
.ws59{word-spacing:-0.054000px;}
.wsf6{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.wse5{word-spacing:0.054000px;}
.wsf7{word-spacing:0.059760px;}
.wsed{word-spacing:0.060000px;}
.ws3f{word-spacing:0.060120px;}
.wsde{word-spacing:0.066240px;}
.ws18{word-spacing:0.072000px;}
.ws14{word-spacing:0.083880px;}
.ws11{word-spacing:0.095760px;}
.ws5c{word-spacing:0.108000px;}
.wse8{word-spacing:0.120000px;}
.ws43{word-spacing:0.120240px;}
.ws5a{word-spacing:0.162000px;}
.ws16{word-spacing:0.167760px;}
.ws27{word-spacing:0.180360px;}
.ws17{word-spacing:0.216000px;}
.ws46{word-spacing:0.270000px;}
.wsef{word-spacing:0.288000px;}
.wsfa{word-spacing:0.298800px;}
.ws45{word-spacing:0.300600px;}
.wsd3{word-spacing:0.324000px;}
.ws32{word-spacing:0.360720px;}
.ws4d{word-spacing:0.420840px;}
.ws5b{word-spacing:0.432000px;}
.wsbc{word-spacing:0.480960px;}
.wsf2{word-spacing:0.540000px;}
.ws1b{word-spacing:0.541080px;}
.wse1{word-spacing:0.588000px;}
.wsec{word-spacing:0.594000px;}
.wsea{word-spacing:0.600000px;}
.wsf5{word-spacing:0.606000px;}
.wsee{word-spacing:0.624000px;}
.wsa5{word-spacing:0.648000px;}
.wse0{word-spacing:0.660000px;}
.ws8f{word-spacing:0.661320px;}
.ws3d{word-spacing:0.721440px;}
.wse2{word-spacing:0.774000px;}
.wsa1{word-spacing:0.781560px;}
.wsf1{word-spacing:0.870000px;}
.ws3e{word-spacing:0.901800px;}
.wsf0{word-spacing:1.002000px;}
.wsc1{word-spacing:1.026000px;}
.ws64{word-spacing:1.262520px;}
.wsbd{word-spacing:1.350000px;}
.wse3{word-spacing:1.362000px;}
.ws9e{word-spacing:1.382760px;}
.ws37{word-spacing:1.623240px;}
.wsbe{word-spacing:1.728000px;}
.ws4f{word-spacing:1.743480px;}
.wsc5{word-spacing:1.863720px;}
.ws50{word-spacing:1.983960px;}
.ws7e{word-spacing:2.106000px;}
.wsc6{word-spacing:2.164320px;}
.ws57{word-spacing:2.344680px;}
.wsa4{word-spacing:2.430000px;}
.ws41{word-spacing:2.705400px;}
.wscc{word-spacing:2.825640px;}
.ws40{word-spacing:2.885760px;}
.ws2e{word-spacing:3.066120px;}
.ws84{word-spacing:3.246480px;}
.ws28{word-spacing:3.426840px;}
.wscf{word-spacing:3.510000px;}
.ws76{word-spacing:3.727440px;}
.ws2d{word-spacing:3.787560px;}
.wsbf{word-spacing:3.888000px;}
.ws9c{word-spacing:3.907800px;}
.ws77{word-spacing:4.088160px;}
.ws39{word-spacing:4.148280px;}
.ws33{word-spacing:4.448880px;}
.ws79{word-spacing:4.509000px;}
.ws34{word-spacing:4.629240px;}
.ws8a{word-spacing:4.689360px;}
.ws35{word-spacing:4.809600px;}
.ws88{word-spacing:4.869720px;}
.wsc8{word-spacing:4.929840px;}
.ws91{word-spacing:4.989960px;}
.ws58{word-spacing:5.170320px;}
.wsc0{word-spacing:5.346000px;}
.ws66{word-spacing:5.350680px;}
.ws2f{word-spacing:5.531040px;}
.wsc4{word-spacing:5.651280px;}
.ws7c{word-spacing:5.670000px;}
.wsc9{word-spacing:5.886000px;}
.ws23{word-spacing:5.891760px;}
.ws81{word-spacing:6.048000px;}
.wsca{word-spacing:6.102000px;}
.ws3c{word-spacing:6.252480px;}
.ws80{word-spacing:6.426000px;}
.wsa2{word-spacing:6.613200px;}
.ws25{word-spacing:6.973920px;}
.ws7f{word-spacing:7.128000px;}
.ws1f{word-spacing:7.274520px;}
.ws1d{word-spacing:7.334640px;}
.ws9b{word-spacing:7.454880px;}
.ws2{word-spacing:7.560000px;}
.ws7b{word-spacing:7.695360px;}
.ws1e{word-spacing:7.815600px;}
.wscd{word-spacing:7.830000px;}
.ws42{word-spacing:8.056080px;}
.wsce{word-spacing:8.208000px;}
.ws97{word-spacing:8.416800px;}
.ws36{word-spacing:8.777520px;}
.ws87{word-spacing:9.138240px;}
.ws86{word-spacing:9.198360px;}
.ws56{word-spacing:9.498960px;}
.ws6d{word-spacing:9.666000px;}
.ws94{word-spacing:9.859680px;}
.ws95{word-spacing:10.220400px;}
.ws55{word-spacing:10.581120px;}
.ws54{word-spacing:10.941840px;}
.wsc3{word-spacing:11.302560px;}
.ws98{word-spacing:12.024000px;}
.ws8c{word-spacing:12.384720px;}
.ws93{word-spacing:16.713360px;}
.ws89{word-spacing:17.434800px;}
.ws92{word-spacing:18.877680px;}
.ws8d{word-spacing:22.484880px;}
.ws8e{word-spacing:24.288480px;}
.wsb6{word-spacing:24.649200px;}
.ws96{word-spacing:26.813520px;}
.ws8b{word-spacing:32.585040px;}
.ws90{word-spacing:33.306480px;}
.wsb0{word-spacing:76.284000px;}
.wsac{word-spacing:147.824712px;}
.wsa9{word-spacing:157.284504px;}
.wsaf{word-spacing:160.344000px;}
.wsae{word-spacing:160.800192px;}
.wsa8{word-spacing:168.783264px;}
.ws4c{word-spacing:196.668000px;}
.ws63{word-spacing:381.699360px;}
.wsb4{word-spacing:880.345200px;}
._2{margin-left:-11.484000px;}
._1{margin-left:-10.440000px;}
._3{margin-left:-9.396000px;}
._f{margin-left:-8.229312px;}
._0{margin-left:-5.220000px;}
._6{margin-left:-3.894000px;}
._4{margin-left:-2.250000px;}
._7{margin-left:-1.006560px;}
._8{width:1.098828px;}
._5{width:2.160000px;}
._9{width:4.085172px;}
._13{width:5.257224px;}
._b{width:7.034040px;}
._a{width:8.219772px;}
._e{width:10.128312px;}
._20{width:11.919060px;}
._14{width:17.874000px;}
._16{width:23.781852px;}
._15{width:31.923720px;}
._21{width:136.764000px;}
._23{width:261.014688px;}
._1f{width:276.388344px;}
._1a{width:302.362032px;}
._12{width:318.381360px;}
._1b{width:335.589516px;}
._1e{width:360.630000px;}
._1c{width:378.664344px;}
._11{width:393.170400px;}
._d{width:400.621260px;}
._1d{width:438.568344px;}
._18{width:496.510860px;}
._10{width:509.471520px;}
._17{width:609.929688px;}
._c{width:734.594916px;}
._19{width:794.971344px;}
._22{width:848.988000px;}
.fc8{color:transparent;}
.fc9{color:rgb(255,0,0);}
.fc7{color:rgb(95,187,201);}
.fc6{color:rgb(110,53,139);}
.fc4{color:rgb(214,0,126);}
.fc5{color:rgb(0,130,173);}
.fc3{color:rgb(0,73,101);}
.fc1{color:rgb(227,5,19);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:18.000000px;}
.fs12{font-size:24.120000px;}
.fs10{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fse{font-size:42.120000px;}
.fs9{font-size:47.880000px;}
.fsf{font-size:54.000000px;}
.fs14{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs13{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:83.880000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.fs6{font-size:252.000000px;}
.fs5{font-size:261.000000px;}
.y0{bottom:0.000000px;}
.y171{bottom:1.078050px;}
.y173{bottom:1.097250px;}
.y16f{bottom:1.165950px;}
.y223{bottom:2.070000px;}
.y21e{bottom:2.160000px;}
.y175{bottom:2.510550px;}
.y177{bottom:2.518650px;}
.y16d{bottom:2.631450px;}
.y169{bottom:2.683050px;}
.y22c{bottom:2.880000px;}
.y87{bottom:3.008250px;}
.y20b{bottom:3.060000px;}
.y179{bottom:4.128750px;}
.y189{bottom:4.786500px;}
.y16b{bottom:5.585700px;}
.y235{bottom:6.390000px;}
.y167{bottom:6.837450px;}
.y1a6{bottom:9.990000px;}
.y19b{bottom:10.080000px;}
.y1ab{bottom:11.790000px;}
.y193{bottom:13.770000px;}
.y18e{bottom:14.310000px;}
.y19e{bottom:14.850000px;}
.y1a3{bottom:14.940000px;}
.y22b{bottom:18.360000px;}
.y197{bottom:18.630000px;}
.y232{bottom:20.430000px;}
.y249{bottom:20.880000px;}
.y220{bottom:21.330000px;}
.y29{bottom:23.854500px;}
.y209{bottom:34.110000px;}
.y28{bottom:37.620000px;}
.y5{bottom:66.525004px;}
.ya5{bottom:92.430000px;}
.y51{bottom:92.434500px;}
.y1c4{bottom:92.439000px;}
.y135{bottom:92.443500px;}
.y4{bottom:97.125005px;}
.y70{bottom:100.980000px;}
.y14b{bottom:104.193810px;}
.ye1{bottom:108.000000px;}
.y1c3{bottom:108.004500px;}
.y134{bottom:108.009000px;}
.ya4{bottom:113.850000px;}
.y50{bottom:118.350000px;}
.ye0{bottom:123.565500px;}
.y6f{bottom:123.570000px;}
.y133{bottom:123.574500px;}
.y82{bottom:127.800000px;}
.y14a{bottom:128.226780px;}
.ya3{bottom:128.880000px;}
.y1c2{bottom:129.330000px;}
.y4f{bottom:133.380000px;}
.y2a5{bottom:136.980000px;}
.y132{bottom:139.059000px;}
.y21{bottom:139.264499px;}
.ydf{bottom:143.550000px;}
.y110{bottom:144.180000px;}
.y1e3{bottom:144.360000px;}
.y86{bottom:145.569150px;}
.y1c1{bottom:146.983500px;}
.y149{bottom:152.259750px;}
.y2a4{bottom:153.544500px;}
.y131{bottom:154.624500px;}
.yde{bottom:159.039000px;}
.y85{bottom:160.329900px;}
.y296{bottom:160.494840px;}
.y1c0{bottom:162.549000px;}
.y4e{bottom:164.725920px;}
.y10f{bottom:165.240000px;}
.y2a3{bottom:169.920000px;}
.y130{bottom:170.109000px;}
.ya2{bottom:171.714240px;}
.ydd{bottom:174.604500px;}
.y148{bottom:176.202540px;}
.y295{bottom:176.967720px;}
.y1bf{bottom:178.114500px;}
.y84{bottom:181.352400px;}
.y12f{bottom:185.674500px;}
.y10e{bottom:186.210000px;}
.y2a2{bottom:186.480000px;}
.y4d{bottom:188.758890px;}
.y1be{bottom:193.599000px;}
.ydc{bottom:194.670000px;}
.ya1{bottom:195.657030px;}
.y18{bottom:196.933500px;}
.y75{bottom:197.738850px;}
.y147{bottom:200.235510px;}
.y2a1{bottom:203.044500px;}
.y294{bottom:203.961600px;}
.y1e2{bottom:204.018300px;}
.y12e{bottom:207.000000px;}
.y10d{bottom:207.180000px;}
.y1bd{bottom:209.164500px;}
.y269{bottom:209.340000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y4c{bottom:212.701680px;}
.y76{bottom:213.587850px;}
.ydb{bottom:216.000000px;}
.y2a0{bottom:219.420000px;}
.ya0{bottom:219.690000px;}
.y293{bottom:220.434480px;}
.y12d{bottom:222.030000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y146{bottom:224.268480px;}
.y1e1{bottom:228.051270px;}
.y10c{bottom:228.240000px;}
.y77{bottom:229.436850px;}
.y1bc{bottom:230.490000px;}
.y268{bottom:230.582970px;}
.yda{bottom:231.030000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y4b{bottom:236.734650px;}
.y9f{bottom:241.834500px;}
.y71{bottom:244.853850px;}
.y78{bottom:245.285850px;}
.y1bb{bottom:245.430000px;}
.y292{bottom:247.428360px;}
.y145{bottom:248.211270px;}
.y10b{bottom:249.210000px;}
.y267{bottom:251.640000px;}
.y1e0{bottom:252.084240px;}
.y29f{bottom:254.332440px;}
.y21a{bottom:256.050000px;}
.y9e{bottom:257.400000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y73{bottom:260.527350px;}
.y4a{bottom:260.767620px;}
.y79{bottom:261.134850px;}
.y291{bottom:263.991420px;}
.yd9{bottom:269.805510px;}
.y12c{bottom:269.877870px;}
.y10a{bottom:270.180000px;}
.y144{bottom:272.244240px;}
.y29e{bottom:272.335200px;}
.y266{bottom:272.344500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y9d{bottom:272.884500px;}
.y1ba{bottom:274.221270px;}
.y72{bottom:274.621350px;}
.y83{bottom:275.937900px;}
.y1df{bottom:276.027030px;}
.y7a{bottom:276.983850px;}
.y219{bottom:278.907030px;}
.y49{bottom:284.710410px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y265{bottom:287.910000px;}
.y74{bottom:288.728850px;}
.y290{bottom:290.985300px;}
.y109{bottom:291.240000px;}
.y7b{bottom:292.832850px;}
.yd8{bottom:293.748300px;}
.y12b{bottom:293.910840px;}
.y143{bottom:296.277210px;}
.y9c{bottom:297.360000px;}
.y1b9{bottom:298.164060px;}
.y1de{bottom:300.060000px;}
.y218{bottom:302.940000px;}
.y264{bottom:303.394500px;}
.y28f{bottom:307.458180px;}
.y7c{bottom:308.681850px;}
.y48{bottom:308.743380px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y108{bottom:312.210000px;}
.y29d{bottom:313.016700px;}
.yb9{bottom:315.375900px;}
.yd7{bottom:317.781270px;}
.y12a{bottom:317.943810px;}
.y263{bottom:318.960000px;}
.y142{bottom:320.220000px;}
.y1b8{bottom:322.197030px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1dd{bottom:324.040590px;}
.y7d{bottom:324.530850px;}
.y217{bottom:325.080000px;}
.yb8{bottom:330.928350px;}
.y47{bottom:332.776350px;}
.y107{bottom:333.180000px;}
.y28e{bottom:334.452060px;}
.y7e{bottom:340.379850px;}
.y1f8{bottom:341.406720px;}
.yd6{bottom:341.814240px;}
.y129{bottom:341.886600px;}
.y141{bottom:342.450000px;}
.y262{bottom:343.709910px;}
.y1b7{bottom:346.218480px;}
.y1dc{bottom:347.983380px;}
.yf{bottom:348.133500px;}
.y216{bottom:349.650000px;}
.y28d{bottom:350.924940px;}
.y29c{bottom:351.717000px;}
.y106{bottom:354.240000px;}
.yb7{bottom:356.075340px;}
.y7f{bottom:356.228850px;}
.y46{bottom:356.719140px;}
.y140{bottom:361.440000px;}
.yd5{bottom:365.757030px;}
.y1f7{bottom:365.890590px;}
.y128{bottom:365.919570px;}
.y261{bottom:366.300000px;}
.y28c{bottom:367.488000px;}
.y29b{bottom:369.720000px;}
.y1b6{bottom:370.161270px;}
.ya6{bottom:370.654800px;}
.y1db{bottom:372.016350px;}
.y80{bottom:372.077850px;}
.y13f{bottom:372.780000px;}
.y105{bottom:375.210000px;}
.y215{bottom:376.020000px;}
.y45{bottom:380.752110px;}
.y25f{bottom:386.280000px;}
.y13e{bottom:386.640000px;}
.ye{bottom:386.785499px;}
.ya7{bottom:386.945970px;}
.y81{bottom:387.926850px;}
.yd4{bottom:389.784240px;}
.y1f6{bottom:389.923560px;}
.y127{bottom:389.952540px;}
.y260{bottom:392.670000px;}
.y1b5{bottom:394.194240px;}
.y28b{bottom:394.481880px;}
.y13d{bottom:395.194500px;}
.y1da{bottom:396.049320px;}
.y104{bottom:396.180000px;}
.ya8{bottom:403.237140px;}
.y44{bottom:404.785080px;}
.y214{bottom:407.070000px;}
.yd{bottom:408.044999px;}
.y25e{bottom:409.500000px;}
.y13c{bottom:410.760000px;}
.y28a{bottom:410.954760px;}
.y29a{bottom:411.289500px;}
.yd3{bottom:413.817210px;}
.y1f5{bottom:413.866350px;}
.y126{bottom:413.895330px;}
.y103{bottom:417.240000px;}
.y1b4{bottom:418.227210px;}
.ya9{bottom:419.528310px;}
.y25a{bottom:419.764500px;}
.y1d9{bottom:419.992110px;}
.y6e{bottom:422.824500px;}
.y13b{bottom:424.620000px;}
.y289{bottom:427.427640px;}
.y43{bottom:428.727870px;}
.y299{bottom:429.292500px;}
.y25c{bottom:432.810000px;}
.y13a{bottom:433.804500px;}
.y259{bottom:435.330000px;}
.yaa{bottom:435.819480px;}
.yd2{bottom:437.730840px;}
.y1f4{bottom:437.899320px;}
.y125{bottom:437.928300px;}
.y102{bottom:438.210000px;}
.y6d{bottom:438.390000px;}
.y25d{bottom:439.200000px;}
.y213{bottom:439.650000px;}
.y1b3{bottom:442.167030px;}
.y1d8{bottom:444.025080px;}
.y298{bottom:447.295500px;}
.y139{bottom:451.800000px;}
.yab{bottom:452.110650px;}
.y42{bottom:452.760840px;}
.y288{bottom:454.421520px;}
.y258{bottom:456.030000px;}
.y101{bottom:459.180000px;}
.yd1{bottom:461.763810px;}
.y1f3{bottom:461.932290px;}
.y124{bottom:461.961270px;}
.y25b{bottom:462.424500px;}
.y1b2{bottom:466.200000px;}
.y1d7{bottom:468.058050px;}
.yac{bottom:468.401820px;}
.y138{bottom:468.810000px;}
.y287{bottom:470.984580px;}
.y212{bottom:472.320000px;}
.y6c{bottom:473.757030px;}
.y41{bottom:476.793810px;}
.y256{bottom:479.250000px;}
.y188{bottom:480.060000px;}
.y100{bottom:480.240000px;}
.yad{bottom:484.692990px;}
.y257{bottom:485.640000px;}
.yd0{bottom:485.796780px;}
.y1f2{bottom:485.875080px;}
.y123{bottom:485.904060px;}
.y1b1{bottom:488.349000px;}
.y254{bottom:489.510000px;}
.y1d6{bottom:492.000840px;}
.y297{bottom:495.540000px;}
.y6b{bottom:497.784240px;}
.y286{bottom:497.978460px;}
.y40{bottom:500.736600px;}
.yae{bottom:500.984160px;}
.yff{bottom:501.210000px;}
.y252{bottom:502.560000px;}
.y187{bottom:502.615650px;}
.yc{bottom:502.864502px;}
.y211{bottom:504.900000px;}
.y253{bottom:505.080000px;}
.y1b0{bottom:508.329000px;}
.y255{bottom:508.950000px;}
.ycf{bottom:509.739570px;}
.y1f1{bottom:509.908050px;}
.y122{bottom:509.937030px;}
.y285{bottom:514.451340px;}
.y1d5{bottom:516.033810px;}
.yaf{bottom:517.275330px;}
.y186{bottom:520.385100px;}
.yb{bottom:520.864502px;}
.y6a{bottom:521.817210px;}
.yfe{bottom:522.180000px;}
.y1af{bottom:523.894500px;}
.y3f{bottom:524.769570px;}
.y250{bottom:525.780000px;}
.y251{bottom:532.170000px;}
.yb0{bottom:533.566500px;}
.yce{bottom:533.772540px;}
.y121{bottom:533.935080px;}
.y1f0{bottom:533.941020px;}
.y210{bottom:537.570000px;}
.y185{bottom:538.154400px;}
.ya{bottom:538.864499px;}
.y1ae{bottom:539.460000px;}
.y1d4{bottom:540.066780px;}
.yfd{bottom:543.240000px;}
.y69{bottom:545.730840px;}
.y284{bottom:545.954220px;}
.y3e{bottom:548.802540px;}
.y24f{bottom:549.000000px;}
.yb1{bottom:549.857670px;}
.y1ad{bottom:554.310000px;}
.y184{bottom:555.923700px;}
.y9{bottom:556.864499px;}
.ycd{bottom:557.805510px;}
.y120{bottom:557.877870px;}
.y1ef{bottom:557.883810px;}
.y283{bottom:562.427100px;}
.y1d3{bottom:564.009570px;}
.yfc{bottom:564.210000px;}
.y1aa{bottom:564.840000px;}
.yb2{bottom:566.148840px;}
.y68{bottom:569.763810px;}
.y20f{bottom:570.150000px;}
.y24d{bottom:572.310000px;}
.y3d{bottom:572.745330px;}
.y183{bottom:573.693150px;}
.y1ac{bottom:576.630000px;}
.y24e{bottom:578.700000px;}
.ycc{bottom:581.748300px;}
.y11f{bottom:581.910840px;}
.y1ee{bottom:581.916780px;}
.yb3{bottom:582.440010px;}
.yfb{bottom:585.180000px;}
.y1d2{bottom:588.042540px;}
.y282{bottom:589.420980px;}
.y182{bottom:591.462450px;}
.y67{bottom:593.796780px;}
.y24b{bottom:595.530000px;}
.y3c{bottom:596.778300px;}
.y245{bottom:597.060000px;}
.yb4{bottom:598.731180px;}
.y1a8{bottom:598.860000px;}
.y24c{bottom:601.920000px;}
.y20e{bottom:602.820000px;}
.ycb{bottom:605.781270px;}
.y11e{bottom:605.943810px;}
.y1ed{bottom:605.949750px;}
.y281{bottom:605.984040px;}
.yfa{bottom:606.240000px;}
.y1a9{bottom:608.850000px;}
.y1d1{bottom:612.075510px;}
.yb5{bottom:615.022350px;}
.y66{bottom:617.739570px;}
.y247{bottom:618.750000px;}
.y3b{bottom:620.811270px;}
.y180{bottom:623.919150px;}
.y24a{bottom:624.150000px;}
.yf9{bottom:627.210000px;}
.y1a5{bottom:628.650000px;}
.yca{bottom:629.814240px;}
.y11d{bottom:629.886600px;}
.y1ec{bottom:629.892540px;}
.yb6{bottom:631.313520px;}
.y248{bottom:631.890000px;}
.y280{bottom:632.977920px;}
.y181{bottom:634.179150px;}
.y17f{bottom:634.359150px;}
.y20d{bottom:635.400000px;}
.y1d0{bottom:636.018300px;}
.y1a7{bottom:638.640000px;}
.y65{bottom:641.772540px;}
.y17a{bottom:644.291550px;}
.y3a{bottom:644.754060px;}
.y8{bottom:645.510000px;}
.y156{bottom:647.737500px;}
.yf8{bottom:648.180000px;}
.y27f{bottom:649.450800px;}
.yc9{bottom:653.757030px;}
.y153{bottom:653.854470px;}
.y11c{bottom:653.919570px;}
.y1eb{bottom:653.925510px;}
.y244{bottom:655.560000px;}
.y9b{bottom:657.094500px;}
.y1a2{bottom:658.350000px;}
.y1cf{bottom:660.051270px;}
.y151{bottom:660.545700px;}
.y246{bottom:661.954500px;}
.y64{bottom:665.805510px;}
.y7{bottom:666.771000px;}
.y20c{bottom:668.070000px;}
.y1a4{bottom:668.430000px;}
.y39{bottom:668.787030px;}
.yf7{bottom:669.240000px;}
.y26{bottom:670.535400px;}
.y14d{bottom:671.170920px;}
.y9a{bottom:672.660000px;}
.y27e{bottom:676.444680px;}
.yc8{bottom:677.790000px;}
.y11b{bottom:677.952540px;}
.y1ea{bottom:677.958480px;}
.y242{bottom:678.780000px;}
.y1ce{bottom:684.084240px;}
.y243{bottom:685.170000px;}
.y1a0{bottom:688.140000px;}
.y208{bottom:689.580000px;}
.y63{bottom:689.748300px;}
.yf6{bottom:690.210000px;}
.y38{bottom:692.805510px;}
.y27d{bottom:692.917560px;}
.y14c{bottom:694.610700px;}
.y1a1{bottom:698.220000px;}
.y11a{bottom:701.895330px;}
.y1e9{bottom:701.901270px;}
.y240{bottom:702.000000px;}
.y99{bottom:708.021270px;}
.y1cd{bottom:708.027030px;}
.y20a{bottom:708.120000px;}
.y207{bottom:708.129000px;}
.y241{bottom:708.390000px;}
.y27c{bottom:709.480620px;}
.yf5{bottom:711.180000px;}
.y17b{bottom:711.263700px;}
.y62{bottom:713.781270px;}
.y37{bottom:716.748300px;}
.y19d{bottom:717.930000px;}
.yc7{bottom:719.464500px;}
.y25{bottom:724.535400px;}
.y23e{bottom:725.310000px;}
.y119{bottom:725.928300px;}
.y1e8{bottom:725.934240px;}
.y6{bottom:726.298500px;}
.y19f{bottom:728.010000px;}
.y23f{bottom:731.700000px;}
.y1cc{bottom:732.013380px;}
.y98{bottom:732.054240px;}
.yf4{bottom:732.240000px;}
.y27b{bottom:736.474500px;}
.y61{bottom:737.814240px;}
.y14e{bottom:738.141720px;}
.y36{bottom:740.781270px;}
.yc6{bottom:743.580000px;}
.y19a{bottom:747.720000px;}
.y14f{bottom:748.187340px;}
.y23c{bottom:748.530000px;}
.y118{bottom:749.961270px;}
.y1e7{bottom:749.967210px;}
.y24{bottom:751.535400px;}
.y3{bottom:752.599495px;}
.y27a{bottom:752.947380px;}
.yf3{bottom:753.210000px;}
.y23d{bottom:754.920000px;}
.y1cb{bottom:756.046350px;}
.y97{bottom:756.087210px;}
.y19c{bottom:757.800000px;}
.y206{bottom:757.984500px;}
.y150{bottom:761.581500px;}
.y60{bottom:761.757030px;}
.y35{bottom:764.814240px;}
.y154{bottom:771.622950px;}
.y23b{bottom:771.750000px;}
.y117{bottom:773.904060px;}
.y1e6{bottom:773.907030px;}
.yf2{bottom:774.180000px;}
.y157{bottom:774.971490px;}
.y196{bottom:777.510000px;}
.y237{bottom:778.140000px;}
.y17c{bottom:778.235850px;}
.y279{bottom:779.941260px;}
.y1ca{bottom:779.989140px;}
.y96{bottom:780.000840px;}
.y155{bottom:781.668570px;}
.y199{bottom:783.535500px;}
.y5f{bottom:785.758050px;}
.y34{bottom:788.757030px;}
.y152{bottom:791.138400px;}
.y205{bottom:791.910000px;}
.y239{bottom:795.060000px;}
.y158{bottom:795.062730px;}
.yf1{bottom:795.240000px;}
.y278{bottom:796.414140px;}
.y116{bottom:797.937030px;}
.y1e5{bottom:797.940000px;}
.y198{bottom:799.020000px;}
.y23a{bottom:801.450000px;}
.y1c9{bottom:804.022110px;}
.y95{bottom:804.033810px;}
.yc5{bottom:804.036780px;}
.y23{bottom:805.535400px;}
.y174{bottom:807.210000px;}
.y5e{bottom:809.791020px;}
.y204{bottom:809.895330px;}
.y33{bottom:812.778300px;}
.y277{bottom:812.977200px;}
.y192{bottom:814.770000px;}
.y159{bottom:815.153970px;}
.yf0{bottom:816.210000px;}
.y236{bottom:818.280000px;}
.y16a{bottom:820.530000px;}
.y195{bottom:820.800000px;}
.y15c{bottom:821.851050px;}
.y115{bottom:821.970000px;}
.y238{bottom:824.670000px;}
.y1c8{bottom:828.055080px;}
.y94{bottom:828.066780px;}
.yc4{bottom:828.069750px;}
.y191{bottom:828.540000px;}
.y15b{bottom:831.896670px;}
.y5d{bottom:833.733810px;}
.y203{bottom:833.928300px;}
.y15a{bottom:835.245210px;}
.y176{bottom:835.470000px;}
.y172{bottom:836.190000px;}
.y194{bottom:836.280000px;}
.y32{bottom:836.811270px;}
.yef{bottom:837.180000px;}
.y161{bottom:838.005930px;}
.y1e4{bottom:839.610000px;}
.y276{bottom:839.971080px;}
.y234{bottom:841.500000px;}
.y15e{bottom:841.942290px;}
.y17d{bottom:845.208000px;}
.y16c{bottom:848.790000px;}
.y1c7{bottom:851.997870px;}
.y93{bottom:852.009570px;}
.yc3{bottom:852.012540px;}
.y18d{bottom:852.750000px;}
.y178{bottom:854.730000px;}
.y15d{bottom:855.336450px;}
.y170{bottom:856.260000px;}
.y275{bottom:856.443960px;}
.y5c{bottom:857.766780px;}
.y202{bottom:857.961270px;}
.y15f{bottom:858.007800px;}
.y164{bottom:858.091590px;}
.yee{bottom:858.240000px;}
.y190{bottom:859.315500px;}
.y162{bottom:860.174370px;}
.y31{bottom:860.754060px;}
.y16e{bottom:862.920000px;}
.y114{bottom:863.550000px;}
.y231{bottom:864.810000px;}
.y166{bottom:866.790000px;}
.y233{bottom:869.760000px;}
.y160{bottom:872.036640px;}
.y274{bottom:872.916840px;}
.y18f{bottom:874.800000px;}
.y163{bottom:874.837620px;}
.y1c6{bottom:876.030840px;}
.y92{bottom:876.042540px;}
.yc2{bottom:876.045510px;}
.y165{bottom:877.530870px;}
.yed{bottom:879.210000px;}
.y2{bottom:879.369000px;}
.y5b{bottom:881.799750px;}
.y201{bottom:881.904060px;}
.y168{bottom:882.270000px;}
.y30{bottom:884.787030px;}
.y273{bottom:899.910720px;}
.y1c5{bottom:900.063810px;}
.y91{bottom:900.075510px;}
.yc1{bottom:900.078480px;}
.yec{bottom:900.180000px;}
.y22f{bottom:900.630000px;}
.y5a{bottom:905.742540px;}
.y200{bottom:905.937030px;}
.y230{bottom:907.020000px;}
.y2f{bottom:908.820000px;}
.y17e{bottom:912.180150px;}
.y18c{bottom:912.600000px;}
.y272{bottom:916.473780px;}
.yeb{bottom:921.240000px;}
.y22d{bottom:923.850000px;}
.y113{bottom:924.006600px;}
.y90{bottom:924.018300px;}
.yc0{bottom:924.021270px;}
.y59{bottom:929.775510px;}
.y1ff{bottom:929.952540px;}
.y22e{bottom:930.240000px;}
.y271{bottom:932.946660px;}
.yea{bottom:942.210000px;}
.y137{bottom:945.090000px;}
.y22a{bottom:946.170000px;}
.y229{bottom:947.160000px;}
.y112{bottom:948.039570px;}
.y8f{bottom:948.051270px;}
.ybf{bottom:948.054240px;}
.y2e{bottom:949.770000px;}
.y58{bottom:953.808480px;}
.y1fe{bottom:953.895330px;}
.y270{bottom:959.940540px;}
.y136{bottom:960.660000px;}
.ye9{bottom:963.180000px;}
.y1{bottom:966.726000px;}
.y111{bottom:972.072540px;}
.y8e{bottom:972.084240px;}
.ybe{bottom:972.087210px;}
.y27{bottom:972.212700px;}
.y26f{bottom:976.413420px;}
.y57{bottom:977.751270px;}
.y1fd{bottom:977.928300px;}
.y227{bottom:978.840000px;}
.ye8{bottom:984.240000px;}
.y228{bottom:985.230000px;}
.y26e{bottom:992.976480px;}
.ybd{bottom:996.015330px;}
.y8d{bottom:996.027030px;}
.y2d{bottom:997.740000px;}
.y56{bottom:1001.784240px;}
.y1fc{bottom:1001.961270px;}
.y225{bottom:1002.150000px;}
.ye7{bottom:1005.210000px;}
.y226{bottom:1008.540000px;}
.y26d{bottom:1019.970360px;}
.ybc{bottom:1020.048300px;}
.y8c{bottom:1020.051270px;}
.y18b{bottom:1020.054240px;}
.y224{bottom:1020.150000px;}
.y22{bottom:1023.023400px;}
.y222{bottom:1025.370000px;}
.y55{bottom:1025.817210px;}
.y1fb{bottom:1025.904060px;}
.ye6{bottom:1026.180000px;}
.y26c{bottom:1036.443240px;}
.y2c{bottom:1040.494500px;}
.ybb{bottom:1044.081270px;}
.y8b{bottom:1044.084240px;}
.y18a{bottom:1044.087210px;}
.ye5{bottom:1047.240000px;}
.y21d{bottom:1048.590000px;}
.y54{bottom:1049.760000px;}
.y1fa{bottom:1049.937030px;}
.y221{bottom:1054.440000px;}
.y21f{bottom:1062.180000px;}
.y26b{bottom:1063.437120px;}
.y2b{bottom:1064.610000px;}
.yba{bottom:1068.024060px;}
.y8a{bottom:1068.027030px;}
.ye4{bottom:1068.210000px;}
.y1f9{bottom:1073.970000px;}
.y26a{bottom:1079.910000px;}
.ye3{bottom:1089.180000px;}
.y53{bottom:1091.434500px;}
.y89{bottom:1092.057030px;}
.y21c{bottom:1107.094500px;}
.y2a{bottom:1107.990000px;}
.ye2{bottom:1110.330000px;}
.y52{bottom:1115.550000px;}
.y88{bottom:1116.090000px;}
.y21b{bottom:1122.660000px;}
.h34{height:12.330000px;}
.h33{height:12.420000px;}
.h35{height:13.770000px;}
.h31{height:13.951500px;}
.h36{height:15.390000px;}
.h1d{height:15.477539px;}
.h32{height:16.920000px;}
.h2f{height:18.090000px;}
.h2a{height:20.739902px;}
.h4f{height:22.498500px;}
.h4d{height:22.500000px;}
.h38{height:26.208984px;}
.h41{height:29.700000px;}
.h3f{height:29.788500px;}
.h40{height:29.790000px;}
.h25{height:30.955078px;}
.h50{height:30.960000px;}
.h7{height:32.130000px;}
.h37{height:32.466797px;}
.h42{height:33.210000px;}
.h30{height:34.857949px;}
.h4b{height:35.064141px;}
.h51{height:35.100000px;}
.h53{height:36.000000px;}
.h17{height:36.217441px;}
.h4a{height:36.901500px;}
.h3c{height:37.260000px;}
.h2c{height:37.986152px;}
.h3b{height:38.250000px;}
.h1c{height:39.313477px;}
.h29{height:41.170254px;}
.hf{height:43.180840px;}
.h26{height:43.769004px;}
.h28{height:44.208984px;}
.h6{height:45.900000px;}
.h18{height:46.432617px;}
.h47{height:46.800000px;}
.h3{height:48.195000px;}
.h1e{height:48.700195px;}
.hd{height:48.906000px;}
.h14{height:51.694980px;}
.h20{height:51.706860px;}
.h1b{height:51.718020px;}
.h21{height:51.729900px;}
.h15{height:51.741780px;}
.h16{height:51.752940px;}
.h1a{height:51.811620px;}
.h19{height:51.822780px;}
.h13{height:52.417969px;}
.hc{height:53.064000px;}
.h49{height:54.219551px;}
.h3a{height:54.335244px;}
.h2{height:55.080000px;}
.h24{height:57.120481px;}
.h43{height:57.143521px;}
.h23{height:57.156121px;}
.h46{height:57.167281px;}
.h22{height:57.214081px;}
.h27{height:57.237121px;}
.h44{height:57.283921px;}
.h59{height:57.618000px;}
.h12{height:58.977949px;}
.h11{height:61.066934px;}
.h45{height:61.280054px;}
.h56{height:63.763920px;}
.h57{height:63.764160px;}
.h2e{height:64.774472px;}
.h58{height:64.779840px;}
.h48{height:65.872617px;}
.hb{height:66.330000px;}
.h2d{height:69.945760px;}
.h4c{height:70.273477px;}
.h55{height:70.678080px;}
.h3e{height:77.374617px;}
.h3d{height:77.392617px;}
.h5{height:78.030000px;}
.h2b{height:78.168632px;}
.h10{height:78.626953px;}
.h52{height:79.660195px;}
.h4e{height:95.140195px;}
.h4{height:119.055004px;}
.ha{height:182.196000px;}
.h9{height:188.703000px;}
.h1f{height:288.000000px;}
.h39{height:450.990000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h54{height:1264.500000px;}
.wb{width:12.061500px;}
.wd{width:16.200000px;}
.wc{width:29.340000px;}
.w9{width:57.060000px;}
.w6{width:95.850000px;}
.w7{width:95.938500px;}
.w8{width:95.940000px;}
.wf{width:115.290000px;}
.we{width:115.648500px;}
.w11{width:208.351500px;}
.w10{width:297.630000px;}
.w2{width:637.794021px;}
.wa{width:652.950000px;}
.w5{width:655.830000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.w12{width:895.500000px;}
.x0{left:0.000000px;}
.x52{left:5.940000px;}
.x11{left:7.304100px;}
.x4e{left:9.000000px;}
.x58{left:17.190000px;}
.x45{left:18.810000px;}
.x28{left:41.064600px;}
.x44{left:47.140650px;}
.x14{left:57.738150px;}
.x5{left:77.983650px;}
.x6{left:83.370600px;}
.x4f{left:86.220000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5a{left:117.000000px;}
.x10{left:119.250000px;}
.xf{left:126.556200px;}
.x9{left:127.620000px;}
.xd{left:129.026700px;}
.x32{left:130.500000px;}
.xe{left:132.712200px;}
.x16{left:134.310000px;}
.x17{left:137.589780px;}
.x15{left:144.634500px;}
.x12{left:147.186450px;}
.xb{left:148.872420px;}
.x18{left:153.545790px;}
.x51{left:154.620000px;}
.x53{left:160.290000px;}
.x1b{left:161.640000px;}
.x19{left:169.473900px;}
.x43{left:175.390650px;}
.x13{left:176.988150px;}
.x1d{left:178.813980px;}
.x1c{left:180.225000px;}
.x4{left:203.484001px;}
.x29{left:216.720000px;}
.x5b{left:231.306000px;}
.x26{left:235.859310px;}
.x2a{left:277.380000px;}
.x33{left:279.419400px;}
.x1e{left:293.359320px;}
.x46{left:321.750000px;}
.x47{left:324.004500px;}
.x34{left:329.108400px;}
.x2b{left:333.900000px;}
.x35{left:335.948400px;}
.xa{left:343.620000px;}
.x24{left:349.915950px;}
.x54{left:352.170000px;}
.x55{left:357.390000px;}
.x56{left:361.710000px;}
.x36{left:385.637400px;}
.x2c{left:387.990000px;}
.x37{left:399.497400px;}
.x23{left:406.419930px;}
.x50{left:412.290000px;}
.x7{left:415.080000px;}
.x48{left:438.835500px;}
.x49{left:441.090000px;}
.x8{left:446.501250px;}
.x39{left:449.006400px;}
.x3{left:454.959000px;}
.x38{left:458.996400px;}
.x25{left:462.987090px;}
.x57{left:467.820000px;}
.x59{left:473.040000px;}
.x3a{left:497.075400px;}
.x3b{left:498.965400px;}
.x2d{left:502.740000px;}
.x1a{left:504.270000px;}
.x4a{left:552.141000px;}
.x2e{left:558.630000px;}
.x3c{left:559.643400px;}
.x3d{left:571.523400px;}
.x4b{left:573.295500px;}
.x22{left:574.531380px;}
.x1f{left:576.037170px;}
.x2f{left:616.770000px;}
.x3e{left:618.602400px;}
.x21{left:629.975730px;}
.x20{left:632.572740px;}
.x4c{left:663.934500px;}
.x30{left:671.670000px;}
.x3f{left:672.701400px;}
.x40{left:675.131400px;}
.x4d{left:679.770000px;}
.x31{left:724.140000px;}
.x41{left:729.230400px;}
.x42{left:738.680400px;}
.x27{left:744.668100px;}
.xc{left:748.919700px;}
@media print{
.ve{vertical-align:-47.623680pt;}
.v12{vertical-align:-45.368960pt;}
.vd{vertical-align:-35.717760pt;}
.v9{vertical-align:-23.811840pt;}
.v3{vertical-align:-18.560000pt;}
.v7{vertical-align:-16.000000pt;}
.vc{vertical-align:-11.905920pt;}
.v4{vertical-align:-5.440000pt;}
.v2{vertical-align:-2.518400pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:4.492800pt;}
.v5{vertical-align:5.440000pt;}
.v11{vertical-align:11.905920pt;}
.v8{vertical-align:16.000000pt;}
.v14{vertical-align:17.280000pt;}
.v6{vertical-align:18.663680pt;}
.v1{vertical-align:21.440000pt;}
.vb{vertical-align:23.811840pt;}
.v13{vertical-align:27.520000pt;}
.v10{vertical-align:31.224960pt;}
.va{vertical-align:35.717760pt;}
.v15{vertical-align:41.280000pt;}
.lsd2{letter-spacing:-1.806080pt;}
.lsc8{letter-spacing:-1.168000pt;}
.lsd0{letter-spacing:-1.061333pt;}
.ls61{letter-spacing:-0.748160pt;}
.ls62{letter-spacing:-0.694720pt;}
.lscf{letter-spacing:-0.688000pt;}
.ls60{letter-spacing:-0.587840pt;}
.lscc{letter-spacing:-0.586667pt;}
.lscb{letter-spacing:-0.533333pt;}
.ls9b{letter-spacing:-0.521920pt;}
.ls5f{letter-spacing:-0.427520pt;}
.ls2f{letter-spacing:-0.374080pt;}
.ls27{letter-spacing:-0.267200pt;}
.lsd1{letter-spacing:-0.265600pt;}
.lsd4{letter-spacing:-0.240000pt;}
.ls6b{letter-spacing:-0.224000pt;}
.ls81{letter-spacing:-0.213760pt;}
.ls95{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.160320pt;}
.ls29{letter-spacing:-0.144000pt;}
.ls6a{letter-spacing:-0.112320pt;}
.ls26{letter-spacing:-0.106880pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.085120pt;}
.ls1d{letter-spacing:-0.074560pt;}
.ls1e{letter-spacing:-0.064000pt;}
.lsc7{letter-spacing:-0.058880pt;}
.ls25{letter-spacing:-0.053440pt;}
.lscd{letter-spacing:-0.053333pt;}
.lsd3{letter-spacing:-0.053120pt;}
.ls6c{letter-spacing:-0.048000pt;}
.lsae{letter-spacing:-0.037440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls97{letter-spacing:0.005344pt;}
.lsb9{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.016640pt;}
.ls15{letter-spacing:0.021376pt;}
.lsc3{letter-spacing:0.029440pt;}
.ls66{letter-spacing:0.042752pt;}
.ls9d{letter-spacing:0.048096pt;}
.lsc9{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.053440pt;}
.lsb5{letter-spacing:0.072000pt;}
.ls53{letter-spacing:0.080160pt;}
.ls3e{letter-spacing:0.085120pt;}
.lsc2{letter-spacing:0.090848pt;}
.ls1a{letter-spacing:0.096000pt;}
.lsc6{letter-spacing:0.106240pt;}
.lsc4{letter-spacing:0.106667pt;}
.ls43{letter-spacing:0.106880pt;}
.ls3{letter-spacing:0.127680pt;}
.ls5{letter-spacing:0.128000pt;}
.ls49{letter-spacing:0.128256pt;}
.ls70{letter-spacing:0.133600pt;}
.ls30{letter-spacing:0.144000pt;}
.ls37{letter-spacing:0.144288pt;}
.ls4{letter-spacing:0.149120pt;}
.lsb0{letter-spacing:0.153600pt;}
.lsc5{letter-spacing:0.159360pt;}
.ls2c{letter-spacing:0.160320pt;}
.ls2b{letter-spacing:0.165664pt;}
.ls8a{letter-spacing:0.187040pt;}
.ls31{letter-spacing:0.192000pt;}
.lsad{letter-spacing:0.206400pt;}
.lsce{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.213760pt;}
.ls20{letter-spacing:0.267200pt;}
.lsa1{letter-spacing:0.271360pt;}
.lsb6{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.304640pt;}
.lsc1{letter-spacing:0.336000pt;}
.ls5d{letter-spacing:0.372800pt;}
.lsd{letter-spacing:0.374080pt;}
.ls21{letter-spacing:0.427520pt;}
.lsaf{letter-spacing:0.432000pt;}
.ls32{letter-spacing:0.438208pt;}
.ls2a{letter-spacing:0.447360pt;}
.ls52{letter-spacing:0.448896pt;}
.ls23{letter-spacing:0.480960pt;}
.ls24{letter-spacing:0.534400pt;}
.ls1f{letter-spacing:0.587840pt;}
.ls7f{letter-spacing:0.609600pt;}
.lsca{letter-spacing:0.634667pt;}
.ls63{letter-spacing:0.667200pt;}
.lsf{letter-spacing:0.694720pt;}
.ls9{letter-spacing:0.748160pt;}
.ls34{letter-spacing:0.774880pt;}
.lsa{letter-spacing:0.801600pt;}
.ls42{letter-spacing:0.806944pt;}
.ls5b{letter-spacing:0.822976pt;}
.ls5c{letter-spacing:0.828320pt;}
.ls4e{letter-spacing:0.855040pt;}
.ls4d{letter-spacing:0.908480pt;}
.ls40{letter-spacing:1.015360pt;}
.ls46{letter-spacing:1.068800pt;}
.ls36{letter-spacing:1.122240pt;}
.ls3b{letter-spacing:1.154304pt;}
.ls3c{letter-spacing:1.159648pt;}
.ls2d{letter-spacing:1.330656pt;}
.ls45{letter-spacing:1.336000pt;}
.ls8b{letter-spacing:1.357376pt;}
.ls48{letter-spacing:1.389440pt;}
.ls94{letter-spacing:1.392000pt;}
.ls93{letter-spacing:1.406400pt;}
.ls8c{letter-spacing:1.437536pt;}
.ls12{letter-spacing:1.442880pt;}
.ls2{letter-spacing:1.600000pt;}
.ls88{letter-spacing:1.747488pt;}
.ls38{letter-spacing:1.763520pt;}
.ls1{letter-spacing:2.000000pt;}
.ls85{letter-spacing:2.078816pt;}
.ls2e{letter-spacing:2.084160pt;}
.ls4a{letter-spacing:2.110880pt;}
.ls4b{letter-spacing:2.163840pt;}
.ls57{letter-spacing:2.367392pt;}
.ls8f{letter-spacing:2.383424pt;}
.ls86{letter-spacing:2.388768pt;}
.ls3d{letter-spacing:2.404800pt;}
.ls99{letter-spacing:2.666656pt;}
.ls4f{letter-spacing:2.693376pt;}
.ls7c{letter-spacing:2.698720pt;}
.ls7e{letter-spacing:2.714752pt;}
.ls35{letter-spacing:2.725440pt;}
.ls3f{letter-spacing:2.993984pt;}
.ls7d{letter-spacing:3.030048pt;}
.ls33{letter-spacing:3.046080pt;}
.ls89{letter-spacing:3.131232pt;}
.ls39{letter-spacing:3.215360pt;}
.ls92{letter-spacing:3.254496pt;}
.ls5a{letter-spacing:3.318624pt;}
.lsb{letter-spacing:3.366720pt;}
.ls90{letter-spacing:3.382752pt;}
.ls84{letter-spacing:3.628576pt;}
.ls98{letter-spacing:3.644608pt;}
.ls91{letter-spacing:3.671328pt;}
.lsc{letter-spacing:3.687360pt;}
.ls6d{letter-spacing:3.832320pt;}
.ls41{letter-spacing:4.008000pt;}
.ls8d{letter-spacing:4.018688pt;}
.ls96{letter-spacing:4.029376pt;}
.ls65{letter-spacing:4.312608pt;}
.ls16{letter-spacing:4.328640pt;}
.ls8e{letter-spacing:4.333984pt;}
.ls50{letter-spacing:4.344672pt;}
.ls80{letter-spacing:4.560000pt;}
.ls10{letter-spacing:4.627904pt;}
.ls56{letter-spacing:4.638592pt;}
.ls55{letter-spacing:4.643936pt;}
.ls44{letter-spacing:4.649280pt;}
.ls54{letter-spacing:4.654624pt;}
.ls3a{letter-spacing:4.969920pt;}
.ls6f{letter-spacing:5.112320pt;}
.ls4c{letter-spacing:5.232000pt;}
.ls13{letter-spacing:5.290560pt;}
.ls5e{letter-spacing:5.419200pt;}
.ls14{letter-spacing:5.552416pt;}
.ls68{letter-spacing:5.568448pt;}
.ls67{letter-spacing:5.584480pt;}
.lse{letter-spacing:5.611200pt;}
.ls83{letter-spacing:5.905120pt;}
.ls47{letter-spacing:5.910464pt;}
.ls6e{letter-spacing:5.931840pt;}
.ls58{letter-spacing:6.252480pt;}
.ls64{letter-spacing:6.514336pt;}
.ls59{letter-spacing:6.573120pt;}
.ls7{letter-spacing:6.893760pt;}
.ls9c{letter-spacing:7.214400pt;}
.ls17{letter-spacing:7.535040pt;}
.ls87{letter-spacing:9.458880pt;}
.ls82{letter-spacing:10.100160pt;}
.ls51{letter-spacing:19.580416pt;}
.ls69{letter-spacing:21.808864pt;}
.ls18{letter-spacing:26.352000pt;}
.ls19{letter-spacing:47.136000pt;}
.lsb2{letter-spacing:47.296000pt;}
.lsa4{letter-spacing:57.392000pt;}
.lsbf{letter-spacing:64.896000pt;}
.lsa2{letter-spacing:79.440000pt;}
.lsa9{letter-spacing:79.504000pt;}
.lsb1{letter-spacing:83.152000pt;}
.ls9e{letter-spacing:101.856000pt;}
.lsc0{letter-spacing:130.192000pt;}
.lsbe{letter-spacing:231.632000pt;}
.ls78{letter-spacing:236.880000pt;}
.lsba{letter-spacing:253.376000pt;}
.lsbc{letter-spacing:253.392000pt;}
.ls75{letter-spacing:258.460800pt;}
.lsb3{letter-spacing:275.136000pt;}
.lsb4{letter-spacing:275.456000pt;}
.lsb8{letter-spacing:275.472000pt;}
.ls7a{letter-spacing:298.320000pt;}
.ls74{letter-spacing:298.368000pt;}
.lsb7{letter-spacing:329.520000pt;}
.ls7b{letter-spacing:336.096000pt;}
.ls72{letter-spacing:336.112000pt;}
.ls79{letter-spacing:365.520000pt;}
.ls76{letter-spacing:389.232000pt;}
.ls71{letter-spacing:421.200000pt;}
.lsbb{letter-spacing:438.960000pt;}
.ls73{letter-spacing:463.776000pt;}
.ls77{letter-spacing:493.200000pt;}
.lsbd{letter-spacing:504.592000pt;}
.ls9a{letter-spacing:753.163840pt;}
.lsa0{letter-spacing:798.816000pt;}
.lsa3{letter-spacing:802.320000pt;}
.ls9f{letter-spacing:893.856000pt;}
.lsa5{letter-spacing:903.776000pt;}
.lsa7{letter-spacing:994.672000pt;}
.lsab{letter-spacing:1284.240000pt;}
.lsaa{letter-spacing:1287.760000pt;}
.lsa8{letter-spacing:1334.160000pt;}
.lsac{letter-spacing:1389.200000pt;}
.lsa6{letter-spacing:1448.112000pt;}
.wsd8{word-spacing:-25.551147pt;}
.ws49{word-spacing:-20.876800pt;}
.ws3{word-spacing:-20.727680pt;}
.ws47{word-spacing:-20.653120pt;}
.ws4{word-spacing:-17.728000pt;}
.ws74{word-spacing:-15.978560pt;}
.ws72{word-spacing:-15.871680pt;}
.ws71{word-spacing:-15.764800pt;}
.ws73{word-spacing:-15.711360pt;}
.ws5f{word-spacing:-15.631200pt;}
.ws60{word-spacing:-15.604480pt;}
.ws5{word-spacing:-15.551040pt;}
.wsb2{word-spacing:-15.456000pt;}
.ws9{word-spacing:-15.390720pt;}
.ws5e{word-spacing:-15.337280pt;}
.ws8{word-spacing:-15.283840pt;}
.ws6{word-spacing:-15.230400pt;}
.ws4a{word-spacing:-15.123520pt;}
.ws7{word-spacing:-15.070080pt;}
.ws70{word-spacing:-15.016640pt;}
.ws83{word-spacing:-14.963200pt;}
.wsa{word-spacing:-14.909760pt;}
.ws82{word-spacing:-14.856320pt;}
.wsc{word-spacing:-14.802880pt;}
.wsb{word-spacing:-14.749440pt;}
.ws75{word-spacing:-14.696000pt;}
.wsbb{word-spacing:-14.642560pt;}
.wsd{word-spacing:-14.589120pt;}
.wsc2{word-spacing:-14.482240pt;}
.ws99{word-spacing:-14.428800pt;}
.ws9a{word-spacing:-14.268480pt;}
.ws61{word-spacing:-13.536000pt;}
.wsb9{word-spacing:-13.440000pt;}
.wsd5{word-spacing:-13.424640pt;}
.wsd4{word-spacing:-13.365760pt;}
.ws48{word-spacing:-13.344000pt;}
.ws10{word-spacing:-13.248000pt;}
.wsf{word-spacing:-13.200000pt;}
.wsd7{word-spacing:-12.218027pt;}
.wsdb{word-spacing:-12.217600pt;}
.wsd6{word-spacing:-12.111360pt;}
.wsd9{word-spacing:-11.845760pt;}
.wsd2{word-spacing:-11.136000pt;}
.wsd1{word-spacing:-11.040000pt;}
.wsb5{word-spacing:-10.896000pt;}
.ws4b{word-spacing:-10.800000pt;}
.wsdc{word-spacing:-10.704000pt;}
.wse{word-spacing:-10.408320pt;}
.wscb{word-spacing:-10.370880pt;}
.wsda{word-spacing:-10.305280pt;}
.ws62{word-spacing:-9.831360pt;}
.wsab{word-spacing:-9.703680pt;}
.wsad{word-spacing:-9.618560pt;}
.wsba{word-spacing:-9.607680pt;}
.ws1{word-spacing:-9.280000pt;}
.wsaa{word-spacing:-8.424000pt;}
.wsb3{word-spacing:-7.424000pt;}
.wsb1{word-spacing:-7.296000pt;}
.ws30{word-spacing:-4.008000pt;}
.ws4e{word-spacing:-3.687360pt;}
.ws67{word-spacing:-3.580480pt;}
.ws29{word-spacing:-3.366720pt;}
.wsa0{word-spacing:-3.206400pt;}
.ws2a{word-spacing:-3.046080pt;}
.wsa3{word-spacing:-2.928000pt;}
.ws2b{word-spacing:-2.725440pt;}
.ws44{word-spacing:-2.404800pt;}
.ws9f{word-spacing:-2.297920pt;}
.ws53{word-spacing:-2.084160pt;}
.ws7d{word-spacing:-1.968000pt;}
.wseb{word-spacing:-1.888000pt;}
.ws6b{word-spacing:-1.816960pt;}
.ws52{word-spacing:-1.763520pt;}
.ws6c{word-spacing:-1.656640pt;}
.wsc7{word-spacing:-1.603200pt;}
.ws65{word-spacing:-1.442880pt;}
.wsa6{word-spacing:-1.344000pt;}
.ws9d{word-spacing:-1.336000pt;}
.ws7a{word-spacing:-1.282560pt;}
.ws3b{word-spacing:-1.122240pt;}
.ws78{word-spacing:-1.068800pt;}
.ws3a{word-spacing:-1.015360pt;}
.ws20{word-spacing:-0.801600pt;}
.ws2c{word-spacing:-0.748160pt;}
.wsa7{word-spacing:-0.720000pt;}
.ws24{word-spacing:-0.694720pt;}
.wse9{word-spacing:-0.634667pt;}
.ws1a{word-spacing:-0.587840pt;}
.ws31{word-spacing:-0.534400pt;}
.ws21{word-spacing:-0.480960pt;}
.wsd0{word-spacing:-0.432000pt;}
.wsb8{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.374080pt;}
.ws68{word-spacing:-0.336000pt;}
.ws6a{word-spacing:-0.288000pt;}
.ws22{word-spacing:-0.267200pt;}
.ws5d{word-spacing:-0.240000pt;}
.ws51{word-spacing:-0.213760pt;}
.wse6{word-spacing:-0.213333pt;}
.ws6e{word-spacing:-0.212800pt;}
.ws69{word-spacing:-0.192000pt;}
.wsf4{word-spacing:-0.176000pt;}
.ws6f{word-spacing:-0.170240pt;}
.ws26{word-spacing:-0.160320pt;}
.ws15{word-spacing:-0.149120pt;}
.ws19{word-spacing:-0.128000pt;}
.ws12{word-spacing:-0.127680pt;}
.wsf3{word-spacing:-0.112000pt;}
.ws85{word-spacing:-0.106880pt;}
.wsdf{word-spacing:-0.106667pt;}
.wsf8{word-spacing:-0.106240pt;}
.ws13{word-spacing:-0.074560pt;}
.wsb7{word-spacing:-0.064000pt;}
.wsdd{word-spacing:-0.058880pt;}
.wse4{word-spacing:-0.058667pt;}
.ws38{word-spacing:-0.053440pt;}
.wse7{word-spacing:-0.053333pt;}
.wsf9{word-spacing:-0.053120pt;}
.ws59{word-spacing:-0.048000pt;}
.wsf6{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.wse5{word-spacing:0.048000pt;}
.wsf7{word-spacing:0.053120pt;}
.wsed{word-spacing:0.053333pt;}
.ws3f{word-spacing:0.053440pt;}
.wsde{word-spacing:0.058880pt;}
.ws18{word-spacing:0.064000pt;}
.ws14{word-spacing:0.074560pt;}
.ws11{word-spacing:0.085120pt;}
.ws5c{word-spacing:0.096000pt;}
.wse8{word-spacing:0.106667pt;}
.ws43{word-spacing:0.106880pt;}
.ws5a{word-spacing:0.144000pt;}
.ws16{word-spacing:0.149120pt;}
.ws27{word-spacing:0.160320pt;}
.ws17{word-spacing:0.192000pt;}
.ws46{word-spacing:0.240000pt;}
.wsef{word-spacing:0.256000pt;}
.wsfa{word-spacing:0.265600pt;}
.ws45{word-spacing:0.267200pt;}
.wsd3{word-spacing:0.288000pt;}
.ws32{word-spacing:0.320640pt;}
.ws4d{word-spacing:0.374080pt;}
.ws5b{word-spacing:0.384000pt;}
.wsbc{word-spacing:0.427520pt;}
.wsf2{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.480960pt;}
.wse1{word-spacing:0.522667pt;}
.wsec{word-spacing:0.528000pt;}
.wsea{word-spacing:0.533333pt;}
.wsf5{word-spacing:0.538667pt;}
.wsee{word-spacing:0.554667pt;}
.wsa5{word-spacing:0.576000pt;}
.wse0{word-spacing:0.586667pt;}
.ws8f{word-spacing:0.587840pt;}
.ws3d{word-spacing:0.641280pt;}
.wse2{word-spacing:0.688000pt;}
.wsa1{word-spacing:0.694720pt;}
.wsf1{word-spacing:0.773333pt;}
.ws3e{word-spacing:0.801600pt;}
.wsf0{word-spacing:0.890667pt;}
.wsc1{word-spacing:0.912000pt;}
.ws64{word-spacing:1.122240pt;}
.wsbd{word-spacing:1.200000pt;}
.wse3{word-spacing:1.210667pt;}
.ws9e{word-spacing:1.229120pt;}
.ws37{word-spacing:1.442880pt;}
.wsbe{word-spacing:1.536000pt;}
.ws4f{word-spacing:1.549760pt;}
.wsc5{word-spacing:1.656640pt;}
.ws50{word-spacing:1.763520pt;}
.ws7e{word-spacing:1.872000pt;}
.wsc6{word-spacing:1.923840pt;}
.ws57{word-spacing:2.084160pt;}
.wsa4{word-spacing:2.160000pt;}
.ws41{word-spacing:2.404800pt;}
.wscc{word-spacing:2.511680pt;}
.ws40{word-spacing:2.565120pt;}
.ws2e{word-spacing:2.725440pt;}
.ws84{word-spacing:2.885760pt;}
.ws28{word-spacing:3.046080pt;}
.wscf{word-spacing:3.120000pt;}
.ws76{word-spacing:3.313280pt;}
.ws2d{word-spacing:3.366720pt;}
.wsbf{word-spacing:3.456000pt;}
.ws9c{word-spacing:3.473600pt;}
.ws77{word-spacing:3.633920pt;}
.ws39{word-spacing:3.687360pt;}
.ws33{word-spacing:3.954560pt;}
.ws79{word-spacing:4.008000pt;}
.ws34{word-spacing:4.114880pt;}
.ws8a{word-spacing:4.168320pt;}
.ws35{word-spacing:4.275200pt;}
.ws88{word-spacing:4.328640pt;}
.wsc8{word-spacing:4.382080pt;}
.ws91{word-spacing:4.435520pt;}
.ws58{word-spacing:4.595840pt;}
.wsc0{word-spacing:4.752000pt;}
.ws66{word-spacing:4.756160pt;}
.ws2f{word-spacing:4.916480pt;}
.wsc4{word-spacing:5.023360pt;}
.ws7c{word-spacing:5.040000pt;}
.wsc9{word-spacing:5.232000pt;}
.ws23{word-spacing:5.237120pt;}
.ws81{word-spacing:5.376000pt;}
.wsca{word-spacing:5.424000pt;}
.ws3c{word-spacing:5.557760pt;}
.ws80{word-spacing:5.712000pt;}
.wsa2{word-spacing:5.878400pt;}
.ws25{word-spacing:6.199040pt;}
.ws7f{word-spacing:6.336000pt;}
.ws1f{word-spacing:6.466240pt;}
.ws1d{word-spacing:6.519680pt;}
.ws9b{word-spacing:6.626560pt;}
.ws2{word-spacing:6.720000pt;}
.ws7b{word-spacing:6.840320pt;}
.ws1e{word-spacing:6.947200pt;}
.wscd{word-spacing:6.960000pt;}
.ws42{word-spacing:7.160960pt;}
.wsce{word-spacing:7.296000pt;}
.ws97{word-spacing:7.481600pt;}
.ws36{word-spacing:7.802240pt;}
.ws87{word-spacing:8.122880pt;}
.ws86{word-spacing:8.176320pt;}
.ws56{word-spacing:8.443520pt;}
.ws6d{word-spacing:8.592000pt;}
.ws94{word-spacing:8.764160pt;}
.ws95{word-spacing:9.084800pt;}
.ws55{word-spacing:9.405440pt;}
.ws54{word-spacing:9.726080pt;}
.wsc3{word-spacing:10.046720pt;}
.ws98{word-spacing:10.688000pt;}
.ws8c{word-spacing:11.008640pt;}
.ws93{word-spacing:14.856320pt;}
.ws89{word-spacing:15.497600pt;}
.ws92{word-spacing:16.780160pt;}
.ws8d{word-spacing:19.986560pt;}
.ws8e{word-spacing:21.589760pt;}
.wsb6{word-spacing:21.910400pt;}
.ws96{word-spacing:23.834240pt;}
.ws8b{word-spacing:28.964480pt;}
.ws90{word-spacing:29.605760pt;}
.wsb0{word-spacing:67.808000pt;}
.wsac{word-spacing:131.399744pt;}
.wsa9{word-spacing:139.808448pt;}
.wsaf{word-spacing:142.528000pt;}
.wsae{word-spacing:142.933504pt;}
.wsa8{word-spacing:150.029568pt;}
.ws4c{word-spacing:174.816000pt;}
.ws63{word-spacing:339.288320pt;}
.wsb4{word-spacing:782.529067pt;}
._2{margin-left:-10.208000pt;}
._1{margin-left:-9.280000pt;}
._3{margin-left:-8.352000pt;}
._f{margin-left:-7.314944pt;}
._0{margin-left:-4.640000pt;}
._6{margin-left:-3.461333pt;}
._4{margin-left:-2.000000pt;}
._7{margin-left:-0.894720pt;}
._8{width:0.976736pt;}
._5{width:1.920000pt;}
._9{width:3.631264pt;}
._13{width:4.673088pt;}
._b{width:6.252480pt;}
._a{width:7.306464pt;}
._e{width:9.002944pt;}
._20{width:10.594720pt;}
._14{width:15.888000pt;}
._16{width:21.139424pt;}
._15{width:28.376640pt;}
._21{width:121.568000pt;}
._23{width:232.013056pt;}
._1f{width:245.678528pt;}
._1a{width:268.766251pt;}
._12{width:283.005653pt;}
._1b{width:298.301792pt;}
._1e{width:320.560000pt;}
._1c{width:336.590528pt;}
._11{width:349.484800pt;}
._d{width:356.107787pt;}
._1d{width:389.838528pt;}
._18{width:441.342987pt;}
._10{width:452.863573pt;}
._17{width:542.159723pt;}
._c{width:652.973259pt;}
._19{width:706.641195pt;}
._22{width:754.656000pt;}
.fs11{font-size:16.000000pt;}
.fs12{font-size:21.440000pt;}
.fs10{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:37.440000pt;}
.fs9{font-size:42.560000pt;}
.fsf{font-size:48.000000pt;}
.fs14{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs13{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.560000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.fs6{font-size:224.000000pt;}
.fs5{font-size:232.000000pt;}
.y0{bottom:0.000000pt;}
.y171{bottom:0.958267pt;}
.y173{bottom:0.975333pt;}
.y16f{bottom:1.036400pt;}
.y223{bottom:1.840000pt;}
.y21e{bottom:1.920000pt;}
.y175{bottom:2.231600pt;}
.y177{bottom:2.238800pt;}
.y16d{bottom:2.339067pt;}
.y169{bottom:2.384933pt;}
.y22c{bottom:2.560000pt;}
.y87{bottom:2.674000pt;}
.y20b{bottom:2.720000pt;}
.y179{bottom:3.670000pt;}
.y189{bottom:4.254667pt;}
.y16b{bottom:4.965067pt;}
.y235{bottom:5.680000pt;}
.y167{bottom:6.077733pt;}
.y1a6{bottom:8.880000pt;}
.y19b{bottom:8.960000pt;}
.y1ab{bottom:10.480000pt;}
.y193{bottom:12.240000pt;}
.y18e{bottom:12.720000pt;}
.y19e{bottom:13.200000pt;}
.y1a3{bottom:13.280000pt;}
.y22b{bottom:16.320000pt;}
.y197{bottom:16.560000pt;}
.y232{bottom:18.160000pt;}
.y249{bottom:18.560000pt;}
.y220{bottom:18.960000pt;}
.y29{bottom:21.204000pt;}
.y209{bottom:30.320000pt;}
.y28{bottom:33.440000pt;}
.y5{bottom:59.133337pt;}
.ya5{bottom:82.160000pt;}
.y51{bottom:82.164000pt;}
.y1c4{bottom:82.168000pt;}
.y135{bottom:82.172000pt;}
.y4{bottom:86.333337pt;}
.y70{bottom:89.760000pt;}
.y14b{bottom:92.616720pt;}
.ye1{bottom:96.000000pt;}
.y1c3{bottom:96.004000pt;}
.y134{bottom:96.008000pt;}
.ya4{bottom:101.200000pt;}
.y50{bottom:105.200000pt;}
.ye0{bottom:109.836000pt;}
.y6f{bottom:109.840000pt;}
.y133{bottom:109.844000pt;}
.y82{bottom:113.600000pt;}
.y14a{bottom:113.979360pt;}
.ya3{bottom:114.560000pt;}
.y1c2{bottom:114.960000pt;}
.y4f{bottom:118.560000pt;}
.y2a5{bottom:121.760000pt;}
.y132{bottom:123.608000pt;}
.y21{bottom:123.790666pt;}
.ydf{bottom:127.600000pt;}
.y110{bottom:128.160000pt;}
.y1e3{bottom:128.320000pt;}
.y86{bottom:129.394800pt;}
.y1c1{bottom:130.652000pt;}
.y149{bottom:135.342000pt;}
.y2a4{bottom:136.484000pt;}
.y131{bottom:137.444000pt;}
.yde{bottom:141.368000pt;}
.y85{bottom:142.515467pt;}
.y296{bottom:142.662080pt;}
.y1c0{bottom:144.488000pt;}
.y4e{bottom:146.423040pt;}
.y10f{bottom:146.880000pt;}
.y2a3{bottom:151.040000pt;}
.y130{bottom:151.208000pt;}
.ya2{bottom:152.634880pt;}
.ydd{bottom:155.204000pt;}
.y148{bottom:156.624480pt;}
.y295{bottom:157.304640pt;}
.y1bf{bottom:158.324000pt;}
.y84{bottom:161.202133pt;}
.y12f{bottom:165.044000pt;}
.y10e{bottom:165.520000pt;}
.y2a2{bottom:165.760000pt;}
.y4d{bottom:167.785680pt;}
.y1be{bottom:172.088000pt;}
.ydc{bottom:173.040000pt;}
.ya1{bottom:173.917360pt;}
.y18{bottom:175.052000pt;}
.y75{bottom:175.767867pt;}
.y147{bottom:177.987120pt;}
.y2a1{bottom:180.484000pt;}
.y294{bottom:181.299200pt;}
.y1e2{bottom:181.349600pt;}
.y12e{bottom:184.000000pt;}
.y10d{bottom:184.160000pt;}
.y1bd{bottom:185.924000pt;}
.y269{bottom:186.080000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y4c{bottom:189.068160pt;}
.y76{bottom:189.855867pt;}
.ydb{bottom:192.000000pt;}
.y2a0{bottom:195.040000pt;}
.ya0{bottom:195.280000pt;}
.y293{bottom:195.941760pt;}
.y12d{bottom:197.360000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y146{bottom:199.349760pt;}
.y1e1{bottom:202.712240pt;}
.y10c{bottom:202.880000pt;}
.y77{bottom:203.943867pt;}
.y1bc{bottom:204.880000pt;}
.y268{bottom:204.962640pt;}
.yda{bottom:205.360000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y4b{bottom:210.430800pt;}
.y9f{bottom:214.964000pt;}
.y71{bottom:217.647867pt;}
.y78{bottom:218.031867pt;}
.y1bb{bottom:218.160000pt;}
.y292{bottom:219.936320pt;}
.y145{bottom:220.632240pt;}
.y10b{bottom:221.520000pt;}
.y267{bottom:223.680000pt;}
.y1e0{bottom:224.074880pt;}
.y29f{bottom:226.073280pt;}
.y21a{bottom:227.600000pt;}
.y9e{bottom:228.800000pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y73{bottom:231.579867pt;}
.y4a{bottom:231.793440pt;}
.y79{bottom:232.119867pt;}
.y291{bottom:234.659040pt;}
.yd9{bottom:239.827120pt;}
.y12c{bottom:239.891440pt;}
.y10a{bottom:240.160000pt;}
.y144{bottom:241.994880pt;}
.y29e{bottom:242.075733pt;}
.y266{bottom:242.084000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y9d{bottom:242.564000pt;}
.y1ba{bottom:243.752240pt;}
.y72{bottom:244.107867pt;}
.y83{bottom:245.278133pt;}
.y1df{bottom:245.357360pt;}
.y7a{bottom:246.207867pt;}
.y219{bottom:247.917360pt;}
.y49{bottom:253.075920pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y265{bottom:255.920000pt;}
.y74{bottom:256.647867pt;}
.y290{bottom:258.653600pt;}
.y109{bottom:258.880000pt;}
.y7b{bottom:260.295867pt;}
.yd8{bottom:261.109600pt;}
.y12b{bottom:261.254080pt;}
.y143{bottom:263.357520pt;}
.y9c{bottom:264.320000pt;}
.y1b9{bottom:265.034720pt;}
.y1de{bottom:266.720000pt;}
.y218{bottom:269.280000pt;}
.y264{bottom:269.684000pt;}
.y28f{bottom:273.296160pt;}
.y7c{bottom:274.383867pt;}
.y48{bottom:274.438560pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y108{bottom:277.520000pt;}
.y29d{bottom:278.237067pt;}
.yb9{bottom:280.334133pt;}
.yd7{bottom:282.472240pt;}
.y12a{bottom:282.616720pt;}
.y263{bottom:283.520000pt;}
.y142{bottom:284.640000pt;}
.y1b8{bottom:286.397360pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1dd{bottom:288.036080pt;}
.y7d{bottom:288.471867pt;}
.y217{bottom:288.960000pt;}
.yb8{bottom:294.158533pt;}
.y47{bottom:295.801200pt;}
.y107{bottom:296.160000pt;}
.y28e{bottom:297.290720pt;}
.y7e{bottom:302.559867pt;}
.y1f8{bottom:303.472640pt;}
.yd6{bottom:303.834880pt;}
.y129{bottom:303.899200pt;}
.y141{bottom:304.400000pt;}
.y262{bottom:305.519920pt;}
.y1b7{bottom:307.749760pt;}
.y1dc{bottom:309.318560pt;}
.yf{bottom:309.452000pt;}
.y216{bottom:310.800000pt;}
.y28d{bottom:311.933280pt;}
.y29c{bottom:312.637333pt;}
.y106{bottom:314.880000pt;}
.yb7{bottom:316.511413pt;}
.y7f{bottom:316.647867pt;}
.y46{bottom:317.083680pt;}
.y140{bottom:321.280000pt;}
.yd5{bottom:325.117360pt;}
.y1f7{bottom:325.236080pt;}
.y128{bottom:325.261840pt;}
.y261{bottom:325.600000pt;}
.y28c{bottom:326.656000pt;}
.y29b{bottom:328.640000pt;}
.y1b6{bottom:329.032240pt;}
.ya6{bottom:329.470933pt;}
.y1db{bottom:330.681200pt;}
.y80{bottom:330.735867pt;}
.y13f{bottom:331.360000pt;}
.y105{bottom:333.520000pt;}
.y215{bottom:334.240000pt;}
.y45{bottom:338.446320pt;}
.y25f{bottom:343.360000pt;}
.y13e{bottom:343.680000pt;}
.ye{bottom:343.809333pt;}
.ya7{bottom:343.951973pt;}
.y81{bottom:344.823867pt;}
.yd4{bottom:346.474880pt;}
.y1f6{bottom:346.598720pt;}
.y127{bottom:346.624480pt;}
.y260{bottom:349.040000pt;}
.y1b5{bottom:350.394880pt;}
.y28b{bottom:350.650560pt;}
.y13d{bottom:351.284000pt;}
.y1da{bottom:352.043840pt;}
.y104{bottom:352.160000pt;}
.ya8{bottom:358.433013pt;}
.y44{bottom:359.808960pt;}
.y214{bottom:361.840000pt;}
.yd{bottom:362.706666pt;}
.y25e{bottom:364.000000pt;}
.y13c{bottom:365.120000pt;}
.y28a{bottom:365.293120pt;}
.y29a{bottom:365.590667pt;}
.yd3{bottom:367.837520pt;}
.y1f5{bottom:367.881200pt;}
.y126{bottom:367.906960pt;}
.y103{bottom:370.880000pt;}
.y1b4{bottom:371.757520pt;}
.ya9{bottom:372.914053pt;}
.y25a{bottom:373.124000pt;}
.y1d9{bottom:373.326320pt;}
.y6e{bottom:375.844000pt;}
.y13b{bottom:377.440000pt;}
.y289{bottom:379.935680pt;}
.y43{bottom:381.091440pt;}
.y299{bottom:381.593333pt;}
.y25c{bottom:384.720000pt;}
.y13a{bottom:385.604000pt;}
.y259{bottom:386.960000pt;}
.yaa{bottom:387.395093pt;}
.yd2{bottom:389.094080pt;}
.y1f4{bottom:389.243840pt;}
.y125{bottom:389.269600pt;}
.y102{bottom:389.520000pt;}
.y6d{bottom:389.680000pt;}
.y25d{bottom:390.400000pt;}
.y213{bottom:390.800000pt;}
.y1b3{bottom:393.037360pt;}
.y1d8{bottom:394.688960pt;}
.y298{bottom:397.596000pt;}
.y139{bottom:401.600000pt;}
.yab{bottom:401.876133pt;}
.y42{bottom:402.454080pt;}
.y288{bottom:403.930240pt;}
.y258{bottom:405.360000pt;}
.y101{bottom:408.160000pt;}
.yd1{bottom:410.456720pt;}
.y1f3{bottom:410.606480pt;}
.y124{bottom:410.632240pt;}
.y25b{bottom:411.044000pt;}
.y1b2{bottom:414.400000pt;}
.y1d7{bottom:416.051600pt;}
.yac{bottom:416.357173pt;}
.y138{bottom:416.720000pt;}
.y287{bottom:418.652960pt;}
.y212{bottom:419.840000pt;}
.y6c{bottom:421.117360pt;}
.y41{bottom:423.816720pt;}
.y256{bottom:426.000000pt;}
.y188{bottom:426.720000pt;}
.y100{bottom:426.880000pt;}
.yad{bottom:430.838213pt;}
.y257{bottom:431.680000pt;}
.yd0{bottom:431.819360pt;}
.y1f2{bottom:431.888960pt;}
.y123{bottom:431.914720pt;}
.y1b1{bottom:434.088000pt;}
.y254{bottom:435.120000pt;}
.y1d6{bottom:437.334080pt;}
.y297{bottom:440.480000pt;}
.y6b{bottom:442.474880pt;}
.y286{bottom:442.647520pt;}
.y40{bottom:445.099200pt;}
.yae{bottom:445.319253pt;}
.yff{bottom:445.520000pt;}
.y252{bottom:446.720000pt;}
.y187{bottom:446.769467pt;}
.yc{bottom:446.990669pt;}
.y211{bottom:448.800000pt;}
.y253{bottom:448.960000pt;}
.y1b0{bottom:451.848000pt;}
.y255{bottom:452.400000pt;}
.ycf{bottom:453.101840pt;}
.y1f1{bottom:453.251600pt;}
.y122{bottom:453.277360pt;}
.y285{bottom:457.290080pt;}
.y1d5{bottom:458.696720pt;}
.yaf{bottom:459.800293pt;}
.y186{bottom:462.564533pt;}
.yb{bottom:462.990669pt;}
.y6a{bottom:463.837520pt;}
.yfe{bottom:464.160000pt;}
.y1af{bottom:465.684000pt;}
.y3f{bottom:466.461840pt;}
.y250{bottom:467.360000pt;}
.y251{bottom:473.040000pt;}
.yb0{bottom:474.281333pt;}
.yce{bottom:474.464480pt;}
.y121{bottom:474.608960pt;}
.y1f0{bottom:474.614240pt;}
.y210{bottom:477.840000pt;}
.y185{bottom:478.359467pt;}
.ya{bottom:478.990666pt;}
.y1ae{bottom:479.520000pt;}
.y1d4{bottom:480.059360pt;}
.yfd{bottom:482.880000pt;}
.y69{bottom:485.094080pt;}
.y284{bottom:485.292640pt;}
.y3e{bottom:487.824480pt;}
.y24f{bottom:488.000000pt;}
.yb1{bottom:488.762373pt;}
.y1ad{bottom:492.720000pt;}
.y184{bottom:494.154400pt;}
.y9{bottom:494.990666pt;}
.ycd{bottom:495.827120pt;}
.y120{bottom:495.891440pt;}
.y1ef{bottom:495.896720pt;}
.y283{bottom:499.935200pt;}
.y1d3{bottom:501.341840pt;}
.yfc{bottom:501.520000pt;}
.y1aa{bottom:502.080000pt;}
.yb2{bottom:503.243413pt;}
.y68{bottom:506.456720pt;}
.y20f{bottom:506.800000pt;}
.y24d{bottom:508.720000pt;}
.y3d{bottom:509.106960pt;}
.y183{bottom:509.949467pt;}
.y1ac{bottom:512.560000pt;}
.y24e{bottom:514.400000pt;}
.ycc{bottom:517.109600pt;}
.y11f{bottom:517.254080pt;}
.y1ee{bottom:517.259360pt;}
.yb3{bottom:517.724453pt;}
.yfb{bottom:520.160000pt;}
.y1d2{bottom:522.704480pt;}
.y282{bottom:523.929760pt;}
.y182{bottom:525.744400pt;}
.y67{bottom:527.819360pt;}
.y24b{bottom:529.360000pt;}
.y3c{bottom:530.469600pt;}
.y245{bottom:530.720000pt;}
.yb4{bottom:532.205493pt;}
.y1a8{bottom:532.320000pt;}
.y24c{bottom:535.040000pt;}
.y20e{bottom:535.840000pt;}
.ycb{bottom:538.472240pt;}
.y11e{bottom:538.616720pt;}
.y1ed{bottom:538.622000pt;}
.y281{bottom:538.652480pt;}
.yfa{bottom:538.880000pt;}
.y1a9{bottom:541.200000pt;}
.y1d1{bottom:544.067120pt;}
.yb5{bottom:546.686533pt;}
.y66{bottom:549.101840pt;}
.y247{bottom:550.000000pt;}
.y3b{bottom:551.832240pt;}
.y180{bottom:554.594800pt;}
.y24a{bottom:554.800000pt;}
.yf9{bottom:557.520000pt;}
.y1a5{bottom:558.800000pt;}
.yca{bottom:559.834880pt;}
.y11d{bottom:559.899200pt;}
.y1ec{bottom:559.904480pt;}
.yb6{bottom:561.167573pt;}
.y248{bottom:561.680000pt;}
.y280{bottom:562.647040pt;}
.y181{bottom:563.714800pt;}
.y17f{bottom:563.874800pt;}
.y20d{bottom:564.800000pt;}
.y1d0{bottom:565.349600pt;}
.y1a7{bottom:567.680000pt;}
.y65{bottom:570.464480pt;}
.y17a{bottom:572.703600pt;}
.y3a{bottom:573.114720pt;}
.y8{bottom:573.786667pt;}
.y156{bottom:575.766667pt;}
.yf8{bottom:576.160000pt;}
.y27f{bottom:577.289600pt;}
.yc9{bottom:581.117360pt;}
.y153{bottom:581.203973pt;}
.y11c{bottom:581.261840pt;}
.y1eb{bottom:581.267120pt;}
.y244{bottom:582.720000pt;}
.y9b{bottom:584.084000pt;}
.y1a2{bottom:585.200000pt;}
.y1cf{bottom:586.712240pt;}
.y151{bottom:587.151733pt;}
.y246{bottom:588.404000pt;}
.y64{bottom:591.827120pt;}
.y7{bottom:592.685334pt;}
.y20c{bottom:593.840000pt;}
.y1a4{bottom:594.160000pt;}
.y39{bottom:594.477360pt;}
.yf7{bottom:594.880000pt;}
.y26{bottom:596.031467pt;}
.y14d{bottom:596.596373pt;}
.y9a{bottom:597.920000pt;}
.y27e{bottom:601.284160pt;}
.yc8{bottom:602.480000pt;}
.y11b{bottom:602.624480pt;}
.y1ea{bottom:602.629760pt;}
.y242{bottom:603.360000pt;}
.y1ce{bottom:608.074880pt;}
.y243{bottom:609.040000pt;}
.y1a0{bottom:611.680000pt;}
.y208{bottom:612.960000pt;}
.y63{bottom:613.109600pt;}
.yf6{bottom:613.520000pt;}
.y38{bottom:615.827120pt;}
.y27d{bottom:615.926720pt;}
.y14c{bottom:617.431733pt;}
.y1a1{bottom:620.640000pt;}
.y11a{bottom:623.906960pt;}
.y1e9{bottom:623.912240pt;}
.y240{bottom:624.000000pt;}
.y99{bottom:629.352240pt;}
.y1cd{bottom:629.357360pt;}
.y20a{bottom:629.440000pt;}
.y207{bottom:629.448000pt;}
.y241{bottom:629.680000pt;}
.y27c{bottom:630.649440pt;}
.yf5{bottom:632.160000pt;}
.y17b{bottom:632.234400pt;}
.y62{bottom:634.472240pt;}
.y37{bottom:637.109600pt;}
.y19d{bottom:638.160000pt;}
.yc7{bottom:639.524000pt;}
.y25{bottom:644.031467pt;}
.y23e{bottom:644.720000pt;}
.y119{bottom:645.269600pt;}
.y1e8{bottom:645.274880pt;}
.y6{bottom:645.598667pt;}
.y19f{bottom:647.120000pt;}
.y23f{bottom:650.400000pt;}
.y1cc{bottom:650.678560pt;}
.y98{bottom:650.714880pt;}
.yf4{bottom:650.880000pt;}
.y27b{bottom:654.644000pt;}
.y61{bottom:655.834880pt;}
.y14e{bottom:656.125973pt;}
.y36{bottom:658.472240pt;}
.yc6{bottom:660.960000pt;}
.y19a{bottom:664.640000pt;}
.y14f{bottom:665.055413pt;}
.y23c{bottom:665.360000pt;}
.y118{bottom:666.632240pt;}
.y1e7{bottom:666.637520pt;}
.y24{bottom:668.031467pt;}
.y3{bottom:668.977329pt;}
.y27a{bottom:669.286560pt;}
.yf3{bottom:669.520000pt;}
.y23d{bottom:671.040000pt;}
.y1cb{bottom:672.041200pt;}
.y97{bottom:672.077520pt;}
.y19c{bottom:673.600000pt;}
.y206{bottom:673.764000pt;}
.y150{bottom:676.961333pt;}
.y60{bottom:677.117360pt;}
.y35{bottom:679.834880pt;}
.y154{bottom:685.887067pt;}
.y23b{bottom:686.000000pt;}
.y117{bottom:687.914720pt;}
.y1e6{bottom:687.917360pt;}
.yf2{bottom:688.160000pt;}
.y157{bottom:688.863547pt;}
.y196{bottom:691.120000pt;}
.y237{bottom:691.680000pt;}
.y17c{bottom:691.765200pt;}
.y279{bottom:693.281120pt;}
.y1ca{bottom:693.323680pt;}
.y96{bottom:693.334080pt;}
.y155{bottom:694.816507pt;}
.y199{bottom:696.476000pt;}
.y5f{bottom:698.451600pt;}
.y34{bottom:701.117360pt;}
.y152{bottom:703.234133pt;}
.y205{bottom:703.920000pt;}
.y239{bottom:706.720000pt;}
.y158{bottom:706.722427pt;}
.yf1{bottom:706.880000pt;}
.y278{bottom:707.923680pt;}
.y116{bottom:709.277360pt;}
.y1e5{bottom:709.280000pt;}
.y198{bottom:710.240000pt;}
.y23a{bottom:712.400000pt;}
.y1c9{bottom:714.686320pt;}
.y95{bottom:714.696720pt;}
.yc5{bottom:714.699360pt;}
.y23{bottom:716.031467pt;}
.y174{bottom:717.520000pt;}
.y5e{bottom:719.814240pt;}
.y204{bottom:719.906960pt;}
.y33{bottom:722.469600pt;}
.y277{bottom:722.646400pt;}
.y192{bottom:724.240000pt;}
.y159{bottom:724.581307pt;}
.yf0{bottom:725.520000pt;}
.y236{bottom:727.360000pt;}
.y16a{bottom:729.360000pt;}
.y195{bottom:729.600000pt;}
.y15c{bottom:730.534267pt;}
.y115{bottom:730.640000pt;}
.y238{bottom:733.040000pt;}
.y1c8{bottom:736.048960pt;}
.y94{bottom:736.059360pt;}
.yc4{bottom:736.062000pt;}
.y191{bottom:736.480000pt;}
.y15b{bottom:739.463707pt;}
.y5d{bottom:741.096720pt;}
.y203{bottom:741.269600pt;}
.y15a{bottom:742.440187pt;}
.y176{bottom:742.640000pt;}
.y172{bottom:743.280000pt;}
.y194{bottom:743.360000pt;}
.y32{bottom:743.832240pt;}
.yef{bottom:744.160000pt;}
.y161{bottom:744.894160pt;}
.y1e4{bottom:746.320000pt;}
.y276{bottom:746.640960pt;}
.y234{bottom:748.000000pt;}
.y15e{bottom:748.393147pt;}
.y17d{bottom:751.296000pt;}
.y16c{bottom:754.480000pt;}
.y1c7{bottom:757.331440pt;}
.y93{bottom:757.341840pt;}
.yc3{bottom:757.344480pt;}
.y18d{bottom:758.000000pt;}
.y178{bottom:759.760000pt;}
.y15d{bottom:760.299067pt;}
.y170{bottom:761.120000pt;}
.y275{bottom:761.283520pt;}
.y5c{bottom:762.459360pt;}
.y202{bottom:762.632240pt;}
.y15f{bottom:762.673600pt;}
.y164{bottom:762.748080pt;}
.yee{bottom:762.880000pt;}
.y190{bottom:763.836000pt;}
.y162{bottom:764.599440pt;}
.y31{bottom:765.114720pt;}
.y16e{bottom:767.040000pt;}
.y114{bottom:767.600000pt;}
.y231{bottom:768.720000pt;}
.y166{bottom:770.480000pt;}
.y233{bottom:773.120000pt;}
.y160{bottom:775.143680pt;}
.y274{bottom:775.926080pt;}
.y18f{bottom:777.600000pt;}
.y163{bottom:777.633440pt;}
.y1c6{bottom:778.694080pt;}
.y92{bottom:778.704480pt;}
.yc2{bottom:778.707120pt;}
.y165{bottom:780.027440pt;}
.yed{bottom:781.520000pt;}
.y2{bottom:781.661334pt;}
.y5b{bottom:783.822000pt;}
.y201{bottom:783.914720pt;}
.y168{bottom:784.240000pt;}
.y30{bottom:786.477360pt;}
.y273{bottom:799.920640pt;}
.y1c5{bottom:800.056720pt;}
.y91{bottom:800.067120pt;}
.yc1{bottom:800.069760pt;}
.yec{bottom:800.160000pt;}
.y22f{bottom:800.560000pt;}
.y5a{bottom:805.104480pt;}
.y200{bottom:805.277360pt;}
.y230{bottom:806.240000pt;}
.y2f{bottom:807.840000pt;}
.y17e{bottom:810.826800pt;}
.y18c{bottom:811.200000pt;}
.y272{bottom:814.643360pt;}
.yeb{bottom:818.880000pt;}
.y22d{bottom:821.200000pt;}
.y113{bottom:821.339200pt;}
.y90{bottom:821.349600pt;}
.yc0{bottom:821.352240pt;}
.y59{bottom:826.467120pt;}
.y1ff{bottom:826.624480pt;}
.y22e{bottom:826.880000pt;}
.y271{bottom:829.285920pt;}
.yea{bottom:837.520000pt;}
.y137{bottom:840.080000pt;}
.y22a{bottom:841.040000pt;}
.y229{bottom:841.920000pt;}
.y112{bottom:842.701840pt;}
.y8f{bottom:842.712240pt;}
.ybf{bottom:842.714880pt;}
.y2e{bottom:844.240000pt;}
.y58{bottom:847.829760pt;}
.y1fe{bottom:847.906960pt;}
.y270{bottom:853.280480pt;}
.y136{bottom:853.920000pt;}
.ye9{bottom:856.160000pt;}
.y1{bottom:859.312000pt;}
.y111{bottom:864.064480pt;}
.y8e{bottom:864.074880pt;}
.ybe{bottom:864.077520pt;}
.y27{bottom:864.189067pt;}
.y26f{bottom:867.923040pt;}
.y57{bottom:869.112240pt;}
.y1fd{bottom:869.269600pt;}
.y227{bottom:870.080000pt;}
.ye8{bottom:874.880000pt;}
.y228{bottom:875.760000pt;}
.y26e{bottom:882.645760pt;}
.ybd{bottom:885.346960pt;}
.y8d{bottom:885.357360pt;}
.y2d{bottom:886.880000pt;}
.y56{bottom:890.474880pt;}
.y1fc{bottom:890.632240pt;}
.y225{bottom:890.800000pt;}
.ye7{bottom:893.520000pt;}
.y226{bottom:896.480000pt;}
.y26d{bottom:906.640320pt;}
.ybc{bottom:906.709600pt;}
.y8c{bottom:906.712240pt;}
.y18b{bottom:906.714880pt;}
.y224{bottom:906.800000pt;}
.y22{bottom:909.354133pt;}
.y222{bottom:911.440000pt;}
.y55{bottom:911.837520pt;}
.y1fb{bottom:911.914720pt;}
.ye6{bottom:912.160000pt;}
.y26c{bottom:921.282880pt;}
.y2c{bottom:924.884000pt;}
.ybb{bottom:928.072240pt;}
.y8b{bottom:928.074880pt;}
.y18a{bottom:928.077520pt;}
.ye5{bottom:930.880000pt;}
.y21d{bottom:932.080000pt;}
.y54{bottom:933.120000pt;}
.y1fa{bottom:933.277360pt;}
.y221{bottom:937.280000pt;}
.y21f{bottom:944.160000pt;}
.y26b{bottom:945.277440pt;}
.y2b{bottom:946.320000pt;}
.yba{bottom:949.354720pt;}
.y8a{bottom:949.357360pt;}
.ye4{bottom:949.520000pt;}
.y1f9{bottom:954.640000pt;}
.y26a{bottom:959.920000pt;}
.ye3{bottom:968.160000pt;}
.y53{bottom:970.164000pt;}
.y89{bottom:970.717360pt;}
.y21c{bottom:984.084000pt;}
.y2a{bottom:984.880000pt;}
.ye2{bottom:986.960000pt;}
.y52{bottom:991.600000pt;}
.y88{bottom:992.080000pt;}
.y21b{bottom:997.920000pt;}
.h34{height:10.960000pt;}
.h33{height:11.040000pt;}
.h35{height:12.240000pt;}
.h31{height:12.401333pt;}
.h36{height:13.680000pt;}
.h1d{height:13.757812pt;}
.h32{height:15.040000pt;}
.h2f{height:16.080000pt;}
.h2a{height:18.435469pt;}
.h4f{height:19.998667pt;}
.h4d{height:20.000000pt;}
.h38{height:23.296875pt;}
.h41{height:26.400000pt;}
.h3f{height:26.478667pt;}
.h40{height:26.480000pt;}
.h25{height:27.515625pt;}
.h50{height:27.520000pt;}
.h7{height:28.560000pt;}
.h37{height:28.859375pt;}
.h42{height:29.520000pt;}
.h30{height:30.984844pt;}
.h4b{height:31.168125pt;}
.h51{height:31.200000pt;}
.h53{height:32.000000pt;}
.h17{height:32.193281pt;}
.h4a{height:32.801333pt;}
.h3c{height:33.120000pt;}
.h2c{height:33.765469pt;}
.h3b{height:34.000000pt;}
.h1c{height:34.945312pt;}
.h29{height:36.595781pt;}
.hf{height:38.382969pt;}
.h26{height:38.905781pt;}
.h28{height:39.296875pt;}
.h6{height:40.800000pt;}
.h18{height:41.273438pt;}
.h47{height:41.600000pt;}
.h3{height:42.840000pt;}
.h1e{height:43.289062pt;}
.hd{height:43.472000pt;}
.h14{height:45.951094pt;}
.h20{height:45.961654pt;}
.h1b{height:45.971574pt;}
.h21{height:45.982134pt;}
.h15{height:45.992694pt;}
.h16{height:46.002614pt;}
.h1a{height:46.054774pt;}
.h19{height:46.064694pt;}
.h13{height:46.593750pt;}
.hc{height:47.168000pt;}
.h49{height:48.195156pt;}
.h3a{height:48.297995pt;}
.h2{height:48.960000pt;}
.h24{height:50.773761pt;}
.h43{height:50.794241pt;}
.h23{height:50.805441pt;}
.h46{height:50.815361pt;}
.h22{height:50.856961pt;}
.h27{height:50.877441pt;}
.h44{height:50.919041pt;}
.h59{height:51.216000pt;}
.h12{height:52.424844pt;}
.h11{height:54.281719pt;}
.h45{height:54.471159pt;}
.h56{height:56.679040pt;}
.h57{height:56.679253pt;}
.h2e{height:57.577309pt;}
.h58{height:57.582080pt;}
.h48{height:58.553438pt;}
.hb{height:58.960000pt;}
.h2d{height:62.174009pt;}
.h4c{height:62.465313pt;}
.h55{height:62.824960pt;}
.h3e{height:68.777438pt;}
.h3d{height:68.793437pt;}
.h5{height:69.360000pt;}
.h2b{height:69.483229pt;}
.h10{height:69.890625pt;}
.h52{height:70.809063pt;}
.h4e{height:84.569062pt;}
.h4{height:105.826671pt;}
.ha{height:161.952000pt;}
.h9{height:167.736000pt;}
.h1f{height:256.000000pt;}
.h39{height:400.880000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h54{height:1124.000000pt;}
.wb{width:10.721333pt;}
.wd{width:14.400000pt;}
.wc{width:26.080000pt;}
.w9{width:50.720000pt;}
.w6{width:85.200000pt;}
.w7{width:85.278667pt;}
.w8{width:85.280000pt;}
.wf{width:102.480000pt;}
.we{width:102.798667pt;}
.w11{width:185.201333pt;}
.w10{width:264.560000pt;}
.w2{width:566.928019pt;}
.wa{width:580.400000pt;}
.w5{width:582.960000pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.w12{width:796.000000pt;}
.x0{left:0.000000pt;}
.x52{left:5.280000pt;}
.x11{left:6.492533pt;}
.x4e{left:8.000000pt;}
.x58{left:15.280000pt;}
.x45{left:16.720000pt;}
.x28{left:36.501867pt;}
.x44{left:41.902800pt;}
.x14{left:51.322800pt;}
.x5{left:69.318800pt;}
.x6{left:74.107200pt;}
.x4f{left:76.640000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5a{left:104.000000pt;}
.x10{left:106.000000pt;}
.xf{left:112.494400pt;}
.x9{left:113.440000pt;}
.xd{left:114.690400pt;}
.x32{left:116.000000pt;}
.xe{left:117.966400pt;}
.x16{left:119.386667pt;}
.x17{left:122.302027pt;}
.x15{left:128.564000pt;}
.x12{left:130.832400pt;}
.xb{left:132.331040pt;}
.x18{left:136.485147pt;}
.x51{left:137.440000pt;}
.x53{left:142.480000pt;}
.x1b{left:143.680000pt;}
.x19{left:150.643467pt;}
.x43{left:155.902800pt;}
.x13{left:157.322800pt;}
.x1d{left:158.945760pt;}
.x1c{left:160.200000pt;}
.x4{left:180.874667pt;}
.x29{left:192.640000pt;}
.x5b{left:205.605333pt;}
.x26{left:209.652720pt;}
.x2a{left:246.560000pt;}
.x33{left:248.372800pt;}
.x1e{left:260.763840pt;}
.x46{left:286.000000pt;}
.x47{left:288.004000pt;}
.x34{left:292.540800pt;}
.x2b{left:296.800000pt;}
.x35{left:298.620800pt;}
.xa{left:305.440000pt;}
.x24{left:311.036400pt;}
.x54{left:313.040000pt;}
.x55{left:317.680000pt;}
.x56{left:321.520000pt;}
.x36{left:342.788800pt;}
.x2c{left:344.880000pt;}
.x37{left:355.108800pt;}
.x23{left:361.262160pt;}
.x50{left:366.480000pt;}
.x7{left:368.960000pt;}
.x48{left:390.076000pt;}
.x49{left:392.080000pt;}
.x8{left:396.890000pt;}
.x39{left:399.116800pt;}
.x3{left:404.408000pt;}
.x38{left:407.996800pt;}
.x25{left:411.544080pt;}
.x57{left:415.840000pt;}
.x59{left:420.480000pt;}
.x3a{left:441.844800pt;}
.x3b{left:443.524800pt;}
.x2d{left:446.880000pt;}
.x1a{left:448.240000pt;}
.x4a{left:490.792000pt;}
.x2e{left:496.560000pt;}
.x3c{left:497.460800pt;}
.x3d{left:508.020800pt;}
.x4b{left:509.596000pt;}
.x22{left:510.694560pt;}
.x1f{left:512.033040pt;}
.x2f{left:548.240000pt;}
.x3e{left:549.868800pt;}
.x21{left:559.978427pt;}
.x20{left:562.286880pt;}
.x4c{left:590.164000pt;}
.x30{left:597.040000pt;}
.x3f{left:597.956800pt;}
.x40{left:600.116800pt;}
.x4d{left:604.240000pt;}
.x31{left:643.680000pt;}
.x41{left:648.204800pt;}
.x42{left:656.604800pt;}
.x27{left:661.927200pt;}
.xc{left:665.706400pt;}
}




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