
    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_90b919162ea3c7908a1569f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_ddfd9f8e5d06f2e14e8bd91c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.981934;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_26a559b2c23dae65c6540d26.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_f4cdbecf4afd05bf480577d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005859;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_c62d44a33072f4a77818634b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_8c576adcb9c365a5e7fa55c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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_ec95c3ebe5409dd8011a76b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.789062;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_dba018906a868da75a164825.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900879;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_006fdf88b848ee26934c22b5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_cd7b900cf9307e55e69209d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_ff862939398b4033e52a38a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_fd01499d980b3bdc4ebee49e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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_21ebbdf48be11c6fec381f7d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_bd93dff1c7a5409a8ba2a8b2.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_9ef51914145f72db4a65ef71.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.875977;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_437219186a649aa22f24635f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.875977;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_56b8f441e3b29dc25234580f.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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_2e93dc25d2b0eb4c0934cb87.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;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_f5766406fc36f3684e981ba5.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.040039;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;}
.m4{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243244,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,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);}
.m7{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.413450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413450,0.000000,0.000000,0.250000,0,0);}
.m6{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:-66.960000px;}
.v7{vertical-align:-65.520000px;}
.v5{vertical-align:-55.440000px;}
.v8{vertical-align:-54.000000px;}
.v4{vertical-align:-12.240000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.v1{vertical-align:30.240000px;}
.ls8{letter-spacing:-1.656000px;}
.ls23{letter-spacing:-1.386000px;}
.ls1b{letter-spacing:-0.942000px;}
.ls9{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.666000px;}
.ls31{letter-spacing:-0.516000px;}
.ls28{letter-spacing:-0.360000px;}
.ls44{letter-spacing:-0.259800px;}
.ls33{letter-spacing:-0.258000px;}
.ls7{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.106800px;}
.ls2e{letter-spacing:-0.054000px;}
.ls2d{letter-spacing:-0.053400px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.003426px;}
.ls11{letter-spacing:0.053280px;}
.ls41{letter-spacing:0.053400px;}
.ls2b{letter-spacing:0.054000px;}
.ls10{letter-spacing:0.106800px;}
.ls35{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.138240px;}
.ls29{letter-spacing:0.147600px;}
.ls43{letter-spacing:0.153600px;}
.ls30{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.186274px;}
.ls2c{letter-spacing:0.204000px;}
.ls34{letter-spacing:0.228000px;}
.ls18{letter-spacing:0.235200px;}
.ls2f{letter-spacing:0.258000px;}
.ls40{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.273346px;}
.ls3b{letter-spacing:0.298800px;}
.ls20{letter-spacing:0.353400px;}
.lsc{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.462000px;}
.lsd{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.468000px;}
.ls42{letter-spacing:0.513600px;}
.ls37{letter-spacing:0.516000px;}
.ls13{letter-spacing:0.612000px;}
.ls19{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.666000px;}
.ls22{letter-spacing:0.828000px;}
.ls45{letter-spacing:0.900000px;}
.ls25{letter-spacing:0.924000px;}
.lsf{letter-spacing:1.080000px;}
.ls2a{letter-spacing:1.182000px;}
.ls3f{letter-spacing:4.500000px;}
.ls3e{letter-spacing:12.420000px;}
.ls3d{letter-spacing:16.020000px;}
.ls3a{letter-spacing:16.740000px;}
.ls17{letter-spacing:17.460000px;}
.ls15{letter-spacing:18.180000px;}
.ls1f{letter-spacing:20.340000px;}
.ls1d{letter-spacing:28.260000px;}
.ls39{letter-spacing:29.700000px;}
.ls38{letter-spacing:29.880000px;}
.ls3c{letter-spacing:32.580000px;}
.ls26{letter-spacing:39.780000px;}
.ls24{letter-spacing:47.700000px;}
.ls27{letter-spacing:65.700000px;}
.ls16{letter-spacing:107.580000px;}
.ls5{letter-spacing:113.940000px;}
.ls4{letter-spacing:114.120000px;}
.ls1e{letter-spacing:125.460000px;}
.ls14{letter-spacing:277.500000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws1{word-spacing:-25.344000px;}
.ws0{word-spacing:-21.060000px;}
.wse{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.856000px;}
.ws2{word-spacing:-16.254000px;}
.ws18{word-spacing:-16.122000px;}
.wsa{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.864000px;}
.ws14{word-spacing:-15.768000px;}
.wsd{word-spacing:-15.606000px;}
.ws67{word-spacing:-15.552000px;}
.ws63{word-spacing:-15.453600px;}
.ws7{word-spacing:-15.406800px;}
.ws6{word-spacing:-15.300000px;}
.ws68{word-spacing:-15.238800px;}
.ws64{word-spacing:-15.199800px;}
.ws1e{word-spacing:-15.144000px;}
.ws1b{word-spacing:-15.096000px;}
.ws65{word-spacing:-15.093600px;}
.wsb{word-spacing:-15.046800px;}
.ws1c{word-spacing:-14.994000px;}
.ws62{word-spacing:-14.993400px;}
.wsc{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws1a{word-spacing:-14.886600px;}
.ws1d{word-spacing:-14.886000px;}
.ws10{word-spacing:-14.833200px;}
.ws1f{word-spacing:-14.832000px;}
.ws22{word-spacing:-14.682000px;}
.ws66{word-spacing:-14.680200px;}
.ws61{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.274000px;}
.ws15{word-spacing:-13.554000px;}
.ws11{word-spacing:-12.420000px;}
.ws17{word-spacing:-11.700000px;}
.ws12{word-spacing:-11.118000px;}
.ws3d{word-spacing:-5.682000px;}
.ws51{word-spacing:-5.364000px;}
.ws41{word-spacing:-2.160000px;}
.ws40{word-spacing:-1.260000px;}
.ws2e{word-spacing:-0.252000px;}
.ws3{word-spacing:-0.036000px;}
.wsf{word-spacing:0.000000px;}
.ws96{word-spacing:0.618000px;}
.ws76{word-spacing:0.720000px;}
.ws75{word-spacing:1.620000px;}
.ws95{word-spacing:1.746000px;}
.ws74{word-spacing:2.034000px;}
.ws70{word-spacing:2.466000px;}
.ws72{word-spacing:2.628000px;}
.ws71{word-spacing:2.778000px;}
.ws7b{word-spacing:3.576000px;}
.ws7a{word-spacing:3.600000px;}
.ws3e{word-spacing:3.618000px;}
.ws87{word-spacing:3.780000px;}
.ws6c{word-spacing:3.804000px;}
.ws69{word-spacing:5.346000px;}
.ws6a{word-spacing:5.508000px;}
.ws48{word-spacing:6.066000px;}
.ws6b{word-spacing:6.246000px;}
.ws49{word-spacing:6.510000px;}
.ws73{word-spacing:6.546000px;}
.ws92{word-spacing:7.098000px;}
.ws94{word-spacing:7.686000px;}
.ws47{word-spacing:8.130000px;}
.ws20{word-spacing:8.182080px;}
.ws91{word-spacing:8.226000px;}
.ws93{word-spacing:8.946000px;}
.ws5c{word-spacing:9.564000px;}
.ws82{word-spacing:10.998000px;}
.ws42{word-spacing:11.268000px;}
.ws28{word-spacing:11.496000px;}
.ws27{word-spacing:11.520000px;}
.ws4f{word-spacing:11.700000px;}
.ws3c{word-spacing:11.826000px;}
.ws43{word-spacing:11.988000px;}
.ws3b{word-spacing:12.138000px;}
.ws6e{word-spacing:12.240000px;}
.ws7c{word-spacing:12.432000px;}
.ws44{word-spacing:12.444000px;}
.ws45{word-spacing:12.546000px;}
.ws98{word-spacing:13.062000px;}
.ws88{word-spacing:13.164000px;}
.ws8d{word-spacing:13.266000px;}
.ws5d{word-spacing:13.356000px;}
.ws8c{word-spacing:13.428000px;}
.ws8f{word-spacing:13.554000px;}
.ws8b{word-spacing:13.578000px;}
.ws30{word-spacing:13.632000px;}
.ws89{word-spacing:13.986000px;}
.ws8a{word-spacing:14.298000px;}
.ws8e{word-spacing:14.412000px;}
.ws5b{word-spacing:14.580000px;}
.ws83{word-spacing:14.964000px;}
.ws85{word-spacing:15.018000px;}
.ws25{word-spacing:15.714000px;}
.ws26{word-spacing:15.858000px;}
.ws4c{word-spacing:16.014000px;}
.ws84{word-spacing:16.146000px;}
.ws24{word-spacing:16.230000px;}
.ws80{word-spacing:16.578000px;}
.ws7f{word-spacing:17.154000px;}
.ws4e{word-spacing:17.448000px;}
.ws7e{word-spacing:17.844000px;}
.ws57{word-spacing:17.874000px;}
.ws2f{word-spacing:18.168000px;}
.ws58{word-spacing:18.594000px;}
.ws97{word-spacing:18.882000px;}
.ws3f{word-spacing:19.926000px;}
.ws33{word-spacing:20.034000px;}
.ws34{word-spacing:20.178000px;}
.ws78{word-spacing:20.214000px;}
.ws77{word-spacing:20.820000px;}
.ws31{word-spacing:21.474000px;}
.ws50{word-spacing:21.600000px;}
.ws3a{word-spacing:21.804000px;}
.ws37{word-spacing:21.906000px;}
.ws39{word-spacing:22.626000px;}
.ws32{word-spacing:22.938000px;}
.ws38{word-spacing:23.346000px;}
.ws59{word-spacing:24.480000px;}
.ws2c{word-spacing:24.948000px;}
.ws2b{word-spacing:25.356000px;}
.ws2a{word-spacing:25.380000px;}
.ws29{word-spacing:25.506000px;}
.ws79{word-spacing:25.938000px;}
.ws81{word-spacing:26.118000px;}
.ws2d{word-spacing:26.226000px;}
.ws5a{word-spacing:26.640000px;}
.ws4a{word-spacing:32.580000px;}
.ws4b{word-spacing:32.988000px;}
.ws53{word-spacing:34.866000px;}
.ws52{word-spacing:35.178000px;}
.ws54{word-spacing:35.484000px;}
.ws5f{word-spacing:38.628000px;}
.ws60{word-spacing:38.724000px;}
.ws5e{word-spacing:39.186000px;}
.ws46{word-spacing:39.312000px;}
.ws36{word-spacing:45.360000px;}
.ws35{word-spacing:45.540000px;}
.ws90{word-spacing:46.974000px;}
.ws6d{word-spacing:50.676000px;}
.ws7d{word-spacing:51.714000px;}
.ws6f{word-spacing:57.906000px;}
.ws4d{word-spacing:62.460000px;}
.ws55{word-spacing:62.538000px;}
.ws21{word-spacing:62.847360px;}
.ws56{word-spacing:63.684000px;}
.ws23{word-spacing:66.396000px;}
.ws86{word-spacing:72.180000px;}
.ws19{word-spacing:903.659604px;}
._1c{margin-left:-8.568960px;}
._5{margin-left:-2.816400px;}
._0{margin-left:-1.105920px;}
._1{width:1.629600px;}
._b{width:2.647200px;}
._7{width:3.904560px;}
._6{width:4.950000px;}
._d{width:6.252960px;}
._3{width:8.173920px;}
._2{width:9.612000px;}
._4{width:11.570160px;}
._8{width:12.854640px;}
._24{width:13.864320px;}
._e{width:16.613280px;}
._12{width:18.199920px;}
._c{width:19.661040px;}
._f{width:21.035520px;}
._21{width:22.708800px;}
._1e{width:24.137280px;}
._25{width:25.278480px;}
._18{width:26.406720px;}
._10{width:27.683040px;}
._11{width:28.878240px;}
._9{width:29.949360px;}
._a{width:30.977040px;}
._1f{width:32.091120px;}
._20{width:33.166800px;}
._2a{width:34.215360px;}
._14{width:35.313840px;}
._13{width:36.712800px;}
._2b{width:38.545200px;}
._17{width:39.833280px;}
._29{width:41.055120px;}
._2e{width:42.230160px;}
._2d{width:43.613040px;}
._37{width:44.682552px;}
._2c{width:45.804720px;}
._19{width:47.002560px;}
._1a{width:48.255120px;}
._1b{width:49.264560px;}
._35{width:50.269156px;}
._16{width:52.110720px;}
._33{width:53.800135px;}
._34{width:55.631839px;}
._27{width:56.772000px;}
._26{width:58.445280px;}
._31{width:59.763586px;}
._30{width:61.004583px;}
._28{width:62.807760px;}
._32{width:63.979350px;}
._36{width:66.621643px;}
._23{width:69.441120px;}
._22{width:70.576560px;}
._3a{width:72.770310px;}
._38{width:73.865930px;}
._39{width:80.576320px;}
._15{width:82.833120px;}
._3b{width:96.273539px;}
._3c{width:97.408740px;}
._3d{width:156.965040px;}
._1d{width:199.620000px;}
._2f{width:419.067120px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fsc{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:2.340000px;}
.y1d{bottom:3.060000px;}
.y1c{bottom:21.780000px;}
.y1b{bottom:38.340000px;}
.y1a{bottom:54.720000px;}
.y3{bottom:58.860000px;}
.y19{bottom:71.280000px;}
.y24e{bottom:87.486000px;}
.y18{bottom:87.840000px;}
.y53{bottom:90.756000px;}
.y39{bottom:92.016000px;}
.y1ac{bottom:94.896000px;}
.y107{bottom:99.756000px;}
.ya8{bottom:100.116000px;}
.yd4{bottom:101.556000px;}
.y24d{bottom:102.966000px;}
.y17d{bottom:103.896000px;}
.y156{bottom:104.256000px;}
.y17{bottom:104.400000px;}
.y1d8{bottom:104.869500px;}
.y52{bottom:108.756000px;}
.y38{bottom:109.836000px;}
.y1ab{bottom:112.896000px;}
.y106{bottom:117.576000px;}
.ya7{bottom:117.936000px;}
.y24c{bottom:118.446000px;}
.yd3{bottom:118.836000px;}
.y16{bottom:120.960000px;}
.y86{bottom:121.536000px;}
.y1d7{bottom:121.563000px;}
.y17c{bottom:121.716000px;}
.y51{bottom:126.576000px;}
.y212{bottom:127.608000px;}
.y37{bottom:127.836000px;}
.y1aa{bottom:130.716000px;}
.y24b{bottom:133.845000px;}
.y135{bottom:135.396000px;}
.y105{bottom:135.576000px;}
.y15{bottom:137.520000px;}
.y1d6{bottom:138.256500px;}
.y85{bottom:139.536000px;}
.y17b{bottom:139.716000px;}
.yd2{bottom:143.856000px;}
.y211{bottom:144.301500px;}
.y36{bottom:145.656000px;}
.ya6{bottom:146.376000px;}
.y1a9{bottom:148.536000px;}
.y24a{bottom:150.621000px;}
.y50{bottom:151.590000px;}
.y134{bottom:153.210000px;}
.y104{bottom:153.390000px;}
.y14{bottom:153.900000px;}
.y1d5{bottom:154.950000px;}
.y84{bottom:157.350000px;}
.y17a{bottom:157.530000px;}
.y210{bottom:160.995000px;}
.yd1{bottom:161.850000px;}
.y35{bottom:163.470000px;}
.y1a8{bottom:166.530000px;}
.y249{bottom:167.316000px;}
.y13{bottom:170.460000px;}
.y103{bottom:171.210000px;}
.y1d4{bottom:171.643500px;}
.y83{bottom:175.350000px;}
.y179{bottom:175.530000px;}
.y20f{bottom:177.688500px;}
.yd0{bottom:179.670000px;}
.y34{bottom:182.190000px;}
.y248{bottom:184.011000px;}
.y1a7{bottom:184.350000px;}
.y4f{bottom:185.610000px;}
.y12{bottom:187.020000px;}
.y1d3{bottom:188.337000px;}
.ya5{bottom:188.670000px;}
.y133{bottom:189.030000px;}
.y102{bottom:189.570000px;}
.y82{bottom:193.170000px;}
.y178{bottom:193.350000px;}
.y20e{bottom:194.301000px;}
.ycf{bottom:199.110000px;}
.y33{bottom:200.010000px;}
.y247{bottom:200.706000px;}
.y1a6{bottom:202.350000px;}
.y4e{bottom:203.430000px;}
.y11{bottom:203.580000px;}
.y1d2{bottom:204.357000px;}
.ya4{bottom:206.490000px;}
.y132{bottom:207.030000px;}
.y101{bottom:207.390000px;}
.y81{bottom:211.170000px;}
.y177{bottom:211.350000px;}
.y20d{bottom:211.581000px;}
.yce{bottom:217.110000px;}
.y246{bottom:217.320000px;}
.y32{bottom:217.830000px;}
.y1d1{bottom:218.037000px;}
.y1a5{bottom:220.170000px;}
.y10{bottom:220.185000px;}
.y4d{bottom:221.250000px;}
.ya3{bottom:224.490000px;}
.y131{bottom:224.850000px;}
.y100{bottom:225.390000px;}
.y20c{bottom:228.261000px;}
.y80{bottom:228.810000px;}
.y176{bottom:229.170000px;}
.y1d0{bottom:231.717000px;}
.y245{bottom:234.240000px;}
.ycd{bottom:234.930000px;}
.y31{bottom:235.830000px;}
.yf{bottom:236.745000px;}
.y1a4{bottom:237.990000px;}
.y4c{bottom:239.250000px;}
.y155{bottom:242.850000px;}
.y130{bottom:243.030000px;}
.yff{bottom:243.210000px;}
.y20b{bottom:244.941000px;}
.y1cf{bottom:245.397000px;}
.y175{bottom:246.990000px;}
.y7f{bottom:247.530000px;}
.y244{bottom:250.917000px;}
.ycc{bottom:252.930000px;}
.y30{bottom:253.650000px;}
.ye{bottom:253.665000px;}
.y1a3{bottom:255.990000px;}
.y4b{bottom:257.070000px;}
.ya2{bottom:258.690000px;}
.y1ce{bottom:259.077000px;}
.y154{bottom:260.670000px;}
.y12f{bottom:261.030000px;}
.yfe{bottom:261.210000px;}
.y20a{bottom:261.621000px;}
.y174{bottom:264.990000px;}
.y7e{bottom:265.350000px;}
.y243{bottom:267.594000px;}
.ycb{bottom:270.750000px;}
.y2f{bottom:271.650000px;}
.y1cd{bottom:272.757000px;}
.y1a2{bottom:273.810000px;}
.ya1{bottom:275.250000px;}
.y209{bottom:278.301000px;}
.y153{bottom:278.670000px;}
.yfd{bottom:278.850000px;}
.y173{bottom:282.810000px;}
.y7d{bottom:283.350000px;}
.y4a{bottom:284.250000px;}
.y242{bottom:284.271000px;}
.y2e{bottom:289.470000px;}
.y1a1{bottom:291.810000px;}
.y208{bottom:294.981000px;}
.ya0{bottom:295.590000px;}
.y152{bottom:296.490000px;}
.y12e{bottom:296.670000px;}
.yfc{bottom:297.390000px;}
.y241{bottom:300.948000px;}
.y7c{bottom:301.170000px;}
.y49{bottom:304.950000px;}
.yca{bottom:305.130000px;}
.y1cc{bottom:306.183000px;}
.y2d{bottom:307.290000px;}
.y1a0{bottom:309.630000px;}
.y207{bottom:311.580000px;}
.y12d{bottom:314.670000px;}
.yfb{bottom:315.210000px;}
.y240{bottom:317.544000px;}
.y151{bottom:318.135000px;}
.y7b{bottom:319.035000px;}
.y9f{bottom:320.655000px;}
.yc9{bottom:321.555000px;}
.y1cb{bottom:322.896000px;}
.y2c{bottom:325.335000px;}
.y19f{bottom:327.675000px;}
.y206{bottom:328.860000px;}
.y12c{bottom:332.535000px;}
.yfa{bottom:333.075000px;}
.y23f{bottom:334.464000px;}
.y7a{bottom:337.035000px;}
.y9e{bottom:338.475000px;}
.y1ca{bottom:339.609000px;}
.y48{bottom:341.895000px;}
.y150{bottom:342.075000px;}
.yc8{bottom:342.435000px;}
.y2b{bottom:343.155000px;}
.y19e{bottom:345.495000px;}
.y205{bottom:345.567000px;}
.y172{bottom:347.295000px;}
.y23e{bottom:350.514000px;}
.y12b{bottom:350.715000px;}
.y79{bottom:354.855000px;}
.y1c9{bottom:356.322000px;}
.yf9{bottom:357.195000px;}
.y9d{bottom:358.095000px;}
.y47{bottom:359.895000px;}
.y2a{bottom:361.695000px;}
.y204{bottom:362.274000px;}
.yc7{bottom:362.775000px;}
.y19d{bottom:363.315000px;}
.y23d{bottom:366.564000px;}
.y12a{bottom:368.715000px;}
.y1c8{bottom:373.035000px;}
.y14f{bottom:373.215000px;}
.y171{bottom:374.295000px;}
.y9c{bottom:375.915000px;}
.y46{bottom:377.715000px;}
.y203{bottom:378.981000px;}
.y29{bottom:379.515000px;}
.y19c{bottom:381.315000px;}
.y23c{bottom:382.614000px;}
.y129{bottom:386.535000px;}
.y170{bottom:387.075000px;}
.yc6{bottom:387.795000px;}
.yf8{bottom:388.515000px;}
.y9b{bottom:393.915000px;}
.y202{bottom:395.688000px;}
.y45{bottom:395.715000px;}
.y28{bottom:397.515000px;}
.y23b{bottom:398.664000px;}
.y19b{bottom:399.135000px;}
.y1c7{bottom:402.915000px;}
.yc5{bottom:405.615000px;}
.yf7{bottom:406.515000px;}
.y14e{bottom:407.595000px;}
.y128{bottom:408.135000px;}
.y201{bottom:411.708000px;}
.y9a{bottom:411.735000px;}
.y78{bottom:412.815000px;}
.y44{bottom:413.535000px;}
.y23a{bottom:414.714000px;}
.y27{bottom:415.335000px;}
.y19a{bottom:417.135000px;}
.yc4{bottom:423.435000px;}
.y14d{bottom:424.155000px;}
.yf6{bottom:424.335000px;}
.y200{bottom:425.307000px;}
.y127{bottom:425.955000px;}
.y99{bottom:429.735000px;}
.y77{bottom:430.635000px;}
.y239{bottom:430.683000px;}
.y43{bottom:431.355000px;}
.y26{bottom:433.335000px;}
.y199{bottom:434.955000px;}
.y14c{bottom:437.835000px;}
.y1c6{bottom:440.535000px;}
.y1ff{bottom:442.056000px;}
.yf5{bottom:442.155000px;}
.yc3{bottom:443.055000px;}
.y126{bottom:443.955000px;}
.y238{bottom:447.093000px;}
.y98{bottom:447.555000px;}
.y76{bottom:448.635000px;}
.y42{bottom:449.355000px;}
.y25{bottom:451.155000px;}
.y198{bottom:452.775000px;}
.y1c5{bottom:458.355000px;}
.y1fe{bottom:458.724000px;}
.yf4{bottom:460.155000px;}
.yc2{bottom:461.055000px;}
.y125{bottom:461.775000px;}
.y237{bottom:463.422000px;}
.y14b{bottom:464.655000px;}
.y97{bottom:465.375000px;}
.y75{bottom:466.455000px;}
.y41{bottom:467.175000px;}
.y24{bottom:469.155000px;}
.y197{bottom:470.775000px;}
.y1fd{bottom:475.392000px;}
.yf3{bottom:477.975000px;}
.yc1{bottom:478.875000px;}
.y236{bottom:479.751000px;}
.y124{bottom:479.775000px;}
.y1c4{bottom:481.575000px;}
.y14a{bottom:481.755000px;}
.y74{bottom:484.275000px;}
.y40{bottom:485.175000px;}
.y26e{bottom:485.535000px;}
.y23{bottom:486.975000px;}
.y196{bottom:488.595000px;}
.y1fc{bottom:492.060000px;}
.yf2{bottom:495.795000px;}
.y235{bottom:496.080000px;}
.yc0{bottom:496.875000px;}
.y123{bottom:497.595000px;}
.y1c3{bottom:499.575000px;}
.y96{bottom:499.935000px;}
.y73{bottom:502.275000px;}
.y3f{bottom:502.995000px;}
.y22{bottom:504.795000px;}
.y195{bottom:506.595000px;}
.y1fb{bottom:508.728000px;}
.y234{bottom:512.409000px;}
.yf1{bottom:514.155000px;}
.ybf{bottom:514.695000px;}
.y122{bottom:515.415000px;}
.y95{bottom:516.315000px;}
.y1c2{bottom:517.395000px;}
.y26d{bottom:518.835000px;}
.y72{bottom:519.915000px;}
.y21{bottom:522.795000px;}
.y194{bottom:524.235000px;}
.y3e{bottom:525.315000px;}
.y233{bottom:528.738000px;}
.yf0{bottom:532.155000px;}
.y1c1{bottom:535.395000px;}
.y26c{bottom:535.575000px;}
.y94{bottom:535.935000px;}
.y121{bottom:537.015000px;}
.y20{bottom:540.615000px;}
.y1fa{bottom:542.775000px;}
.y3d{bottom:543.855000px;}
.y71{bottom:544.935000px;}
.y232{bottom:545.067000px;}
.y193{bottom:547.995000px;}
.ybe{bottom:549.075000px;}
.yef{bottom:549.975000px;}
.y26b{bottom:552.315000px;}
.y1c0{bottom:553.215000px;}
.y120{bottom:554.835000px;}
.y93{bottom:558.255000px;}
.y1f{bottom:558.435000px;}
.y1f9{bottom:559.459500px;}
.y231{bottom:561.315000px;}
.y3c{bottom:561.855000px;}
.ybd{bottom:565.455000px;}
.yee{bottom:567.795000px;}
.y26a{bottom:568.905000px;}
.y1bf{bottom:571.245000px;}
.y11f{bottom:573.225000px;}
.y1f8{bottom:576.144000px;}
.y70{bottom:578.085000px;}
.y230{bottom:578.265000px;}
.y3b{bottom:579.705000px;}
.y1e{bottom:585.465000px;}
.y269{bottom:585.645000px;}
.yed{bottom:585.825000px;}
.y92{bottom:586.005000px;}
.ybc{bottom:586.185000px;}
.y1be{bottom:589.065000px;}
.y11e{bottom:591.225000px;}
.y16f{bottom:591.585000px;}
.y1f7{bottom:592.828500px;}
.y22f{bottom:594.969000px;}
.y192{bottom:595.905000px;}
.y6f{bottom:596.085000px;}
.y3a{bottom:597.705000px;}
.y268{bottom:602.385000px;}
.yec{bottom:603.645000px;}
.y16e{bottom:604.725000px;}
.ybb{bottom:606.525000px;}
.y1bd{bottom:606.885000px;}
.y11d{bottom:609.045000px;}
.y91{bottom:609.405000px;}
.y1f6{bottom:609.513000px;}
.y22e{bottom:611.673000px;}
.yd{bottom:611.925000px;}
.y6e{bottom:613.905000px;}
.y267{bottom:618.945000px;}
.yeb{bottom:621.645000px;}
.y16d{bottom:622.725000px;}
.y1bc{bottom:624.885000px;}
.y1f5{bottom:626.197500px;}
.y22d{bottom:628.377000px;}
.y11c{bottom:630.645000px;}
.y6d{bottom:631.725000px;}
.y266{bottom:635.685000px;}
.y16c{bottom:640.545000px;}
.y1bb{bottom:642.705000px;}
.y1f4{bottom:642.882000px;}
.y22c{bottom:645.081000px;}
.yea{bottom:645.585000px;}
.y11b{bottom:648.465000px;}
.yba{bottom:649.365000px;}
.y6c{bottom:649.725000px;}
.y265{bottom:652.245000px;}
.y16b{bottom:658.365000px;}
.y1f3{bottom:660.162000px;}
.y1ba{bottom:660.705000px;}
.y22b{bottom:661.704000px;}
.y264{bottom:665.745000px;}
.y11a{bottom:666.465000px;}
.y6b{bottom:667.545000px;}
.y263{bottom:670.425000px;}
.yb9{bottom:674.025000px;}
.y16a{bottom:676.365000px;}
.y1f2{bottom:676.842000px;}
.ye9{bottom:676.905000px;}
.y22a{bottom:677.949000px;}
.y1b9{bottom:678.525000px;}
.y149{bottom:684.105000px;}
.y119{bottom:684.285000px;}
.y191{bottom:685.545000px;}
.y6a{bottom:686.085000px;}
.y262{bottom:687.165000px;}
.yb8{bottom:691.845000px;}
.y1f1{bottom:693.522000px;}
.y229{bottom:694.113000px;}
.y169{bottom:694.545000px;}
.ye8{bottom:694.905000px;}
.y1b8{bottom:696.525000px;}
.y148{bottom:701.925000px;}
.y190{bottom:703.365000px;}
.y69{bottom:703.905000px;}
.y118{bottom:707.505000px;}
.yb7{bottom:709.845000px;}
.y1f0{bottom:710.202000px;}
.y228{bottom:710.277000px;}
.y168{bottom:712.365000px;}
.ye7{bottom:712.725000px;}
.y1b7{bottom:714.345000px;}
.y147{bottom:719.745000px;}
.y261{bottom:720.465000px;}
.y18f{bottom:721.185000px;}
.y68{bottom:721.725000px;}
.y117{bottom:725.505000px;}
.y227{bottom:726.441000px;}
.y1ef{bottom:727.662000px;}
.yb6{bottom:727.665000px;}
.y167{bottom:730.365000px;}
.ye6{bottom:730.725000px;}
.y1b6{bottom:732.165000px;}
.y260{bottom:737.205000px;}
.y146{bottom:738.465000px;}
.y18e{bottom:739.185000px;}
.y67{bottom:739.725000px;}
.y226{bottom:742.605000px;}
.y116{bottom:743.325000px;}
.y1ee{bottom:744.312000px;}
.yb5{bottom:745.665000px;}
.y166{bottom:748.185000px;}
.ye5{bottom:748.545000px;}
.y1b5{bottom:750.165000px;}
.y25f{bottom:753.945000px;}
.y145{bottom:756.285000px;}
.y18d{bottom:757.005000px;}
.y66{bottom:757.545000px;}
.y225{bottom:758.688000px;}
.y1ed{bottom:760.962000px;}
.y115{bottom:761.325000px;}
.yb4{bottom:763.485000px;}
.y165{bottom:766.185000px;}
.ye4{bottom:766.365000px;}
.y1b4{bottom:767.985000px;}
.y25e{bottom:770.505000px;}
.y144{bottom:774.105000px;}
.y18c{bottom:775.005000px;}
.y65{bottom:775.545000px;}
.y224{bottom:775.608000px;}
.y1ec{bottom:777.612000px;}
.y114{bottom:779.145000px;}
.yb3{bottom:781.305000px;}
.y164{bottom:783.825000px;}
.y1b3{bottom:785.985000px;}
.y25d{bottom:787.605000px;}
.y223{bottom:791.695500px;}
.y143{bottom:792.105000px;}
.ye3{bottom:792.465000px;}
.y18b{bottom:792.825000px;}
.y64{bottom:793.185000px;}
.y1eb{bottom:794.262000px;}
.y113{bottom:796.965000px;}
.yb2{bottom:799.305000px;}
.y163{bottom:802.365000px;}
.y1b2{bottom:803.805000px;}
.y25c{bottom:804.345000px;}
.y222{bottom:807.783000px;}
.y142{bottom:809.925000px;}
.y18a{bottom:810.645000px;}
.y1ea{bottom:811.002000px;}
.ye2{bottom:815.865000px;}
.y63{bottom:818.205000px;}
.y112{bottom:818.745000px;}
.y162{bottom:820.230000px;}
.y25b{bottom:820.950000px;}
.y1b1{bottom:821.670000px;}
.yb1{bottom:823.650000px;}
.y221{bottom:823.870500px;}
.y1e9{bottom:828.282000px;}
.y189{bottom:828.690000px;}
.y141{bottom:831.570000px;}
.ye1{bottom:833.910000px;}
.y111{bottom:836.790000px;}
.y25a{bottom:837.690000px;}
.y161{bottom:838.050000px;}
.y1b0{bottom:839.670000px;}
.y220{bottom:839.958000px;}
.y1e8{bottom:844.989000px;}
.y188{bottom:846.510000px;}
.y140{bottom:849.390000px;}
.y62{bottom:851.370000px;}
.ye0{bottom:851.730000px;}
.yb0{bottom:852.270000px;}
.y259{bottom:854.250000px;}
.y110{bottom:854.430000px;}
.y21f{bottom:856.045500px;}
.y160{bottom:856.050000px;}
.y1af{bottom:857.490000px;}
.y1e7{bottom:861.696000px;}
.y187{bottom:864.510000px;}
.y61{bottom:869.190000px;}
.y258{bottom:870.990000px;}
.y21e{bottom:872.052000px;}
.ydf{bottom:872.070000px;}
.y10f{bottom:872.970000px;}
.y13f{bottom:873.150000px;}
.y15f{bottom:873.870000px;}
.yaf{bottom:875.490000px;}
.y1e6{bottom:878.403000px;}
.y186{bottom:882.330000px;}
.y60{bottom:887.190000px;}
.y257{bottom:887.730000px;}
.yc{bottom:889.530000px;}
.yde{bottom:890.070000px;}
.y10e{bottom:890.790000px;}
.y15e{bottom:891.690000px;}
.yae{bottom:893.310000px;}
.y21d{bottom:893.832000px;}
.y1e5{bottom:895.110000px;}
.y90{bottom:896.010000px;}
.y13e{bottom:904.290000px;}
.y185{bottom:904.830000px;}
.y5f{bottom:905.010000px;}
.yb{bottom:905.910000px;}
.y21c{bottom:907.512000px;}
.ydd{bottom:908.250000px;}
.y10d{bottom:908.610000px;}
.y15d{bottom:910.050000px;}
.y1e4{bottom:911.130000px;}
.yad{bottom:911.310000px;}
.y21b{bottom:921.192000px;}
.y8f{bottom:921.390000px;}
.y13d{bottom:921.930000px;}
.ya{bottom:922.290000px;}
.y5e{bottom:922.830000px;}
.y1e3{bottom:924.810000px;}
.ydc{bottom:926.430000px;}
.y10c{bottom:926.610000px;}
.y15c{bottom:927.870000px;}
.y1ae{bottom:928.950000px;}
.yac{bottom:929.130000px;}
.y184{bottom:933.990000px;}
.y21a{bottom:934.872000px;}
.y256{bottom:938.130000px;}
.y1e2{bottom:938.490000px;}
.y9{bottom:939.210000px;}
.y8e{bottom:939.390000px;}
.y13c{bottom:940.290000px;}
.ydb{bottom:944.430000px;}
.y15b{bottom:945.870000px;}
.y5d{bottom:946.230000px;}
.yab{bottom:946.950000px;}
.y219{bottom:948.471000px;}
.y1ad{bottom:951.810000px;}
.y183{bottom:951.990000px;}
.y1e1{bottom:952.170000px;}
.y255{bottom:954.690000px;}
.y8{bottom:955.590000px;}
.y8d{bottom:957.210000px;}
.y13b{bottom:958.110000px;}
.y10b{bottom:962.430000px;}
.yda{bottom:962.610000px;}
.y15a{bottom:963.690000px;}
.y5c{bottom:964.050000px;}
.y1e0{bottom:965.850000px;}
.y182{bottom:969.810000px;}
.y218{bottom:970.971000px;}
.y254{bottom:971.430000px;}
.y8c{bottom:975.030000px;}
.yaa{bottom:975.390000px;}
.y13a{bottom:975.930000px;}
.y7{bottom:978.630000px;}
.y1df{bottom:979.530000px;}
.y10a{bottom:980.250000px;}
.yd9{bottom:980.790000px;}
.y159{bottom:981.510000px;}
.y5b{bottom:982.050000px;}
.y217{bottom:987.639000px;}
.y181{bottom:987.810000px;}
.y253{bottom:988.170000px;}
.ya9{bottom:992.670000px;}
.y8b{bottom:993.030000px;}
.y1de{bottom:993.210000px;}
.y139{bottom:993.930000px;}
.y109{bottom:998.070000px;}
.yd8{bottom:998.790000px;}
.y158{bottom:999.510000px;}
.y5a{bottom:999.870000px;}
.y6{bottom:1004.010000px;}
.y216{bottom:1004.307000px;}
.y252{bottom:1004.730000px;}
.y180{bottom:1005.630000px;}
.y1dd{bottom:1010.790000px;}
.y8a{bottom:1010.850000px;}
.y138{bottom:1011.750000px;}
.yd7{bottom:1016.970000px;}
.y157{bottom:1017.150000px;}
.y59{bottom:1017.690000px;}
.y215{bottom:1020.975000px;}
.y251{bottom:1021.650000px;}
.y108{bottom:1022.010000px;}
.y17f{bottom:1023.450000px;}
.y1dc{bottom:1027.357500px;}
.y89{bottom:1028.850000px;}
.y5{bottom:1029.210000px;}
.y137{bottom:1029.750000px;}
.yd6{bottom:1034.970000px;}
.y58{bottom:1035.690000px;}
.y214{bottom:1037.643000px;}
.y250{bottom:1038.390000px;}
.y1db{bottom:1043.925000px;}
.y17e{bottom:1045.590000px;}
.y88{bottom:1046.670000px;}
.y136{bottom:1047.570000px;}
.yd5{bottom:1053.150000px;}
.y57{bottom:1053.510000px;}
.y4{bottom:1054.230000px;}
.y24f{bottom:1054.950000px;}
.y1da{bottom:1060.492500px;}
.y87{bottom:1071.360000px;}
.y56{bottom:1071.540000px;}
.y213{bottom:1071.720000px;}
.y1d9{bottom:1076.979000px;}
.y54{bottom:1084.320000px;}
.y2{bottom:1089.000000px;}
.y1{bottom:1117.620000px;}
.hf{height:17.280000px;}
.h15{height:17.666016px;}
.h12{height:35.332031px;}
.h13{height:40.472227px;}
.h5{height:40.758047px;}
.hc{height:41.658047px;}
.h11{height:41.726953px;}
.h10{height:47.344922px;}
.h6{height:52.770938px;}
.hd{height:58.621992px;}
.h9{height:58.651172px;}
.he{height:59.614102px;}
.ha{height:60.226875px;}
.h14{height:61.423863px;}
.h1{height:64.978594px;}
.h2{height:65.010937px;}
.h8{height:72.562500px;}
.hb{height:74.953125px;}
.h3{height:82.676953px;}
.h4{height:108.843750px;}
.h7{height:269.670000px;}
.h0{height:1188.000000px;}
.w3{width:722.085000px;}
.w2{width:791.250000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:8.820000px;}
.x1c{left:10.800000px;}
.x2{left:53.999986px;}
.xc{left:65.700000px;}
.x12{left:68.939986px;}
.x1{left:74.339986px;}
.x29{left:80.459986px;}
.x24{left:81.719986px;}
.x11{left:83.879986px;}
.xe{left:85.139986px;}
.x1d{left:86.219986px;}
.x10{left:88.379986px;}
.x2e{left:89.999986px;}
.x1e{left:93.635986px;}
.x4{left:95.975986px;}
.x28{left:98.675986px;}
.xf{left:101.375986px;}
.x27{left:103.355986px;}
.x2a{left:104.795986px;}
.x5{left:106.955986px;}
.x2b{left:108.035986px;}
.x25{left:127.655986px;}
.x26{left:145.295986px;}
.x3{left:171.209986px;}
.x8{left:369.434986px;}
.x6{left:372.494986px;}
.x7{left:385.994986px;}
.x9{left:410.474986px;}
.xa{left:418.934986px;}
.xb{left:426.854986px;}
.x33{left:448.814986px;}
.x21{left:453.854986px;}
.x22{left:466.994986px;}
.x13{left:468.794986px;}
.x35{left:469.874986px;}
.x3b{left:472.149000px;}
.x16{left:474.194986px;}
.x2c{left:476.714986px;}
.x3a{left:479.392500px;}
.x1a{left:481.604986px;}
.x14{left:483.764986px;}
.x1f{left:486.104986px;}
.x2f{left:487.724986px;}
.x1b{left:488.984986px;}
.x32{left:490.784986px;}
.x17{left:492.584986px;}
.x23{left:494.384986px;}
.x3c{left:496.185000px;}
.x15{left:498.704986px;}
.x36{left:500.685000px;}
.x30{left:503.204986px;}
.x2d{left:507.884986px;}
.x34{left:514.004986px;}
.x18{left:528.764986px;}
.x19{left:550.364986px;}
.x37{left:590.439000px;}
.x38{left:603.834361px;}
.x39{left:606.456000px;}
.x3d{left:643.605000px;}
.x31{left:831.749986px;}
.x20{left:835.889986px;}
@media print{
.v6{vertical-align:-59.520000pt;}
.v7{vertical-align:-58.240000pt;}
.v5{vertical-align:-49.280000pt;}
.v8{vertical-align:-48.000000pt;}
.v4{vertical-align:-10.880000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.v1{vertical-align:26.880000pt;}
.ls8{letter-spacing:-1.472000pt;}
.ls23{letter-spacing:-1.232000pt;}
.ls1b{letter-spacing:-0.837333pt;}
.ls9{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.592000pt;}
.ls31{letter-spacing:-0.458667pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls44{letter-spacing:-0.230933pt;}
.ls33{letter-spacing:-0.229333pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls2e{letter-spacing:-0.048000pt;}
.ls2d{letter-spacing:-0.047467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.003045pt;}
.ls11{letter-spacing:0.047360pt;}
.ls41{letter-spacing:0.047467pt;}
.ls2b{letter-spacing:0.048000pt;}
.ls10{letter-spacing:0.094933pt;}
.ls35{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.122880pt;}
.ls29{letter-spacing:0.131200pt;}
.ls43{letter-spacing:0.136533pt;}
.ls30{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.165576pt;}
.ls2c{letter-spacing:0.181333pt;}
.ls34{letter-spacing:0.202667pt;}
.ls18{letter-spacing:0.209067pt;}
.ls2f{letter-spacing:0.229333pt;}
.ls40{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.242974pt;}
.ls3b{letter-spacing:0.265600pt;}
.ls20{letter-spacing:0.314133pt;}
.lsc{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.410667pt;}
.lsd{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.416000pt;}
.ls42{letter-spacing:0.456533pt;}
.ls37{letter-spacing:0.458667pt;}
.ls13{letter-spacing:0.544000pt;}
.ls19{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.592000pt;}
.ls22{letter-spacing:0.736000pt;}
.ls45{letter-spacing:0.800000pt;}
.ls25{letter-spacing:0.821333pt;}
.lsf{letter-spacing:0.960000pt;}
.ls2a{letter-spacing:1.050667pt;}
.ls3f{letter-spacing:4.000000pt;}
.ls3e{letter-spacing:11.040000pt;}
.ls3d{letter-spacing:14.240000pt;}
.ls3a{letter-spacing:14.880000pt;}
.ls17{letter-spacing:15.520000pt;}
.ls15{letter-spacing:16.160000pt;}
.ls1f{letter-spacing:18.080000pt;}
.ls1d{letter-spacing:25.120000pt;}
.ls39{letter-spacing:26.400000pt;}
.ls38{letter-spacing:26.560000pt;}
.ls3c{letter-spacing:28.960000pt;}
.ls26{letter-spacing:35.360000pt;}
.ls24{letter-spacing:42.400000pt;}
.ls27{letter-spacing:58.400000pt;}
.ls16{letter-spacing:95.626667pt;}
.ls5{letter-spacing:101.280000pt;}
.ls4{letter-spacing:101.440000pt;}
.ls1e{letter-spacing:111.520000pt;}
.ls14{letter-spacing:246.666667pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1{word-spacing:-22.528000pt;}
.ws0{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.872000pt;}
.ws2{word-spacing:-14.448000pt;}
.ws18{word-spacing:-14.330667pt;}
.wsa{word-spacing:-14.240000pt;}
.ws16{word-spacing:-14.101333pt;}
.ws14{word-spacing:-14.016000pt;}
.wsd{word-spacing:-13.872000pt;}
.ws67{word-spacing:-13.824000pt;}
.ws63{word-spacing:-13.736533pt;}
.ws7{word-spacing:-13.694933pt;}
.ws6{word-spacing:-13.600000pt;}
.ws68{word-spacing:-13.545600pt;}
.ws64{word-spacing:-13.510933pt;}
.ws1e{word-spacing:-13.461333pt;}
.ws1b{word-spacing:-13.418667pt;}
.ws65{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.374933pt;}
.ws1c{word-spacing:-13.328000pt;}
.ws62{word-spacing:-13.327467pt;}
.wsc{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws1a{word-spacing:-13.232533pt;}
.ws1d{word-spacing:-13.232000pt;}
.ws10{word-spacing:-13.185067pt;}
.ws1f{word-spacing:-13.184000pt;}
.ws22{word-spacing:-13.050667pt;}
.ws66{word-spacing:-13.049067pt;}
.ws61{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.688000pt;}
.ws15{word-spacing:-12.048000pt;}
.ws11{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.400000pt;}
.ws12{word-spacing:-9.882667pt;}
.ws3d{word-spacing:-5.050667pt;}
.ws51{word-spacing:-4.768000pt;}
.ws41{word-spacing:-1.920000pt;}
.ws40{word-spacing:-1.120000pt;}
.ws2e{word-spacing:-0.224000pt;}
.ws3{word-spacing:-0.032000pt;}
.wsf{word-spacing:0.000000pt;}
.ws96{word-spacing:0.549333pt;}
.ws76{word-spacing:0.640000pt;}
.ws75{word-spacing:1.440000pt;}
.ws95{word-spacing:1.552000pt;}
.ws74{word-spacing:1.808000pt;}
.ws70{word-spacing:2.192000pt;}
.ws72{word-spacing:2.336000pt;}
.ws71{word-spacing:2.469333pt;}
.ws7b{word-spacing:3.178667pt;}
.ws7a{word-spacing:3.200000pt;}
.ws3e{word-spacing:3.216000pt;}
.ws87{word-spacing:3.360000pt;}
.ws6c{word-spacing:3.381333pt;}
.ws69{word-spacing:4.752000pt;}
.ws6a{word-spacing:4.896000pt;}
.ws48{word-spacing:5.392000pt;}
.ws6b{word-spacing:5.552000pt;}
.ws49{word-spacing:5.786667pt;}
.ws73{word-spacing:5.818667pt;}
.ws92{word-spacing:6.309333pt;}
.ws94{word-spacing:6.832000pt;}
.ws47{word-spacing:7.226667pt;}
.ws20{word-spacing:7.272960pt;}
.ws91{word-spacing:7.312000pt;}
.ws93{word-spacing:7.952000pt;}
.ws5c{word-spacing:8.501333pt;}
.ws82{word-spacing:9.776000pt;}
.ws42{word-spacing:10.016000pt;}
.ws28{word-spacing:10.218667pt;}
.ws27{word-spacing:10.240000pt;}
.ws4f{word-spacing:10.400000pt;}
.ws3c{word-spacing:10.512000pt;}
.ws43{word-spacing:10.656000pt;}
.ws3b{word-spacing:10.789333pt;}
.ws6e{word-spacing:10.880000pt;}
.ws7c{word-spacing:11.050667pt;}
.ws44{word-spacing:11.061333pt;}
.ws45{word-spacing:11.152000pt;}
.ws98{word-spacing:11.610667pt;}
.ws88{word-spacing:11.701333pt;}
.ws8d{word-spacing:11.792000pt;}
.ws5d{word-spacing:11.872000pt;}
.ws8c{word-spacing:11.936000pt;}
.ws8f{word-spacing:12.048000pt;}
.ws8b{word-spacing:12.069333pt;}
.ws30{word-spacing:12.117333pt;}
.ws89{word-spacing:12.432000pt;}
.ws8a{word-spacing:12.709333pt;}
.ws8e{word-spacing:12.810667pt;}
.ws5b{word-spacing:12.960000pt;}
.ws83{word-spacing:13.301333pt;}
.ws85{word-spacing:13.349333pt;}
.ws25{word-spacing:13.968000pt;}
.ws26{word-spacing:14.096000pt;}
.ws4c{word-spacing:14.234667pt;}
.ws84{word-spacing:14.352000pt;}
.ws24{word-spacing:14.426667pt;}
.ws80{word-spacing:14.736000pt;}
.ws7f{word-spacing:15.248000pt;}
.ws4e{word-spacing:15.509333pt;}
.ws7e{word-spacing:15.861333pt;}
.ws57{word-spacing:15.888000pt;}
.ws2f{word-spacing:16.149333pt;}
.ws58{word-spacing:16.528000pt;}
.ws97{word-spacing:16.784000pt;}
.ws3f{word-spacing:17.712000pt;}
.ws33{word-spacing:17.808000pt;}
.ws34{word-spacing:17.936000pt;}
.ws78{word-spacing:17.968000pt;}
.ws77{word-spacing:18.506667pt;}
.ws31{word-spacing:19.088000pt;}
.ws50{word-spacing:19.200000pt;}
.ws3a{word-spacing:19.381333pt;}
.ws37{word-spacing:19.472000pt;}
.ws39{word-spacing:20.112000pt;}
.ws32{word-spacing:20.389333pt;}
.ws38{word-spacing:20.752000pt;}
.ws59{word-spacing:21.760000pt;}
.ws2c{word-spacing:22.176000pt;}
.ws2b{word-spacing:22.538667pt;}
.ws2a{word-spacing:22.560000pt;}
.ws29{word-spacing:22.672000pt;}
.ws79{word-spacing:23.056000pt;}
.ws81{word-spacing:23.216000pt;}
.ws2d{word-spacing:23.312000pt;}
.ws5a{word-spacing:23.680000pt;}
.ws4a{word-spacing:28.960000pt;}
.ws4b{word-spacing:29.322667pt;}
.ws53{word-spacing:30.992000pt;}
.ws52{word-spacing:31.269333pt;}
.ws54{word-spacing:31.541333pt;}
.ws5f{word-spacing:34.336000pt;}
.ws60{word-spacing:34.421333pt;}
.ws5e{word-spacing:34.832000pt;}
.ws46{word-spacing:34.944000pt;}
.ws36{word-spacing:40.320000pt;}
.ws35{word-spacing:40.480000pt;}
.ws90{word-spacing:41.754667pt;}
.ws6d{word-spacing:45.045333pt;}
.ws7d{word-spacing:45.968000pt;}
.ws6f{word-spacing:51.472000pt;}
.ws4d{word-spacing:55.520000pt;}
.ws55{word-spacing:55.589333pt;}
.ws21{word-spacing:55.864320pt;}
.ws56{word-spacing:56.608000pt;}
.ws23{word-spacing:59.018667pt;}
.ws86{word-spacing:64.160000pt;}
.ws19{word-spacing:803.252982pt;}
._1c{margin-left:-7.616853pt;}
._5{margin-left:-2.503467pt;}
._0{margin-left:-0.983040pt;}
._1{width:1.448533pt;}
._b{width:2.353067pt;}
._7{width:3.470720pt;}
._6{width:4.400000pt;}
._d{width:5.558187pt;}
._3{width:7.265707pt;}
._2{width:8.544000pt;}
._4{width:10.284587pt;}
._8{width:11.426347pt;}
._24{width:12.323840pt;}
._e{width:14.767360pt;}
._12{width:16.177707pt;}
._c{width:17.476480pt;}
._f{width:18.698240pt;}
._21{width:20.185600pt;}
._1e{width:21.455360pt;}
._25{width:22.469760pt;}
._18{width:23.472640pt;}
._10{width:24.607147pt;}
._11{width:25.669547pt;}
._9{width:26.621653pt;}
._a{width:27.535147pt;}
._1f{width:28.525440pt;}
._20{width:29.481600pt;}
._2a{width:30.413653pt;}
._14{width:31.390080pt;}
._13{width:32.633600pt;}
._2b{width:34.262400pt;}
._17{width:35.407360pt;}
._29{width:36.493440pt;}
._2e{width:37.537920pt;}
._2d{width:38.767147pt;}
._37{width:39.717824pt;}
._2c{width:40.715307pt;}
._19{width:41.780053pt;}
._1a{width:42.893440pt;}
._1b{width:43.790720pt;}
._35{width:44.683694pt;}
._16{width:46.320640pt;}
._33{width:47.822342pt;}
._34{width:49.450524pt;}
._27{width:50.464000pt;}
._26{width:51.951360pt;}
._31{width:53.123187pt;}
._30{width:54.226296pt;}
._28{width:55.829120pt;}
._32{width:56.870533pt;}
._36{width:59.219238pt;}
._23{width:61.725440pt;}
._22{width:62.734720pt;}
._3a{width:64.684720pt;}
._38{width:65.658604pt;}
._39{width:71.623396pt;}
._15{width:73.629440pt;}
._3b{width:85.576479pt;}
._3c{width:86.585547pt;}
._3d{width:139.524480pt;}
._1d{width:177.440000pt;}
._2f{width:372.504107pt;}
.fsc{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:2.080000pt;}
.y1d{bottom:2.720000pt;}
.y1c{bottom:19.360000pt;}
.y1b{bottom:34.080000pt;}
.y1a{bottom:48.640000pt;}
.y3{bottom:52.320000pt;}
.y19{bottom:63.360000pt;}
.y24e{bottom:77.765333pt;}
.y18{bottom:78.080000pt;}
.y53{bottom:80.672000pt;}
.y39{bottom:81.792000pt;}
.y1ac{bottom:84.352000pt;}
.y107{bottom:88.672000pt;}
.ya8{bottom:88.992000pt;}
.yd4{bottom:90.272000pt;}
.y24d{bottom:91.525333pt;}
.y17d{bottom:92.352000pt;}
.y156{bottom:92.672000pt;}
.y17{bottom:92.800000pt;}
.y1d8{bottom:93.217333pt;}
.y52{bottom:96.672000pt;}
.y38{bottom:97.632000pt;}
.y1ab{bottom:100.352000pt;}
.y106{bottom:104.512000pt;}
.ya7{bottom:104.832000pt;}
.y24c{bottom:105.285333pt;}
.yd3{bottom:105.632000pt;}
.y16{bottom:107.520000pt;}
.y86{bottom:108.032000pt;}
.y1d7{bottom:108.056000pt;}
.y17c{bottom:108.192000pt;}
.y51{bottom:112.512000pt;}
.y212{bottom:113.429333pt;}
.y37{bottom:113.632000pt;}
.y1aa{bottom:116.192000pt;}
.y24b{bottom:118.973333pt;}
.y135{bottom:120.352000pt;}
.y105{bottom:120.512000pt;}
.y15{bottom:122.240000pt;}
.y1d6{bottom:122.894667pt;}
.y85{bottom:124.032000pt;}
.y17b{bottom:124.192000pt;}
.yd2{bottom:127.872000pt;}
.y211{bottom:128.268000pt;}
.y36{bottom:129.472000pt;}
.ya6{bottom:130.112000pt;}
.y1a9{bottom:132.032000pt;}
.y24a{bottom:133.885333pt;}
.y50{bottom:134.746667pt;}
.y134{bottom:136.186667pt;}
.y104{bottom:136.346667pt;}
.y14{bottom:136.800000pt;}
.y1d5{bottom:137.733333pt;}
.y84{bottom:139.866667pt;}
.y17a{bottom:140.026667pt;}
.y210{bottom:143.106667pt;}
.yd1{bottom:143.866667pt;}
.y35{bottom:145.306667pt;}
.y1a8{bottom:148.026667pt;}
.y249{bottom:148.725333pt;}
.y13{bottom:151.520000pt;}
.y103{bottom:152.186667pt;}
.y1d4{bottom:152.572000pt;}
.y83{bottom:155.866667pt;}
.y179{bottom:156.026667pt;}
.y20f{bottom:157.945333pt;}
.yd0{bottom:159.706667pt;}
.y34{bottom:161.946667pt;}
.y248{bottom:163.565333pt;}
.y1a7{bottom:163.866667pt;}
.y4f{bottom:164.986667pt;}
.y12{bottom:166.240000pt;}
.y1d3{bottom:167.410667pt;}
.ya5{bottom:167.706667pt;}
.y133{bottom:168.026667pt;}
.y102{bottom:168.506667pt;}
.y82{bottom:171.706667pt;}
.y178{bottom:171.866667pt;}
.y20e{bottom:172.712000pt;}
.ycf{bottom:176.986667pt;}
.y33{bottom:177.786667pt;}
.y247{bottom:178.405333pt;}
.y1a6{bottom:179.866667pt;}
.y4e{bottom:180.826667pt;}
.y11{bottom:180.960000pt;}
.y1d2{bottom:181.650667pt;}
.ya4{bottom:183.546667pt;}
.y132{bottom:184.026667pt;}
.y101{bottom:184.346667pt;}
.y81{bottom:187.706667pt;}
.y177{bottom:187.866667pt;}
.y20d{bottom:188.072000pt;}
.yce{bottom:192.986667pt;}
.y246{bottom:193.173333pt;}
.y32{bottom:193.626667pt;}
.y1d1{bottom:193.810667pt;}
.y1a5{bottom:195.706667pt;}
.y10{bottom:195.720000pt;}
.y4d{bottom:196.666667pt;}
.ya3{bottom:199.546667pt;}
.y131{bottom:199.866667pt;}
.y100{bottom:200.346667pt;}
.y20c{bottom:202.898667pt;}
.y80{bottom:203.386667pt;}
.y176{bottom:203.706667pt;}
.y1d0{bottom:205.970667pt;}
.y245{bottom:208.213333pt;}
.ycd{bottom:208.826667pt;}
.y31{bottom:209.626667pt;}
.yf{bottom:210.440000pt;}
.y1a4{bottom:211.546667pt;}
.y4c{bottom:212.666667pt;}
.y155{bottom:215.866667pt;}
.y130{bottom:216.026667pt;}
.yff{bottom:216.186667pt;}
.y20b{bottom:217.725333pt;}
.y1cf{bottom:218.130667pt;}
.y175{bottom:219.546667pt;}
.y7f{bottom:220.026667pt;}
.y244{bottom:223.037333pt;}
.ycc{bottom:224.826667pt;}
.y30{bottom:225.466667pt;}
.ye{bottom:225.480000pt;}
.y1a3{bottom:227.546667pt;}
.y4b{bottom:228.506667pt;}
.ya2{bottom:229.946667pt;}
.y1ce{bottom:230.290667pt;}
.y154{bottom:231.706667pt;}
.y12f{bottom:232.026667pt;}
.yfe{bottom:232.186667pt;}
.y20a{bottom:232.552000pt;}
.y174{bottom:235.546667pt;}
.y7e{bottom:235.866667pt;}
.y243{bottom:237.861333pt;}
.ycb{bottom:240.666667pt;}
.y2f{bottom:241.466667pt;}
.y1cd{bottom:242.450667pt;}
.y1a2{bottom:243.386667pt;}
.ya1{bottom:244.666667pt;}
.y209{bottom:247.378667pt;}
.y153{bottom:247.706667pt;}
.yfd{bottom:247.866667pt;}
.y173{bottom:251.386667pt;}
.y7d{bottom:251.866667pt;}
.y4a{bottom:252.666667pt;}
.y242{bottom:252.685333pt;}
.y2e{bottom:257.306667pt;}
.y1a1{bottom:259.386667pt;}
.y208{bottom:262.205333pt;}
.ya0{bottom:262.746667pt;}
.y152{bottom:263.546667pt;}
.y12e{bottom:263.706667pt;}
.yfc{bottom:264.346667pt;}
.y241{bottom:267.509333pt;}
.y7c{bottom:267.706667pt;}
.y49{bottom:271.066667pt;}
.yca{bottom:271.226667pt;}
.y1cc{bottom:272.162667pt;}
.y2d{bottom:273.146667pt;}
.y1a0{bottom:275.226667pt;}
.y207{bottom:276.960000pt;}
.y12d{bottom:279.706667pt;}
.yfb{bottom:280.186667pt;}
.y240{bottom:282.261333pt;}
.y151{bottom:282.786667pt;}
.y7b{bottom:283.586667pt;}
.y9f{bottom:285.026667pt;}
.yc9{bottom:285.826667pt;}
.y1cb{bottom:287.018667pt;}
.y2c{bottom:289.186667pt;}
.y19f{bottom:291.266667pt;}
.y206{bottom:292.320000pt;}
.y12c{bottom:295.586667pt;}
.yfa{bottom:296.066667pt;}
.y23f{bottom:297.301333pt;}
.y7a{bottom:299.586667pt;}
.y9e{bottom:300.866667pt;}
.y1ca{bottom:301.874667pt;}
.y48{bottom:303.906667pt;}
.y150{bottom:304.066667pt;}
.yc8{bottom:304.386667pt;}
.y2b{bottom:305.026667pt;}
.y19e{bottom:307.106667pt;}
.y205{bottom:307.170667pt;}
.y172{bottom:308.706667pt;}
.y23e{bottom:311.568000pt;}
.y12b{bottom:311.746667pt;}
.y79{bottom:315.426667pt;}
.y1c9{bottom:316.730667pt;}
.yf9{bottom:317.506667pt;}
.y9d{bottom:318.306667pt;}
.y47{bottom:319.906667pt;}
.y2a{bottom:321.506667pt;}
.y204{bottom:322.021333pt;}
.yc7{bottom:322.466667pt;}
.y19d{bottom:322.946667pt;}
.y23d{bottom:325.834667pt;}
.y12a{bottom:327.746667pt;}
.y1c8{bottom:331.586667pt;}
.y14f{bottom:331.746667pt;}
.y171{bottom:332.706667pt;}
.y9c{bottom:334.146667pt;}
.y46{bottom:335.746667pt;}
.y203{bottom:336.872000pt;}
.y29{bottom:337.346667pt;}
.y19c{bottom:338.946667pt;}
.y23c{bottom:340.101333pt;}
.y129{bottom:343.586667pt;}
.y170{bottom:344.066667pt;}
.yc6{bottom:344.706667pt;}
.yf8{bottom:345.346667pt;}
.y9b{bottom:350.146667pt;}
.y202{bottom:351.722667pt;}
.y45{bottom:351.746667pt;}
.y28{bottom:353.346667pt;}
.y23b{bottom:354.368000pt;}
.y19b{bottom:354.786667pt;}
.y1c7{bottom:358.146667pt;}
.yc5{bottom:360.546667pt;}
.yf7{bottom:361.346667pt;}
.y14e{bottom:362.306667pt;}
.y128{bottom:362.786667pt;}
.y201{bottom:365.962667pt;}
.y9a{bottom:365.986667pt;}
.y78{bottom:366.946667pt;}
.y44{bottom:367.586667pt;}
.y23a{bottom:368.634667pt;}
.y27{bottom:369.186667pt;}
.y19a{bottom:370.786667pt;}
.yc4{bottom:376.386667pt;}
.y14d{bottom:377.026667pt;}
.yf6{bottom:377.186667pt;}
.y200{bottom:378.050667pt;}
.y127{bottom:378.626667pt;}
.y99{bottom:381.986667pt;}
.y77{bottom:382.786667pt;}
.y239{bottom:382.829333pt;}
.y43{bottom:383.426667pt;}
.y26{bottom:385.186667pt;}
.y199{bottom:386.626667pt;}
.y14c{bottom:389.186667pt;}
.y1c6{bottom:391.586667pt;}
.y1ff{bottom:392.938667pt;}
.yf5{bottom:393.026667pt;}
.yc3{bottom:393.826667pt;}
.y126{bottom:394.626667pt;}
.y238{bottom:397.416000pt;}
.y98{bottom:397.826667pt;}
.y76{bottom:398.786667pt;}
.y42{bottom:399.426667pt;}
.y25{bottom:401.026667pt;}
.y198{bottom:402.466667pt;}
.y1c5{bottom:407.426667pt;}
.y1fe{bottom:407.754667pt;}
.yf4{bottom:409.026667pt;}
.yc2{bottom:409.826667pt;}
.y125{bottom:410.466667pt;}
.y237{bottom:411.930667pt;}
.y14b{bottom:413.026667pt;}
.y97{bottom:413.666667pt;}
.y75{bottom:414.626667pt;}
.y41{bottom:415.266667pt;}
.y24{bottom:417.026667pt;}
.y197{bottom:418.466667pt;}
.y1fd{bottom:422.570667pt;}
.yf3{bottom:424.866667pt;}
.yc1{bottom:425.666667pt;}
.y236{bottom:426.445333pt;}
.y124{bottom:426.466667pt;}
.y1c4{bottom:428.066667pt;}
.y14a{bottom:428.226667pt;}
.y74{bottom:430.466667pt;}
.y40{bottom:431.266667pt;}
.y26e{bottom:431.586667pt;}
.y23{bottom:432.866667pt;}
.y196{bottom:434.306667pt;}
.y1fc{bottom:437.386667pt;}
.yf2{bottom:440.706667pt;}
.y235{bottom:440.960000pt;}
.yc0{bottom:441.666667pt;}
.y123{bottom:442.306667pt;}
.y1c3{bottom:444.066667pt;}
.y96{bottom:444.386667pt;}
.y73{bottom:446.466667pt;}
.y3f{bottom:447.106667pt;}
.y22{bottom:448.706667pt;}
.y195{bottom:450.306667pt;}
.y1fb{bottom:452.202667pt;}
.y234{bottom:455.474667pt;}
.yf1{bottom:457.026667pt;}
.ybf{bottom:457.506667pt;}
.y122{bottom:458.146667pt;}
.y95{bottom:458.946667pt;}
.y1c2{bottom:459.906667pt;}
.y26d{bottom:461.186667pt;}
.y72{bottom:462.146667pt;}
.y21{bottom:464.706667pt;}
.y194{bottom:465.986667pt;}
.y3e{bottom:466.946667pt;}
.y233{bottom:469.989333pt;}
.yf0{bottom:473.026667pt;}
.y1c1{bottom:475.906667pt;}
.y26c{bottom:476.066667pt;}
.y94{bottom:476.386667pt;}
.y121{bottom:477.346667pt;}
.y20{bottom:480.546667pt;}
.y1fa{bottom:482.466667pt;}
.y3d{bottom:483.426667pt;}
.y71{bottom:484.386667pt;}
.y232{bottom:484.504000pt;}
.y193{bottom:487.106667pt;}
.ybe{bottom:488.066667pt;}
.yef{bottom:488.866667pt;}
.y26b{bottom:490.946667pt;}
.y1c0{bottom:491.746667pt;}
.y120{bottom:493.186667pt;}
.y93{bottom:496.226667pt;}
.y1f{bottom:496.386667pt;}
.y1f9{bottom:497.297333pt;}
.y231{bottom:498.946667pt;}
.y3c{bottom:499.426667pt;}
.ybd{bottom:502.626667pt;}
.yee{bottom:504.706667pt;}
.y26a{bottom:505.693333pt;}
.y1bf{bottom:507.773333pt;}
.y11f{bottom:509.533333pt;}
.y1f8{bottom:512.128000pt;}
.y70{bottom:513.853333pt;}
.y230{bottom:514.013333pt;}
.y3b{bottom:515.293333pt;}
.y1e{bottom:520.413333pt;}
.y269{bottom:520.573333pt;}
.yed{bottom:520.733333pt;}
.y92{bottom:520.893333pt;}
.ybc{bottom:521.053333pt;}
.y1be{bottom:523.613333pt;}
.y11e{bottom:525.533333pt;}
.y16f{bottom:525.853333pt;}
.y1f7{bottom:526.958667pt;}
.y22f{bottom:528.861333pt;}
.y192{bottom:529.693333pt;}
.y6f{bottom:529.853333pt;}
.y3a{bottom:531.293333pt;}
.y268{bottom:535.453333pt;}
.yec{bottom:536.573333pt;}
.y16e{bottom:537.533333pt;}
.ybb{bottom:539.133333pt;}
.y1bd{bottom:539.453333pt;}
.y11d{bottom:541.373333pt;}
.y91{bottom:541.693333pt;}
.y1f6{bottom:541.789333pt;}
.y22e{bottom:543.709333pt;}
.yd{bottom:543.933333pt;}
.y6e{bottom:545.693333pt;}
.y267{bottom:550.173333pt;}
.yeb{bottom:552.573333pt;}
.y16d{bottom:553.533333pt;}
.y1bc{bottom:555.453333pt;}
.y1f5{bottom:556.620000pt;}
.y22d{bottom:558.557333pt;}
.y11c{bottom:560.573333pt;}
.y6d{bottom:561.533333pt;}
.y266{bottom:565.053333pt;}
.y16c{bottom:569.373333pt;}
.y1bb{bottom:571.293333pt;}
.y1f4{bottom:571.450667pt;}
.y22c{bottom:573.405333pt;}
.yea{bottom:573.853333pt;}
.y11b{bottom:576.413333pt;}
.yba{bottom:577.213333pt;}
.y6c{bottom:577.533333pt;}
.y265{bottom:579.773333pt;}
.y16b{bottom:585.213333pt;}
.y1f3{bottom:586.810667pt;}
.y1ba{bottom:587.293333pt;}
.y22b{bottom:588.181333pt;}
.y264{bottom:591.773333pt;}
.y11a{bottom:592.413333pt;}
.y6b{bottom:593.373333pt;}
.y263{bottom:595.933333pt;}
.yb9{bottom:599.133333pt;}
.y16a{bottom:601.213333pt;}
.y1f2{bottom:601.637333pt;}
.ye9{bottom:601.693333pt;}
.y22a{bottom:602.621333pt;}
.y1b9{bottom:603.133333pt;}
.y149{bottom:608.093333pt;}
.y119{bottom:608.253333pt;}
.y191{bottom:609.373333pt;}
.y6a{bottom:609.853333pt;}
.y262{bottom:610.813333pt;}
.yb8{bottom:614.973333pt;}
.y1f1{bottom:616.464000pt;}
.y229{bottom:616.989333pt;}
.y169{bottom:617.373333pt;}
.ye8{bottom:617.693333pt;}
.y1b8{bottom:619.133333pt;}
.y148{bottom:623.933333pt;}
.y190{bottom:625.213333pt;}
.y69{bottom:625.693333pt;}
.y118{bottom:628.893333pt;}
.yb7{bottom:630.973333pt;}
.y1f0{bottom:631.290667pt;}
.y228{bottom:631.357333pt;}
.y168{bottom:633.213333pt;}
.ye7{bottom:633.533333pt;}
.y1b7{bottom:634.973333pt;}
.y147{bottom:639.773333pt;}
.y261{bottom:640.413333pt;}
.y18f{bottom:641.053333pt;}
.y68{bottom:641.533333pt;}
.y117{bottom:644.893333pt;}
.y227{bottom:645.725333pt;}
.y1ef{bottom:646.810667pt;}
.yb6{bottom:646.813333pt;}
.y167{bottom:649.213333pt;}
.ye6{bottom:649.533333pt;}
.y1b6{bottom:650.813333pt;}
.y260{bottom:655.293333pt;}
.y146{bottom:656.413333pt;}
.y18e{bottom:657.053333pt;}
.y67{bottom:657.533333pt;}
.y226{bottom:660.093333pt;}
.y116{bottom:660.733333pt;}
.y1ee{bottom:661.610667pt;}
.yb5{bottom:662.813333pt;}
.y166{bottom:665.053333pt;}
.ye5{bottom:665.373333pt;}
.y1b5{bottom:666.813333pt;}
.y25f{bottom:670.173333pt;}
.y145{bottom:672.253333pt;}
.y18d{bottom:672.893333pt;}
.y66{bottom:673.373333pt;}
.y225{bottom:674.389333pt;}
.y1ed{bottom:676.410667pt;}
.y115{bottom:676.733333pt;}
.yb4{bottom:678.653333pt;}
.y165{bottom:681.053333pt;}
.ye4{bottom:681.213333pt;}
.y1b4{bottom:682.653333pt;}
.y25e{bottom:684.893333pt;}
.y144{bottom:688.093333pt;}
.y18c{bottom:688.893333pt;}
.y65{bottom:689.373333pt;}
.y224{bottom:689.429333pt;}
.y1ec{bottom:691.210667pt;}
.y114{bottom:692.573333pt;}
.yb3{bottom:694.493333pt;}
.y164{bottom:696.733333pt;}
.y1b3{bottom:698.653333pt;}
.y25d{bottom:700.093333pt;}
.y223{bottom:703.729333pt;}
.y143{bottom:704.093333pt;}
.ye3{bottom:704.413333pt;}
.y18b{bottom:704.733333pt;}
.y64{bottom:705.053333pt;}
.y1eb{bottom:706.010667pt;}
.y113{bottom:708.413333pt;}
.yb2{bottom:710.493333pt;}
.y163{bottom:713.213333pt;}
.y1b2{bottom:714.493333pt;}
.y25c{bottom:714.973333pt;}
.y222{bottom:718.029333pt;}
.y142{bottom:719.933333pt;}
.y18a{bottom:720.573333pt;}
.y1ea{bottom:720.890667pt;}
.ye2{bottom:725.213333pt;}
.y63{bottom:727.293333pt;}
.y112{bottom:727.773333pt;}
.y162{bottom:729.093333pt;}
.y25b{bottom:729.733333pt;}
.y1b1{bottom:730.373333pt;}
.yb1{bottom:732.133333pt;}
.y221{bottom:732.329333pt;}
.y1e9{bottom:736.250667pt;}
.y189{bottom:736.613333pt;}
.y141{bottom:739.173333pt;}
.ye1{bottom:741.253333pt;}
.y111{bottom:743.813333pt;}
.y25a{bottom:744.613333pt;}
.y161{bottom:744.933333pt;}
.y1b0{bottom:746.373333pt;}
.y220{bottom:746.629333pt;}
.y1e8{bottom:751.101333pt;}
.y188{bottom:752.453333pt;}
.y140{bottom:755.013333pt;}
.y62{bottom:756.773333pt;}
.ye0{bottom:757.093333pt;}
.yb0{bottom:757.573333pt;}
.y259{bottom:759.333333pt;}
.y110{bottom:759.493333pt;}
.y21f{bottom:760.929333pt;}
.y160{bottom:760.933333pt;}
.y1af{bottom:762.213333pt;}
.y1e7{bottom:765.952000pt;}
.y187{bottom:768.453333pt;}
.y61{bottom:772.613333pt;}
.y258{bottom:774.213333pt;}
.y21e{bottom:775.157333pt;}
.ydf{bottom:775.173333pt;}
.y10f{bottom:775.973333pt;}
.y13f{bottom:776.133333pt;}
.y15f{bottom:776.773333pt;}
.yaf{bottom:778.213333pt;}
.y1e6{bottom:780.802667pt;}
.y186{bottom:784.293333pt;}
.y60{bottom:788.613333pt;}
.y257{bottom:789.093333pt;}
.yc{bottom:790.693333pt;}
.yde{bottom:791.173333pt;}
.y10e{bottom:791.813333pt;}
.y15e{bottom:792.613333pt;}
.yae{bottom:794.053333pt;}
.y21d{bottom:794.517333pt;}
.y1e5{bottom:795.653333pt;}
.y90{bottom:796.453333pt;}
.y13e{bottom:803.813333pt;}
.y185{bottom:804.293333pt;}
.y5f{bottom:804.453333pt;}
.yb{bottom:805.253333pt;}
.y21c{bottom:806.677333pt;}
.ydd{bottom:807.333333pt;}
.y10d{bottom:807.653333pt;}
.y15d{bottom:808.933333pt;}
.y1e4{bottom:809.893333pt;}
.yad{bottom:810.053333pt;}
.y21b{bottom:818.837333pt;}
.y8f{bottom:819.013333pt;}
.y13d{bottom:819.493333pt;}
.ya{bottom:819.813333pt;}
.y5e{bottom:820.293333pt;}
.y1e3{bottom:822.053333pt;}
.ydc{bottom:823.493333pt;}
.y10c{bottom:823.653333pt;}
.y15c{bottom:824.773333pt;}
.y1ae{bottom:825.733333pt;}
.yac{bottom:825.893333pt;}
.y184{bottom:830.213333pt;}
.y21a{bottom:830.997333pt;}
.y256{bottom:833.893333pt;}
.y1e2{bottom:834.213333pt;}
.y9{bottom:834.853333pt;}
.y8e{bottom:835.013333pt;}
.y13c{bottom:835.813333pt;}
.ydb{bottom:839.493333pt;}
.y15b{bottom:840.773333pt;}
.y5d{bottom:841.093333pt;}
.yab{bottom:841.733333pt;}
.y219{bottom:843.085333pt;}
.y1ad{bottom:846.053333pt;}
.y183{bottom:846.213333pt;}
.y1e1{bottom:846.373333pt;}
.y255{bottom:848.613333pt;}
.y8{bottom:849.413333pt;}
.y8d{bottom:850.853333pt;}
.y13b{bottom:851.653333pt;}
.y10b{bottom:855.493333pt;}
.yda{bottom:855.653333pt;}
.y15a{bottom:856.613333pt;}
.y5c{bottom:856.933333pt;}
.y1e0{bottom:858.533333pt;}
.y182{bottom:862.053333pt;}
.y218{bottom:863.085333pt;}
.y254{bottom:863.493333pt;}
.y8c{bottom:866.693333pt;}
.yaa{bottom:867.013333pt;}
.y13a{bottom:867.493333pt;}
.y7{bottom:869.893333pt;}
.y1df{bottom:870.693333pt;}
.y10a{bottom:871.333333pt;}
.yd9{bottom:871.813333pt;}
.y159{bottom:872.453333pt;}
.y5b{bottom:872.933333pt;}
.y217{bottom:877.901333pt;}
.y181{bottom:878.053333pt;}
.y253{bottom:878.373333pt;}
.ya9{bottom:882.373333pt;}
.y8b{bottom:882.693333pt;}
.y1de{bottom:882.853333pt;}
.y139{bottom:883.493333pt;}
.y109{bottom:887.173333pt;}
.yd8{bottom:887.813333pt;}
.y158{bottom:888.453333pt;}
.y5a{bottom:888.773333pt;}
.y6{bottom:892.453333pt;}
.y216{bottom:892.717333pt;}
.y252{bottom:893.093333pt;}
.y180{bottom:893.893333pt;}
.y1dd{bottom:898.480000pt;}
.y8a{bottom:898.533333pt;}
.y138{bottom:899.333333pt;}
.yd7{bottom:903.973333pt;}
.y157{bottom:904.133333pt;}
.y59{bottom:904.613333pt;}
.y215{bottom:907.533333pt;}
.y251{bottom:908.133333pt;}
.y108{bottom:908.453333pt;}
.y17f{bottom:909.733333pt;}
.y1dc{bottom:913.206667pt;}
.y89{bottom:914.533333pt;}
.y5{bottom:914.853333pt;}
.y137{bottom:915.333333pt;}
.yd6{bottom:919.973333pt;}
.y58{bottom:920.613333pt;}
.y214{bottom:922.349333pt;}
.y250{bottom:923.013333pt;}
.y1db{bottom:927.933333pt;}
.y17e{bottom:929.413333pt;}
.y88{bottom:930.373333pt;}
.y136{bottom:931.173333pt;}
.yd5{bottom:936.133333pt;}
.y57{bottom:936.453333pt;}
.y4{bottom:937.093333pt;}
.y24f{bottom:937.733333pt;}
.y1da{bottom:942.660000pt;}
.y87{bottom:952.320000pt;}
.y56{bottom:952.480000pt;}
.y213{bottom:952.640000pt;}
.y1d9{bottom:957.314667pt;}
.y54{bottom:963.840000pt;}
.y2{bottom:968.000000pt;}
.y1{bottom:993.440000pt;}
.hf{height:15.360000pt;}
.h15{height:15.703125pt;}
.h12{height:31.406250pt;}
.h13{height:35.975313pt;}
.h5{height:36.229375pt;}
.hc{height:37.029375pt;}
.h11{height:37.090625pt;}
.h10{height:42.084375pt;}
.h6{height:46.907500pt;}
.hd{height:52.108438pt;}
.h9{height:52.134375pt;}
.he{height:52.990313pt;}
.ha{height:53.535000pt;}
.h14{height:54.598989pt;}
.h1{height:57.758750pt;}
.h2{height:57.787500pt;}
.h8{height:64.500000pt;}
.hb{height:66.625000pt;}
.h3{height:73.490625pt;}
.h4{height:96.750000pt;}
.h7{height:239.706667pt;}
.h0{height:1056.000000pt;}
.w3{width:641.853333pt;}
.w2{width:703.333333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.840000pt;}
.x1c{left:9.600000pt;}
.x2{left:47.999988pt;}
.xc{left:58.400000pt;}
.x12{left:61.279988pt;}
.x1{left:66.079988pt;}
.x29{left:71.519988pt;}
.x24{left:72.639988pt;}
.x11{left:74.559988pt;}
.xe{left:75.679988pt;}
.x1d{left:76.639988pt;}
.x10{left:78.559988pt;}
.x2e{left:79.999988pt;}
.x1e{left:83.231988pt;}
.x4{left:85.311988pt;}
.x28{left:87.711988pt;}
.xf{left:90.111988pt;}
.x27{left:91.871988pt;}
.x2a{left:93.151988pt;}
.x5{left:95.071988pt;}
.x2b{left:96.031988pt;}
.x25{left:113.471988pt;}
.x26{left:129.151988pt;}
.x3{left:152.186655pt;}
.x8{left:328.386655pt;}
.x6{left:331.106655pt;}
.x7{left:343.106655pt;}
.x9{left:364.866655pt;}
.xa{left:372.386655pt;}
.xb{left:379.426655pt;}
.x33{left:398.946655pt;}
.x21{left:403.426655pt;}
.x22{left:415.106655pt;}
.x13{left:416.706655pt;}
.x35{left:417.666655pt;}
.x3b{left:419.688000pt;}
.x16{left:421.506655pt;}
.x2c{left:423.746655pt;}
.x3a{left:426.126667pt;}
.x1a{left:428.093321pt;}
.x14{left:430.013321pt;}
.x1f{left:432.093321pt;}
.x2f{left:433.533321pt;}
.x1b{left:434.653321pt;}
.x32{left:436.253321pt;}
.x17{left:437.853321pt;}
.x23{left:439.453321pt;}
.x3c{left:441.053333pt;}
.x15{left:443.293321pt;}
.x36{left:445.053333pt;}
.x30{left:447.293321pt;}
.x2d{left:451.453321pt;}
.x34{left:456.893321pt;}
.x18{left:470.013321pt;}
.x19{left:489.213321pt;}
.x37{left:524.834667pt;}
.x38{left:536.741654pt;}
.x39{left:539.072000pt;}
.x3d{left:572.093333pt;}
.x31{left:739.333321pt;}
.x20{left:743.013321pt;}
}




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