
    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_a02e6f20fd1531f68a25f913.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_fc283b4486f5aa7482d2e9ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d2932a3e333cb878ba3f896f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_fc283b4486f5aa7482d2e9ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_67e4c053d0067e04f97026df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.835938;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_0fff0bdd30a459d2d491f26b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854980;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_d5b21fe94477265a5fa283c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_5ac4a4d18b0f96093927fba4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728027;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_8487cfd5bfaa5baff9a2bb49.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_9eb0f523ea422cbaacdff58e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_d0b41bdc7e5b1ec911facaec.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.002930;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_b3914c67b2e00d5747f7f937.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_a5225a405410a27c626d6e61.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.862793;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_8de79ee12072cda1cc6d1db6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861816;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_751975d66c3f5a6a7a01b515.woff2')format("woff");}.fff{font-family:fff;line-height:0.867676;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_f4d3469e29da2bc1a006890c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.691406;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_9c3f53c6b64eb4d30c3aabce.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958000;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_efb071c8941e3e990c495df2.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.124000;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_27eb7417f9f910e201ea4974.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.700000;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_1d0de183cec0660453036e30.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.930000;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_1da51a7334b12886aa302c7b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.091000;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_42e2c344ebe34412d0ddd77c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.930000;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_7e9e1835f5443f07c1e8c67b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_007f4a4f0cca3c58bd60bf33.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.000000px;}
.v1{vertical-align:30.240000px;}
.ls6d{letter-spacing:-2.160000px;}
.ls68{letter-spacing:-1.620000px;}
.ls74{letter-spacing:-1.350000px;}
.ls69{letter-spacing:-1.296000px;}
.ls6b{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-1.014000px;}
.ls75{letter-spacing:-0.918000px;}
.ls39{letter-spacing:-0.912000px;}
.ls14{letter-spacing:-0.852000px;}
.ls40{letter-spacing:-0.840000px;}
.ls6a{letter-spacing:-0.810000px;}
.ls1b{letter-spacing:-0.768000px;}
.ls29{letter-spacing:-0.744000px;}
.ls10{letter-spacing:-0.720000px;}
.ls3f{letter-spacing:-0.630000px;}
.ls65{letter-spacing:-0.600000px;}
.ls6c{letter-spacing:-0.594000px;}
.ls59{letter-spacing:-0.590400px;}
.ls4a{letter-spacing:-0.587400px;}
.ls62{letter-spacing:-0.540000px;}
.ls67{letter-spacing:-0.486000px;}
.ls12{letter-spacing:-0.463800px;}
.ls63{letter-spacing:-0.432000px;}
.ls52{letter-spacing:-0.417600px;}
.ls73{letter-spacing:-0.378000px;}
.ls44{letter-spacing:-0.348600px;}
.ls49{letter-spacing:-0.328200px;}
.ls64{letter-spacing:-0.324000px;}
.ls46{letter-spacing:-0.310800px;}
.ls31{letter-spacing:-0.306000px;}
.ls15{letter-spacing:-0.292200px;}
.ls57{letter-spacing:-0.282000px;}
.ls66{letter-spacing:-0.270000px;}
.ls3b{letter-spacing:-0.238800px;}
.ls13{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.207600px;}
.ls7{letter-spacing:-0.193200px;}
.lsd{letter-spacing:-0.164400px;}
.ls3a{letter-spacing:-0.141000px;}
.ls11{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.118200px;}
.ls37{letter-spacing:-0.115200px;}
.ls5{letter-spacing:-0.109200px;}
.ls56{letter-spacing:-0.078600px;}
.ls4b{letter-spacing:-0.078000px;}
.ls2f{letter-spacing:-0.072000px;}
.ls22{letter-spacing:-0.058320px;}
.ls18{letter-spacing:-0.048960px;}
.ls4e{letter-spacing:-0.046080px;}
.lsf{letter-spacing:-0.043200px;}
.ls5a{letter-spacing:-0.025920px;}
.ls30{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.031680px;}
.ls2e{letter-spacing:0.036000px;}
.ls60{letter-spacing:0.054000px;}
.ls43{letter-spacing:0.060600px;}
.ls54{letter-spacing:0.064200px;}
.ls21{letter-spacing:0.066000px;}
.ls45{letter-spacing:0.069000px;}
.ls2a{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.075000px;}
.ls4d{letter-spacing:0.089280px;}
.ls1e{letter-spacing:0.089400px;}
.ls5e{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.108480px;}
.ls6{letter-spacing:0.115200px;}
.ls8{letter-spacing:0.125760px;}
.ls1f{letter-spacing:0.129600px;}
.lsa{letter-spacing:0.132480px;}
.ls20{letter-spacing:0.132600px;}
.ls55{letter-spacing:0.140400px;}
.ls4c{letter-spacing:0.141000px;}
.ls36{letter-spacing:0.148800px;}
.ls9{letter-spacing:0.149760px;}
.ls28{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.162000px;}
.ls19{letter-spacing:0.181440px;}
.ls33{letter-spacing:0.185040px;}
.ls34{letter-spacing:0.189840px;}
.ls1{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.219000px;}
.ls2b{letter-spacing:0.234000px;}
.ls5c{letter-spacing:0.244800px;}
.ls17{letter-spacing:0.256200px;}
.ls6e{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.313800px;}
.ls50{letter-spacing:0.331200px;}
.ls3{letter-spacing:0.341280px;}
.ls1a{letter-spacing:0.354000px;}
.ls3c{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.371400px;}
.ls24{letter-spacing:0.391680px;}
.ls27{letter-spacing:0.391800px;}
.ls1d{letter-spacing:0.427800px;}
.ls5f{letter-spacing:0.432000px;}
.ls71{letter-spacing:0.465000px;}
.ls5d{letter-spacing:0.486000px;}
.ls4{letter-spacing:0.541440px;}
.ls58{letter-spacing:0.544200px;}
.ls4f{letter-spacing:0.571680px;}
.ls32{letter-spacing:0.587400px;}
.ls76{letter-spacing:0.594000px;}
.ls72{letter-spacing:0.600000px;}
.ls23{letter-spacing:0.660000px;}
.ls6f{letter-spacing:0.886800px;}
.ls3d{letter-spacing:0.901440px;}
.ls70{letter-spacing:1.026000px;}
.ls77{letter-spacing:1.080000px;}
.ls78{letter-spacing:1.404000px;}
.ls61{letter-spacing:1.800000px;}
.ls42{letter-spacing:2.309760px;}
.ls2c{letter-spacing:3.636000px;}
.ls41{letter-spacing:4.469760px;}
.ls48{letter-spacing:5.189760px;}
.ls3e{letter-spacing:7.349760px;}
.ls26{letter-spacing:15.989760px;}
.ls25{letter-spacing:26.789760px;}
.ls5b{letter-spacing:113.885760px;}
.ls53{letter-spacing:197.405760px;}
.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;}
}
.ws41{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.418720px;}
.ws45{word-spacing:-19.296000px;}
.ws25{word-spacing:-19.038240px;}
.ws3{word-spacing:-18.305520px;}
.ws47{word-spacing:-16.680000px;}
.ws1d{word-spacing:-16.272000px;}
.ws44{word-spacing:-16.092000px;}
.ws1a{word-spacing:-15.362040px;}
.ws34{word-spacing:-15.341640px;}
.ws12{word-spacing:-15.324240px;}
.ws31{word-spacing:-15.301440px;}
.ws27{word-spacing:-15.284040px;}
.ws11{word-spacing:-15.226440px;}
.ws3d{word-spacing:-15.215040px;}
.ws2f{word-spacing:-15.111240px;}
.ws1b{word-spacing:-15.102840px;}
.ws16{word-spacing:-15.099840px;}
.ws5{word-spacing:-15.085440px;}
.ws15{word-spacing:-15.059640px;}
.ws7{word-spacing:-15.045240px;}
.ws2c{word-spacing:-15.030840px;}
.ws3e{word-spacing:-15.012000px;}
.ws32{word-spacing:-15.001920px;}
.ws6{word-spacing:-14.970240px;}
.ws3b{word-spacing:-14.944320px;}
.wsa{word-spacing:-14.927040px;}
.ws30{word-spacing:-14.924160px;}
.ws21{word-spacing:-14.921280px;}
.ws2e{word-spacing:-14.892240px;}
.ws3a{word-spacing:-14.861040px;}
.ws26{word-spacing:-14.855040px;}
.ws9{word-spacing:-14.852040px;}
.wsf{word-spacing:-14.837640px;}
.ws28{word-spacing:-14.829240px;}
.ws8{word-spacing:-14.805840px;}
.ws4{word-spacing:-14.777040px;}
.ws10{word-spacing:-14.762640px;}
.wsd{word-spacing:-14.754240px;}
.ws29{word-spacing:-14.731440px;}
.ws2d{word-spacing:-14.659440px;}
.ws33{word-spacing:-14.552640px;}
.wsc{word-spacing:-14.506440px;}
.ws3f{word-spacing:-14.472000px;}
.ws3c{word-spacing:-14.379840px;}
.ws2a{word-spacing:-14.340240px;}
.ws1c{word-spacing:-14.226240px;}
.ws19{word-spacing:-14.165760px;}
.ws2b{word-spacing:-14.130240px;}
.ws36{word-spacing:-13.646160px;}
.ws35{word-spacing:-13.569960px;}
.ws18{word-spacing:-13.505760px;}
.ws17{word-spacing:-13.447440px;}
.ws38{word-spacing:-13.427160px;}
.ws40{word-spacing:-13.392000px;}
.ws46{word-spacing:-13.344000px;}
.ws1e{word-spacing:-12.204000px;}
.ws1f{word-spacing:-12.186000px;}
.ws20{word-spacing:-11.898000px;}
.ws2{word-spacing:-11.609280px;}
.ws23{word-spacing:-11.121240px;}
.ws24{word-spacing:-11.051040px;}
.ws14{word-spacing:-9.865560px;}
.wsb{word-spacing:-9.437760px;}
.wse{word-spacing:-9.145560px;}
.ws39{word-spacing:-8.786880px;}
.ws13{word-spacing:-8.423760px;}
.ws22{word-spacing:-0.066240px;}
.ws37{word-spacing:-0.059760px;}
.ws42{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws43{word-spacing:0.486000px;}
._38{margin-left:-15.012000px;}
._39{margin-left:-13.810800px;}
._37{margin-left:-9.501840px;}
._36{margin-left:-8.100000px;}
._35{margin-left:-6.696000px;}
._34{margin-left:-4.981200px;}
._1{margin-left:-3.041280px;}
._0{margin-left:-1.512000px;}
._2{width:1.032000px;}
._3{width:2.165280px;}
._15{width:3.640320px;}
._b{width:4.769280px;}
._c{width:6.491520px;}
._6{width:7.804800px;}
._5{width:9.149760px;}
._1b{width:10.598400px;}
._1c{width:11.881920px;}
._d{width:13.802880px;}
._30{width:15.529200px;}
._e{width:16.626240px;}
._f{width:17.807040px;}
._10{width:18.823680px;}
._11{width:20.269440px;}
._12{width:21.317760px;}
._19{width:22.837440px;}
._1a{width:23.861760px;}
._22{width:25.369920px;}
._21{width:26.418240px;}
._24{width:27.688320px;}
._20{width:28.814400px;}
._18{width:30.413280px;}
._17{width:31.530240px;}
._1f{width:32.837280px;}
._27{width:34.330080px;}
._23{width:35.769600px;}
._2a{width:37.955520px;}
._29{width:39.864960px;}
._13{width:40.936320px;}
._14{width:42.480480px;}
._2b{width:43.686240px;}
._1d{width:45.175680px;}
._2f{width:47.957760px;}
._2e{width:49.216320px;}
._26{width:50.573760px;}
._25{width:51.788160px;}
._2d{width:60.217920px;}
._2c{width:61.372800px;}
._1e{width:69.750720px;}
._9{width:71.109120px;}
._3b{width:74.921880px;}
._33{width:79.962240px;}
._42{width:92.145600px;}
._3f{width:94.291200px;}
._7{width:102.028800px;}
._a{width:106.099680px;}
._32{width:114.289320px;}
._45{width:121.305600px;}
._3d{width:125.066880px;}
._3e{width:132.809880px;}
._46{width:141.792600px;}
._31{width:146.617200px;}
._43{width:155.256600px;}
._40{width:157.059480px;}
._8{width:168.096000px;}
._28{width:182.435520px;}
._3c{width:188.755200px;}
._4{width:197.405760px;}
._3a{width:206.121600px;}
._47{width:264.499200px;}
._44{width:266.731200px;}
._41{width:313.963200px;}
._16{width:1944.861120px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(128,128,128);}
.fsf{font-size:24.000000px;}
.fse{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fsd{font-size:48.000000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fsa{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs2{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fsb{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y108{bottom:2.520000px;}
.y104{bottom:4.140000px;}
.y10c{bottom:5.040000px;}
.y106{bottom:5.220000px;}
.y166{bottom:6.825000px;}
.y14e{bottom:6.840000px;}
.yd0{bottom:8.280000px;}
.yd3{bottom:8.640000px;}
.yd7{bottom:10.440000px;}
.yd5{bottom:10.470000px;}
.yda{bottom:10.800000px;}
.y12f{bottom:12.960000px;}
.y12b{bottom:13.140000px;}
.y16b{bottom:16.185000px;}
.yf7{bottom:20.160000px;}
.yc3{bottom:20.880000px;}
.ya0{bottom:22.320000px;}
.ybe{bottom:22.485000px;}
.y9c{bottom:22.500000px;}
.ya5{bottom:22.545000px;}
.y170{bottom:24.660000px;}
.ye8{bottom:24.840000px;}
.yf2{bottom:24.870000px;}
.yea{bottom:25.920000px;}
.yd2{bottom:26.820000px;}
.y9e{bottom:27.180000px;}
.y14d{bottom:27.900000px;}
.y165{bottom:27.930000px;}
.y13c{bottom:31.320000px;}
.y1b2{bottom:31.500000px;}
.yc9{bottom:35.100000px;}
.y16a{bottom:37.245000px;}
.y12d{bottom:40.500000px;}
.y134{bottom:40.545000px;}
.ycb{bottom:42.480000px;}
.yc2{bottom:42.705000px;}
.yce{bottom:42.832500px;}
.y155{bottom:48.960000px;}
.y164{bottom:48.990000px;}
.y13b{bottom:49.680000px;}
.yf6{bottom:53.100000px;}
.yc8{bottom:53.460000px;}
.y27{bottom:57.636000px;}
.y169{bottom:58.305000px;}
.yb2{bottom:58.860000px;}
.ybd{bottom:59.025000px;}
.yac{bottom:59.040000px;}
.ya4{bottom:59.085000px;}
.yec{bottom:64.980000px;}
.ye7{bottom:65.160000px;}
.yf1{bottom:65.190000px;}
.y133{bottom:67.725000px;}
.y13a{bottom:67.860000px;}
.y154{bottom:70.020000px;}
.y163{bottom:70.050000px;}
.yc7{bottom:71.865000px;}
.y222{bottom:75.307050px;}
.y1e3{bottom:76.807050px;}
.y212{bottom:76.807200px;}
.y26{bottom:77.796000px;}
.y168{bottom:79.365000px;}
.yf5{bottom:86.040000px;}
.y139{bottom:86.220000px;}
.yc6{bottom:90.225000px;}
.y153{bottom:91.080000px;}
.y162{bottom:91.110000px;}
.y1e2{bottom:93.307050px;}
.y211{bottom:93.307200px;}
.y132{bottom:95.085000px;}
.ybc{bottom:95.565000px;}
.yab{bottom:95.580000px;}
.ya3{bottom:95.625000px;}
.ycd{bottom:100.303500px;}
.y138{bottom:104.580000px;}
.yef{bottom:105.300000px;}
.yc5{bottom:108.405000px;}
.y1e1{bottom:109.807050px;}
.y210{bottom:109.807200px;}
.y152{bottom:112.140000px;}
.y161{bottom:112.170000px;}
.y1ae{bottom:113.796000px;}
.yf4{bottom:118.980000px;}
.y24a{bottom:120.047400px;}
.y137{bottom:122.940000px;}
.y221{bottom:126.307050px;}
.y20f{bottom:126.307200px;}
.yaa{bottom:132.300000px;}
.ybb{bottom:132.330000px;}
.yb5{bottom:132.345000px;}
.y160{bottom:133.050000px;}
.y151{bottom:133.200000px;}
.y15d{bottom:133.230000px;}
.y99{bottom:133.956000px;}
.y125{bottom:135.936000px;}
.y43{bottom:137.916000px;}
.y136{bottom:141.120000px;}
.y230{bottom:141.307050px;}
.y1e0{bottom:142.807050px;}
.y6a{bottom:153.210000px;}
.y15f{bottom:154.110000px;}
.y15a{bottom:154.260000px;}
.y15c{bottom:154.290000px;}
.y195{bottom:158.250000px;}
.y1df{bottom:159.307050px;}
.y20e{bottom:159.307200px;}
.ybf{bottom:168.510000px;}
.ya9{bottom:168.840000px;}
.yba{bottom:168.870000px;}
.y249{bottom:172.547400px;}
.y98{bottom:174.090000px;}
.y159{bottom:175.320000px;}
.y1de{bottom:175.807050px;}
.y20d{bottom:175.807200px;}
.y42{bottom:176.070000px;}
.y124{bottom:176.250000px;}
.y14b{bottom:178.410000px;}
.y9a{bottom:181.650000px;}
.yb8{bottom:188.505000px;}
.y22f{bottom:190.807050px;}
.y1dd{bottom:192.307050px;}
.y20c{bottom:192.307200px;}
.y1ad{bottom:194.250000px;}
.y158{bottom:196.380000px;}
.y69{bottom:198.390000px;}
.y194{bottom:198.570000px;}
.y25{bottom:200.910000px;}
.yb9{bottom:205.590000px;}
.y22e{bottom:207.307050px;}
.y1dc{bottom:208.807050px;}
.y20b{bottom:208.807200px;}
.y167{bottom:209.025000px;}
.y41{bottom:214.230000px;}
.y97{bottom:214.410000px;}
.y123{bottom:216.570000px;}
.y157{bottom:217.485000px;}
.y14a{bottom:218.730000px;}
.y248{bottom:220.547400px;}
.y22d{bottom:223.807050px;}
.y129{bottom:224.130000px;}
.y80{bottom:225.210000px;}
.y1db{bottom:225.307050px;}
.y20a{bottom:225.307200px;}
.y1ac{bottom:234.570000px;}
.y193{bottom:238.890000px;}
.y1da{bottom:241.807050px;}
.y209{bottom:241.807200px;}
.y68{bottom:243.570000px;}
.y24b{bottom:246.307050px;}
.y5{bottom:248.550000px;}
.y40{bottom:251.310000px;}
.y96{bottom:254.730000px;}
.y24{bottom:256.350000px;}
.y122{bottom:256.890000px;}
.y1d9{bottom:258.307050px;}
.y208{bottom:258.307200px;}
.y149{bottom:259.050000px;}
.y7f{bottom:265.530000px;}
.y247{bottom:268.547400px;}
.y1d8{bottom:274.807050px;}
.y207{bottom:274.807200px;}
.y1ab{bottom:274.890000px;}
.y192{bottom:279.210000px;}
.y3f{bottom:288.210000px;}
.y67{bottom:288.750000px;}
.y1d7{bottom:291.307050px;}
.y206{bottom:291.307200px;}
.y95{bottom:295.050000px;}
.y121{bottom:297.210000px;}
.y148{bottom:299.190000px;}
.y7e{bottom:305.670000px;}
.y15e{bottom:307.125000px;}
.y220{bottom:307.807050px;}
.yaf{bottom:310.350000px;}
.y23{bottom:311.610000px;}
.y1aa{bottom:315.210000px;}
.y191{bottom:319.395000px;}
.y246{bottom:324.047400px;}
.y1d6{bottom:324.307050px;}
.y205{bottom:324.307200px;}
.y3e{bottom:324.975000px;}
.yae{bottom:330.375000px;}
.y10{bottom:334.110000px;}
.y66{bottom:334.155000px;}
.y94{bottom:335.415000px;}
.y120{bottom:337.395000px;}
.y147{bottom:339.555000px;}
.y1d5{bottom:340.807050px;}
.y204{bottom:340.807200px;}
.y245{bottom:343.547400px;}
.y7d{bottom:346.035000px;}
.y1a9{bottom:355.575000px;}
.y1d4{bottom:357.307050px;}
.y203{bottom:357.307200px;}
.y190{bottom:359.715000px;}
.y3d{bottom:361.875000px;}
.y244{bottom:363.047400px;}
.yf{bottom:366.510000px;}
.y22{bottom:366.915000px;}
.y1d3{bottom:373.807050px;}
.y202{bottom:373.807200px;}
.y93{bottom:375.555000px;}
.y11f{bottom:377.715000px;}
.y65{bottom:379.335000px;}
.y146{bottom:379.875000px;}
.y243{bottom:382.547400px;}
.y7c{bottom:386.355000px;}
.y201{bottom:388.807200px;}
.y1d2{bottom:390.307050px;}
.y1a8{bottom:395.715000px;}
.y3c{bottom:398.595000px;}
.ye{bottom:398.955000px;}
.y18f{bottom:400.035000px;}
.y242{bottom:402.047400px;}
.y22c{bottom:405.307050px;}
.y200{bottom:405.307200px;}
.y1d1{bottom:406.807050px;}
.yb7{bottom:412.815000px;}
.y92{bottom:415.875000px;}
.y11e{bottom:418.035000px;}
.y145{bottom:420.195000px;}
.y22b{bottom:421.807050px;}
.y21{bottom:422.175000px;}
.y1d0{bottom:423.307050px;}
.y1ff{bottom:423.307200px;}
.y64{bottom:424.515000px;}
.y7b{bottom:426.675000px;}
.yf8{bottom:427.575000px;}
.yd{bottom:431.355000px;}
.y241{bottom:433.547400px;}
.y3b{bottom:435.495000px;}
.y1a7{bottom:436.035000px;}
.y1fe{bottom:438.307200px;}
.y1cf{bottom:439.807050px;}
.y18e{bottom:440.355000px;}
.ye4{bottom:440.715000px;}
.yf3{bottom:447.555000px;}
.y55{bottom:453.855000px;}
.y1fd{bottom:454.807200px;}
.y91{bottom:456.195000px;}
.y1ce{bottom:456.307050px;}
.y11d{bottom:458.355000px;}
.y144{bottom:460.515000px;}
.y240{bottom:460.547400px;}
.yc{bottom:463.755000px;}
.y7a{bottom:466.995000px;}
.y63{bottom:469.695000px;}
.y3a{bottom:472.395000px;}
.y1cd{bottom:472.807050px;}
.y1fc{bottom:472.807200px;}
.yd1{bottom:472.935000px;}
.y15b{bottom:475.455000px;}
.y1a6{bottom:476.355000px;}
.y20{bottom:477.435000px;}
.y18d{bottom:480.675000px;}
.yad{bottom:481.395000px;}
.y21f{bottom:489.307050px;}
.y1fb{bottom:489.307200px;}
.y54{bottom:492.015000px;}
.yb{bottom:496.155000px;}
.y90{bottom:496.515000px;}
.ycf{bottom:498.135000px;}
.y11c{bottom:498.675000px;}
.y143{bottom:500.655000px;}
.y22a{bottom:504.307050px;}
.y23f{bottom:505.547400px;}
.y1cc{bottom:505.807050px;}
.y79{bottom:507.135000px;}
.y39{bottom:509.115000px;}
.ydb{bottom:513.075000px;}
.y62{bottom:514.875000px;}
.y1a5{bottom:516.675000px;}
.y229{bottom:520.807050px;}
.y18c{bottom:520.815000px;}
.y1cb{bottom:522.307050px;}
.y1fa{bottom:522.307200px;}
.yca{bottom:522.975000px;}
.ya{bottom:528.555000px;}
.ycc{bottom:529.095000px;}
.y53{bottom:530.175000px;}
.y1f{bottom:532.695000px;}
.y8f{bottom:536.835000px;}
.y1ca{bottom:538.807050px;}
.y1f9{bottom:538.807200px;}
.y11b{bottom:538.815000px;}
.y142{bottom:540.975000px;}
.y38{bottom:546.015000px;}
.y78{bottom:547.455000px;}
.y23e{bottom:555.047400px;}
.y1c9{bottom:555.307050px;}
.y1f8{bottom:555.307200px;}
.y1a4{bottom:556.995000px;}
.y102{bottom:558.975000px;}
.y61{bottom:560.055000px;}
.y9{bottom:560.955000px;}
.y18b{bottom:561.135000px;}
.y52{bottom:568.335000px;}
.y228{bottom:570.307050px;}
.y1c8{bottom:571.807050px;}
.y1f7{bottom:571.807200px;}
.y8e{bottom:576.975000px;}
.y11a{bottom:579.135000px;}
.y141{bottom:581.295000px;}
.y37{bottom:582.735000px;}
.y101{bottom:583.635000px;}
.yf0{bottom:583.815000px;}
.y227{bottom:586.807050px;}
.y77{bottom:587.775000px;}
.y1e{bottom:587.955000px;}
.y21e{bottom:588.307050px;}
.y1f6{bottom:588.307200px;}
.ya8{bottom:591.225000px;}
.y8{bottom:593.355000px;}
.yb6{bottom:595.905000px;}
.y1a3{bottom:597.165000px;}
.y23d{bottom:600.062400px;}
.y18a{bottom:601.485000px;}
.y1c7{bottom:604.807050px;}
.y1f5{bottom:604.807200px;}
.y60{bottom:605.445000px;}
.y51{bottom:606.525000px;}
.y100{bottom:608.505000px;}
.y8d{bottom:617.325000px;}
.y140{bottom:619.305000px;}
.y119{bottom:619.485000px;}
.y36{bottom:619.665000px;}
.y1c6{bottom:621.307050px;}
.y189{bottom:621.645000px;}
.y13e{bottom:624.885000px;}
.y7{bottom:625.785000px;}
.y76{bottom:628.125000px;}
.yff{bottom:633.165000px;}
.y1a2{bottom:637.485000px;}
.y1c5{bottom:637.807050px;}
.y1f4{bottom:637.807200px;}
.y188{bottom:641.805000px;}
.y1d{bottom:643.245000px;}
.y156{bottom:643.965000px;}
.y50{bottom:644.685000px;}
.y23c{bottom:646.562400px;}
.y5f{bottom:650.625000px;}
.y1c4{bottom:654.307050px;}
.y1f3{bottom:654.307200px;}
.y35{bottom:656.385000px;}
.y13f{bottom:657.465000px;}
.y8c{bottom:657.645000px;}
.yfe{bottom:657.825000px;}
.y6{bottom:658.185000px;}
.y118{bottom:659.805000px;}
.y187{bottom:661.965000px;}
.yee{bottom:664.485000px;}
.y128{bottom:667.365000px;}
.y1b1{bottom:667.725000px;}
.y75{bottom:668.445000px;}
.y1c3{bottom:670.807050px;}
.y1f2{bottom:670.807200px;}
.y105{bottom:674.385000px;}
.y135{bottom:676.365000px;}
.y1a1{bottom:677.805000px;}
.y186{bottom:681.945000px;}
.yfd{bottom:682.665000px;}
.y4f{bottom:682.845000px;}
.y1c2{bottom:687.307050px;}
.y1f1{bottom:687.307200px;}
.y34{bottom:693.285000px;}
.y107{bottom:694.545000px;}
.y4{bottom:695.340000px;}
.y5e{bottom:695.805000px;}
.y23b{bottom:697.562400px;}
.y8b{bottom:697.965000px;}
.y1c{bottom:698.685000px;}
.y117{bottom:700.125000px;}
.y185{bottom:702.105000px;}
.y1b0{bottom:702.825000px;}
.y1c1{bottom:703.807050px;}
.y1f0{bottom:708.307200px;}
.y74{bottom:708.585000px;}
.yfc{bottom:710.205000px;}
.y172{bottom:714.885000px;}
.y1a0{bottom:718.125000px;}
.y23a{bottom:719.814450px;}
.y1c0{bottom:720.307050px;}
.y4e{bottom:721.005000px;}
.y184{bottom:722.265000px;}
.y103{bottom:728.205000px;}
.y33{bottom:730.005000px;}
.y3{bottom:733.140000px;}
.y171{bottom:735.045000px;}
.y1bf{bottom:736.807050px;}
.y1af{bottom:738.105000px;}
.y8a{bottom:738.285000px;}
.yfb{bottom:740.265000px;}
.y5d{bottom:740.985000px;}
.yb4{bottom:742.425000px;}
.y13d{bottom:745.845000px;}
.y73{bottom:748.905000px;}
.y1be{bottom:753.307050px;}
.y1ef{bottom:753.307200px;}
.y1b{bottom:753.945000px;}
.y19f{bottom:758.445000px;}
.y4d{bottom:759.165000px;}
.y183{bottom:762.585000px;}
.y2{bottom:765.720000px;}
.y32{bottom:766.905000px;}
.y1bd{bottom:769.807050px;}
.y1ee{bottom:769.807200px;}
.yfa{bottom:770.505000px;}
.ya7{bottom:774.285000px;}
.y89{bottom:778.425000px;}
.y116{bottom:780.585000px;}
.y13{bottom:781.770000px;}
.y182{bottom:782.745000px;}
.yed{bottom:785.265000px;}
.y5c{bottom:786.165000px;}
.y1bc{bottom:786.307050px;}
.y1ed{bottom:786.307200px;}
.y239{bottom:787.517400px;}
.y72{bottom:789.225000px;}
.yd9{bottom:792.105000px;}
.yd8{bottom:794.445000px;}
.y4c{bottom:797.325000px;}
.y19e{bottom:798.585000px;}
.y1bb{bottom:802.807050px;}
.y1ec{bottom:802.807200px;}
.y181{bottom:802.905000px;}
.y31{bottom:803.805000px;}
.yc4{bottom:804.165000px;}
.y1a{bottom:809.205000px;}
.ya6{bottom:811.005000px;}
.y238{bottom:816.801150px;}
.y88{bottom:818.745000px;}
.y1ba{bottom:819.307050px;}
.y1eb{bottom:819.307200px;}
.y12{bottom:819.570000px;}
.y115{bottom:820.905000px;}
.y180{bottom:823.065000px;}
.y71{bottom:829.545000px;}
.y5b{bottom:831.345000px;}
.y30{bottom:833.145000px;}
.y226{bottom:834.307050px;}
.y4b{bottom:835.485000px;}
.y1b9{bottom:835.807050px;}
.y1ea{bottom:835.807200px;}
.y131{bottom:836.205000px;}
.yc1{bottom:837.105000px;}
.y19d{bottom:838.905000px;}
.y17f{bottom:843.225000px;}
.y237{bottom:846.084900px;}
.ya2{bottom:847.545000px;}
.y11{bottom:852.150000px;}
.y1b8{bottom:852.307050px;}
.y1e9{bottom:852.307200px;}
.y10e{bottom:852.405000px;}
.y127{bottom:858.930000px;}
.y87{bottom:859.110000px;}
.y114{bottom:861.270000px;}
.y2f{bottom:862.350000px;}
.y17e{bottom:863.430000px;}
.y19{bottom:864.510000px;}
.yeb{bottom:865.950000px;}
.y126{bottom:866.670000px;}
.y225{bottom:867.307050px;}
.y1b7{bottom:868.807050px;}
.y1e8{bottom:868.807200px;}
.y70{bottom:869.910000px;}
.y4a{bottom:873.690000px;}
.ye3{bottom:873.870000px;}
.y236{bottom:875.368500px;}
.y150{bottom:875.670000px;}
.y1{bottom:876.600000px;}
.y5a{bottom:876.750000px;}
.y19c{bottom:879.270000px;}
.y17d{bottom:883.410000px;}
.y233{bottom:883.715850px;}
.y1b6{bottom:885.307050px;}
.y1e7{bottom:885.307200px;}
.yb3{bottom:888.990000px;}
.y10b{bottom:889.530000px;}
.y2e{bottom:899.250000px;}
.y86{bottom:899.430000px;}
.y113{bottom:901.590000px;}
.y1b5{bottom:901.807050px;}
.y1e6{bottom:901.807200px;}
.y232{bottom:903.215850px;}
.y17c{bottom:903.570000px;}
.y235{bottom:904.652250px;}
.y16f{bottom:906.270000px;}
.y49{bottom:911.850000px;}
.y6f{bottom:914.910000px;}
.y1b4{bottom:918.307050px;}
.y1e5{bottom:918.307200px;}
.ye2{bottom:918.870000px;}
.y19b{bottom:919.590000px;}
.y18{bottom:919.770000px;}
.y59{bottom:921.930000px;}
.y17b{bottom:923.730000px;}
.y1b3{bottom:934.807050px;}
.y1e4{bottom:934.807200px;}
.y2d{bottom:935.970000px;}
.y85{bottom:939.750000px;}
.y112{bottom:941.730000px;}
.y17a{bottom:943.890000px;}
.y130{bottom:945.510000px;}
.y16e{bottom:946.410000px;}
.y48{bottom:950.190000px;}
.ye9{bottom:950.910000px;}
.y234{bottom:951.307050px;}
.ya1{bottom:957.390000px;}
.y19a{bottom:959.910000px;}
.y6e{bottom:960.090000px;}
.y179{bottom:964.050000px;}
.ye1{bottom:964.230000px;}
.yb1{bottom:966.750000px;}
.y58{bottom:967.110000px;}
.y21d{bottom:967.807050px;}
.y2c{bottom:972.870000px;}
.y17{bottom:975.030000px;}
.y84{bottom:979.890000px;}
.y111{bottom:982.050000px;}
.y178{bottom:984.210000px;}
.y21c{bottom:984.307050px;}
.y47{bottom:988.350000px;}
.y16d{bottom:991.230000px;}
.ye6{bottom:993.030000px;}
.y9f{bottom:994.110000px;}
.y199{bottom:1000.050000px;}
.y12e{bottom:1000.230000px;}
.y21b{bottom:1000.807050px;}
.y177{bottom:1004.370000px;}
.y6d{bottom:1005.270000px;}
.ye0{bottom:1006.710000px;}
.y2b{bottom:1010.670000px;}
.y57{bottom:1012.290000px;}
.y21a{bottom:1017.307050px;}
.y83{bottom:1020.210000px;}
.y110{bottom:1022.370000px;}
.y176{bottom:1024.530000px;}
.y46{bottom:1026.510000px;}
.y12c{bottom:1027.410000px;}
.y14f{bottom:1027.590000px;}
.y16{bottom:1030.290000px;}
.ydf{bottom:1031.550000px;}
.y224{bottom:1032.307050px;}
.y16c{bottom:1033.350000px;}
.y214{bottom:1033.578150px;}
.y219{bottom:1033.807050px;}
.y9d{bottom:1035.150000px;}
.y10d{bottom:1039.110000px;}
.y198{bottom:1040.370000px;}
.yb0{bottom:1040.730000px;}
.yf9{bottom:1042.530000px;}
.y175{bottom:1044.690000px;}
.y2a{bottom:1048.830000px;}
.y218{bottom:1050.307050px;}
.y6c{bottom:1050.450000px;}
.yde{bottom:1056.210000px;}
.y56{bottom:1057.470000px;}
.y82{bottom:1060.530000px;}
.y10f{bottom:1062.690000px;}
.y45{bottom:1064.670000px;}
.y174{bottom:1064.850000px;}
.y223{bottom:1065.307050px;}
.y217{bottom:1066.807050px;}
.y14c{bottom:1069.710000px;}
.y29{bottom:1072.770000px;}
.y9b{bottom:1077.270000px;}
.y173{bottom:1079.610000px;}
.y197{bottom:1080.690000px;}
.ydd{bottom:1080.870000px;}
.y216{bottom:1083.307050px;}
.y15{bottom:1085.550000px;}
.y12a{bottom:1086.630000px;}
.y213{bottom:1087.578150px;}
.y109{bottom:1090.050000px;}
.y10a{bottom:1093.830000px;}
.y6b{bottom:1095.630000px;}
.y215{bottom:1099.807050px;}
.yc0{bottom:1100.670000px;}
.y28{bottom:1100.850000px;}
.y44{bottom:1102.830000px;}
.ye5{bottom:1103.010000px;}
.ydc{bottom:1105.710000px;}
.yd6{bottom:1113.450000px;}
.yd4{bottom:1117.950000px;}
.y196{bottom:1121.010000px;}
.y14{bottom:1141.020000px;}
.y81{bottom:1141.200000px;}
.y231{bottom:1150.557450px;}
.h36{height:13.860000px;}
.h33{height:15.480000px;}
.h35{height:16.560000px;}
.h25{height:22.485000px;}
.h38{height:25.005000px;}
.h3a{height:25.042500px;}
.h3d{height:27.165000px;}
.h3b{height:27.345000px;}
.h37{height:33.285000px;}
.h29{height:33.300000px;}
.h27{height:33.330000px;}
.h2b{height:33.465000px;}
.h2a{height:33.480000px;}
.h5a{height:33.600000px;}
.he{height:34.439766px;}
.h59{height:34.944000px;}
.h12{height:36.525000px;}
.h14{height:36.540000px;}
.hf{height:36.705000px;}
.h15{height:36.720000px;}
.h54{height:37.800000px;}
.h4f{height:39.312000px;}
.h34{height:39.783867px;}
.h47{height:40.125000px;}
.h46{height:40.305000px;}
.h26{height:41.025000px;}
.h11{height:41.385000px;}
.h40{height:42.105000px;}
.hc{height:43.554375px;}
.h58{height:43.680000px;}
.h2c{height:44.534180px;}
.h4b{height:45.184219px;}
.h4a{height:46.057500px;}
.h9{height:47.545312px;}
.h51{height:48.276000px;}
.h10{height:49.284492px;}
.h52{height:50.400000px;}
.h55{height:51.660000px;}
.h50{height:53.640000px;}
.h8{height:54.628594px;}
.h3c{height:54.705000px;}
.h2{height:56.320312px;}
.h56{height:56.826000px;}
.h20{height:59.378906px;}
.h22{height:59.565000px;}
.h23{height:59.610000px;}
.h24{height:59.752500px;}
.h1f{height:59.782500px;}
.h57{height:61.992000px;}
.h49{height:62.304609px;}
.hd{height:64.679766px;}
.ha{height:69.086250px;}
.h39{height:69.473320px;}
.h1a{height:73.065000px;}
.h19{height:73.245000px;}
.hb{height:73.794375px;}
.h3{height:75.093750px;}
.h5{height:75.243937px;}
.h28{height:78.973945px;}
.h2e{height:80.445000px;}
.h2d{height:80.625000px;}
.h2f{height:80.662500px;}
.h31{height:80.670000px;}
.h4{height:87.859687px;}
.h45{height:93.585000px;}
.h3e{height:109.282500px;}
.h13{height:109.822500px;}
.h17{height:109.830000px;}
.h30{height:120.780000px;}
.h21{height:122.602500px;}
.h48{height:126.382500px;}
.h32{height:131.745000px;}
.h18{height:146.505000px;}
.h1c{height:146.520000px;}
.h1b{height:146.542500px;}
.h41{height:147.405000px;}
.h53{height:154.980000px;}
.h3f{height:155.340000px;}
.h44{height:168.315000px;}
.h43{height:168.510000px;}
.h16{height:183.060000px;}
.h1d{height:183.090000px;}
.h1e{height:219.795000px;}
.h42{height:231.690000px;}
.h4e{height:1216.063500px;}
.h6{height:1262.790000px;}
.h7{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.h4d{height:1278.750000px;}
.h4c{height:1279.063500px;}
.w1c{width:-89.460000px;}
.w1d{width:-69.300000px;}
.w1e{width:-30.060000px;}
.w20{width:23.925000px;}
.w21{width:23.929500px;}
.w18{width:52.365000px;}
.w17{width:52.414500px;}
.w16{width:52.545000px;}
.w1f{width:52.549500px;}
.w15{width:52.558500px;}
.w29{width:61.941000px;}
.w26{width:68.040000px;}
.w27{width:91.620000px;}
.wb{width:106.401000px;}
.we{width:116.841000px;}
.wc{width:116.985000px;}
.w22{width:125.089500px;}
.w2a{width:126.705000px;}
.w14{width:137.145000px;}
.w13{width:137.190000px;}
.w28{width:138.276000px;}
.w6{width:159.495000px;}
.w25{width:167.599500px;}
.w8{width:191.355000px;}
.w12{width:233.835000px;}
.w11{width:234.028500px;}
.wf{width:234.073500px;}
.w24{width:264.435000px;}
.w23{width:264.480000px;}
.w1b{width:324.075000px;}
.w1a{width:324.199500px;}
.wd{width:422.884500px;}
.w10{width:427.560000px;}
.wa{width:433.324500px;}
.w7{width:465.364500px;}
.w5{width:497.224500px;}
.w19{width:648.270000px;}
.w4{width:654.030000px;}
.w9{width:656.730000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:893.700000px;}
.w3{width:894.000000px;}
.w2d{width:918.424500px;}
.w2b{width:981.426000px;}
.w2c{width:981.750000px;}
.x58{left:-816.378000px;}
.x37{left:-106.956000px;}
.x38{left:-92.916000px;}
.x39{left:-52.920000px;}
.x0{left:0.000000px;}
.x3c{left:3.225000px;}
.x3e{left:7.009500px;}
.x16{left:8.089500px;}
.x47{left:10.260000px;}
.x1f{left:11.325000px;}
.x49{left:13.530000px;}
.x27{left:15.660000px;}
.x45{left:17.820000px;}
.x29{left:19.440000px;}
.x4a{left:22.485000px;}
.x4c{left:25.740000px;}
.x4e{left:26.805000px;}
.x1b{left:29.329500px;}
.x26{left:30.585000px;}
.x2e{left:33.121500px;}
.x20{left:35.265000px;}
.x28{left:38.145000px;}
.x33{left:39.421500px;}
.x30{left:41.401500px;}
.x2c{left:43.200000px;}
.x24{left:44.985000px;}
.x2b{left:46.980000px;}
.x2a{left:50.745000px;}
.x25{left:54.720000px;}
.x23{left:58.305000px;}
.x41{left:61.183500px;}
.x4d{left:65.010000px;}
.x50{left:76.535400px;}
.x19{left:86.070000px;}
.x1d{left:88.050000px;}
.x51{left:89.291400px;}
.x55{left:90.492900px;}
.x1a{left:91.830000px;}
.x1c{left:95.610000px;}
.x15{left:119.566500px;}
.x3a{left:126.046500px;}
.x10{left:127.656000px;}
.x3d{left:140.086500px;}
.x53{left:157.448400px;}
.x3f{left:164.745000px;}
.x40{left:178.590000px;}
.x13{left:180.750000px;}
.x54{left:220.312950px;}
.x3b{left:226.665000px;}
.x42{left:244.665000px;}
.x44{left:287.175000px;}
.x57{left:316.656600px;}
.xb{left:329.325000px;}
.x46{left:355.035000px;}
.xa{left:368.565000px;}
.x35{left:443.775000px;}
.x48{left:446.655000px;}
.x32{left:460.200000px;}
.x2d{left:465.060000px;}
.x34{left:467.760000px;}
.x2f{left:471.900000px;}
.x52{left:484.724400px;}
.x9{left:490.470000px;}
.x56{left:493.678350px;}
.x36{left:496.365000px;}
.xe{left:498.855000px;}
.x3{left:503.130000px;}
.x43{left:509.160000px;}
.xc{left:530.970000px;}
.x22{left:542.460000px;}
.x6{left:548.790000px;}
.x1e{left:552.900000px;}
.x18{left:584.940000px;}
.xd{left:586.515000px;}
.x2{left:590.835000px;}
.x17{left:616.800000px;}
.xf{left:638.175000px;}
.x4{left:642.495000px;}
.x4b{left:646.890000px;}
.x21{left:659.310000px;}
.x59{left:675.637800px;}
.x8{left:679.140000px;}
.x31{left:680.730000px;}
.x11{left:685.770000px;}
.x14{left:748.770000px;}
.x5{left:750.990000px;}
.x12{left:757.230000px;}
.x1{left:763.590000px;}
.x4f{left:765.510000px;}
.x5a{left:772.795200px;}
.x7{left:829.110000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.333333pt;}
.v1{vertical-align:26.880000pt;}
.ls6d{letter-spacing:-1.920000pt;}
.ls68{letter-spacing:-1.440000pt;}
.ls74{letter-spacing:-1.200000pt;}
.ls69{letter-spacing:-1.152000pt;}
.ls6b{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.901333pt;}
.ls75{letter-spacing:-0.816000pt;}
.ls39{letter-spacing:-0.810667pt;}
.ls14{letter-spacing:-0.757333pt;}
.ls40{letter-spacing:-0.746667pt;}
.ls6a{letter-spacing:-0.720000pt;}
.ls1b{letter-spacing:-0.682667pt;}
.ls29{letter-spacing:-0.661333pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls3f{letter-spacing:-0.560000pt;}
.ls65{letter-spacing:-0.533333pt;}
.ls6c{letter-spacing:-0.528000pt;}
.ls59{letter-spacing:-0.524800pt;}
.ls4a{letter-spacing:-0.522133pt;}
.ls62{letter-spacing:-0.480000pt;}
.ls67{letter-spacing:-0.432000pt;}
.ls12{letter-spacing:-0.412267pt;}
.ls63{letter-spacing:-0.384000pt;}
.ls52{letter-spacing:-0.371200pt;}
.ls73{letter-spacing:-0.336000pt;}
.ls44{letter-spacing:-0.309867pt;}
.ls49{letter-spacing:-0.291733pt;}
.ls64{letter-spacing:-0.288000pt;}
.ls46{letter-spacing:-0.276267pt;}
.ls31{letter-spacing:-0.272000pt;}
.ls15{letter-spacing:-0.259733pt;}
.ls57{letter-spacing:-0.250667pt;}
.ls66{letter-spacing:-0.240000pt;}
.ls3b{letter-spacing:-0.212267pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.184533pt;}
.ls7{letter-spacing:-0.171733pt;}
.lsd{letter-spacing:-0.146133pt;}
.ls3a{letter-spacing:-0.125333pt;}
.ls11{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.105067pt;}
.ls37{letter-spacing:-0.102400pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls56{letter-spacing:-0.069867pt;}
.ls4b{letter-spacing:-0.069333pt;}
.ls2f{letter-spacing:-0.064000pt;}
.ls22{letter-spacing:-0.051840pt;}
.ls18{letter-spacing:-0.043520pt;}
.ls4e{letter-spacing:-0.040960pt;}
.lsf{letter-spacing:-0.038400pt;}
.ls5a{letter-spacing:-0.023040pt;}
.ls30{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.028160pt;}
.ls2e{letter-spacing:0.032000pt;}
.ls60{letter-spacing:0.048000pt;}
.ls43{letter-spacing:0.053867pt;}
.ls54{letter-spacing:0.057067pt;}
.ls21{letter-spacing:0.058667pt;}
.ls45{letter-spacing:0.061333pt;}
.ls2a{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.066667pt;}
.ls4d{letter-spacing:0.079360pt;}
.ls1e{letter-spacing:0.079467pt;}
.ls5e{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.096427pt;}
.ls6{letter-spacing:0.102400pt;}
.ls8{letter-spacing:0.111787pt;}
.ls1f{letter-spacing:0.115200pt;}
.lsa{letter-spacing:0.117760pt;}
.ls20{letter-spacing:0.117867pt;}
.ls55{letter-spacing:0.124800pt;}
.ls4c{letter-spacing:0.125333pt;}
.ls36{letter-spacing:0.132267pt;}
.ls9{letter-spacing:0.133120pt;}
.ls28{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.144000pt;}
.ls19{letter-spacing:0.161280pt;}
.ls33{letter-spacing:0.164480pt;}
.ls34{letter-spacing:0.168747pt;}
.ls1{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.194667pt;}
.ls2b{letter-spacing:0.208000pt;}
.ls5c{letter-spacing:0.217600pt;}
.ls17{letter-spacing:0.227733pt;}
.ls6e{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.278933pt;}
.ls50{letter-spacing:0.294400pt;}
.ls3{letter-spacing:0.303360pt;}
.ls1a{letter-spacing:0.314667pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.330133pt;}
.ls24{letter-spacing:0.348160pt;}
.ls27{letter-spacing:0.348267pt;}
.ls1d{letter-spacing:0.380267pt;}
.ls5f{letter-spacing:0.384000pt;}
.ls71{letter-spacing:0.413333pt;}
.ls5d{letter-spacing:0.432000pt;}
.ls4{letter-spacing:0.481280pt;}
.ls58{letter-spacing:0.483733pt;}
.ls4f{letter-spacing:0.508160pt;}
.ls32{letter-spacing:0.522133pt;}
.ls76{letter-spacing:0.528000pt;}
.ls72{letter-spacing:0.533333pt;}
.ls23{letter-spacing:0.586667pt;}
.ls6f{letter-spacing:0.788267pt;}
.ls3d{letter-spacing:0.801280pt;}
.ls70{letter-spacing:0.912000pt;}
.ls77{letter-spacing:0.960000pt;}
.ls78{letter-spacing:1.248000pt;}
.ls61{letter-spacing:1.600000pt;}
.ls42{letter-spacing:2.053120pt;}
.ls2c{letter-spacing:3.232000pt;}
.ls41{letter-spacing:3.973120pt;}
.ls48{letter-spacing:4.613120pt;}
.ls3e{letter-spacing:6.533120pt;}
.ls26{letter-spacing:14.213120pt;}
.ls25{letter-spacing:23.813120pt;}
.ls5b{letter-spacing:101.231787pt;}
.ls53{letter-spacing:175.471787pt;}
.ws41{word-spacing:-64.000000pt;}
.ws1{word-spacing:-20.816640pt;}
.ws45{word-spacing:-17.152000pt;}
.ws25{word-spacing:-16.922880pt;}
.ws3{word-spacing:-16.271573pt;}
.ws47{word-spacing:-14.826667pt;}
.ws1d{word-spacing:-14.464000pt;}
.ws44{word-spacing:-14.304000pt;}
.ws1a{word-spacing:-13.655147pt;}
.ws34{word-spacing:-13.637013pt;}
.ws12{word-spacing:-13.621547pt;}
.ws31{word-spacing:-13.601280pt;}
.ws27{word-spacing:-13.585813pt;}
.ws11{word-spacing:-13.534613pt;}
.ws3d{word-spacing:-13.524480pt;}
.ws2f{word-spacing:-13.432213pt;}
.ws1b{word-spacing:-13.424747pt;}
.ws16{word-spacing:-13.422080pt;}
.ws5{word-spacing:-13.409280pt;}
.ws15{word-spacing:-13.386347pt;}
.ws7{word-spacing:-13.373547pt;}
.ws2c{word-spacing:-13.360747pt;}
.ws3e{word-spacing:-13.344000pt;}
.ws32{word-spacing:-13.335040pt;}
.ws6{word-spacing:-13.306880pt;}
.ws3b{word-spacing:-13.283840pt;}
.wsa{word-spacing:-13.268480pt;}
.ws30{word-spacing:-13.265920pt;}
.ws21{word-spacing:-13.263360pt;}
.ws2e{word-spacing:-13.237547pt;}
.ws3a{word-spacing:-13.209813pt;}
.ws26{word-spacing:-13.204480pt;}
.ws9{word-spacing:-13.201813pt;}
.wsf{word-spacing:-13.189013pt;}
.ws28{word-spacing:-13.181547pt;}
.ws8{word-spacing:-13.160747pt;}
.ws4{word-spacing:-13.135147pt;}
.ws10{word-spacing:-13.122347pt;}
.wsd{word-spacing:-13.114880pt;}
.ws29{word-spacing:-13.094613pt;}
.ws2d{word-spacing:-13.030613pt;}
.ws33{word-spacing:-12.935680pt;}
.wsc{word-spacing:-12.894613pt;}
.ws3f{word-spacing:-12.864000pt;}
.ws3c{word-spacing:-12.782080pt;}
.ws2a{word-spacing:-12.746880pt;}
.ws1c{word-spacing:-12.645547pt;}
.ws19{word-spacing:-12.591787pt;}
.ws2b{word-spacing:-12.560213pt;}
.ws36{word-spacing:-12.129920pt;}
.ws35{word-spacing:-12.062187pt;}
.ws18{word-spacing:-12.005120pt;}
.ws17{word-spacing:-11.953280pt;}
.ws38{word-spacing:-11.935253pt;}
.ws40{word-spacing:-11.904000pt;}
.ws46{word-spacing:-11.861333pt;}
.ws1e{word-spacing:-10.848000pt;}
.ws1f{word-spacing:-10.832000pt;}
.ws20{word-spacing:-10.576000pt;}
.ws2{word-spacing:-10.319360pt;}
.ws23{word-spacing:-9.885547pt;}
.ws24{word-spacing:-9.823147pt;}
.ws14{word-spacing:-8.769387pt;}
.wsb{word-spacing:-8.389120pt;}
.wse{word-spacing:-8.129387pt;}
.ws39{word-spacing:-7.810560pt;}
.ws13{word-spacing:-7.487787pt;}
.ws22{word-spacing:-0.058880pt;}
.ws37{word-spacing:-0.053120pt;}
.ws42{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws43{word-spacing:0.432000pt;}
._38{margin-left:-13.344000pt;}
._39{margin-left:-12.276267pt;}
._37{margin-left:-8.446080pt;}
._36{margin-left:-7.200000pt;}
._35{margin-left:-5.952000pt;}
._34{margin-left:-4.427733pt;}
._1{margin-left:-2.703360pt;}
._0{margin-left:-1.344000pt;}
._2{width:0.917333pt;}
._3{width:1.924693pt;}
._15{width:3.235840pt;}
._b{width:4.239360pt;}
._c{width:5.770240pt;}
._6{width:6.937600pt;}
._5{width:8.133120pt;}
._1b{width:9.420800pt;}
._1c{width:10.561707pt;}
._d{width:12.269227pt;}
._30{width:13.803733pt;}
._e{width:14.778880pt;}
._f{width:15.828480pt;}
._10{width:16.732160pt;}
._11{width:18.017280pt;}
._12{width:18.949120pt;}
._19{width:20.299947pt;}
._1a{width:21.210453pt;}
._22{width:22.551040pt;}
._21{width:23.482880pt;}
._24{width:24.611840pt;}
._20{width:25.612800pt;}
._18{width:27.034027pt;}
._17{width:28.026880pt;}
._1f{width:29.188693pt;}
._27{width:30.515627pt;}
._23{width:31.795200pt;}
._2a{width:33.738240pt;}
._29{width:35.435520pt;}
._13{width:36.387840pt;}
._14{width:37.760427pt;}
._2b{width:38.832213pt;}
._1d{width:40.156160pt;}
._2f{width:42.629120pt;}
._2e{width:43.747840pt;}
._26{width:44.954453pt;}
._25{width:46.033920pt;}
._2d{width:53.527040pt;}
._2c{width:54.553600pt;}
._1e{width:62.000640pt;}
._9{width:63.208107pt;}
._3b{width:66.597227pt;}
._33{width:71.077547pt;}
._42{width:81.907200pt;}
._3f{width:83.814400pt;}
._7{width:90.692267pt;}
._a{width:94.310827pt;}
._32{width:101.590507pt;}
._45{width:107.827200pt;}
._3d{width:111.170560pt;}
._3e{width:118.053227pt;}
._46{width:126.037867pt;}
._31{width:130.326400pt;}
._43{width:138.005867pt;}
._40{width:139.608427pt;}
._8{width:149.418667pt;}
._28{width:162.164907pt;}
._3c{width:167.782400pt;}
._4{width:175.471787pt;}
._3a{width:183.219200pt;}
._47{width:235.110400pt;}
._44{width:237.094400pt;}
._41{width:279.078400pt;}
._16{width:1728.765440pt;}
.fsf{font-size:21.333333pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fsd{font-size:42.666667pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs2{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fsb{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:2.240000pt;}
.y104{bottom:3.680000pt;}
.y10c{bottom:4.480000pt;}
.y106{bottom:4.640000pt;}
.y166{bottom:6.066667pt;}
.y14e{bottom:6.080000pt;}
.yd0{bottom:7.360000pt;}
.yd3{bottom:7.680000pt;}
.yd7{bottom:9.280000pt;}
.yd5{bottom:9.306667pt;}
.yda{bottom:9.600000pt;}
.y12f{bottom:11.520000pt;}
.y12b{bottom:11.680000pt;}
.y16b{bottom:14.386667pt;}
.yf7{bottom:17.920000pt;}
.yc3{bottom:18.560000pt;}
.ya0{bottom:19.840000pt;}
.ybe{bottom:19.986667pt;}
.y9c{bottom:20.000000pt;}
.ya5{bottom:20.040000pt;}
.y170{bottom:21.920000pt;}
.ye8{bottom:22.080000pt;}
.yf2{bottom:22.106667pt;}
.yea{bottom:23.040000pt;}
.yd2{bottom:23.840000pt;}
.y9e{bottom:24.160000pt;}
.y14d{bottom:24.800000pt;}
.y165{bottom:24.826667pt;}
.y13c{bottom:27.840000pt;}
.y1b2{bottom:28.000000pt;}
.yc9{bottom:31.200000pt;}
.y16a{bottom:33.106667pt;}
.y12d{bottom:36.000000pt;}
.y134{bottom:36.040000pt;}
.ycb{bottom:37.760000pt;}
.yc2{bottom:37.960000pt;}
.yce{bottom:38.073333pt;}
.y155{bottom:43.520000pt;}
.y164{bottom:43.546667pt;}
.y13b{bottom:44.160000pt;}
.yf6{bottom:47.200000pt;}
.yc8{bottom:47.520000pt;}
.y27{bottom:51.232000pt;}
.y169{bottom:51.826667pt;}
.yb2{bottom:52.320000pt;}
.ybd{bottom:52.466667pt;}
.yac{bottom:52.480000pt;}
.ya4{bottom:52.520000pt;}
.yec{bottom:57.760000pt;}
.ye7{bottom:57.920000pt;}
.yf1{bottom:57.946667pt;}
.y133{bottom:60.200000pt;}
.y13a{bottom:60.320000pt;}
.y154{bottom:62.240000pt;}
.y163{bottom:62.266667pt;}
.yc7{bottom:63.880000pt;}
.y222{bottom:66.939600pt;}
.y1e3{bottom:68.272933pt;}
.y212{bottom:68.273067pt;}
.y26{bottom:69.152000pt;}
.y168{bottom:70.546667pt;}
.yf5{bottom:76.480000pt;}
.y139{bottom:76.640000pt;}
.yc6{bottom:80.200000pt;}
.y153{bottom:80.960000pt;}
.y162{bottom:80.986667pt;}
.y1e2{bottom:82.939600pt;}
.y211{bottom:82.939733pt;}
.y132{bottom:84.520000pt;}
.ybc{bottom:84.946667pt;}
.yab{bottom:84.960000pt;}
.ya3{bottom:85.000000pt;}
.ycd{bottom:89.158667pt;}
.y138{bottom:92.960000pt;}
.yef{bottom:93.600000pt;}
.yc5{bottom:96.360000pt;}
.y1e1{bottom:97.606267pt;}
.y210{bottom:97.606400pt;}
.y152{bottom:99.680000pt;}
.y161{bottom:99.706667pt;}
.y1ae{bottom:101.152000pt;}
.yf4{bottom:105.760000pt;}
.y24a{bottom:106.708800pt;}
.y137{bottom:109.280000pt;}
.y221{bottom:112.272933pt;}
.y20f{bottom:112.273067pt;}
.yaa{bottom:117.600000pt;}
.ybb{bottom:117.626667pt;}
.yb5{bottom:117.640000pt;}
.y160{bottom:118.266667pt;}
.y151{bottom:118.400000pt;}
.y15d{bottom:118.426667pt;}
.y99{bottom:119.072000pt;}
.y125{bottom:120.832000pt;}
.y43{bottom:122.592000pt;}
.y136{bottom:125.440000pt;}
.y230{bottom:125.606267pt;}
.y1e0{bottom:126.939600pt;}
.y6a{bottom:136.186667pt;}
.y15f{bottom:136.986667pt;}
.y15a{bottom:137.120000pt;}
.y15c{bottom:137.146667pt;}
.y195{bottom:140.666667pt;}
.y1df{bottom:141.606267pt;}
.y20e{bottom:141.606400pt;}
.ybf{bottom:149.786667pt;}
.ya9{bottom:150.080000pt;}
.yba{bottom:150.106667pt;}
.y249{bottom:153.375467pt;}
.y98{bottom:154.746667pt;}
.y159{bottom:155.840000pt;}
.y1de{bottom:156.272933pt;}
.y20d{bottom:156.273067pt;}
.y42{bottom:156.506667pt;}
.y124{bottom:156.666667pt;}
.y14b{bottom:158.586667pt;}
.y9a{bottom:161.466667pt;}
.yb8{bottom:167.560000pt;}
.y22f{bottom:169.606267pt;}
.y1dd{bottom:170.939600pt;}
.y20c{bottom:170.939733pt;}
.y1ad{bottom:172.666667pt;}
.y158{bottom:174.560000pt;}
.y69{bottom:176.346667pt;}
.y194{bottom:176.506667pt;}
.y25{bottom:178.586667pt;}
.yb9{bottom:182.746667pt;}
.y22e{bottom:184.272933pt;}
.y1dc{bottom:185.606267pt;}
.y20b{bottom:185.606400pt;}
.y167{bottom:185.800000pt;}
.y41{bottom:190.426667pt;}
.y97{bottom:190.586667pt;}
.y123{bottom:192.506667pt;}
.y157{bottom:193.320000pt;}
.y14a{bottom:194.426667pt;}
.y248{bottom:196.042133pt;}
.y22d{bottom:198.939600pt;}
.y129{bottom:199.226667pt;}
.y80{bottom:200.186667pt;}
.y1db{bottom:200.272933pt;}
.y20a{bottom:200.273067pt;}
.y1ac{bottom:208.506667pt;}
.y193{bottom:212.346667pt;}
.y1da{bottom:214.939600pt;}
.y209{bottom:214.939733pt;}
.y68{bottom:216.506667pt;}
.y24b{bottom:218.939600pt;}
.y5{bottom:220.933333pt;}
.y40{bottom:223.386667pt;}
.y96{bottom:226.426667pt;}
.y24{bottom:227.866667pt;}
.y122{bottom:228.346667pt;}
.y1d9{bottom:229.606267pt;}
.y208{bottom:229.606400pt;}
.y149{bottom:230.266667pt;}
.y7f{bottom:236.026667pt;}
.y247{bottom:238.708800pt;}
.y1d8{bottom:244.272933pt;}
.y207{bottom:244.273067pt;}
.y1ab{bottom:244.346667pt;}
.y192{bottom:248.186667pt;}
.y3f{bottom:256.186667pt;}
.y67{bottom:256.666667pt;}
.y1d7{bottom:258.939600pt;}
.y206{bottom:258.939733pt;}
.y95{bottom:262.266667pt;}
.y121{bottom:264.186667pt;}
.y148{bottom:265.946667pt;}
.y7e{bottom:271.706667pt;}
.y15e{bottom:273.000000pt;}
.y220{bottom:273.606267pt;}
.yaf{bottom:275.866667pt;}
.y23{bottom:276.986667pt;}
.y1aa{bottom:280.186667pt;}
.y191{bottom:283.906667pt;}
.y246{bottom:288.042133pt;}
.y1d6{bottom:288.272933pt;}
.y205{bottom:288.273067pt;}
.y3e{bottom:288.866667pt;}
.yae{bottom:293.666667pt;}
.y10{bottom:296.986667pt;}
.y66{bottom:297.026667pt;}
.y94{bottom:298.146667pt;}
.y120{bottom:299.906667pt;}
.y147{bottom:301.826667pt;}
.y1d5{bottom:302.939600pt;}
.y204{bottom:302.939733pt;}
.y245{bottom:305.375467pt;}
.y7d{bottom:307.586667pt;}
.y1a9{bottom:316.066667pt;}
.y1d4{bottom:317.606267pt;}
.y203{bottom:317.606400pt;}
.y190{bottom:319.746667pt;}
.y3d{bottom:321.666667pt;}
.y244{bottom:322.708800pt;}
.yf{bottom:325.786667pt;}
.y22{bottom:326.146667pt;}
.y1d3{bottom:332.272933pt;}
.y202{bottom:332.273067pt;}
.y93{bottom:333.826667pt;}
.y11f{bottom:335.746667pt;}
.y65{bottom:337.186667pt;}
.y146{bottom:337.666667pt;}
.y243{bottom:340.042133pt;}
.y7c{bottom:343.426667pt;}
.y201{bottom:345.606400pt;}
.y1d2{bottom:346.939600pt;}
.y1a8{bottom:351.746667pt;}
.y3c{bottom:354.306667pt;}
.ye{bottom:354.626667pt;}
.y18f{bottom:355.586667pt;}
.y242{bottom:357.375467pt;}
.y22c{bottom:360.272933pt;}
.y200{bottom:360.273067pt;}
.y1d1{bottom:361.606267pt;}
.yb7{bottom:366.946667pt;}
.y92{bottom:369.666667pt;}
.y11e{bottom:371.586667pt;}
.y145{bottom:373.506667pt;}
.y22b{bottom:374.939600pt;}
.y21{bottom:375.266667pt;}
.y1d0{bottom:376.272933pt;}
.y1ff{bottom:376.273067pt;}
.y64{bottom:377.346667pt;}
.y7b{bottom:379.266667pt;}
.yf8{bottom:380.066667pt;}
.yd{bottom:383.426667pt;}
.y241{bottom:385.375467pt;}
.y3b{bottom:387.106667pt;}
.y1a7{bottom:387.586667pt;}
.y1fe{bottom:389.606400pt;}
.y1cf{bottom:390.939600pt;}
.y18e{bottom:391.426667pt;}
.ye4{bottom:391.746667pt;}
.yf3{bottom:397.826667pt;}
.y55{bottom:403.426667pt;}
.y1fd{bottom:404.273067pt;}
.y91{bottom:405.506667pt;}
.y1ce{bottom:405.606267pt;}
.y11d{bottom:407.426667pt;}
.y144{bottom:409.346667pt;}
.y240{bottom:409.375467pt;}
.yc{bottom:412.226667pt;}
.y7a{bottom:415.106667pt;}
.y63{bottom:417.506667pt;}
.y3a{bottom:419.906667pt;}
.y1cd{bottom:420.272933pt;}
.y1fc{bottom:420.273067pt;}
.yd1{bottom:420.386667pt;}
.y15b{bottom:422.626667pt;}
.y1a6{bottom:423.426667pt;}
.y20{bottom:424.386667pt;}
.y18d{bottom:427.266667pt;}
.yad{bottom:427.906667pt;}
.y21f{bottom:434.939600pt;}
.y1fb{bottom:434.939733pt;}
.y54{bottom:437.346667pt;}
.yb{bottom:441.026667pt;}
.y90{bottom:441.346667pt;}
.ycf{bottom:442.786667pt;}
.y11c{bottom:443.266667pt;}
.y143{bottom:445.026667pt;}
.y22a{bottom:448.272933pt;}
.y23f{bottom:449.375467pt;}
.y1cc{bottom:449.606267pt;}
.y79{bottom:450.786667pt;}
.y39{bottom:452.546667pt;}
.ydb{bottom:456.066667pt;}
.y62{bottom:457.666667pt;}
.y1a5{bottom:459.266667pt;}
.y229{bottom:462.939600pt;}
.y18c{bottom:462.946667pt;}
.y1cb{bottom:464.272933pt;}
.y1fa{bottom:464.273067pt;}
.yca{bottom:464.866667pt;}
.ya{bottom:469.826667pt;}
.ycc{bottom:470.306667pt;}
.y53{bottom:471.266667pt;}
.y1f{bottom:473.506667pt;}
.y8f{bottom:477.186667pt;}
.y1ca{bottom:478.939600pt;}
.y1f9{bottom:478.939733pt;}
.y11b{bottom:478.946667pt;}
.y142{bottom:480.866667pt;}
.y38{bottom:485.346667pt;}
.y78{bottom:486.626667pt;}
.y23e{bottom:493.375467pt;}
.y1c9{bottom:493.606267pt;}
.y1f8{bottom:493.606400pt;}
.y1a4{bottom:495.106667pt;}
.y102{bottom:496.866667pt;}
.y61{bottom:497.826667pt;}
.y9{bottom:498.626667pt;}
.y18b{bottom:498.786667pt;}
.y52{bottom:505.186667pt;}
.y228{bottom:506.939600pt;}
.y1c8{bottom:508.272933pt;}
.y1f7{bottom:508.273067pt;}
.y8e{bottom:512.866667pt;}
.y11a{bottom:514.786667pt;}
.y141{bottom:516.706667pt;}
.y37{bottom:517.986667pt;}
.y101{bottom:518.786667pt;}
.yf0{bottom:518.946667pt;}
.y227{bottom:521.606267pt;}
.y77{bottom:522.466667pt;}
.y1e{bottom:522.626667pt;}
.y21e{bottom:522.939600pt;}
.y1f6{bottom:522.939733pt;}
.ya8{bottom:525.533333pt;}
.y8{bottom:527.426667pt;}
.yb6{bottom:529.693333pt;}
.y1a3{bottom:530.813333pt;}
.y23d{bottom:533.388800pt;}
.y18a{bottom:534.653333pt;}
.y1c7{bottom:537.606267pt;}
.y1f5{bottom:537.606400pt;}
.y60{bottom:538.173333pt;}
.y51{bottom:539.133333pt;}
.y100{bottom:540.893333pt;}
.y8d{bottom:548.733333pt;}
.y140{bottom:550.493333pt;}
.y119{bottom:550.653333pt;}
.y36{bottom:550.813333pt;}
.y1c6{bottom:552.272933pt;}
.y189{bottom:552.573333pt;}
.y13e{bottom:555.453333pt;}
.y7{bottom:556.253333pt;}
.y76{bottom:558.333333pt;}
.yff{bottom:562.813333pt;}
.y1a2{bottom:566.653333pt;}
.y1c5{bottom:566.939600pt;}
.y1f4{bottom:566.939733pt;}
.y188{bottom:570.493333pt;}
.y1d{bottom:571.773333pt;}
.y156{bottom:572.413333pt;}
.y50{bottom:573.053333pt;}
.y23c{bottom:574.722133pt;}
.y5f{bottom:578.333333pt;}
.y1c4{bottom:581.606267pt;}
.y1f3{bottom:581.606400pt;}
.y35{bottom:583.453333pt;}
.y13f{bottom:584.413333pt;}
.y8c{bottom:584.573333pt;}
.yfe{bottom:584.733333pt;}
.y6{bottom:585.053333pt;}
.y118{bottom:586.493333pt;}
.y187{bottom:588.413333pt;}
.yee{bottom:590.653333pt;}
.y128{bottom:593.213333pt;}
.y1b1{bottom:593.533333pt;}
.y75{bottom:594.173333pt;}
.y1c3{bottom:596.272933pt;}
.y1f2{bottom:596.273067pt;}
.y105{bottom:599.453333pt;}
.y135{bottom:601.213333pt;}
.y1a1{bottom:602.493333pt;}
.y186{bottom:606.173333pt;}
.yfd{bottom:606.813333pt;}
.y4f{bottom:606.973333pt;}
.y1c2{bottom:610.939600pt;}
.y1f1{bottom:610.939733pt;}
.y34{bottom:616.253333pt;}
.y107{bottom:617.373333pt;}
.y4{bottom:618.080000pt;}
.y5e{bottom:618.493333pt;}
.y23b{bottom:620.055467pt;}
.y8b{bottom:620.413333pt;}
.y1c{bottom:621.053333pt;}
.y117{bottom:622.333333pt;}
.y185{bottom:624.093333pt;}
.y1b0{bottom:624.733333pt;}
.y1c1{bottom:625.606267pt;}
.y1f0{bottom:629.606400pt;}
.y74{bottom:629.853333pt;}
.yfc{bottom:631.293333pt;}
.y172{bottom:635.453333pt;}
.y1a0{bottom:638.333333pt;}
.y23a{bottom:639.835067pt;}
.y1c0{bottom:640.272933pt;}
.y4e{bottom:640.893333pt;}
.y184{bottom:642.013333pt;}
.y103{bottom:647.293333pt;}
.y33{bottom:648.893333pt;}
.y3{bottom:651.680000pt;}
.y171{bottom:653.373333pt;}
.y1bf{bottom:654.939600pt;}
.y1af{bottom:656.093333pt;}
.y8a{bottom:656.253333pt;}
.yfb{bottom:658.013333pt;}
.y5d{bottom:658.653333pt;}
.yb4{bottom:659.933333pt;}
.y13d{bottom:662.973333pt;}
.y73{bottom:665.693333pt;}
.y1be{bottom:669.606267pt;}
.y1ef{bottom:669.606400pt;}
.y1b{bottom:670.173333pt;}
.y19f{bottom:674.173333pt;}
.y4d{bottom:674.813333pt;}
.y183{bottom:677.853333pt;}
.y2{bottom:680.640000pt;}
.y32{bottom:681.693333pt;}
.y1bd{bottom:684.272933pt;}
.y1ee{bottom:684.273067pt;}
.yfa{bottom:684.893333pt;}
.ya7{bottom:688.253333pt;}
.y89{bottom:691.933333pt;}
.y116{bottom:693.853333pt;}
.y13{bottom:694.906667pt;}
.y182{bottom:695.773333pt;}
.yed{bottom:698.013333pt;}
.y5c{bottom:698.813333pt;}
.y1bc{bottom:698.939600pt;}
.y1ed{bottom:698.939733pt;}
.y239{bottom:700.015467pt;}
.y72{bottom:701.533333pt;}
.yd9{bottom:704.093333pt;}
.yd8{bottom:706.173333pt;}
.y4c{bottom:708.733333pt;}
.y19e{bottom:709.853333pt;}
.y1bb{bottom:713.606267pt;}
.y1ec{bottom:713.606400pt;}
.y181{bottom:713.693333pt;}
.y31{bottom:714.493333pt;}
.yc4{bottom:714.813333pt;}
.y1a{bottom:719.293333pt;}
.ya6{bottom:720.893333pt;}
.y238{bottom:726.045467pt;}
.y88{bottom:727.773333pt;}
.y1ba{bottom:728.272933pt;}
.y1eb{bottom:728.273067pt;}
.y12{bottom:728.506667pt;}
.y115{bottom:729.693333pt;}
.y180{bottom:731.613333pt;}
.y71{bottom:737.373333pt;}
.y5b{bottom:738.973333pt;}
.y30{bottom:740.573333pt;}
.y226{bottom:741.606267pt;}
.y4b{bottom:742.653333pt;}
.y1b9{bottom:742.939600pt;}
.y1ea{bottom:742.939733pt;}
.y131{bottom:743.293333pt;}
.yc1{bottom:744.093333pt;}
.y19d{bottom:745.693333pt;}
.y17f{bottom:749.533333pt;}
.y237{bottom:752.075467pt;}
.ya2{bottom:753.373333pt;}
.y11{bottom:757.466667pt;}
.y1b8{bottom:757.606267pt;}
.y1e9{bottom:757.606400pt;}
.y10e{bottom:757.693333pt;}
.y127{bottom:763.493333pt;}
.y87{bottom:763.653333pt;}
.y114{bottom:765.573333pt;}
.y2f{bottom:766.533333pt;}
.y17e{bottom:767.493333pt;}
.y19{bottom:768.453333pt;}
.yeb{bottom:769.733333pt;}
.y126{bottom:770.373333pt;}
.y225{bottom:770.939600pt;}
.y1b7{bottom:772.272933pt;}
.y1e8{bottom:772.273067pt;}
.y70{bottom:773.253333pt;}
.y4a{bottom:776.613333pt;}
.ye3{bottom:776.773333pt;}
.y236{bottom:778.105333pt;}
.y150{bottom:778.373333pt;}
.y1{bottom:779.200000pt;}
.y5a{bottom:779.333333pt;}
.y19c{bottom:781.573333pt;}
.y17d{bottom:785.253333pt;}
.y233{bottom:785.525200pt;}
.y1b6{bottom:786.939600pt;}
.y1e7{bottom:786.939733pt;}
.yb3{bottom:790.213333pt;}
.y10b{bottom:790.693333pt;}
.y2e{bottom:799.333333pt;}
.y86{bottom:799.493333pt;}
.y113{bottom:801.413333pt;}
.y1b5{bottom:801.606267pt;}
.y1e6{bottom:801.606400pt;}
.y232{bottom:802.858533pt;}
.y17c{bottom:803.173333pt;}
.y235{bottom:804.135333pt;}
.y16f{bottom:805.573333pt;}
.y49{bottom:810.533333pt;}
.y6f{bottom:813.253333pt;}
.y1b4{bottom:816.272933pt;}
.y1e5{bottom:816.273067pt;}
.ye2{bottom:816.773333pt;}
.y19b{bottom:817.413333pt;}
.y18{bottom:817.573333pt;}
.y59{bottom:819.493333pt;}
.y17b{bottom:821.093333pt;}
.y1b3{bottom:830.939600pt;}
.y1e4{bottom:830.939733pt;}
.y2d{bottom:831.973333pt;}
.y85{bottom:835.333333pt;}
.y112{bottom:837.093333pt;}
.y17a{bottom:839.013333pt;}
.y130{bottom:840.453333pt;}
.y16e{bottom:841.253333pt;}
.y48{bottom:844.613333pt;}
.ye9{bottom:845.253333pt;}
.y234{bottom:845.606267pt;}
.ya1{bottom:851.013333pt;}
.y19a{bottom:853.253333pt;}
.y6e{bottom:853.413333pt;}
.y179{bottom:856.933333pt;}
.ye1{bottom:857.093333pt;}
.yb1{bottom:859.333333pt;}
.y58{bottom:859.653333pt;}
.y21d{bottom:860.272933pt;}
.y2c{bottom:864.773333pt;}
.y17{bottom:866.693333pt;}
.y84{bottom:871.013333pt;}
.y111{bottom:872.933333pt;}
.y178{bottom:874.853333pt;}
.y21c{bottom:874.939600pt;}
.y47{bottom:878.533333pt;}
.y16d{bottom:881.093333pt;}
.ye6{bottom:882.693333pt;}
.y9f{bottom:883.653333pt;}
.y199{bottom:888.933333pt;}
.y12e{bottom:889.093333pt;}
.y21b{bottom:889.606267pt;}
.y177{bottom:892.773333pt;}
.y6d{bottom:893.573333pt;}
.ye0{bottom:894.853333pt;}
.y2b{bottom:898.373333pt;}
.y57{bottom:899.813333pt;}
.y21a{bottom:904.272933pt;}
.y83{bottom:906.853333pt;}
.y110{bottom:908.773333pt;}
.y176{bottom:910.693333pt;}
.y46{bottom:912.453333pt;}
.y12c{bottom:913.253333pt;}
.y14f{bottom:913.413333pt;}
.y16{bottom:915.813333pt;}
.ydf{bottom:916.933333pt;}
.y224{bottom:917.606267pt;}
.y16c{bottom:918.533333pt;}
.y214{bottom:918.736133pt;}
.y219{bottom:918.939600pt;}
.y9d{bottom:920.133333pt;}
.y10d{bottom:923.653333pt;}
.y198{bottom:924.773333pt;}
.yb0{bottom:925.093333pt;}
.yf9{bottom:926.693333pt;}
.y175{bottom:928.613333pt;}
.y2a{bottom:932.293333pt;}
.y218{bottom:933.606267pt;}
.y6c{bottom:933.733333pt;}
.yde{bottom:938.853333pt;}
.y56{bottom:939.973333pt;}
.y82{bottom:942.693333pt;}
.y10f{bottom:944.613333pt;}
.y45{bottom:946.373333pt;}
.y174{bottom:946.533333pt;}
.y223{bottom:946.939600pt;}
.y217{bottom:948.272933pt;}
.y14c{bottom:950.853333pt;}
.y29{bottom:953.573333pt;}
.y9b{bottom:957.573333pt;}
.y173{bottom:959.653333pt;}
.y197{bottom:960.613333pt;}
.ydd{bottom:960.773333pt;}
.y216{bottom:962.939600pt;}
.y15{bottom:964.933333pt;}
.y12a{bottom:965.893333pt;}
.y213{bottom:966.736133pt;}
.y109{bottom:968.933333pt;}
.y10a{bottom:972.293333pt;}
.y6b{bottom:973.893333pt;}
.y215{bottom:977.606267pt;}
.yc0{bottom:978.373333pt;}
.y28{bottom:978.533333pt;}
.y44{bottom:980.293333pt;}
.ye5{bottom:980.453333pt;}
.ydc{bottom:982.853333pt;}
.yd6{bottom:989.733333pt;}
.yd4{bottom:993.733333pt;}
.y196{bottom:996.453333pt;}
.y14{bottom:1014.240000pt;}
.y81{bottom:1014.400000pt;}
.y231{bottom:1022.717733pt;}
.h36{height:12.320000pt;}
.h33{height:13.760000pt;}
.h35{height:14.720000pt;}
.h25{height:19.986667pt;}
.h38{height:22.226667pt;}
.h3a{height:22.260000pt;}
.h3d{height:24.146667pt;}
.h3b{height:24.306667pt;}
.h37{height:29.586667pt;}
.h29{height:29.600000pt;}
.h27{height:29.626667pt;}
.h2b{height:29.746667pt;}
.h2a{height:29.760000pt;}
.h5a{height:29.866667pt;}
.he{height:30.613125pt;}
.h59{height:31.061333pt;}
.h12{height:32.466667pt;}
.h14{height:32.480000pt;}
.hf{height:32.626667pt;}
.h15{height:32.640000pt;}
.h54{height:33.600000pt;}
.h4f{height:34.944000pt;}
.h34{height:35.363437pt;}
.h47{height:35.666667pt;}
.h46{height:35.826667pt;}
.h26{height:36.466667pt;}
.h11{height:36.786667pt;}
.h40{height:37.426667pt;}
.hc{height:38.715000pt;}
.h58{height:38.826667pt;}
.h2c{height:39.585938pt;}
.h4b{height:40.163750pt;}
.h4a{height:40.940000pt;}
.h9{height:42.262500pt;}
.h51{height:42.912000pt;}
.h10{height:43.808438pt;}
.h52{height:44.800000pt;}
.h55{height:45.920000pt;}
.h50{height:47.680000pt;}
.h8{height:48.558750pt;}
.h3c{height:48.626667pt;}
.h2{height:50.062500pt;}
.h56{height:50.512000pt;}
.h20{height:52.781250pt;}
.h22{height:52.946667pt;}
.h23{height:52.986667pt;}
.h24{height:53.113333pt;}
.h1f{height:53.140000pt;}
.h57{height:55.104000pt;}
.h49{height:55.381875pt;}
.hd{height:57.493125pt;}
.ha{height:61.410000pt;}
.h39{height:61.754062pt;}
.h1a{height:64.946667pt;}
.h19{height:65.106667pt;}
.hb{height:65.595000pt;}
.h3{height:66.750000pt;}
.h5{height:66.883500pt;}
.h28{height:70.199062pt;}
.h2e{height:71.506667pt;}
.h2d{height:71.666667pt;}
.h2f{height:71.700000pt;}
.h31{height:71.706667pt;}
.h4{height:78.097500pt;}
.h45{height:83.186667pt;}
.h3e{height:97.140000pt;}
.h13{height:97.620000pt;}
.h17{height:97.626667pt;}
.h30{height:107.360000pt;}
.h21{height:108.980000pt;}
.h48{height:112.340000pt;}
.h32{height:117.106667pt;}
.h18{height:130.226667pt;}
.h1c{height:130.240000pt;}
.h1b{height:130.260000pt;}
.h41{height:131.026667pt;}
.h53{height:137.760000pt;}
.h3f{height:138.080000pt;}
.h44{height:149.613333pt;}
.h43{height:149.786667pt;}
.h16{height:162.720000pt;}
.h1d{height:162.746667pt;}
.h1e{height:195.373333pt;}
.h42{height:205.946667pt;}
.h4e{height:1080.945333pt;}
.h6{height:1122.480000pt;}
.h7{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.h4d{height:1136.666667pt;}
.h4c{height:1136.945333pt;}
.w1c{width:-79.520000pt;}
.w1d{width:-61.600000pt;}
.w1e{width:-26.720000pt;}
.w20{width:21.266667pt;}
.w21{width:21.270667pt;}
.w18{width:46.546667pt;}
.w17{width:46.590667pt;}
.w16{width:46.706667pt;}
.w1f{width:46.710667pt;}
.w15{width:46.718667pt;}
.w29{width:55.058667pt;}
.w26{width:60.480000pt;}
.w27{width:81.440000pt;}
.wb{width:94.578667pt;}
.we{width:103.858667pt;}
.wc{width:103.986667pt;}
.w22{width:111.190667pt;}
.w2a{width:112.626667pt;}
.w14{width:121.906667pt;}
.w13{width:121.946667pt;}
.w28{width:122.912000pt;}
.w6{width:141.773333pt;}
.w25{width:148.977333pt;}
.w8{width:170.093333pt;}
.w12{width:207.853333pt;}
.w11{width:208.025333pt;}
.wf{width:208.065333pt;}
.w24{width:235.053333pt;}
.w23{width:235.093333pt;}
.w1b{width:288.066667pt;}
.w1a{width:288.177333pt;}
.wd{width:375.897333pt;}
.w10{width:380.053333pt;}
.wa{width:385.177333pt;}
.w7{width:413.657333pt;}
.w5{width:441.977333pt;}
.w19{width:576.240000pt;}
.w4{width:581.360000pt;}
.w9{width:583.760000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:794.400000pt;}
.w3{width:794.666667pt;}
.w2d{width:816.377333pt;}
.w2b{width:872.378667pt;}
.w2c{width:872.666667pt;}
.x58{left:-725.669333pt;}
.x37{left:-95.072000pt;}
.x38{left:-82.592000pt;}
.x39{left:-47.040000pt;}
.x0{left:0.000000pt;}
.x3c{left:2.866667pt;}
.x3e{left:6.230667pt;}
.x16{left:7.190667pt;}
.x47{left:9.120000pt;}
.x1f{left:10.066667pt;}
.x49{left:12.026667pt;}
.x27{left:13.920000pt;}
.x45{left:15.840000pt;}
.x29{left:17.280000pt;}
.x4a{left:19.986667pt;}
.x4c{left:22.880000pt;}
.x4e{left:23.826667pt;}
.x1b{left:26.070667pt;}
.x26{left:27.186667pt;}
.x2e{left:29.441333pt;}
.x20{left:31.346667pt;}
.x28{left:33.906667pt;}
.x33{left:35.041333pt;}
.x30{left:36.801333pt;}
.x2c{left:38.400000pt;}
.x24{left:39.986667pt;}
.x2b{left:41.760000pt;}
.x2a{left:45.106667pt;}
.x25{left:48.640000pt;}
.x23{left:51.826667pt;}
.x41{left:54.385333pt;}
.x4d{left:57.786667pt;}
.x50{left:68.031467pt;}
.x19{left:76.506667pt;}
.x1d{left:78.266667pt;}
.x51{left:79.370133pt;}
.x55{left:80.438133pt;}
.x1a{left:81.626667pt;}
.x1c{left:84.986667pt;}
.x15{left:106.281333pt;}
.x3a{left:112.041333pt;}
.x10{left:113.472000pt;}
.x3d{left:124.521333pt;}
.x53{left:139.954133pt;}
.x3f{left:146.440000pt;}
.x40{left:158.746667pt;}
.x13{left:160.666667pt;}
.x54{left:195.833733pt;}
.x3b{left:201.480000pt;}
.x42{left:217.480000pt;}
.x44{left:255.266667pt;}
.x57{left:281.472533pt;}
.xb{left:292.733333pt;}
.x46{left:315.586667pt;}
.xa{left:327.613333pt;}
.x35{left:394.466667pt;}
.x48{left:397.026667pt;}
.x32{left:409.066667pt;}
.x2d{left:413.386667pt;}
.x34{left:415.786667pt;}
.x2f{left:419.466667pt;}
.x52{left:430.866133pt;}
.x9{left:435.973333pt;}
.x56{left:438.825200pt;}
.x36{left:441.213333pt;}
.xe{left:443.426667pt;}
.x3{left:447.226667pt;}
.x43{left:452.586667pt;}
.xc{left:471.973333pt;}
.x22{left:482.186667pt;}
.x6{left:487.813333pt;}
.x1e{left:491.466667pt;}
.x18{left:519.946667pt;}
.xd{left:521.346667pt;}
.x2{left:525.186667pt;}
.x17{left:548.266667pt;}
.xf{left:567.266667pt;}
.x4{left:571.106667pt;}
.x4b{left:575.013333pt;}
.x21{left:586.053333pt;}
.x59{left:600.566933pt;}
.x8{left:603.680000pt;}
.x31{left:605.093333pt;}
.x11{left:609.573333pt;}
.x14{left:665.573333pt;}
.x5{left:667.546667pt;}
.x12{left:673.093333pt;}
.x1{left:678.746667pt;}
.x4f{left:680.453333pt;}
.x5a{left:686.929067pt;}
.x7{left:736.986667pt;}
}




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