
    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_ed68d6196b73b296f3bc48d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_a91fa9d8f15568491fb36dc4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_a0fabbadba0a638e1ebb724a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_6ba050bc1195b581eb595e5a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_9a7ac4fab0683f72656a3867.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_6d6291feca8399c020966204.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_ad78287ca8f9d928f79a2fbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.721000;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_3671f7a5307336ed1d931d26.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689453;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_8c70cd931cb49a516da59dc3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_86f15246d2f79e9a5099ec27.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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_f16a4ac122517bac1e5bedae.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_ed95d229136753c6cd07234b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8c70cd931cb49a516da59dc3.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9d496c6a879ad6c240f01eb4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_f0c72af16faa137d8d7d14eb.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_85c98177a80a6170c75d795c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.689453;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_7231ffc0f057ded5c603bbf9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;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_49b4e4aaffe7b6490ef30f4c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_eb6546a5e3da293e962ff62b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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_15b6d1c77d208ba412bc8ba2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_af96ffdf5dd098bbb3c961cb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_00a7574dc4007b2b815b6b49.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d413bb2b3c0b776bb5aaa2ce.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a6629bee4c36437c394f338b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.844727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_78a1610a2322dc4016d78888.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_20cc60c9dc37a3bfb4c4cceb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_05b8315870fb28cb8b891df5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.893555;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:ff1c;src:url('chunks/assets/font_ed5c1ae02a4b93b193b64658.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.910156;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:ff1d;src:url('chunks/assets/font_34447a181cf20abedb4943a1.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.891602;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:ff1e;src:url('chunks/assets/font_cdf02c97cdfce1590bb606dd.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_3ce8ffd1f1adb2ccad2609a7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910156;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;}
.m1{transform:matrix(0.146878,0.202304,-0.202304,0.146878,0,0);-ms-transform:matrix(0.146878,0.202304,-0.202304,0.146878,0,0);-webkit-transform:matrix(0.146878,0.202304,-0.202304,0.146878,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.000000px;}
.v4{vertical-align:18.180000px;}
.v1{vertical-align:21.816000px;}
.ls7{letter-spacing:-0.024000px;}
.lsa{letter-spacing:-0.012000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.030000px;}
.ls4{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.042000px;}
.lsc{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.060000px;}
.lse{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.078000px;}
.ls5{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.096000px;}
.ls10{letter-spacing:45.864000px;}
.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;}
}
.wse8{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsd4{word-spacing:-16.500000px;}
.wse7{word-spacing:-15.000000px;}
.ws3b{word-spacing:-14.916000px;}
.ws1{word-spacing:-12.720000px;}
.wsea{word-spacing:-12.204000px;}
.wsdd{word-spacing:-12.000000px;}
.wse9{word-spacing:-9.750000px;}
.wseb{word-spacing:-4.800000px;}
.wsc{word-spacing:-0.084000px;}
.ws36{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws44{word-spacing:0.066000px;}
.ws74{word-spacing:0.072000px;}
.ws83{word-spacing:0.144000px;}
.wsa8{word-spacing:0.288000px;}
.wsa7{word-spacing:0.360000px;}
.ws9e{word-spacing:0.432000px;}
.ws9d{word-spacing:0.504000px;}
.ws28{word-spacing:0.648000px;}
.ws16{word-spacing:0.720000px;}
.ws17{word-spacing:0.792000px;}
.ws38{word-spacing:0.936000px;}
.ws37{word-spacing:1.008000px;}
.ws97{word-spacing:1.080000px;}
.ws98{word-spacing:1.152000px;}
.ws9c{word-spacing:1.584000px;}
.ws9b{word-spacing:1.656000px;}
.wse0{word-spacing:1.800000px;}
.wse1{word-spacing:1.872000px;}
.ws63{word-spacing:1.944000px;}
.ws62{word-spacing:2.016000px;}
.ws6e{word-spacing:2.160000px;}
.ws52{word-spacing:2.232000px;}
.ws51{word-spacing:2.304000px;}
.ws4d{word-spacing:3.240000px;}
.ws4e{word-spacing:3.312000px;}
.ws65{word-spacing:3.456000px;}
.ws64{word-spacing:3.528000px;}
.ws77{word-spacing:3.816000px;}
.ws76{word-spacing:3.888000px;}
.ws2e{word-spacing:4.104000px;}
.ws2d{word-spacing:4.176000px;}
.wsce{word-spacing:4.248000px;}
.ws41{word-spacing:4.320000px;}
.wsde{word-spacing:4.464000px;}
.wsdf{word-spacing:4.536000px;}
.wsba{word-spacing:4.608000px;}
.wsa{word-spacing:4.680000px;}
.wsb{word-spacing:4.752000px;}
.ws2f{word-spacing:4.968000px;}
.ws30{word-spacing:5.040000px;}
.ws7a{word-spacing:5.112000px;}
.ws75{word-spacing:5.184000px;}
.ws4f{word-spacing:5.256000px;}
.ws50{word-spacing:5.328000px;}
.ws3f{word-spacing:5.760000px;}
.ws3e{word-spacing:5.832000px;}
.wsc0{word-spacing:5.904000px;}
.wsd2{word-spacing:5.976000px;}
.wsd1{word-spacing:6.048000px;}
.ws9f{word-spacing:6.120000px;}
.wsd8{word-spacing:6.138000px;}
.ws67{word-spacing:6.192000px;}
.ws66{word-spacing:6.264000px;}
.ws49{word-spacing:6.336000px;}
.ws4a{word-spacing:6.408000px;}
.wsd0{word-spacing:6.480000px;}
.ws92{word-spacing:6.552000px;}
.ws32{word-spacing:6.624000px;}
.ws31{word-spacing:6.696000px;}
.wsa9{word-spacing:6.840000px;}
.wsbc{word-spacing:6.912000px;}
.ws7e{word-spacing:6.984000px;}
.ws87{word-spacing:7.056000px;}
.ws7b{word-spacing:7.128000px;}
.ws70{word-spacing:7.200000px;}
.ws71{word-spacing:7.272000px;}
.ws99{word-spacing:7.416000px;}
.ws9a{word-spacing:7.488000px;}
.ws58{word-spacing:7.704000px;}
.ws59{word-spacing:7.776000px;}
.ws6c{word-spacing:7.848000px;}
.wsaf{word-spacing:7.920000px;}
.ws9{word-spacing:7.992000px;}
.wsa1{word-spacing:8.064000px;}
.ws22{word-spacing:8.136000px;}
.ws21{word-spacing:8.208000px;}
.ws95{word-spacing:8.280000px;}
.wscd{word-spacing:8.352000px;}
.wsb9{word-spacing:8.424000px;}
.ws8a{word-spacing:8.496000px;}
.wsb4{word-spacing:8.568000px;}
.wsb3{word-spacing:8.640000px;}
.ws5e{word-spacing:8.856000px;}
.ws5f{word-spacing:8.928000px;}
.wscc{word-spacing:9.000000px;}
.ws7f{word-spacing:9.144000px;}
.ws80{word-spacing:9.216000px;}
.wsdc{word-spacing:9.288000px;}
.wsc6{word-spacing:9.360000px;}
.wsc7{word-spacing:9.432000px;}
.ws34{word-spacing:9.576000px;}
.ws35{word-spacing:9.648000px;}
.ws6f{word-spacing:9.792000px;}
.ws8b{word-spacing:9.864000px;}
.ws5c{word-spacing:10.008000px;}
.wsa2{word-spacing:10.152000px;}
.wsbb{word-spacing:10.296000px;}
.wsc3{word-spacing:10.728000px;}
.wsc2{word-spacing:10.800000px;}
.ws48{word-spacing:10.872000px;}
.ws47{word-spacing:10.944000px;}
.wsa4{word-spacing:11.016000px;}
.ws4{word-spacing:11.088000px;}
.ws3{word-spacing:11.160000px;}
.ws84{word-spacing:11.232000px;}
.wsda{word-spacing:11.286000px;}
.wse2{word-spacing:11.304000px;}
.wsd9{word-spacing:11.352000px;}
.ws6d{word-spacing:11.520000px;}
.wsf{word-spacing:11.808000px;}
.ws10{word-spacing:11.880000px;}
.ws60{word-spacing:11.952000px;}
.ws61{word-spacing:12.024000px;}
.ws5d{word-spacing:12.168000px;}
.ws2c{word-spacing:12.312000px;}
.ws25{word-spacing:12.384000px;}
.ws18{word-spacing:12.456000px;}
.ws19{word-spacing:12.528000px;}
.wsa3{word-spacing:12.672000px;}
.ws53{word-spacing:12.744000px;}
.ws54{word-spacing:12.816000px;}
.wsd{word-spacing:13.248000px;}
.wse{word-spacing:13.320000px;}
.ws1d{word-spacing:13.392000px;}
.wsbd{word-spacing:13.464000px;}
.ws79{word-spacing:13.536000px;}
.wscf{word-spacing:13.608000px;}
.ws13{word-spacing:13.968000px;}
.wsc4{word-spacing:14.184000px;}
.ws1f{word-spacing:14.472000px;}
.ws20{word-spacing:14.544000px;}
.ws1e{word-spacing:14.760000px;}
.wsb8{word-spacing:14.904000px;}
.ws5a{word-spacing:15.048000px;}
.ws5b{word-spacing:15.120000px;}
.ws68{word-spacing:15.192000px;}
.ws69{word-spacing:15.264000px;}
.ws1a{word-spacing:15.336000px;}
.ws1b{word-spacing:15.408000px;}
.ws23{word-spacing:15.552000px;}
.ws24{word-spacing:15.624000px;}
.wsa0{word-spacing:15.840000px;}
.ws57{word-spacing:15.984000px;}
.ws96{word-spacing:16.128000px;}
.wsc9{word-spacing:16.344000px;}
.ws40{word-spacing:16.416000px;}
.wsb0{word-spacing:16.560000px;}
.wse3{word-spacing:16.632000px;}
.ws56{word-spacing:16.704000px;}
.ws55{word-spacing:16.776000px;}
.ws29{word-spacing:16.992000px;}
.ws81{word-spacing:17.208000px;}
.wsac{word-spacing:17.226000px;}
.ws82{word-spacing:17.280000px;}
.wse5{word-spacing:17.352000px;}
.wse4{word-spacing:17.424000px;}
.ws12{word-spacing:17.568000px;}
.ws11{word-spacing:17.640000px;}
.ws8f{word-spacing:17.784000px;}
.ws8e{word-spacing:17.856000px;}
.ws90{word-spacing:17.928000px;}
.ws91{word-spacing:18.000000px;}
.ws14{word-spacing:18.144000px;}
.ws15{word-spacing:18.216000px;}
.wsb5{word-spacing:18.288000px;}
.wsb6{word-spacing:18.360000px;}
.ws89{word-spacing:18.432000px;}
.ws88{word-spacing:18.504000px;}
.ws42{word-spacing:18.792000px;}
.ws43{word-spacing:18.864000px;}
.ws2a{word-spacing:19.224000px;}
.ws2b{word-spacing:19.296000px;}
.ws3a{word-spacing:19.512000px;}
.ws39{word-spacing:19.584000px;}
.wsd6{word-spacing:19.656000px;}
.wsd7{word-spacing:19.728000px;}
.ws6b{word-spacing:19.800000px;}
.ws6a{word-spacing:19.872000px;}
.ws4b{word-spacing:20.160000px;}
.ws4c{word-spacing:20.232000px;}
.ws26{word-spacing:21.240000px;}
.ws27{word-spacing:21.312000px;}
.ws1c{word-spacing:21.384000px;}
.wsdb{word-spacing:21.744000px;}
.wsb2{word-spacing:21.960000px;}
.wsb1{word-spacing:22.032000px;}
.ws94{word-spacing:22.248000px;}
.ws93{word-spacing:22.320000px;}
.wsae{word-spacing:22.536000px;}
.wsad{word-spacing:22.608000px;}
.ws7c{word-spacing:22.968000px;}
.wsb7{word-spacing:23.040000px;}
.wsca{word-spacing:23.112000px;}
.wse6{word-spacing:23.616000px;}
.wsc1{word-spacing:24.192000px;}
.wsa6{word-spacing:24.408000px;}
.wsa5{word-spacing:24.480000px;}
.ws8d{word-spacing:24.552000px;}
.ws8c{word-spacing:24.624000px;}
.ws72{word-spacing:25.056000px;}
.ws73{word-spacing:25.128000px;}
.ws78{word-spacing:25.200000px;}
.wsaa{word-spacing:26.352000px;}
.wsab{word-spacing:26.424000px;}
.wsbe{word-spacing:26.496000px;}
.wsbf{word-spacing:26.568000px;}
.wsc8{word-spacing:27.000000px;}
.ws7d{word-spacing:27.072000px;}
.ws33{word-spacing:27.360000px;}
.wsc5{word-spacing:28.224000px;}
.ws6{word-spacing:28.584000px;}
.ws5{word-spacing:28.656000px;}
.ws46{word-spacing:28.728000px;}
.ws45{word-spacing:28.800000px;}
.wscb{word-spacing:34.416000px;}
.ws85{word-spacing:35.280000px;}
.ws86{word-spacing:35.352000px;}
.wsd3{word-spacing:38.448000px;}
.wsd5{word-spacing:39.744000px;}
.ws8{word-spacing:40.248000px;}
.ws7{word-spacing:40.320000px;}
.ws3d{word-spacing:47.664000px;}
.ws3c{word-spacing:47.736000px;}
._10{margin-left:-1.062000px;}
._b{width:1.404000px;}
._d{width:2.417976px;}
._e{width:3.450096px;}
._3{width:4.716000px;}
._9{width:6.078000px;}
._2{width:7.314000px;}
._7{width:8.460000px;}
._4{width:9.684000px;}
._0{width:10.710000px;}
._5{width:12.258000px;}
._a{width:14.094000px;}
._c{width:15.312000px;}
._8{width:16.488000px;}
._16{width:18.096000px;}
._12{width:19.290072px;}
._f{width:20.399976px;}
._6{width:21.456000px;}
._15{width:22.968000px;}
._1a{width:24.006024px;}
._14{width:25.025976px;}
._11{width:27.102000px;}
._17{width:28.224000px;}
._1c{width:29.736000px;}
._27{width:30.768000px;}
._18{width:34.344000px;}
._22{width:36.072000px;}
._19{width:38.190000px;}
._1{width:39.558000px;}
._26{width:40.728000px;}
._23{width:44.496000px;}
._1b{width:45.792000px;}
._13{width:47.664000px;}
._1e{width:49.032000px;}
._20{width:50.184000px;}
._21{width:51.768000px;}
._25{width:54.600000px;}
._1f{width:59.328000px;}
._24{width:64.080000px;}
._1d{width:123.696000px;}
.fc3{color:transparent;}
.fc2{color:rgb(214,241,254);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:287.994368px;}
.y1f9{bottom:-251.160000px;}
.y1f8{bottom:-233.160000px;}
.y1f7{bottom:-215.160000px;}
.y1f6{bottom:-197.160000px;}
.y1f5{bottom:-179.160000px;}
.y1f4{bottom:-161.160000px;}
.y1f3{bottom:-143.160000px;}
.y1f2{bottom:-125.160000px;}
.y1f1{bottom:-107.160000px;}
.y1f0{bottom:-89.160000px;}
.y1ef{bottom:-71.160000px;}
.y1ee{bottom:-53.160000px;}
.y1ed{bottom:-35.160000px;}
.y1ec{bottom:-17.160000px;}
.y1bc{bottom:-15.290655px;}
.y1b5{bottom:-13.845363px;}
.y0{bottom:0.000000px;}
.y1bb{bottom:0.198055px;}
.y1b0{bottom:0.498006px;}
.y1eb{bottom:0.840000px;}
.y1ac{bottom:1.067221px;}
.y1aa{bottom:1.113704px;}
.y1b4{bottom:1.510546px;}
.y1b9{bottom:3.658845px;}
.y1b7{bottom:3.835063px;}
.y1ae{bottom:3.976697px;}
.y1b2{bottom:5.104137px;}
.y167{bottom:7.330440px;}
.y160{bottom:7.330443px;}
.y193{bottom:7.330448px;}
.y18b{bottom:7.330451px;}
.y186{bottom:7.330452px;}
.y183{bottom:7.330454px;}
.y17d{bottom:7.330455px;}
.y17a{bottom:7.330456px;}
.y156{bottom:7.330457px;}
.y13d{bottom:7.330459px;}
.y14a{bottom:7.330461px;}
.y145{bottom:7.330462px;}
.y141{bottom:7.330464px;}
.y17f{bottom:7.330466px;}
.y15d{bottom:7.330467px;}
.y152{bottom:7.330471px;}
.y18e{bottom:7.330473px;}
.y1a0{bottom:7.330476px;}
.y159{bottom:7.330479px;}
.y195{bottom:7.330482px;}
.y13a{bottom:7.745959px;}
.y14e{bottom:8.248461px;}
.y198{bottom:8.551458px;}
.y199{bottom:9.770958px;}
.y22f{bottom:13.367916px;}
.y21b{bottom:13.367938px;}
.y21e{bottom:13.367942px;}
.y220{bottom:13.367945px;}
.y210{bottom:13.367950px;}
.y228{bottom:13.367952px;}
.y212{bottom:13.367953px;}
.y202{bottom:13.367956px;}
.y200{bottom:13.367959px;}
.y1fb{bottom:13.367960px;}
.y136{bottom:13.367962px;}
.y207{bottom:13.367963px;}
.y20b{bottom:13.367966px;}
.y223{bottom:13.367970px;}
.y20d{bottom:13.367971px;}
.y225{bottom:13.367973px;}
.y215{bottom:13.367978px;}
.y218{bottom:13.367981px;}
.y22b{bottom:13.368001px;}
.y150{bottom:15.263961px;}
.y162{bottom:16.330443px;}
.y168{bottom:17.248440px;}
.y157{bottom:17.248457px;}
.y13e{bottom:17.248459px;}
.y14c{bottom:17.248461px;}
.y146{bottom:17.248462px;}
.y142{bottom:17.248464px;}
.y15b{bottom:17.248467px;}
.y1ea{bottom:18.840000px;}
.yd3{bottom:24.572963px;}
.y163{bottom:26.248443px;}
.y134{bottom:26.303962px;}
.y1fd{bottom:26.345959px;}
.y166{bottom:27.164940px;}
.y15f{bottom:27.164943px;}
.y155{bottom:27.164957px;}
.y13c{bottom:27.164959px;}
.y149{bottom:27.164961px;}
.y144{bottom:27.164962px;}
.y140{bottom:27.164964px;}
.y15c{bottom:27.164967px;}
.y139{bottom:27.580459px;}
.y137{bottom:33.202462px;}
.y161{bottom:36.164943px;}
.y14f{bottom:36.265461px;}
.y1e9{bottom:36.840000px;}
.y14b{bottom:37.082961px;}
.y191{bottom:38.207950px;}
.y189{bottom:38.207953px;}
.y181{bottom:38.207955px;}
.y178{bottom:38.207958px;}
.y172{bottom:38.207961px;}
.y1a2{bottom:38.207966px;}
.y22e{bottom:39.239916px;}
.y21a{bottom:39.239938px;}
.y21d{bottom:39.239942px;}
.y20f{bottom:39.239950px;}
.y227{bottom:39.239952px;}
.y239{bottom:39.239953px;}
.y235{bottom:39.239956px;}
.y1ff{bottom:39.239959px;}
.y232{bottom:39.239960px;}
.y135{bottom:39.239962px;}
.y206{bottom:39.239963px;}
.y20a{bottom:39.239966px;}
.y222{bottom:39.239970px;}
.y214{bottom:39.239978px;}
.y217{bottom:39.239981px;}
.y22a{bottom:39.240001px;}
.y19b{bottom:39.427465px;}
.y14d{bottom:46.082961px;}
.y148{bottom:46.999461px;}
.y1e8{bottom:54.840000px;}
.y237{bottom:65.111960px;}
.y209{bottom:65.111966px;}
.y1e7{bottom:72.840000px;}
.y1e6{bottom:90.840000px;}
.y1ba{bottom:108.745445px;}
.y1e5{bottom:108.840000px;}
.y4c{bottom:118.740000px;}
.y1e4{bottom:126.840000px;}
.y22d{bottom:126.936084px;}
.y4b{bottom:136.740000px;}
.y1e3{bottom:144.840000px;}
.y4a{bottom:154.740000px;}
.y1e2{bottom:162.840000px;}
.y1b8{bottom:169.517655px;}
.y49{bottom:172.740000px;}
.y22c{bottom:178.680042px;}
.y1e1{bottom:180.840000px;}
.y48{bottom:190.740000px;}
.y1e0{bottom:198.840000px;}
.y47{bottom:208.740000px;}
.y1df{bottom:216.840000px;}
.yf4{bottom:221.611500px;}
.y5c{bottom:224.611500px;}
.y46{bottom:226.740000px;}
.y229{bottom:230.423999px;}
.y1de{bottom:234.840000px;}
.y93{bottom:239.611500px;}
.y45{bottom:244.740000px;}
.y17{bottom:247.720500px;}
.y8c{bottom:251.007000px;}
.yb7{bottom:251.008500px;}
.y1dd{bottom:252.840000px;}
.yde{bottom:254.953500px;}
.y1b6{bottom:261.354436px;}
.y44{bottom:262.740000px;}
.yf3{bottom:263.008500px;}
.y5b{bottom:266.008500px;}
.y1dc{bottom:270.840000px;}
.y43{bottom:280.740000px;}
.y92{bottom:281.008500px;}
.y226{bottom:282.168048px;}
.y16b{bottom:285.439500px;}
.y1db{bottom:288.840000px;}
.y16{bottom:289.117500px;}
.y1a8{bottom:290.091000px;}
.y8b{bottom:292.404000px;}
.yb6{bottom:292.405500px;}
.y121{bottom:295.405500px;}
.ydd{bottom:296.350500px;}
.y42{bottom:298.740000px;}
.y16a{bottom:302.688000px;}
.yf2{bottom:304.405500px;}
.y1da{bottom:306.840000px;}
.y5a{bottom:307.405500px;}
.y41{bottom:316.740000px;}
.y169{bottom:319.936500px;}
.y91{bottom:322.405500px;}
.y1d9{bottom:324.840000px;}
.y15{bottom:330.514500px;}
.y8a{bottom:333.801000px;}
.yb5{bottom:333.802500px;}
.y224{bottom:333.912027px;}
.y40{bottom:334.740000px;}
.y120{bottom:336.802500px;}
.ydc{bottom:337.747500px;}
.y1a9{bottom:342.066796px;}
.y1d8{bottom:342.840000px;}
.yf1{bottom:345.802500px;}
.y59{bottom:348.802500px;}
.y165{bottom:351.190560px;}
.y3f{bottom:352.740000px;}
.y221{bottom:359.784030px;}
.y1d7{bottom:360.840000px;}
.y90{bottom:363.802500px;}
.y3e{bottom:370.740000px;}
.y14{bottom:371.911500px;}
.y89{bottom:375.198000px;}
.yb4{bottom:375.199500px;}
.y11f{bottom:378.199500px;}
.y1d6{bottom:378.840000px;}
.ydb{bottom:379.144500px;}
.yf0{bottom:387.199500px;}
.y3d{bottom:388.740000px;}
.y58{bottom:390.199500px;}
.y1d5{bottom:396.840000px;}
.y8f{bottom:405.199500px;}
.y3c{bottom:406.740000px;}
.y164{bottom:408.859536px;}
.y21f{bottom:411.528055px;}
.y1ab{bottom:412.569779px;}
.y13{bottom:413.308500px;}
.y1d4{bottom:414.840000px;}
.y88{bottom:416.595000px;}
.yb3{bottom:416.596500px;}
.y11e{bottom:419.596500px;}
.yda{bottom:420.541500px;}
.y3b{bottom:424.740000px;}
.y1a7{bottom:425.889000px;}
.yef{bottom:428.596500px;}
.y57{bottom:431.596500px;}
.y1d3{bottom:432.840000px;}
.y21c{bottom:437.400058px;}
.y3a{bottom:442.740000px;}
.y8e{bottom:446.596500px;}
.y1d2{bottom:450.840000px;}
.y12{bottom:454.705500px;}
.y87{bottom:457.992000px;}
.yb2{bottom:457.993500px;}
.y39{bottom:460.740000px;}
.y11d{bottom:460.993500px;}
.yd9{bottom:461.938500px;}
.y15e{bottom:466.528557px;}
.y1d1{bottom:468.840000px;}
.yee{bottom:469.993500px;}
.y56{bottom:472.993500px;}
.y38{bottom:478.740000px;}
.y1d0{bottom:486.840000px;}
.y8d{bottom:487.993500px;}
.y219{bottom:489.144062px;}
.y1b3{bottom:493.889954px;}
.y37{bottom:496.740000px;}
.y86{bottom:499.389000px;}
.yb1{bottom:499.390500px;}
.y11c{bottom:502.390500px;}
.yd8{bottom:503.335500px;}
.y1cf{bottom:504.840000px;}
.yed{bottom:511.390500px;}
.y11{bottom:513.121500px;}
.yc0{bottom:514.390500px;}
.y36{bottom:514.740000px;}
.y1ce{bottom:522.840000px;}
.y15a{bottom:524.197533px;}
.y55{bottom:529.390500px;}
.y1a1{bottom:531.882034px;}
.y1a3{bottom:531.882036px;}
.y35{bottom:532.740000px;}
.y85{bottom:540.786000px;}
.y1cd{bottom:540.840000px;}
.y216{bottom:540.888019px;}
.y10{bottom:544.168350px;}
.yd7{bottom:544.732500px;}
.y34{bottom:550.740000px;}
.y19f{bottom:552.466524px;}
.yec{bottom:552.787500px;}
.yb0{bottom:555.787500px;}
.y1b1{bottom:558.316863px;}
.y1cc{bottom:558.840000px;}
.y33{bottom:568.740000px;}
.y54{bottom:570.787500px;}
.y19e{bottom:573.051057px;}
.y1cb{bottom:576.840000px;}
.y158{bottom:581.866521px;}
.y84{bottom:582.183000px;}
.yf{bottom:584.215350px;}
.yd6{bottom:586.129500px;}
.y32{bottom:586.740000px;}
.y213{bottom:592.632022px;}
.y19d{bottom:593.635545px;}
.y11b{bottom:594.184500px;}
.y102{bottom:594.186000px;}
.y1ca{bottom:594.840000px;}
.y1a6{bottom:595.636500px;}
.ybf{bottom:597.183000px;}
.y12c{bottom:597.184500px;}
.y31{bottom:604.740000px;}
.ya1{bottom:612.177000px;}
.y113{bottom:612.183000px;}
.yaf{bottom:612.184500px;}
.y110{bottom:612.187500px;}
.y1c9{bottom:612.840000px;}
.y19c{bottom:614.220033px;}
.y19a{bottom:614.220035px;}
.ye{bottom:615.262350px;}
.y154{bottom:619.701043px;}
.y30{bottom:622.740000px;}
.y83{bottom:623.580000px;}
.yeb{bottom:627.933000px;}
.y1c8{bottom:630.840000px;}
.y197{bottom:634.804542px;}
.y11a{bottom:635.581500px;}
.y101{bottom:635.583000px;}
.ybe{bottom:638.580000px;}
.y12b{bottom:638.581500px;}
.y2f{bottom:640.740000px;}
.y211{bottom:644.376047px;}
.yd{bottom:646.309350px;}
.y1c7{bottom:648.840000px;}
.y112{bottom:653.580000px;}
.yae{bottom:653.581500px;}
.y10f{bottom:653.584500px;}
.ya0{bottom:653.737500px;}
.y196{bottom:657.829530px;}
.y2e{bottom:658.740000px;}
.y82{bottom:664.977000px;}
.y1af{bottom:665.062494px;}
.y1c6{bottom:666.840000px;}
.yea{bottom:669.330000px;}
.y20e{bottom:670.248050px;}
.y2d{bottom:676.740000px;}
.y119{bottom:676.978500px;}
.y100{bottom:676.980000px;}
.yc{bottom:677.356350px;}
.y153{bottom:677.370042px;}
.y194{bottom:678.414018px;}
.ybd{bottom:679.977000px;}
.y12a{bottom:679.978500px;}
.y1c5{bottom:684.840000px;}
.y2c{bottom:694.740000px;}
.y111{bottom:694.977000px;}
.yad{bottom:694.978500px;}
.y10e{bottom:694.981500px;}
.y9f{bottom:695.298000px;}
.y190{bottom:698.998550px;}
.y192{bottom:698.998552px;}
.y1c4{bottom:702.840000px;}
.y81{bottom:706.374000px;}
.yb{bottom:708.403350px;}
.ye9{bottom:710.727000px;}
.y2b{bottom:712.740000px;}
.yff{bottom:718.377000px;}
.y18f{bottom:719.583040px;}
.y1c3{bottom:720.840000px;}
.ybc{bottom:721.374000px;}
.y129{bottom:721.375500px;}
.y20c{bottom:721.992029px;}
.y1ad{bottom:726.650803px;}
.y118{bottom:727.376100px;}
.y2a{bottom:730.740000px;}
.y151{bottom:735.039029px;}
.yc9{bottom:736.374000px;}
.yac{bottom:736.375500px;}
.y10d{bottom:736.378500px;}
.y9e{bottom:736.858500px;}
.y1c2{bottom:738.840000px;}
.ya{bottom:739.450350px;}
.y18d{bottom:740.167527px;}
.y80{bottom:747.771000px;}
.y208{bottom:747.864034px;}
.y29{bottom:748.740000px;}
.ye8{bottom:752.124000px;}
.y1c1{bottom:756.840000px;}
.yfe{bottom:759.774000px;}
.y18c{bottom:760.752038px;}
.ybb{bottom:762.771000px;}
.y128{bottom:762.772500px;}
.y28{bottom:766.740000px;}
.y117{bottom:770.124000px;}
.y9{bottom:770.497350px;}
.y23d{bottom:770.988000px;}
.y147{bottom:772.873539px;}
.y1c0{bottom:774.840000px;}
.yc8{bottom:777.771000px;}
.yab{bottom:777.772500px;}
.y10c{bottom:777.775500px;}
.y9d{bottom:778.419000px;}
.y188{bottom:781.336547px;}
.y18a{bottom:781.336549px;}
.y27{bottom:784.740000px;}
.y23c{bottom:788.236500px;}
.y7f{bottom:789.168000px;}
.y1bf{bottom:792.840000px;}
.ye7{bottom:793.521000px;}
.y1a5{bottom:799.333500px;}
.yfd{bottom:801.171000px;}
.y8{bottom:801.544350px;}
.y187{bottom:801.921037px;}
.y26{bottom:802.740000px;}
.yba{bottom:804.168000px;}
.y127{bottom:804.169500px;}
.y23b{bottom:805.485000px;}
.y1be{bottom:810.840000px;}
.y23a{bottom:818.739044px;}
.yc7{bottom:819.168000px;}
.yaa{bottom:819.169500px;}
.y10b{bottom:819.172500px;}
.y9c{bottom:819.979500px;}
.y25{bottom:820.740000px;}
.y185{bottom:822.505548px;}
.y205{bottom:825.480037px;}
.y7e{bottom:830.565000px;}
.y7{bottom:832.591350px;}
.y1a4{bottom:834.639000px;}
.y24{bottom:838.740000px;}
.yfc{bottom:842.568000px;}
.y184{bottom:843.090036px;}
.yb9{bottom:845.565000px;}
.y126{bottom:845.566500px;}
.y143{bottom:850.377038px;}
.ye6{bottom:852.918000px;}
.y23{bottom:856.740000px;}
.yc6{bottom:860.565000px;}
.ya9{bottom:860.566500px;}
.y10a{bottom:860.569500px;}
.yd1{bottom:860.820000px;}
.y9b{bottom:861.540000px;}
.y6{bottom:863.638350px;}
.y180{bottom:863.674545px;}
.y182{bottom:863.674547px;}
.y1bd{bottom:864.840000px;}
.y238{bottom:870.483047px;}
.y7d{bottom:871.962000px;}
.y22{bottom:874.740000px;}
.y204{bottom:877.224040px;}
.yfb{bottom:883.965000px;}
.y17e{bottom:884.259034px;}
.yb8{bottom:886.962000px;}
.y125{bottom:886.963500px;}
.y76{bottom:888.586800px;}
.y6c{bottom:891.624000px;}
.y21{bottom:892.740000px;}
.ye5{bottom:894.315000px;}
.y5{bottom:894.685350px;}
.yc5{bottom:901.962000px;}
.ya8{bottom:901.963500px;}
.y109{bottom:901.966500px;}
.yd0{bottom:902.470500px;}
.y9a{bottom:903.100500px;}
.y17c{bottom:904.843545px;}
.y13f{bottom:908.046036px;}
.y20{bottom:910.740000px;}
.y6b{bottom:913.224000px;}
.y236{bottom:922.227040px;}
.yfa{bottom:925.362000px;}
.y17b{bottom:925.428033px;}
.y4{bottom:925.732350px;}
.y7c{bottom:928.359000px;}
.y124{bottom:928.360500px;}
.y1f{bottom:928.740000px;}
.y203{bottom:928.968042px;}
.y6a{bottom:934.824000px;}
.ye4{bottom:935.712000px;}
.yc4{bottom:943.359000px;}
.ya7{bottom:943.360500px;}
.y108{bottom:943.689000px;}
.ycf{bottom:944.121000px;}
.y99{bottom:944.661000px;}
.y177{bottom:946.012542px;}
.y179{bottom:946.012544px;}
.y1e{bottom:946.740000px;}
.y201{bottom:954.840044px;}
.y69{bottom:956.424000px;}
.y3{bottom:956.779500px;}
.y1d{bottom:964.740000px;}
.y13b{bottom:965.715041px;}
.y176{bottom:966.597043px;}
.y7b{bottom:969.756000px;}
.y123{bottom:969.757500px;}
.ye3{bottom:977.109000px;}
.y68{bottom:978.024000px;}
.y116{bottom:980.607000px;}
.y1fe{bottom:980.712041px;}
.y1c{bottom:982.740000px;}
.yc3{bottom:984.756000px;}
.ya6{bottom:984.757500px;}
.yf9{bottom:984.759000px;}
.y107{bottom:985.411500px;}
.yce{bottom:985.771500px;}
.y98{bottom:986.221500px;}
.y175{bottom:987.181543px;}
.y2{bottom:987.826500px;}
.y115{bottom:999.580500px;}
.y67{bottom:999.624000px;}
.y234{bottom:999.843044px;}
.y1b{bottom:1000.740000px;}
.y174{bottom:1007.766042px;}
.y7a{bottom:1011.153000px;}
.y122{bottom:1011.154500px;}
.y114{bottom:1018.554000px;}
.y1a{bottom:1018.740000px;}
.y1{bottom:1018.873500px;}
.y66{bottom:1021.224000px;}
.y138{bottom:1023.384041px;}
.yc2{bottom:1026.153000px;}
.ya5{bottom:1026.154500px;}
.ye2{bottom:1026.156000px;}
.yf8{bottom:1026.612000px;}
.y106{bottom:1027.134000px;}
.ycd{bottom:1027.422000px;}
.y97{bottom:1027.782000px;}
.y171{bottom:1028.350539px;}
.y173{bottom:1028.350541px;}
.y1fc{bottom:1032.456041px;}
.y75{bottom:1036.740000px;}
.y65{bottom:1042.824000px;}
.y131{bottom:1046.197500px;}
.y170{bottom:1048.935041px;}
.y233{bottom:1051.587040px;}
.y79{bottom:1052.550000px;}
.y19{bottom:1054.533000px;}
.y74{bottom:1054.740000px;}
.y64{bottom:1064.424000px;}
.y133{bottom:1064.634038px;}
.yc1{bottom:1067.550000px;}
.ya4{bottom:1067.551500px;}
.ye1{bottom:1068.123000px;}
.yf7{bottom:1068.465000px;}
.y105{bottom:1068.856500px;}
.ycc{bottom:1069.072500px;}
.y96{bottom:1069.342500px;}
.y16f{bottom:1069.519540px;}
.y1fa{bottom:1072.056040px;}
.y73{bottom:1072.740000px;}
.y231{bottom:1077.459040px;}
.y63{bottom:1086.024000px;}
.y130{bottom:1087.594500px;}
.y16e{bottom:1090.104039px;}
.y72{bottom:1090.740000px;}
.y18{bottom:1090.755000px;}
.y62{bottom:1107.624000px;}
.y71{bottom:1108.740000px;}
.y78{bottom:1108.947000px;}
.yd5{bottom:1108.948500px;}
.ya3{bottom:1109.709000px;}
.ye0{bottom:1110.090000px;}
.yf6{bottom:1110.318000px;}
.y104{bottom:1110.579000px;}
.y16d{bottom:1110.688539px;}
.ycb{bottom:1110.723000px;}
.y95{bottom:1110.903000px;}
.y53{bottom:1116.232500px;}
.y70{bottom:1126.740000px;}
.y12f{bottom:1128.991500px;}
.y230{bottom:1129.203039px;}
.y61{bottom:1129.224000px;}
.y52{bottom:1134.232500px;}
.y16c{bottom:1139.770500px;}
.y132{bottom:1141.170000px;}
.y6f{bottom:1144.740000px;}
.yd4{bottom:1150.345500px;}
.y60{bottom:1150.824000px;}
.y77{bottom:1151.485500px;}
.ya2{bottom:1151.866500px;}
.ydf{bottom:1152.057000px;}
.yf5{bottom:1152.171000px;}
.y51{bottom:1152.232500px;}
.y103{bottom:1152.301500px;}
.yca{bottom:1152.373500px;}
.y94{bottom:1152.463500px;}
.y6e{bottom:1162.740000px;}
.yd2{bottom:1169.391037px;}
.y50{bottom:1170.232500px;}
.y12e{bottom:1170.388500px;}
.y5f{bottom:1172.424000px;}
.y6d{bottom:1180.740000px;}
.y4f{bottom:1188.232500px;}
.y5e{bottom:1193.964000px;}
.y4e{bottom:1206.232500px;}
.y12d{bottom:1214.007000px;}
.y4d{bottom:1224.232500px;}
.y5d{bottom:1234.740000px;}
.h2b{height:12.187500px;}
.h26{height:12.487500px;}
.h20{height:13.102500px;}
.h28{height:13.500000px;}
.h22{height:15.910500px;}
.h2a{height:17.074500px;}
.h24{height:17.392500px;}
.h27{height:18.520500px;}
.h29{height:18.679500px;}
.h17{height:22.834500px;}
.h18{height:23.584500px;}
.h1a{height:26.025000px;}
.h2c{height:28.872000px;}
.h21{height:33.257812px;}
.h1f{height:36.914062px;}
.h25{height:37.415039px;}
.h15{height:40.834500px;}
.h23{height:41.572266px;}
.h10{height:41.660156px;}
.h11{height:41.689453px;}
.h2d{height:41.850000px;}
.h5{height:43.260000px;}
.h12{height:43.500000px;}
.h6{height:44.891602px;}
.h16{height:45.278145px;}
.h1e{height:45.729492px;}
.ha{height:45.858398px;}
.h7{height:48.761719px;}
.h3{height:48.796875px;}
.hc{height:49.992188px;}
.he{height:50.024944px;}
.h2{height:50.027344px;}
.hd{height:50.029744px;}
.hf{height:54.744000px;}
.hb{height:55.144125px;}
.h4{height:56.929688px;}
.h13{height:60.669000px;}
.h14{height:80.503500px;}
.h2e{height:80.616000px;}
.h19{height:84.588000px;}
.h1b{height:87.028500px;}
.h9{height:93.459000px;}
.h8{height:207.643939px;}
.h1c{height:892.949982px;}
.h1d{height:893.250000px;}
.h0{height:1262.850037px;}
.h1{height:1263.000000px;}
.w14{width:46.200000px;}
.w20{width:46.237500px;}
.w24{width:46.252500px;}
.w13{width:46.275000px;}
.w35{width:46.620000px;}
.w1b{width:47.250000px;}
.w3d{width:47.619000px;}
.w28{width:48.132000px;}
.w18{width:48.150000px;}
.w2c{width:48.501000px;}
.w39{width:48.546000px;}
.w21{width:52.270500px;}
.w15{width:52.275000px;}
.w25{width:52.288500px;}
.w17{width:52.350000px;}
.w36{width:52.732500px;}
.w22{width:53.227500px;}
.w26{width:53.245500px;}
.w16{width:53.250000px;}
.w1c{width:53.475000px;}
.w37{width:53.701500px;}
.w3e{width:53.940000px;}
.w1d{width:54.450000px;}
.w19{width:54.525000px;}
.w29{width:54.559500px;}
.w3f{width:54.942000px;}
.w2d{width:55.006500px;}
.w3a{width:55.059000px;}
.w1a{width:55.575000px;}
.w2a{width:55.578000px;}
.w2e{width:56.037000px;}
.w3b{width:56.092500px;}
.w6{width:65.700000px;}
.w9{width:65.775000px;}
.w7{width:81.900000px;}
.w8{width:82.050000px;}
.w5{width:83.325000px;}
.w2f{width:88.924500px;}
.w1f{width:88.936500px;}
.w23{width:88.969500px;}
.w30{width:88.977000px;}
.w34{width:89.791500px;}
.wa{width:90.900000px;}
.w3c{width:92.035500px;}
.w31{width:93.166500px;}
.w27{width:93.184500px;}
.w2b{width:94.014000px;}
.w38{width:94.114500px;}
.w32{width:96.985500px;}
.wc{width:101.475000px;}
.wd{width:115.200000px;}
.we{width:116.550000px;}
.w3{width:127.200000px;}
.w4{width:129.000000px;}
.w10{width:130.050000px;}
.wf{width:145.875000px;}
.w1e{width:174.838500px;}
.w33{width:190.854000px;}
.wb{width:225.675000px;}
.w41{width:320.550000px;}
.w40{width:339.600000px;}
.w2{width:892.949977px;}
.w0{width:892.949982px;}
.w1{width:893.250000px;}
.w11{width:1262.850037px;}
.w12{width:1263.000000px;}
.x0{left:0.000000px;}
.xd{left:9.599998px;}
.x4{left:12.000000px;}
.x23{left:20.095499px;}
.x2d{left:21.180054px;}
.x50{left:22.810751px;}
.x56{left:27.322750px;}
.x7d{left:28.702642px;}
.x40{left:30.151971px;}
.x16{left:31.417505px;}
.x15{left:32.999999px;}
.x87{left:36.599996px;}
.x69{left:38.158476px;}
.x5{left:41.916000px;}
.x1a{left:47.013001px;}
.x1d{left:53.677501px;}
.x20{left:55.650001px;}
.x1f{left:63.562501px;}
.x17{left:65.785501px;}
.x42{left:82.875000px;}
.x22{left:96.600001px;}
.x21{left:106.275000px;}
.x86{left:107.325005px;}
.x41{left:116.852724px;}
.x43{left:118.557835px;}
.x2{left:127.575000px;}
.x3{left:130.279500px;}
.xb{left:132.070500px;}
.x18{left:145.200004px;}
.x44{left:152.842787px;}
.x89{left:154.575000px;}
.x24{left:166.575003px;}
.x1{left:179.398500px;}
.x6{left:181.575000px;}
.x45{left:193.822873px;}
.x6a{left:195.283974px;}
.x25{left:207.524997px;}
.x47{left:234.974987px;}
.x6b{left:236.952828px;}
.xa{left:240.673500px;}
.x26{left:248.699993px;}
.xe{left:255.674995px;}
.x19{left:258.749999px;}
.x46{left:268.971754px;}
.x48{left:270.676045px;}
.x6c{left:273.105584px;}
.x27{left:284.399992px;}
.x9{left:293.481000px;}
.x49{left:304.978489px;}
.x6d{left:307.842029px;}
.x28{left:318.674986px;}
.x4a{left:345.979489px;}
.x6e{left:349.361790px;}
.x29{left:359.699992px;}
.xf{left:381.674995px;}
.x70{left:385.812732px;}
.x2a{left:395.699989px;}
.x1b{left:401.624999px;}
.x4b{left:418.390259px;}
.x4c{left:419.989325px;}
.x6f{left:422.761179px;}
.x71{left:424.337047px;}
.x2b{left:433.724998px;}
.x88{left:443.924995px;}
.x4d{left:456.514437px;}
.x10{left:461.999999px;}
.x2c{left:470.249946px;}
.x4e{left:500.172131px;}
.x72{left:505.595561px;}
.x2e{left:513.899980px;}
.x11{left:524.699981px;}
.x68{left:529.323024px;}
.x3f{left:534.031029px;}
.x61{left:535.349996px;}
.x66{left:539.024968px;}
.x1c{left:544.499999px;}
.x3b{left:552.224955px;}
.x60{left:572.241339px;}
.x62{left:573.819700px;}
.x65{left:575.507244px;}
.x82{left:580.193614px;}
.x83{left:581.821372px;}
.x3c{left:589.124965px;}
.x8{left:590.989500px;}
.x12{left:603.599990px;}
.x63{left:610.782334px;}
.x84{left:617.740632px;}
.x3d{left:624.599958px;}
.x67{left:653.849942px;}
.x64{left:654.963013px;}
.x85{left:660.674180px;}
.x3e{left:667.049975px;}
.x13{left:682.650008px;}
.x1e{left:687.374999px;}
.x5c{left:690.524999px;}
.x7e{left:698.366343px;}
.x37{left:704.249960px;}
.x5b{left:724.502722px;}
.x5d{left:726.207817px;}
.x7c{left:732.835358px;}
.x7f{left:734.519099px;}
.x38{left:739.949936px;}
.x14{left:745.425018px;}
.x5e{left:760.492796px;}
.x80{left:769.255595px;}
.x39{left:774.224953px;}
.xc{left:796.905000px;}
.x5f{left:801.472860px;}
.x7{left:804.600000px;}
.x81{left:810.775356px;}
.x3a{left:815.174937px;}
.x57{left:842.850026px;}
.x78{left:852.667748px;}
.x33{left:856.575033px;}
.x55{left:876.827750px;}
.x58{left:878.532862px;}
.x77{left:887.136773px;}
.x79{left:888.820475px;}
.x34{left:892.274935px;}
.x59{left:912.817823px;}
.x7a{left:923.556957px;}
.x35{left:926.549874px;}
.x5a{left:953.797902px;}
.x7b{left:965.076778px;}
.x36{left:967.499965px;}
.x51{left:995.850026px;}
.x74{left:1007.639994px;}
.x2f{left:1009.575053px;}
.x4f{left:1029.827749px;}
.x52{left:1031.532862px;}
.x73{left:1042.109094px;}
.x75{left:1043.792796px;}
.x30{left:1045.274935px;}
.x53{left:1065.817823px;}
.x76{left:1078.529277px;}
.x31{left:1079.549874px;}
.x54{left:1106.797902px;}
.x32{left:1120.499965px;}
@media print{
.v2{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.000000pt;}
.v4{vertical-align:16.160000pt;}
.v1{vertical-align:19.392000pt;}
.ls7{letter-spacing:-0.021333pt;}
.lsa{letter-spacing:-0.010667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.026667pt;}
.ls4{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.037333pt;}
.lsc{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.069333pt;}
.ls5{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.085333pt;}
.ls10{letter-spacing:40.768000pt;}
.wse8{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd4{word-spacing:-14.666667pt;}
.wse7{word-spacing:-13.333333pt;}
.ws3b{word-spacing:-13.258667pt;}
.ws1{word-spacing:-11.306667pt;}
.wsea{word-spacing:-10.848000pt;}
.wsdd{word-spacing:-10.666667pt;}
.wse9{word-spacing:-8.666667pt;}
.wseb{word-spacing:-4.266667pt;}
.wsc{word-spacing:-0.074667pt;}
.ws36{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws44{word-spacing:0.058667pt;}
.ws74{word-spacing:0.064000pt;}
.ws83{word-spacing:0.128000pt;}
.wsa8{word-spacing:0.256000pt;}
.wsa7{word-spacing:0.320000pt;}
.ws9e{word-spacing:0.384000pt;}
.ws9d{word-spacing:0.448000pt;}
.ws28{word-spacing:0.576000pt;}
.ws16{word-spacing:0.640000pt;}
.ws17{word-spacing:0.704000pt;}
.ws38{word-spacing:0.832000pt;}
.ws37{word-spacing:0.896000pt;}
.ws97{word-spacing:0.960000pt;}
.ws98{word-spacing:1.024000pt;}
.ws9c{word-spacing:1.408000pt;}
.ws9b{word-spacing:1.472000pt;}
.wse0{word-spacing:1.600000pt;}
.wse1{word-spacing:1.664000pt;}
.ws63{word-spacing:1.728000pt;}
.ws62{word-spacing:1.792000pt;}
.ws6e{word-spacing:1.920000pt;}
.ws52{word-spacing:1.984000pt;}
.ws51{word-spacing:2.048000pt;}
.ws4d{word-spacing:2.880000pt;}
.ws4e{word-spacing:2.944000pt;}
.ws65{word-spacing:3.072000pt;}
.ws64{word-spacing:3.136000pt;}
.ws77{word-spacing:3.392000pt;}
.ws76{word-spacing:3.456000pt;}
.ws2e{word-spacing:3.648000pt;}
.ws2d{word-spacing:3.712000pt;}
.wsce{word-spacing:3.776000pt;}
.ws41{word-spacing:3.840000pt;}
.wsde{word-spacing:3.968000pt;}
.wsdf{word-spacing:4.032000pt;}
.wsba{word-spacing:4.096000pt;}
.wsa{word-spacing:4.160000pt;}
.wsb{word-spacing:4.224000pt;}
.ws2f{word-spacing:4.416000pt;}
.ws30{word-spacing:4.480000pt;}
.ws7a{word-spacing:4.544000pt;}
.ws75{word-spacing:4.608000pt;}
.ws4f{word-spacing:4.672000pt;}
.ws50{word-spacing:4.736000pt;}
.ws3f{word-spacing:5.120000pt;}
.ws3e{word-spacing:5.184000pt;}
.wsc0{word-spacing:5.248000pt;}
.wsd2{word-spacing:5.312000pt;}
.wsd1{word-spacing:5.376000pt;}
.ws9f{word-spacing:5.440000pt;}
.wsd8{word-spacing:5.456000pt;}
.ws67{word-spacing:5.504000pt;}
.ws66{word-spacing:5.568000pt;}
.ws49{word-spacing:5.632000pt;}
.ws4a{word-spacing:5.696000pt;}
.wsd0{word-spacing:5.760000pt;}
.ws92{word-spacing:5.824000pt;}
.ws32{word-spacing:5.888000pt;}
.ws31{word-spacing:5.952000pt;}
.wsa9{word-spacing:6.080000pt;}
.wsbc{word-spacing:6.144000pt;}
.ws7e{word-spacing:6.208000pt;}
.ws87{word-spacing:6.272000pt;}
.ws7b{word-spacing:6.336000pt;}
.ws70{word-spacing:6.400000pt;}
.ws71{word-spacing:6.464000pt;}
.ws99{word-spacing:6.592000pt;}
.ws9a{word-spacing:6.656000pt;}
.ws58{word-spacing:6.848000pt;}
.ws59{word-spacing:6.912000pt;}
.ws6c{word-spacing:6.976000pt;}
.wsaf{word-spacing:7.040000pt;}
.ws9{word-spacing:7.104000pt;}
.wsa1{word-spacing:7.168000pt;}
.ws22{word-spacing:7.232000pt;}
.ws21{word-spacing:7.296000pt;}
.ws95{word-spacing:7.360000pt;}
.wscd{word-spacing:7.424000pt;}
.wsb9{word-spacing:7.488000pt;}
.ws8a{word-spacing:7.552000pt;}
.wsb4{word-spacing:7.616000pt;}
.wsb3{word-spacing:7.680000pt;}
.ws5e{word-spacing:7.872000pt;}
.ws5f{word-spacing:7.936000pt;}
.wscc{word-spacing:8.000000pt;}
.ws7f{word-spacing:8.128000pt;}
.ws80{word-spacing:8.192000pt;}
.wsdc{word-spacing:8.256000pt;}
.wsc6{word-spacing:8.320000pt;}
.wsc7{word-spacing:8.384000pt;}
.ws34{word-spacing:8.512000pt;}
.ws35{word-spacing:8.576000pt;}
.ws6f{word-spacing:8.704000pt;}
.ws8b{word-spacing:8.768000pt;}
.ws5c{word-spacing:8.896000pt;}
.wsa2{word-spacing:9.024000pt;}
.wsbb{word-spacing:9.152000pt;}
.wsc3{word-spacing:9.536000pt;}
.wsc2{word-spacing:9.600000pt;}
.ws48{word-spacing:9.664000pt;}
.ws47{word-spacing:9.728000pt;}
.wsa4{word-spacing:9.792000pt;}
.ws4{word-spacing:9.856000pt;}
.ws3{word-spacing:9.920000pt;}
.ws84{word-spacing:9.984000pt;}
.wsda{word-spacing:10.032000pt;}
.wse2{word-spacing:10.048000pt;}
.wsd9{word-spacing:10.090667pt;}
.ws6d{word-spacing:10.240000pt;}
.wsf{word-spacing:10.496000pt;}
.ws10{word-spacing:10.560000pt;}
.ws60{word-spacing:10.624000pt;}
.ws61{word-spacing:10.688000pt;}
.ws5d{word-spacing:10.816000pt;}
.ws2c{word-spacing:10.944000pt;}
.ws25{word-spacing:11.008000pt;}
.ws18{word-spacing:11.072000pt;}
.ws19{word-spacing:11.136000pt;}
.wsa3{word-spacing:11.264000pt;}
.ws53{word-spacing:11.328000pt;}
.ws54{word-spacing:11.392000pt;}
.wsd{word-spacing:11.776000pt;}
.wse{word-spacing:11.840000pt;}
.ws1d{word-spacing:11.904000pt;}
.wsbd{word-spacing:11.968000pt;}
.ws79{word-spacing:12.032000pt;}
.wscf{word-spacing:12.096000pt;}
.ws13{word-spacing:12.416000pt;}
.wsc4{word-spacing:12.608000pt;}
.ws1f{word-spacing:12.864000pt;}
.ws20{word-spacing:12.928000pt;}
.ws1e{word-spacing:13.120000pt;}
.wsb8{word-spacing:13.248000pt;}
.ws5a{word-spacing:13.376000pt;}
.ws5b{word-spacing:13.440000pt;}
.ws68{word-spacing:13.504000pt;}
.ws69{word-spacing:13.568000pt;}
.ws1a{word-spacing:13.632000pt;}
.ws1b{word-spacing:13.696000pt;}
.ws23{word-spacing:13.824000pt;}
.ws24{word-spacing:13.888000pt;}
.wsa0{word-spacing:14.080000pt;}
.ws57{word-spacing:14.208000pt;}
.ws96{word-spacing:14.336000pt;}
.wsc9{word-spacing:14.528000pt;}
.ws40{word-spacing:14.592000pt;}
.wsb0{word-spacing:14.720000pt;}
.wse3{word-spacing:14.784000pt;}
.ws56{word-spacing:14.848000pt;}
.ws55{word-spacing:14.912000pt;}
.ws29{word-spacing:15.104000pt;}
.ws81{word-spacing:15.296000pt;}
.wsac{word-spacing:15.312000pt;}
.ws82{word-spacing:15.360000pt;}
.wse5{word-spacing:15.424000pt;}
.wse4{word-spacing:15.488000pt;}
.ws12{word-spacing:15.616000pt;}
.ws11{word-spacing:15.680000pt;}
.ws8f{word-spacing:15.808000pt;}
.ws8e{word-spacing:15.872000pt;}
.ws90{word-spacing:15.936000pt;}
.ws91{word-spacing:16.000000pt;}
.ws14{word-spacing:16.128000pt;}
.ws15{word-spacing:16.192000pt;}
.wsb5{word-spacing:16.256000pt;}
.wsb6{word-spacing:16.320000pt;}
.ws89{word-spacing:16.384000pt;}
.ws88{word-spacing:16.448000pt;}
.ws42{word-spacing:16.704000pt;}
.ws43{word-spacing:16.768000pt;}
.ws2a{word-spacing:17.088000pt;}
.ws2b{word-spacing:17.152000pt;}
.ws3a{word-spacing:17.344000pt;}
.ws39{word-spacing:17.408000pt;}
.wsd6{word-spacing:17.472000pt;}
.wsd7{word-spacing:17.536000pt;}
.ws6b{word-spacing:17.600000pt;}
.ws6a{word-spacing:17.664000pt;}
.ws4b{word-spacing:17.920000pt;}
.ws4c{word-spacing:17.984000pt;}
.ws26{word-spacing:18.880000pt;}
.ws27{word-spacing:18.944000pt;}
.ws1c{word-spacing:19.008000pt;}
.wsdb{word-spacing:19.328000pt;}
.wsb2{word-spacing:19.520000pt;}
.wsb1{word-spacing:19.584000pt;}
.ws94{word-spacing:19.776000pt;}
.ws93{word-spacing:19.840000pt;}
.wsae{word-spacing:20.032000pt;}
.wsad{word-spacing:20.096000pt;}
.ws7c{word-spacing:20.416000pt;}
.wsb7{word-spacing:20.480000pt;}
.wsca{word-spacing:20.544000pt;}
.wse6{word-spacing:20.992000pt;}
.wsc1{word-spacing:21.504000pt;}
.wsa6{word-spacing:21.696000pt;}
.wsa5{word-spacing:21.760000pt;}
.ws8d{word-spacing:21.824000pt;}
.ws8c{word-spacing:21.888000pt;}
.ws72{word-spacing:22.272000pt;}
.ws73{word-spacing:22.336000pt;}
.ws78{word-spacing:22.400000pt;}
.wsaa{word-spacing:23.424000pt;}
.wsab{word-spacing:23.488000pt;}
.wsbe{word-spacing:23.552000pt;}
.wsbf{word-spacing:23.616000pt;}
.wsc8{word-spacing:24.000000pt;}
.ws7d{word-spacing:24.064000pt;}
.ws33{word-spacing:24.320000pt;}
.wsc5{word-spacing:25.088000pt;}
.ws6{word-spacing:25.408000pt;}
.ws5{word-spacing:25.472000pt;}
.ws46{word-spacing:25.536000pt;}
.ws45{word-spacing:25.600000pt;}
.wscb{word-spacing:30.592000pt;}
.ws85{word-spacing:31.360000pt;}
.ws86{word-spacing:31.424000pt;}
.wsd3{word-spacing:34.176000pt;}
.wsd5{word-spacing:35.328000pt;}
.ws8{word-spacing:35.776000pt;}
.ws7{word-spacing:35.840000pt;}
.ws3d{word-spacing:42.368000pt;}
.ws3c{word-spacing:42.432000pt;}
._10{margin-left:-0.944000pt;}
._b{width:1.248000pt;}
._d{width:2.149312pt;}
._e{width:3.066752pt;}
._3{width:4.192000pt;}
._9{width:5.402667pt;}
._2{width:6.501333pt;}
._7{width:7.520000pt;}
._4{width:8.608000pt;}
._0{width:9.520000pt;}
._5{width:10.896000pt;}
._a{width:12.528000pt;}
._c{width:13.610667pt;}
._8{width:14.656000pt;}
._16{width:16.085333pt;}
._12{width:17.146731pt;}
._f{width:18.133312pt;}
._6{width:19.072000pt;}
._15{width:20.416000pt;}
._1a{width:21.338688pt;}
._14{width:22.245312pt;}
._11{width:24.090667pt;}
._17{width:25.088000pt;}
._1c{width:26.432000pt;}
._27{width:27.349333pt;}
._18{width:30.528000pt;}
._22{width:32.064000pt;}
._19{width:33.946667pt;}
._1{width:35.162667pt;}
._26{width:36.202667pt;}
._23{width:39.552000pt;}
._1b{width:40.704000pt;}
._13{width:42.368000pt;}
._1e{width:43.584000pt;}
._20{width:44.608000pt;}
._21{width:46.016000pt;}
._25{width:48.533333pt;}
._1f{width:52.736000pt;}
._24{width:56.960000pt;}
._1d{width:109.952000pt;}
.fs5{font-size:34.666667pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:255.994994pt;}
.y1f9{bottom:-223.253333pt;}
.y1f8{bottom:-207.253333pt;}
.y1f7{bottom:-191.253333pt;}
.y1f6{bottom:-175.253333pt;}
.y1f5{bottom:-159.253333pt;}
.y1f4{bottom:-143.253333pt;}
.y1f3{bottom:-127.253333pt;}
.y1f2{bottom:-111.253333pt;}
.y1f1{bottom:-95.253333pt;}
.y1f0{bottom:-79.253333pt;}
.y1ef{bottom:-63.253333pt;}
.y1ee{bottom:-47.253333pt;}
.y1ed{bottom:-31.253333pt;}
.y1ec{bottom:-15.253333pt;}
.y1bc{bottom:-13.591693pt;}
.y1b5{bottom:-12.306990pt;}
.y0{bottom:0.000000pt;}
.y1bb{bottom:0.176049pt;}
.y1b0{bottom:0.442672pt;}
.y1eb{bottom:0.746667pt;}
.y1ac{bottom:0.948641pt;}
.y1aa{bottom:0.989959pt;}
.y1b4{bottom:1.342708pt;}
.y1b9{bottom:3.252307pt;}
.y1b7{bottom:3.408945pt;}
.y1ae{bottom:3.534842pt;}
.y1b2{bottom:4.537010pt;}
.y167{bottom:6.515947pt;}
.y160{bottom:6.515949pt;}
.y193{bottom:6.515954pt;}
.y18b{bottom:6.515956pt;}
.y186{bottom:6.515957pt;}
.y183{bottom:6.515959pt;}
.y17d{bottom:6.515960pt;}
.y17a{bottom:6.515961pt;}
.y156{bottom:6.515962pt;}
.y13d{bottom:6.515964pt;}
.y14a{bottom:6.515965pt;}
.y145{bottom:6.515967pt;}
.y141{bottom:6.515968pt;}
.y17f{bottom:6.515969pt;}
.y15d{bottom:6.515970pt;}
.y152{bottom:6.515974pt;}
.y18e{bottom:6.515976pt;}
.y1a0{bottom:6.515979pt;}
.y159{bottom:6.515981pt;}
.y195{bottom:6.515984pt;}
.y13a{bottom:6.885297pt;}
.y14e{bottom:7.331965pt;}
.y198{bottom:7.601296pt;}
.y199{bottom:8.685296pt;}
.y22f{bottom:11.882592pt;}
.y21b{bottom:11.882612pt;}
.y21e{bottom:11.882615pt;}
.y220{bottom:11.882618pt;}
.y210{bottom:11.882622pt;}
.y228{bottom:11.882624pt;}
.y212{bottom:11.882625pt;}
.y202{bottom:11.882628pt;}
.y200{bottom:11.882630pt;}
.y1fb{bottom:11.882631pt;}
.y136{bottom:11.882633pt;}
.y207{bottom:11.882634pt;}
.y20b{bottom:11.882637pt;}
.y223{bottom:11.882640pt;}
.y20d{bottom:11.882641pt;}
.y225{bottom:11.882643pt;}
.y215{bottom:11.882647pt;}
.y218{bottom:11.882650pt;}
.y22b{bottom:11.882667pt;}
.y150{bottom:13.567965pt;}
.y162{bottom:14.515949pt;}
.y168{bottom:15.331947pt;}
.y157{bottom:15.331962pt;}
.y13e{bottom:15.331964pt;}
.y14c{bottom:15.331965pt;}
.y146{bottom:15.331967pt;}
.y142{bottom:15.331968pt;}
.y15b{bottom:15.331970pt;}
.y1ea{bottom:16.746667pt;}
.yd3{bottom:21.842634pt;}
.y163{bottom:23.331949pt;}
.y134{bottom:23.381299pt;}
.y1fd{bottom:23.418630pt;}
.y166{bottom:24.146613pt;}
.y15f{bottom:24.146616pt;}
.y155{bottom:24.146629pt;}
.y13c{bottom:24.146630pt;}
.y149{bottom:24.146632pt;}
.y144{bottom:24.146633pt;}
.y140{bottom:24.146634pt;}
.y15c{bottom:24.146637pt;}
.y139{bottom:24.515964pt;}
.y137{bottom:29.513299pt;}
.y161{bottom:32.146616pt;}
.y14f{bottom:32.235965pt;}
.y1e9{bottom:32.746667pt;}
.y14b{bottom:32.962632pt;}
.y191{bottom:33.962622pt;}
.y189{bottom:33.962625pt;}
.y181{bottom:33.962627pt;}
.y178{bottom:33.962629pt;}
.y172{bottom:33.962632pt;}
.y1a2{bottom:33.962637pt;}
.y22e{bottom:34.879925pt;}
.y21a{bottom:34.879945pt;}
.y21d{bottom:34.879948pt;}
.y20f{bottom:34.879955pt;}
.y227{bottom:34.879957pt;}
.y239{bottom:34.879958pt;}
.y235{bottom:34.879961pt;}
.y1ff{bottom:34.879963pt;}
.y232{bottom:34.879964pt;}
.y135{bottom:34.879966pt;}
.y206{bottom:34.879967pt;}
.y20a{bottom:34.879970pt;}
.y222{bottom:34.879973pt;}
.y214{bottom:34.879980pt;}
.y217{bottom:34.879983pt;}
.y22a{bottom:34.880001pt;}
.y19b{bottom:35.046635pt;}
.y14d{bottom:40.962632pt;}
.y148{bottom:41.777299pt;}
.y1e8{bottom:48.746667pt;}
.y237{bottom:57.877297pt;}
.y209{bottom:57.877303pt;}
.y1e7{bottom:64.746667pt;}
.y1e6{bottom:80.746667pt;}
.y1ba{bottom:96.662618pt;}
.y1e5{bottom:96.746667pt;}
.y4c{bottom:105.546667pt;}
.y1e4{bottom:112.746667pt;}
.y22d{bottom:112.832075pt;}
.y4b{bottom:121.546667pt;}
.y1e3{bottom:128.746667pt;}
.y4a{bottom:137.546667pt;}
.y1e2{bottom:144.746667pt;}
.y1b8{bottom:150.682360pt;}
.y49{bottom:153.546667pt;}
.y22c{bottom:158.826704pt;}
.y1e1{bottom:160.746667pt;}
.y48{bottom:169.546667pt;}
.y1e0{bottom:176.746667pt;}
.y47{bottom:185.546667pt;}
.y1df{bottom:192.746667pt;}
.yf4{bottom:196.988000pt;}
.y5c{bottom:199.654667pt;}
.y46{bottom:201.546667pt;}
.y229{bottom:204.821333pt;}
.y1de{bottom:208.746667pt;}
.y93{bottom:212.988000pt;}
.y45{bottom:217.546667pt;}
.y17{bottom:220.196000pt;}
.y8c{bottom:223.117333pt;}
.yb7{bottom:223.118667pt;}
.y1dd{bottom:224.746667pt;}
.yde{bottom:226.625333pt;}
.y1b6{bottom:232.315055pt;}
.y44{bottom:233.546667pt;}
.yf3{bottom:233.785333pt;}
.y5b{bottom:236.452000pt;}
.y1dc{bottom:240.746667pt;}
.y43{bottom:249.546667pt;}
.y92{bottom:249.785333pt;}
.y226{bottom:250.816043pt;}
.y16b{bottom:253.724000pt;}
.y1db{bottom:256.746667pt;}
.y16{bottom:256.993333pt;}
.y1a8{bottom:257.858667pt;}
.y8b{bottom:259.914667pt;}
.yb6{bottom:259.916000pt;}
.y121{bottom:262.582667pt;}
.ydd{bottom:263.422667pt;}
.y42{bottom:265.546667pt;}
.y16a{bottom:269.056000pt;}
.yf2{bottom:270.582667pt;}
.y1da{bottom:272.746667pt;}
.y5a{bottom:273.249333pt;}
.y41{bottom:281.546667pt;}
.y169{bottom:284.388000pt;}
.y91{bottom:286.582667pt;}
.y1d9{bottom:288.746667pt;}
.y15{bottom:293.790667pt;}
.y8a{bottom:296.712000pt;}
.yb5{bottom:296.713333pt;}
.y224{bottom:296.810691pt;}
.y40{bottom:297.546667pt;}
.y120{bottom:299.380000pt;}
.ydc{bottom:300.220000pt;}
.y1a9{bottom:304.059374pt;}
.y1d8{bottom:304.746667pt;}
.yf1{bottom:307.380000pt;}
.y59{bottom:310.046667pt;}
.y165{bottom:312.169387pt;}
.y3f{bottom:313.546667pt;}
.y221{bottom:319.808027pt;}
.y1d7{bottom:320.746667pt;}
.y90{bottom:323.380000pt;}
.y3e{bottom:329.546667pt;}
.y14{bottom:330.588000pt;}
.y89{bottom:333.509333pt;}
.yb4{bottom:333.510667pt;}
.y11f{bottom:336.177333pt;}
.y1d6{bottom:336.746667pt;}
.ydb{bottom:337.017333pt;}
.yf0{bottom:344.177333pt;}
.y3d{bottom:345.546667pt;}
.y58{bottom:346.844000pt;}
.y1d5{bottom:352.746667pt;}
.y8f{bottom:360.177333pt;}
.y3c{bottom:361.546667pt;}
.y164{bottom:363.430699pt;}
.y21f{bottom:365.802715pt;}
.y1ab{bottom:366.728692pt;}
.y13{bottom:367.385333pt;}
.y1d4{bottom:368.746667pt;}
.y88{bottom:370.306667pt;}
.yb3{bottom:370.308000pt;}
.y11e{bottom:372.974667pt;}
.yda{bottom:373.814667pt;}
.y3b{bottom:377.546667pt;}
.y1a7{bottom:378.568000pt;}
.yef{bottom:380.974667pt;}
.y57{bottom:383.641333pt;}
.y1d3{bottom:384.746667pt;}
.y21c{bottom:388.800052pt;}
.y3a{bottom:393.546667pt;}
.y8e{bottom:396.974667pt;}
.y1d2{bottom:400.746667pt;}
.y12{bottom:404.182667pt;}
.y87{bottom:407.104000pt;}
.yb2{bottom:407.105333pt;}
.y39{bottom:409.546667pt;}
.y11d{bottom:409.772000pt;}
.yd9{bottom:410.612000pt;}
.y15e{bottom:414.692051pt;}
.y1d1{bottom:416.746667pt;}
.yee{bottom:417.772000pt;}
.y56{bottom:420.438667pt;}
.y38{bottom:425.546667pt;}
.y1d0{bottom:432.746667pt;}
.y8d{bottom:433.772000pt;}
.y219{bottom:434.794721pt;}
.y1b3{bottom:439.013292pt;}
.y37{bottom:441.546667pt;}
.y86{bottom:443.901333pt;}
.yb1{bottom:443.902667pt;}
.y11c{bottom:446.569333pt;}
.yd8{bottom:447.409333pt;}
.y1cf{bottom:448.746667pt;}
.yed{bottom:454.569333pt;}
.y11{bottom:456.108000pt;}
.yc0{bottom:457.236000pt;}
.y36{bottom:457.546667pt;}
.y1ce{bottom:464.746667pt;}
.y15a{bottom:465.953363pt;}
.y55{bottom:470.569333pt;}
.y1a1{bottom:472.784030pt;}
.y1a3{bottom:472.784032pt;}
.y35{bottom:473.546667pt;}
.y85{bottom:480.698667pt;}
.y1cd{bottom:480.746667pt;}
.y216{bottom:480.789350pt;}
.y10{bottom:483.705200pt;}
.yd7{bottom:484.206667pt;}
.y34{bottom:489.546667pt;}
.y19f{bottom:491.081354pt;}
.yec{bottom:491.366667pt;}
.yb0{bottom:494.033333pt;}
.y1b1{bottom:496.281656pt;}
.y1cc{bottom:496.746667pt;}
.y33{bottom:505.546667pt;}
.y54{bottom:507.366667pt;}
.y19e{bottom:509.378717pt;}
.y1cb{bottom:512.746667pt;}
.y158{bottom:517.214685pt;}
.y84{bottom:517.496000pt;}
.yf{bottom:519.302533pt;}
.yd6{bottom:521.004000pt;}
.y32{bottom:521.546667pt;}
.y213{bottom:526.784020pt;}
.y19d{bottom:527.676040pt;}
.y11b{bottom:528.164000pt;}
.y102{bottom:528.165333pt;}
.y1ca{bottom:528.746667pt;}
.y1a6{bottom:529.454667pt;}
.ybf{bottom:530.829333pt;}
.y12c{bottom:530.830667pt;}
.y31{bottom:537.546667pt;}
.ya1{bottom:544.157333pt;}
.y113{bottom:544.162667pt;}
.yaf{bottom:544.164000pt;}
.y110{bottom:544.166667pt;}
.y1c9{bottom:544.746667pt;}
.y19c{bottom:545.973363pt;}
.y19a{bottom:545.973365pt;}
.ye{bottom:546.899867pt;}
.y154{bottom:550.845371pt;}
.y30{bottom:553.546667pt;}
.y83{bottom:554.293333pt;}
.yeb{bottom:558.162667pt;}
.y1c8{bottom:560.746667pt;}
.y197{bottom:564.270704pt;}
.y11a{bottom:564.961333pt;}
.y101{bottom:564.962667pt;}
.ybe{bottom:567.626667pt;}
.y12b{bottom:567.628000pt;}
.y2f{bottom:569.546667pt;}
.y211{bottom:572.778708pt;}
.yd{bottom:574.497200pt;}
.y1c7{bottom:576.746667pt;}
.y112{bottom:580.960000pt;}
.yae{bottom:580.961333pt;}
.y10f{bottom:580.964000pt;}
.ya0{bottom:581.100000pt;}
.y196{bottom:584.737360pt;}
.y2e{bottom:585.546667pt;}
.y82{bottom:591.090667pt;}
.y1af{bottom:591.166661pt;}
.y1c6{bottom:592.746667pt;}
.yea{bottom:594.960000pt;}
.y20e{bottom:595.776045pt;}
.y2d{bottom:601.546667pt;}
.y119{bottom:601.758667pt;}
.y100{bottom:601.760000pt;}
.yc{bottom:602.094533pt;}
.y153{bottom:602.106704pt;}
.y194{bottom:603.034683pt;}
.ybd{bottom:604.424000pt;}
.y12a{bottom:604.425333pt;}
.y1c5{bottom:608.746667pt;}
.y2c{bottom:617.546667pt;}
.y111{bottom:617.757333pt;}
.yad{bottom:617.758667pt;}
.y10e{bottom:617.761333pt;}
.y9f{bottom:618.042667pt;}
.y190{bottom:621.332044pt;}
.y192{bottom:621.332046pt;}
.y1c4{bottom:624.746667pt;}
.y81{bottom:627.888000pt;}
.yb{bottom:629.691867pt;}
.ye9{bottom:631.757333pt;}
.y2b{bottom:633.546667pt;}
.yff{bottom:638.557333pt;}
.y18f{bottom:639.629369pt;}
.y1c3{bottom:640.746667pt;}
.ybc{bottom:641.221333pt;}
.y129{bottom:641.222667pt;}
.y20c{bottom:641.770692pt;}
.y1ad{bottom:645.911825pt;}
.y118{bottom:646.556533pt;}
.y2a{bottom:649.546667pt;}
.y151{bottom:653.368026pt;}
.yc9{bottom:654.554667pt;}
.yac{bottom:654.556000pt;}
.y10d{bottom:654.558667pt;}
.y9e{bottom:654.985333pt;}
.y1c2{bottom:656.746667pt;}
.ya{bottom:657.289200pt;}
.y18d{bottom:657.926691pt;}
.y80{bottom:664.685333pt;}
.y208{bottom:664.768030pt;}
.y29{bottom:665.546667pt;}
.ye8{bottom:668.554667pt;}
.y1c1{bottom:672.746667pt;}
.yfe{bottom:675.354667pt;}
.y18c{bottom:676.224034pt;}
.ybb{bottom:678.018667pt;}
.y128{bottom:678.020000pt;}
.y28{bottom:681.546667pt;}
.y117{bottom:684.554667pt;}
.y9{bottom:684.886533pt;}
.y23d{bottom:685.322667pt;}
.y147{bottom:686.998701pt;}
.y1c0{bottom:688.746667pt;}
.yc8{bottom:691.352000pt;}
.yab{bottom:691.353333pt;}
.y10c{bottom:691.356000pt;}
.y9d{bottom:691.928000pt;}
.y188{bottom:694.521375pt;}
.y18a{bottom:694.521377pt;}
.y27{bottom:697.546667pt;}
.y23c{bottom:700.654667pt;}
.y7f{bottom:701.482667pt;}
.y1bf{bottom:704.746667pt;}
.ye7{bottom:705.352000pt;}
.y1a5{bottom:710.518667pt;}
.yfd{bottom:712.152000pt;}
.y8{bottom:712.483867pt;}
.y187{bottom:712.818700pt;}
.y26{bottom:713.546667pt;}
.yba{bottom:714.816000pt;}
.y127{bottom:714.817333pt;}
.y23b{bottom:715.986667pt;}
.y1be{bottom:720.746667pt;}
.y23a{bottom:727.768039pt;}
.yc7{bottom:728.149333pt;}
.yaa{bottom:728.150667pt;}
.y10b{bottom:728.153333pt;}
.y9c{bottom:728.870667pt;}
.y25{bottom:729.546667pt;}
.y185{bottom:731.116043pt;}
.y205{bottom:733.760033pt;}
.y7e{bottom:738.280000pt;}
.y7{bottom:740.081200pt;}
.y1a4{bottom:741.901333pt;}
.y24{bottom:745.546667pt;}
.yfc{bottom:748.949333pt;}
.y184{bottom:749.413365pt;}
.yb9{bottom:751.613333pt;}
.y126{bottom:751.614667pt;}
.y143{bottom:755.890700pt;}
.ye6{bottom:758.149333pt;}
.y23{bottom:761.546667pt;}
.yc6{bottom:764.946667pt;}
.ya9{bottom:764.948000pt;}
.y10a{bottom:764.950667pt;}
.yd1{bottom:765.173333pt;}
.y9b{bottom:765.813333pt;}
.y6{bottom:767.678533pt;}
.y180{bottom:767.710706pt;}
.y182{bottom:767.710708pt;}
.y1bd{bottom:768.746667pt;}
.y238{bottom:773.762708pt;}
.y7d{bottom:775.077333pt;}
.y22{bottom:777.546667pt;}
.y204{bottom:779.754703pt;}
.yfb{bottom:785.746667pt;}
.y17e{bottom:786.008031pt;}
.yb8{bottom:788.410667pt;}
.y125{bottom:788.412000pt;}
.y76{bottom:789.854933pt;}
.y6c{bottom:792.554667pt;}
.y21{bottom:793.546667pt;}
.ye5{bottom:794.946667pt;}
.y5{bottom:795.275867pt;}
.yc5{bottom:801.744000pt;}
.ya8{bottom:801.745333pt;}
.y109{bottom:801.748000pt;}
.yd0{bottom:802.196000pt;}
.y9a{bottom:802.756000pt;}
.y17c{bottom:804.305374pt;}
.y13f{bottom:807.152032pt;}
.y20{bottom:809.546667pt;}
.y6b{bottom:811.754667pt;}
.y236{bottom:819.757369pt;}
.yfa{bottom:822.544000pt;}
.y17b{bottom:822.602696pt;}
.y4{bottom:822.873200pt;}
.y7c{bottom:825.208000pt;}
.y124{bottom:825.209333pt;}
.y1f{bottom:825.546667pt;}
.y203{bottom:825.749371pt;}
.y6a{bottom:830.954667pt;}
.ye4{bottom:831.744000pt;}
.yc4{bottom:838.541333pt;}
.ya7{bottom:838.542667pt;}
.y108{bottom:838.834667pt;}
.ycf{bottom:839.218667pt;}
.y99{bottom:839.698667pt;}
.y177{bottom:840.900037pt;}
.y179{bottom:840.900039pt;}
.y1e{bottom:841.546667pt;}
.y201{bottom:848.746706pt;}
.y69{bottom:850.154667pt;}
.y3{bottom:850.470667pt;}
.y1d{bottom:857.546667pt;}
.y13b{bottom:858.413370pt;}
.y176{bottom:859.197372pt;}
.y7b{bottom:862.005333pt;}
.y123{bottom:862.006667pt;}
.ye3{bottom:868.541333pt;}
.y68{bottom:869.354667pt;}
.y116{bottom:871.650667pt;}
.y1fe{bottom:871.744037pt;}
.y1c{bottom:873.546667pt;}
.yc3{bottom:875.338667pt;}
.ya6{bottom:875.340000pt;}
.yf9{bottom:875.341333pt;}
.y107{bottom:875.921333pt;}
.yce{bottom:876.241333pt;}
.y98{bottom:876.641333pt;}
.y175{bottom:877.494705pt;}
.y2{bottom:878.068000pt;}
.y115{bottom:888.516000pt;}
.y67{bottom:888.554667pt;}
.y234{bottom:888.749372pt;}
.y1b{bottom:889.546667pt;}
.y174{bottom:895.792037pt;}
.y7a{bottom:898.802667pt;}
.y122{bottom:898.804000pt;}
.y114{bottom:905.381333pt;}
.y1a{bottom:905.546667pt;}
.y1{bottom:905.665333pt;}
.y66{bottom:907.754667pt;}
.y138{bottom:909.674703pt;}
.yc2{bottom:912.136000pt;}
.ya5{bottom:912.137333pt;}
.ye2{bottom:912.138667pt;}
.yf8{bottom:912.544000pt;}
.y106{bottom:913.008000pt;}
.ycd{bottom:913.264000pt;}
.y97{bottom:913.584000pt;}
.y171{bottom:914.089368pt;}
.y173{bottom:914.089370pt;}
.y1fc{bottom:917.738703pt;}
.y75{bottom:921.546667pt;}
.y65{bottom:926.954667pt;}
.y131{bottom:929.953333pt;}
.y170{bottom:932.386703pt;}
.y233{bottom:934.744035pt;}
.y79{bottom:935.600000pt;}
.y19{bottom:937.362667pt;}
.y74{bottom:937.546667pt;}
.y64{bottom:946.154667pt;}
.y133{bottom:946.341367pt;}
.yc1{bottom:948.933333pt;}
.ya4{bottom:948.934667pt;}
.ye1{bottom:949.442667pt;}
.yf7{bottom:949.746667pt;}
.y105{bottom:950.094667pt;}
.ycc{bottom:950.286667pt;}
.y96{bottom:950.526667pt;}
.y16f{bottom:950.684036pt;}
.y1fa{bottom:952.938702pt;}
.y73{bottom:953.546667pt;}
.y231{bottom:957.741369pt;}
.y63{bottom:965.354667pt;}
.y130{bottom:966.750667pt;}
.y16e{bottom:968.981368pt;}
.y72{bottom:969.546667pt;}
.y18{bottom:969.560000pt;}
.y62{bottom:984.554667pt;}
.y71{bottom:985.546667pt;}
.y78{bottom:985.730667pt;}
.yd5{bottom:985.732000pt;}
.ya3{bottom:986.408000pt;}
.ye0{bottom:986.746667pt;}
.yf6{bottom:986.949333pt;}
.y104{bottom:987.181333pt;}
.y16d{bottom:987.278701pt;}
.ycb{bottom:987.309333pt;}
.y95{bottom:987.469333pt;}
.y53{bottom:992.206667pt;}
.y70{bottom:1001.546667pt;}
.y12f{bottom:1003.548000pt;}
.y230{bottom:1003.736035pt;}
.y61{bottom:1003.754667pt;}
.y52{bottom:1008.206667pt;}
.y16c{bottom:1013.129333pt;}
.y132{bottom:1014.373333pt;}
.y6f{bottom:1017.546667pt;}
.yd4{bottom:1022.529333pt;}
.y60{bottom:1022.954667pt;}
.y77{bottom:1023.542667pt;}
.ya2{bottom:1023.881333pt;}
.ydf{bottom:1024.050667pt;}
.yf5{bottom:1024.152000pt;}
.y51{bottom:1024.206667pt;}
.y103{bottom:1024.268000pt;}
.yca{bottom:1024.332000pt;}
.y94{bottom:1024.412000pt;}
.y6e{bottom:1033.546667pt;}
.yd2{bottom:1039.458699pt;}
.y50{bottom:1040.206667pt;}
.y12e{bottom:1040.345333pt;}
.y5f{bottom:1042.154667pt;}
.y6d{bottom:1049.546667pt;}
.y4f{bottom:1056.206667pt;}
.y5e{bottom:1061.301333pt;}
.y4e{bottom:1072.206667pt;}
.y12d{bottom:1079.117333pt;}
.y4d{bottom:1088.206667pt;}
.y5d{bottom:1097.546667pt;}
.h2b{height:10.833333pt;}
.h26{height:11.100000pt;}
.h20{height:11.646667pt;}
.h28{height:12.000000pt;}
.h22{height:14.142667pt;}
.h2a{height:15.177333pt;}
.h24{height:15.460000pt;}
.h27{height:16.462667pt;}
.h29{height:16.604000pt;}
.h17{height:20.297333pt;}
.h18{height:20.964000pt;}
.h1a{height:23.133333pt;}
.h2c{height:25.664000pt;}
.h21{height:29.562500pt;}
.h1f{height:32.812500pt;}
.h25{height:33.257812pt;}
.h15{height:36.297333pt;}
.h23{height:36.953125pt;}
.h10{height:37.031250pt;}
.h11{height:37.057292pt;}
.h2d{height:37.200000pt;}
.h5{height:38.453333pt;}
.h12{height:38.666667pt;}
.h6{height:39.903646pt;}
.h16{height:40.247240pt;}
.h1e{height:40.648438pt;}
.ha{height:40.763021pt;}
.h7{height:43.343750pt;}
.h3{height:43.375000pt;}
.hc{height:44.437500pt;}
.he{height:44.466617pt;}
.h2{height:44.468750pt;}
.hd{height:44.470883pt;}
.hf{height:48.661333pt;}
.hb{height:49.017000pt;}
.h4{height:50.604167pt;}
.h13{height:53.928000pt;}
.h14{height:71.558667pt;}
.h2e{height:71.658667pt;}
.h19{height:75.189333pt;}
.h1b{height:77.358667pt;}
.h9{height:83.074667pt;}
.h8{height:184.572391pt;}
.h1c{height:793.733317pt;}
.h1d{height:794.000000pt;}
.h0{height:1122.533366pt;}
.h1{height:1122.666667pt;}
.w14{width:41.066667pt;}
.w20{width:41.100000pt;}
.w24{width:41.113333pt;}
.w13{width:41.133333pt;}
.w35{width:41.440000pt;}
.w1b{width:42.000000pt;}
.w3d{width:42.328000pt;}
.w28{width:42.784000pt;}
.w18{width:42.800000pt;}
.w2c{width:43.112000pt;}
.w39{width:43.152000pt;}
.w21{width:46.462667pt;}
.w15{width:46.466667pt;}
.w25{width:46.478667pt;}
.w17{width:46.533333pt;}
.w36{width:46.873333pt;}
.w22{width:47.313333pt;}
.w26{width:47.329333pt;}
.w16{width:47.333333pt;}
.w1c{width:47.533333pt;}
.w37{width:47.734667pt;}
.w3e{width:47.946667pt;}
.w1d{width:48.400000pt;}
.w19{width:48.466667pt;}
.w29{width:48.497333pt;}
.w3f{width:48.837333pt;}
.w2d{width:48.894667pt;}
.w3a{width:48.941333pt;}
.w1a{width:49.400000pt;}
.w2a{width:49.402667pt;}
.w2e{width:49.810667pt;}
.w3b{width:49.860000pt;}
.w6{width:58.400000pt;}
.w9{width:58.466667pt;}
.w7{width:72.800000pt;}
.w8{width:72.933333pt;}
.w5{width:74.066667pt;}
.w2f{width:79.044000pt;}
.w1f{width:79.054667pt;}
.w23{width:79.084000pt;}
.w30{width:79.090667pt;}
.w34{width:79.814667pt;}
.wa{width:80.800000pt;}
.w3c{width:81.809333pt;}
.w31{width:82.814667pt;}
.w27{width:82.830667pt;}
.w2b{width:83.568000pt;}
.w38{width:83.657333pt;}
.w32{width:86.209333pt;}
.wc{width:90.200000pt;}
.wd{width:102.400000pt;}
.we{width:103.600000pt;}
.w3{width:113.066667pt;}
.w4{width:114.666667pt;}
.w10{width:115.600000pt;}
.wf{width:129.666667pt;}
.w1e{width:155.412000pt;}
.w33{width:169.648000pt;}
.wb{width:200.600000pt;}
.w41{width:284.933333pt;}
.w40{width:301.866667pt;}
.w2{width:793.733313pt;}
.w0{width:793.733317pt;}
.w1{width:794.000000pt;}
.w11{width:1122.533366pt;}
.w12{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xd{left:8.533332pt;}
.x4{left:10.666667pt;}
.x23{left:17.862666pt;}
.x2d{left:18.826715pt;}
.x50{left:20.276223pt;}
.x56{left:24.286889pt;}
.x7d{left:25.513459pt;}
.x40{left:26.801752pt;}
.x16{left:27.926671pt;}
.x15{left:29.333333pt;}
.x87{left:32.533329pt;}
.x69{left:33.918645pt;}
.x5{left:37.258667pt;}
.x1a{left:41.789334pt;}
.x1d{left:47.713334pt;}
.x20{left:49.466667pt;}
.x1f{left:56.500001pt;}
.x17{left:58.476001pt;}
.x42{left:73.666666pt;}
.x22{left:85.866667pt;}
.x21{left:94.466667pt;}
.x86{left:95.400004pt;}
.x41{left:103.869088pt;}
.x43{left:105.384743pt;}
.x2{left:113.400000pt;}
.x3{left:115.804000pt;}
.xb{left:117.396000pt;}
.x18{left:129.066670pt;}
.x44{left:135.860255pt;}
.x89{left:137.400000pt;}
.x24{left:148.066669pt;}
.x1{left:159.465333pt;}
.x6{left:161.400000pt;}
.x45{left:172.286999pt;}
.x6a{left:173.585755pt;}
.x25{left:184.466664pt;}
.x47{left:208.866655pt;}
.x6b{left:210.624736pt;}
.xa{left:213.932000pt;}
.x26{left:221.066660pt;}
.xe{left:227.266662pt;}
.x19{left:229.999999pt;}
.x46{left:239.086003pt;}
.x48{left:240.600929pt;}
.x6c{left:242.760519pt;}
.x27{left:252.799993pt;}
.x9{left:260.872000pt;}
.x49{left:271.091990pt;}
.x6d{left:273.637359pt;}
.x28{left:283.266654pt;}
.x4a{left:307.537324pt;}
.x6e{left:310.543813pt;}
.x29{left:319.733326pt;}
.xf{left:339.266662pt;}
.x70{left:342.944651pt;}
.x2a{left:351.733323pt;}
.x1b{left:356.999999pt;}
.x4b{left:371.902453pt;}
.x4c{left:373.323844pt;}
.x6f{left:375.787714pt;}
.x71{left:377.188487pt;}
.x2b{left:385.533331pt;}
.x88{left:394.599996pt;}
.x4d{left:405.790610pt;}
.x10{left:410.666666pt;}
.x2c{left:417.999952pt;}
.x4e{left:444.597450pt;}
.x72{left:449.418276pt;}
.x2e{left:456.799982pt;}
.x11{left:466.399983pt;}
.x68{left:470.509355pt;}
.x3f{left:474.694248pt;}
.x61{left:475.866663pt;}
.x66{left:479.133305pt;}
.x1c{left:483.999999pt;}
.x3b{left:490.866627pt;}
.x60{left:508.658968pt;}
.x62{left:510.061955pt;}
.x65{left:511.561995pt;}
.x82{left:515.727657pt;}
.x83{left:517.174553pt;}
.x3c{left:523.666635pt;}
.x8{left:525.324000pt;}
.x12{left:536.533325pt;}
.x63{left:542.917630pt;}
.x84{left:549.102784pt;}
.x3d{left:555.199962pt;}
.x67{left:581.199948pt;}
.x64{left:582.189345pt;}
.x85{left:587.265938pt;}
.x3e{left:592.933311pt;}
.x13{left:606.800007pt;}
.x1e{left:610.999999pt;}
.x5c{left:613.799999pt;}
.x7e{left:620.770083pt;}
.x37{left:625.999964pt;}
.x5b{left:644.002419pt;}
.x5d{left:645.518060pt;}
.x7c{left:651.409207pt;}
.x7f{left:652.905866pt;}
.x38{left:657.733276pt;}
.x14{left:662.600016pt;}
.x5e{left:675.993596pt;}
.x80{left:683.782751pt;}
.x39{left:688.199958pt;}
.xc{left:708.360000pt;}
.x5f{left:712.420320pt;}
.x7{left:715.200000pt;}
.x81{left:720.689206pt;}
.x3a{left:724.599944pt;}
.x57{left:749.200023pt;}
.x78{left:757.926887pt;}
.x33{left:761.400029pt;}
.x55{left:779.402444pt;}
.x58{left:780.918099pt;}
.x77{left:788.566021pt;}
.x79{left:790.062645pt;}
.x34{left:793.133276pt;}
.x59{left:811.393621pt;}
.x7a{left:820.939517pt;}
.x35{left:823.599888pt;}
.x5a{left:847.820357pt;}
.x7b{left:857.846025pt;}
.x36{left:859.999969pt;}
.x51{left:885.200023pt;}
.x74{left:895.679995pt;}
.x2f{left:897.400047pt;}
.x4f{left:915.402444pt;}
.x52{left:916.918099pt;}
.x73{left:926.319195pt;}
.x75{left:927.815819pt;}
.x30{left:929.133276pt;}
.x53{left:947.393621pt;}
.x76{left:958.692691pt;}
.x31{left:959.599888pt;}
.x54{left:983.820357pt;}
.x32{left:995.999969pt;}
}




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