
    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_2b97a35eb9cf84e9d867afaa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_686ad8eb4d37d6ab5d42cadb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957258;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_a1eed17d740327074d2bda86.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957357;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_c0e5a8493a27632976f8feae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0518198d0cfd5714887f3a19.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6af0fd72896428a0591802ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c9b540c9664be7f57bdff310.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957258;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_839d4450ecf63afbb9f4c884.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.957357;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_609b75e0d37013303e953d3f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.960145;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_c49c063149f290191ef2619d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c0e5a8493a27632976f8feae.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_346e2ef1c4651516450d309c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;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_5251a45f30e5c3f6f578ee7b.woff2')format("woff");}.fff{font-family:fff;line-height:0.957258;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_dfc7bafe998385141ec45f28.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.957357;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_897a2e6fb2c35bf0fec381ab.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.960145;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_3892498e23bf88d57a64807e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.957258;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_5584593262f788194205f1e9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.957258;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_82802756f46ba26a10b9b790.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ce23b34197ce1d5b42c30932.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666000;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_e7345e25cf6e9eb8cfa2d3f5.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_182c28c8eeab89aeaa777572.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.957258;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_0f39e88236d262fa9adfcaa7.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.957258;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_d56594987e49a2577d29958a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.957357;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_44090003c5fcf9d0c747d815.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.960145;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_1915e2e5133729694f47af97.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.956312;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_f46a21dd0f0a49f2b05610b7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.957258;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_fcda690bd2b8dc445098818e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.957258;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;}
.m10{transform:matrix(0.092103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092103,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.150543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150543,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.167757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167757,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177083,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.202401,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202401,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202401,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.202873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202873,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.203789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203789,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.210616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210616,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.212246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212246,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.216018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216018,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.222754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222754,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.232981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232981,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240634,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242319,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247514,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.276462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276462,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.584194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584194,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4c{letter-spacing:-3.360000px;}
.ls4f{letter-spacing:-2.562000px;}
.ls50{letter-spacing:-2.520000px;}
.ls40{letter-spacing:-2.058000px;}
.ls1b{letter-spacing:-1.972080px;}
.ls51{letter-spacing:-1.806000px;}
.ls1c{letter-spacing:-1.733040px;}
.ls59{letter-spacing:-1.674000px;}
.ls1d{letter-spacing:-1.613520px;}
.ls14{letter-spacing:-1.553760px;}
.ls30{letter-spacing:-1.533021px;}
.ls27{letter-spacing:-1.491000px;}
.ls5c{letter-spacing:-1.458000px;}
.ls15{letter-spacing:-1.434240px;}
.ls5a{letter-spacing:-1.404000px;}
.ls16{letter-spacing:-1.374480px;}
.ls29{letter-spacing:-1.363200px;}
.ls2b{letter-spacing:-1.324860px;}
.ls35{letter-spacing:-1.314720px;}
.ls22{letter-spacing:-1.254960px;}
.ls5b{letter-spacing:-1.188000px;}
.ls3e{letter-spacing:-1.155021px;}
.ls1e{letter-spacing:-1.135440px;}
.ls1a{letter-spacing:-1.075680px;}
.ls54{letter-spacing:-1.026000px;}
.ls34{letter-spacing:-1.015920px;}
.ls42{letter-spacing:-0.972000px;}
.ls33{letter-spacing:-0.956160px;}
.ls18{letter-spacing:-0.896400px;}
.ls46{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.836640px;}
.ls23{letter-spacing:-0.776880px;}
.ls44{letter-spacing:-0.756000px;}
.ls21{letter-spacing:-0.717120px;}
.ls11{letter-spacing:-0.657360px;}
.ls56{letter-spacing:-0.648000px;}
.ls2d{letter-spacing:-0.617700px;}
.ls32{letter-spacing:-0.597600px;}
.ls47{letter-spacing:-0.594000px;}
.ls55{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.537840px;}
.ls43{letter-spacing:-0.486000px;}
.ls1f{letter-spacing:-0.478080px;}
.ls2e{letter-spacing:-0.383400px;}
.ls45{letter-spacing:-0.378000px;}
.ls12{letter-spacing:-0.358560px;}
.ls31{letter-spacing:-0.331200px;}
.ls39{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.298800px;}
.lsc{letter-spacing:-0.287280px;}
.ls3a{letter-spacing:-0.270000px;}
.ls60{letter-spacing:-0.250560px;}
.ls36{letter-spacing:-0.239040px;}
.ls37{letter-spacing:-0.216000px;}
.ls41{letter-spacing:-0.198720px;}
.ls5e{letter-spacing:-0.192960px;}
.lsa{letter-spacing:-0.191520px;}
.lse{letter-spacing:-0.179280px;}
.ls5d{letter-spacing:-0.162000px;}
.ls5f{letter-spacing:-0.144720px;}
.lsf{letter-spacing:-0.119520px;}
.ls9{letter-spacing:-0.095760px;}
.ls17{letter-spacing:-0.059760px;}
.ls2a{letter-spacing:-0.055380px;}
.ls48{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.021960px;}
.ls28{letter-spacing:0.025560px;}
.ls13{letter-spacing:0.059760px;}
.ls25{letter-spacing:0.076680px;}
.ls8{letter-spacing:0.095760px;}
.ls3c{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.119520px;}
.ls38{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.179280px;}
.lsb{letter-spacing:0.191520px;}
.ls4a{letter-spacing:0.198720px;}
.ls57{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.239040px;}
.ls61{letter-spacing:0.241200px;}
.ls53{letter-spacing:0.264960px;}
.ls3{letter-spacing:0.287280px;}
.ls58{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.325584px;}
.lsd{letter-spacing:0.331200px;}
.ls10{letter-spacing:0.358560px;}
.ls3b{letter-spacing:0.378000px;}
.ls1{letter-spacing:0.418320px;}
.ls3d{letter-spacing:0.441600px;}
.ls5{letter-spacing:0.956160px;}
.ls4d{letter-spacing:1.110030px;}
.ls2c{letter-spacing:1.384500px;}
.ls2f{letter-spacing:1.393020px;}
.ls24{letter-spacing:1.503780px;}
.ls3f{letter-spacing:1.620030px;}
.ls49{letter-spacing:2.661660px;}
.ls52{letter-spacing:4.140000px;}
.ls4b{letter-spacing:7.236000px;}
.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;}
}
.ws1{word-spacing:-17.619840px;}
.wsa{word-spacing:-11.533680px;}
.ws70{word-spacing:-11.473920px;}
.ws64{word-spacing:-11.354400px;}
.ws3{word-spacing:-11.294640px;}
.ws63{word-spacing:-11.234880px;}
.ws2{word-spacing:-11.175120px;}
.ws9{word-spacing:-11.115360px;}
.ws65{word-spacing:-10.995840px;}
.ws8{word-spacing:-10.756800px;}
.ws62{word-spacing:-10.650000px;}
.ws66{word-spacing:-10.637280px;}
.wsb{word-spacing:-10.577520px;}
.ws67{word-spacing:-10.458000px;}
.ws6{word-spacing:-10.398240px;}
.ws6f{word-spacing:-10.278720px;}
.wsec{word-spacing:-10.206000px;}
.ws5{word-spacing:-10.159200px;}
.ws7{word-spacing:-10.039680px;}
.ws6e{word-spacing:-9.990000px;}
.ws6a{word-spacing:-9.920160px;}
.ws68{word-spacing:-9.740880px;}
.ws4{word-spacing:-9.322560px;}
.ws69{word-spacing:-9.143280px;}
.ws6d{word-spacing:-9.083520px;}
.ws6b{word-spacing:-8.964000px;}
.ws6c{word-spacing:-8.904240px;}
.wsed{word-spacing:-8.532000px;}
.ws32{word-spacing:-2.270880px;}
.wsd9{word-spacing:-2.268000px;}
.ws15{word-spacing:-1.912320px;}
.ws29{word-spacing:-1.792800px;}
.ws31{word-spacing:-1.733040px;}
.wsf5{word-spacing:-1.553760px;}
.ws51{word-spacing:-1.374480px;}
.wsc6{word-spacing:-1.254960px;}
.wse9{word-spacing:-1.195200px;}
.ws2d{word-spacing:-1.075680px;}
.ws2c{word-spacing:-1.015920px;}
.ws30{word-spacing:-0.896400px;}
.ws52{word-spacing:-0.836640px;}
.wsf3{word-spacing:-0.717120px;}
.ws60{word-spacing:-0.657360px;}
.ws108{word-spacing:-0.540000px;}
.ws84{word-spacing:-0.537840px;}
.wsda{word-spacing:-0.486000px;}
.ws18{word-spacing:-0.478080px;}
.ws4e{word-spacing:-0.418320px;}
.wsd{word-spacing:-0.383040px;}
.wsa9{word-spacing:-0.378000px;}
.ws28{word-spacing:-0.358560px;}
.ws105{word-spacing:-0.324000px;}
.ws17{word-spacing:-0.298800px;}
.ws106{word-spacing:-0.270000px;}
.ws9c{word-spacing:-0.239040px;}
.wsee{word-spacing:-0.198720px;}
.ws10{word-spacing:-0.191520px;}
.ws20{word-spacing:-0.179280px;}
.ws109{word-spacing:-0.162000px;}
.ws19{word-spacing:-0.119520px;}
.wsa7{word-spacing:-0.108000px;}
.ws11{word-spacing:-0.095760px;}
.ws27{word-spacing:-0.059760px;}
.wsdc{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws10a{word-spacing:0.054000px;}
.wsc{word-spacing:0.059760px;}
.wsf9{word-spacing:0.066240px;}
.wse{word-spacing:0.095760px;}
.ws10b{word-spacing:0.108000px;}
.ws14{word-spacing:0.119520px;}
.ws101{word-spacing:0.162000px;}
.ws13{word-spacing:0.179280px;}
.wsf{word-spacing:0.191520px;}
.ws10f{word-spacing:0.192960px;}
.wsaa{word-spacing:0.216000px;}
.ws34{word-spacing:0.239040px;}
.wsb8{word-spacing:0.264960px;}
.ws111{word-spacing:0.292320px;}
.ws71{word-spacing:0.298800px;}
.wsa4{word-spacing:0.324000px;}
.ws25{word-spacing:0.358560px;}
.wsa3{word-spacing:0.378000px;}
.ws110{word-spacing:0.385920px;}
.ws21{word-spacing:0.418320px;}
.ws10e{word-spacing:0.434160px;}
.ws3d{word-spacing:0.478080px;}
.ws36{word-spacing:0.537840px;}
.wsdb{word-spacing:0.594000px;}
.ws1b{word-spacing:0.597600px;}
.ws107{word-spacing:0.648000px;}
.ws3e{word-spacing:0.657360px;}
.ws3b{word-spacing:0.717120px;}
.ws12{word-spacing:0.776880px;}
.ws37{word-spacing:0.836640px;}
.wsa8{word-spacing:0.864000px;}
.ws1a{word-spacing:0.896400px;}
.ws104{word-spacing:0.918000px;}
.ws23{word-spacing:0.956160px;}
.wsd8{word-spacing:0.972000px;}
.ws9d{word-spacing:1.015920px;}
.ws103{word-spacing:1.026000px;}
.ws22{word-spacing:1.075680px;}
.ws77{word-spacing:1.135440px;}
.ws8c{word-spacing:1.254960px;}
.ws88{word-spacing:1.314720px;}
.ws87{word-spacing:1.374480px;}
.ws10d{word-spacing:1.404000px;}
.ws46{word-spacing:1.434240px;}
.ws112{word-spacing:1.488000px;}
.ws61{word-spacing:1.494000px;}
.ws24{word-spacing:1.553760px;}
.ws33{word-spacing:1.613520px;}
.ws41{word-spacing:1.673280px;}
.ws10c{word-spacing:1.674000px;}
.ws1e{word-spacing:1.792800px;}
.ws1f{word-spacing:1.852560px;}
.wsa5{word-spacing:1.890000px;}
.ws9e{word-spacing:2.031840px;}
.wsa6{word-spacing:2.052000px;}
.wsc3{word-spacing:2.151360px;}
.ws26{word-spacing:2.211120px;}
.ws102{word-spacing:2.322000px;}
.ws3f{word-spacing:2.330640px;}
.ws3c{word-spacing:2.390400px;}
.wsd3{word-spacing:2.509920px;}
.wsc2{word-spacing:2.569680px;}
.ws9f{word-spacing:2.748960px;}
.ws3a{word-spacing:2.868480px;}
.wsac{word-spacing:2.928240px;}
.ws39{word-spacing:3.047760px;}
.wsca{word-spacing:3.107520px;}
.wsc8{word-spacing:3.167280px;}
.wsf8{word-spacing:3.227040px;}
.ws93{word-spacing:3.286800px;}
.wsb9{word-spacing:3.406320px;}
.ws2e{word-spacing:3.466080px;}
.wsce{word-spacing:3.645360px;}
.ws94{word-spacing:3.764880px;}
.ws95{word-spacing:3.824640px;}
.wsd1{word-spacing:3.884400px;}
.ws2f{word-spacing:3.944160px;}
.wsab{word-spacing:4.123440px;}
.wsb5{word-spacing:4.183200px;}
.ws43{word-spacing:4.302720px;}
.ws96{word-spacing:4.482000px;}
.ws42{word-spacing:4.541760px;}
.ws97{word-spacing:4.661280px;}
.ws8e{word-spacing:4.900320px;}
.ws92{word-spacing:5.019840px;}
.ws8f{word-spacing:5.199120px;}
.ws44{word-spacing:5.258880px;}
.ws90{word-spacing:5.318640px;}
.wsc9{word-spacing:5.378400px;}
.ws16{word-spacing:5.438160px;}
.wsa2{word-spacing:5.796720px;}
.ws1c{word-spacing:5.916240px;}
.ws79{word-spacing:5.976000px;}
.ws1d{word-spacing:6.095520px;}
.ws7a{word-spacing:6.155280px;}
.wscf{word-spacing:6.334560px;}
.wsfb{word-spacing:6.454080px;}
.wse4{word-spacing:6.633360px;}
.ws49{word-spacing:6.693120px;}
.ws76{word-spacing:6.812640px;}
.wsc0{word-spacing:6.872400px;}
.ws2b{word-spacing:7.051680px;}
.ws2a{word-spacing:7.171200px;}
.ws5c{word-spacing:7.230960px;}
.wsbc{word-spacing:7.350480px;}
.ws5b{word-spacing:7.410240px;}
.ws91{word-spacing:7.589520px;}
.ws82{word-spacing:7.768800px;}
.ws81{word-spacing:7.888320px;}
.ws5e{word-spacing:7.948080px;}
.ws5d{word-spacing:8.067600px;}
.wsb2{word-spacing:8.306640px;}
.wsfe{word-spacing:8.366400px;}
.ws4b{word-spacing:8.605440px;}
.wsff{word-spacing:8.665200px;}
.ws5a{word-spacing:8.844480px;}
.ws4c{word-spacing:8.904240px;}
.ws7e{word-spacing:8.964000px;}
.ws89{word-spacing:9.023760px;}
.ws35{word-spacing:9.322560px;}
.wsb0{word-spacing:9.382320px;}
.ws9a{word-spacing:9.501840px;}
.ws38{word-spacing:9.561600px;}
.ws40{word-spacing:9.681120px;}
.wscd{word-spacing:10.099440px;}
.wsd2{word-spacing:10.278720px;}
.ws4a{word-spacing:10.338480px;}
.wsef{word-spacing:10.458000px;}
.wsbd{word-spacing:10.517760px;}
.wsb4{word-spacing:10.876320px;}
.ws85{word-spacing:10.995840px;}
.ws4d{word-spacing:11.055600px;}
.ws54{word-spacing:11.234880px;}
.wse0{word-spacing:11.414160px;}
.wsc7{word-spacing:11.533680px;}
.ws48{word-spacing:11.712960px;}
.ws47{word-spacing:11.772720px;}
.ws8d{word-spacing:11.832480px;}
.ws53{word-spacing:11.892240px;}
.wse1{word-spacing:11.952000px;}
.ws74{word-spacing:12.310560px;}
.wsd0{word-spacing:12.430080px;}
.wscb{word-spacing:12.489840px;}
.wsbb{word-spacing:12.549600px;}
.wseb{word-spacing:12.609360px;}
.ws75{word-spacing:12.669120px;}
.wsad{word-spacing:12.967920px;}
.wsf6{word-spacing:13.027680px;}
.wse8{word-spacing:13.206960px;}
.wsea{word-spacing:13.326480px;}
.ws57{word-spacing:13.565520px;}
.wsb3{word-spacing:13.685040px;}
.ws59{word-spacing:13.744800px;}
.ws58{word-spacing:13.864320px;}
.wsb7{word-spacing:13.924080px;}
.wsc1{word-spacing:14.103360px;}
.ws5f{word-spacing:14.282640px;}
.ws72{word-spacing:14.461920px;}
.ws7f{word-spacing:14.641200px;}
.ws78{word-spacing:14.760720px;}
.wsa0{word-spacing:14.820480px;}
.wsc4{word-spacing:15.179040px;}
.wsb6{word-spacing:15.298560px;}
.wsc5{word-spacing:15.358320px;}
.wse5{word-spacing:15.477840px;}
.ws73{word-spacing:15.537600px;}
.ws99{word-spacing:15.836400px;}
.wsfd{word-spacing:15.896160px;}
.ws98{word-spacing:16.075440px;}
.wsdd{word-spacing:16.194960px;}
.ws7d{word-spacing:16.553520px;}
.wse7{word-spacing:16.732800px;}
.wsf2{word-spacing:16.792560px;}
.wse6{word-spacing:16.852320px;}
.wsbf{word-spacing:17.091360px;}
.wsae{word-spacing:17.509680px;}
.wsa1{word-spacing:18.346320px;}
.ws45{word-spacing:18.764640px;}
.wsbe{word-spacing:19.123200px;}
.ws9b{word-spacing:19.601280px;}
.ws4f{word-spacing:19.661040px;}
.ws86{word-spacing:19.780560px;}
.ws50{word-spacing:19.840320px;}
.wsb1{word-spacing:20.198880px;}
.wsf4{word-spacing:21.931920px;}
.ws80{word-spacing:22.170960px;}
.ws7c{word-spacing:23.007600px;}
.ws83{word-spacing:23.067360px;}
.wscc{word-spacing:23.246640px;}
.ws7b{word-spacing:23.366160px;}
.ws100{word-spacing:23.425920px;}
.wsd5{word-spacing:23.784480px;}
.wsfc{word-spacing:23.904000px;}
.wsd4{word-spacing:24.143040px;}
.wsf0{word-spacing:24.621120px;}
.ws55{word-spacing:24.800400px;}
.wsf1{word-spacing:24.860160px;}
.wsba{word-spacing:25.099200px;}
.wsde{word-spacing:26.294400px;}
.wsdf{word-spacing:26.354160px;}
.wsf7{word-spacing:27.429840px;}
.wsfa{word-spacing:27.609120px;}
.ws56{word-spacing:27.728640px;}
.ws8a{word-spacing:29.043360px;}
.ws8b{word-spacing:29.103120px;}
.wsaf{word-spacing:31.852080px;}
.wsd7{word-spacing:32.449680px;}
.wsd6{word-spacing:32.628960px;}
.wse2{word-spacing:34.182720px;}
.wse3{word-spacing:34.959600px;}
._d{margin-left:-5.605920px;}
._c{margin-left:-3.673824px;}
._4{margin-left:-2.545776px;}
._0{margin-left:-1.207152px;}
._2{width:1.733256px;}
._3{width:2.880432px;}
._6{width:4.780368px;}
._7{width:6.513624px;}
._8{width:8.366616px;}
._5{width:9.740880px;}
._9{width:12.261888px;}
._a{width:13.487616px;}
._b{width:14.665104px;}
._12{width:15.979176px;}
._e{width:19.242072px;}
._f{width:23.322744px;}
._13{width:25.995600px;}
._14{width:27.459720px;}
._10{width:31.433544px;}
._11{width:36.282744px;}
._1{width:94.791312px;}
._1d{width:116.093016px;}
._1c{width:117.364464px;}
._19{width:200.950776px;}
._1a{width:231.919488px;}
._1b{width:355.736304px;}
._15{width:514.376928px;}
._16{width:599.349456px;}
._18{width:613.110744px;}
._17{width:751.723488px;}
.fc2{color:transparent;}
.fc1{color:rgb(201,41,103);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:22.200600px;}
.fse{font-size:24.600000px;}
.fs17{font-size:27.360600px;}
.fsd{font-size:27.600000px;}
.fs12{font-size:32.400600px;}
.fs11{font-size:33.000600px;}
.fs10{font-size:34.560000px;}
.fsf{font-size:38.400600px;}
.fs1e{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:42.600000px;}
.fs13{font-size:43.200000px;}
.fsb{font-size:43.800600px;}
.fs15{font-size:48.000000px;}
.fs1d{font-size:48.240000px;}
.fs1a{font-size:51.600000px;}
.fsc{font-size:54.000000px;}
.fs1b{font-size:55.800000px;}
.fs14{font-size:58.800000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs19{font-size:73.200000px;}
.fs1c{font-size:82.800000px;}
.fs8{font-size:84.000000px;}
.fs6{font-size:95.760000px;}
.fs16{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y187{bottom:52.903500px;}
.y5{bottom:66.525004px;}
.y186{bottom:67.903500px;}
.y12d{bottom:90.080460px;}
.y135{bottom:90.337500px;}
.y104{bottom:90.538020px;}
.y185{bottom:93.376500px;}
.y4{bottom:97.125005px;}
.yc3{bottom:98.957550px;}
.y9d{bottom:99.623700px;}
.y134{bottom:106.897500px;}
.y12c{bottom:107.724600px;}
.y12f{bottom:108.376500px;}
.y103{bottom:108.540720px;}
.y133{bottom:112.657500px;}
.yc2{bottom:116.601690px;}
.y9c{bottom:117.267840px;}
.y61{bottom:118.072800px;}
.y43{bottom:118.252080px;}
.y12e{bottom:123.376500px;}
.y132{bottom:124.537500px;}
.y12b{bottom:125.189460px;}
.y131{bottom:130.657500px;}
.yc1{bottom:134.245830px;}
.y102{bottom:135.716580px;}
.y42{bottom:135.716940px;}
.y60{bottom:136.045620px;}
.y184{bottom:138.197100px;}
.y130{bottom:138.937500px;}
.y21{bottom:139.264499px;}
.y12a{bottom:142.833600px;}
.y9b{bottom:143.905860px;}
.yc0{bottom:152.069250px;}
.y101{bottom:153.181440px;}
.y5f{bottom:154.048320px;}
.y129{bottom:160.298460px;}
.y9a{bottom:161.908560px;}
.y41{bottom:162.250380px;}
.ybf{bottom:169.713390px;}
.y100{bottom:170.825580px;}
.y5e{bottom:172.051020px;}
.y128{bottom:177.942600px;}
.y40{bottom:179.715240px;}
.y99{bottom:179.911260px;}
.ybe{bottom:187.357530px;}
.yff{bottom:188.290440px;}
.y5d{bottom:190.053720px;}
.y127{bottom:195.407460px;}
.y18{bottom:196.933500px;}
.y3f{bottom:197.359380px;}
.y98{bottom:197.913960px;}
.ybd{bottom:205.180950px;}
.yfe{bottom:205.934580px;}
.y5c{bottom:208.056420px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y183{bottom:211.684140px;}
.y126{bottom:213.051600px;}
.y3e{bottom:214.824240px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ybc{bottom:222.825090px;}
.yfd{bottom:223.399440px;}
.y97{bottom:224.910540px;}
.y5b{bottom:226.059120px;}
.y3d{bottom:232.468380px;}
.y182{bottom:232.560000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y125{bottom:239.510340px;}
.ybb{bottom:240.469230px;}
.yfc{bottom:241.043580px;}
.y5a{bottom:244.061820px;}
.y3c{bottom:249.933240px;}
.y96{bottom:251.907120px;}
.y124{bottom:257.154480px;}
.yba{bottom:258.292650px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y59{bottom:262.064520px;}
.y181{bottom:267.124500px;}
.yfb{bottom:267.502320px;}
.y3b{bottom:267.577380px;}
.y95{bottom:269.730540px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y123{bottom:274.977900px;}
.yb9{bottom:275.936790px;}
.y58{bottom:280.067220px;}
.y180{bottom:281.880000px;}
.y3a{bottom:285.042240px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yfa{bottom:285.146460px;}
.y94{bottom:287.374680px;}
.y122{bottom:292.622040px;}
.yb8{bottom:293.580930px;}
.y17f{bottom:297.000000px;}
.y57{bottom:298.069920px;}
.y39{bottom:302.686380px;}
.yf9{bottom:302.969880px;}
.y93{bottom:305.018820px;}
.y121{bottom:310.266180px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yb7{bottom:311.404350px;}
.y17e{bottom:313.029000px;}
.y56{bottom:316.072620px;}
.y38{bottom:320.151240px;}
.yf8{bottom:320.614020px;}
.y92{bottom:322.842240px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y120{bottom:328.089600px;}
.yb6{bottom:329.048490px;}
.y17d{bottom:331.024500px;}
.y55{bottom:334.075320px;}
.yf7{bottom:338.258160px;}
.y91{bottom:340.486380px;}
.y11f{bottom:345.733740px;}
.yb5{bottom:346.692630px;}
.y37{bottom:346.789260px;}
.yf{bottom:348.133500px;}
.y54{bottom:352.078020px;}
.yf6{bottom:356.081580px;}
.y90{bottom:358.130520px;}
.y11e{bottom:363.377880px;}
.y36{bottom:364.254120px;}
.y17c{bottom:373.333500px;}
.yb4{bottom:373.509930px;}
.yf5{bottom:373.725720px;}
.y8f{bottom:375.953940px;}
.y53{bottom:379.029780px;}
.y11d{bottom:381.201300px;}
.y35{bottom:381.898260px;}
.ye{bottom:386.785499px;}
.yb3{bottom:391.154070px;}
.yf4{bottom:391.369860px;}
.y17b{bottom:396.729000px;}
.y52{bottom:397.032480px;}
.y11c{bottom:398.845440px;}
.y34{bottom:399.363120px;}
.y8e{bottom:402.591960px;}
.yd{bottom:408.044999px;}
.yb2{bottom:408.798210px;}
.yf3{bottom:409.193280px;}
.y17a{bottom:412.564500px;}
.y51{bottom:415.035180px;}
.y11b{bottom:416.489580px;}
.y33{bottom:417.007260px;}
.y8d{bottom:420.236100px;}
.yb1{bottom:426.621630px;}
.yf2{bottom:426.837420px;}
.y179{bottom:432.369000px;}
.y50{bottom:433.037880px;}
.y11a{bottom:434.313000px;}
.y32{bottom:434.472120px;}
.y8c{bottom:437.700960px;}
.yb0{bottom:444.265770px;}
.yf1{bottom:444.481560px;}
.y178{bottom:448.204500px;}
.y4f{bottom:451.040580px;}
.y31{bottom:452.116260px;}
.y8b{bottom:455.345100px;}
.y119{bottom:460.951020px;}
.yaf{bottom:461.909910px;}
.y177{bottom:467.820000px;}
.y4e{bottom:469.043280px;}
.y30{bottom:469.581120px;}
.yf0{bottom:471.298860px;}
.y8a{bottom:472.809960px;}
.y118{bottom:478.595160px;}
.yae{bottom:479.733330px;}
.y4d{bottom:487.045980px;}
.y2f{bottom:487.225260px;}
.y176{bottom:488.160000px;}
.yef{bottom:488.763720px;}
.y89{bottom:490.454100px;}
.y117{bottom:496.418580px;}
.yad{bottom:497.377470px;}
.yc{bottom:502.864502px;}
.y2e{bottom:504.690120px;}
.yee{bottom:506.407860px;}
.y88{bottom:507.918960px;}
.y4c{bottom:514.042560px;}
.y116{bottom:514.062720px;}
.yac{bottom:515.021610px;}
.yb{bottom:520.864502px;}
.y2d{bottom:522.334260px;}
.yed{bottom:523.872720px;}
.y87{bottom:525.563100px;}
.y115{bottom:531.706860px;}
.y4b{bottom:531.865980px;}
.yab{bottom:532.665750px;}
.y175{bottom:532.689120px;}
.y155{bottom:532.698120px;}
.ya{bottom:538.864499px;}
.y2c{bottom:539.799120px;}
.yec{bottom:541.516860px;}
.y86{bottom:543.027960px;}
.y4a{bottom:549.510120px;}
.y114{bottom:549.530280px;}
.y174{bottom:550.333260px;}
.y154{bottom:550.342260px;}
.y9{bottom:556.864499px;}
.y2b{bottom:557.443260px;}
.yeb{bottom:558.981720px;}
.y85{bottom:560.672100px;}
.yaa{bottom:564.475500px;}
.y49{bottom:567.154260px;}
.y113{bottom:567.174420px;}
.y173{bottom:567.798120px;}
.y153{bottom:567.807120px;}
.ya9{bottom:581.040000px;}
.y2a{bottom:583.902000px;}
.y112{bottom:584.818560px;}
.y48{bottom:584.977680px;}
.y172{bottom:585.442260px;}
.y152{bottom:585.451260px;}
.yea{bottom:585.619740px;}
.y84{bottom:587.130840px;}
.y63{bottom:596.880000px;}
.y29{bottom:601.546140px;}
.y47{bottom:602.621820px;}
.y111{bottom:602.641980px;}
.y171{bottom:602.907120px;}
.y151{bottom:602.916120px;}
.y83{bottom:604.774980px;}
.y66{bottom:611.639100px;}
.y67{bottom:611.640000px;}
.ye9{bottom:614.065500px;}
.y28{bottom:619.011000px;}
.y46{bottom:620.265960px;}
.y170{bottom:620.551260px;}
.y150{bottom:620.560260px;}
.y82{bottom:622.239840px;}
.y65{bottom:625.335000px;}
.y110{bottom:629.280000px;}
.ye8{bottom:631.709640px;}
.y27{bottom:636.655140px;}
.y16f{bottom:638.016120px;}
.y14f{bottom:638.025120px;}
.y45{bottom:638.089380px;}
.y62{bottom:641.880000px;}
.y8{bottom:645.510000px;}
.y64{bottom:645.855000px;}
.y81{bottom:648.877860px;}
.ye7{bottom:649.174500px;}
.y26{bottom:654.120000px;}
.y16e{bottom:655.660260px;}
.y14e{bottom:655.669260px;}
.y44{bottom:655.733520px;}
.y10f{bottom:664.015500px;}
.y80{bottom:666.342720px;}
.y7{bottom:666.771000px;}
.ye6{bottom:666.818640px;}
.y16d{bottom:673.125120px;}
.y14d{bottom:673.134120px;}
.y25{bottom:680.940000px;}
.y10e{bottom:683.631000px;}
.y7f{bottom:683.986860px;}
.ye5{bottom:684.283500px;}
.y16c{bottom:690.769260px;}
.y14c{bottom:690.778260px;}
.y10d{bottom:699.655500px;}
.y7e{bottom:710.445600px;}
.ye4{bottom:710.921520px;}
.y10c{bottom:715.680000px;}
.y16b{bottom:717.228000px;}
.y14b{bottom:717.237000px;}
.y24{bottom:722.710800px;}
.y6{bottom:726.298500px;}
.ye3{bottom:728.386380px;}
.y7d{bottom:728.448300px;}
.y16a{bottom:734.872140px;}
.y14a{bottom:734.881140px;}
.ye2{bottom:746.030520px;}
.y23{bottom:750.960000px;}
.y169{bottom:752.337000px;}
.y149{bottom:752.346000px;}
.y3{bottom:752.599495px;}
.y7c{bottom:755.444880px;}
.ye1{bottom:763.495380px;}
.y168{bottom:769.981140px;}
.y148{bottom:769.990140px;}
.y7b{bottom:773.089020px;}
.ye0{bottom:781.139520px;}
.y167{bottom:787.446000px;}
.y147{bottom:787.455000px;}
.y7a{bottom:790.494120px;}
.ydf{bottom:798.604380px;}
.y166{bottom:805.090140px;}
.y146{bottom:805.099140px;}
.y79{bottom:808.138260px;}
.yde{bottom:816.248520px;}
.y22{bottom:818.820000px;}
.y165{bottom:822.555000px;}
.y145{bottom:822.564000px;}
.y78{bottom:825.603120px;}
.y164{bottom:840.199140px;}
.y144{bottom:840.208140px;}
.ydd{bottom:842.707260px;}
.y77{bottom:843.247260px;}
.yce{bottom:847.815000px;}
.y163{bottom:857.664000px;}
.y143{bottom:857.673000px;}
.ydc{bottom:860.351400px;}
.y76{bottom:860.712120px;}
.ycd{bottom:861.135000px;}
.ycc{bottom:865.080000px;}
.ycb{bottom:867.240000px;}
.y162{bottom:875.308140px;}
.y142{bottom:875.317140px;}
.yca{bottom:875.520000px;}
.ydb{bottom:877.816260px;}
.y75{bottom:878.356260px;}
.yc9{bottom:879.135000px;}
.y2{bottom:879.369000px;}
.yc8{bottom:884.880000px;}
.y161{bottom:892.773000px;}
.y141{bottom:892.782000px;}
.yc6{bottom:893.520000px;}
.yc7{bottom:894.240000px;}
.yda{bottom:895.460400px;}
.y74{bottom:895.821120px;}
.yc5{bottom:903.240000px;}
.y160{bottom:910.417140px;}
.y140{bottom:910.426140px;}
.yd9{bottom:912.925260px;}
.y73{bottom:913.465260px;}
.ya8{bottom:914.040000px;}
.y15f{bottom:927.882000px;}
.y13f{bottom:927.891000px;}
.yd8{bottom:930.569400px;}
.y72{bottom:939.924000px;}
.y15e{bottom:945.526140px;}
.y13e{bottom:945.535140px;}
.yd7{bottom:948.034260px;}
.ya7{bottom:949.186800px;}
.y71{bottom:957.568140px;}
.yc4{bottom:961.200000px;}
.y15d{bottom:962.991000px;}
.y13d{bottom:963.000000px;}
.yd6{bottom:965.678400px;}
.y1{bottom:966.726000px;}
.ya6{bottom:967.010220px;}
.y70{bottom:975.033000px;}
.y15c{bottom:980.635140px;}
.yd5{bottom:983.143260px;}
.ya5{bottom:984.654360px;}
.y10b{bottom:986.040000px;}
.y13c{bottom:989.820000px;}
.y6f{bottom:992.677140px;}
.y15b{bottom:998.100000px;}
.yd4{bottom:1000.787400px;}
.ya4{bottom:1002.298500px;}
.y6e{bottom:1010.142000px;}
.y10a{bottom:1018.058040px;}
.yd3{bottom:1018.252260px;}
.ya3{bottom:1020.121920px;}
.y13b{bottom:1021.120560px;}
.y15a{bottom:1024.920000px;}
.y6d{bottom:1027.786140px;}
.yd2{bottom:1035.896400px;}
.y109{bottom:1036.060740px;}
.ya2{bottom:1037.766060px;}
.y13a{bottom:1038.585420px;}
.y6c{bottom:1045.251000px;}
.yd1{bottom:1053.361260px;}
.y108{bottom:1054.063440px;}
.ya1{bottom:1055.410200px;}
.y159{bottom:1056.121020px;}
.y139{bottom:1056.229560px;}
.y6b{bottom:1062.895140px;}
.y107{bottom:1072.066140px;}
.ya0{bottom:1073.233620px;}
.y158{bottom:1073.585880px;}
.y138{bottom:1073.694420px;}
.yd0{bottom:1079.820000px;}
.y6a{bottom:1080.360000px;}
.y106{bottom:1090.068840px;}
.y9f{bottom:1090.877760px;}
.y157{bottom:1091.230020px;}
.y137{bottom:1091.338560px;}
.y69{bottom:1107.180000px;}
.y105{bottom:1108.071540px;}
.y9e{bottom:1108.521900px;}
.y156{bottom:1108.694880px;}
.y136{bottom:1108.803420px;}
.y68{bottom:1195.560000px;}
.ycf{bottom:1195.560150px;}
.h20{height:18.222160px;}
.h17{height:23.016960px;}
.h21{height:23.154532px;}
.h15{height:24.143555px;}
.h14{height:27.087891px;}
.h1a{height:28.771200px;}
.h19{height:31.799417px;}
.h7{height:32.130000px;}
.h18{height:32.388284px;}
.h1e{height:34.370245px;}
.h29{height:34.542096px;}
.h28{height:38.637871px;}
.h13{height:38.666525px;}
.h12{height:38.671875px;}
.h16{height:40.050626px;}
.he{height:41.809570px;}
.h9{height:42.790954px;}
.h11{height:42.796875px;}
.h1c{height:42.987894px;}
.h10{height:43.029994px;}
.hf{height:44.142792px;}
.h6{height:45.900000px;}
.h2a{height:47.109375px;}
.h27{height:47.368273px;}
.hb{height:47.437500px;}
.h3{height:48.195000px;}
.h24{height:53.817187px;}
.h2{height:55.080000px;}
.h1b{height:57.708984px;}
.h25{height:58.197656px;}
.ha{height:68.578125px;}
.h22{height:71.841797px;}
.h23{height:75.093750px;}
.h5{height:78.030000px;}
.h26{height:81.263672px;}
.hc{height:87.609375px;}
.h1f{height:100.125000px;}
.h4{height:119.055004px;}
.hd{height:423.984375px;}
.h0{height:1262.833500px;}
.h1d{height:1262.835000px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.914000px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:76.680000px;}
.x27{left:80.460000px;}
.x26{left:89.275500px;}
.x18{left:100.981500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:109.587300px;}
.x28{left:176.765940px;}
.x4{left:203.484001px;}
.x19{left:453.759720px;}
.x3{left:454.959000px;}
.x1a{left:459.001500px;}
.x16{left:460.695000px;}
.x13{left:462.606900px;}
.x15{left:473.700000px;}
.x14{left:502.890000px;}
.x1b{left:520.017000px;}
.x17{left:522.169950px;}
.x8{left:576.855000px;}
.x7{left:579.705000px;}
.x9{left:608.370000px;}
.x5{left:622.227450px;}
.xa{left:628.095000px;}
.xb{left:634.575000px;}
.x10{left:641.070000px;}
.x1c{left:644.997000px;}
.xc{left:662.415000px;}
.xd{left:673.500000px;}
.xe{left:677.775000px;}
.x11{left:710.235000px;}
.xf{left:719.610000px;}
.x12{left:733.275000px;}
.x20{left:787.632000px;}
.x24{left:789.537000px;}
.x22{left:792.432000px;}
.x1e{left:797.367000px;}
.x1f{left:801.702000px;}
.x1d{left:805.767000px;}
.x21{left:814.767000px;}
.x23{left:831.267000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4c{letter-spacing:-2.986667pt;}
.ls4f{letter-spacing:-2.277333pt;}
.ls50{letter-spacing:-2.240000pt;}
.ls40{letter-spacing:-1.829333pt;}
.ls1b{letter-spacing:-1.752960pt;}
.ls51{letter-spacing:-1.605333pt;}
.ls1c{letter-spacing:-1.540480pt;}
.ls59{letter-spacing:-1.488000pt;}
.ls1d{letter-spacing:-1.434240pt;}
.ls14{letter-spacing:-1.381120pt;}
.ls30{letter-spacing:-1.362685pt;}
.ls27{letter-spacing:-1.325333pt;}
.ls5c{letter-spacing:-1.296000pt;}
.ls15{letter-spacing:-1.274880pt;}
.ls5a{letter-spacing:-1.248000pt;}
.ls16{letter-spacing:-1.221760pt;}
.ls29{letter-spacing:-1.211733pt;}
.ls2b{letter-spacing:-1.177653pt;}
.ls35{letter-spacing:-1.168640pt;}
.ls22{letter-spacing:-1.115520pt;}
.ls5b{letter-spacing:-1.056000pt;}
.ls3e{letter-spacing:-1.026685pt;}
.ls1e{letter-spacing:-1.009280pt;}
.ls1a{letter-spacing:-0.956160pt;}
.ls54{letter-spacing:-0.912000pt;}
.ls34{letter-spacing:-0.903040pt;}
.ls42{letter-spacing:-0.864000pt;}
.ls33{letter-spacing:-0.849920pt;}
.ls18{letter-spacing:-0.796800pt;}
.ls46{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.743680pt;}
.ls23{letter-spacing:-0.690560pt;}
.ls44{letter-spacing:-0.672000pt;}
.ls21{letter-spacing:-0.637440pt;}
.ls11{letter-spacing:-0.584320pt;}
.ls56{letter-spacing:-0.576000pt;}
.ls2d{letter-spacing:-0.549067pt;}
.ls32{letter-spacing:-0.531200pt;}
.ls47{letter-spacing:-0.528000pt;}
.ls55{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.478080pt;}
.ls43{letter-spacing:-0.432000pt;}
.ls1f{letter-spacing:-0.424960pt;}
.ls2e{letter-spacing:-0.340800pt;}
.ls45{letter-spacing:-0.336000pt;}
.ls12{letter-spacing:-0.318720pt;}
.ls31{letter-spacing:-0.294400pt;}
.ls39{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.265600pt;}
.lsc{letter-spacing:-0.255360pt;}
.ls3a{letter-spacing:-0.240000pt;}
.ls60{letter-spacing:-0.222720pt;}
.ls36{letter-spacing:-0.212480pt;}
.ls37{letter-spacing:-0.192000pt;}
.ls41{letter-spacing:-0.176640pt;}
.ls5e{letter-spacing:-0.171520pt;}
.lsa{letter-spacing:-0.170240pt;}
.lse{letter-spacing:-0.159360pt;}
.ls5d{letter-spacing:-0.144000pt;}
.ls5f{letter-spacing:-0.128640pt;}
.lsf{letter-spacing:-0.106240pt;}
.ls9{letter-spacing:-0.085120pt;}
.ls17{letter-spacing:-0.053120pt;}
.ls2a{letter-spacing:-0.049227pt;}
.ls48{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.019520pt;}
.ls28{letter-spacing:0.022720pt;}
.ls13{letter-spacing:0.053120pt;}
.ls25{letter-spacing:0.068160pt;}
.ls8{letter-spacing:0.085120pt;}
.ls3c{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.106240pt;}
.ls38{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.159360pt;}
.lsb{letter-spacing:0.170240pt;}
.ls4a{letter-spacing:0.176640pt;}
.ls57{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.212480pt;}
.ls61{letter-spacing:0.214400pt;}
.ls53{letter-spacing:0.235520pt;}
.ls3{letter-spacing:0.255360pt;}
.ls58{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.289408pt;}
.lsd{letter-spacing:0.294400pt;}
.ls10{letter-spacing:0.318720pt;}
.ls3b{letter-spacing:0.336000pt;}
.ls1{letter-spacing:0.371840pt;}
.ls3d{letter-spacing:0.392533pt;}
.ls5{letter-spacing:0.849920pt;}
.ls4d{letter-spacing:0.986693pt;}
.ls2c{letter-spacing:1.230667pt;}
.ls2f{letter-spacing:1.238240pt;}
.ls24{letter-spacing:1.336693pt;}
.ls3f{letter-spacing:1.440027pt;}
.ls49{letter-spacing:2.365920pt;}
.ls52{letter-spacing:3.680000pt;}
.ls4b{letter-spacing:6.432000pt;}
.ws1{word-spacing:-15.662080pt;}
.wsa{word-spacing:-10.252160pt;}
.ws70{word-spacing:-10.199040pt;}
.ws64{word-spacing:-10.092800pt;}
.ws3{word-spacing:-10.039680pt;}
.ws63{word-spacing:-9.986560pt;}
.ws2{word-spacing:-9.933440pt;}
.ws9{word-spacing:-9.880320pt;}
.ws65{word-spacing:-9.774080pt;}
.ws8{word-spacing:-9.561600pt;}
.ws62{word-spacing:-9.466667pt;}
.ws66{word-spacing:-9.455360pt;}
.wsb{word-spacing:-9.402240pt;}
.ws67{word-spacing:-9.296000pt;}
.ws6{word-spacing:-9.242880pt;}
.ws6f{word-spacing:-9.136640pt;}
.wsec{word-spacing:-9.072000pt;}
.ws5{word-spacing:-9.030400pt;}
.ws7{word-spacing:-8.924160pt;}
.ws6e{word-spacing:-8.880000pt;}
.ws6a{word-spacing:-8.817920pt;}
.ws68{word-spacing:-8.658560pt;}
.ws4{word-spacing:-8.286720pt;}
.ws69{word-spacing:-8.127360pt;}
.ws6d{word-spacing:-8.074240pt;}
.ws6b{word-spacing:-7.968000pt;}
.ws6c{word-spacing:-7.914880pt;}
.wsed{word-spacing:-7.584000pt;}
.ws32{word-spacing:-2.018560pt;}
.wsd9{word-spacing:-2.016000pt;}
.ws15{word-spacing:-1.699840pt;}
.ws29{word-spacing:-1.593600pt;}
.ws31{word-spacing:-1.540480pt;}
.wsf5{word-spacing:-1.381120pt;}
.ws51{word-spacing:-1.221760pt;}
.wsc6{word-spacing:-1.115520pt;}
.wse9{word-spacing:-1.062400pt;}
.ws2d{word-spacing:-0.956160pt;}
.ws2c{word-spacing:-0.903040pt;}
.ws30{word-spacing:-0.796800pt;}
.ws52{word-spacing:-0.743680pt;}
.wsf3{word-spacing:-0.637440pt;}
.ws60{word-spacing:-0.584320pt;}
.ws108{word-spacing:-0.480000pt;}
.ws84{word-spacing:-0.478080pt;}
.wsda{word-spacing:-0.432000pt;}
.ws18{word-spacing:-0.424960pt;}
.ws4e{word-spacing:-0.371840pt;}
.wsd{word-spacing:-0.340480pt;}
.wsa9{word-spacing:-0.336000pt;}
.ws28{word-spacing:-0.318720pt;}
.ws105{word-spacing:-0.288000pt;}
.ws17{word-spacing:-0.265600pt;}
.ws106{word-spacing:-0.240000pt;}
.ws9c{word-spacing:-0.212480pt;}
.wsee{word-spacing:-0.176640pt;}
.ws10{word-spacing:-0.170240pt;}
.ws20{word-spacing:-0.159360pt;}
.ws109{word-spacing:-0.144000pt;}
.ws19{word-spacing:-0.106240pt;}
.wsa7{word-spacing:-0.096000pt;}
.ws11{word-spacing:-0.085120pt;}
.ws27{word-spacing:-0.053120pt;}
.wsdc{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws10a{word-spacing:0.048000pt;}
.wsc{word-spacing:0.053120pt;}
.wsf9{word-spacing:0.058880pt;}
.wse{word-spacing:0.085120pt;}
.ws10b{word-spacing:0.096000pt;}
.ws14{word-spacing:0.106240pt;}
.ws101{word-spacing:0.144000pt;}
.ws13{word-spacing:0.159360pt;}
.wsf{word-spacing:0.170240pt;}
.ws10f{word-spacing:0.171520pt;}
.wsaa{word-spacing:0.192000pt;}
.ws34{word-spacing:0.212480pt;}
.wsb8{word-spacing:0.235520pt;}
.ws111{word-spacing:0.259840pt;}
.ws71{word-spacing:0.265600pt;}
.wsa4{word-spacing:0.288000pt;}
.ws25{word-spacing:0.318720pt;}
.wsa3{word-spacing:0.336000pt;}
.ws110{word-spacing:0.343040pt;}
.ws21{word-spacing:0.371840pt;}
.ws10e{word-spacing:0.385920pt;}
.ws3d{word-spacing:0.424960pt;}
.ws36{word-spacing:0.478080pt;}
.wsdb{word-spacing:0.528000pt;}
.ws1b{word-spacing:0.531200pt;}
.ws107{word-spacing:0.576000pt;}
.ws3e{word-spacing:0.584320pt;}
.ws3b{word-spacing:0.637440pt;}
.ws12{word-spacing:0.690560pt;}
.ws37{word-spacing:0.743680pt;}
.wsa8{word-spacing:0.768000pt;}
.ws1a{word-spacing:0.796800pt;}
.ws104{word-spacing:0.816000pt;}
.ws23{word-spacing:0.849920pt;}
.wsd8{word-spacing:0.864000pt;}
.ws9d{word-spacing:0.903040pt;}
.ws103{word-spacing:0.912000pt;}
.ws22{word-spacing:0.956160pt;}
.ws77{word-spacing:1.009280pt;}
.ws8c{word-spacing:1.115520pt;}
.ws88{word-spacing:1.168640pt;}
.ws87{word-spacing:1.221760pt;}
.ws10d{word-spacing:1.248000pt;}
.ws46{word-spacing:1.274880pt;}
.ws112{word-spacing:1.322667pt;}
.ws61{word-spacing:1.328000pt;}
.ws24{word-spacing:1.381120pt;}
.ws33{word-spacing:1.434240pt;}
.ws41{word-spacing:1.487360pt;}
.ws10c{word-spacing:1.488000pt;}
.ws1e{word-spacing:1.593600pt;}
.ws1f{word-spacing:1.646720pt;}
.wsa5{word-spacing:1.680000pt;}
.ws9e{word-spacing:1.806080pt;}
.wsa6{word-spacing:1.824000pt;}
.wsc3{word-spacing:1.912320pt;}
.ws26{word-spacing:1.965440pt;}
.ws102{word-spacing:2.064000pt;}
.ws3f{word-spacing:2.071680pt;}
.ws3c{word-spacing:2.124800pt;}
.wsd3{word-spacing:2.231040pt;}
.wsc2{word-spacing:2.284160pt;}
.ws9f{word-spacing:2.443520pt;}
.ws3a{word-spacing:2.549760pt;}
.wsac{word-spacing:2.602880pt;}
.ws39{word-spacing:2.709120pt;}
.wsca{word-spacing:2.762240pt;}
.wsc8{word-spacing:2.815360pt;}
.wsf8{word-spacing:2.868480pt;}
.ws93{word-spacing:2.921600pt;}
.wsb9{word-spacing:3.027840pt;}
.ws2e{word-spacing:3.080960pt;}
.wsce{word-spacing:3.240320pt;}
.ws94{word-spacing:3.346560pt;}
.ws95{word-spacing:3.399680pt;}
.wsd1{word-spacing:3.452800pt;}
.ws2f{word-spacing:3.505920pt;}
.wsab{word-spacing:3.665280pt;}
.wsb5{word-spacing:3.718400pt;}
.ws43{word-spacing:3.824640pt;}
.ws96{word-spacing:3.984000pt;}
.ws42{word-spacing:4.037120pt;}
.ws97{word-spacing:4.143360pt;}
.ws8e{word-spacing:4.355840pt;}
.ws92{word-spacing:4.462080pt;}
.ws8f{word-spacing:4.621440pt;}
.ws44{word-spacing:4.674560pt;}
.ws90{word-spacing:4.727680pt;}
.wsc9{word-spacing:4.780800pt;}
.ws16{word-spacing:4.833920pt;}
.wsa2{word-spacing:5.152640pt;}
.ws1c{word-spacing:5.258880pt;}
.ws79{word-spacing:5.312000pt;}
.ws1d{word-spacing:5.418240pt;}
.ws7a{word-spacing:5.471360pt;}
.wscf{word-spacing:5.630720pt;}
.wsfb{word-spacing:5.736960pt;}
.wse4{word-spacing:5.896320pt;}
.ws49{word-spacing:5.949440pt;}
.ws76{word-spacing:6.055680pt;}
.wsc0{word-spacing:6.108800pt;}
.ws2b{word-spacing:6.268160pt;}
.ws2a{word-spacing:6.374400pt;}
.ws5c{word-spacing:6.427520pt;}
.wsbc{word-spacing:6.533760pt;}
.ws5b{word-spacing:6.586880pt;}
.ws91{word-spacing:6.746240pt;}
.ws82{word-spacing:6.905600pt;}
.ws81{word-spacing:7.011840pt;}
.ws5e{word-spacing:7.064960pt;}
.ws5d{word-spacing:7.171200pt;}
.wsb2{word-spacing:7.383680pt;}
.wsfe{word-spacing:7.436800pt;}
.ws4b{word-spacing:7.649280pt;}
.wsff{word-spacing:7.702400pt;}
.ws5a{word-spacing:7.861760pt;}
.ws4c{word-spacing:7.914880pt;}
.ws7e{word-spacing:7.968000pt;}
.ws89{word-spacing:8.021120pt;}
.ws35{word-spacing:8.286720pt;}
.wsb0{word-spacing:8.339840pt;}
.ws9a{word-spacing:8.446080pt;}
.ws38{word-spacing:8.499200pt;}
.ws40{word-spacing:8.605440pt;}
.wscd{word-spacing:8.977280pt;}
.wsd2{word-spacing:9.136640pt;}
.ws4a{word-spacing:9.189760pt;}
.wsef{word-spacing:9.296000pt;}
.wsbd{word-spacing:9.349120pt;}
.wsb4{word-spacing:9.667840pt;}
.ws85{word-spacing:9.774080pt;}
.ws4d{word-spacing:9.827200pt;}
.ws54{word-spacing:9.986560pt;}
.wse0{word-spacing:10.145920pt;}
.wsc7{word-spacing:10.252160pt;}
.ws48{word-spacing:10.411520pt;}
.ws47{word-spacing:10.464640pt;}
.ws8d{word-spacing:10.517760pt;}
.ws53{word-spacing:10.570880pt;}
.wse1{word-spacing:10.624000pt;}
.ws74{word-spacing:10.942720pt;}
.wsd0{word-spacing:11.048960pt;}
.wscb{word-spacing:11.102080pt;}
.wsbb{word-spacing:11.155200pt;}
.wseb{word-spacing:11.208320pt;}
.ws75{word-spacing:11.261440pt;}
.wsad{word-spacing:11.527040pt;}
.wsf6{word-spacing:11.580160pt;}
.wse8{word-spacing:11.739520pt;}
.wsea{word-spacing:11.845760pt;}
.ws57{word-spacing:12.058240pt;}
.wsb3{word-spacing:12.164480pt;}
.ws59{word-spacing:12.217600pt;}
.ws58{word-spacing:12.323840pt;}
.wsb7{word-spacing:12.376960pt;}
.wsc1{word-spacing:12.536320pt;}
.ws5f{word-spacing:12.695680pt;}
.ws72{word-spacing:12.855040pt;}
.ws7f{word-spacing:13.014400pt;}
.ws78{word-spacing:13.120640pt;}
.wsa0{word-spacing:13.173760pt;}
.wsc4{word-spacing:13.492480pt;}
.wsb6{word-spacing:13.598720pt;}
.wsc5{word-spacing:13.651840pt;}
.wse5{word-spacing:13.758080pt;}
.ws73{word-spacing:13.811200pt;}
.ws99{word-spacing:14.076800pt;}
.wsfd{word-spacing:14.129920pt;}
.ws98{word-spacing:14.289280pt;}
.wsdd{word-spacing:14.395520pt;}
.ws7d{word-spacing:14.714240pt;}
.wse7{word-spacing:14.873600pt;}
.wsf2{word-spacing:14.926720pt;}
.wse6{word-spacing:14.979840pt;}
.wsbf{word-spacing:15.192320pt;}
.wsae{word-spacing:15.564160pt;}
.wsa1{word-spacing:16.307840pt;}
.ws45{word-spacing:16.679680pt;}
.wsbe{word-spacing:16.998400pt;}
.ws9b{word-spacing:17.423360pt;}
.ws4f{word-spacing:17.476480pt;}
.ws86{word-spacing:17.582720pt;}
.ws50{word-spacing:17.635840pt;}
.wsb1{word-spacing:17.954560pt;}
.wsf4{word-spacing:19.495040pt;}
.ws80{word-spacing:19.707520pt;}
.ws7c{word-spacing:20.451200pt;}
.ws83{word-spacing:20.504320pt;}
.wscc{word-spacing:20.663680pt;}
.ws7b{word-spacing:20.769920pt;}
.ws100{word-spacing:20.823040pt;}
.wsd5{word-spacing:21.141760pt;}
.wsfc{word-spacing:21.248000pt;}
.wsd4{word-spacing:21.460480pt;}
.wsf0{word-spacing:21.885440pt;}
.ws55{word-spacing:22.044800pt;}
.wsf1{word-spacing:22.097920pt;}
.wsba{word-spacing:22.310400pt;}
.wsde{word-spacing:23.372800pt;}
.wsdf{word-spacing:23.425920pt;}
.wsf7{word-spacing:24.382080pt;}
.wsfa{word-spacing:24.541440pt;}
.ws56{word-spacing:24.647680pt;}
.ws8a{word-spacing:25.816320pt;}
.ws8b{word-spacing:25.869440pt;}
.wsaf{word-spacing:28.312960pt;}
.wsd7{word-spacing:28.844160pt;}
.wsd6{word-spacing:29.003520pt;}
.wse2{word-spacing:30.384640pt;}
.wse3{word-spacing:31.075200pt;}
._d{margin-left:-4.983040pt;}
._c{margin-left:-3.265621pt;}
._4{margin-left:-2.262912pt;}
._0{margin-left:-1.073024pt;}
._2{width:1.540672pt;}
._3{width:2.560384pt;}
._6{width:4.249216pt;}
._7{width:5.789888pt;}
._8{width:7.436992pt;}
._5{width:8.658560pt;}
._9{width:10.899456pt;}
._a{width:11.988992pt;}
._b{width:13.035648pt;}
._12{width:14.203712pt;}
._e{width:17.104064pt;}
._f{width:20.731328pt;}
._13{width:23.107200pt;}
._14{width:24.408640pt;}
._10{width:27.940928pt;}
._11{width:32.251328pt;}
._1{width:84.258944pt;}
._1d{width:103.193792pt;}
._1c{width:104.323968pt;}
._19{width:178.622912pt;}
._1a{width:206.150656pt;}
._1b{width:316.210048pt;}
._15{width:457.223936pt;}
._16{width:532.755072pt;}
._18{width:544.987328pt;}
._17{width:668.198656pt;}
.fs18{font-size:19.733867pt;}
.fse{font-size:21.866667pt;}
.fs17{font-size:24.320533pt;}
.fsd{font-size:24.533333pt;}
.fs12{font-size:28.800533pt;}
.fs11{font-size:29.333867pt;}
.fs10{font-size:30.720000pt;}
.fsf{font-size:34.133867pt;}
.fs1e{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:37.866667pt;}
.fs13{font-size:38.400000pt;}
.fsb{font-size:38.933867pt;}
.fs15{font-size:42.666667pt;}
.fs1d{font-size:42.880000pt;}
.fs1a{font-size:45.866667pt;}
.fsc{font-size:48.000000pt;}
.fs1b{font-size:49.600000pt;}
.fs14{font-size:52.266667pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs19{font-size:65.066667pt;}
.fs1c{font-size:73.600000pt;}
.fs8{font-size:74.666667pt;}
.fs6{font-size:85.120000pt;}
.fs16{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y187{bottom:47.025333pt;}
.y5{bottom:59.133337pt;}
.y186{bottom:60.358667pt;}
.y12d{bottom:80.071520pt;}
.y135{bottom:80.300000pt;}
.y104{bottom:80.478240pt;}
.y185{bottom:83.001333pt;}
.y4{bottom:86.333337pt;}
.yc3{bottom:87.962267pt;}
.y9d{bottom:88.554400pt;}
.y134{bottom:95.020000pt;}
.y12c{bottom:95.755200pt;}
.y12f{bottom:96.334667pt;}
.y103{bottom:96.480640pt;}
.y133{bottom:100.140000pt;}
.yc2{bottom:103.645947pt;}
.y9c{bottom:104.238080pt;}
.y61{bottom:104.953600pt;}
.y43{bottom:105.112960pt;}
.y12e{bottom:109.668000pt;}
.y132{bottom:110.700000pt;}
.y12b{bottom:111.279520pt;}
.y131{bottom:116.140000pt;}
.yc1{bottom:119.329627pt;}
.y102{bottom:120.636960pt;}
.y42{bottom:120.637280pt;}
.y60{bottom:120.929440pt;}
.y184{bottom:122.841867pt;}
.y130{bottom:123.500000pt;}
.y21{bottom:123.790666pt;}
.y12a{bottom:126.963200pt;}
.y9b{bottom:127.916320pt;}
.yc0{bottom:135.172667pt;}
.y101{bottom:136.161280pt;}
.y5f{bottom:136.931840pt;}
.y129{bottom:142.487520pt;}
.y9a{bottom:143.918720pt;}
.y41{bottom:144.222560pt;}
.ybf{bottom:150.856347pt;}
.y100{bottom:151.844960pt;}
.y5e{bottom:152.934240pt;}
.y128{bottom:158.171200pt;}
.y40{bottom:159.746880pt;}
.y99{bottom:159.921120pt;}
.ybe{bottom:166.540027pt;}
.yff{bottom:167.369280pt;}
.y5d{bottom:168.936640pt;}
.y127{bottom:173.695520pt;}
.y18{bottom:175.052000pt;}
.y3f{bottom:175.430560pt;}
.y98{bottom:175.923520pt;}
.ybd{bottom:182.383067pt;}
.yfe{bottom:183.052960pt;}
.y5c{bottom:184.939040pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y183{bottom:188.163680pt;}
.y126{bottom:189.379200pt;}
.y3e{bottom:190.954880pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ybc{bottom:198.066747pt;}
.yfd{bottom:198.577280pt;}
.y97{bottom:199.920480pt;}
.y5b{bottom:200.941440pt;}
.y3d{bottom:206.638560pt;}
.y182{bottom:206.720000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y125{bottom:212.898080pt;}
.ybb{bottom:213.750427pt;}
.yfc{bottom:214.260960pt;}
.y5a{bottom:216.943840pt;}
.y3c{bottom:222.162880pt;}
.y96{bottom:223.917440pt;}
.y124{bottom:228.581760pt;}
.yba{bottom:229.593467pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y59{bottom:232.946240pt;}
.y181{bottom:237.444000pt;}
.yfb{bottom:237.779840pt;}
.y3b{bottom:237.846560pt;}
.y95{bottom:239.760480pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y123{bottom:244.424800pt;}
.yb9{bottom:245.277147pt;}
.y58{bottom:248.948640pt;}
.y180{bottom:250.560000pt;}
.y3a{bottom:253.370880pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yfa{bottom:253.463520pt;}
.y94{bottom:255.444160pt;}
.y122{bottom:260.108480pt;}
.yb8{bottom:260.960827pt;}
.y17f{bottom:264.000000pt;}
.y57{bottom:264.951040pt;}
.y39{bottom:269.054560pt;}
.yf9{bottom:269.306560pt;}
.y93{bottom:271.127840pt;}
.y121{bottom:275.792160pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yb7{bottom:276.803867pt;}
.y17e{bottom:278.248000pt;}
.y56{bottom:280.953440pt;}
.y38{bottom:284.578880pt;}
.yf8{bottom:284.990240pt;}
.y92{bottom:286.970880pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y120{bottom:291.635200pt;}
.yb6{bottom:292.487547pt;}
.y17d{bottom:294.244000pt;}
.y55{bottom:296.955840pt;}
.yf7{bottom:300.673920pt;}
.y91{bottom:302.654560pt;}
.y11f{bottom:307.318880pt;}
.yb5{bottom:308.171227pt;}
.y37{bottom:308.257120pt;}
.yf{bottom:309.452000pt;}
.y54{bottom:312.958240pt;}
.yf6{bottom:316.516960pt;}
.y90{bottom:318.338240pt;}
.y11e{bottom:323.002560pt;}
.y36{bottom:323.781440pt;}
.y17c{bottom:331.852000pt;}
.yb4{bottom:332.008827pt;}
.yf5{bottom:332.200640pt;}
.y8f{bottom:334.181280pt;}
.y53{bottom:336.915360pt;}
.y11d{bottom:338.845600pt;}
.y35{bottom:339.465120pt;}
.ye{bottom:343.809333pt;}
.yb3{bottom:347.692507pt;}
.yf4{bottom:347.884320pt;}
.y17b{bottom:352.648000pt;}
.y52{bottom:352.917760pt;}
.y11c{bottom:354.529280pt;}
.y34{bottom:354.989440pt;}
.y8e{bottom:357.859520pt;}
.yd{bottom:362.706666pt;}
.yb2{bottom:363.376187pt;}
.yf3{bottom:363.727360pt;}
.y17a{bottom:366.724000pt;}
.y51{bottom:368.920160pt;}
.y11b{bottom:370.212960pt;}
.y33{bottom:370.673120pt;}
.y8d{bottom:373.543200pt;}
.yb1{bottom:379.219227pt;}
.yf2{bottom:379.411040pt;}
.y179{bottom:384.328000pt;}
.y50{bottom:384.922560pt;}
.y11a{bottom:386.056000pt;}
.y32{bottom:386.197440pt;}
.y8c{bottom:389.067520pt;}
.yb0{bottom:394.902907pt;}
.yf1{bottom:395.094720pt;}
.y178{bottom:398.404000pt;}
.y4f{bottom:400.924960pt;}
.y31{bottom:401.881120pt;}
.y8b{bottom:404.751200pt;}
.y119{bottom:409.734240pt;}
.yaf{bottom:410.586587pt;}
.y177{bottom:415.840000pt;}
.y4e{bottom:416.927360pt;}
.y30{bottom:417.405440pt;}
.yf0{bottom:418.932320pt;}
.y8a{bottom:420.275520pt;}
.y118{bottom:425.417920pt;}
.yae{bottom:426.429627pt;}
.y4d{bottom:432.929760pt;}
.y2f{bottom:433.089120pt;}
.y176{bottom:433.920000pt;}
.yef{bottom:434.456640pt;}
.y89{bottom:435.959200pt;}
.y117{bottom:441.260960pt;}
.yad{bottom:442.113307pt;}
.yc{bottom:446.990669pt;}
.y2e{bottom:448.613440pt;}
.yee{bottom:450.140320pt;}
.y88{bottom:451.483520pt;}
.y4c{bottom:456.926720pt;}
.y116{bottom:456.944640pt;}
.yac{bottom:457.796987pt;}
.yb{bottom:462.990669pt;}
.y2d{bottom:464.297120pt;}
.yed{bottom:465.664640pt;}
.y87{bottom:467.167200pt;}
.y115{bottom:472.628320pt;}
.y4b{bottom:472.769760pt;}
.yab{bottom:473.480667pt;}
.y175{bottom:473.501440pt;}
.y155{bottom:473.509440pt;}
.ya{bottom:478.990666pt;}
.y2c{bottom:479.821440pt;}
.yec{bottom:481.348320pt;}
.y86{bottom:482.691520pt;}
.y4a{bottom:488.453440pt;}
.y114{bottom:488.471360pt;}
.y174{bottom:489.185120pt;}
.y154{bottom:489.193120pt;}
.y9{bottom:494.990666pt;}
.y2b{bottom:495.505120pt;}
.yeb{bottom:496.872640pt;}
.y85{bottom:498.375200pt;}
.yaa{bottom:501.756000pt;}
.y49{bottom:504.137120pt;}
.y113{bottom:504.155040pt;}
.y173{bottom:504.709440pt;}
.y153{bottom:504.717440pt;}
.ya9{bottom:516.480000pt;}
.y2a{bottom:519.024000pt;}
.y112{bottom:519.838720pt;}
.y48{bottom:519.980160pt;}
.y172{bottom:520.393120pt;}
.y152{bottom:520.401120pt;}
.yea{bottom:520.550880pt;}
.y84{bottom:521.894080pt;}
.y63{bottom:530.560000pt;}
.y29{bottom:534.707680pt;}
.y47{bottom:535.663840pt;}
.y111{bottom:535.681760pt;}
.y171{bottom:535.917440pt;}
.y151{bottom:535.925440pt;}
.y83{bottom:537.577760pt;}
.y66{bottom:543.679200pt;}
.y67{bottom:543.680000pt;}
.ye9{bottom:545.836000pt;}
.y28{bottom:550.232000pt;}
.y46{bottom:551.347520pt;}
.y170{bottom:551.601120pt;}
.y150{bottom:551.609120pt;}
.y82{bottom:553.102080pt;}
.y65{bottom:555.853333pt;}
.y110{bottom:559.360000pt;}
.ye8{bottom:561.519680pt;}
.y27{bottom:565.915680pt;}
.y16f{bottom:567.125440pt;}
.y14f{bottom:567.133440pt;}
.y45{bottom:567.190560pt;}
.y62{bottom:570.560000pt;}
.y8{bottom:573.786667pt;}
.y64{bottom:574.093333pt;}
.y81{bottom:576.780320pt;}
.ye7{bottom:577.044000pt;}
.y26{bottom:581.440000pt;}
.y16e{bottom:582.809120pt;}
.y14e{bottom:582.817120pt;}
.y44{bottom:582.874240pt;}
.y10f{bottom:590.236000pt;}
.y80{bottom:592.304640pt;}
.y7{bottom:592.685334pt;}
.ye6{bottom:592.727680pt;}
.y16d{bottom:598.333440pt;}
.y14d{bottom:598.341440pt;}
.y25{bottom:605.280000pt;}
.y10e{bottom:607.672000pt;}
.y7f{bottom:607.988320pt;}
.ye5{bottom:608.252000pt;}
.y16c{bottom:614.017120pt;}
.y14c{bottom:614.025120pt;}
.y10d{bottom:621.916000pt;}
.y7e{bottom:631.507200pt;}
.ye4{bottom:631.930240pt;}
.y10c{bottom:636.160000pt;}
.y16b{bottom:637.536000pt;}
.y14b{bottom:637.544000pt;}
.y24{bottom:642.409600pt;}
.y6{bottom:645.598667pt;}
.ye3{bottom:647.454560pt;}
.y7d{bottom:647.509600pt;}
.y16a{bottom:653.219680pt;}
.y14a{bottom:653.227680pt;}
.ye2{bottom:663.138240pt;}
.y23{bottom:667.520000pt;}
.y169{bottom:668.744000pt;}
.y149{bottom:668.752000pt;}
.y3{bottom:668.977329pt;}
.y7c{bottom:671.506560pt;}
.ye1{bottom:678.662560pt;}
.y168{bottom:684.427680pt;}
.y148{bottom:684.435680pt;}
.y7b{bottom:687.190240pt;}
.ye0{bottom:694.346240pt;}
.y167{bottom:699.952000pt;}
.y147{bottom:699.960000pt;}
.y7a{bottom:702.661440pt;}
.ydf{bottom:709.870560pt;}
.y166{bottom:715.635680pt;}
.y146{bottom:715.643680pt;}
.y79{bottom:718.345120pt;}
.yde{bottom:725.554240pt;}
.y22{bottom:727.840000pt;}
.y165{bottom:731.160000pt;}
.y145{bottom:731.168000pt;}
.y78{bottom:733.869440pt;}
.y164{bottom:746.843680pt;}
.y144{bottom:746.851680pt;}
.ydd{bottom:749.073120pt;}
.y77{bottom:749.553120pt;}
.yce{bottom:753.613333pt;}
.y163{bottom:762.368000pt;}
.y143{bottom:762.376000pt;}
.ydc{bottom:764.756800pt;}
.y76{bottom:765.077440pt;}
.ycd{bottom:765.453333pt;}
.ycc{bottom:768.960000pt;}
.ycb{bottom:770.880000pt;}
.y162{bottom:778.051680pt;}
.y142{bottom:778.059680pt;}
.yca{bottom:778.240000pt;}
.ydb{bottom:780.281120pt;}
.y75{bottom:780.761120pt;}
.yc9{bottom:781.453333pt;}
.y2{bottom:781.661334pt;}
.yc8{bottom:786.560000pt;}
.y161{bottom:793.576000pt;}
.y141{bottom:793.584000pt;}
.yc6{bottom:794.240000pt;}
.yc7{bottom:794.880000pt;}
.yda{bottom:795.964800pt;}
.y74{bottom:796.285440pt;}
.yc5{bottom:802.880000pt;}
.y160{bottom:809.259680pt;}
.y140{bottom:809.267680pt;}
.yd9{bottom:811.489120pt;}
.y73{bottom:811.969120pt;}
.ya8{bottom:812.480000pt;}
.y15f{bottom:824.784000pt;}
.y13f{bottom:824.792000pt;}
.yd8{bottom:827.172800pt;}
.y72{bottom:835.488000pt;}
.y15e{bottom:840.467680pt;}
.y13e{bottom:840.475680pt;}
.yd7{bottom:842.697120pt;}
.ya7{bottom:843.721600pt;}
.y71{bottom:851.171680pt;}
.yc4{bottom:854.400000pt;}
.y15d{bottom:855.992000pt;}
.y13d{bottom:856.000000pt;}
.yd6{bottom:858.380800pt;}
.y1{bottom:859.312000pt;}
.ya6{bottom:859.564640pt;}
.y70{bottom:866.696000pt;}
.y15c{bottom:871.675680pt;}
.yd5{bottom:873.905120pt;}
.ya5{bottom:875.248320pt;}
.y10b{bottom:876.480000pt;}
.y13c{bottom:879.840000pt;}
.y6f{bottom:882.379680pt;}
.y15b{bottom:887.200000pt;}
.yd4{bottom:889.588800pt;}
.ya4{bottom:890.932000pt;}
.y6e{bottom:897.904000pt;}
.y10a{bottom:904.940480pt;}
.yd3{bottom:905.113120pt;}
.ya3{bottom:906.775040pt;}
.y13b{bottom:907.662720pt;}
.y15a{bottom:911.040000pt;}
.y6d{bottom:913.587680pt;}
.yd2{bottom:920.796800pt;}
.y109{bottom:920.942880pt;}
.ya2{bottom:922.458720pt;}
.y13a{bottom:923.187040pt;}
.y6c{bottom:929.112000pt;}
.yd1{bottom:936.321120pt;}
.y108{bottom:936.945280pt;}
.ya1{bottom:938.142400pt;}
.y159{bottom:938.774240pt;}
.y139{bottom:938.870720pt;}
.y6b{bottom:944.795680pt;}
.y107{bottom:952.947680pt;}
.ya0{bottom:953.985440pt;}
.y158{bottom:954.298560pt;}
.y138{bottom:954.395040pt;}
.yd0{bottom:959.840000pt;}
.y6a{bottom:960.320000pt;}
.y106{bottom:968.950080pt;}
.y9f{bottom:969.669120pt;}
.y157{bottom:969.982240pt;}
.y137{bottom:970.078720pt;}
.y69{bottom:984.160000pt;}
.y105{bottom:984.952480pt;}
.y9e{bottom:985.352800pt;}
.y156{bottom:985.506560pt;}
.y136{bottom:985.603040pt;}
.y68{bottom:1062.720000pt;}
.ycf{bottom:1062.720133pt;}
.h20{height:16.197475pt;}
.h17{height:20.459520pt;}
.h21{height:20.581806pt;}
.h15{height:21.460937pt;}
.h14{height:24.078125pt;}
.h1a{height:25.574400pt;}
.h19{height:28.266148pt;}
.h7{height:28.560000pt;}
.h18{height:28.789586pt;}
.h1e{height:30.551329pt;}
.h29{height:30.704085pt;}
.h28{height:34.344775pt;}
.h13{height:34.370245pt;}
.h12{height:34.375000pt;}
.h16{height:35.600556pt;}
.he{height:37.164062pt;}
.h9{height:38.036404pt;}
.h11{height:38.041667pt;}
.h1c{height:38.211461pt;}
.h10{height:38.248884pt;}
.hf{height:39.238037pt;}
.h6{height:40.800000pt;}
.h2a{height:41.875000pt;}
.h27{height:42.105132pt;}
.hb{height:42.166667pt;}
.h3{height:42.840000pt;}
.h24{height:47.837500pt;}
.h2{height:48.960000pt;}
.h1b{height:51.296875pt;}
.h25{height:51.731250pt;}
.ha{height:60.958333pt;}
.h22{height:63.859375pt;}
.h23{height:66.750000pt;}
.h5{height:69.360000pt;}
.h26{height:72.234375pt;}
.hc{height:77.875000pt;}
.h1f{height:89.000000pt;}
.h4{height:105.826671pt;}
.hd{height:376.875000pt;}
.h0{height:1122.518667pt;}
.h1d{height:1122.520000pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.701333pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:68.160000pt;}
.x27{left:71.520000pt;}
.x26{left:79.356000pt;}
.x18{left:89.761333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:97.410933pt;}
.x28{left:157.125280pt;}
.x4{left:180.874667pt;}
.x19{left:403.341973pt;}
.x3{left:404.408000pt;}
.x1a{left:408.001333pt;}
.x16{left:409.506667pt;}
.x13{left:411.206133pt;}
.x15{left:421.066667pt;}
.x14{left:447.013333pt;}
.x1b{left:462.237333pt;}
.x17{left:464.151067pt;}
.x8{left:512.760000pt;}
.x7{left:515.293333pt;}
.x9{left:540.773333pt;}
.x5{left:553.091067pt;}
.xa{left:558.306667pt;}
.xb{left:564.066667pt;}
.x10{left:569.840000pt;}
.x1c{left:573.330667pt;}
.xc{left:588.813333pt;}
.xd{left:598.666667pt;}
.xe{left:602.466667pt;}
.x11{left:631.320000pt;}
.xf{left:639.653333pt;}
.x12{left:651.800000pt;}
.x20{left:700.117333pt;}
.x24{left:701.810667pt;}
.x22{left:704.384000pt;}
.x1e{left:708.770667pt;}
.x1f{left:712.624000pt;}
.x1d{left:716.237333pt;}
.x21{left:724.237333pt;}
.x23{left:738.904000pt;}
}




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