
    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_9953fdb8e6345c874c317384.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_8b4e5d44ee7dc04ae7d38065.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.648000;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_588ea8f00f2fcc742d56d470.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104000;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_ca7820b4973010ae96f14dd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_c260192c9dfee1c5807e8e39.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_2ac7863f27b60a4a1d9fafd2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.346191;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_881cfaf28010a8a3b2458584.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.383301;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_1824f0c460f0a8f6602ae71f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.330078;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_7438a9c9dd27f4adf3a13cbb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.128000;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_3af49575b87e4376e629adaa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.632000;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_029538d1eb5ee88fefef66c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687000;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_37cbf87c1df521d51a6c1f7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_1d38dfa66e0175fe454923d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.844000;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_0d97513aee6a9fc48f330ad8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.346191;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_c46be2ae280c1be1920c2e95.woff2')format("woff");}.fff{font-family:fff;line-height:0.958008;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_3de97b2b0d8a37ed4d144ecc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.735352;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_0d81659b38a4f39d8c64c1c3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.742676;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_ac8a46a93827d0e1df8adde2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.897000;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_62b63cd6721045f0a5d9ff28.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.727539;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_4b9c6d913aedb0b7ffb1fb28.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.727539;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_802721c4a8e385650a406ba9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;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_1fa4432b1cf0c838425fdb14.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.740234;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_ae1ba37dae0ea5cb45df4b20.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.951172;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_1bc5728241c2037febd254cb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.959473;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_420488f9cfd2be0d8b1a937f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.881836;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_ece3cb3479a9538a719ab2f2.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.940918;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_28860546e1d2aa9c8516d3c8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;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_339d728a19b25d451597b466.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;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_41913dc0638cc6e800d5c572.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.735000;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_aa199e4cabbbdd9c58edc1a6.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;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_9295a19baf3ef1580daf4093.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.735000;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:ff20;src:url('chunks/assets/font_b42f7c7309fc61d155784324.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000000;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:ff21;src:url('chunks/assets/font_ed3b1eb1d6b0a7b31452d42e.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.890000;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:ff22;src:url('chunks/assets/font_727f498c4a355e63da57c7a5.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.858000;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;}
.ma{transform:matrix(0.000000,0.000000,0.000000,0.000000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249924,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);}
.mb{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(2.172617,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(2.172617,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(2.172617,0.000000,0.000000,-0.250000,0,0);}
.m7{transform:matrix(2.172620,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(2.172620,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(2.172620,0.000000,0.000000,-0.250000,0,0);}
.v8{vertical-align:-21.696000px;}
.v3{vertical-align:-19.530000px;}
.v7{vertical-align:-8.070000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.842420px;}
.v4{vertical-align:5.507400px;}
.v6{vertical-align:19.530000px;}
.v2{vertical-align:21.696000px;}
.v1{vertical-align:30.378000px;}
.v9{vertical-align:32.337967px;}
.ls24{letter-spacing:-3.126752px;}
.ls22{letter-spacing:-0.879848px;}
.ls20{letter-spacing:-0.814975px;}
.ls1f{letter-spacing:-0.762265px;}
.ls27{letter-spacing:-0.634041px;}
.ls23{letter-spacing:-0.628463px;}
.ls2b{letter-spacing:-0.595629px;}
.ls29{letter-spacing:-0.580819px;}
.ls26{letter-spacing:-0.492886px;}
.ls2a{letter-spacing:-0.460490px;}
.ls8{letter-spacing:-0.451952px;}
.ls25{letter-spacing:-0.399578px;}
.ls21{letter-spacing:-0.394654px;}
.ls28{letter-spacing:-0.229088px;}
.ls9{letter-spacing:-0.015951px;}
.ls7{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000100px;}
.lse{letter-spacing:0.003288px;}
.ls2e{letter-spacing:0.043020px;}
.ls1b{letter-spacing:0.047800px;}
.ls19{letter-spacing:0.110387px;}
.lsa{letter-spacing:0.447764px;}
.lsc{letter-spacing:0.448801px;}
.ls6{letter-spacing:0.453525px;}
.lsd{letter-spacing:0.704604px;}
.ls11{letter-spacing:0.766422px;}
.ls10{letter-spacing:0.772422px;}
.ls0{letter-spacing:1.090116px;}
.lsb{letter-spacing:1.201887px;}
.ls1c{letter-spacing:1.529593px;}
.ls2{letter-spacing:2.985000px;}
.ls1{letter-spacing:2.988000px;}
.ls3{letter-spacing:2.994000px;}
.ls5{letter-spacing:3.117971px;}
.ls1a{letter-spacing:5.162377px;}
.ls1d{letter-spacing:10.659352px;}
.ls16{letter-spacing:12.975192px;}
.ls1e{letter-spacing:13.049341px;}
.ls2d{letter-spacing:13.331360px;}
.ls13{letter-spacing:17.130000px;}
.lsf{letter-spacing:17.298000px;}
.ls30{letter-spacing:18.396000px;}
.ls14{letter-spacing:18.516000px;}
.ls17{letter-spacing:18.765192px;}
.ls15{letter-spacing:19.371192px;}
.ls12{letter-spacing:20.850000px;}
.ls2f{letter-spacing:21.270000px;}
.ls18{letter-spacing:23.586000px;}
.ls4{letter-spacing:27.500051px;}
.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;}
}
.ws6{word-spacing:-25.817748px;}
.wsa{word-spacing:-14.944500px;}
.wsa6{word-spacing:-11.913354px;}
.ws2b{word-spacing:-11.810550px;}
.ws29{word-spacing:-11.783250px;}
.ws7a{word-spacing:-11.271790px;}
.ws79{word-spacing:-10.643327px;}
.ws78{word-spacing:-10.509526px;}
.ws5{word-spacing:-10.461000px;}
.ws76{word-spacing:-10.456816px;}
.ws28{word-spacing:-8.967000px;}
.wsa9{word-spacing:-6.432976px;}
.wsaa{word-spacing:-5.972486px;}
.wsa8{word-spacing:-5.798934px;}
.ws4a{word-spacing:-3.527261px;}
.wsed{word-spacing:-3.467244px;}
.wsde{word-spacing:-3.287850px;}
.ws64{word-spacing:-2.929002px;}
.ws3f{word-spacing:-2.869045px;}
.ws5e{word-spacing:-2.749609px;}
.ws90{word-spacing:-2.630232px;}
.wsee{word-spacing:-2.271385px;}
.ws36{word-spacing:-2.259486px;}
.wsa2{word-spacing:-2.152008px;}
.ws35{word-spacing:-2.098098px;}
.ws57{word-spacing:-2.091991px;}
.ws1e{word-spacing:-2.032572px;}
.ws73{word-spacing:-1.972554px;}
.wsd2{word-spacing:-1.853178px;}
.ws92{word-spacing:-1.673784px;}
.ws5f{word-spacing:-1.613767px;}
.ws86{word-spacing:-1.554348px;}
.ws34{word-spacing:-1.398535px;}
.wsb4{word-spacing:-1.345115px;}
.wscf{word-spacing:-1.314937px;}
.ws23{word-spacing:-1.255577px;}
.ws24{word-spacing:-1.195560px;}
.wsd1{word-spacing:-0.998999px;}
.wsc4{word-spacing:-0.956747px;}
.wsc3{word-spacing:-0.956149px;}
.wsb3{word-spacing:-0.860951px;}
.ws96{word-spacing:-0.837310px;}
.ws5b{word-spacing:-0.836713px;}
.ws8f{word-spacing:-0.717336px;}
.wsbb{word-spacing:-0.597900px;}
.ws51{word-spacing:-0.478523px;}
.ws8c{word-spacing:-0.358489px;}
.ws45{word-spacing:-0.299129px;}
.ws82{word-spacing:-0.239112px;}
.ws2{word-spacing:-0.079500px;}
.wsdc{word-spacing:-0.068142px;}
.wse2{word-spacing:-0.059778px;}
.ws1{word-spacing:-0.055650px;}
.wsad{word-spacing:-0.035539px;}
.wse4{word-spacing:-0.008873px;}
.ws25{word-spacing:-0.000299px;}
.ws27{word-spacing:0.000000px;}
.ws26{word-spacing:0.000299px;}
.ws63{word-spacing:0.119676px;}
.ws77{word-spacing:0.178402px;}
.wsa1{word-spacing:0.239112px;}
.ws37{word-spacing:0.268765px;}
.ws7b{word-spacing:0.287877px;}
.ws5a{word-spacing:0.298531px;}
.wsd8{word-spacing:0.358489px;}
.wsa7{word-spacing:0.377743px;}
.ws5d{word-spacing:0.418506px;}
.ws80{word-spacing:0.430207px;}
.ws49{word-spacing:0.478523px;}
.ws53{word-spacing:0.537942px;}
.ws6b{word-spacing:0.597900px;}
.ws4f{word-spacing:0.657319px;}
.ws72{word-spacing:0.717336px;}
.ws6c{word-spacing:0.836713px;}
.ws39{word-spacing:0.860359px;}
.ws38{word-spacing:0.860951px;}
.ws6f{word-spacing:0.896730px;}
.wsd7{word-spacing:0.956747px;}
.wsb7{word-spacing:1.022339px;}
.wsb8{word-spacing:1.034105px;}
.wsca{word-spacing:1.076124px;}
.ws13{word-spacing:1.136141px;}
.ws12{word-spacing:1.195560px;}
.ws5c{word-spacing:1.314937px;}
.ws59{word-spacing:1.374954px;}
.wscd{word-spacing:1.434971px;}
.wsc6{word-spacing:1.494330px;}
.ws8a{word-spacing:1.573085px;}
.ws89{word-spacing:1.594068px;}
.ws8b{word-spacing:1.613767px;}
.ws99{word-spacing:1.667945px;}
.ws91{word-spacing:1.673784px;}
.ws6a{word-spacing:1.793161px;}
.ws81{word-spacing:1.853178px;}
.ws56{word-spacing:1.912597px;}
.ws55{word-spacing:1.913195px;}
.wsd0{word-spacing:1.972554px;}
.ws8d{word-spacing:2.032572px;}
.ws9f{word-spacing:2.091991px;}
.ws32{word-spacing:2.259486px;}
.ws1c{word-spacing:2.390821px;}
.ws1b{word-spacing:2.391419px;}
.ws1a{word-spacing:2.450778px;}
.ws9b{word-spacing:2.510796px;}
.ws14{word-spacing:2.630232px;}
.ws2a{word-spacing:2.740048px;}
.ws87{word-spacing:2.809626px;}
.wsa0{word-spacing:2.869643px;}
.ws47{word-spacing:2.929002px;}
.ws2e{word-spacing:2.941099px;}
.ws66{word-spacing:2.988422px;}
.ws88{word-spacing:2.989020px;}
.ws70{word-spacing:3.048439px;}
.ws3a{word-spacing:3.066480px;}
.wscb{word-spacing:3.347209px;}
.wsd3{word-spacing:3.347807px;}
.ws17{word-spacing:3.407226px;}
.ws19{word-spacing:3.466646px;}
.ws18{word-spacing:3.467244px;}
.ws58{word-spacing:3.526663px;}
.wsce{word-spacing:3.527261px;}
.ws48{word-spacing:3.646637px;}
.ws2d{word-spacing:3.695227px;}
.ws21{word-spacing:3.706057px;}
.ws20{word-spacing:3.706654px;}
.ws1f{word-spacing:3.766074px;}
.ws33{word-spacing:3.819408px;}
.ws84{word-spacing:3.825433px;}
.ws50{word-spacing:3.826031px;}
.ws3{word-spacing:3.885450px;}
.ws4{word-spacing:3.886048px;}
.ws62{word-spacing:3.945468px;}
.ws69{word-spacing:4.244298px;}
.ws7e{word-spacing:4.249615px;}
.wsd9{word-spacing:4.483051px;}
.ws9d{word-spacing:4.543068px;}
.ws2c{word-spacing:4.599269px;}
.ws75{word-spacing:4.599274px;}
.ws10{word-spacing:4.662505px;}
.ws11{word-spacing:4.663102px;}
.wsa5{word-spacing:4.676766px;}
.wsd6{word-spacing:4.782479px;}
.wsc7{word-spacing:4.961275px;}
.wsc5{word-spacing:4.961873px;}
.ws65{word-spacing:5.021292px;}
.ws61{word-spacing:5.081309px;}
.ws83{word-spacing:5.140729px;}
.ws9a{word-spacing:5.260703px;}
.wsb2{word-spacing:5.271954px;}
.ws1d{word-spacing:5.320122px;}
.wsa3{word-spacing:5.618953px;}
.ws9e{word-spacing:5.858364px;}
.ws74{word-spacing:5.977740px;}
.ws41{word-spacing:6.037757px;}
.ws40{word-spacing:6.097117px;}
.wsdb{word-spacing:6.216553px;}
.wsda{word-spacing:6.217151px;}
.wsc9{word-spacing:6.276570px;}
.wse{word-spacing:6.336528px;}
.ws4d{word-spacing:6.515981px;}
.ws71{word-spacing:6.695375px;}
.wsba{word-spacing:6.698784px;}
.wseb{word-spacing:6.754794px;}
.ws3d{word-spacing:6.874769px;}
.wsb6{word-spacing:6.885888px;}
.ws43{word-spacing:7.036710px;}
.ws44{word-spacing:7.053565px;}
.wsbd{word-spacing:7.113582px;}
.ws9c{word-spacing:7.233018px;}
.wsb9{word-spacing:7.262675px;}
.ws94{word-spacing:7.472370px;}
.ws15{word-spacing:7.531789px;}
.ws16{word-spacing:7.532387px;}
.ws4e{word-spacing:7.651823px;}
.ws7f{word-spacing:7.692882px;}
.ws93{word-spacing:7.831217px;}
.ws4b{word-spacing:8.070030px;}
.ws60{word-spacing:8.130047px;}
.ws54{word-spacing:8.249424px;}
.ws2f{word-spacing:8.262661px;}
.ws30{word-spacing:8.267385px;}
.wsbc{word-spacing:8.309441px;}
.wse7{word-spacing:8.428818px;}
.ws6d{word-spacing:8.548254px;}
.ws85{word-spacing:8.727648px;}
.wsc8{word-spacing:9.026478px;}
.wsc1{word-spacing:9.297954px;}
.wsbf{word-spacing:9.308172px;}
.wsc0{word-spacing:9.325248px;}
.wsa4{word-spacing:9.504702px;}
.ws3e{word-spacing:9.684096px;}
.wsd4{word-spacing:10.102303px;}
.ws8e{word-spacing:10.401133px;}
.ws52{word-spacing:10.521107px;}
.wsaf{word-spacing:10.563753px;}
.ws4c{word-spacing:10.819938px;}
.ws22{word-spacing:10.939314px;}
.ws95{word-spacing:10.999331px;}
.ws46{word-spacing:11.058751px;}
.ws3c{word-spacing:11.118768px;}
.wsbe{word-spacing:11.238144px;}
.ws42{word-spacing:11.417538px;}
.ws7c{word-spacing:11.592104px;}
.wsd5{word-spacing:11.716368px;}
.ws98{word-spacing:11.942443px;}
.wscc{word-spacing:13.031604px;}
.ws9{word-spacing:13.211058px;}
.wse5{word-spacing:14.880222px;}
.wsec{word-spacing:14.885021px;}
.wse6{word-spacing:14.886222px;}
.wsdf{word-spacing:14.942352px;}
.wsdd{word-spacing:14.944500px;}
.wse3{word-spacing:15.362707px;}
.wsd{word-spacing:15.601520px;}
.wsb{word-spacing:15.602118px;}
.ws6e{word-spacing:15.687000px;}
.wsb0{word-spacing:16.265564px;}
.wse9{word-spacing:16.498489px;}
.ws31{word-spacing:16.508820px;}
.ws68{word-spacing:16.857396px;}
.ws7d{word-spacing:17.645411px;}
.wsf{word-spacing:18.052597px;}
.wsb1{word-spacing:18.667158px;}
.ws67{word-spacing:18.875607px;}
.wsc{word-spacing:19.487867px;}
.wsea{word-spacing:20.269506px;}
.wsb5{word-spacing:20.281092px;}
.ws8{word-spacing:21.220772px;}
.ws7{word-spacing:21.221369px;}
.ws0{word-spacing:22.021579px;}
.wse8{word-spacing:23.313540px;}
.wse1{word-spacing:23.663916px;}
.ws97{word-spacing:25.338293px;}
.wsc2{word-spacing:31.562784px;}
.wse0{word-spacing:32.459155px;}
.ws3b{word-spacing:35.774550px;}
.wsac{word-spacing:81.496403px;}
.wsae{word-spacing:188.318537px;}
.wsab{word-spacing:606.862621px;}
._19{margin-left:-829.445490px;}
._16{margin-left:-395.693426px;}
._28{margin-left:-38.713419px;}
._f{margin-left:-26.541492px;}
._8{margin-left:-7.813751px;}
._5{margin-left:-6.645232px;}
._4{margin-left:-4.782180px;}
._2{margin-left:-3.180477px;}
._1{margin-left:-1.590000px;}
._17{width:1.287542px;}
._0{width:3.001561px;}
._18{width:4.653645px;}
._e{width:5.738628px;}
._1b{width:9.312569px;}
._1e{width:10.615979px;}
._2b{width:12.533023px;}
._12{width:14.052022px;}
._14{width:16.323271px;}
._1f{width:17.537726px;}
._11{width:18.611233px;}
._3{width:19.864595px;}
._d{width:21.677192px;}
._b{width:22.809324px;}
._10{width:24.377759px;}
._24{width:25.823857px;}
._1a{width:27.274841px;}
._13{width:28.748655px;}
._20{width:30.044986px;}
._7{width:31.600793px;}
._9{width:34.497478px;}
._21{width:35.842692px;}
._c{width:37.461753px;}
._23{width:39.189944px;}
._6{width:41.391546px;}
._1d{width:42.741509px;}
._22{width:44.056745px;}
._1c{width:47.583109px;}
._2a{width:48.719548px;}
._25{width:51.472843px;}
._29{width:56.835257px;}
._a{width:60.885898px;}
._15{width:78.054734px;}
._27{width:83.916894px;}
._26{width:436.944148px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:1.000000px;}
.fs14{font-size:21.834861px;}
.fs15{font-size:23.140200px;}
.fs12{font-size:27.031066px;}
.fs1d{font-size:33.459804px;}
.fs19{font-size:35.538719px;}
.fs5{font-size:35.868000px;}
.fs11{font-size:40.546009px;}
.fs4{font-size:41.844000px;}
.fs13{font-size:42.456713px;}
.fsb{font-size:45.880200px;}
.fsc{font-size:47.133000px;}
.fsd{font-size:47.242200px;}
.fs1c{font-size:47.799786px;}
.fse{font-size:51.108000px;}
.fs17{font-size:52.123300px;}
.fs8{font-size:53.170800px;}
.fs6{font-size:53.796000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:55.650000px;}
.fsa{font-size:57.604200px;}
.fs3{font-size:59.778000px;}
.fs10{font-size:60.000000px;}
.fs16{font-size:60.164520px;}
.fs18{font-size:63.969463px;}
.fs1a{font-size:63.970389px;}
.fs7{font-size:67.554000px;}
.fsf{font-size:68.142000px;}
.fs0{font-size:79.500000px;}
.fs2{font-size:83.688000px;}
.ye2{bottom:-32.783572px;}
.ye5{bottom:-22.602751px;}
.y0{bottom:0.000000px;}
.yf7{bottom:1.349363px;}
.yf6{bottom:3.141398px;}
.y97{bottom:3.237000px;}
.ye8{bottom:5.551814px;}
.yf5{bottom:11.338640px;}
.y3e{bottom:11.552879px;}
.yf8{bottom:16.272131px;}
.y96{bottom:19.641769px;}
.y3b{bottom:24.882059px;}
.y3c{bottom:24.999899px;}
.y3d{bottom:25.016909px;}
.ya3{bottom:25.068583px;}
.ye7{bottom:27.467319px;}
.yf4{bottom:27.987840px;}
.y3a{bottom:28.120559px;}
.yea{bottom:33.982732px;}
.ye9{bottom:39.905813px;}
.ya4{bottom:55.478090px;}
.y78{bottom:69.309000px;}
.yca{bottom:70.803000px;}
.yf1{bottom:71.890776px;}
.ye3{bottom:74.889804px;}
.ya5{bottom:78.994663px;}
.ye4{bottom:82.673932px;}
.yec{bottom:83.144491px;}
.y35{bottom:83.298000px;}
.yfd{bottom:85.908000px;}
.y77{bottom:87.241500px;}
.yeb{bottom:88.475299px;}
.yc9{bottom:88.735500px;}
.y34{bottom:99.736500px;}
.yfc{bottom:102.346500px;}
.y76{bottom:105.174000px;}
.y95{bottom:105.861000px;}
.yc8{bottom:107.268000px;}
.y33{bottom:116.175000px;}
.yfb{bottom:118.785000px;}
.ya2{bottom:121.973545px;}
.y75{bottom:123.106500px;}
.y94{bottom:123.793500px;}
.yc7{bottom:125.200500px;}
.yee{bottom:132.306078px;}
.y32{bottom:132.613500px;}
.ya0{bottom:133.934617px;}
.yfa{bottom:135.223500px;}
.ya1{bottom:136.367484px;}
.yed{bottom:137.636886px;}
.y74{bottom:141.039000px;}
.y93{bottom:141.726000px;}
.yc6{bottom:143.134500px;}
.y31{bottom:149.052000px;}
.yf9{bottom:151.662000px;}
.y9b{bottom:156.235914px;}
.y73{bottom:158.971500px;}
.y92{bottom:159.658500px;}
.yc5{bottom:161.067000px;}
.y30{bottom:165.490500px;}
.y9a{bottom:167.994257px;}
.y9d{bottom:168.601715px;}
.y9c{bottom:170.223478px;}
.y72{bottom:176.905500px;}
.y91{bottom:177.591000px;}
.yc4{bottom:178.999500px;}
.y2f{bottom:181.929000px;}
.yef{bottom:182.060574px;}
.ye1{bottom:183.044989px;}
.y71{bottom:194.838000px;}
.y90{bottom:195.523500px;}
.yc3{bottom:196.932000px;}
.y2e{bottom:198.366000px;}
.y121{bottom:201.964500px;}
.y150{bottom:204.639000px;}
.y70{bottom:212.770500px;}
.y8f{bottom:213.457500px;}
.y2d{bottom:214.804500px;}
.yc2{bottom:214.864500px;}
.yf2{bottom:215.821836px;}
.y120{bottom:219.897000px;}
.y14f{bottom:224.067000px;}
.ya7{bottom:225.568485px;}
.ya9{bottom:230.637309px;}
.y6f{bottom:230.703000px;}
.y2c{bottom:231.243000px;}
.y8e{bottom:231.390000px;}
.yf0{bottom:231.814260px;}
.yc1{bottom:232.798500px;}
.ya6{bottom:237.529558px;}
.y11f{bottom:237.831000px;}
.y14e{bottom:243.493500px;}
.y2b{bottom:247.681500px;}
.y6e{bottom:248.635500px;}
.y8d{bottom:249.322500px;}
.yc0{bottom:251.331000px;}
.y11e{bottom:255.763500px;}
.y14d{bottom:261.426000px;}
.y2a{bottom:264.120000px;}
.y6d{bottom:267.111000px;}
.y8c{bottom:267.255000px;}
.ybf{bottom:269.263500px;}
.y9f{bottom:270.372510px;}
.ye6{bottom:271.324069px;}
.y9e{bottom:272.805377px;}
.y11d{bottom:273.696000px;}
.y29{bottom:280.558500px;}
.y14c{bottom:280.854000px;}
.y6c{bottom:285.043500px;}
.y8b{bottom:285.187500px;}
.ybe{bottom:287.196000px;}
.y11c{bottom:291.628500px;}
.y28{bottom:296.997000px;}
.y14b{bottom:300.280500px;}
.y6b{bottom:302.976000px;}
.ya8{bottom:303.215031px;}
.ybd{bottom:305.128500px;}
.y8a{bottom:308.545500px;}
.y11b{bottom:309.561000px;}
.y27{bottom:313.435500px;}
.y14a{bottom:318.213000px;}
.y6a{bottom:320.908500px;}
.y89{bottom:321.054000px;}
.ybc{bottom:323.061000px;}
.y11a{bottom:327.493500px;}
.y26{bottom:329.874000px;}
.y149{bottom:336.147000px;}
.y69{bottom:338.841000px;}
.ybb{bottom:340.995000px;}
.y119{bottom:345.427500px;}
.y25{bottom:346.312500px;}
.yf3{bottom:350.766912px;}
.y148{bottom:354.079500px;}
.y99{bottom:354.303168px;}
.y88{bottom:355.212000px;}
.y68{bottom:356.773500px;}
.yba{bottom:358.927500px;}
.y24{bottom:362.751000px;}
.y118{bottom:368.784000px;}
.y147{bottom:373.506000px;}
.y67{bottom:374.707500px;}
.y87{bottom:376.132500px;}
.yb9{bottom:377.460000px;}
.y23{bottom:379.188000px;}
.y117{bottom:381.292500px;}
.y66{bottom:392.640000px;}
.y146{bottom:392.934000px;}
.yb8{bottom:395.392500px;}
.y22{bottom:395.626500px;}
.y116{bottom:399.225000px;}
.y65{bottom:410.572500px;}
.y21{bottom:412.065000px;}
.y145{bottom:412.360500px;}
.yb7{bottom:413.325000px;}
.y115{bottom:417.157500px;}
.y86{bottom:426.072000px;}
.y20{bottom:428.503500px;}
.y64{bottom:428.505000px;}
.yb6{bottom:431.257500px;}
.y144{bottom:431.788500px;}
.y114{bottom:435.090000px;}
.y85{bottom:444.004500px;}
.y1f{bottom:444.942000px;}
.y63{bottom:446.437500px;}
.yb5{bottom:449.191500px;}
.y143{bottom:451.215000px;}
.y113{bottom:453.024000px;}
.ye0{bottom:461.166000px;}
.y1e{bottom:461.380500px;}
.y84{bottom:461.938500px;}
.y62{bottom:464.370000px;}
.yb4{bottom:467.124000px;}
.y142{bottom:469.147500px;}
.y112{bottom:470.956500px;}
.y1d{bottom:477.819000px;}
.ydf{bottom:479.098500px;}
.y83{bottom:479.871000px;}
.y61{bottom:482.304000px;}
.yb3{bottom:485.056500px;}
.y141{bottom:488.575500px;}
.y111{bottom:488.889000px;}
.y1c{bottom:494.257500px;}
.yde{bottom:497.031000px;}
.y82{bottom:497.803500px;}
.y60{bottom:500.236500px;}
.yb2{bottom:502.989000px;}
.y140{bottom:506.508000px;}
.y1b{bottom:510.696000px;}
.y110{bottom:512.247000px;}
.y81{bottom:515.736000px;}
.y5f{bottom:518.169000px;}
.ydd{bottom:520.389000px;}
.yb1{bottom:520.921500px;}
.y13f{bottom:524.440500px;}
.y1a{bottom:527.134500px;}
.y10f{bottom:530.179500px;}
.ydc{bottom:532.897500px;}
.y80{bottom:533.668500px;}
.y5e{bottom:536.101500px;}
.yb0{bottom:538.854000px;}
.y13e{bottom:542.373000px;}
.y10e{bottom:542.686500px;}
.y19{bottom:543.573000px;}
.ydb{bottom:550.830000px;}
.y7f{bottom:551.601000px;}
.y5d{bottom:554.034000px;}
.yaf{bottom:556.788000px;}
.y18{bottom:560.010000px;}
.y10d{bottom:560.620500px;}
.y13d{bottom:561.801000px;}
.yda{bottom:569.383500px;}
.y7e{bottom:569.535000px;}
.y5c{bottom:571.968000px;}
.yae{bottom:574.720500px;}
.y17{bottom:576.448500px;}
.y10c{bottom:578.553000px;}
.y13c{bottom:579.733500px;}
.yd9{bottom:587.316000px;}
.y7d{bottom:587.467500px;}
.y5b{bottom:589.900500px;}
.y16{bottom:592.887000px;}
.y10b{bottom:596.485500px;}
.y13b{bottom:599.160000px;}
.yd8{bottom:605.248500px;}
.y7c{bottom:605.400000px;}
.y5a{bottom:607.833000px;}
.y15{bottom:609.325500px;}
.y10a{bottom:614.418000px;}
.yd7{bottom:623.181000px;}
.y7b{bottom:623.332500px;}
.y14{bottom:625.764000px;}
.y59{bottom:625.765500px;}
.y109{bottom:632.350500px;}
.y13a{bottom:633.226500px;}
.yad{bottom:638.608500px;}
.yd6{bottom:641.115000px;}
.y7a{bottom:641.265000px;}
.y58{bottom:643.698000px;}
.y13{bottom:644.793000px;}
.y108{bottom:650.283000px;}
.yac{bottom:655.045500px;}
.yd5{bottom:659.047500px;}
.y79{bottom:659.197500px;}
.y12{bottom:662.725500px;}
.y107{bottom:668.217000px;}
.yab{bottom:671.484000px;}
.yd4{bottom:676.980000px;}
.y57{bottom:677.131500px;}
.y11{bottom:680.658000px;}
.y139{bottom:683.908500px;}
.y106{bottom:686.149500px;}
.yaa{bottom:687.922500px;}
.yd3{bottom:694.912500px;}
.y10{bottom:698.590500px;}
.y138{bottom:701.841000px;}
.y105{bottom:704.082000px;}
.yd2{bottom:712.845000px;}
.yf{bottom:716.523000px;}
.y137{bottom:719.775000px;}
.y104{bottom:722.014500px;}
.y98{bottom:722.954357px;}
.yd1{bottom:731.398500px;}
.ye{bottom:734.455500px;}
.y136{bottom:737.707500px;}
.y103{bottom:739.947000px;}
.y56{bottom:741.313500px;}
.yd0{bottom:749.332500px;}
.yd{bottom:752.389500px;}
.y135{bottom:755.640000px;}
.y55{bottom:757.752000px;}
.ycf{bottom:767.265000px;}
.yc{bottom:770.322000px;}
.y134{bottom:773.572500px;}
.y54{bottom:774.190500px;}
.yce{bottom:785.197500px;}
.yb{bottom:788.254500px;}
.y53{bottom:790.627500px;}
.y133{bottom:791.505000px;}
.y102{bottom:796.918500px;}
.ya{bottom:806.187000px;}
.y52{bottom:807.066000px;}
.y132{bottom:809.437500px;}
.y101{bottom:813.357000px;}
.y51{bottom:823.504500px;}
.y9{bottom:824.119500px;}
.y131{bottom:827.371500px;}
.y100{bottom:829.795500px;}
.y50{bottom:839.943000px;}
.y8{bottom:842.052000px;}
.y130{bottom:845.304000px;}
.yff{bottom:846.232500px;}
.ycd{bottom:849.127500px;}
.y4f{bottom:856.381500px;}
.y7{bottom:859.986000px;}
.yfe{bottom:862.671000px;}
.y12f{bottom:863.236500px;}
.ycc{bottom:865.564500px;}
.y4e{bottom:872.820000px;}
.y6{bottom:877.918500px;}
.y12e{bottom:881.169000px;}
.ycb{bottom:882.003000px;}
.y5{bottom:895.851000px;}
.y12d{bottom:904.527000px;}
.y4d{bottom:907.590000px;}
.y4{bottom:913.783500px;}
.y12c{bottom:917.034000px;}
.y4c{bottom:924.028500px;}
.y3{bottom:931.716000px;}
.y12b{bottom:934.968000px;}
.y4b{bottom:940.467000px;}
.y2{bottom:949.650000px;}
.y12a{bottom:952.900500px;}
.y4a{bottom:956.905500px;}
.y129{bottom:970.833000px;}
.y49{bottom:973.344000px;}
.y48{bottom:989.782500px;}
.y1{bottom:997.470000px;}
.y128{bottom:1005.735000px;}
.y47{bottom:1006.219500px;}
.y46{bottom:1022.658000px;}
.y45{bottom:1039.096500px;}
.y127{bottom:1039.171500px;}
.y44{bottom:1055.535000px;}
.y126{bottom:1057.104000px;}
.y43{bottom:1071.973500px;}
.y125{bottom:1075.036500px;}
.y42{bottom:1088.412000px;}
.y124{bottom:1092.970500px;}
.y41{bottom:1104.850500px;}
.y123{bottom:1110.903000px;}
.y40{bottom:1121.289000px;}
.y122{bottom:1128.835500px;}
.y3f{bottom:1137.727500px;}
.y36{bottom:1207.755000px;}
.y38{bottom:1213.976700px;}
.y39{bottom:1230.963600px;}
.y37{bottom:1231.096500px;}
.h1b{height:-15.174169px;}
.h26{height:0.705078px;}
.h1d{height:15.629837px;}
.h16{height:16.500090px;}
.h1f{height:16.846698px;}
.h1a{height:19.388983px;}
.h29{height:25.094853px;}
.h23{height:26.185511px;}
.h25{height:27.988072px;}
.h19{height:29.874965px;}
.h1c{height:30.391378px;}
.h6{height:31.779048px;}
.hc{height:32.757435px;}
.hd{height:32.804535px;}
.hf{height:32.833329px;}
.he{height:34.392309px;}
.hb{height:36.522415px;}
.h28{height:37.044834px;}
.h15{height:37.073784px;}
.h21{height:38.405303px;}
.h2b{height:40.708818px;}
.h2c{height:40.828374px;}
.h20{height:43.801416px;}
.ha{height:46.683962px;}
.h22{height:47.446101px;}
.h24{height:47.446787px;}
.h11{height:47.663256px;}
.h13{height:50.493222px;}
.h12{height:51.303048px;}
.h10{height:51.309048px;}
.h14{height:52.963308px;}
.h5{height:53.563308px;}
.h9{height:55.265625px;}
.h8{height:56.130503px;}
.h3{height:58.769784px;}
.h4{height:58.775784px;}
.h7{height:59.142735px;}
.h17{height:62.373047px;}
.h27{height:68.187806px;}
.h2a{height:69.833803px;}
.h2{height:71.614650px;}
.h1e{height:243.760041px;}
.h18{height:416.602980px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:7.500000px;}
.w5{width:195.582706px;}
.w3{width:319.189410px;}
.w4{width:325.279472px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x28{left:-8.562574px;}
.x0{left:0.000000px;}
.x20{left:6.237578px;}
.x16{left:14.184343px;}
.x17{left:21.277769px;}
.x18{left:24.935335px;}
.x2e{left:26.473714px;}
.x19{left:32.028761px;}
.x2f{left:34.766120px;}
.x1a{left:37.459536px;}
.x6{left:39.331350px;}
.x2c{left:44.243189px;}
.x2d{left:45.427851px;}
.x1d{left:48.662945px;}
.xc{left:51.765775px;}
.xa{left:56.404450px;}
.x9{left:65.449240px;}
.x8{left:69.048340px;}
.x24{left:70.279178px;}
.x2a{left:75.043952px;}
.x1{left:85.039500px;}
.x1e{left:87.011669px;}
.x1f{left:90.669088px;}
.x2b{left:95.182405px;}
.x13{left:98.729897px;}
.x5{left:106.257000px;}
.xe{left:107.455500px;}
.x25{left:119.193499px;}
.x30{left:128.352725px;}
.x4{left:131.757000px;}
.x32{left:137.780742px;}
.xd{left:148.819500px;}
.x29{left:166.465039px;}
.x14{left:173.218877px;}
.x23{left:175.103663px;}
.x21{left:182.001444px;}
.x33{left:188.238238px;}
.x22{left:193.799791px;}
.x1b{left:203.602553px;}
.x1c{left:214.575251px;}
.x15{left:239.491330px;}
.x12{left:442.707001px;}
.xf{left:461.338500px;}
.x34{left:468.810000px;}
.x26{left:471.969357px;}
.x10{left:479.776500px;}
.x11{left:483.754500px;}
.x35{left:493.707000px;}
.x31{left:573.673076px;}
.x7{left:597.065400px;}
.xb{left:672.522340px;}
.x2{left:679.275000px;}
.x27{left:694.070277px;}
.x3{left:700.018500px;}
@media print{
.v8{vertical-align:-19.285333pt;}
.v3{vertical-align:-17.360000pt;}
.v7{vertical-align:-7.173333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.637707pt;}
.v4{vertical-align:4.895467pt;}
.v6{vertical-align:17.360000pt;}
.v2{vertical-align:19.285333pt;}
.v1{vertical-align:27.002667pt;}
.v9{vertical-align:28.744859pt;}
.ls24{letter-spacing:-2.779335pt;}
.ls22{letter-spacing:-0.782087pt;}
.ls20{letter-spacing:-0.724422pt;}
.ls1f{letter-spacing:-0.677569pt;}
.ls27{letter-spacing:-0.563592pt;}
.ls23{letter-spacing:-0.558634pt;}
.ls2b{letter-spacing:-0.529448pt;}
.ls29{letter-spacing:-0.516284pt;}
.ls26{letter-spacing:-0.438121pt;}
.ls2a{letter-spacing:-0.409324pt;}
.ls8{letter-spacing:-0.401735pt;}
.ls25{letter-spacing:-0.355180pt;}
.ls21{letter-spacing:-0.350803pt;}
.ls28{letter-spacing:-0.203634pt;}
.ls9{letter-spacing:-0.014179pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000089pt;}
.lse{letter-spacing:0.002923pt;}
.ls2e{letter-spacing:0.038240pt;}
.ls1b{letter-spacing:0.042489pt;}
.ls19{letter-spacing:0.098122pt;}
.lsa{letter-spacing:0.398012pt;}
.lsc{letter-spacing:0.398934pt;}
.ls6{letter-spacing:0.403133pt;}
.lsd{letter-spacing:0.626315pt;}
.ls11{letter-spacing:0.681264pt;}
.ls10{letter-spacing:0.686597pt;}
.ls0{letter-spacing:0.968992pt;}
.lsb{letter-spacing:1.068344pt;}
.ls1c{letter-spacing:1.359638pt;}
.ls2{letter-spacing:2.653333pt;}
.ls1{letter-spacing:2.656000pt;}
.ls3{letter-spacing:2.661333pt;}
.ls5{letter-spacing:2.771530pt;}
.ls1a{letter-spacing:4.588779pt;}
.ls1d{letter-spacing:9.474980pt;}
.ls16{letter-spacing:11.533504pt;}
.ls1e{letter-spacing:11.599415pt;}
.ls2d{letter-spacing:11.850098pt;}
.ls13{letter-spacing:15.226667pt;}
.lsf{letter-spacing:15.376000pt;}
.ls30{letter-spacing:16.352000pt;}
.ls14{letter-spacing:16.458667pt;}
.ls17{letter-spacing:16.680171pt;}
.ls15{letter-spacing:17.218837pt;}
.ls12{letter-spacing:18.533333pt;}
.ls2f{letter-spacing:18.906667pt;}
.ls18{letter-spacing:20.965333pt;}
.ls4{letter-spacing:24.444490pt;}
.ws6{word-spacing:-22.949109pt;}
.wsa{word-spacing:-13.284000pt;}
.wsa6{word-spacing:-10.589648pt;}
.ws2b{word-spacing:-10.498267pt;}
.ws29{word-spacing:-10.474000pt;}
.ws7a{word-spacing:-10.019369pt;}
.ws79{word-spacing:-9.460735pt;}
.ws78{word-spacing:-9.341800pt;}
.ws5{word-spacing:-9.298667pt;}
.ws76{word-spacing:-9.294947pt;}
.ws28{word-spacing:-7.970667pt;}
.wsa9{word-spacing:-5.718201pt;}
.wsaa{word-spacing:-5.308876pt;}
.wsa8{word-spacing:-5.154608pt;}
.ws4a{word-spacing:-3.135343pt;}
.wsed{word-spacing:-3.081994pt;}
.wsde{word-spacing:-2.922533pt;}
.ws64{word-spacing:-2.603558pt;}
.ws3f{word-spacing:-2.550262pt;}
.ws5e{word-spacing:-2.444097pt;}
.ws90{word-spacing:-2.337984pt;}
.wsee{word-spacing:-2.019009pt;}
.ws36{word-spacing:-2.008432pt;}
.wsa2{word-spacing:-1.912896pt;}
.ws35{word-spacing:-1.864976pt;}
.ws57{word-spacing:-1.859547pt;}
.ws1e{word-spacing:-1.806730pt;}
.ws73{word-spacing:-1.753382pt;}
.wsd2{word-spacing:-1.647269pt;}
.ws92{word-spacing:-1.487808pt;}
.ws5f{word-spacing:-1.434459pt;}
.ws86{word-spacing:-1.381642pt;}
.ws34{word-spacing:-1.243142pt;}
.wsb4{word-spacing:-1.195658pt;}
.wscf{word-spacing:-1.168833pt;}
.ws23{word-spacing:-1.116069pt;}
.ws24{word-spacing:-1.062720pt;}
.wsd1{word-spacing:-0.887999pt;}
.wsc4{word-spacing:-0.850442pt;}
.wsc3{word-spacing:-0.849910pt;}
.wsb3{word-spacing:-0.765290pt;}
.ws96{word-spacing:-0.744276pt;}
.ws5b{word-spacing:-0.743745pt;}
.ws8f{word-spacing:-0.637632pt;}
.wsbb{word-spacing:-0.531466pt;}
.ws51{word-spacing:-0.425354pt;}
.ws8c{word-spacing:-0.318657pt;}
.ws45{word-spacing:-0.265893pt;}
.ws82{word-spacing:-0.212544pt;}
.ws2{word-spacing:-0.070667pt;}
.wsdc{word-spacing:-0.060571pt;}
.wse2{word-spacing:-0.053136pt;}
.ws1{word-spacing:-0.049467pt;}
.wsad{word-spacing:-0.031590pt;}
.wse4{word-spacing:-0.007887pt;}
.ws25{word-spacing:-0.000266pt;}
.ws27{word-spacing:0.000000pt;}
.ws26{word-spacing:0.000266pt;}
.ws63{word-spacing:0.106378pt;}
.ws77{word-spacing:0.158580pt;}
.wsa1{word-spacing:0.212544pt;}
.ws37{word-spacing:0.238902pt;}
.ws7b{word-spacing:0.255890pt;}
.ws5a{word-spacing:0.265361pt;}
.wsd8{word-spacing:0.318657pt;}
.wsa7{word-spacing:0.335772pt;}
.ws5d{word-spacing:0.372005pt;}
.ws80{word-spacing:0.382406pt;}
.ws49{word-spacing:0.425354pt;}
.ws53{word-spacing:0.478171pt;}
.ws6b{word-spacing:0.531466pt;}
.ws4f{word-spacing:0.584283pt;}
.ws72{word-spacing:0.637632pt;}
.ws6c{word-spacing:0.743745pt;}
.ws39{word-spacing:0.764764pt;}
.ws38{word-spacing:0.765290pt;}
.ws6f{word-spacing:0.797093pt;}
.wsd7{word-spacing:0.850442pt;}
.wsb7{word-spacing:0.908746pt;}
.wsb8{word-spacing:0.919205pt;}
.wsca{word-spacing:0.956554pt;}
.ws13{word-spacing:1.009903pt;}
.ws12{word-spacing:1.062720pt;}
.ws5c{word-spacing:1.168833pt;}
.ws59{word-spacing:1.222181pt;}
.wscd{word-spacing:1.275530pt;}
.wsc6{word-spacing:1.328294pt;}
.ws8a{word-spacing:1.398298pt;}
.ws89{word-spacing:1.416949pt;}
.ws8b{word-spacing:1.434459pt;}
.ws99{word-spacing:1.482618pt;}
.ws91{word-spacing:1.487808pt;}
.ws6a{word-spacing:1.593921pt;}
.ws81{word-spacing:1.647269pt;}
.ws56{word-spacing:1.700086pt;}
.ws55{word-spacing:1.700618pt;}
.wsd0{word-spacing:1.753382pt;}
.ws8d{word-spacing:1.806730pt;}
.ws9f{word-spacing:1.859547pt;}
.ws32{word-spacing:2.008432pt;}
.ws1c{word-spacing:2.125174pt;}
.ws1b{word-spacing:2.125706pt;}
.ws1a{word-spacing:2.178470pt;}
.ws9b{word-spacing:2.231818pt;}
.ws14{word-spacing:2.337984pt;}
.ws2a{word-spacing:2.435598pt;}
.ws87{word-spacing:2.497445pt;}
.wsa0{word-spacing:2.550794pt;}
.ws47{word-spacing:2.603558pt;}
.ws2e{word-spacing:2.614310pt;}
.ws66{word-spacing:2.656375pt;}
.ws88{word-spacing:2.656906pt;}
.ws70{word-spacing:2.709723pt;}
.ws3a{word-spacing:2.725760pt;}
.wscb{word-spacing:2.975297pt;}
.wsd3{word-spacing:2.975829pt;}
.ws17{word-spacing:3.028646pt;}
.ws19{word-spacing:3.081463pt;}
.ws18{word-spacing:3.081994pt;}
.ws58{word-spacing:3.134811pt;}
.wsce{word-spacing:3.135343pt;}
.ws48{word-spacing:3.241455pt;}
.ws2d{word-spacing:3.284646pt;}
.ws21{word-spacing:3.294273pt;}
.ws20{word-spacing:3.294804pt;}
.ws1f{word-spacing:3.347621pt;}
.ws33{word-spacing:3.395030pt;}
.ws84{word-spacing:3.400385pt;}
.ws50{word-spacing:3.400917pt;}
.ws3{word-spacing:3.453734pt;}
.ws4{word-spacing:3.454265pt;}
.ws62{word-spacing:3.507082pt;}
.ws69{word-spacing:3.772709pt;}
.ws7e{word-spacing:3.777436pt;}
.wsd9{word-spacing:3.984934pt;}
.ws9d{word-spacing:4.038283pt;}
.ws2c{word-spacing:4.088239pt;}
.ws75{word-spacing:4.088244pt;}
.ws10{word-spacing:4.144449pt;}
.ws11{word-spacing:4.144980pt;}
.wsa5{word-spacing:4.157125pt;}
.wsd6{word-spacing:4.251093pt;}
.wsc7{word-spacing:4.410022pt;}
.wsc5{word-spacing:4.410554pt;}
.ws65{word-spacing:4.463371pt;}
.ws61{word-spacing:4.516719pt;}
.ws83{word-spacing:4.569537pt;}
.ws9a{word-spacing:4.676181pt;}
.wsb2{word-spacing:4.686182pt;}
.ws1d{word-spacing:4.728998pt;}
.wsa3{word-spacing:4.994625pt;}
.ws9e{word-spacing:5.207434pt;}
.ws74{word-spacing:5.313547pt;}
.ws41{word-spacing:5.366895pt;}
.ws40{word-spacing:5.419659pt;}
.wsdb{word-spacing:5.525825pt;}
.wsda{word-spacing:5.526357pt;}
.wsc9{word-spacing:5.579174pt;}
.wse{word-spacing:5.632469pt;}
.ws4d{word-spacing:5.791983pt;}
.ws71{word-spacing:5.951445pt;}
.wsba{word-spacing:5.954475pt;}
.wseb{word-spacing:6.004262pt;}
.ws3d{word-spacing:6.110906pt;}
.wsb6{word-spacing:6.120789pt;}
.ws43{word-spacing:6.254853pt;}
.ws44{word-spacing:6.269835pt;}
.wsbd{word-spacing:6.323184pt;}
.ws9c{word-spacing:6.429350pt;}
.wsb9{word-spacing:6.455711pt;}
.ws94{word-spacing:6.642106pt;}
.ws15{word-spacing:6.694923pt;}
.ws16{word-spacing:6.695455pt;}
.ws4e{word-spacing:6.801621pt;}
.ws7f{word-spacing:6.838117pt;}
.ws93{word-spacing:6.961082pt;}
.ws4b{word-spacing:7.173360pt;}
.ws60{word-spacing:7.226709pt;}
.ws54{word-spacing:7.332821pt;}
.ws2f{word-spacing:7.344587pt;}
.ws30{word-spacing:7.348787pt;}
.wsbc{word-spacing:7.386170pt;}
.wse7{word-spacing:7.492282pt;}
.ws6d{word-spacing:7.598448pt;}
.ws85{word-spacing:7.757909pt;}
.wsc8{word-spacing:8.023536pt;}
.wsc1{word-spacing:8.264848pt;}
.wsbf{word-spacing:8.273930pt;}
.wsc0{word-spacing:8.289110pt;}
.wsa4{word-spacing:8.448624pt;}
.ws3e{word-spacing:8.608085pt;}
.wsd4{word-spacing:8.979825pt;}
.ws8e{word-spacing:9.245451pt;}
.ws52{word-spacing:9.352095pt;}
.wsaf{word-spacing:9.390002pt;}
.ws4c{word-spacing:9.617722pt;}
.ws22{word-spacing:9.723835pt;}
.ws95{word-spacing:9.777183pt;}
.ws46{word-spacing:9.830001pt;}
.ws3c{word-spacing:9.883349pt;}
.wsbe{word-spacing:9.989462pt;}
.ws42{word-spacing:10.148923pt;}
.ws7c{word-spacing:10.304092pt;}
.wsd5{word-spacing:10.414550pt;}
.ws98{word-spacing:10.615505pt;}
.wscc{word-spacing:11.583648pt;}
.ws9{word-spacing:11.743162pt;}
.wse5{word-spacing:13.226864pt;}
.wsec{word-spacing:13.231130pt;}
.wse6{word-spacing:13.232197pt;}
.wsdf{word-spacing:13.282091pt;}
.wsdd{word-spacing:13.284000pt;}
.wse3{word-spacing:13.655739pt;}
.wsd{word-spacing:13.868018pt;}
.wsb{word-spacing:13.868549pt;}
.ws6e{word-spacing:13.944000pt;}
.wsb0{word-spacing:14.458279pt;}
.wse9{word-spacing:14.665323pt;}
.ws31{word-spacing:14.674507pt;}
.ws68{word-spacing:14.984352pt;}
.ws7d{word-spacing:15.684810pt;}
.wsf{word-spacing:16.046753pt;}
.wsb1{word-spacing:16.593030pt;}
.ws67{word-spacing:16.778317pt;}
.wsc{word-spacing:17.322549pt;}
.wsea{word-spacing:18.017339pt;}
.wsb5{word-spacing:18.027637pt;}
.ws8{word-spacing:18.862908pt;}
.ws7{word-spacing:18.863439pt;}
.ws0{word-spacing:19.574737pt;}
.wse8{word-spacing:20.723146pt;}
.wse1{word-spacing:21.034592pt;}
.ws97{word-spacing:22.522927pt;}
.wsc2{word-spacing:28.055808pt;}
.wse0{word-spacing:28.852582pt;}
.ws3b{word-spacing:31.799600pt;}
.wsac{word-spacing:72.441247pt;}
.wsae{word-spacing:167.394255pt;}
.wsab{word-spacing:539.433441pt;}
._19{margin-left:-737.284880pt;}
._16{margin-left:-351.727490pt;}
._28{margin-left:-34.411928pt;}
._f{margin-left:-23.592437pt;}
._8{margin-left:-6.945557pt;}
._5{margin-left:-5.906873pt;}
._4{margin-left:-4.250827pt;}
._2{margin-left:-2.827091pt;}
._1{margin-left:-1.413333pt;}
._17{width:1.144481pt;}
._0{width:2.668055pt;}
._18{width:4.136573pt;}
._e{width:5.101003pt;}
._1b{width:8.277839pt;}
._1e{width:9.436425pt;}
._2b{width:11.140465pt;}
._12{width:12.490686pt;}
._14{width:14.509574pt;}
._1f{width:15.589090pt;}
._11{width:16.543318pt;}
._3{width:17.657418pt;}
._d{width:19.268615pt;}
._b{width:20.274955pt;}
._10{width:21.669119pt;}
._24{width:22.954539pt;}
._1a{width:24.244303pt;}
._13{width:25.554360pt;}
._20{width:26.706654pt;}
._7{width:28.089594pt;}
._9{width:30.664425pt;}
._21{width:31.860171pt;}
._c{width:33.299336pt;}
._23{width:34.835505pt;}
._6{width:36.792486pt;}
._1d{width:37.992453pt;}
._22{width:39.161551pt;}
._1c{width:42.296097pt;}
._2a{width:43.306265pt;}
._25{width:45.753639pt;}
._29{width:50.520228pt;}
._a{width:54.120798pt;}
._15{width:69.381986pt;}
._27{width:74.592795pt;}
._26{width:388.394799pt;}
.fs1b{font-size:0.888889pt;}
.fs14{font-size:19.408766pt;}
.fs15{font-size:20.569067pt;}
.fs12{font-size:24.027614pt;}
.fs1d{font-size:29.742048pt;}
.fs19{font-size:31.589973pt;}
.fs5{font-size:31.882667pt;}
.fs11{font-size:36.040897pt;}
.fs4{font-size:37.194667pt;}
.fs13{font-size:37.739301pt;}
.fsb{font-size:40.782400pt;}
.fsc{font-size:41.896000pt;}
.fsd{font-size:41.993067pt;}
.fs1c{font-size:42.488698pt;}
.fse{font-size:45.429333pt;}
.fs17{font-size:46.331823pt;}
.fs8{font-size:47.262933pt;}
.fs6{font-size:47.818667pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:49.466667pt;}
.fsa{font-size:51.203733pt;}
.fs3{font-size:53.136000pt;}
.fs10{font-size:53.333333pt;}
.fs16{font-size:53.479573pt;}
.fs18{font-size:56.861745pt;}
.fs1a{font-size:56.862568pt;}
.fs7{font-size:60.048000pt;}
.fsf{font-size:60.570667pt;}
.fs0{font-size:70.666667pt;}
.fs2{font-size:74.389333pt;}
.ye2{bottom:-29.140953pt;}
.ye5{bottom:-20.091335pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:1.199434pt;}
.yf6{bottom:2.792354pt;}
.y97{bottom:2.877333pt;}
.ye8{bottom:4.934946pt;}
.yf5{bottom:10.078791pt;}
.y3e{bottom:10.269226pt;}
.yf8{bottom:14.464116pt;}
.y96{bottom:17.459351pt;}
.y3b{bottom:22.117386pt;}
.y3c{bottom:22.222132pt;}
.y3d{bottom:22.237252pt;}
.ya3{bottom:22.283185pt;}
.ye7{bottom:24.415395pt;}
.yf4{bottom:24.878080pt;}
.y3a{bottom:24.996052pt;}
.yea{bottom:30.206873pt;}
.ye9{bottom:35.471834pt;}
.ya4{bottom:49.313858pt;}
.y78{bottom:61.608000pt;}
.yca{bottom:62.936000pt;}
.yf1{bottom:63.902912pt;}
.ye3{bottom:66.568714pt;}
.ya5{bottom:70.217478pt;}
.ye4{bottom:73.487939pt;}
.yec{bottom:73.906215pt;}
.y35{bottom:74.042667pt;}
.yfd{bottom:76.362667pt;}
.y77{bottom:77.548000pt;}
.yeb{bottom:78.644711pt;}
.yc9{bottom:78.876000pt;}
.y34{bottom:88.654667pt;}
.yfc{bottom:90.974667pt;}
.y76{bottom:93.488000pt;}
.y95{bottom:94.098667pt;}
.yc8{bottom:95.349333pt;}
.y33{bottom:103.266667pt;}
.yfb{bottom:105.586667pt;}
.ya2{bottom:108.420929pt;}
.y75{bottom:109.428000pt;}
.y94{bottom:110.038667pt;}
.yc7{bottom:111.289333pt;}
.yee{bottom:117.605402pt;}
.y32{bottom:117.878667pt;}
.ya0{bottom:119.052993pt;}
.yfa{bottom:120.198667pt;}
.ya1{bottom:121.215541pt;}
.yed{bottom:122.343898pt;}
.y74{bottom:125.368000pt;}
.y93{bottom:125.978667pt;}
.yc6{bottom:127.230667pt;}
.y31{bottom:132.490667pt;}
.yf9{bottom:134.810667pt;}
.y9b{bottom:138.876368pt;}
.y73{bottom:141.308000pt;}
.y92{bottom:141.918667pt;}
.yc5{bottom:143.170667pt;}
.y30{bottom:147.102667pt;}
.y9a{bottom:149.328228pt;}
.y9d{bottom:149.868191pt;}
.y9c{bottom:151.309759pt;}
.y72{bottom:157.249333pt;}
.y91{bottom:157.858667pt;}
.yc4{bottom:159.110667pt;}
.y2f{bottom:161.714667pt;}
.yef{bottom:161.831621pt;}
.ye1{bottom:162.706657pt;}
.y71{bottom:173.189333pt;}
.y90{bottom:173.798667pt;}
.yc3{bottom:175.050667pt;}
.y2e{bottom:176.325333pt;}
.y121{bottom:179.524000pt;}
.y150{bottom:181.901333pt;}
.y70{bottom:189.129333pt;}
.y8f{bottom:189.740000pt;}
.y2d{bottom:190.937333pt;}
.yc2{bottom:190.990667pt;}
.yf2{bottom:191.841632pt;}
.y120{bottom:195.464000pt;}
.y14f{bottom:199.170667pt;}
.ya7{bottom:200.505320pt;}
.ya9{bottom:205.010941pt;}
.y6f{bottom:205.069333pt;}
.y2c{bottom:205.549333pt;}
.y8e{bottom:205.680000pt;}
.yf0{bottom:206.057120pt;}
.yc1{bottom:206.932000pt;}
.ya6{bottom:211.137385pt;}
.y11f{bottom:211.405333pt;}
.y14e{bottom:216.438667pt;}
.y2b{bottom:220.161333pt;}
.y6e{bottom:221.009333pt;}
.y8d{bottom:221.620000pt;}
.yc0{bottom:223.405333pt;}
.y11e{bottom:227.345333pt;}
.y14d{bottom:232.378667pt;}
.y2a{bottom:234.773333pt;}
.y6d{bottom:237.432000pt;}
.y8c{bottom:237.560000pt;}
.ybf{bottom:239.345333pt;}
.y9f{bottom:240.331120pt;}
.ye6{bottom:241.176950pt;}
.y9e{bottom:242.493668pt;}
.y11d{bottom:243.285333pt;}
.y29{bottom:249.385333pt;}
.y14c{bottom:249.648000pt;}
.y6c{bottom:253.372000pt;}
.y8b{bottom:253.500000pt;}
.ybe{bottom:255.285333pt;}
.y11c{bottom:259.225333pt;}
.y28{bottom:263.997333pt;}
.y14b{bottom:266.916000pt;}
.y6b{bottom:269.312000pt;}
.ya8{bottom:269.524472pt;}
.ybd{bottom:271.225333pt;}
.y8a{bottom:274.262667pt;}
.y11b{bottom:275.165333pt;}
.y27{bottom:278.609333pt;}
.y14a{bottom:282.856000pt;}
.y6a{bottom:285.252000pt;}
.y89{bottom:285.381333pt;}
.ybc{bottom:287.165333pt;}
.y11a{bottom:291.105333pt;}
.y26{bottom:293.221333pt;}
.y149{bottom:298.797333pt;}
.y69{bottom:301.192000pt;}
.ybb{bottom:303.106667pt;}
.y119{bottom:307.046667pt;}
.y25{bottom:307.833333pt;}
.yf3{bottom:311.792811pt;}
.y148{bottom:314.737333pt;}
.y99{bottom:314.936149pt;}
.y88{bottom:315.744000pt;}
.y68{bottom:317.132000pt;}
.yba{bottom:319.046667pt;}
.y24{bottom:322.445333pt;}
.y118{bottom:327.808000pt;}
.y147{bottom:332.005333pt;}
.y67{bottom:333.073333pt;}
.y87{bottom:334.340000pt;}
.yb9{bottom:335.520000pt;}
.y23{bottom:337.056000pt;}
.y117{bottom:338.926667pt;}
.y66{bottom:349.013333pt;}
.y146{bottom:349.274667pt;}
.yb8{bottom:351.460000pt;}
.y22{bottom:351.668000pt;}
.y116{bottom:354.866667pt;}
.y65{bottom:364.953333pt;}
.y21{bottom:366.280000pt;}
.y145{bottom:366.542667pt;}
.yb7{bottom:367.400000pt;}
.y115{bottom:370.806667pt;}
.y86{bottom:378.730667pt;}
.y20{bottom:380.892000pt;}
.y64{bottom:380.893333pt;}
.yb6{bottom:383.340000pt;}
.y144{bottom:383.812000pt;}
.y114{bottom:386.746667pt;}
.y85{bottom:394.670667pt;}
.y1f{bottom:395.504000pt;}
.y63{bottom:396.833333pt;}
.yb5{bottom:399.281333pt;}
.y143{bottom:401.080000pt;}
.y113{bottom:402.688000pt;}
.ye0{bottom:409.925333pt;}
.y1e{bottom:410.116000pt;}
.y84{bottom:410.612000pt;}
.y62{bottom:412.773333pt;}
.yb4{bottom:415.221333pt;}
.y142{bottom:417.020000pt;}
.y112{bottom:418.628000pt;}
.y1d{bottom:424.728000pt;}
.ydf{bottom:425.865333pt;}
.y83{bottom:426.552000pt;}
.y61{bottom:428.714667pt;}
.yb3{bottom:431.161333pt;}
.y141{bottom:434.289333pt;}
.y111{bottom:434.568000pt;}
.y1c{bottom:439.340000pt;}
.yde{bottom:441.805333pt;}
.y82{bottom:442.492000pt;}
.y60{bottom:444.654667pt;}
.yb2{bottom:447.101333pt;}
.y140{bottom:450.229333pt;}
.y1b{bottom:453.952000pt;}
.y110{bottom:455.330667pt;}
.y81{bottom:458.432000pt;}
.y5f{bottom:460.594667pt;}
.ydd{bottom:462.568000pt;}
.yb1{bottom:463.041333pt;}
.y13f{bottom:466.169333pt;}
.y1a{bottom:468.564000pt;}
.y10f{bottom:471.270667pt;}
.ydc{bottom:473.686667pt;}
.y80{bottom:474.372000pt;}
.y5e{bottom:476.534667pt;}
.yb0{bottom:478.981333pt;}
.y13e{bottom:482.109333pt;}
.y10e{bottom:482.388000pt;}
.y19{bottom:483.176000pt;}
.ydb{bottom:489.626667pt;}
.y7f{bottom:490.312000pt;}
.y5d{bottom:492.474667pt;}
.yaf{bottom:494.922667pt;}
.y18{bottom:497.786667pt;}
.y10d{bottom:498.329333pt;}
.y13d{bottom:499.378667pt;}
.yda{bottom:506.118667pt;}
.y7e{bottom:506.253333pt;}
.y5c{bottom:508.416000pt;}
.yae{bottom:510.862667pt;}
.y17{bottom:512.398667pt;}
.y10c{bottom:514.269333pt;}
.y13c{bottom:515.318667pt;}
.yd9{bottom:522.058667pt;}
.y7d{bottom:522.193333pt;}
.y5b{bottom:524.356000pt;}
.y16{bottom:527.010667pt;}
.y10b{bottom:530.209333pt;}
.y13b{bottom:532.586667pt;}
.yd8{bottom:537.998667pt;}
.y7c{bottom:538.133333pt;}
.y5a{bottom:540.296000pt;}
.y15{bottom:541.622667pt;}
.y10a{bottom:546.149333pt;}
.yd7{bottom:553.938667pt;}
.y7b{bottom:554.073333pt;}
.y14{bottom:556.234667pt;}
.y59{bottom:556.236000pt;}
.y109{bottom:562.089333pt;}
.y13a{bottom:562.868000pt;}
.yad{bottom:567.652000pt;}
.yd6{bottom:569.880000pt;}
.y7a{bottom:570.013333pt;}
.y58{bottom:572.176000pt;}
.y13{bottom:573.149333pt;}
.y108{bottom:578.029333pt;}
.yac{bottom:582.262667pt;}
.yd5{bottom:585.820000pt;}
.y79{bottom:585.953333pt;}
.y12{bottom:589.089333pt;}
.y107{bottom:593.970667pt;}
.yab{bottom:596.874667pt;}
.yd4{bottom:601.760000pt;}
.y57{bottom:601.894667pt;}
.y11{bottom:605.029333pt;}
.y139{bottom:607.918667pt;}
.y106{bottom:609.910667pt;}
.yaa{bottom:611.486667pt;}
.yd3{bottom:617.700000pt;}
.y10{bottom:620.969333pt;}
.y138{bottom:623.858667pt;}
.y105{bottom:625.850667pt;}
.yd2{bottom:633.640000pt;}
.yf{bottom:636.909333pt;}
.y137{bottom:639.800000pt;}
.y104{bottom:641.790667pt;}
.y98{bottom:642.626095pt;}
.yd1{bottom:650.132000pt;}
.ye{bottom:652.849333pt;}
.y136{bottom:655.740000pt;}
.y103{bottom:657.730667pt;}
.y56{bottom:658.945333pt;}
.yd0{bottom:666.073333pt;}
.yd{bottom:668.790667pt;}
.y135{bottom:671.680000pt;}
.y55{bottom:673.557333pt;}
.ycf{bottom:682.013333pt;}
.yc{bottom:684.730667pt;}
.y134{bottom:687.620000pt;}
.y54{bottom:688.169333pt;}
.yce{bottom:697.953333pt;}
.yb{bottom:700.670667pt;}
.y53{bottom:702.780000pt;}
.y133{bottom:703.560000pt;}
.y102{bottom:708.372000pt;}
.ya{bottom:716.610667pt;}
.y52{bottom:717.392000pt;}
.y132{bottom:719.500000pt;}
.y101{bottom:722.984000pt;}
.y51{bottom:732.004000pt;}
.y9{bottom:732.550667pt;}
.y131{bottom:735.441333pt;}
.y100{bottom:737.596000pt;}
.y50{bottom:746.616000pt;}
.y8{bottom:748.490667pt;}
.y130{bottom:751.381333pt;}
.yff{bottom:752.206667pt;}
.ycd{bottom:754.780000pt;}
.y4f{bottom:761.228000pt;}
.y7{bottom:764.432000pt;}
.yfe{bottom:766.818667pt;}
.y12f{bottom:767.321333pt;}
.ycc{bottom:769.390667pt;}
.y4e{bottom:775.840000pt;}
.y6{bottom:780.372000pt;}
.y12e{bottom:783.261333pt;}
.ycb{bottom:784.002667pt;}
.y5{bottom:796.312000pt;}
.y12d{bottom:804.024000pt;}
.y4d{bottom:806.746667pt;}
.y4{bottom:812.252000pt;}
.y12c{bottom:815.141333pt;}
.y4c{bottom:821.358667pt;}
.y3{bottom:828.192000pt;}
.y12b{bottom:831.082667pt;}
.y4b{bottom:835.970667pt;}
.y2{bottom:844.133333pt;}
.y12a{bottom:847.022667pt;}
.y4a{bottom:850.582667pt;}
.y129{bottom:862.962667pt;}
.y49{bottom:865.194667pt;}
.y48{bottom:879.806667pt;}
.y1{bottom:886.640000pt;}
.y128{bottom:893.986667pt;}
.y47{bottom:894.417333pt;}
.y46{bottom:909.029333pt;}
.y45{bottom:923.641333pt;}
.y127{bottom:923.708000pt;}
.y44{bottom:938.253333pt;}
.y126{bottom:939.648000pt;}
.y43{bottom:952.865333pt;}
.y125{bottom:955.588000pt;}
.y42{bottom:967.477333pt;}
.y124{bottom:971.529333pt;}
.y41{bottom:982.089333pt;}
.y123{bottom:987.469333pt;}
.y40{bottom:996.701333pt;}
.y122{bottom:1003.409333pt;}
.y3f{bottom:1011.313333pt;}
.y36{bottom:1073.560000pt;}
.y38{bottom:1079.090400pt;}
.y39{bottom:1094.189867pt;}
.y37{bottom:1094.308000pt;}
.h1b{height:-13.488150pt;}
.h26{height:0.626736pt;}
.h1d{height:13.893189pt;}
.h16{height:14.666747pt;}
.h1f{height:14.974843pt;}
.h1a{height:17.234651pt;}
.h29{height:22.306536pt;}
.h23{height:23.276010pt;}
.h25{height:24.878286pt;}
.h19{height:26.555524pt;}
.h1c{height:27.014558pt;}
.h6{height:28.248043pt;}
.hc{height:29.117720pt;}
.hd{height:29.159587pt;}
.hf{height:29.185181pt;}
.he{height:30.570941pt;}
.hb{height:32.464369pt;}
.h28{height:32.928741pt;}
.h15{height:32.954475pt;}
.h21{height:34.138047pt;}
.h2b{height:36.185616pt;}
.h2c{height:36.291888pt;}
.h20{height:38.934592pt;}
.ha{height:41.496855pt;}
.h22{height:42.174312pt;}
.h24{height:42.174922pt;}
.h11{height:42.367339pt;}
.h13{height:44.882864pt;}
.h12{height:45.602709pt;}
.h10{height:45.608043pt;}
.h14{height:47.078496pt;}
.h5{height:47.611829pt;}
.h9{height:49.125000pt;}
.h8{height:49.893780pt;}
.h3{height:52.239808pt;}
.h4{height:52.245141pt;}
.h7{height:52.571320pt;}
.h17{height:55.442708pt;}
.h27{height:60.611383pt;}
.h2a{height:62.074492pt;}
.h2{height:63.657467pt;}
.h1e{height:216.675592pt;}
.h18{height:370.313760pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.666667pt;}
.w5{width:173.851294pt;}
.w3{width:283.723920pt;}
.w4{width:289.137308pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x28{left:-7.611177pt;}
.x0{left:0.000000pt;}
.x20{left:5.544514pt;}
.x16{left:12.608305pt;}
.x17{left:18.913572pt;}
.x18{left:22.164742pt;}
.x2e{left:23.532190pt;}
.x19{left:28.470010pt;}
.x2f{left:30.903218pt;}
.x1a{left:33.297365pt;}
.x6{left:34.961200pt;}
.x2c{left:39.327279pt;}
.x2d{left:40.380312pt;}
.x1d{left:43.255951pt;}
.xc{left:46.014023pt;}
.xa{left:50.137289pt;}
.x9{left:58.177103pt;}
.x8{left:61.376303pt;}
.x24{left:62.470381pt;}
.x2a{left:66.705735pt;}
.x1{left:75.590667pt;}
.x1e{left:77.343706pt;}
.x1f{left:80.594745pt;}
.x2b{left:84.606583pt;}
.x13{left:87.759909pt;}
.x5{left:94.450667pt;}
.xe{left:95.516000pt;}
.x25{left:105.949777pt;}
.x30{left:114.091311pt;}
.x4{left:117.117333pt;}
.x32{left:122.471771pt;}
.xd{left:132.284000pt;}
.x29{left:147.968924pt;}
.x14{left:153.972335pt;}
.x23{left:155.647701pt;}
.x21{left:161.779062pt;}
.x33{left:167.322878pt;}
.x22{left:172.266481pt;}
.x1b{left:180.980047pt;}
.x1c{left:190.733557pt;}
.x15{left:212.881182pt;}
.x12{left:393.517334pt;}
.xf{left:410.078667pt;}
.x34{left:416.720000pt;}
.x26{left:419.528318pt;}
.x10{left:426.468000pt;}
.x11{left:430.004000pt;}
.x35{left:438.850667pt;}
.x31{left:509.931623pt;}
.x7{left:530.724800pt;}
.xb{left:597.797636pt;}
.x2{left:603.800000pt;}
.x27{left:616.951357pt;}
.x3{left:622.238667pt;}
}




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