
    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_96806cdb6880909ee3b09f8a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_86cafa159ceb3c7b91939a02.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_319be2c1103fa1d8ca136172.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_72cfa0bb13a5459e7ebc9668.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_bd57dd70fe486c407db5ae6c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.336000;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_ed47b82c27467dfd650408a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.683000;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_656a78e003859d5123f44fd0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.967773;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_b070f78ccf650847b2cbd340.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708000;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_1d6c9e660a2460a07b77e38a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967773;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_92e3d441e5830aeb4ae75436.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.975586;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_cf7e3b770343aef287228863.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975586;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_7a61647ad53f8cd7a3fb0ccd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.975586;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_e3c98ca8ebb2405c76819cf1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.975586;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_3119ac588d5d0e2d823128d3.woff2')format("woff");}.fff{font-family:fff;line-height:1.467000;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_3cf3f25dba6f33e8e1646c0a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.967773;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_e953021a8450e5ce5a4ab932.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.967773;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_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.979980;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_9840b98d26f7fbf28d273aaa.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.936523;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_af95a2a0ae2f944c20d35862.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.967773;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_e953021a8450e5ce5a4ab932.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.967773;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_ceb58cccfc323f1e962c4721.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.979980;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_9840b98d26f7fbf28d273aaa.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.936523;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_616b5006de710121f54a251a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_e953021a8450e5ce5a4ab932.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_77900faa1c0cf467b68344b1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_9887cef253e89ba639f481fd.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.936523;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;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_95b9252d20dcf2eb6aee14fb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.936000;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:ff1f;src:url('chunks/assets/font_2096da3512fdb357e3a63ce5.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.887000;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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);}
.v6{vertical-align:-10.500000px;}
.v5{vertical-align:-8.910000px;}
.v1{vertical-align:-5.304000px;}
.v3{vertical-align:-1.025145px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.248000px;}
.v4{vertical-align:13.040094px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:8.181825px;}
.ls8{letter-spacing:15.774559px;}
.ls9{letter-spacing:16.359238px;}
.lsa{letter-spacing:16.360877px;}
.ls5{letter-spacing:16.363057px;}
.ls6{letter-spacing:16.363650px;}
.lsb{letter-spacing:50.210496px;}
.ls1{letter-spacing:52.499421px;}
.ls2{letter-spacing:52.505421px;}
.lsc{letter-spacing:52.664496px;}
.ls7{letter-spacing:231.235351px;}
.ls3{letter-spacing:475.687485px;}
.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;}
}
.ws49{word-spacing:-37.180650px;}
.ws2b{word-spacing:-32.727300px;}
.ws24{word-spacing:-24.545475px;}
.ws4{word-spacing:-21.519300px;}
.ws6{word-spacing:-16.363650px;}
.ws34{word-spacing:-13.165589px;}
.ws2d{word-spacing:-7.680150px;}
.ws33{word-spacing:-6.847958px;}
.ws2e{word-spacing:-6.720121px;}
.ws32{word-spacing:-5.869709px;}
.ws26{word-spacing:-1.898183px;}
.ws5{word-spacing:-1.701820px;}
.wsa{word-spacing:-1.101030px;}
.ws44{word-spacing:-0.916364px;}
.ws3e{word-spacing:-0.785455px;}
.ws38{word-spacing:-0.720001px;}
.ws3f{word-spacing:-0.358654px;}
.ws45{word-spacing:-0.047821px;}
.ws1f{word-spacing:-0.031037px;}
.ws2f{word-spacing:-0.026048px;}
.ws29{word-spacing:-0.022069px;}
.ws35{word-spacing:-0.021870px;}
.ws2a{word-spacing:-0.019311px;}
.ws23{word-spacing:-0.011346px;}
.ws41{word-spacing:-0.005686px;}
.ws8{word-spacing:-0.004348px;}
.ws1c{word-spacing:-0.004194px;}
.ws3d{word-spacing:-0.003933px;}
.ws3c{word-spacing:-0.003556px;}
.ws40{word-spacing:-0.002351px;}
.ws22{word-spacing:-0.001775px;}
.ws1d{word-spacing:-0.001694px;}
.ws3a{word-spacing:-0.000947px;}
.ws42{word-spacing:-0.000850px;}
.ws3b{word-spacing:-0.000844px;}
.ws25{word-spacing:-0.000838px;}
.ws21{word-spacing:-0.000643px;}
.ws7{word-spacing:-0.000349px;}
.ws0{word-spacing:0.000000px;}
.ws27{word-spacing:0.000962px;}
.ws9{word-spacing:0.001568px;}
.ws1a{word-spacing:0.003109px;}
.ws20{word-spacing:0.003328px;}
.ws1b{word-spacing:2.510575px;}
.ws30{word-spacing:2.749093px;}
.ws16{word-spacing:3.515746px;}
.ws11{word-spacing:3.547612px;}
.ws17{word-spacing:3.564378px;}
.wsd{word-spacing:3.594927px;}
.ws10{word-spacing:3.612416px;}
.wsc{word-spacing:3.650598px;}
.wsb{word-spacing:3.673036px;}
.ws12{word-spacing:3.781247px;}
.ws2{word-spacing:7.134551px;}
.wse{word-spacing:9.454053px;}
.wsf{word-spacing:9.683932px;}
.ws13{word-spacing:10.281354px;}
.ws18{word-spacing:10.438030px;}
.ws1e{word-spacing:16.298195px;}
.ws43{word-spacing:16.302161px;}
.ws15{word-spacing:27.545593px;}
.ws2c{word-spacing:27.570683px;}
.ws46{word-spacing:30.557363px;}
.ws36{word-spacing:31.581317px;}
.ws37{word-spacing:31.581324px;}
.ws14{word-spacing:32.098961px;}
.ws28{word-spacing:32.723542px;}
.ws3{word-spacing:41.825489px;}
.ws19{word-spacing:105.982444px;}
.ws39{word-spacing:184.740975px;}
.ws31{word-spacing:240.947204px;}
.ws48{word-spacing:397.819571px;}
.ws47{word-spacing:550.845491px;}
.ws1{word-spacing:1610.050184px;}
._13{margin-left:-169.604150px;}
._12{margin-left:-156.079162px;}
._2a{margin-left:-127.323000px;}
._29{margin-left:-108.047423px;}
._1e{margin-left:-102.904151px;}
._15{margin-left:-88.241101px;}
._17{margin-left:-81.364692px;}
._1d{margin-left:-64.263661px;}
._21{margin-left:-53.672381px;}
._16{margin-left:-50.590480px;}
._19{margin-left:-47.471100px;}
._1c{margin-left:-46.212780px;}
._11{margin-left:-43.381560px;}
._28{margin-left:-16.496260px;}
._e{margin-left:-8.770916px;}
._9{margin-left:-7.527279px;}
._b{margin-left:-5.236368px;}
._2c{margin-left:-3.562651px;}
._1{margin-left:-2.343209px;}
._0{margin-left:-1.178183px;}
._d{width:1.112728px;}
._4{width:2.117686px;}
._5{width:3.547123px;}
._2{width:4.658908px;}
._25{width:5.724659px;}
._3{width:7.094247px;}
._f{width:8.561396px;}
._10{width:10.097040px;}
._1a{width:11.355360px;}
._2f{width:15.613393px;}
._22{width:17.872904px;}
._8{width:19.112743px;}
._1b{width:22.395914px;}
._26{width:25.550587px;}
._23{width:28.002575px;}
._2d{width:35.961093px;}
._14{width:49.168244px;}
._32{width:61.210368px;}
._7{width:80.410675px;}
._1f{width:95.045314px;}
._20{width:113.684178px;}
._c{width:183.171131px;}
._30{width:214.236288px;}
._31{width:306.051840px;}
._18{width:395.906165px;}
._24{width:582.312258px;}
._27{width:602.990688px;}
._6{width:619.670688px;}
._33{width:636.344688px;}
._34{width:705.680011px;}
._a{width:862.757083px;}
._2b{width:972.328083px;}
._2e{width:1496.553974px;}
.fc13{color:rgb(237,36,54);}
.fc10{color:rgb(218,147,13);}
.fcf{color:rgb(240,81,51);}
.fcd{color:rgb(215,7,81);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(82,86,109);}
.fc7{color:rgb(249,206,194);}
.fcc{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc9{color:rgb(32,0,179);}
.fc12{color:rgb(232,103,88);}
.fc4{color:rgb(252,230,223);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fc11{color:rgb(245,245,245);}
.fc8{color:rgb(0,173,239);}
.fc6{color:rgb(254,250,248);}
.fca{color:rgb(186,0,35);}
.fce{color:rgb(96,96,96);}
.fcb{color:rgb(39,105,0);}
.fs5{font-size:4.404120px;}
.fs9{font-size:11.345609px;}
.fsb{font-size:14.849738px;}
.fsa{font-size:14.849740px;}
.fs12{font-size:18.516433px;}
.fse{font-size:19.310693px;}
.fsc{font-size:19.799569px;}
.fs6{font-size:20.133120px;}
.fs11{font-size:21.602392px;}
.fs13{font-size:21.869749px;}
.fsd{font-size:22.069398px;}
.fs1e{font-size:22.686720px;}
.fs18{font-size:23.844744px;}
.fs10{font-size:25.524335px;}
.fsf{font-size:26.048077px;}
.fs15{font-size:26.742241px;}
.fs1a{font-size:28.386600px;}
.fs14{font-size:30.562561px;}
.fs16{font-size:34.063920px;}
.fs4{font-size:35.865600px;}
.fs17{font-size:39.741240px;}
.fs8{font-size:42.351660px;}
.fs19{font-size:45.418560px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs1b{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fs1c{font-size:103.292400px;}
.fs1d{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y60{bottom:3.478706px;}
.y9{bottom:3.873000px;}
.y64{bottom:4.114741px;}
.y1a0{bottom:7.172052px;}
.y53{bottom:9.259113px;}
.y66{bottom:9.838920px;}
.y162{bottom:12.574588px;}
.y5f{bottom:12.719493px;}
.y65{bottom:14.872200px;}
.y174{bottom:15.374646px;}
.ya6{bottom:15.843955px;}
.y51{bottom:16.179873px;}
.y85{bottom:16.317131px;}
.y170{bottom:16.324967px;}
.y20a{bottom:16.545000px;}
.y272{bottom:16.722000px;}
.y19f{bottom:19.336154px;}
.y5c{bottom:19.640253px;}
.yfb{bottom:20.102696px;}
.y8{bottom:20.397402px;}
.y1b0{bottom:20.691000px;}
.y73{bottom:21.298500px;}
.y175{bottom:21.876000px;}
.y19d{bottom:21.933000px;}
.y161{bottom:22.125389px;}
.y57{bottom:23.100632px;}
.y16f{bottom:23.159264px;}
.y12d{bottom:24.084000px;}
.y101{bottom:25.307119px;}
.y93{bottom:25.428000px;}
.yc7{bottom:25.489500px;}
.y7{bottom:25.632000px;}
.y96{bottom:25.753500px;}
.y5b{bottom:26.561012px;}
.y99{bottom:26.850000px;}
.y5e{bottom:26.875592px;}
.y23f{bottom:26.920500px;}
.y9f{bottom:27.436500px;}
.y52{bottom:29.982070px;}
.y16e{bottom:29.993561px;}
.y1e3{bottom:30.606000px;}
.y26b{bottom:31.716521px;}
.y1a1{bottom:32.669165px;}
.y261{bottom:33.159000px;}
.y5d{bottom:33.403127px;}
.ya5{bottom:34.916350px;}
.y256{bottom:35.248500px;}
.ye7{bottom:35.375889px;}
.y19c{bottom:36.129000px;}
.ye9{bottom:36.687552px;}
.y4d{bottom:36.824185px;}
.y16d{bottom:36.827857px;}
.y169{bottom:37.365091px;}
.y42{bottom:38.391000px;}
.y265{bottom:38.439000px;}
.y129{bottom:38.446500px;}
.y1ce{bottom:40.296000px;}
.y19e{bottom:40.924500px;}
.y59{bottom:41.071015px;}
.y23e{bottom:41.116500px;}
.y218{bottom:41.857500px;}
.y22e{bottom:42.325500px;}
.y255{bottom:42.340500px;}
.y12c{bottom:42.573000px;}
.y104{bottom:43.230000px;}
.y216{bottom:43.396500px;}
.ye8{bottom:43.584317px;}
.y16c{bottom:43.662154px;}
.y1c1{bottom:43.947000px;}
.y168{bottom:44.199388px;}
.y165{bottom:44.272207px;}
.y82{bottom:44.380500px;}
.y199{bottom:44.506500px;}
.y209{bottom:45.103500px;}
.y4c{bottom:45.317845px;}
.y92{bottom:45.751500px;}
.y95{bottom:46.077000px;}
.y98{bottom:47.173500px;}
.y5a{bottom:48.738902px;}
.y264{bottom:48.900000px;}
.yc6{bottom:50.296500px;}
.y19b{bottom:50.326500px;}
.y1e2{bottom:50.929500px;}
.yc1{bottom:50.962500px;}
.y54{bottom:52.159960px;}
.y16b{bottom:52.546740px;}
.y34{bottom:52.617000px;}
.y167{bottom:53.083973px;}
.y164{bottom:53.156793px;}
.y3b{bottom:53.599500px;}
.y72{bottom:54.997500px;}
.y23d{bottom:55.314000px;}
.y58{bottom:55.581017px;}
.y260{bottom:56.331000px;}
.yd9{bottom:56.364614px;}
.y63{bottom:58.426952px;}
.y271{bottom:58.783500px;}
.y56{bottom:59.002075px;}
.y12{bottom:59.244000px;}
.y16a{bottom:59.381036px;}
.y166{bottom:59.918270px;}
.y26a{bottom:59.953304px;}
.y163{bottom:59.991090px;}
.y252{bottom:61.332000px;}
.y1c0{bottom:61.879500px;}
.y217{bottom:62.182500px;}
.y22d{bottom:62.649000px;}
.y254{bottom:62.664000px;}
.y55{bottom:63.248905px;}
.y128{bottom:63.252000px;}
.yd8{bottom:63.261389px;}
.y1cd{bottom:65.103000px;}
.y50{bottom:67.535057px;}
.y198{bottom:67.678500px;}
.y103{bottom:68.037000px;}
.y19a{bottom:68.094000px;}
.y81{bottom:69.345000px;}
.y23c{bottom:69.510000px;}
.y100{bottom:69.705519px;}
.y208{bottom:69.910500px;}
.y4e{bottom:70.995437px;}
.y12b{bottom:72.715500px;}
.y33{bottom:72.942000px;}
.y3a{bottom:73.923000px;}
.y49{bottom:74.455817px;}
.yc5{bottom:75.103500px;}
.y71{bottom:75.321000px;}
.ye2{bottom:75.360194px;}
.y251{bottom:75.528000px;}
.yc0{bottom:75.769500px;}
.y223{bottom:76.165500px;}
.y1e1{bottom:76.647000px;}
.y40{bottom:76.806000px;}
.yd5{bottom:77.171874px;}
.y61{bottom:77.916197px;}
.ya4{bottom:79.019323px;}
.y215{bottom:79.426500px;}
.y47{bottom:81.376577px;}
.ye1{bottom:81.394949px;}
.yf5{bottom:82.386976px;}
.y1a2{bottom:82.596447px;}
.y1bf{bottom:82.801500px;}
.y15a{bottom:83.193698px;}
.y23b{bottom:83.707500px;}
.y138{bottom:84.089086px;}
.y270{bottom:84.837000px;}
.y4f{bottom:85.662734px;}
.yd4{bottom:87.339546px;}
.y70{bottom:87.463500px;}
.y127{bottom:88.059000px;}
.y269{bottom:88.190127px;}
.yf4{bottom:88.421567px;}
.y141{bottom:89.041583px;}
.y250{bottom:89.725500px;}
.y46{bottom:89.948887px;}
.y159{bottom:90.027994px;}
.y207{bottom:90.234000px;}
.y1cc{bottom:90.304500px;}
.y13e{bottom:90.565228px;}
.y137{bottom:90.923383px;}
.y102{bottom:92.844000px;}
.y12a{bottom:93.039000px;}
.y32{bottom:93.265500px;}
.y48{bottom:94.235039px;}
.y39{bottom:94.246500px;}
.yea{bottom:95.152947px;}
.y11{bottom:95.293500px;}
.y222{bottom:96.490500px;}
.y158{bottom:96.862291px;}
.y3f{bottom:97.129500px;}
.ya3{bottom:97.397791px;}
.y13d{bottom:97.399525px;}
.y136{bottom:97.757680px;}
.y25f{bottom:97.822500px;}
.y140{bottom:97.926169px;}
.y245{bottom:98.457000px;}
.y4a{bottom:98.481869px;}
.yca{bottom:99.310429px;}
.ye0{bottom:99.797302px;}
.yc4{bottom:99.910500px;}
.yff{bottom:100.179676px;}
.ybf{bottom:100.576500px;}
.yf3{bottom:100.713694px;}
.y1e0{bottom:101.454000px;}
.y4b{bottom:101.902927px;}
.y22c{bottom:102.564000px;}
.y157{bottom:103.696588px;}
.y24f{bottom:103.921500px;}
.y214{bottom:104.233500px;}
.y13c{bottom:104.233822px;}
.y135{bottom:104.591976px;}
.y13f{bottom:104.760466px;}
.yc9{bottom:104.791373px;}
.y1be{bottom:105.217500px;}
.y45{bottom:105.323984px;}
.ydf{bottom:105.832058px;}
.yf2{bottom:106.748449px;}
.y6f{bottom:107.787000px;}
.yd3{bottom:108.167142px;}
.y62{bottom:108.456073px;}
.y1a6{bottom:110.414116px;}
.y197{bottom:110.466000px;}
.y156{bottom:110.530885px;}
.ya2{bottom:111.067664px;}
.y13b{bottom:111.068118px;}
.y23a{bottom:111.414000px;}
.y134{bottom:111.426273px;}
.y80{bottom:112.531500px;}
.y31{bottom:113.589000px;}
.y1cb{bottom:114.259500px;}
.y38{bottom:114.570000px;}
.y206{bottom:115.041000px;}
.y268{bottom:116.426910px;}
.ycc{bottom:116.646442px;}
.ye5{bottom:117.644032px;}
.yf8{bottom:118.093679px;}
.yd1{bottom:119.129030px;}
.y155{bottom:119.415470px;}
.yfe{bottom:119.882599px;}
.y13a{bottom:119.952704px;}
.y133{bottom:120.310859px;}
.ybe{bottom:120.901500px;}
.ye6{bottom:120.905773px;}
.y25e{bottom:121.633500px;}
.y1df{bottom:121.777500px;}
.ycd{bottom:121.923278px;}
.ye4{bottom:124.540796px;}
.y213{bottom:124.557000px;}
.yd2{bottom:124.609974px;}
.yf7{bottom:124.990443px;}
.y154{bottom:126.249767px;}
.y126{bottom:126.459000px;}
.yc8{bottom:126.616500px;}
.y139{bottom:126.787001px;}
.y132{bottom:127.145155px;}
.y22b{bottom:127.371000px;}
.y6e{bottom:128.110500px;}
.y1bd{bottom:130.024500px;}
.y10{bottom:131.280000px;}
.ye3{bottom:131.437560px;}
.y239{bottom:131.737500px;}
.yf6{bottom:131.887207px;}
.y1a3{bottom:132.678968px;}
.y30{bottom:133.912500px;}
.ycb{bottom:134.079261px;}
.y196{bottom:135.274500px;}
.y205{bottom:135.364500px;}
.y7f{bottom:137.496000px;}
.yfd{bottom:137.835149px;}
.yce{bottom:138.386914px;}
.yf1{bottom:139.041429px;}
.y6{bottom:142.113000px;}
.ycf{bottom:142.430576px;}
.y21f{bottom:143.143500px;}
.y150{bottom:144.336036px;}
.y26c{bottom:144.663693px;}
.y212{bottom:144.882000px;}
.yc3{bottom:145.041000px;}
.yf0{bottom:145.076174px;}
.y24e{bottom:146.988000px;}
.ybd{bottom:147.088500px;}
.y1de{bottom:147.420000px;}
.yde{bottom:148.671529px;}
.y17{bottom:149.025000px;}
.y14f{bottom:151.170333px;}
.y148{bottom:151.243152px;}
.y238{bottom:152.061000px;}
.y22a{bottom:152.178000px;}
.y2f{bottom:154.236000px;}
.ydd{bottom:154.706266px;}
.y1bc{bottom:154.833000px;}
.yfc{bottom:155.021605px;}
.y37{bottom:155.218500px;}
.y204{bottom:155.688000px;}
.y14e{bottom:158.004629px;}
.y160{bottom:158.077445px;}
.y147{bottom:158.077449px;}
.yef{bottom:159.743018px;}
.y1ed{bottom:160.024500px;}
.y97{bottom:161.064000px;}
.yd0{bottom:161.176010px;}
.y94{bottom:162.159000px;}
.y25d{bottom:162.405000px;}
.y91{bottom:162.484500px;}
.y21e{bottom:163.467000px;}
.y14d{bottom:164.838926px;}
.y15f{bottom:164.911742px;}
.y146{bottom:164.911745px;}
.yee{bottom:165.777764px;}
.yf{bottom:167.299500px;}
.y211{bottom:169.689000px;}
.yc2{bottom:169.858500px;}
.y14c{bottom:171.673223px;}
.y15e{bottom:171.746039px;}
.y145{bottom:171.746042px;}
.y237{bottom:172.386000px;}
.yd7{bottom:173.116337px;}
.y16{bottom:173.832000px;}
.y2e{bottom:174.559500px;}
.y24d{bottom:175.381500px;}
.yfa{bottom:175.440342px;}
.y229{bottom:176.985000px;}
.y153{bottom:177.684950px;}
.y14b{bottom:178.507519px;}
.y15d{bottom:178.580335px;}
.y144{bottom:178.580339px;}
.ydc{bottom:179.217915px;}
.yd6{bottom:179.303767px;}
.y1ec{bottom:180.348000px;}
.y203{bottom:180.889500px;}
.y5{bottom:181.539000px;}
.yf9{bottom:182.336974px;}
.y195{bottom:182.544000px;}
.y1a4{bottom:182.606250px;}
.y44{bottom:182.874000px;}
.ydb{bottom:185.252651px;}
.y243{bottom:185.370000px;}
.y152{bottom:186.569536px;}
.y25c{bottom:187.213500px;}
.y7a{bottom:187.344000px;}
.y14a{bottom:187.392105px;}
.y15c{bottom:187.464921px;}
.y143{bottom:187.464925px;}
.y21d{bottom:188.668500px;}
.y24c{bottom:189.577500px;}
.y1dd{bottom:190.207500px;}
.yda{bottom:191.467927px;}
.y236{bottom:192.709500px;}
.y151{bottom:193.403833px;}
.y149{bottom:194.226402px;}
.y15b{bottom:194.299218px;}
.y142{bottom:194.299221px;}
.y2d{bottom:194.884500px;}
.y4{bottom:195.735000px;}
.y36{bottom:195.865500px;}
.y15{bottom:198.639000px;}
.y228{bottom:201.792000px;}
.y1b5{bottom:202.102500px;}
.ye{bottom:203.317500px;}
.y24b{bottom:203.775000px;}
.y79{bottom:205.276500px;}
.y1eb{bottom:205.549500px;}
.y242{bottom:205.693500px;}
.y87{bottom:205.915500px;}
.ya1{bottom:205.933500px;}
.y115{bottom:207.156000px;}
.y109{bottom:207.306000px;}
.y194{bottom:207.351000px;}
.y1af{bottom:208.613123px;}
.y262{bottom:209.694000px;}
.y1dc{bottom:215.014500px;}
.y210{bottom:215.800500px;}
.y1ae{bottom:216.554718px;}
.y9e{bottom:217.123500px;}
.y1fa{bottom:217.275000px;}
.y235{bottom:217.516500px;}
.y24a{bottom:217.971000px;}
.y2c{bottom:219.267000px;}
.y35{bottom:221.550000px;}
.y78{bottom:223.209000px;}
.y14{bottom:223.446000px;}
.ya9{bottom:224.137500px;}
.y1ad{bottom:224.496313px;}
.y18c{bottom:224.950263px;}
.y185{bottom:225.487496px;}
.y17e{bottom:225.560316px;}
.y1f1{bottom:226.471500px;}
.y1b4{bottom:226.909500px;}
.y227{bottom:226.993500px;}
.y114{bottom:227.479500px;}
.y108{bottom:227.629500px;}
.ybc{bottom:228.388500px;}
.y3e{bottom:228.678000px;}
.y3{bottom:229.450500px;}
.y1f5{bottom:229.956000px;}
.y86{bottom:230.643000px;}
.y21c{bottom:231.660000px;}
.y18b{bottom:231.784559px;}
.y193{bottom:232.078500px;}
.y249{bottom:232.168500px;}
.y184{bottom:232.321793px;}
.y17d{bottom:232.394613px;}
.y1a5{bottom:232.611152px;}
.y18d{bottom:232.799164px;}
.y25b{bottom:232.935000px;}
.y20f{bottom:233.733000px;}
.y1ac{bottom:234.908429px;}
.y234{bottom:237.840000px;}
.y18a{bottom:238.618856px;}
.y183{bottom:239.156090px;}
.y17c{bottom:239.228909px;}
.yd{bottom:239.335500px;}
.y1c6{bottom:241.095000px;}
.y1f9{bottom:242.445000px;}
.y1ab{bottom:242.850024px;}
.y77{bottom:244.131000px;}
.y189{bottom:245.453153px;}
.y182{bottom:245.990386px;}
.y17b{bottom:246.063206px;}
.y241{bottom:246.342000px;}
.y248{bottom:246.364500px;}
.y113{bottom:247.803000px;}
.y107{bottom:247.953000px;}
.y13{bottom:248.253000px;}
.ybb{bottom:248.712000px;}
.y1d3{bottom:249.520500px;}
.y1aa{bottom:250.791619px;}
.y1f0{bottom:251.278500px;}
.y20e{bottom:251.665500px;}
.y1b3{bottom:251.716500px;}
.y21b{bottom:251.985000px;}
.y1e7{bottom:252.013500px;}
.y188{bottom:252.287449px;}
.y181{bottom:252.824683px;}
.y17a{bottom:252.897503px;}
.y25a{bottom:253.258500px;}
.y1f4{bottom:254.763000px;}
.y233{bottom:258.163500px;}
.y1f8{bottom:260.377500px;}
.y187{bottom:261.172035px;}
.y1a9{bottom:261.203735px;}
.y1c5{bottom:261.420000px;}
.y180{bottom:261.709269px;}
.y179{bottom:261.782088px;}
.y2b{bottom:262.461000px;}
.y84{bottom:265.972500px;}
.y18f{bottom:266.515769px;}
.y1d2{bottom:267.453000px;}
.y186{bottom:268.006332px;}
.y11e{bottom:268.126500px;}
.y112{bottom:268.128000px;}
.y106{bottom:268.276500px;}
.y17f{bottom:268.543566px;}
.y178{bottom:268.616385px;}
.y76{bottom:268.938000px;}
.ya8{bottom:269.268000px;}
.y226{bottom:269.314500px;}
.y20d{bottom:269.598000px;}
.y1a8{bottom:271.615851px;}
.y21a{bottom:272.308500px;}
.y3d{bottom:274.422000px;}
.y18e{bottom:274.872720px;}
.y22f{bottom:274.933500px;}
.yc{bottom:275.355000px;}
.y1ef{bottom:276.085500px;}
.y1e6{bottom:276.820500px;}
.y1b2{bottom:276.918000px;}
.y259{bottom:278.065500px;}
.y232{bottom:278.487000px;}
.y192{bottom:278.881500px;}
.y1f3{bottom:279.570000px;}
.y240{bottom:280.114500px;}
.y9b{bottom:283.485000px;}
.y1f7{bottom:283.924500px;}
.y1d1{bottom:285.385500px;}
.y1c4{bottom:286.227000px;}
.y20c{bottom:287.530500px;}
.y1a7{bottom:287.649845px;}
.y247{bottom:289.429500px;}
.ya7{bottom:289.591500px;}
.y225{bottom:289.638000px;}
.y2{bottom:293.061000px;}
.y75{bottom:293.745000px;}
.yba{bottom:293.844000px;}
.y219{bottom:297.190500px;}
.y177{bottom:298.627115px;}
.y231{bottom:298.812000px;}
.y176{bottom:298.883404px;}
.y3c{bottom:300.057000px;}
.y1ee{bottom:300.892500px;}
.y1e5{bottom:301.627500px;}
.y19{bottom:302.710500px;}
.y258{bottom:302.872500px;}
.y246{bottom:303.627000px;}
.y191{bottom:303.688500px;}
.y9a{bottom:303.808500px;}
.y1d0{bottom:304.080000px;}
.y1f2{bottom:304.377000px;}
.y173{bottom:305.461453px;}
.y171{bottom:305.717739px;}
.y172{bottom:305.717741px;}
.y1f6{bottom:306.340500px;}
.y1c3{bottom:306.550500px;}
.y43{bottom:308.745000px;}
.yb{bottom:311.373000px;}
.y20b{bottom:311.427000px;}
.y26f{bottom:312.243000px;}
.y131{bottom:312.295708px;}
.y130{bottom:312.295710px;}
.y12f{bottom:312.551994px;}
.y224{bottom:313.113000px;}
.y74{bottom:318.709500px;}
.y1{bottom:318.765000px;}
.y12e{bottom:319.130005px;}
.y1b1{bottom:320.302500px;}
.y18{bottom:323.034000px;}
.y257{bottom:323.196000px;}
.y230{bottom:324.013500px;}
.y253{bottom:324.325500px;}
.y1e4{bottom:326.437500px;}
.y190{bottom:326.860500px;}
.y1cf{bottom:328.888500px;}
.yb9{bottom:329.169000px;}
.y1c2{bottom:331.359000px;}
.y67{bottom:332.194500px;}
.y263{bottom:332.587500px;}
.ya0{bottom:332.754000px;}
.y83{bottom:333.255000px;}
.y105{bottom:337.807500px;}
.y111{bottom:338.406000px;}
.y11d{bottom:338.407500px;}
.ya{bottom:362.751000px;}
.y202{bottom:3016.583685px;}
.y26e{bottom:3016.760685px;}
.y6d{bottom:3021.337185px;}
.y8a{bottom:3025.466685px;}
.yb8{bottom:3025.528185px;}
.y8d{bottom:3025.792185px;}
.y90{bottom:3026.888685px;}
.y9d{bottom:3027.475185px;}
.y1db{bottom:3030.644685px;}
.y41{bottom:3038.429685px;}
.y122{bottom:3038.485185px;}
.y119{bottom:3038.486685px;}
.y10d{bottom:3039.383685px;}
.y1ca{bottom:3040.334685px;}
.y125{bottom:3042.611685px;}
.y11c{bottom:3042.613185px;}
.yed{bottom:3043.268685px;}
.y110{bottom:3043.510185px;}
.y1bb{bottom:3043.985685px;}
.y7e{bottom:3044.419185px;}
.y201{bottom:3045.142185px;}
.y89{bottom:3045.790185px;}
.y8c{bottom:3046.115685px;}
.y8f{bottom:3047.212185px;}
.yb7{bottom:3050.335185px;}
.y1da{bottom:3050.968185px;}
.yb2{bottom:3051.001185px;}
.y23{bottom:3052.655685px;}
.y6c{bottom:3055.036185px;}
.y26d{bottom:3058.822185px;}
.y1ba{bottom:3061.918185px;}
.y121{bottom:3063.290685px;}
.y118{bottom:3063.293685px;}
.y10c{bottom:3064.190685px;}
.y1c9{bottom:3065.141685px;}
.yec{bottom:3068.075685px;}
.y7d{bottom:3069.383685px;}
.y200{bottom:3069.949185px;}
.y124{bottom:3072.754185px;}
.y11b{bottom:3072.755685px;}
.y22{bottom:3072.980685px;}
.y10f{bottom:3073.652685px;}
.yb6{bottom:3075.142185px;}
.y6b{bottom:3075.359685px;}
.yb1{bottom:3075.808185px;}
.y221{bottom:3076.204185px;}
.y1d9{bottom:3076.685685px;}
.y1b9{bottom:3082.840185px;}
.y267{bottom:3084.875685px;}
.y6a{bottom:3087.502185px;}
.y120{bottom:3088.097685px;}
.y117{bottom:3088.100685px;}
.y10b{bottom:3088.997685px;}
.y1ff{bottom:3090.272685px;}
.y1c8{bottom:3090.343185px;}
.yeb{bottom:3092.882685px;}
.y123{bottom:3093.077685px;}
.y11a{bottom:3093.079185px;}
.y21{bottom:3093.304185px;}
.y10e{bottom:3093.976185px;}
.y220{bottom:3096.529185px;}
.y244{bottom:3098.495685px;}
.yb5{bottom:3099.949185px;}
.yb0{bottom:3100.615185px;}
.y1d8{bottom:3101.492685px;}
.y1b8{bottom:3105.256185px;}
.y69{bottom:3107.825685px;}
.y7c{bottom:3112.570185px;}
.y20{bottom:3113.627685px;}
.y1c7{bottom:3114.298185px;}
.y1fe{bottom:3115.079685px;}
.yaf{bottom:3120.940185px;}
.y1d7{bottom:3121.816185px;}
.y11f{bottom:3126.497685px;}
.y116{bottom:3126.499185px;}
.y10a{bottom:3127.396185px;}
.y68{bottom:3128.149185px;}
.y1b7{bottom:3130.063185px;}
.y1f{bottom:3133.951185px;}
.y1fd{bottom:3135.403185px;}
.y7b{bottom:3137.534685px;}
.yb4{bottom:3145.079685px;}
.yae{bottom:3147.127185px;}
.y1d6{bottom:3147.458685px;}
.y1e{bottom:3154.274685px;}
.y1b6{bottom:3154.871685px;}
.y1fc{bottom:3155.726685px;}
.y1ea{bottom:3160.063185px;}
.y8e{bottom:3161.102685px;}
.y8b{bottom:3162.197685px;}
.y88{bottom:3162.523185px;}
.yb3{bottom:3169.897185px;}
.y1d{bottom:3174.598185px;}
.y1e9{bottom:3180.386685px;}
.y1fb{bottom:3180.928185px;}
.y1d5{bottom:3190.246185px;}
.y1c{bottom:3194.923185px;}
.y1e8{bottom:3205.588185px;}
.y1d4{bottom:3215.053185px;}
.y9c{bottom:3217.162185px;}
.y1b{bottom:3219.305685px;}
.yad{bottom:3228.427185px;}
.yac{bottom:3248.750685px;}
.y1a{bottom:3262.499685px;}
.yab{bottom:3293.882685px;}
.y266{bottom:3312.281685px;}
.yaa{bottom:3329.207685px;}
.y2a{bottom:6053.676870px;}
.y29{bottom:6074.000370px;}
.y28{bottom:6094.323870px;}
.y27{bottom:6114.647370px;}
.y26{bottom:6155.295870px;}
.y25{bottom:6195.942870px;}
.y24{bottom:6221.627370px;}
.h38{height:-2702.198685px;}
.h10{height:4.646347px;}
.h18{height:8.620004px;}
.h1b{height:11.282320px;}
.h1a{height:11.282322px;}
.h23{height:14.068149px;}
.h1e{height:14.671600px;}
.h1c{height:15.043032px;}
.h11{height:15.296453px;}
.h28{height:15.387598px;}
.h27{height:15.387610px;}
.h39{height:15.926077px;}
.h22{height:16.412755px;}
.h25{height:16.615884px;}
.h24{height:16.733348px;}
.h1d{height:16.767570px;}
.h29{height:20.317835px;}
.h26{height:23.220383px;}
.h8{height:25.392845px;}
.h2f{height:26.371151px;}
.h16{height:26.397082px;}
.h37{height:26.648141px;}
.h15{height:28.206206px;}
.h20{height:28.970121px;}
.h1f{height:29.564567px;}
.h2b{height:31.645382px;}
.h31{height:33.411125px;}
.h4{height:33.856985px;}
.h2d{height:35.191862px;}
.h7{height:35.259465px;}
.h5{height:35.530706px;}
.h32{height:35.841857px;}
.h2c{height:36.919612px;}
.h34{height:39.595622px;}
.ha{height:40.911857px;}
.h9{height:41.037857px;}
.h2e{height:42.193842px;}
.h12{height:42.321125px;}
.h33{height:43.994842px;}
.h13{height:45.687311px;}
.h3{height:46.341857px;}
.hb{height:48.174586px;}
.hc{height:48.632768px;}
.he{height:50.589857px;}
.h2{height:60.942658px;}
.h30{height:62.181870px;}
.hd{height:63.352819px;}
.h35{height:72.098095px;}
.h14{height:72.840146px;}
.h6{height:91.054594px;}
.h36{height:105.295601px;}
.hf{height:112.280186px;}
.h17{height:113.222664px;}
.h3a{height:164.073600px;}
.h19{height:201.147792px;}
.h2a{height:301.386298px;}
.h21{height:328.001922px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w9{width:-2678.537685px;}
.w5{width:83.334192px;}
.w3{width:241.018662px;}
.wa{width:291.686400px;}
.w4{width:333.363113px;}
.w6{width:416.667489px;}
.w2{width:416.724081px;}
.w8{width:505.988160px;}
.w7{width:595.267192px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x57{left:4.368484px;}
.x96{left:5.619049px;}
.xb2{left:7.176011px;}
.x25{left:8.539434px;}
.x1b{left:10.296351px;}
.x1a{left:11.660196px;}
.xb8{left:12.660867px;}
.x2c{left:15.565566px;}
.x9{left:18.136500px;}
.x2d{left:21.480684px;}
.x2f{left:23.443122px;}
.x1c{left:25.632279px;}
.x32{left:26.939599px;}
.x81{left:28.347000px;}
.x26{left:29.702005px;}
.x61{left:35.778713px;}
.x17{left:38.268000px;}
.x1e{left:40.032455px;}
.x82{left:41.145786px;}
.x13{left:42.237000px;}
.xa{left:43.275000px;}
.x47{left:44.475898px;}
.x48{left:46.879793px;}
.xb7{left:48.331176px;}
.x50{left:50.084116px;}
.x18{left:51.663000px;}
.xc6{left:54.498000px;}
.x41{left:55.842404px;}
.xc2{left:57.912000px;}
.x49{left:59.705072px;}
.xa6{left:61.074000px;}
.x21{left:63.917188px;}
.x20{left:65.919409px;}
.x45{left:67.605669px;}
.x37{left:69.089786px;}
.x52{left:70.316156px;}
.x56{left:72.073995px;}
.x24{left:73.138621px;}
.xb{left:75.247500px;}
.x97{left:76.264234px;}
.x42{left:77.510331px;}
.x51{left:78.973097px;}
.x55{left:80.646300px;}
.x36{left:82.015061px;}
.x53{left:83.357556px;}
.x6d{left:85.211214px;}
.x4d{left:86.554506px;}
.x27{left:88.501737px;}
.x54{left:89.523508px;}
.x3f{left:91.256309px;}
.x3a{left:92.526918px;}
.x4f{left:93.667731px;}
.x35{left:94.682436px;}
.x19{left:97.572793px;}
.x44{left:99.342152px;}
.x4c{left:101.686142px;}
.x23{left:102.940161px;}
.x4e{left:104.306618px;}
.x43{left:106.026977px;}
.x4a{left:107.049669px;}
.x40{left:108.277269px;}
.x4b{left:110.003465px;}
.x3b{left:112.209519px;}
.x38{left:113.651087px;}
.x22{left:115.274984px;}
.x39{left:117.321444px;}
.x95{left:119.978971px;}
.x7{left:120.988740px;}
.x46{left:122.306799px;}
.x3e{left:125.028654px;}
.x3c{left:127.628393px;}
.x62{left:128.646324px;}
.x16{left:129.951000px;}
.x6{left:131.812500px;}
.x94{left:133.061314px;}
.x58{left:134.319516px;}
.x3d{left:135.322239px;}
.x8{left:136.401000px;}
.x30{left:137.410786px;}
.x31{left:140.560580px;}
.x2e{left:142.489533px;}
.x2a{left:144.395599px;}
.x1{left:146.796000px;}
.x83{left:148.501500px;}
.x5d{left:149.782321px;}
.x63{left:151.142634px;}
.x6a{left:152.982957px;}
.x6c{left:155.910640px;}
.x5b{left:156.988937px;}
.x5c{left:158.948457px;}
.x93{left:160.848793px;}
.x2b{left:162.007471px;}
.x68{left:163.747645px;}
.x64{left:165.168017px;}
.x98{left:168.722355px;}
.x60{left:170.221112px;}
.x5a{left:171.285277px;}
.x66{left:173.347097px;}
.x65{left:176.237608px;}
.x6b{left:178.372543px;}
.x69{left:180.779357px;}
.x5e{left:183.468186px;}
.x5f{left:186.323522px;}
.x67{left:190.648997px;}
.x9a{left:192.205694px;}
.x9b{left:193.678796px;}
.x28{left:196.273497px;}
.x59{left:198.513497px;}
.x5{left:201.157500px;}
.x29{left:202.996262px;}
.x4{left:206.259000px;}
.x1d{left:209.603671px;}
.xb5{left:220.524000px;}
.x33{left:224.653282px;}
.x1f{left:225.912831px;}
.x3{left:227.187000px;}
.x34{left:229.086741px;}
.x7f{left:240.814500px;}
.x74{left:246.012000px;}
.x7b{left:250.866000px;}
.xa8{left:253.238935px;}
.xa9{left:255.177097px;}
.x9f{left:258.974735px;}
.xaf{left:264.780341px;}
.xb0{left:267.492704px;}
.x2{left:278.695500px;}
.x77{left:285.192000px;}
.x9c{left:290.776735px;}
.xa7{left:294.799500px;}
.xa1{left:296.565822px;}
.xa0{left:298.260212px;}
.x10{left:299.731500px;}
.x9e{left:308.186440px;}
.xa2{left:320.420462px;}
.x11{left:334.486500px;}
.x6e{left:344.409000px;}
.x8d{left:354.331500px;}
.xc9{left:358.813500px;}
.xb6{left:373.294500px;}
.x12{left:376.377000px;}
.xc5{left:383.434500px;}
.x9d{left:386.443589px;}
.x14{left:402.274500px;}
.xac{left:403.703647px;}
.x73{left:406.168500px;}
.xaa{left:407.740153px;}
.xab{left:411.392232px;}
.xbf{left:426.213000px;}
.x90{left:441.759000px;}
.xc0{left:446.563500px;}
.x7c{left:465.589500px;}
.x91{left:474.486000px;}
.xae{left:492.609352px;}
.xb3{left:508.178734px;}
.xb1{left:513.123337px;}
.xb4{left:514.190183px;}
.xad{left:516.420894px;}
.xbe{left:517.996500px;}
.x8e{left:525.099000px;}
.xa3{left:532.915500px;}
.x80{left:535.785000px;}
.x8f{left:557.826000px;}
.x92{left:569.731500px;}
.xc3{left:614.847000px;}
.xc4{left:634.966500px;}
.xd{left:3018.463185px;}
.x87{left:3028.385685px;}
.x78{left:3036.179685px;}
.x6f{left:3042.557685px;}
.xb9{left:3051.190185px;}
.xa4{left:3061.112685px;}
.xc1{left:3071.033685px;}
.x99{left:3075.286185px;}
.xba{left:3083.917185px;}
.x70{left:3097.693185px;}
.x72{left:3112.105185px;}
.x15{left:3129.989685px;}
.x88{left:3157.484685px;}
.x75{left:3162.586185px;}
.x89{left:3190.211685px;}
.x7d{left:3240.853185px;}
.x79{left:3250.904685px;}
.x76{left:3285.230685px;}
.xa5{left:3294.838185px;}
.xc{left:3299.770185px;}
.xc8{left:3335.059185px;}
.x84{left:3354.370185px;}
.xc7{left:3358.852185px;}
.x71{left:3406.207185px;}
.xbc{left:3426.251685px;}
.x8a{left:3441.797685px;}
.xbd{left:3446.602185px;}
.x7a{left:3465.628185px;}
.x8b{left:3474.524685px;}
.xbb{left:3518.035185px;}
.x85{left:3525.137685px;}
.x7e{left:3535.823685px;}
.x86{left:3557.864685px;}
.x8c{left:3569.770185px;}
.xe{left:6334.563870px;}
.xf{left:6376.454370px;}
@media print{
.v6{vertical-align:-9.333333pt;}
.v5{vertical-align:-7.920000pt;}
.v1{vertical-align:-4.714667pt;}
.v3{vertical-align:-0.911240pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.776000pt;}
.v4{vertical-align:11.591195pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:7.272733pt;}
.ls8{letter-spacing:14.021830pt;}
.ls9{letter-spacing:14.541545pt;}
.lsa{letter-spacing:14.543002pt;}
.ls5{letter-spacing:14.544939pt;}
.ls6{letter-spacing:14.545467pt;}
.lsb{letter-spacing:44.631552pt;}
.ls1{letter-spacing:46.666152pt;}
.ls2{letter-spacing:46.671485pt;}
.lsc{letter-spacing:46.812885pt;}
.ls7{letter-spacing:205.542534pt;}
.ls3{letter-spacing:422.833320pt;}
.ws49{word-spacing:-33.049467pt;}
.ws2b{word-spacing:-29.090933pt;}
.ws24{word-spacing:-21.818200pt;}
.ws4{word-spacing:-19.128267pt;}
.ws6{word-spacing:-14.545467pt;}
.ws34{word-spacing:-11.702746pt;}
.ws2d{word-spacing:-6.826800pt;}
.ws33{word-spacing:-6.087074pt;}
.ws2e{word-spacing:-5.973441pt;}
.ws32{word-spacing:-5.217519pt;}
.ws26{word-spacing:-1.687274pt;}
.ws5{word-spacing:-1.512729pt;}
.wsa{word-spacing:-0.978693pt;}
.ws44{word-spacing:-0.814546pt;}
.ws3e{word-spacing:-0.698182pt;}
.ws38{word-spacing:-0.640001pt;}
.ws3f{word-spacing:-0.318803pt;}
.ws45{word-spacing:-0.042507pt;}
.ws1f{word-spacing:-0.027588pt;}
.ws2f{word-spacing:-0.023154pt;}
.ws29{word-spacing:-0.019617pt;}
.ws35{word-spacing:-0.019440pt;}
.ws2a{word-spacing:-0.017165pt;}
.ws23{word-spacing:-0.010085pt;}
.ws41{word-spacing:-0.005054pt;}
.ws8{word-spacing:-0.003865pt;}
.ws1c{word-spacing:-0.003728pt;}
.ws3d{word-spacing:-0.003496pt;}
.ws3c{word-spacing:-0.003161pt;}
.ws40{word-spacing:-0.002090pt;}
.ws22{word-spacing:-0.001578pt;}
.ws1d{word-spacing:-0.001506pt;}
.ws3a{word-spacing:-0.000842pt;}
.ws42{word-spacing:-0.000755pt;}
.ws3b{word-spacing:-0.000750pt;}
.ws25{word-spacing:-0.000745pt;}
.ws21{word-spacing:-0.000572pt;}
.ws7{word-spacing:-0.000310pt;}
.ws0{word-spacing:0.000000pt;}
.ws27{word-spacing:0.000855pt;}
.ws9{word-spacing:0.001394pt;}
.ws1a{word-spacing:0.002763pt;}
.ws20{word-spacing:0.002958pt;}
.ws1b{word-spacing:2.231622pt;}
.ws30{word-spacing:2.443638pt;}
.ws16{word-spacing:3.125108pt;}
.ws11{word-spacing:3.153433pt;}
.ws17{word-spacing:3.168336pt;}
.wsd{word-spacing:3.195490pt;}
.ws10{word-spacing:3.211036pt;}
.wsc{word-spacing:3.244976pt;}
.wsb{word-spacing:3.264921pt;}
.ws12{word-spacing:3.361108pt;}
.ws2{word-spacing:6.341823pt;}
.wse{word-spacing:8.403603pt;}
.wsf{word-spacing:8.607940pt;}
.ws13{word-spacing:9.138982pt;}
.ws18{word-spacing:9.278249pt;}
.ws1e{word-spacing:14.487285pt;}
.ws43{word-spacing:14.490810pt;}
.ws15{word-spacing:24.484972pt;}
.ws2c{word-spacing:24.507274pt;}
.ws46{word-spacing:27.162101pt;}
.ws36{word-spacing:28.072282pt;}
.ws37{word-spacing:28.072288pt;}
.ws14{word-spacing:28.532410pt;}
.ws28{word-spacing:29.087593pt;}
.ws3{word-spacing:37.178213pt;}
.ws19{word-spacing:94.206617pt;}
.ws39{word-spacing:164.214200pt;}
.ws31{word-spacing:214.175293pt;}
.ws48{word-spacing:353.617397pt;}
.ws47{word-spacing:489.640437pt;}
.ws1{word-spacing:1431.155719pt;}
._13{margin-left:-150.759245pt;}
._12{margin-left:-138.737033pt;}
._2a{margin-left:-113.176000pt;}
._29{margin-left:-96.042154pt;}
._1e{margin-left:-91.470356pt;}
._15{margin-left:-78.436534pt;}
._17{margin-left:-72.324170pt;}
._1d{margin-left:-57.123254pt;}
._21{margin-left:-47.708783pt;}
._16{margin-left:-44.969316pt;}
._19{margin-left:-42.196534pt;}
._1c{margin-left:-41.078027pt;}
._11{margin-left:-38.561387pt;}
._28{margin-left:-14.663342pt;}
._e{margin-left:-7.796370pt;}
._9{margin-left:-6.690915pt;}
._b{margin-left:-4.654549pt;}
._2c{margin-left:-3.166801pt;}
._1{margin-left:-2.082853pt;}
._0{margin-left:-1.047274pt;}
._d{width:0.989092pt;}
._4{width:1.882387pt;}
._5{width:3.152999pt;}
._2{width:4.141252pt;}
._25{width:5.088586pt;}
._3{width:6.305997pt;}
._f{width:7.610130pt;}
._10{width:8.975146pt;}
._1a{width:10.093653pt;}
._2f{width:13.878571pt;}
._22{width:15.887026pt;}
._8{width:16.989105pt;}
._1b{width:19.907479pt;}
._26{width:22.711633pt;}
._23{width:24.891178pt;}
._2d{width:31.965416pt;}
._14{width:43.705106pt;}
._32{width:54.409216pt;}
._7{width:71.476156pt;}
._1f{width:84.484723pt;}
._20{width:101.052603pt;}
._c{width:162.818783pt;}
._30{width:190.432256pt;}
._31{width:272.046080pt;}
._18{width:351.916591pt;}
._24{width:517.610896pt;}
._27{width:535.991723pt;}
._6{width:550.818389pt;}
._33{width:565.639723pt;}
._34{width:627.271121pt;}
._a{width:766.895185pt;}
._2b{width:864.291629pt;}
._2e{width:1330.270199pt;}
.fs5{font-size:3.914773pt;}
.fs9{font-size:10.084986pt;}
.fsb{font-size:13.199767pt;}
.fsa{font-size:13.199769pt;}
.fs12{font-size:16.459052pt;}
.fse{font-size:17.165060pt;}
.fsc{font-size:17.599617pt;}
.fs6{font-size:17.896107pt;}
.fs11{font-size:19.202126pt;}
.fs13{font-size:19.439777pt;}
.fsd{font-size:19.617243pt;}
.fs1e{font-size:20.165973pt;}
.fs18{font-size:21.195328pt;}
.fs10{font-size:22.688298pt;}
.fsf{font-size:23.153846pt;}
.fs15{font-size:23.770881pt;}
.fs1a{font-size:25.232533pt;}
.fs14{font-size:27.166721pt;}
.fs16{font-size:30.279040pt;}
.fs4{font-size:31.880533pt;}
.fs17{font-size:35.325547pt;}
.fs8{font-size:37.645920pt;}
.fs19{font-size:40.372053pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs1b{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fs1c{font-size:91.815467pt;}
.fs1d{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:3.092183pt;}
.y9{bottom:3.442667pt;}
.y64{bottom:3.657547pt;}
.y1a0{bottom:6.375157pt;}
.y53{bottom:8.230323pt;}
.y66{bottom:8.745706pt;}
.y162{bottom:11.177412pt;}
.y5f{bottom:11.306216pt;}
.y65{bottom:13.219733pt;}
.y174{bottom:13.666352pt;}
.ya6{bottom:14.083516pt;}
.y51{bottom:14.382110pt;}
.y85{bottom:14.504117pt;}
.y170{bottom:14.511082pt;}
.y20a{bottom:14.706667pt;}
.y272{bottom:14.864000pt;}
.y19f{bottom:17.187692pt;}
.y5c{bottom:17.458003pt;}
.yfb{bottom:17.869063pt;}
.y8{bottom:18.131024pt;}
.y1b0{bottom:18.392000pt;}
.y73{bottom:18.932000pt;}
.y175{bottom:19.445333pt;}
.y19d{bottom:19.496000pt;}
.y161{bottom:19.667012pt;}
.y57{bottom:20.533895pt;}
.y16f{bottom:20.586012pt;}
.y12d{bottom:21.408000pt;}
.y101{bottom:22.495216pt;}
.y93{bottom:22.602667pt;}
.yc7{bottom:22.657333pt;}
.y7{bottom:22.784000pt;}
.y96{bottom:22.892000pt;}
.y5b{bottom:23.609789pt;}
.y99{bottom:23.866667pt;}
.y5e{bottom:23.889415pt;}
.y23f{bottom:23.929333pt;}
.y9f{bottom:24.388000pt;}
.y52{bottom:26.650729pt;}
.y16e{bottom:26.660943pt;}
.y1e3{bottom:27.205333pt;}
.y26b{bottom:28.192463pt;}
.y1a1{bottom:29.039258pt;}
.y261{bottom:29.474667pt;}
.y5d{bottom:29.691669pt;}
.ya5{bottom:31.036755pt;}
.y256{bottom:31.332000pt;}
.ye7{bottom:31.445235pt;}
.y19c{bottom:32.114667pt;}
.ye9{bottom:32.611158pt;}
.y4d{bottom:32.732609pt;}
.y16d{bottom:32.735873pt;}
.y169{bottom:33.213415pt;}
.y42{bottom:34.125333pt;}
.y265{bottom:34.168000pt;}
.y129{bottom:34.174667pt;}
.y1ce{bottom:35.818667pt;}
.y19e{bottom:36.377333pt;}
.y59{bottom:36.507569pt;}
.y23e{bottom:36.548000pt;}
.y218{bottom:37.206667pt;}
.y22e{bottom:37.622667pt;}
.y255{bottom:37.636000pt;}
.y12c{bottom:37.842667pt;}
.y104{bottom:38.426667pt;}
.y216{bottom:38.574667pt;}
.ye8{bottom:38.741615pt;}
.y16c{bottom:38.810804pt;}
.y1c1{bottom:39.064000pt;}
.y168{bottom:39.288345pt;}
.y165{bottom:39.353073pt;}
.y82{bottom:39.449333pt;}
.y199{bottom:39.561333pt;}
.y209{bottom:40.092000pt;}
.y4c{bottom:40.282529pt;}
.y92{bottom:40.668000pt;}
.y95{bottom:40.957333pt;}
.y98{bottom:41.932000pt;}
.y5a{bottom:43.323469pt;}
.y264{bottom:43.466667pt;}
.yc6{bottom:44.708000pt;}
.y19b{bottom:44.734667pt;}
.y1e2{bottom:45.270667pt;}
.yc1{bottom:45.300000pt;}
.y54{bottom:46.364409pt;}
.y16b{bottom:46.708213pt;}
.y34{bottom:46.770667pt;}
.y167{bottom:47.185754pt;}
.y164{bottom:47.250483pt;}
.y3b{bottom:47.644000pt;}
.y72{bottom:48.886667pt;}
.y23d{bottom:49.168000pt;}
.y58{bottom:49.405349pt;}
.y260{bottom:50.072000pt;}
.yd9{bottom:50.101879pt;}
.y63{bottom:51.935068pt;}
.y271{bottom:52.252000pt;}
.y56{bottom:52.446289pt;}
.y12{bottom:52.661333pt;}
.y16a{bottom:52.783144pt;}
.y166{bottom:53.260685pt;}
.y26a{bottom:53.291825pt;}
.y163{bottom:53.325413pt;}
.y252{bottom:54.517333pt;}
.y1c0{bottom:55.004000pt;}
.y217{bottom:55.273333pt;}
.y22d{bottom:55.688000pt;}
.y254{bottom:55.701333pt;}
.y55{bottom:56.221249pt;}
.y128{bottom:56.224000pt;}
.yd8{bottom:56.232346pt;}
.y1cd{bottom:57.869333pt;}
.y50{bottom:60.031162pt;}
.y198{bottom:60.158667pt;}
.y103{bottom:60.477333pt;}
.y19a{bottom:60.528000pt;}
.y81{bottom:61.640000pt;}
.y23c{bottom:61.786667pt;}
.y100{bottom:61.960461pt;}
.y208{bottom:62.142667pt;}
.y4e{bottom:63.107055pt;}
.y12b{bottom:64.636000pt;}
.y33{bottom:64.837333pt;}
.y3a{bottom:65.709333pt;}
.y49{bottom:66.182949pt;}
.yc5{bottom:66.758667pt;}
.y71{bottom:66.952000pt;}
.ye2{bottom:66.986839pt;}
.y251{bottom:67.136000pt;}
.yc0{bottom:67.350667pt;}
.y223{bottom:67.702667pt;}
.y1e1{bottom:68.130667pt;}
.y40{bottom:68.272000pt;}
.yd5{bottom:68.597222pt;}
.y61{bottom:69.258842pt;}
.ya4{bottom:70.239398pt;}
.y215{bottom:70.601333pt;}
.y47{bottom:72.334735pt;}
.ye1{bottom:72.351066pt;}
.yf5{bottom:73.232867pt;}
.y1a2{bottom:73.419064pt;}
.y1bf{bottom:73.601333pt;}
.y15a{bottom:73.949954pt;}
.y23b{bottom:74.406667pt;}
.y138{bottom:74.745854pt;}
.y270{bottom:75.410667pt;}
.y4f{bottom:76.144653pt;}
.yd4{bottom:77.635152pt;}
.y70{bottom:77.745333pt;}
.y127{bottom:78.274667pt;}
.y269{bottom:78.391224pt;}
.yf4{bottom:78.596949pt;}
.y141{bottom:79.148074pt;}
.y250{bottom:79.756000pt;}
.y46{bottom:79.954566pt;}
.y159{bottom:80.024884pt;}
.y207{bottom:80.208000pt;}
.y1cc{bottom:80.270667pt;}
.y13e{bottom:80.502425pt;}
.y137{bottom:80.820785pt;}
.y102{bottom:82.528000pt;}
.y12a{bottom:82.701333pt;}
.y32{bottom:82.902667pt;}
.y48{bottom:83.764479pt;}
.y39{bottom:83.774667pt;}
.yea{bottom:84.580397pt;}
.y11{bottom:84.705333pt;}
.y222{bottom:85.769333pt;}
.y158{bottom:86.099814pt;}
.y3f{bottom:86.337333pt;}
.ya3{bottom:86.575814pt;}
.y13d{bottom:86.577356pt;}
.y136{bottom:86.895715pt;}
.y25f{bottom:86.953333pt;}
.y140{bottom:87.045484pt;}
.y245{bottom:87.517333pt;}
.y4a{bottom:87.539439pt;}
.yca{bottom:88.275937pt;}
.ye0{bottom:88.708713pt;}
.yc4{bottom:88.809333pt;}
.yff{bottom:89.048601pt;}
.ybf{bottom:89.401333pt;}
.yf3{bottom:89.523283pt;}
.y1e0{bottom:90.181333pt;}
.y4b{bottom:90.580379pt;}
.y22c{bottom:91.168000pt;}
.y157{bottom:92.174745pt;}
.y24f{bottom:92.374667pt;}
.y214{bottom:92.652000pt;}
.y13c{bottom:92.652286pt;}
.y135{bottom:92.970646pt;}
.y13f{bottom:93.120414pt;}
.yc9{bottom:93.147887pt;}
.y1be{bottom:93.526667pt;}
.y45{bottom:93.621319pt;}
.ydf{bottom:94.072940pt;}
.yf2{bottom:94.887511pt;}
.y6f{bottom:95.810667pt;}
.yd3{bottom:96.148570pt;}
.y62{bottom:96.405398pt;}
.y1a6{bottom:98.145881pt;}
.y197{bottom:98.192000pt;}
.y156{bottom:98.249675pt;}
.ya2{bottom:98.726812pt;}
.y13b{bottom:98.727216pt;}
.y23a{bottom:99.034667pt;}
.y134{bottom:99.045576pt;}
.y80{bottom:100.028000pt;}
.y31{bottom:100.968000pt;}
.y1cb{bottom:101.564000pt;}
.y38{bottom:101.840000pt;}
.y206{bottom:102.258667pt;}
.y268{bottom:103.490587pt;}
.ycc{bottom:103.685726pt;}
.ye5{bottom:104.572473pt;}
.yf8{bottom:104.972159pt;}
.yd1{bottom:105.892471pt;}
.y155{bottom:106.147085pt;}
.yfe{bottom:106.562310pt;}
.y13a{bottom:106.624626pt;}
.y133{bottom:106.942985pt;}
.ybe{bottom:107.468000pt;}
.ye6{bottom:107.471798pt;}
.y25e{bottom:108.118667pt;}
.y1df{bottom:108.246667pt;}
.ycd{bottom:108.376247pt;}
.ye4{bottom:110.702930pt;}
.y213{bottom:110.717333pt;}
.yd2{bottom:110.764421pt;}
.yf7{bottom:111.102616pt;}
.y154{bottom:112.222015pt;}
.y126{bottom:112.408000pt;}
.yc8{bottom:112.548000pt;}
.y139{bottom:112.699556pt;}
.y132{bottom:113.017916pt;}
.y22b{bottom:113.218667pt;}
.y6e{bottom:113.876000pt;}
.y1bd{bottom:115.577333pt;}
.y10{bottom:116.693333pt;}
.ye3{bottom:116.833387pt;}
.y239{bottom:117.100000pt;}
.yf6{bottom:117.233073pt;}
.y1a3{bottom:117.936861pt;}
.y30{bottom:119.033333pt;}
.ycb{bottom:119.181565pt;}
.y196{bottom:120.244000pt;}
.y205{bottom:120.324000pt;}
.y7f{bottom:122.218667pt;}
.yfd{bottom:122.520132pt;}
.yce{bottom:123.010590pt;}
.yf1{bottom:123.592381pt;}
.y6{bottom:126.322667pt;}
.ycf{bottom:126.604957pt;}
.y21f{bottom:127.238667pt;}
.y150{bottom:128.298699pt;}
.y26c{bottom:128.589949pt;}
.y212{bottom:128.784000pt;}
.yc3{bottom:128.925333pt;}
.yf0{bottom:128.956600pt;}
.y24e{bottom:130.656000pt;}
.ybd{bottom:130.745333pt;}
.y1de{bottom:131.040000pt;}
.yde{bottom:132.152470pt;}
.y17{bottom:132.466667pt;}
.y14f{bottom:134.373629pt;}
.y148{bottom:134.438357pt;}
.y238{bottom:135.165333pt;}
.y22a{bottom:135.269333pt;}
.y2f{bottom:137.098667pt;}
.ydd{bottom:137.516680pt;}
.y1bc{bottom:137.629333pt;}
.yfc{bottom:137.796982pt;}
.y37{bottom:137.972000pt;}
.y204{bottom:138.389333pt;}
.y14e{bottom:140.448559pt;}
.y160{bottom:140.513285pt;}
.y147{bottom:140.513288pt;}
.yef{bottom:141.993794pt;}
.y1ed{bottom:142.244000pt;}
.y97{bottom:143.168000pt;}
.yd0{bottom:143.267565pt;}
.y94{bottom:144.141333pt;}
.y25d{bottom:144.360000pt;}
.y91{bottom:144.430667pt;}
.y21e{bottom:145.304000pt;}
.y14d{bottom:146.523490pt;}
.y15f{bottom:146.588215pt;}
.y146{bottom:146.588218pt;}
.yee{bottom:147.358013pt;}
.yf{bottom:148.710667pt;}
.y211{bottom:150.834667pt;}
.yc2{bottom:150.985333pt;}
.y14c{bottom:152.598420pt;}
.y15e{bottom:152.663146pt;}
.y145{bottom:152.663149pt;}
.y237{bottom:153.232000pt;}
.yd7{bottom:153.881188pt;}
.y16{bottom:154.517333pt;}
.y2e{bottom:155.164000pt;}
.y24d{bottom:155.894667pt;}
.yfa{bottom:155.946971pt;}
.y229{bottom:157.320000pt;}
.y153{bottom:157.942178pt;}
.y14b{bottom:158.673351pt;}
.y15d{bottom:158.738076pt;}
.y144{bottom:158.738079pt;}
.ydc{bottom:159.304813pt;}
.yd6{bottom:159.381126pt;}
.y1ec{bottom:160.309333pt;}
.y203{bottom:160.790667pt;}
.y5{bottom:161.368000pt;}
.yf9{bottom:162.077310pt;}
.y195{bottom:162.261333pt;}
.y1a4{bottom:162.316667pt;}
.y44{bottom:162.554667pt;}
.ydb{bottom:164.669023pt;}
.y243{bottom:164.773333pt;}
.y152{bottom:165.839588pt;}
.y25c{bottom:166.412000pt;}
.y7a{bottom:166.528000pt;}
.y14a{bottom:166.570760pt;}
.y15c{bottom:166.635485pt;}
.y143{bottom:166.635488pt;}
.y21d{bottom:167.705333pt;}
.y24c{bottom:168.513333pt;}
.y1dd{bottom:169.073333pt;}
.yda{bottom:170.193713pt;}
.y236{bottom:171.297333pt;}
.y151{bottom:171.914518pt;}
.y149{bottom:172.645691pt;}
.y15b{bottom:172.710416pt;}
.y142{bottom:172.710419pt;}
.y2d{bottom:173.230667pt;}
.y4{bottom:173.986667pt;}
.y36{bottom:174.102667pt;}
.y15{bottom:176.568000pt;}
.y228{bottom:179.370667pt;}
.y1b5{bottom:179.646667pt;}
.ye{bottom:180.726667pt;}
.y24b{bottom:181.133333pt;}
.y79{bottom:182.468000pt;}
.y1eb{bottom:182.710667pt;}
.y242{bottom:182.838667pt;}
.y87{bottom:183.036000pt;}
.ya1{bottom:183.052000pt;}
.y115{bottom:184.138667pt;}
.y109{bottom:184.272000pt;}
.y194{bottom:184.312000pt;}
.y1af{bottom:185.433887pt;}
.y262{bottom:186.394667pt;}
.y1dc{bottom:191.124000pt;}
.y210{bottom:191.822667pt;}
.y1ae{bottom:192.493083pt;}
.y9e{bottom:192.998667pt;}
.y1fa{bottom:193.133333pt;}
.y235{bottom:193.348000pt;}
.y24a{bottom:193.752000pt;}
.y2c{bottom:194.904000pt;}
.y35{bottom:196.933333pt;}
.y78{bottom:198.408000pt;}
.y14{bottom:198.618667pt;}
.ya9{bottom:199.233333pt;}
.y1ad{bottom:199.552278pt;}
.y18c{bottom:199.955789pt;}
.y185{bottom:200.433330pt;}
.y17e{bottom:200.498059pt;}
.y1f1{bottom:201.308000pt;}
.y1b4{bottom:201.697333pt;}
.y227{bottom:201.772000pt;}
.y114{bottom:202.204000pt;}
.y108{bottom:202.337333pt;}
.ybc{bottom:203.012000pt;}
.y3e{bottom:203.269333pt;}
.y3{bottom:203.956000pt;}
.y1f5{bottom:204.405333pt;}
.y86{bottom:205.016000pt;}
.y21c{bottom:205.920000pt;}
.y18b{bottom:206.030719pt;}
.y193{bottom:206.292000pt;}
.y249{bottom:206.372000pt;}
.y184{bottom:206.508261pt;}
.y17d{bottom:206.572989pt;}
.y1a5{bottom:206.765468pt;}
.y18d{bottom:206.932591pt;}
.y25b{bottom:207.053333pt;}
.y20f{bottom:207.762667pt;}
.y1ac{bottom:208.807493pt;}
.y234{bottom:211.413333pt;}
.y18a{bottom:212.105650pt;}
.y183{bottom:212.583191pt;}
.y17c{bottom:212.647919pt;}
.yd{bottom:212.742667pt;}
.y1c6{bottom:214.306667pt;}
.y1f9{bottom:215.506667pt;}
.y1ab{bottom:215.866688pt;}
.y77{bottom:217.005333pt;}
.y189{bottom:218.180580pt;}
.y182{bottom:218.658121pt;}
.y17b{bottom:218.722850pt;}
.y241{bottom:218.970667pt;}
.y248{bottom:218.990667pt;}
.y113{bottom:220.269333pt;}
.y107{bottom:220.402667pt;}
.y13{bottom:220.669333pt;}
.ybb{bottom:221.077333pt;}
.y1d3{bottom:221.796000pt;}
.y1aa{bottom:222.925884pt;}
.y1f0{bottom:223.358667pt;}
.y20e{bottom:223.702667pt;}
.y1b3{bottom:223.748000pt;}
.y21b{bottom:223.986667pt;}
.y1e7{bottom:224.012000pt;}
.y188{bottom:224.255511pt;}
.y181{bottom:224.733052pt;}
.y17a{bottom:224.797780pt;}
.y25a{bottom:225.118667pt;}
.y1f4{bottom:226.456000pt;}
.y233{bottom:229.478667pt;}
.y1f8{bottom:231.446667pt;}
.y187{bottom:232.152920pt;}
.y1a9{bottom:232.181098pt;}
.y1c5{bottom:232.373333pt;}
.y180{bottom:232.630461pt;}
.y179{bottom:232.695190pt;}
.y2b{bottom:233.298667pt;}
.y84{bottom:236.420000pt;}
.y18f{bottom:236.902906pt;}
.y1d2{bottom:237.736000pt;}
.y186{bottom:238.227851pt;}
.y11e{bottom:238.334667pt;}
.y112{bottom:238.336000pt;}
.y106{bottom:238.468000pt;}
.y17f{bottom:238.705392pt;}
.y178{bottom:238.770120pt;}
.y76{bottom:239.056000pt;}
.ya8{bottom:239.349333pt;}
.y226{bottom:239.390667pt;}
.y20d{bottom:239.642667pt;}
.y1a8{bottom:241.436312pt;}
.y21a{bottom:242.052000pt;}
.y3d{bottom:243.930667pt;}
.y18e{bottom:244.331306pt;}
.y22f{bottom:244.385333pt;}
.yc{bottom:244.760000pt;}
.y1ef{bottom:245.409333pt;}
.y1e6{bottom:246.062667pt;}
.y1b2{bottom:246.149333pt;}
.y259{bottom:247.169333pt;}
.y232{bottom:247.544000pt;}
.y192{bottom:247.894667pt;}
.y1f3{bottom:248.506667pt;}
.y240{bottom:248.990667pt;}
.y9b{bottom:251.986667pt;}
.y1f7{bottom:252.377333pt;}
.y1d1{bottom:253.676000pt;}
.y1c4{bottom:254.424000pt;}
.y20c{bottom:255.582667pt;}
.y1a7{bottom:255.688751pt;}
.y247{bottom:257.270667pt;}
.ya7{bottom:257.414667pt;}
.y225{bottom:257.456000pt;}
.y2{bottom:260.498667pt;}
.y75{bottom:261.106667pt;}
.yba{bottom:261.194667pt;}
.y219{bottom:264.169333pt;}
.y177{bottom:265.446324pt;}
.y231{bottom:265.610667pt;}
.y176{bottom:265.674137pt;}
.y3c{bottom:266.717333pt;}
.y1ee{bottom:267.460000pt;}
.y1e5{bottom:268.113333pt;}
.y19{bottom:269.076000pt;}
.y258{bottom:269.220000pt;}
.y246{bottom:269.890667pt;}
.y191{bottom:269.945333pt;}
.y9a{bottom:270.052000pt;}
.y1d0{bottom:270.293333pt;}
.y1f2{bottom:270.557333pt;}
.y173{bottom:271.521292pt;}
.y171{bottom:271.749102pt;}
.y172{bottom:271.749103pt;}
.y1f6{bottom:272.302667pt;}
.y1c3{bottom:272.489333pt;}
.y43{bottom:274.440000pt;}
.yb{bottom:276.776000pt;}
.y20b{bottom:276.824000pt;}
.y26f{bottom:277.549333pt;}
.y131{bottom:277.596185pt;}
.y130{bottom:277.596187pt;}
.y12f{bottom:277.823995pt;}
.y224{bottom:278.322667pt;}
.y74{bottom:283.297333pt;}
.y1{bottom:283.346667pt;}
.y12e{bottom:283.671116pt;}
.y1b1{bottom:284.713333pt;}
.y18{bottom:287.141333pt;}
.y257{bottom:287.285333pt;}
.y230{bottom:288.012000pt;}
.y253{bottom:288.289333pt;}
.y1e4{bottom:290.166667pt;}
.y190{bottom:290.542667pt;}
.y1cf{bottom:292.345333pt;}
.yb9{bottom:292.594667pt;}
.y1c2{bottom:294.541333pt;}
.y67{bottom:295.284000pt;}
.y263{bottom:295.633333pt;}
.ya0{bottom:295.781333pt;}
.y83{bottom:296.226667pt;}
.y105{bottom:300.273333pt;}
.y111{bottom:300.805333pt;}
.y11d{bottom:300.806667pt;}
.ya{bottom:322.445333pt;}
.y202{bottom:2681.407720pt;}
.y26e{bottom:2681.565053pt;}
.y6d{bottom:2685.633053pt;}
.y8a{bottom:2689.303720pt;}
.yb8{bottom:2689.358387pt;}
.y8d{bottom:2689.593053pt;}
.y90{bottom:2690.567720pt;}
.y9d{bottom:2691.089053pt;}
.y1db{bottom:2693.906387pt;}
.y41{bottom:2700.826387pt;}
.y122{bottom:2700.875720pt;}
.y119{bottom:2700.877053pt;}
.y10d{bottom:2701.674387pt;}
.y1ca{bottom:2702.519720pt;}
.y125{bottom:2704.543720pt;}
.y11c{bottom:2704.545053pt;}
.yed{bottom:2705.127720pt;}
.y110{bottom:2705.342387pt;}
.y1bb{bottom:2705.765053pt;}
.y7e{bottom:2706.150387pt;}
.y201{bottom:2706.793053pt;}
.y89{bottom:2707.369053pt;}
.y8c{bottom:2707.658387pt;}
.y8f{bottom:2708.633053pt;}
.yb7{bottom:2711.409053pt;}
.y1da{bottom:2711.971720pt;}
.yb2{bottom:2712.001053pt;}
.y23{bottom:2713.471720pt;}
.y6c{bottom:2715.587720pt;}
.y26d{bottom:2718.953053pt;}
.y1ba{bottom:2721.705053pt;}
.y121{bottom:2722.925053pt;}
.y118{bottom:2722.927720pt;}
.y10c{bottom:2723.725053pt;}
.y1c9{bottom:2724.570387pt;}
.yec{bottom:2727.178387pt;}
.y7d{bottom:2728.341053pt;}
.y200{bottom:2728.843720pt;}
.y124{bottom:2731.337053pt;}
.y11b{bottom:2731.338387pt;}
.y22{bottom:2731.538387pt;}
.y10f{bottom:2732.135720pt;}
.yb6{bottom:2733.459720pt;}
.y6b{bottom:2733.653053pt;}
.yb1{bottom:2734.051720pt;}
.y221{bottom:2734.403720pt;}
.y1d9{bottom:2734.831720pt;}
.y1b9{bottom:2740.302387pt;}
.y267{bottom:2742.111720pt;}
.y6a{bottom:2744.446387pt;}
.y120{bottom:2744.975720pt;}
.y117{bottom:2744.978387pt;}
.y10b{bottom:2745.775720pt;}
.y1ff{bottom:2746.909053pt;}
.y1c8{bottom:2746.971720pt;}
.yeb{bottom:2749.229053pt;}
.y123{bottom:2749.402387pt;}
.y11a{bottom:2749.403720pt;}
.y21{bottom:2749.603720pt;}
.y10e{bottom:2750.201053pt;}
.y220{bottom:2752.470387pt;}
.y244{bottom:2754.218387pt;}
.yb5{bottom:2755.510387pt;}
.yb0{bottom:2756.102387pt;}
.y1d8{bottom:2756.882387pt;}
.y1b8{bottom:2760.227720pt;}
.y69{bottom:2762.511720pt;}
.y7c{bottom:2766.729053pt;}
.y20{bottom:2767.669053pt;}
.y1c7{bottom:2768.265053pt;}
.y1fe{bottom:2768.959720pt;}
.yaf{bottom:2774.169053pt;}
.y1d7{bottom:2774.947720pt;}
.y11f{bottom:2779.109053pt;}
.y116{bottom:2779.110387pt;}
.y10a{bottom:2779.907720pt;}
.y68{bottom:2780.577053pt;}
.y1b7{bottom:2782.278387pt;}
.y1f{bottom:2785.734387pt;}
.y1fd{bottom:2787.025053pt;}
.y7b{bottom:2788.919720pt;}
.yb4{bottom:2795.626387pt;}
.yae{bottom:2797.446387pt;}
.y1d6{bottom:2797.741053pt;}
.y1e{bottom:2803.799720pt;}
.y1b6{bottom:2804.330387pt;}
.y1fc{bottom:2805.090387pt;}
.y1ea{bottom:2808.945053pt;}
.y8e{bottom:2809.869053pt;}
.y8b{bottom:2810.842387pt;}
.y88{bottom:2811.131720pt;}
.yb3{bottom:2817.686387pt;}
.y1d{bottom:2821.865053pt;}
.y1e9{bottom:2827.010387pt;}
.y1fb{bottom:2827.491720pt;}
.y1d5{bottom:2835.774387pt;}
.y1c{bottom:2839.931720pt;}
.y1e8{bottom:2849.411720pt;}
.y1d4{bottom:2857.825053pt;}
.y9c{bottom:2859.699720pt;}
.y1b{bottom:2861.605053pt;}
.yad{bottom:2869.713053pt;}
.yac{bottom:2887.778387pt;}
.y1a{bottom:2899.999720pt;}
.yab{bottom:2927.895720pt;}
.y266{bottom:2944.250387pt;}
.yaa{bottom:2959.295720pt;}
.y2a{bottom:5381.046107pt;}
.y29{bottom:5399.111440pt;}
.y28{bottom:5417.176773pt;}
.y27{bottom:5435.242107pt;}
.y26{bottom:5471.374107pt;}
.y25{bottom:5507.504773pt;}
.y24{bottom:5530.335440pt;}
.h38{height:-2401.954387pt;}
.h10{height:4.130086pt;}
.h18{height:7.662225pt;}
.h1b{height:10.028729pt;}
.h1a{height:10.028731pt;}
.h23{height:12.505022pt;}
.h1e{height:13.041423pt;}
.h1c{height:13.371584pt;}
.h11{height:13.596847pt;}
.h28{height:13.677864pt;}
.h27{height:13.677876pt;}
.h39{height:14.156513pt;}
.h22{height:14.589115pt;}
.h25{height:14.769675pt;}
.h24{height:14.874087pt;}
.h1d{height:14.904507pt;}
.h29{height:18.060298pt;}
.h26{height:20.640341pt;}
.h8{height:22.571418pt;}
.h2f{height:23.441023pt;}
.h16{height:23.464073pt;}
.h37{height:23.687236pt;}
.h15{height:25.072183pt;}
.h20{height:25.751218pt;}
.h1f{height:26.279615pt;}
.h2b{height:28.129228pt;}
.h31{height:29.698778pt;}
.h4{height:30.095098pt;}
.h2d{height:31.281655pt;}
.h7{height:31.341747pt;}
.h5{height:31.582850pt;}
.h32{height:31.859428pt;}
.h2c{height:32.817433pt;}
.h34{height:35.196109pt;}
.ha{height:36.366095pt;}
.h9{height:36.478095pt;}
.h2e{height:37.505638pt;}
.h12{height:37.618778pt;}
.h33{height:39.106526pt;}
.h13{height:40.610943pt;}
.h3{height:41.192762pt;}
.hb{height:42.821854pt;}
.hc{height:43.229127pt;}
.he{height:44.968762pt;}
.h2{height:54.171251pt;}
.h30{height:55.272773pt;}
.hd{height:56.313617pt;}
.h35{height:64.087196pt;}
.h14{height:64.746796pt;}
.h6{height:80.937417pt;}
.h36{height:93.596090pt;}
.hf{height:99.804610pt;}
.h17{height:100.642368pt;}
.h3a{height:145.843200pt;}
.h19{height:178.798038pt;}
.h2a{height:267.898932pt;}
.h21{height:291.557264pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w9{width:-2380.922387pt;}
.w5{width:74.074838pt;}
.w3{width:214.238811pt;}
.wa{width:259.276800pt;}
.w4{width:296.322767pt;}
.w6{width:370.371101pt;}
.w2{width:370.421406pt;}
.w8{width:449.767254pt;}
.w7{width:529.126393pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x57{left:3.883097pt;}
.x96{left:4.994711pt;}
.xb2{left:6.378677pt;}
.x25{left:7.590608pt;}
.x1b{left:9.152312pt;}
.x1a{left:10.364619pt;}
.xb8{left:11.254104pt;}
.x2c{left:13.836059pt;}
.x9{left:16.121333pt;}
.x2d{left:19.093941pt;}
.x2f{left:20.838331pt;}
.x1c{left:22.784248pt;}
.x32{left:23.946310pt;}
.x81{left:25.197333pt;}
.x26{left:26.401782pt;}
.x61{left:31.803301pt;}
.x17{left:34.016000pt;}
.x1e{left:35.584405pt;}
.x82{left:36.574032pt;}
.x13{left:37.544000pt;}
.xa{left:38.466667pt;}
.x47{left:39.534131pt;}
.x48{left:41.670927pt;}
.xb7{left:42.961045pt;}
.x50{left:44.519214pt;}
.x18{left:45.922667pt;}
.xc6{left:48.442667pt;}
.x41{left:49.637693pt;}
.xc2{left:51.477333pt;}
.x49{left:53.071175pt;}
.xa6{left:54.288000pt;}
.x21{left:56.815278pt;}
.x20{left:58.595031pt;}
.x45{left:60.093928pt;}
.x37{left:61.413143pt;}
.x52{left:62.503250pt;}
.x56{left:64.065773pt;}
.x24{left:65.012108pt;}
.xb{left:66.886667pt;}
.x97{left:67.790431pt;}
.x42{left:68.898072pt;}
.x51{left:70.198308pt;}
.x55{left:71.685600pt;}
.x36{left:72.902276pt;}
.x53{left:74.095605pt;}
.x6d{left:75.743301pt;}
.x4d{left:76.937338pt;}
.x27{left:78.668211pt;}
.x54{left:79.576452pt;}
.x3f{left:81.116719pt;}
.x3a{left:82.246149pt;}
.x4f{left:83.260205pt;}
.x35{left:84.162165pt;}
.x19{left:86.731372pt;}
.x44{left:88.304135pt;}
.x4c{left:90.387681pt;}
.x23{left:91.502365pt;}
.x4e{left:92.716993pt;}
.x43{left:94.246202pt;}
.x4a{left:95.155262pt;}
.x40{left:96.246461pt;}
.x4b{left:97.780858pt;}
.x3b{left:99.741794pt;}
.x38{left:101.023189pt;}
.x22{left:102.466652pt;}
.x39{left:104.285728pt;}
.x95{left:106.647974pt;}
.x7{left:107.545547pt;}
.x46{left:108.717155pt;}
.x3e{left:111.136581pt;}
.x3c{left:113.447460pt;}
.x62{left:114.352288pt;}
.x16{left:115.512000pt;}
.x6{left:117.166667pt;}
.x94{left:118.276723pt;}
.x58{left:119.395125pt;}
.x3d{left:120.286435pt;}
.x8{left:121.245333pt;}
.x30{left:122.142921pt;}
.x31{left:124.942738pt;}
.x2e{left:126.657363pt;}
.x2a{left:128.351644pt;}
.x1{left:130.485333pt;}
.x83{left:132.001333pt;}
.x5d{left:133.139841pt;}
.x63{left:134.349008pt;}
.x6a{left:135.984851pt;}
.x6c{left:138.587236pt;}
.x5b{left:139.545722pt;}
.x5c{left:141.287517pt;}
.x93{left:142.976705pt;}
.x2b{left:144.006641pt;}
.x68{left:145.553462pt;}
.x64{left:146.816015pt;}
.x98{left:149.975427pt;}
.x60{left:151.307655pt;}
.x5a{left:152.253580pt;}
.x66{left:154.086308pt;}
.x65{left:156.655651pt;}
.x6b{left:158.553372pt;}
.x69{left:160.692761pt;}
.x5e{left:163.082832pt;}
.x5f{left:165.620908pt;}
.x67{left:169.465775pt;}
.x9a{left:170.849505pt;}
.x9b{left:172.158930pt;}
.x28{left:174.465330pt;}
.x59{left:176.456442pt;}
.x5{left:178.806667pt;}
.x29{left:180.441122pt;}
.x4{left:183.341333pt;}
.x1d{left:186.314374pt;}
.xb5{left:196.021333pt;}
.x33{left:199.691807pt;}
.x1f{left:200.811405pt;}
.x3{left:201.944000pt;}
.x34{left:203.632658pt;}
.x7f{left:214.057333pt;}
.x74{left:218.677333pt;}
.x7b{left:222.992000pt;}
.xa8{left:225.101275pt;}
.xa9{left:226.824087pt;}
.x9f{left:230.199764pt;}
.xaf{left:235.360303pt;}
.xb0{left:237.771292pt;}
.x2{left:247.729333pt;}
.x77{left:253.504000pt;}
.x9c{left:258.468209pt;}
.xa7{left:262.044000pt;}
.xa1{left:263.614064pt;}
.xa0{left:265.120189pt;}
.x10{left:266.428000pt;}
.x9e{left:273.943502pt;}
.xa2{left:284.818189pt;}
.x11{left:297.321333pt;}
.x6e{left:306.141333pt;}
.x8d{left:314.961333pt;}
.xc9{left:318.945333pt;}
.xb6{left:331.817333pt;}
.x12{left:334.557333pt;}
.xc5{left:340.830667pt;}
.x9d{left:343.505413pt;}
.x14{left:357.577333pt;}
.xac{left:358.847686pt;}
.x73{left:361.038667pt;}
.xaa{left:362.435692pt;}
.xab{left:365.681984pt;}
.xbf{left:378.856000pt;}
.x90{left:392.674667pt;}
.xc0{left:396.945333pt;}
.x7c{left:413.857333pt;}
.x91{left:421.765333pt;}
.xae{left:437.874979pt;}
.xb3{left:451.714430pt;}
.xb1{left:456.109633pt;}
.xb4{left:457.057940pt;}
.xad{left:459.040795pt;}
.xbe{left:460.441333pt;}
.x8e{left:466.754667pt;}
.xa3{left:473.702667pt;}
.x80{left:476.253333pt;}
.x8f{left:495.845333pt;}
.x92{left:506.428000pt;}
.xc3{left:546.530667pt;}
.xc4{left:564.414667pt;}
.xd{left:2683.078387pt;}
.x87{left:2691.898387pt;}
.x78{left:2698.826387pt;}
.x6f{left:2704.495720pt;}
.xb9{left:2712.169053pt;}
.xa4{left:2720.989053pt;}
.xc1{left:2729.807720pt;}
.x99{left:2733.587720pt;}
.xba{left:2741.259720pt;}
.x70{left:2753.505053pt;}
.x72{left:2766.315720pt;}
.x15{left:2782.213053pt;}
.x88{left:2806.653053pt;}
.x75{left:2811.187720pt;}
.x89{left:2835.743720pt;}
.x7d{left:2880.758387pt;}
.x79{left:2889.693053pt;}
.x76{left:2920.205053pt;}
.xa5{left:2928.745053pt;}
.xc{left:2933.129053pt;}
.xc8{left:2964.497053pt;}
.x84{left:2981.662387pt;}
.xc7{left:2985.646387pt;}
.x71{left:3027.739720pt;}
.xbc{left:3045.557053pt;}
.x8a{left:3059.375720pt;}
.xbd{left:3063.646387pt;}
.x7a{left:3080.558387pt;}
.x8b{left:3088.466387pt;}
.xbb{left:3127.142387pt;}
.x85{left:3133.455720pt;}
.x7e{left:3142.954387pt;}
.x86{left:3162.546387pt;}
.x8c{left:3173.129053pt;}
.xe{left:5630.723440pt;}
.xf{left:5667.959440pt;}
}




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