
    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_0fccb629b11090fd7a57c4ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.078613;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_edaa02ed8349c925d9ee5689.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.078613;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_f3a5bf009fafa123623678bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_27b9344984b818d2ece70659.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_8553cb39b0d628c9d8c8a22d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_64782c7c4e9067ff59d2437c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_e3fd6326a71e8ec75bfb4ba6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_d89997dd56606ec89900ca29.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.061035;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_f7d628cd2cee55c58e74a6b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932617;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_53944124662f097ea3320718.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_fd4384e4a7df514d1bc76d72.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b9fd932ea9fc617d33d7ae31.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f37b73a0b9541f70d1aa9564.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_1222beeeb4fa903903351241.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_af965183982ec7289620d65d.woff2')format("woff");}.fff{font-family:fff;line-height:1.172852;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_5e25eac0bf4c6868f2ef0209.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172852;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_78d4bfed3ff19f2a4e1cdd14.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_294a3e258be49583545d7091.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m3{transform:matrix(0.183196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183196,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.199513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199513,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.216604,0.000000,-0.072194,0.239349,0,0);-ms-transform:matrix(0.216604,0.000000,-0.072194,0.239349,0,0);-webkit-transform:matrix(0.216604,0.000000,-0.072194,0.239349,0,0);}
.m9{transform:matrix(0.226243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226243,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.233182,0.000000,-0.077719,0.237612,0,0);-ms-transform:matrix(0.233182,0.000000,-0.077719,0.237612,0,0);-webkit-transform:matrix(0.233182,0.000000,-0.077719,0.237612,0,0);}
.m0{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.mc{transform:matrix(0.239484,0.000000,-0.079820,0.236915,0,0);-ms-transform:matrix(0.239484,0.000000,-0.079820,0.236915,0,0);-webkit-transform:matrix(0.239484,0.000000,-0.079820,0.236915,0,0);}
.m4{transform:matrix(0.245338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245338,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m8{transform:matrix(0.250225,0.000000,-0.083400,0.235679,0,0);-ms-transform:matrix(0.250225,0.000000,-0.083400,0.235679,0,0);-webkit-transform:matrix(0.250225,0.000000,-0.083400,0.235679,0,0);}
.mb{transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v5{vertical-align:-19.752729px;}
.v6{vertical-align:-16.800000px;}
.v7{vertical-align:-10.055942px;}
.v3{vertical-align:-5.940000px;}
.v1{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.600000px;}
.v4{vertical-align:9.540000px;}
.v8{vertical-align:18.000000px;}
.ls41{letter-spacing:-3.246000px;}
.ls18{letter-spacing:-2.400000px;}
.ls3c{letter-spacing:-1.800000px;}
.ls19{letter-spacing:-1.500000px;}
.ls3e{letter-spacing:-1.380000px;}
.ls12{letter-spacing:-1.320000px;}
.ls3b{letter-spacing:-1.200000px;}
.lsf{letter-spacing:-1.140000px;}
.ls43{letter-spacing:-1.080000px;}
.ls39{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.900000px;}
.ls34{letter-spacing:-0.840000px;}
.ls47{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.600000px;}
.ls40{letter-spacing:-0.516000px;}
.ls4b{letter-spacing:-0.505959px;}
.ls11{letter-spacing:-0.480000px;}
.ls42{letter-spacing:-0.414000px;}
.lsc{letter-spacing:-0.360000px;}
.ls4c{letter-spacing:-0.343200px;}
.ls3d{letter-spacing:-0.316225px;}
.lsb{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.252980px;}
.lse{letter-spacing:-0.240000px;}
.ls46{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.120000px;}
.ls61{letter-spacing:-0.060000px;}
.ls8{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000001px;}
.ls4d{letter-spacing:0.000003px;}
.ls33{letter-spacing:0.013200px;}
.ls2f{letter-spacing:0.036000px;}
.ls5c{letter-spacing:0.060000px;}
.ls25{letter-spacing:0.063245px;}
.ls49{letter-spacing:0.120000px;}
.ls3f{letter-spacing:0.135344px;}
.ls14{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.204000px;}
.ls1{letter-spacing:0.240000px;}
.ls3a{letter-spacing:0.300000px;}
.ls2d{letter-spacing:0.336000px;}
.ls28{letter-spacing:0.358800px;}
.ls54{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.366000px;}
.ls2a{letter-spacing:0.408000px;}
.ls1a{letter-spacing:0.420000px;}
.ls4a{letter-spacing:0.426000px;}
.ls62{letter-spacing:0.468000px;}
.ls2c{letter-spacing:0.480000px;}
.ls26{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.632449px;}
.ls27{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.840000px;}
.ls32{letter-spacing:0.900000px;}
.ls30{letter-spacing:1.200000px;}
.ls2e{letter-spacing:1.380000px;}
.ls16{letter-spacing:1.800000px;}
.ls29{letter-spacing:1.860000px;}
.ls5f{letter-spacing:1.884000px;}
.ls50{letter-spacing:2.340000px;}
.ls45{letter-spacing:3.000000px;}
.ls55{letter-spacing:4.284000px;}
.ls37{letter-spacing:10.982062px;}
.ls60{letter-spacing:13.320000px;}
.ls38{letter-spacing:14.246999px;}
.ls58{letter-spacing:25.320000px;}
.ls2b{letter-spacing:29.376000px;}
.ls5e{letter-spacing:31.320000px;}
.ls5b{letter-spacing:32.520000px;}
.ls5d{letter-spacing:33.720000px;}
.ls44{letter-spacing:34.920000px;}
.ls10{letter-spacing:36.120000px;}
.ls4e{letter-spacing:38.520000px;}
.ls13{letter-spacing:40.920000px;}
.ls59{letter-spacing:41.424000px;}
.ls5a{letter-spacing:44.520000px;}
.ls3{letter-spacing:48.120000px;}
.ls51{letter-spacing:49.320000px;}
.ls52{letter-spacing:50.520000px;}
.ls56{letter-spacing:51.720000px;}
.ls53{letter-spacing:52.284000px;}
.ls57{letter-spacing:56.988000px;}
.ls4f{letter-spacing:61.320000px;}
.ls15{letter-spacing:171.851004px;}
.ls48{letter-spacing:196.890000px;}
.ls23{letter-spacing:217.973342px;}
.ls20{letter-spacing:249.997466px;}
.ls22{letter-spacing:328.117856px;}
.ls36{letter-spacing:376.892485px;}
.ls35{letter-spacing:377.901647px;}
.ls1e{letter-spacing:383.089202px;}
.ls1b{letter-spacing:385.165897px;}
.ls1c{letter-spacing:394.694264px;}
.ls21{letter-spacing:406.971198px;}
.ls1d{letter-spacing:532.294840px;}
.ls1f{letter-spacing:568.770193px;}
.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;}
}
.ws16{word-spacing:-235.545768px;}
.ws23{word-spacing:-72.000000px;}
.wsd{word-spacing:-60.000000px;}
.ws24{word-spacing:-54.000000px;}
.ws25{word-spacing:-36.000000px;}
.ws12{word-spacing:-18.348214px;}
.wsb{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.500000px;}
.ws0{word-spacing:-16.443679px;}
.ws2{word-spacing:-16.356000px;}
.wsf{word-spacing:-15.811230px;}
.ws1{word-spacing:-15.558251px;}
.ws18{word-spacing:-15.540000px;}
.ws28{word-spacing:-15.420000px;}
.ws2e{word-spacing:-15.360000px;}
.ws2c{word-spacing:-15.305271px;}
.ws2b{word-spacing:-15.240000px;}
.ws31{word-spacing:-15.180000px;}
.ws2d{word-spacing:-15.000003px;}
.ws5{word-spacing:-15.000001px;}
.ws4{word-spacing:-15.000000px;}
.ws2f{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.880000px;}
.ws29{word-spacing:-14.820000px;}
.ws7{word-spacing:-14.760000px;}
.ws6{word-spacing:-14.700000px;}
.ws9{word-spacing:-14.520000px;}
.ws2a{word-spacing:-14.280000px;}
.ws30{word-spacing:-13.968000px;}
.ws27{word-spacing:-13.500000px;}
.wsc{word-spacing:-12.000000px;}
.ws10{word-spacing:-10.435412px;}
.wse{word-spacing:-9.900000px;}
.ws26{word-spacing:-9.000000px;}
.ws19{word-spacing:-1.432298px;}
.ws8{word-spacing:0.000000px;}
.ws20{word-spacing:2.606405px;}
.ws22{word-spacing:21.556089px;}
.ws11{word-spacing:28.859650px;}
.ws21{word-spacing:33.157706px;}
.ws17{word-spacing:33.387609px;}
.ws1a{word-spacing:37.068868px;}
.ws13{word-spacing:64.335516px;}
.ws1d{word-spacing:67.174790px;}
.ws14{word-spacing:123.446782px;}
.ws1b{word-spacing:143.158215px;}
.ws1c{word-spacing:150.248091px;}
.ws15{word-spacing:155.031086px;}
.ws1f{word-spacing:223.612298px;}
.ws1e{word-spacing:228.297652px;}
._1b{margin-left:-522.640435px;}
._15{margin-left:-15.343011px;}
._3c{margin-left:-13.200000px;}
._3d{margin-left:-9.420000px;}
._13{margin-left:-6.703011px;}
._14{margin-left:-4.762796px;}
._10{margin-left:-3.056021px;}
._8{margin-left:-2.040000px;}
._0{margin-left:-1.011919px;}
._1{width:1.423011px;}
._3{width:3.254664px;}
._6{width:4.851919px;}
._4{width:6.000000px;}
._5{width:7.034664px;}
._7{width:8.416989px;}
._9{width:9.783400px;}
._b{width:11.116989px;}
._c{width:12.139221px;}
._d{width:13.420779px;}
._a{width:16.620000px;}
._11{width:17.940000px;}
._16{width:19.117957px;}
._f{width:20.493979px;}
._e{width:22.380000px;}
._3e{width:24.360000px;}
._3f{width:25.417957px;}
._40{width:26.481919px;}
._45{width:41.656989px;}
._1c{width:43.157878px;}
._46{width:46.677096px;}
._42{width:52.456989px;}
._43{width:54.283011px;}
._44{width:55.666989px;}
._38{width:72.474294px;}
._25{width:80.881291px;}
._22{width:82.039693px;}
._3a{width:86.439202px;}
._1f{width:89.661873px;}
._1d{width:101.428042px;}
._41{width:146.096470px;}
._2e{width:149.816551px;}
._23{width:153.364166px;}
._39{width:155.189520px;}
._2a{width:157.229520px;}
._37{width:158.770266px;}
._12{width:160.010352px;}
._17{width:163.805047px;}
._3b{width:165.069946px;}
._2{width:166.112784px;}
._24{width:169.499052px;}
._20{width:173.925803px;}
._2c{width:177.533374px;}
._36{width:181.615424px;}
._21{width:244.836561px;}
._18{width:249.026879px;}
._26{width:253.648692px;}
._19{width:277.938741px;}
._32{width:281.952513px;}
._2f{width:293.665898px;}
._2b{width:317.110843px;}
._29{width:318.899365px;}
._35{width:326.172938px;}
._34{width:327.207226px;}
._1a{width:343.184989px;}
._28{width:379.500807px;}
._30{width:398.330661px;}
._2d{width:416.225885px;}
._27{width:502.167317px;}
._31{width:508.814331px;}
._33{width:531.107547px;}
._1e{width:1632.175523px;}
.fc5{color:transparent;}
.fc4{color:rgb(15,17,21);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,175,79);}
.fc0{color:rgb(0,0,204);}
.fs19{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fsf{font-size:40.558550px;}
.fs14{font-size:41.371504px;}
.fs7{font-size:41.741648px;}
.fs9{font-size:42.861769px;}
.fsb{font-size:45.096291px;}
.fs5{font-size:48.000000px;}
.fs18{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:63.244921px;}
.fs2{font-size:66.000000px;}
.fs10{font-size:70.289703px;}
.fs15{font-size:71.614915px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:73.392855px;}
.fs11{font-size:74.560938px;}
.fs16{font-size:75.570226px;}
.fsc{font-size:77.219061px;}
.fs12{font-size:78.345201px;}
.fs13{font-size:81.831508px;}
.fs1{font-size:84.000000px;}
.fse{font-size:92.081336px;}
.fs8{font-size:97.024426px;}
.fs17{font-size:107.422372px;}
.fsd{font-size:110.089282px;}
.y0{bottom:0.000000px;}
.y1b9{bottom:3.000000px;}
.y191{bottom:3.285000px;}
.y86{bottom:3.300000px;}
.y95{bottom:3.315000px;}
.y206{bottom:3.345000px;}
.y1ac{bottom:3.600000px;}
.y194{bottom:3.885000px;}
.y1ab{bottom:3.900000px;}
.y15b{bottom:4.200000px;}
.y15f{bottom:4.485000px;}
.y190{bottom:5.385000px;}
.y108{bottom:5.391625px;}
.y7c{bottom:5.400000px;}
.yda{bottom:5.400493px;}
.y15d{bottom:5.415000px;}
.y8e{bottom:5.445000px;}
.yd9{bottom:6.943504px;}
.ycd{bottom:7.237453px;}
.ye7{bottom:8.010992px;}
.ydf{bottom:8.847933px;}
.ye2{bottom:10.116974px;}
.y9a{bottom:10.500000px;}
.ya0{bottom:10.545000px;}
.y83{bottom:11.400000px;}
.y1e8{bottom:11.445000px;}
.y92{bottom:11.700000px;}
.ya6{bottom:11.745000px;}
.y158{bottom:13.500000px;}
.ye6{bottom:13.542342px;}
.yd2{bottom:14.034036px;}
.y7d{bottom:14.700000px;}
.y8f{bottom:14.745000px;}
.ye1{bottom:15.055156px;}
.y107{bottom:17.746447px;}
.y111{bottom:17.746451px;}
.y11d{bottom:18.280708px;}
.y8a{bottom:18.600000px;}
.y204{bottom:18.630000px;}
.yd8{bottom:19.397262px;}
.y208{bottom:19.785000px;}
.y80{bottom:19.800000px;}
.y94{bottom:19.815000px;}
.y1ff{bottom:19.830000px;}
.ya3{bottom:19.845000px;}
.yd0{bottom:19.985152px;}
.ydb{bottom:20.536397px;}
.ye0{bottom:20.645605px;}
.yd7{bottom:20.904398px;}
.y156{bottom:21.900000px;}
.y117{bottom:22.387112px;}
.y11a{bottom:22.387116px;}
.y10b{bottom:22.387117px;}
.y114{bottom:22.387122px;}
.yca{bottom:23.402526px;}
.y157{bottom:23.700000px;}
.y8d{bottom:23.745000px;}
.y7b{bottom:24.000000px;}
.yce{bottom:24.724895px;}
.yd3{bottom:24.724900px;}
.yd6{bottom:24.724903px;}
.yd1{bottom:24.724910px;}
.y1{bottom:26.437500px;}
.y82{bottom:27.900000px;}
.y96{bottom:28.200000px;}
.ya5{bottom:28.245000px;}
.y99{bottom:29.100000px;}
.y9f{bottom:29.145000px;}
.y91{bottom:30.315000px;}
.yd5{bottom:36.224602px;}
.y85{bottom:36.300000px;}
.y93{bottom:36.315000px;}
.ya2{bottom:36.345000px;}
.y89{bottom:37.200000px;}
.yd4{bottom:37.766858px;}
.y7f{bottom:38.400000px;}
.y110{bottom:41.383106px;}
.ycc{bottom:43.460968px;}
.ycf{bottom:43.460975px;}
.y81{bottom:44.400000px;}
.ya4{bottom:44.745000px;}
.y9c{bottom:47.400000px;}
.y98{bottom:47.700000px;}
.y9e{bottom:47.745000px;}
.ycb{bottom:50.220912px;}
.y84{bottom:52.800000px;}
.ya1{bottom:52.845000px;}
.y88{bottom:55.800000px;}
.y145{bottom:56.437500px;}
.y106{bottom:60.485957px;}
.y232{bottom:61.837500px;}
.y1f4{bottom:65.437500px;}
.y43{bottom:68.137500px;}
.y8b{bottom:68.992500px;}
.yec{bottom:69.937500px;}
.y105{bottom:72.839295px;}
.y10f{bottom:72.839299px;}
.y11c{bottom:73.339422px;}
.y144{bottom:73.837500px;}
.y261{bottom:75.637500px;}
.y11e{bottom:77.445802px;}
.y116{bottom:77.445827px;}
.y119{bottom:77.445830px;}
.y10a{bottom:77.445832px;}
.y113{bottom:77.445836px;}
.y231{bottom:78.337500px;}
.y1f3{bottom:81.937500px;}
.y42{bottom:84.637500px;}
.y104{bottom:85.479027px;}
.yeb{bottom:88.537500px;}
.y87{bottom:90.037500px;}
.y143{bottom:90.937500px;}
.y260{bottom:92.137500px;}
.y230{bottom:94.837500px;}
.y10e{bottom:96.477439px;}
.y1f2{bottom:98.437500px;}
.y41{bottom:101.137500px;}
.yea{bottom:107.137500px;}
.y142{bottom:108.337500px;}
.y25f{bottom:108.637500px;}
.y22f{bottom:111.337500px;}
.y1f1{bottom:114.937500px;}
.y103{bottom:115.544672px;}
.y40{bottom:117.637500px;}
.ye5{bottom:120.450000px;}
.y25e{bottom:125.137500px;}
.ye8{bottom:125.437500px;}
.y1bd{bottom:125.737500px;}
.ye9{bottom:126.937500px;}
.ye4{bottom:127.837500px;}
.y102{bottom:127.933627px;}
.y10d{bottom:127.933632px;}
.y11b{bottom:128.433755px;}
.y1bc{bottom:131.137500px;}
.y1f0{bottom:131.437500px;}
.y115{bottom:132.540159px;}
.y118{bottom:132.540163px;}
.y109{bottom:132.540164px;}
.y112{bottom:132.540169px;}
.y3f{bottom:134.137500px;}
.y25d{bottom:141.337500px;}
.y141{bottom:142.837500px;}
.y22e{bottom:144.337500px;}
.y1bb{bottom:144.637500px;}
.y1ef{bottom:147.937500px;}
.y3e{bottom:150.330000px;}
.yde{bottom:151.350000px;}
.y10c{bottom:151.537637px;}
.y25c{bottom:157.830000px;}
.y140{bottom:159.930000px;}
.y22d{bottom:160.830000px;}
.ye3{bottom:161.730000px;}
.y1ee{bottom:164.430000px;}
.y3d{bottom:166.830000px;}
.y25b{bottom:174.375000px;}
.y13f{bottom:177.375000px;}
.y1ed{bottom:180.975000px;}
.y13e{bottom:182.775000px;}
.y3c{bottom:183.375000px;}
.ydd{bottom:186.675000px;}
.y1ba{bottom:190.875000px;}
.y184{bottom:192.375000px;}
.y22c{bottom:193.875000px;}
.y13d{bottom:195.375000px;}
.y7e{bottom:195.675000px;}
.y1ec{bottom:197.475000px;}
.y3b{bottom:199.875000px;}
.ydc{bottom:203.175000px;}
.y1b8{bottom:204.975000px;}
.y25a{bottom:207.375000px;}
.y22b{bottom:210.375000px;}
.y183{bottom:210.675000px;}
.y13c{bottom:211.275000px;}
.y1eb{bottom:216.075000px;}
.y3a{bottom:216.375000px;}
.yc9{bottom:216.449980px;}
.y1b7{bottom:221.175000px;}
.y259{bottom:223.875000px;}
.y22a{bottom:226.875000px;}
.y182{bottom:227.175000px;}
.y13b{bottom:227.475000px;}
.y39{bottom:232.875000px;}
.y1ea{bottom:234.675000px;}
.y1b6{bottom:237.675000px;}
.yc8{bottom:240.375000px;}
.y229{bottom:243.375000px;}
.y181{bottom:243.675000px;}
.y13a{bottom:246.375000px;}
.y1e9{bottom:248.475000px;}
.y38{bottom:249.375000px;}
.y1b5{bottom:254.175000px;}
.y258{bottom:256.875000px;}
.y228{bottom:259.875000px;}
.y180{bottom:260.175000px;}
.y37{bottom:265.875000px;}
.y139{bottom:267.375000px;}
.y1b4{bottom:270.675000px;}
.y257{bottom:273.375000px;}
.y227{bottom:276.375000px;}
.y17f{bottom:276.675000px;}
.yc7{bottom:280.875000px;}
.y36{bottom:282.375000px;}
.y138{bottom:283.875000px;}
.y7a{bottom:284.775000px;}
.y1b3{bottom:288.075000px;}
.y256{bottom:289.875000px;}
.y226{bottom:292.875000px;}
.y17e{bottom:293.175000px;}
.yc6{bottom:297.375000px;}
.y35{bottom:298.875000px;}
.y137{bottom:300.375000px;}
.y255{bottom:306.375000px;}
.y225{bottom:309.375000px;}
.y17d{bottom:309.675000px;}
.y1b2{bottom:312.675000px;}
.yc5{bottom:313.875000px;}
.y34{bottom:315.375000px;}
.y135{bottom:316.875000px;}
.y136{bottom:321.375000px;}
.y254{bottom:322.875000px;}
.y224{bottom:325.875000px;}
.y17c{bottom:326.175000px;}
.y1b1{bottom:329.175000px;}
.yc4{bottom:330.375000px;}
.y33{bottom:331.875000px;}
.y134{bottom:333.375000px;}
.y79{bottom:337.275000px;}
.y253{bottom:339.405000px;}
.y223{bottom:342.420000px;}
.y17b{bottom:342.705000px;}
.y1b0{bottom:345.705000px;}
.yc3{bottom:346.620000px;}
.y32{bottom:348.420000px;}
.yc2{bottom:349.005000px;}
.y133{bottom:351.105000px;}
.y132{bottom:352.005000px;}
.y78{bottom:353.820000px;}
.y252{bottom:355.920000px;}
.y222{bottom:358.920000px;}
.y17a{bottom:361.305000px;}
.y1af{bottom:362.220000px;}
.y31{bottom:364.905000px;}
.yc1{bottom:368.505000px;}
.y77{bottom:370.320000px;}
.y251{bottom:372.420000px;}
.y179{bottom:375.105000px;}
.y221{bottom:375.420000px;}
.y1ae{bottom:380.820000px;}
.y30{bottom:381.405000px;}
.y1e6{bottom:382.005000px;}
.y1e7{bottom:382.020000px;}
.y131{bottom:384.405000px;}
.y76{bottom:386.820000px;}
.yc0{bottom:387.120000px;}
.y250{bottom:388.920000px;}
.y178{bottom:391.605000px;}
.y1ad{bottom:394.605000px;}
.y2f{bottom:397.905000px;}
.y75{bottom:403.320000px;}
.ybf{bottom:403.605000px;}
.y24f{bottom:405.405000px;}
.y177{bottom:408.105000px;}
.y220{bottom:408.120000px;}
.y130{bottom:409.320000px;}
.y1aa{bottom:411.105000px;}
.y2e{bottom:414.405000px;}
.y1e4{bottom:415.005000px;}
.y1e5{bottom:415.020000px;}
.y74{bottom:419.820000px;}
.y24e{bottom:421.905000px;}
.ybe{bottom:422.205000px;}
.y176{bottom:424.605000px;}
.y21f{bottom:424.620000px;}
.y12f{bottom:428.205000px;}
.y1a9{bottom:428.820000px;}
.y2d{bottom:430.920000px;}
.y73{bottom:436.320000px;}
.ybd{bottom:438.405000px;}
.y175{bottom:441.105000px;}
.y21e{bottom:441.120000px;}
.y12e{bottom:444.705000px;}
.y1a8{bottom:445.320000px;}
.y1e2{bottom:448.005000px;}
.y1e3{bottom:448.020000px;}
.y2c{bottom:449.505000px;}
.y72{bottom:452.820000px;}
.y24d{bottom:454.905000px;}
.ybc{bottom:457.005000px;}
.y21d{bottom:457.605000px;}
.y174{bottom:458.505000px;}
.y12d{bottom:461.205000px;}
.y1a7{bottom:461.820000px;}
.y2b{bottom:468.120000px;}
.y71{bottom:469.320000px;}
.y24c{bottom:471.420000px;}
.ybb{bottom:473.820000px;}
.y21c{bottom:474.405000px;}
.y1a6{bottom:478.320000px;}
.y12c{bottom:480.405000px;}
.y173{bottom:481.005000px;}
.y1e1{bottom:481.020000px;}
.y12a{bottom:482.820000px;}
.y2a{bottom:484.320000px;}
.y70{bottom:485.820000px;}
.y12b{bottom:486.105000px;}
.y24b{bottom:487.905000px;}
.y21b{bottom:491.505000px;}
.y1a5{bottom:494.805000px;}
.yba{bottom:496.005000px;}
.y172{bottom:497.505000px;}
.y29{bottom:500.820000px;}
.y6f{bottom:502.305000px;}
.y129{bottom:502.905000px;}
.y24a{bottom:504.405000px;}
.y21a{bottom:508.050000px;}
.y1a4{bottom:511.350000px;}
.y171{bottom:514.050000px;}
.yb9{bottom:514.950000px;}
.y28{bottom:517.350000px;}
.y6e{bottom:518.850000px;}
.y249{bottom:520.650000px;}
.y128{bottom:524.550000px;}
.y1a3{bottom:528.450000px;}
.y170{bottom:530.550000px;}
.yb8{bottom:531.450000px;}
.y27{bottom:533.850000px;}
.y6d{bottom:535.350000px;}
.y248{bottom:537.150000px;}
.y219{bottom:541.050000px;}
.y127{bottom:543.450000px;}
.y16f{bottom:547.050000px;}
.y1e0{bottom:547.650000px;}
.yb7{bottom:547.950000px;}
.y26{bottom:550.350000px;}
.y6c{bottom:551.550000px;}
.y1a2{bottom:553.050000px;}
.y247{bottom:553.650000px;}
.y218{bottom:557.550000px;}
.y126{bottom:559.950000px;}
.y16e{bottom:563.550000px;}
.yb6{bottom:564.450000px;}
.y25{bottom:566.850000px;}
.y6b{bottom:568.050000px;}
.y1a1{bottom:569.550000px;}
.y246{bottom:570.150000px;}
.y217{bottom:574.050000px;}
.y125{bottom:576.450000px;}
.yb5{bottom:580.950000px;}
.y16d{bottom:582.150000px;}
.y24{bottom:583.350000px;}
.y6a{bottom:584.550000px;}
.y1a0{bottom:586.050000px;}
.y245{bottom:586.650000px;}
.y216{bottom:590.250000px;}
.y1df{bottom:590.850000px;}
.y124{bottom:592.950000px;}
.y16c{bottom:595.950000px;}
.yb4{bottom:597.450000px;}
.y23{bottom:599.850000px;}
.y69{bottom:601.050000px;}
.y19f{bottom:602.550000px;}
.y244{bottom:603.150000px;}
.y215{bottom:606.750000px;}
.y1de{bottom:607.350000px;}
.y123{bottom:609.450000px;}
.y16b{bottom:612.450000px;}
.yb3{bottom:616.050000px;}
.y22{bottom:616.350000px;}
.y68{bottom:617.550000px;}
.y19e{bottom:619.050000px;}
.y243{bottom:619.650000px;}
.y214{bottom:623.250000px;}
.y1dd{bottom:623.850000px;}
.y122{bottom:625.650000px;}
.y16a{bottom:628.950000px;}
.y67{bottom:634.050000px;}
.yb2{bottom:634.650000px;}
.y21{bottom:634.950000px;}
.y19d{bottom:635.550000px;}
.y242{bottom:636.150000px;}
.y213{bottom:639.750000px;}
.y1dc{bottom:640.350000px;}
.y121{bottom:642.450000px;}
.y169{bottom:645.450000px;}
.y66{bottom:650.550000px;}
.yb1{bottom:651.150000px;}
.y19c{bottom:652.050000px;}
.y241{bottom:652.650000px;}
.y20{bottom:653.550000px;}
.y212{bottom:656.250000px;}
.y1db{bottom:656.850000px;}
.y120{bottom:660.150000px;}
.y168{bottom:661.950000px;}
.yb0{bottom:667.650000px;}
.y19b{bottom:668.550000px;}
.y65{bottom:669.150000px;}
.y1f{bottom:670.050000px;}
.y211{bottom:672.750000px;}
.y1da{bottom:673.350000px;}
.y101{bottom:674.249959px;}
.y167{bottom:679.380000px;}
.yaf{bottom:684.180000px;}
.y19a{bottom:685.095000px;}
.y64{bottom:685.695000px;}
.y1e{bottom:686.595000px;}
.y210{bottom:689.280000px;}
.y1d9{bottom:689.880000px;}
.yae{bottom:700.695000px;}
.y198{bottom:701.580000px;}
.y166{bottom:701.880000px;}
.y63{bottom:702.195000px;}
.y1d{bottom:703.080000px;}
.y199{bottom:706.080000px;}
.y1d8{bottom:706.380000px;}
.y20f{bottom:707.880000px;}
.yad{bottom:717.195000px;}
.y197{bottom:718.080000px;}
.y165{bottom:718.380000px;}
.y62{bottom:718.695000px;}
.y1c{bottom:719.580000px;}
.y1d7{bottom:722.880000px;}
.y20e{bottom:726.480000px;}
.yac{bottom:733.695000px;}
.y196{bottom:734.580000px;}
.y164{bottom:734.880000px;}
.y61{bottom:735.180000px;}
.y1b{bottom:736.080000px;}
.y1d6{bottom:739.380000px;}
.y20d{bottom:745.080000px;}
.yab{bottom:750.180000px;}
.y163{bottom:751.380000px;}
.y60{bottom:751.680000px;}
.y11f{bottom:752.280000px;}
.y1a{bottom:752.595000px;}
.y195{bottom:753.195000px;}
.y1d5{bottom:755.880000px;}
.y20c{bottom:758.880000px;}
.yaa{bottom:766.695000px;}
.y193{bottom:766.995000px;}
.y162{bottom:767.880000px;}
.y5f{bottom:768.195000px;}
.y19{bottom:769.080000px;}
.y240{bottom:770.295000px;}
.y1d4{bottom:772.380000px;}
.y20b{bottom:776.280000px;}
.y20a{bottom:776.295000px;}
.ya9{bottom:782.880000px;}
.y161{bottom:784.380000px;}
.y5e{bottom:784.695000px;}
.y192{bottom:785.295000px;}
.y18{bottom:785.580000px;}
.y23f{bottom:786.795000px;}
.y1d3{bottom:788.880000px;}
.ya8{bottom:799.380000px;}
.y5d{bottom:801.195000px;}
.y17{bottom:801.795000px;}
.y160{bottom:802.995000px;}
.y23e{bottom:803.295000px;}
.y1d2{bottom:805.380000px;}
.y209{bottom:809.280000px;}
.y207{bottom:809.295000px;}
.ya7{bottom:815.880000px;}
.y15e{bottom:816.795000px;}
.y5c{bottom:817.695000px;}
.y16{bottom:818.295000px;}
.y18f{bottom:819.195000px;}
.y23d{bottom:819.780000px;}
.y1d1{bottom:821.880000px;}
.y5b{bottom:834.195000px;}
.y15c{bottom:835.380000px;}
.y23c{bottom:836.295000px;}
.y15{bottom:836.880000px;}
.y1d0{bottom:838.380000px;}
.y100{bottom:840.195000px;}
.y9d{bottom:841.080000px;}
.y205{bottom:842.280000px;}
.y203{bottom:842.295000px;}
.y18e{bottom:843.795000px;}
.y5a{bottom:850.725000px;}
.y23b{bottom:852.825000px;}
.y15a{bottom:854.025000px;}
.y1cf{bottom:854.925000px;}
.yff{bottom:856.725000px;}
.y14{bottom:859.425000px;}
.y18d{bottom:860.325000px;}
.y59{bottom:867.225000px;}
.y23a{bottom:869.025000px;}
.y1ce{bottom:871.425000px;}
.y159{bottom:872.625000px;}
.yfd{bottom:873.225000px;}
.y13{bottom:875.925000px;}
.y18c{bottom:876.825000px;}
.yfe{bottom:877.725000px;}
.y58{bottom:883.725000px;}
.y239{bottom:885.525000px;}
.y1cd{bottom:887.625000px;}
.yfc{bottom:889.725000px;}
.y18b{bottom:893.325000px;}
.y12{bottom:894.525000px;}
.y57{bottom:899.925000px;}
.y238{bottom:902.025000px;}
.y1cc{bottom:904.125000px;}
.y155{bottom:905.625000px;}
.yfb{bottom:906.225000px;}
.y202{bottom:908.925000px;}
.y18a{bottom:909.825000px;}
.y11{bottom:911.925000px;}
.y56{bottom:916.425000px;}
.y237{bottom:918.525000px;}
.y1cb{bottom:920.625000px;}
.yfa{bottom:922.725000px;}
.y189{bottom:926.325000px;}
.y9b{bottom:930.525000px;}
.y10{bottom:932.325000px;}
.y55{bottom:932.925000px;}
.y236{bottom:935.025000px;}
.y1ca{bottom:937.125000px;}
.yf9{bottom:939.225000px;}
.y201{bottom:941.925000px;}
.y154{bottom:943.425000px;}
.y188{bottom:944.925000px;}
.y54{bottom:949.425000px;}
.y235{bottom:951.525000px;}
.y1c9{bottom:953.625000px;}
.yf8{bottom:955.725000px;}
.y187{bottom:963.525000px;}
.yf{bottom:964.425000px;}
.y53{bottom:965.925000px;}
.y153{bottom:968.025000px;}
.y1c8{bottom:970.125000px;}
.yf7{bottom:974.325000px;}
.y200{bottom:974.925000px;}
.ye{bottom:980.925000px;}
.y186{bottom:981.825000px;}
.y52{bottom:982.425000px;}
.y152{bottom:984.525000px;}
.y1c7{bottom:986.625000px;}
.yf6{bottom:992.625000px;}
.y185{bottom:995.025000px;}
.yd{bottom:997.425000px;}
.y51{bottom:998.925000px;}
.y151{bottom:1001.025000px;}
.y1c6{bottom:1003.125000px;}
.y1fe{bottom:1007.925000px;}
.yf5{bottom:1009.125000px;}
.yc{bottom:1013.925000px;}
.y50{bottom:1015.455000px;}
.y150{bottom:1017.570000px;}
.y97{bottom:1019.655000px;}
.y1c5{bottom:1021.755000px;}
.yf4{bottom:1027.755000px;}
.yb{bottom:1030.455000px;}
.y4f{bottom:1031.955000px;}
.y14f{bottom:1034.070000px;}
.y234{bottom:1036.170000px;}
.y1c4{bottom:1040.355000px;}
.y1fd{bottom:1040.955000px;}
.yf3{bottom:1044.255000px;}
.y4e{bottom:1048.455000px;}
.ya{bottom:1049.070000px;}
.y14e{bottom:1050.570000px;}
.y233{bottom:1052.670000px;}
.y1c3{bottom:1054.155000px;}
.yf2{bottom:1060.755000px;}
.y4d{bottom:1064.955000px;}
.y9{bottom:1068.255000px;}
.y14d{bottom:1069.170000px;}
.y1c2{bottom:1071.870000px;}
.y1fc{bottom:1074.555000px;}
.yf1{bottom:1079.355000px;}
.y4c{bottom:1081.455000px;}
.y14c{bottom:1085.655000px;}
.y8{bottom:1087.755000px;}
.y1c1{bottom:1089.255000px;}
.yf0{bottom:1095.855000px;}
.y4b{bottom:1097.955000px;}
.y1fb{bottom:1099.155000px;}
.y14b{bottom:1102.170000px;}
.y7{bottom:1108.170000px;}
.y1c0{bottom:1108.455000px;}
.y90{bottom:1108.755000px;}
.yef{bottom:1112.370000px;}
.y4a{bottom:1114.455000px;}
.y1fa{bottom:1115.670000px;}
.y14a{bottom:1118.670000px;}
.y1bf{bottom:1126.155000px;}
.y6{bottom:1128.570000px;}
.y49{bottom:1130.955000px;}
.y1f9{bottom:1132.170000px;}
.y149{bottom:1135.170000px;}
.y1be{bottom:1143.255000px;}
.y48{bottom:1147.455000px;}
.y1f8{bottom:1148.670000px;}
.y5{bottom:1148.955000px;}
.y148{bottom:1151.655000px;}
.y47{bottom:1163.955000px;}
.y1f7{bottom:1165.155000px;}
.yee{bottom:1166.070000px;}
.y147{bottom:1168.155000px;}
.y4{bottom:1169.370000px;}
.y8c{bottom:1181.655000px;}
.y46{bottom:1182.570000px;}
.y1f6{bottom:1183.800000px;}
.y146{bottom:1184.700000px;}
.y3{bottom:1189.800000px;}
.y45{bottom:1199.100000px;}
.y1f5{bottom:1200.600000px;}
.yed{bottom:1201.200000px;}
.y2{bottom:1211.700000px;}
.y44{bottom:1217.400000px;}
.h4b{height:16.200000px;}
.h47{height:16.485000px;}
.h45{height:16.500000px;}
.h46{height:16.537500px;}
.h4a{height:17.700000px;}
.h48{height:18.285000px;}
.h44{height:18.585000px;}
.h40{height:18.600000px;}
.h43{height:18.637500px;}
.h26{height:30.899200px;}
.h1f{height:32.100181px;}
.h4e{height:32.985000px;}
.h42{height:33.000000px;}
.h4d{height:33.022500px;}
.h4c{height:33.037500px;}
.h2c{height:34.746680px;}
.h29{height:36.055163px;}
.h49{height:36.625850px;}
.h41{height:36.900000px;}
.he{height:36.937500px;}
.hb{height:37.200000px;}
.h24{height:37.568149px;}
.h33{height:38.321164px;}
.h39{height:39.387305px;}
.h1c{height:39.701551px;}
.h21{height:39.805999px;}
.h30{height:40.583668px;}
.h2e{height:40.603869px;}
.h1a{height:41.771321px;}
.h18{height:42.045554px;}
.h16{height:42.066482px;}
.h3d{height:43.388672px;}
.h3e{height:43.447266px;}
.h3b{height:45.509766px;}
.hf{height:49.500000px;}
.h22{height:50.829615px;}
.h7{height:51.826172px;}
.h8{height:52.646484px;}
.h3c{height:52.998047px;}
.h2{height:54.629036px;}
.h12{height:55.493712px;}
.h51{height:55.503491px;}
.h2a{height:56.246484px;}
.h27{height:56.654904px;}
.h5{height:57.008789px;}
.h6{height:57.911133px;}
.h11{height:58.429688px;}
.h3f{height:58.886719px;}
.h3a{height:59.677734px;}
.h37{height:60.679688px;}
.h14{height:61.500741px;}
.h4f{height:61.670545px;}
.h4{height:62.191406px;}
.ha{height:62.460938px;}
.h9{height:63.175781px;}
.h13{height:64.684978px;}
.h25{height:65.107211px;}
.h38{height:65.645508px;}
.hc{height:66.000000px;}
.h10{height:66.037500px;}
.h34{height:66.334714px;}
.h1d{height:67.981565px;}
.h23{height:69.063525px;}
.h32{height:69.998398px;}
.h31{height:70.251154px;}
.h2f{height:70.286122px;}
.h50{height:70.664062px;}
.h1b{height:71.525663px;}
.h19{height:71.995237px;}
.h17{height:72.031073px;}
.h3{height:72.556641px;}
.h36{height:73.608847px;}
.h28{height:75.798032px;}
.hd{height:82.237500px;}
.h20{height:85.292136px;}
.h15{height:89.870769px;}
.h35{height:99.502070px;}
.h1e{height:101.972348px;}
.h2d{height:162.608757px;}
.h2b{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wa{width:18.000563px;}
.w12{width:75.637500px;}
.we{width:78.037500px;}
.w11{width:79.800000px;}
.w20{width:84.037500px;}
.w18{width:85.537500px;}
.w2{width:87.900000px;}
.w14{width:96.337500px;}
.w1f{width:104.437500px;}
.w15{width:105.300000px;}
.w13{width:105.337500px;}
.w16{width:105.637500px;}
.w1c{width:116.737500px;}
.w17{width:122.737500px;}
.w19{width:129.337500px;}
.w1a{width:129.637500px;}
.w22{width:137.437500px;}
.w9{width:140.097074px;}
.w5{width:142.575000px;}
.w2c{width:147.075000px;}
.w2d{width:147.337500px;}
.w4{width:159.930000px;}
.w24{width:162.675000px;}
.w1b{width:167.730000px;}
.wf{width:171.930000px;}
.w6{width:179.145000px;}
.w7{width:179.430000px;}
.w27{width:181.545000px;}
.w29{width:185.730000px;}
.w28{width:186.075000px;}
.w23{width:200.445000px;}
.w3{width:201.060000px;}
.wd{width:202.245000px;}
.w2b{width:213.945000px;}
.w2a{width:222.960000px;}
.w2f{width:267.960000px;}
.w2e{width:267.975000px;}
.w25{width:275.775000px;}
.w1e{width:287.475000px;}
.w21{width:300.675000px;}
.w8{width:310.505749px;}
.w10{width:324.105000px;}
.w31{width:355.005000px;}
.w32{width:355.020000px;}
.w1d{width:362.505000px;}
.w30{width:421.320000px;}
.wc{width:545.110976px;}
.w26{width:776.325000px;}
.wb{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:3.000000px;}
.x12{left:5.700000px;}
.x11{left:7.200000px;}
.x23{left:8.700000px;}
.x24{left:9.900000px;}
.x1b{left:12.300000px;}
.x91{left:13.485000px;}
.x2f{left:16.200000px;}
.x20{left:18.300000px;}
.x83{left:19.530000px;}
.x1f{left:20.685000px;}
.x27{left:21.945000px;}
.x2b{left:23.400000px;}
.x1c{left:24.930000px;}
.x22{left:26.700000px;}
.x31{left:28.485000px;}
.x2a{left:29.700000px;}
.x21{left:31.230000px;}
.x30{left:32.700000px;}
.x2e{left:33.900000px;}
.x4a{left:35.183467px;}
.x1e{left:36.300000px;}
.x28{left:37.800000px;}
.x18{left:39.045000px;}
.x7e{left:40.500000px;}
.x29{left:42.345000px;}
.x16{left:44.100000px;}
.x99{left:45.285000px;}
.x26{left:47.145000px;}
.x84{left:48.600000px;}
.x14{left:50.130000px;}
.x7c{left:51.600000px;}
.x1d{left:53.130000px;}
.x25{left:54.630000px;}
.x1a{left:56.700000px;}
.xa4{left:57.900000px;}
.x9e{left:59.400000px;}
.x63{left:60.711235px;}
.x2d{left:62.430000px;}
.xf{left:63.937500px;}
.x97{left:65.430000px;}
.x32{left:68.130000px;}
.x79{left:69.600000px;}
.x33{left:71.145000px;}
.xab{left:73.530000px;}
.x9b{left:74.745000px;}
.x9f{left:76.545000px;}
.x96{left:78.000000px;}
.x98{left:79.200000px;}
.x6d{left:82.125934px;}
.x9{left:84.937500px;}
.xa1{left:86.400000px;}
.x50{left:88.124404px;}
.x34{left:89.400000px;}
.x10{left:90.937500px;}
.x4f{left:93.907048px;}
.x7d{left:96.345000px;}
.x7f{left:99.045000px;}
.x49{left:100.403006px;}
.xa9{left:102.045000px;}
.x68{left:103.144599px;}
.x67{left:104.262210px;}
.xa7{left:105.345000px;}
.x51{left:108.337500px;}
.x4d{left:109.945501px;}
.x1{left:111.637500px;}
.xa8{left:113.430000px;}
.xa6{left:115.545000px;}
.x35{left:117.937500px;}
.xac{left:120.945000px;}
.x4c{left:122.874622px;}
.x69{left:126.722512px;}
.xaa{left:127.830000px;}
.x6a{left:128.993752px;}
.x5c{left:131.100000px;}
.x5d{left:133.837500px;}
.xb0{left:137.145000px;}
.x47{left:139.115445px;}
.xb1{left:140.445000px;}
.x8d{left:143.130000px;}
.x3d{left:144.337500px;}
.x78{left:146.100000px;}
.x5a{left:149.437500px;}
.x6b{left:151.785586px;}
.x13{left:153.045000px;}
.x6c{left:154.050822px;}
.xaf{left:155.130000px;}
.x5e{left:157.006122px;}
.x61{left:158.131244px;}
.x5f{left:159.241355px;}
.xb2{left:171.675000px;}
.x38{left:173.130000px;}
.xe{left:174.330000px;}
.xad{left:176.437500px;}
.x39{left:179.475000px;}
.x6e{left:181.023588px;}
.x6f{left:182.133709px;}
.x65{left:183.933887px;}
.x5b{left:185.475000px;}
.x64{left:188.584363px;}
.x3f{left:189.675000px;}
.x66{left:190.819595px;}
.xc{left:193.875000px;}
.x62{left:195.290060px;}
.x60{left:196.415172px;}
.x8e{left:200.775000px;}
.x8f{left:204.675000px;}
.x46{left:207.363470px;}
.x2{left:210.375000px;}
.x40{left:219.675000px;}
.xa{left:227.475000px;}
.x8a{left:231.675000px;}
.x48{left:234.261684px;}
.xb{left:243.675000px;}
.x4b{left:244.990999px;}
.x6{left:248.475000px;}
.x9a{left:249.682500px;}
.x72{left:253.875000px;}
.x5{left:256.875000px;}
.xa0{left:258.382500px;}
.x3e{left:264.375000px;}
.x7a{left:266.175000px;}
.xb3{left:273.975000px;}
.xa2{left:277.875000px;}
.x45{left:280.355774px;}
.x3{left:290.475000px;}
.x36{left:301.320000px;}
.x7{left:303.420000px;}
.xd{left:309.420000px;}
.x75{left:319.020000px;}
.x76{left:322.920000px;}
.x80{left:324.720000px;}
.x77{left:335.520000px;}
.x37{left:337.620000px;}
.x4{left:340.905000px;}
.x7b{left:344.220000px;}
.x90{left:351.420000px;}
.x15{left:355.020000px;}
.xb4{left:358.620000px;}
.x8b{left:361.020000px;}
.x52{left:364.005000px;}
.x53{left:367.020000px;}
.x89{left:397.320000px;}
.x94{left:401.820000px;}
.x58{left:409.320000px;}
.x73{left:412.905000px;}
.x54{left:420.450000px;}
.x55{left:423.750000px;}
.xa3{left:424.950000px;}
.x4e{left:428.550000px;}
.x9c{left:431.550000px;}
.x85{left:452.250000px;}
.x92{left:455.550000px;}
.x70{left:457.967025px;}
.x8{left:473.250000px;}
.x8c{left:477.750000px;}
.xae{left:485.250000px;}
.x56{left:511.950000px;}
.x17{left:515.550000px;}
.x57{left:521.850000px;}
.x43{left:526.950000px;}
.x59{left:530.850000px;}
.x44{left:534.150000px;}
.x93{left:539.595000px;}
.x3a{left:543.495000px;}
.x95{left:564.495000px;}
.x3b{left:568.695000px;}
.xa5{left:572.280000px;}
.x86{left:581.595000px;}
.x41{left:595.095000px;}
.x9d{left:617.295000px;}
.x81{left:631.995000px;}
.x42{left:644.595000px;}
.x19{left:658.725000px;}
.x71{left:663.225000px;}
.x88{left:693.525000px;}
.x87{left:710.925000px;}
.x82{left:754.725000px;}
.x3c{left:757.125000px;}
.x74{left:817.755000px;}
@media print{
.v5{vertical-align:-17.557982pt;}
.v6{vertical-align:-14.933333pt;}
.v7{vertical-align:-8.938615pt;}
.v3{vertical-align:-5.280000pt;}
.v1{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.200000pt;}
.v4{vertical-align:8.480000pt;}
.v8{vertical-align:16.000000pt;}
.ls41{letter-spacing:-2.885333pt;}
.ls18{letter-spacing:-2.133333pt;}
.ls3c{letter-spacing:-1.600000pt;}
.ls19{letter-spacing:-1.333333pt;}
.ls3e{letter-spacing:-1.226667pt;}
.ls12{letter-spacing:-1.173333pt;}
.ls3b{letter-spacing:-1.066667pt;}
.lsf{letter-spacing:-1.013333pt;}
.ls43{letter-spacing:-0.960000pt;}
.ls39{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls34{letter-spacing:-0.746667pt;}
.ls47{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.533333pt;}
.ls40{letter-spacing:-0.458667pt;}
.ls4b{letter-spacing:-0.449742pt;}
.ls11{letter-spacing:-0.426667pt;}
.ls42{letter-spacing:-0.368000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls4c{letter-spacing:-0.305067pt;}
.ls3d{letter-spacing:-0.281089pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.224871pt;}
.lse{letter-spacing:-0.213333pt;}
.ls46{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.106667pt;}
.ls61{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000001pt;}
.ls4d{letter-spacing:0.000003pt;}
.ls33{letter-spacing:0.011733pt;}
.ls2f{letter-spacing:0.032000pt;}
.ls5c{letter-spacing:0.053333pt;}
.ls25{letter-spacing:0.056218pt;}
.ls49{letter-spacing:0.106667pt;}
.ls3f{letter-spacing:0.120306pt;}
.ls14{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.181333pt;}
.ls1{letter-spacing:0.213333pt;}
.ls3a{letter-spacing:0.266667pt;}
.ls2d{letter-spacing:0.298667pt;}
.ls28{letter-spacing:0.318933pt;}
.ls54{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.325333pt;}
.ls2a{letter-spacing:0.362667pt;}
.ls1a{letter-spacing:0.373333pt;}
.ls4a{letter-spacing:0.378667pt;}
.ls62{letter-spacing:0.416000pt;}
.ls2c{letter-spacing:0.426667pt;}
.ls26{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.562177pt;}
.ls27{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.746667pt;}
.ls32{letter-spacing:0.800000pt;}
.ls30{letter-spacing:1.066667pt;}
.ls2e{letter-spacing:1.226667pt;}
.ls16{letter-spacing:1.600000pt;}
.ls29{letter-spacing:1.653333pt;}
.ls5f{letter-spacing:1.674667pt;}
.ls50{letter-spacing:2.080000pt;}
.ls45{letter-spacing:2.666667pt;}
.ls55{letter-spacing:3.808000pt;}
.ls37{letter-spacing:9.761833pt;}
.ls60{letter-spacing:11.840000pt;}
.ls38{letter-spacing:12.663999pt;}
.ls58{letter-spacing:22.506667pt;}
.ls2b{letter-spacing:26.112000pt;}
.ls5e{letter-spacing:27.840000pt;}
.ls5b{letter-spacing:28.906667pt;}
.ls5d{letter-spacing:29.973333pt;}
.ls44{letter-spacing:31.040000pt;}
.ls10{letter-spacing:32.106667pt;}
.ls4e{letter-spacing:34.240000pt;}
.ls13{letter-spacing:36.373333pt;}
.ls59{letter-spacing:36.821333pt;}
.ls5a{letter-spacing:39.573333pt;}
.ls3{letter-spacing:42.773333pt;}
.ls51{letter-spacing:43.840000pt;}
.ls52{letter-spacing:44.906667pt;}
.ls56{letter-spacing:45.973333pt;}
.ls53{letter-spacing:46.474667pt;}
.ls57{letter-spacing:50.656000pt;}
.ls4f{letter-spacing:54.506667pt;}
.ls15{letter-spacing:152.756448pt;}
.ls48{letter-spacing:175.013333pt;}
.ls23{letter-spacing:193.754082pt;}
.ls20{letter-spacing:222.219969pt;}
.ls22{letter-spacing:291.660316pt;}
.ls36{letter-spacing:335.015542pt;}
.ls35{letter-spacing:335.912576pt;}
.ls1e{letter-spacing:340.523735pt;}
.ls1b{letter-spacing:342.369686pt;}
.ls1c{letter-spacing:350.839346pt;}
.ls21{letter-spacing:361.752176pt;}
.ls1d{letter-spacing:473.150969pt;}
.ls1f{letter-spacing:505.573505pt;}
.ws16{word-spacing:-209.374016pt;}
.ws23{word-spacing:-64.000000pt;}
.wsd{word-spacing:-53.333333pt;}
.ws24{word-spacing:-48.000000pt;}
.ws25{word-spacing:-32.000000pt;}
.ws12{word-spacing:-16.309523pt;}
.wsb{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.666667pt;}
.ws0{word-spacing:-14.616604pt;}
.ws2{word-spacing:-14.538667pt;}
.wsf{word-spacing:-14.054427pt;}
.ws1{word-spacing:-13.829556pt;}
.ws18{word-spacing:-13.813333pt;}
.ws28{word-spacing:-13.706667pt;}
.ws2e{word-spacing:-13.653333pt;}
.ws2c{word-spacing:-13.604685pt;}
.ws2b{word-spacing:-13.546667pt;}
.ws31{word-spacing:-13.493333pt;}
.ws2d{word-spacing:-13.333336pt;}
.ws5{word-spacing:-13.333335pt;}
.ws4{word-spacing:-13.333333pt;}
.ws2f{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.226667pt;}
.ws29{word-spacing:-13.173333pt;}
.ws7{word-spacing:-13.120000pt;}
.ws6{word-spacing:-13.066667pt;}
.ws9{word-spacing:-12.906667pt;}
.ws2a{word-spacing:-12.693333pt;}
.ws30{word-spacing:-12.416000pt;}
.ws27{word-spacing:-12.000000pt;}
.wsc{word-spacing:-10.666667pt;}
.ws10{word-spacing:-9.275922pt;}
.wse{word-spacing:-8.800000pt;}
.ws26{word-spacing:-8.000000pt;}
.ws19{word-spacing:-1.273154pt;}
.ws8{word-spacing:0.000000pt;}
.ws20{word-spacing:2.316804pt;}
.ws22{word-spacing:19.160968pt;}
.ws11{word-spacing:25.653022pt;}
.ws21{word-spacing:29.473516pt;}
.ws17{word-spacing:29.677875pt;}
.ws1a{word-spacing:32.950105pt;}
.ws13{word-spacing:57.187125pt;}
.ws1d{word-spacing:59.710925pt;}
.ws14{word-spacing:109.730473pt;}
.ws1b{word-spacing:127.251746pt;}
.ws1c{word-spacing:133.553859pt;}
.ws15{word-spacing:137.805410pt;}
.ws1f{word-spacing:198.766487pt;}
.ws1e{word-spacing:202.931247pt;}
._1b{margin-left:-464.569275pt;}
._15{margin-left:-13.638232pt;}
._3c{margin-left:-11.733333pt;}
._3d{margin-left:-8.373333pt;}
._13{margin-left:-5.958232pt;}
._14{margin-left:-4.233597pt;}
._10{margin-left:-2.716463pt;}
._8{margin-left:-1.813333pt;}
._0{margin-left:-0.899483pt;}
._1{width:1.264898pt;}
._3{width:2.893035pt;}
._6{width:4.312817pt;}
._4{width:5.333333pt;}
._5{width:6.253035pt;}
._7{width:7.481768pt;}
._9{width:8.696356pt;}
._b{width:9.881768pt;}
._c{width:10.790419pt;}
._d{width:11.929581pt;}
._a{width:14.773333pt;}
._11{width:15.946667pt;}
._16{width:16.993740pt;}
._f{width:18.216870pt;}
._e{width:19.893333pt;}
._3e{width:21.653333pt;}
._3f{width:22.593740pt;}
._40{width:23.539483pt;}
._45{width:37.028435pt;}
._1c{width:38.362558pt;}
._46{width:41.490752pt;}
._42{width:46.628435pt;}
._43{width:48.251565pt;}
._44{width:49.481768pt;}
._38{width:64.421594pt;}
._25{width:71.894480pt;}
._22{width:72.924171pt;}
._3a{width:76.834846pt;}
._1f{width:79.699443pt;}
._1d{width:90.158259pt;}
._41{width:129.863529pt;}
._2e{width:133.170267pt;}
._23{width:136.323703pt;}
._39{width:137.946240pt;}
._2a{width:139.759574pt;}
._37{width:141.129125pt;}
._12{width:142.231424pt;}
._17{width:145.604487pt;}
._3b{width:146.728841pt;}
._2{width:147.655808pt;}
._24{width:150.665824pt;}
._20{width:154.600714pt;}
._2c{width:157.807443pt;}
._36{width:161.435932pt;}
._21{width:217.632499pt;}
._18{width:221.357226pt;}
._26{width:225.465504pt;}
._19{width:247.056659pt;}
._32{width:250.624456pt;}
._2f{width:261.036354pt;}
._2b{width:281.876305pt;}
._29{width:283.466102pt;}
._35{width:289.931501pt;}
._34{width:290.850868pt;}
._1a{width:305.053323pt;}
._28{width:337.334051pt;}
._30{width:354.071698pt;}
._2d{width:369.978564pt;}
._27{width:446.370948pt;}
._31{width:452.279405pt;}
._33{width:472.095598pt;}
._1e{width:1450.822687pt;}
.fs19{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fsf{font-size:36.052044pt;}
.fs14{font-size:36.774670pt;}
.fs7{font-size:37.103687pt;}
.fs9{font-size:38.099350pt;}
.fsb{font-size:40.085592pt;}
.fs5{font-size:42.666667pt;}
.fs18{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:56.217707pt;}
.fs2{font-size:58.666667pt;}
.fs10{font-size:62.479736pt;}
.fs15{font-size:63.657702pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:65.238093pt;}
.fs11{font-size:66.276389pt;}
.fs16{font-size:67.173534pt;}
.fsc{font-size:68.639165pt;}
.fs12{font-size:69.640179pt;}
.fs13{font-size:72.739118pt;}
.fs1{font-size:74.666667pt;}
.fse{font-size:81.850076pt;}
.fs8{font-size:86.243934pt;}
.fs17{font-size:95.486553pt;}
.fsd{font-size:97.857140pt;}
.y0{bottom:0.000000pt;}
.y1b9{bottom:2.666667pt;}
.y191{bottom:2.920000pt;}
.y86{bottom:2.933333pt;}
.y95{bottom:2.946667pt;}
.y206{bottom:2.973333pt;}
.y1ac{bottom:3.200000pt;}
.y194{bottom:3.453333pt;}
.y1ab{bottom:3.466667pt;}
.y15b{bottom:3.733333pt;}
.y15f{bottom:3.986667pt;}
.y190{bottom:4.786667pt;}
.y108{bottom:4.792555pt;}
.y7c{bottom:4.800000pt;}
.yda{bottom:4.800439pt;}
.y15d{bottom:4.813333pt;}
.y8e{bottom:4.840000pt;}
.yd9{bottom:6.172004pt;}
.ycd{bottom:6.433292pt;}
.ye7{bottom:7.120882pt;}
.ydf{bottom:7.864829pt;}
.ye2{bottom:8.992865pt;}
.y9a{bottom:9.333333pt;}
.ya0{bottom:9.373333pt;}
.y83{bottom:10.133333pt;}
.y1e8{bottom:10.173333pt;}
.y92{bottom:10.400000pt;}
.ya6{bottom:10.440000pt;}
.y158{bottom:12.000000pt;}
.ye6{bottom:12.037637pt;}
.yd2{bottom:12.474699pt;}
.y7d{bottom:13.066667pt;}
.y8f{bottom:13.106667pt;}
.ye1{bottom:13.382361pt;}
.y107{bottom:15.774620pt;}
.y111{bottom:15.774623pt;}
.y11d{bottom:16.249518pt;}
.y8a{bottom:16.533333pt;}
.y204{bottom:16.560000pt;}
.yd8{bottom:17.242011pt;}
.y208{bottom:17.586667pt;}
.y80{bottom:17.600000pt;}
.y94{bottom:17.613333pt;}
.y1ff{bottom:17.626667pt;}
.ya3{bottom:17.640000pt;}
.yd0{bottom:17.764580pt;}
.ydb{bottom:18.254575pt;}
.ye0{bottom:18.351649pt;}
.yd7{bottom:18.581687pt;}
.y156{bottom:19.466667pt;}
.y117{bottom:19.899655pt;}
.y11a{bottom:19.899658pt;}
.y10b{bottom:19.899660pt;}
.y114{bottom:19.899664pt;}
.yca{bottom:20.802245pt;}
.y157{bottom:21.066667pt;}
.y8d{bottom:21.106667pt;}
.y7b{bottom:21.333333pt;}
.yce{bottom:21.977684pt;}
.yd3{bottom:21.977689pt;}
.yd6{bottom:21.977692pt;}
.yd1{bottom:21.977698pt;}
.y1{bottom:23.500000pt;}
.y82{bottom:24.800000pt;}
.y96{bottom:25.066667pt;}
.ya5{bottom:25.106667pt;}
.y99{bottom:25.866667pt;}
.y9f{bottom:25.906667pt;}
.y91{bottom:26.946667pt;}
.yd5{bottom:32.199646pt;}
.y85{bottom:32.266667pt;}
.y93{bottom:32.280000pt;}
.ya2{bottom:32.306667pt;}
.y89{bottom:33.066667pt;}
.yd4{bottom:33.570541pt;}
.y7f{bottom:34.133333pt;}
.y110{bottom:36.784983pt;}
.ycc{bottom:38.631972pt;}
.ycf{bottom:38.631977pt;}
.y81{bottom:39.466667pt;}
.ya4{bottom:39.773333pt;}
.y9c{bottom:42.133333pt;}
.y98{bottom:42.400000pt;}
.y9e{bottom:42.440000pt;}
.ycb{bottom:44.640811pt;}
.y84{bottom:46.933333pt;}
.ya1{bottom:46.973333pt;}
.y88{bottom:49.600000pt;}
.y145{bottom:50.166667pt;}
.y106{bottom:53.765295pt;}
.y232{bottom:54.966667pt;}
.y1f4{bottom:58.166667pt;}
.y43{bottom:60.566667pt;}
.y8b{bottom:61.326667pt;}
.yec{bottom:62.166667pt;}
.y105{bottom:64.746040pt;}
.y10f{bottom:64.746044pt;}
.y11c{bottom:65.190598pt;}
.y144{bottom:65.633333pt;}
.y261{bottom:67.233333pt;}
.y11e{bottom:68.840713pt;}
.y116{bottom:68.840735pt;}
.y119{bottom:68.840738pt;}
.y10a{bottom:68.840740pt;}
.y113{bottom:68.840743pt;}
.y231{bottom:69.633333pt;}
.y1f3{bottom:72.833333pt;}
.y42{bottom:75.233333pt;}
.y104{bottom:75.981357pt;}
.yeb{bottom:78.700000pt;}
.y87{bottom:80.033333pt;}
.y143{bottom:80.833333pt;}
.y260{bottom:81.900000pt;}
.y230{bottom:84.300000pt;}
.y10e{bottom:85.757723pt;}
.y1f2{bottom:87.500000pt;}
.y41{bottom:89.900000pt;}
.yea{bottom:95.233333pt;}
.y142{bottom:96.300000pt;}
.y25f{bottom:96.566667pt;}
.y22f{bottom:98.966667pt;}
.y1f1{bottom:102.166667pt;}
.y103{bottom:102.706375pt;}
.y40{bottom:104.566667pt;}
.ye5{bottom:107.066667pt;}
.y25e{bottom:111.233333pt;}
.ye8{bottom:111.500000pt;}
.y1bd{bottom:111.766667pt;}
.ye9{bottom:112.833333pt;}
.ye4{bottom:113.633333pt;}
.y102{bottom:113.718780pt;}
.y10d{bottom:113.718784pt;}
.y11b{bottom:114.163338pt;}
.y1bc{bottom:116.566667pt;}
.y1f0{bottom:116.833333pt;}
.y115{bottom:117.813475pt;}
.y118{bottom:117.813478pt;}
.y109{bottom:117.813479pt;}
.y112{bottom:117.813483pt;}
.y3f{bottom:119.233333pt;}
.y25d{bottom:125.633333pt;}
.y141{bottom:126.966667pt;}
.y22e{bottom:128.300000pt;}
.y1bb{bottom:128.566667pt;}
.y1ef{bottom:131.500000pt;}
.y3e{bottom:133.626667pt;}
.yde{bottom:134.533333pt;}
.y10c{bottom:134.700122pt;}
.y25c{bottom:140.293333pt;}
.y140{bottom:142.160000pt;}
.y22d{bottom:142.960000pt;}
.ye3{bottom:143.760000pt;}
.y1ee{bottom:146.160000pt;}
.y3d{bottom:148.293333pt;}
.y25b{bottom:155.000000pt;}
.y13f{bottom:157.666667pt;}
.y1ed{bottom:160.866667pt;}
.y13e{bottom:162.466667pt;}
.y3c{bottom:163.000000pt;}
.ydd{bottom:165.933333pt;}
.y1ba{bottom:169.666667pt;}
.y184{bottom:171.000000pt;}
.y22c{bottom:172.333333pt;}
.y13d{bottom:173.666667pt;}
.y7e{bottom:173.933333pt;}
.y1ec{bottom:175.533333pt;}
.y3b{bottom:177.666667pt;}
.ydc{bottom:180.600000pt;}
.y1b8{bottom:182.200000pt;}
.y25a{bottom:184.333333pt;}
.y22b{bottom:187.000000pt;}
.y183{bottom:187.266667pt;}
.y13c{bottom:187.800000pt;}
.y1eb{bottom:192.066667pt;}
.y3a{bottom:192.333333pt;}
.yc9{bottom:192.399982pt;}
.y1b7{bottom:196.600000pt;}
.y259{bottom:199.000000pt;}
.y22a{bottom:201.666667pt;}
.y182{bottom:201.933333pt;}
.y13b{bottom:202.200000pt;}
.y39{bottom:207.000000pt;}
.y1ea{bottom:208.600000pt;}
.y1b6{bottom:211.266667pt;}
.yc8{bottom:213.666667pt;}
.y229{bottom:216.333333pt;}
.y181{bottom:216.600000pt;}
.y13a{bottom:219.000000pt;}
.y1e9{bottom:220.866667pt;}
.y38{bottom:221.666667pt;}
.y1b5{bottom:225.933333pt;}
.y258{bottom:228.333333pt;}
.y228{bottom:231.000000pt;}
.y180{bottom:231.266667pt;}
.y37{bottom:236.333333pt;}
.y139{bottom:237.666667pt;}
.y1b4{bottom:240.600000pt;}
.y257{bottom:243.000000pt;}
.y227{bottom:245.666667pt;}
.y17f{bottom:245.933333pt;}
.yc7{bottom:249.666667pt;}
.y36{bottom:251.000000pt;}
.y138{bottom:252.333333pt;}
.y7a{bottom:253.133333pt;}
.y1b3{bottom:256.066667pt;}
.y256{bottom:257.666667pt;}
.y226{bottom:260.333333pt;}
.y17e{bottom:260.600000pt;}
.yc6{bottom:264.333333pt;}
.y35{bottom:265.666667pt;}
.y137{bottom:267.000000pt;}
.y255{bottom:272.333333pt;}
.y225{bottom:275.000000pt;}
.y17d{bottom:275.266667pt;}
.y1b2{bottom:277.933333pt;}
.yc5{bottom:279.000000pt;}
.y34{bottom:280.333333pt;}
.y135{bottom:281.666667pt;}
.y136{bottom:285.666667pt;}
.y254{bottom:287.000000pt;}
.y224{bottom:289.666667pt;}
.y17c{bottom:289.933333pt;}
.y1b1{bottom:292.600000pt;}
.yc4{bottom:293.666667pt;}
.y33{bottom:295.000000pt;}
.y134{bottom:296.333333pt;}
.y79{bottom:299.800000pt;}
.y253{bottom:301.693333pt;}
.y223{bottom:304.373333pt;}
.y17b{bottom:304.626667pt;}
.y1b0{bottom:307.293333pt;}
.yc3{bottom:308.106667pt;}
.y32{bottom:309.706667pt;}
.yc2{bottom:310.226667pt;}
.y133{bottom:312.093333pt;}
.y132{bottom:312.893333pt;}
.y78{bottom:314.506667pt;}
.y252{bottom:316.373333pt;}
.y222{bottom:319.040000pt;}
.y17a{bottom:321.160000pt;}
.y1af{bottom:321.973333pt;}
.y31{bottom:324.360000pt;}
.yc1{bottom:327.560000pt;}
.y77{bottom:329.173333pt;}
.y251{bottom:331.040000pt;}
.y179{bottom:333.426667pt;}
.y221{bottom:333.706667pt;}
.y1ae{bottom:338.506667pt;}
.y30{bottom:339.026667pt;}
.y1e6{bottom:339.560000pt;}
.y1e7{bottom:339.573333pt;}
.y131{bottom:341.693333pt;}
.y76{bottom:343.840000pt;}
.yc0{bottom:344.106667pt;}
.y250{bottom:345.706667pt;}
.y178{bottom:348.093333pt;}
.y1ad{bottom:350.760000pt;}
.y2f{bottom:353.693333pt;}
.y75{bottom:358.506667pt;}
.ybf{bottom:358.760000pt;}
.y24f{bottom:360.360000pt;}
.y177{bottom:362.760000pt;}
.y220{bottom:362.773333pt;}
.y130{bottom:363.840000pt;}
.y1aa{bottom:365.426667pt;}
.y2e{bottom:368.360000pt;}
.y1e4{bottom:368.893333pt;}
.y1e5{bottom:368.906667pt;}
.y74{bottom:373.173333pt;}
.y24e{bottom:375.026667pt;}
.ybe{bottom:375.293333pt;}
.y176{bottom:377.426667pt;}
.y21f{bottom:377.440000pt;}
.y12f{bottom:380.626667pt;}
.y1a9{bottom:381.173333pt;}
.y2d{bottom:383.040000pt;}
.y73{bottom:387.840000pt;}
.ybd{bottom:389.693333pt;}
.y175{bottom:392.093333pt;}
.y21e{bottom:392.106667pt;}
.y12e{bottom:395.293333pt;}
.y1a8{bottom:395.840000pt;}
.y1e2{bottom:398.226667pt;}
.y1e3{bottom:398.240000pt;}
.y2c{bottom:399.560000pt;}
.y72{bottom:402.506667pt;}
.y24d{bottom:404.360000pt;}
.ybc{bottom:406.226667pt;}
.y21d{bottom:406.760000pt;}
.y174{bottom:407.560000pt;}
.y12d{bottom:409.960000pt;}
.y1a7{bottom:410.506667pt;}
.y2b{bottom:416.106667pt;}
.y71{bottom:417.173333pt;}
.y24c{bottom:419.040000pt;}
.ybb{bottom:421.173333pt;}
.y21c{bottom:421.693333pt;}
.y1a6{bottom:425.173333pt;}
.y12c{bottom:427.026667pt;}
.y173{bottom:427.560000pt;}
.y1e1{bottom:427.573333pt;}
.y12a{bottom:429.173333pt;}
.y2a{bottom:430.506667pt;}
.y70{bottom:431.840000pt;}
.y12b{bottom:432.093333pt;}
.y24b{bottom:433.693333pt;}
.y21b{bottom:436.893333pt;}
.y1a5{bottom:439.826667pt;}
.yba{bottom:440.893333pt;}
.y172{bottom:442.226667pt;}
.y29{bottom:445.173333pt;}
.y6f{bottom:446.493333pt;}
.y129{bottom:447.026667pt;}
.y24a{bottom:448.360000pt;}
.y21a{bottom:451.600000pt;}
.y1a4{bottom:454.533333pt;}
.y171{bottom:456.933333pt;}
.yb9{bottom:457.733333pt;}
.y28{bottom:459.866667pt;}
.y6e{bottom:461.200000pt;}
.y249{bottom:462.800000pt;}
.y128{bottom:466.266667pt;}
.y1a3{bottom:469.733333pt;}
.y170{bottom:471.600000pt;}
.yb8{bottom:472.400000pt;}
.y27{bottom:474.533333pt;}
.y6d{bottom:475.866667pt;}
.y248{bottom:477.466667pt;}
.y219{bottom:480.933333pt;}
.y127{bottom:483.066667pt;}
.y16f{bottom:486.266667pt;}
.y1e0{bottom:486.800000pt;}
.yb7{bottom:487.066667pt;}
.y26{bottom:489.200000pt;}
.y6c{bottom:490.266667pt;}
.y1a2{bottom:491.600000pt;}
.y247{bottom:492.133333pt;}
.y218{bottom:495.600000pt;}
.y126{bottom:497.733333pt;}
.y16e{bottom:500.933333pt;}
.yb6{bottom:501.733333pt;}
.y25{bottom:503.866667pt;}
.y6b{bottom:504.933333pt;}
.y1a1{bottom:506.266667pt;}
.y246{bottom:506.800000pt;}
.y217{bottom:510.266667pt;}
.y125{bottom:512.400000pt;}
.yb5{bottom:516.400000pt;}
.y16d{bottom:517.466667pt;}
.y24{bottom:518.533333pt;}
.y6a{bottom:519.600000pt;}
.y1a0{bottom:520.933333pt;}
.y245{bottom:521.466667pt;}
.y216{bottom:524.666667pt;}
.y1df{bottom:525.200000pt;}
.y124{bottom:527.066667pt;}
.y16c{bottom:529.733333pt;}
.yb4{bottom:531.066667pt;}
.y23{bottom:533.200000pt;}
.y69{bottom:534.266667pt;}
.y19f{bottom:535.600000pt;}
.y244{bottom:536.133333pt;}
.y215{bottom:539.333333pt;}
.y1de{bottom:539.866667pt;}
.y123{bottom:541.733333pt;}
.y16b{bottom:544.400000pt;}
.yb3{bottom:547.600000pt;}
.y22{bottom:547.866667pt;}
.y68{bottom:548.933333pt;}
.y19e{bottom:550.266667pt;}
.y243{bottom:550.800000pt;}
.y214{bottom:554.000000pt;}
.y1dd{bottom:554.533333pt;}
.y122{bottom:556.133333pt;}
.y16a{bottom:559.066667pt;}
.y67{bottom:563.600000pt;}
.yb2{bottom:564.133333pt;}
.y21{bottom:564.400000pt;}
.y19d{bottom:564.933333pt;}
.y242{bottom:565.466667pt;}
.y213{bottom:568.666667pt;}
.y1dc{bottom:569.200000pt;}
.y121{bottom:571.066667pt;}
.y169{bottom:573.733333pt;}
.y66{bottom:578.266667pt;}
.yb1{bottom:578.800000pt;}
.y19c{bottom:579.600000pt;}
.y241{bottom:580.133333pt;}
.y20{bottom:580.933333pt;}
.y212{bottom:583.333333pt;}
.y1db{bottom:583.866667pt;}
.y120{bottom:586.800000pt;}
.y168{bottom:588.400000pt;}
.yb0{bottom:593.466667pt;}
.y19b{bottom:594.266667pt;}
.y65{bottom:594.800000pt;}
.y1f{bottom:595.600000pt;}
.y211{bottom:598.000000pt;}
.y1da{bottom:598.533333pt;}
.y101{bottom:599.333297pt;}
.y167{bottom:603.893333pt;}
.yaf{bottom:608.160000pt;}
.y19a{bottom:608.973333pt;}
.y64{bottom:609.506667pt;}
.y1e{bottom:610.306667pt;}
.y210{bottom:612.693333pt;}
.y1d9{bottom:613.226667pt;}
.yae{bottom:622.840000pt;}
.y198{bottom:623.626667pt;}
.y166{bottom:623.893333pt;}
.y63{bottom:624.173333pt;}
.y1d{bottom:624.960000pt;}
.y199{bottom:627.626667pt;}
.y1d8{bottom:627.893333pt;}
.y20f{bottom:629.226667pt;}
.yad{bottom:637.506667pt;}
.y197{bottom:638.293333pt;}
.y165{bottom:638.560000pt;}
.y62{bottom:638.840000pt;}
.y1c{bottom:639.626667pt;}
.y1d7{bottom:642.560000pt;}
.y20e{bottom:645.760000pt;}
.yac{bottom:652.173333pt;}
.y196{bottom:652.960000pt;}
.y164{bottom:653.226667pt;}
.y61{bottom:653.493333pt;}
.y1b{bottom:654.293333pt;}
.y1d6{bottom:657.226667pt;}
.y20d{bottom:662.293333pt;}
.yab{bottom:666.826667pt;}
.y163{bottom:667.893333pt;}
.y60{bottom:668.160000pt;}
.y11f{bottom:668.693333pt;}
.y1a{bottom:668.973333pt;}
.y195{bottom:669.506667pt;}
.y1d5{bottom:671.893333pt;}
.y20c{bottom:674.560000pt;}
.yaa{bottom:681.506667pt;}
.y193{bottom:681.773333pt;}
.y162{bottom:682.560000pt;}
.y5f{bottom:682.840000pt;}
.y19{bottom:683.626667pt;}
.y240{bottom:684.706667pt;}
.y1d4{bottom:686.560000pt;}
.y20b{bottom:690.026667pt;}
.y20a{bottom:690.040000pt;}
.ya9{bottom:695.893333pt;}
.y161{bottom:697.226667pt;}
.y5e{bottom:697.506667pt;}
.y192{bottom:698.040000pt;}
.y18{bottom:698.293333pt;}
.y23f{bottom:699.373333pt;}
.y1d3{bottom:701.226667pt;}
.ya8{bottom:710.560000pt;}
.y5d{bottom:712.173333pt;}
.y17{bottom:712.706667pt;}
.y160{bottom:713.773333pt;}
.y23e{bottom:714.040000pt;}
.y1d2{bottom:715.893333pt;}
.y209{bottom:719.360000pt;}
.y207{bottom:719.373333pt;}
.ya7{bottom:725.226667pt;}
.y15e{bottom:726.040000pt;}
.y5c{bottom:726.840000pt;}
.y16{bottom:727.373333pt;}
.y18f{bottom:728.173333pt;}
.y23d{bottom:728.693333pt;}
.y1d1{bottom:730.560000pt;}
.y5b{bottom:741.506667pt;}
.y15c{bottom:742.560000pt;}
.y23c{bottom:743.373333pt;}
.y15{bottom:743.893333pt;}
.y1d0{bottom:745.226667pt;}
.y100{bottom:746.840000pt;}
.y9d{bottom:747.626667pt;}
.y205{bottom:748.693333pt;}
.y203{bottom:748.706667pt;}
.y18e{bottom:750.040000pt;}
.y5a{bottom:756.200000pt;}
.y23b{bottom:758.066667pt;}
.y15a{bottom:759.133333pt;}
.y1cf{bottom:759.933333pt;}
.yff{bottom:761.533333pt;}
.y14{bottom:763.933333pt;}
.y18d{bottom:764.733333pt;}
.y59{bottom:770.866667pt;}
.y23a{bottom:772.466667pt;}
.y1ce{bottom:774.600000pt;}
.y159{bottom:775.666667pt;}
.yfd{bottom:776.200000pt;}
.y13{bottom:778.600000pt;}
.y18c{bottom:779.400000pt;}
.yfe{bottom:780.200000pt;}
.y58{bottom:785.533333pt;}
.y239{bottom:787.133333pt;}
.y1cd{bottom:789.000000pt;}
.yfc{bottom:790.866667pt;}
.y18b{bottom:794.066667pt;}
.y12{bottom:795.133333pt;}
.y57{bottom:799.933333pt;}
.y238{bottom:801.800000pt;}
.y1cc{bottom:803.666667pt;}
.y155{bottom:805.000000pt;}
.yfb{bottom:805.533333pt;}
.y202{bottom:807.933333pt;}
.y18a{bottom:808.733333pt;}
.y11{bottom:810.600000pt;}
.y56{bottom:814.600000pt;}
.y237{bottom:816.466667pt;}
.y1cb{bottom:818.333333pt;}
.yfa{bottom:820.200000pt;}
.y189{bottom:823.400000pt;}
.y9b{bottom:827.133333pt;}
.y10{bottom:828.733333pt;}
.y55{bottom:829.266667pt;}
.y236{bottom:831.133333pt;}
.y1ca{bottom:833.000000pt;}
.yf9{bottom:834.866667pt;}
.y201{bottom:837.266667pt;}
.y154{bottom:838.600000pt;}
.y188{bottom:839.933333pt;}
.y54{bottom:843.933333pt;}
.y235{bottom:845.800000pt;}
.y1c9{bottom:847.666667pt;}
.yf8{bottom:849.533333pt;}
.y187{bottom:856.466667pt;}
.yf{bottom:857.266667pt;}
.y53{bottom:858.600000pt;}
.y153{bottom:860.466667pt;}
.y1c8{bottom:862.333333pt;}
.yf7{bottom:866.066667pt;}
.y200{bottom:866.600000pt;}
.ye{bottom:871.933333pt;}
.y186{bottom:872.733333pt;}
.y52{bottom:873.266667pt;}
.y152{bottom:875.133333pt;}
.y1c7{bottom:877.000000pt;}
.yf6{bottom:882.333333pt;}
.y185{bottom:884.466667pt;}
.yd{bottom:886.600000pt;}
.y51{bottom:887.933333pt;}
.y151{bottom:889.800000pt;}
.y1c6{bottom:891.666667pt;}
.y1fe{bottom:895.933333pt;}
.yf5{bottom:897.000000pt;}
.yc{bottom:901.266667pt;}
.y50{bottom:902.626667pt;}
.y150{bottom:904.506667pt;}
.y97{bottom:906.360000pt;}
.y1c5{bottom:908.226667pt;}
.yf4{bottom:913.560000pt;}
.yb{bottom:915.960000pt;}
.y4f{bottom:917.293333pt;}
.y14f{bottom:919.173333pt;}
.y234{bottom:921.040000pt;}
.y1c4{bottom:924.760000pt;}
.y1fd{bottom:925.293333pt;}
.yf3{bottom:928.226667pt;}
.y4e{bottom:931.960000pt;}
.ya{bottom:932.506667pt;}
.y14e{bottom:933.840000pt;}
.y233{bottom:935.706667pt;}
.y1c3{bottom:937.026667pt;}
.yf2{bottom:942.893333pt;}
.y4d{bottom:946.626667pt;}
.y9{bottom:949.560000pt;}
.y14d{bottom:950.373333pt;}
.y1c2{bottom:952.773333pt;}
.y1fc{bottom:955.160000pt;}
.yf1{bottom:959.426667pt;}
.y4c{bottom:961.293333pt;}
.y14c{bottom:965.026667pt;}
.y8{bottom:966.893333pt;}
.y1c1{bottom:968.226667pt;}
.yf0{bottom:974.093333pt;}
.y4b{bottom:975.960000pt;}
.y1fb{bottom:977.026667pt;}
.y14b{bottom:979.706667pt;}
.y7{bottom:985.040000pt;}
.y1c0{bottom:985.293333pt;}
.y90{bottom:985.560000pt;}
.yef{bottom:988.773333pt;}
.y4a{bottom:990.626667pt;}
.y1fa{bottom:991.706667pt;}
.y14a{bottom:994.373333pt;}
.y1bf{bottom:1001.026667pt;}
.y6{bottom:1003.173333pt;}
.y49{bottom:1005.293333pt;}
.y1f9{bottom:1006.373333pt;}
.y149{bottom:1009.040000pt;}
.y1be{bottom:1016.226667pt;}
.y48{bottom:1019.960000pt;}
.y1f8{bottom:1021.040000pt;}
.y5{bottom:1021.293333pt;}
.y148{bottom:1023.693333pt;}
.y47{bottom:1034.626667pt;}
.y1f7{bottom:1035.693333pt;}
.yee{bottom:1036.506667pt;}
.y147{bottom:1038.360000pt;}
.y4{bottom:1039.440000pt;}
.y8c{bottom:1050.360000pt;}
.y46{bottom:1051.173333pt;}
.y1f6{bottom:1052.266667pt;}
.y146{bottom:1053.066667pt;}
.y3{bottom:1057.600000pt;}
.y45{bottom:1065.866667pt;}
.y1f5{bottom:1067.200000pt;}
.yed{bottom:1067.733333pt;}
.y2{bottom:1077.066667pt;}
.y44{bottom:1082.133333pt;}
.h4b{height:14.400000pt;}
.h47{height:14.653333pt;}
.h45{height:14.666667pt;}
.h46{height:14.700000pt;}
.h4a{height:15.733333pt;}
.h48{height:16.253333pt;}
.h44{height:16.520000pt;}
.h40{height:16.533333pt;}
.h43{height:16.566667pt;}
.h26{height:27.465956pt;}
.h1f{height:28.533494pt;}
.h4e{height:29.320000pt;}
.h42{height:29.333333pt;}
.h4d{height:29.353333pt;}
.h4c{height:29.366667pt;}
.h2c{height:30.885937pt;}
.h29{height:32.049034pt;}
.h49{height:32.556311pt;}
.h41{height:32.800000pt;}
.he{height:32.833333pt;}
.hb{height:33.066667pt;}
.h24{height:33.393910pt;}
.h33{height:34.063257pt;}
.h39{height:35.010937pt;}
.h1c{height:35.290267pt;}
.h21{height:35.383110pt;}
.h30{height:36.074371pt;}
.h2e{height:36.092328pt;}
.h1a{height:37.130063pt;}
.h18{height:37.373826pt;}
.h16{height:37.392429pt;}
.h3d{height:38.567708pt;}
.h3e{height:38.619792pt;}
.h3b{height:40.453125pt;}
.hf{height:44.000000pt;}
.h22{height:45.181880pt;}
.h7{height:46.067708pt;}
.h8{height:46.796875pt;}
.h3c{height:47.109375pt;}
.h2{height:48.559143pt;}
.h12{height:49.327744pt;}
.h51{height:49.336436pt;}
.h2a{height:49.996875pt;}
.h27{height:50.359914pt;}
.h5{height:50.674479pt;}
.h6{height:51.476562pt;}
.h11{height:51.937500pt;}
.h3f{height:52.343750pt;}
.h3a{height:53.046875pt;}
.h37{height:53.937500pt;}
.h14{height:54.667325pt;}
.h4f{height:54.818262pt;}
.h4{height:55.281250pt;}
.ha{height:55.520833pt;}
.h9{height:56.156250pt;}
.h13{height:57.497758pt;}
.h25{height:57.873076pt;}
.h38{height:58.351562pt;}
.hc{height:58.666667pt;}
.h10{height:58.700000pt;}
.h34{height:58.964190pt;}
.h1d{height:60.428058pt;}
.h23{height:61.389800pt;}
.h32{height:62.220798pt;}
.h31{height:62.445470pt;}
.h2f{height:62.476553pt;}
.h50{height:62.812500pt;}
.h1b{height:63.578367pt;}
.h19{height:63.995766pt;}
.h17{height:64.027621pt;}
.h3{height:64.494792pt;}
.h36{height:65.430087pt;}
.h28{height:67.376029pt;}
.hd{height:73.100000pt;}
.h20{height:75.815232pt;}
.h15{height:79.885128pt;}
.h35{height:88.446285pt;}
.h1e{height:90.642087pt;}
.h2d{height:144.541117pt;}
.h2b{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wa{width:16.000501pt;}
.w12{width:67.233333pt;}
.we{width:69.366667pt;}
.w11{width:70.933333pt;}
.w20{width:74.700000pt;}
.w18{width:76.033333pt;}
.w2{width:78.133333pt;}
.w14{width:85.633333pt;}
.w1f{width:92.833333pt;}
.w15{width:93.600000pt;}
.w13{width:93.633333pt;}
.w16{width:93.900000pt;}
.w1c{width:103.766667pt;}
.w17{width:109.100000pt;}
.w19{width:114.966667pt;}
.w1a{width:115.233333pt;}
.w22{width:122.166667pt;}
.w9{width:124.530732pt;}
.w5{width:126.733333pt;}
.w2c{width:130.733333pt;}
.w2d{width:130.966667pt;}
.w4{width:142.160000pt;}
.w24{width:144.600000pt;}
.w1b{width:149.093333pt;}
.wf{width:152.826667pt;}
.w6{width:159.240000pt;}
.w7{width:159.493333pt;}
.w27{width:161.373333pt;}
.w29{width:165.093333pt;}
.w28{width:165.400000pt;}
.w23{width:178.173333pt;}
.w3{width:178.720000pt;}
.wd{width:179.773333pt;}
.w2b{width:190.173333pt;}
.w2a{width:198.186667pt;}
.w2f{width:238.186667pt;}
.w2e{width:238.200000pt;}
.w25{width:245.133333pt;}
.w1e{width:255.533333pt;}
.w21{width:267.266667pt;}
.w8{width:276.005110pt;}
.w10{width:288.093333pt;}
.w31{width:315.560000pt;}
.w32{width:315.573333pt;}
.w1d{width:322.226667pt;}
.w30{width:374.506667pt;}
.wc{width:484.543090pt;}
.w26{width:690.066667pt;}
.wb{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:2.666667pt;}
.x12{left:5.066667pt;}
.x11{left:6.400000pt;}
.x23{left:7.733333pt;}
.x24{left:8.800000pt;}
.x1b{left:10.933333pt;}
.x91{left:11.986667pt;}
.x2f{left:14.400000pt;}
.x20{left:16.266667pt;}
.x83{left:17.360000pt;}
.x1f{left:18.386667pt;}
.x27{left:19.506667pt;}
.x2b{left:20.800000pt;}
.x1c{left:22.160000pt;}
.x22{left:23.733333pt;}
.x31{left:25.320000pt;}
.x2a{left:26.400000pt;}
.x21{left:27.760000pt;}
.x30{left:29.066667pt;}
.x2e{left:30.133333pt;}
.x4a{left:31.274192pt;}
.x1e{left:32.266667pt;}
.x28{left:33.600000pt;}
.x18{left:34.706667pt;}
.x7e{left:36.000000pt;}
.x29{left:37.640000pt;}
.x16{left:39.200000pt;}
.x99{left:40.253333pt;}
.x26{left:41.906667pt;}
.x84{left:43.200000pt;}
.x14{left:44.560000pt;}
.x7c{left:45.866667pt;}
.x1d{left:47.226667pt;}
.x25{left:48.560000pt;}
.x1a{left:50.400000pt;}
.xa4{left:51.466667pt;}
.x9e{left:52.800000pt;}
.x63{left:53.965542pt;}
.x2d{left:55.493333pt;}
.xf{left:56.833333pt;}
.x97{left:58.160000pt;}
.x32{left:60.560000pt;}
.x79{left:61.866667pt;}
.x33{left:63.240000pt;}
.xab{left:65.360000pt;}
.x9b{left:66.440000pt;}
.x9f{left:68.040000pt;}
.x96{left:69.333333pt;}
.x98{left:70.400000pt;}
.x6d{left:73.000830pt;}
.x9{left:75.500000pt;}
.xa1{left:76.800000pt;}
.x50{left:78.332804pt;}
.x34{left:79.466667pt;}
.x10{left:80.833333pt;}
.x4f{left:83.472932pt;}
.x7d{left:85.640000pt;}
.x7f{left:88.040000pt;}
.x49{left:89.247117pt;}
.xa9{left:90.706667pt;}
.x68{left:91.684088pt;}
.x67{left:92.677520pt;}
.xa7{left:93.640000pt;}
.x51{left:96.300000pt;}
.x4d{left:97.729335pt;}
.x1{left:99.233333pt;}
.xa8{left:100.826667pt;}
.xa6{left:102.706667pt;}
.x35{left:104.833333pt;}
.xac{left:107.506667pt;}
.x4c{left:109.221886pt;}
.x69{left:112.642233pt;}
.xaa{left:113.626667pt;}
.x6a{left:114.661113pt;}
.x5c{left:116.533333pt;}
.x5d{left:118.966667pt;}
.xb0{left:121.906667pt;}
.x47{left:123.658174pt;}
.xb1{left:124.840000pt;}
.x8d{left:127.226667pt;}
.x3d{left:128.300000pt;}
.x78{left:129.866667pt;}
.x5a{left:132.833333pt;}
.x6b{left:134.920521pt;}
.x13{left:136.040000pt;}
.x6c{left:136.934064pt;}
.xaf{left:137.893333pt;}
.x5e{left:139.560997pt;}
.x61{left:140.561106pt;}
.x5f{left:141.547871pt;}
.xb2{left:152.600000pt;}
.x38{left:153.893333pt;}
.xe{left:154.960000pt;}
.xad{left:156.833333pt;}
.x39{left:159.533333pt;}
.x6e{left:160.909856pt;}
.x6f{left:161.896630pt;}
.x65{left:163.496789pt;}
.x5b{left:164.866667pt;}
.x64{left:167.630544pt;}
.x3f{left:168.600000pt;}
.x66{left:169.617418pt;}
.xc{left:172.333333pt;}
.x62{left:173.591165pt;}
.x60{left:174.591264pt;}
.x8e{left:178.466667pt;}
.x8f{left:181.933333pt;}
.x46{left:184.323084pt;}
.x2{left:187.000000pt;}
.x40{left:195.266667pt;}
.xa{left:202.200000pt;}
.x8a{left:205.933333pt;}
.x48{left:208.232608pt;}
.xb{left:216.600000pt;}
.x4b{left:217.769777pt;}
.x6{left:220.866667pt;}
.x9a{left:221.940000pt;}
.x72{left:225.666667pt;}
.x5{left:228.333333pt;}
.xa0{left:229.673333pt;}
.x3e{left:235.000000pt;}
.x7a{left:236.600000pt;}
.xb3{left:243.533333pt;}
.xa2{left:247.000000pt;}
.x45{left:249.205133pt;}
.x3{left:258.200000pt;}
.x36{left:267.840000pt;}
.x7{left:269.706667pt;}
.xd{left:275.040000pt;}
.x75{left:283.573333pt;}
.x76{left:287.040000pt;}
.x80{left:288.640000pt;}
.x77{left:298.240000pt;}
.x37{left:300.106667pt;}
.x4{left:303.026667pt;}
.x7b{left:305.973333pt;}
.x90{left:312.373333pt;}
.x15{left:315.573333pt;}
.xb4{left:318.773333pt;}
.x8b{left:320.906667pt;}
.x52{left:323.560000pt;}
.x53{left:326.240000pt;}
.x89{left:353.173333pt;}
.x94{left:357.173333pt;}
.x58{left:363.840000pt;}
.x73{left:367.026667pt;}
.x54{left:373.733333pt;}
.x55{left:376.666667pt;}
.xa3{left:377.733333pt;}
.x4e{left:380.933333pt;}
.x9c{left:383.600000pt;}
.x85{left:402.000000pt;}
.x92{left:404.933333pt;}
.x70{left:407.081800pt;}
.x8{left:420.666667pt;}
.x8c{left:424.666667pt;}
.xae{left:431.333333pt;}
.x56{left:455.066667pt;}
.x17{left:458.266667pt;}
.x57{left:463.866667pt;}
.x43{left:468.400000pt;}
.x59{left:471.866667pt;}
.x44{left:474.800000pt;}
.x93{left:479.640000pt;}
.x3a{left:483.106667pt;}
.x95{left:501.773333pt;}
.x3b{left:505.506667pt;}
.xa5{left:508.693333pt;}
.x86{left:516.973333pt;}
.x41{left:528.973333pt;}
.x9d{left:548.706667pt;}
.x81{left:561.773333pt;}
.x42{left:572.973333pt;}
.x19{left:585.533333pt;}
.x71{left:589.533333pt;}
.x88{left:616.466667pt;}
.x87{left:631.933333pt;}
.x82{left:670.866667pt;}
.x3c{left:673.000000pt;}
.x74{left:726.893333pt;}
}




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