
    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_4b1fb206ff5692e9ed6b6d2a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3188f8bd69cbbac30135702a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f6e6f6ee7f9d9f480ab21021.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3f41090145481b78fb8627dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_375c9d41de7e736dd41fabb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_e82c8cc255db686cd2aebf14.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_a45c23fd7f08b82dac3a77c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_2beb197fd627099c44f6ca7f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_aa7e6153cd5c4acfb5f9dd62.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_fd9a1c87972752f248b8c94b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_315ff4872538c33c3221adc5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a2c78550ffc2915c754bdbd6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2d484d454b2f99c0eddede4c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_51390f02e2eda60f1a870535.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_10c6b75537646e0a393ab7b6.woff2')format("woff");}.fff{font-family:fff;line-height:0.941406;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_5749e80e995cc36efe99c520.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.202148;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.249463,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249463,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249463,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.286141,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.286141,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.286141,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.250094,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250094,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250094,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250063,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250063,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250063,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.241702,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.241702,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.241702,0.250000,0.000000,0,0);}
.m15{transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250008,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.250024,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250024,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250024,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249284,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249284,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249284,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.255835,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255835,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255835,0.250000,0.000000,0,0);}
.m17{transform:matrix(0.000000,-0.250106,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250106,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250106,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.238352,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.238352,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.238352,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.218114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218114,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.218424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218424,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244299,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,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);}
.m9{transform:matrix(0.250538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250538,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250718,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.258583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258583,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262217,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-64.380000px;}
.v11{vertical-align:-47.440739px;}
.v12{vertical-align:-44.367325px;}
.v9{vertical-align:-26.640000px;}
.v2{vertical-align:-25.200000px;}
.v7{vertical-align:-23.040000px;}
.vd{vertical-align:-20.160000px;}
.v3{vertical-align:-18.000000px;}
.v10{vertical-align:-13.259200px;}
.v14{vertical-align:-8.220000px;}
.v13{vertical-align:-6.900000px;}
.v6{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:7.500000px;}
.v4{vertical-align:18.000000px;}
.ve{vertical-align:20.160000px;}
.vf{vertical-align:22.404026px;}
.v1{vertical-align:25.200000px;}
.va{vertical-align:26.640000px;}
.v8{vertical-align:41.940000px;}
.vb{vertical-align:82.200000px;}
.ls18{letter-spacing:-6.960000px;}
.ls5f{letter-spacing:-4.302000px;}
.ls64{letter-spacing:-3.276000px;}
.ls15{letter-spacing:-0.720000px;}
.ls6b{letter-spacing:-0.594000px;}
.lsf{letter-spacing:-0.550800px;}
.ls65{letter-spacing:-0.447600px;}
.ls6a{letter-spacing:-0.399600px;}
.ls43{letter-spacing:-0.393000px;}
.ls2a{letter-spacing:-0.385200px;}
.ls39{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.324600px;}
.lsb{letter-spacing:-0.306600px;}
.ls5c{letter-spacing:-0.259800px;}
.ls5a{letter-spacing:-0.256200px;}
.ls50{letter-spacing:-0.253439px;}
.ls27{letter-spacing:-0.232869px;}
.ls5b{letter-spacing:-0.229800px;}
.ls3d{letter-spacing:-0.224962px;}
.ls14{letter-spacing:-0.216000px;}
.ls3b{letter-spacing:-0.214257px;}
.ls4d{letter-spacing:-0.213507px;}
.ls48{letter-spacing:-0.203306px;}
.ls4e{letter-spacing:-0.194396px;}
.ls29{letter-spacing:-0.188352px;}
.ls52{letter-spacing:-0.185810px;}
.ls47{letter-spacing:-0.184012px;}
.ls36{letter-spacing:-0.180000px;}
.ls45{letter-spacing:-0.163101px;}
.ls67{letter-spacing:-0.157800px;}
.ls3c{letter-spacing:-0.145340px;}
.ls66{letter-spacing:-0.141600px;}
.ls4a{letter-spacing:-0.140501px;}
.ls38{letter-spacing:-0.135200px;}
.ls37{letter-spacing:-0.133720px;}
.ls44{letter-spacing:-0.102760px;}
.ls10{letter-spacing:-0.097800px;}
.ls68{letter-spacing:-0.065400px;}
.ls12{letter-spacing:-0.058320px;}
.lsd{letter-spacing:-0.055440px;}
.ls17{letter-spacing:-0.036000px;}
.ls6d{letter-spacing:-0.005040px;}
.lsa{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.023568px;}
.ls2d{letter-spacing:0.024600px;}
.ls6c{letter-spacing:0.050400px;}
.ls57{letter-spacing:0.050976px;}
.ls4c{letter-spacing:0.056697px;}
.ls49{letter-spacing:0.057625px;}
.ls5e{letter-spacing:0.063360px;}
.ls20{letter-spacing:0.072000px;}
.ls46{letter-spacing:0.072290px;}
.ls40{letter-spacing:0.101894px;}
.ls2e{letter-spacing:0.107280px;}
.ls2c{letter-spacing:0.108000px;}
.ls34{letter-spacing:0.118800px;}
.ls3a{letter-spacing:0.144000px;}
.ls41{letter-spacing:0.151786px;}
.ls28{letter-spacing:0.164907px;}
.ls11{letter-spacing:0.165600px;}
.ls9{letter-spacing:0.169200px;}
.ls1b{letter-spacing:0.175800px;}
.ls26{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.196800px;}
.ls3f{letter-spacing:0.203130px;}
.ls16{letter-spacing:0.216000px;}
.lse{letter-spacing:0.229200px;}
.lsc{letter-spacing:0.234600px;}
.ls55{letter-spacing:0.242640px;}
.ls6{letter-spacing:0.243600px;}
.ls5d{letter-spacing:0.253800px;}
.ls1{letter-spacing:0.253872px;}
.ls33{letter-spacing:0.254400px;}
.ls2b{letter-spacing:0.262992px;}
.ls1a{letter-spacing:0.288000px;}
.ls69{letter-spacing:0.295200px;}
.ls0{letter-spacing:0.326880px;}
.ls19{letter-spacing:0.432000px;}
.ls5{letter-spacing:9.077760px;}
.ls3{letter-spacing:16.277760px;}
.ls4{letter-spacing:17.717760px;}
.ls58{letter-spacing:18.141840px;}
.ls7{letter-spacing:18.437760px;}
.ls56{letter-spacing:18.528480px;}
.ls54{letter-spacing:18.862560px;}
.ls30{letter-spacing:19.444320px;}
.ls32{letter-spacing:23.976000px;}
.ls42{letter-spacing:24.696000px;}
.ls25{letter-spacing:24.809328px;}
.ls1f{letter-spacing:27.540000px;}
.ls62{letter-spacing:32.311440px;}
.ls8{letter-spacing:47.237760px;}
.ls23{letter-spacing:49.493664px;}
.ls13{letter-spacing:49.608000px;}
.ls4b{letter-spacing:55.111656px;}
.ls21{letter-spacing:81.106560px;}
.ls1c{letter-spacing:85.830048px;}
.ls1d{letter-spacing:85.896000px;}
.ls31{letter-spacing:95.119104px;}
.ls2f{letter-spacing:95.233440px;}
.ls59{letter-spacing:96.778080px;}
.ls53{letter-spacing:96.922080px;}
.ls3e{letter-spacing:97.509600px;}
.ls1e{letter-spacing:113.256000px;}
.ls63{letter-spacing:130.677840px;}
.ls60{letter-spacing:140.619456px;}
.ls61{letter-spacing:140.732640px;}
.ls4f{letter-spacing:140.972119px;}
.ls24{letter-spacing:142.906685px;}
.ls22{letter-spacing:178.351958px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-66.346680px;}
.ws17{word-spacing:-44.733600px;}
.ws4f{word-spacing:-37.913760px;}
.ws88{word-spacing:-35.656097px;}
.ws8a{word-spacing:-35.595755px;}
.ws9f{word-spacing:-34.691904px;}
.ws7c{word-spacing:-26.256517px;}
.ws7d{word-spacing:-26.181305px;}
.ws92{word-spacing:-26.079908px;}
.ws8e{word-spacing:-24.843171px;}
.ws90{word-spacing:-24.702670px;}
.ws67{word-spacing:-24.588000px;}
.ws6a{word-spacing:-24.516000px;}
.ws6e{word-spacing:-24.465144px;}
.ws6d{word-spacing:-24.440544px;}
.ws61{word-spacing:-24.408000px;}
.ws89{word-spacing:-24.293766px;}
.ws72{word-spacing:-24.228000px;}
.ws95{word-spacing:-23.754422px;}
.ws8b{word-spacing:-22.995827px;}
.ws8c{word-spacing:-22.739525px;}
.ws9a{word-spacing:-22.705216px;}
.ws93{word-spacing:-22.403670px;}
.ws8f{word-spacing:-22.340981px;}
.ws6f{word-spacing:-21.896160px;}
.ws70{word-spacing:-21.760560px;}
.wsb9{word-spacing:-21.724704px;}
.wsa4{word-spacing:-21.674304px;}
.ws5f{word-spacing:-21.641760px;}
.wsbb{word-spacing:-21.636720px;}
.ws63{word-spacing:-20.697693px;}
.ws4{word-spacing:-19.038240px;}
.ws9b{word-spacing:-18.808440px;}
.ws7f{word-spacing:-18.781191px;}
.ws64{word-spacing:-18.763525px;}
.ws71{word-spacing:-18.713640px;}
.ws87{word-spacing:-18.688279px;}
.ws68{word-spacing:-16.272000px;}
.ws99{word-spacing:-15.426617px;}
.ws76{word-spacing:-14.904991px;}
.ws5e{word-spacing:-14.482080px;}
.ws7e{word-spacing:-12.808960px;}
.wsf{word-spacing:-9.112320px;}
.wsb{word-spacing:-2.561280px;}
.wse{word-spacing:-2.389680px;}
.wsa{word-spacing:-1.892160px;}
.wsd{word-spacing:-1.753920px;}
.wsc{word-spacing:-1.343520px;}
.wsa5{word-spacing:-1.314720px;}
.ws34{word-spacing:-1.282320px;}
.ws33{word-spacing:-1.120320px;}
.wsbc{word-spacing:-0.625680px;}
.wsab{word-spacing:-0.586080px;}
.ws9{word-spacing:-0.548640px;}
.wsbe{word-spacing:-0.512640px;}
.wsb8{word-spacing:-0.467136px;}
.ws32{word-spacing:-0.252000px;}
.ws36{word-spacing:-0.142560px;}
.ws59{word-spacing:-0.108144px;}
.ws4a{word-spacing:-0.108000px;}
.wsb7{word-spacing:-0.087840px;}
.ws14{word-spacing:-0.069840px;}
.ws18{word-spacing:-0.051480px;}
.ws37{word-spacing:0.000000px;}
.wsc0{word-spacing:0.115920px;}
.wsba{word-spacing:0.164640px;}
.ws1a{word-spacing:0.191280px;}
.wsc1{word-spacing:0.207360px;}
.ws15{word-spacing:0.504000px;}
.ws83{word-spacing:0.504576px;}
.ws1d{word-spacing:0.593280px;}
.ws85{word-spacing:0.644544px;}
.ws66{word-spacing:0.648000px;}
.ws79{word-spacing:0.684000px;}
.ws1c{word-spacing:0.685560px;}
.ws81{word-spacing:0.828000px;}
.ws82{word-spacing:0.864000px;}
.ws1b{word-spacing:0.869760px;}
.wsbd{word-spacing:0.934920px;}
.ws77{word-spacing:1.008000px;}
.ws84{word-spacing:1.021032px;}
.ws78{word-spacing:1.044000px;}
.ws19{word-spacing:1.198080px;}
.ws13{word-spacing:1.203120px;}
.ws65{word-spacing:1.500912px;}
.ws16{word-spacing:1.665360px;}
.wsbf{word-spacing:1.680120px;}
.ws35{word-spacing:3.292560px;}
.ws7{word-spacing:3.843360px;}
.ws12{word-spacing:4.250880px;}
.ws6{word-spacing:4.438080px;}
.ws27{word-spacing:4.452624px;}
.ws10{word-spacing:4.515840px;}
.ws5{word-spacing:4.587840px;}
.ws11{word-spacing:4.674240px;}
.ws8{word-spacing:5.114880px;}
.ws28{word-spacing:5.165568px;}
.ws26{word-spacing:5.325696px;}
.ws2b{word-spacing:5.374080px;}
.ws2f{word-spacing:5.662944px;}
.ws2{word-spacing:5.911200px;}
.ws29{word-spacing:5.912928px;}
.ws2a{word-spacing:5.925888px;}
.ws24{word-spacing:5.994720px;}
.ws2e{word-spacing:6.151680px;}
.ws31{word-spacing:6.308352px;}
.ws2d{word-spacing:6.386520px;}
.ws1{word-spacing:6.704640px;}
.ws3{word-spacing:6.747840px;}
.ws2c{word-spacing:7.169328px;}
.ws30{word-spacing:7.172784px;}
.ws9d{word-spacing:9.602016px;}
.wsa7{word-spacing:10.560240px;}
.wsa6{word-spacing:11.040120px;}
.wsaa{word-spacing:11.100240px;}
.wsa8{word-spacing:11.202120px;}
.wsa9{word-spacing:11.564640px;}
.ws20{word-spacing:15.041520px;}
.ws1f{word-spacing:15.050880px;}
.wsa1{word-spacing:15.093120px;}
.ws1e{word-spacing:15.118560px;}
.ws21{word-spacing:15.144480px;}
.ws25{word-spacing:15.211440px;}
.ws22{word-spacing:15.585120px;}
.ws23{word-spacing:15.682320px;}
.wsa3{word-spacing:16.318368px;}
.wsa2{word-spacing:16.519248px;}
.ws9e{word-spacing:17.520048px;}
.wsa0{word-spacing:21.358944px;}
.ws4b{word-spacing:24.885840px;}
.ws40{word-spacing:25.212000px;}
.ws5b{word-spacing:25.248000px;}
.ws48{word-spacing:25.560000px;}
.wsac{word-spacing:25.844160px;}
.ws4e{word-spacing:25.935840px;}
.wsad{word-spacing:26.005680px;}
.wsb0{word-spacing:26.021520px;}
.ws4c{word-spacing:26.108424px;}
.ws5a{word-spacing:26.220000px;}
.wsae{word-spacing:26.413920px;}
.ws54{word-spacing:27.012000px;}
.ws55{word-spacing:27.192000px;}
.ws4d{word-spacing:27.308016px;}
.wsaf{word-spacing:27.331920px;}
.ws5d{word-spacing:27.540000px;}
.ws47{word-spacing:27.864000px;}
.ws45{word-spacing:28.272000px;}
.ws42{word-spacing:28.548000px;}
.ws46{word-spacing:29.592000px;}
.ws44{word-spacing:29.988000px;}
.ws43{word-spacing:30.132000px;}
.ws49{word-spacing:31.572000px;}
.wsb6{word-spacing:33.253920px;}
.ws41{word-spacing:43.344000px;}
.ws3f{word-spacing:44.976000px;}
.ws3b{word-spacing:45.288000px;}
.ws39{word-spacing:45.324000px;}
.ws3c{word-spacing:45.540000px;}
.ws58{word-spacing:45.548424px;}
.ws3e{word-spacing:45.756000px;}
.ws56{word-spacing:46.181232px;}
.ws38{word-spacing:46.404000px;}
.ws57{word-spacing:46.511856px;}
.ws3d{word-spacing:46.908000px;}
.ws3a{word-spacing:48.972000px;}
.ws51{word-spacing:51.048000px;}
.ws52{word-spacing:51.516000px;}
.ws50{word-spacing:51.672000px;}
.ws5c{word-spacing:62.568000px;}
.ws60{word-spacing:63.286324px;}
.ws62{word-spacing:68.737623px;}
.wsb5{word-spacing:76.521600px;}
.wsb3{word-spacing:76.633920px;}
.wsb2{word-spacing:76.722120px;}
.wsb4{word-spacing:77.286960px;}
.wsb1{word-spacing:77.423520px;}
.ws98{word-spacing:104.644730px;}
.ws53{word-spacing:107.208000px;}
.ws73{word-spacing:153.593577px;}
.ws75{word-spacing:155.293681px;}
.ws91{word-spacing:174.426890px;}
.ws7b{word-spacing:174.911957px;}
.ws80{word-spacing:179.923830px;}
.ws74{word-spacing:187.983589px;}
.ws7a{word-spacing:195.484080px;}
.ws96{word-spacing:225.519356px;}
.ws86{word-spacing:245.498319px;}
.ws97{word-spacing:256.566933px;}
.ws94{word-spacing:309.411942px;}
.ws8d{word-spacing:325.275881px;}
.ws69{word-spacing:646.764000px;}
.ws6b{word-spacing:696.120000px;}
.ws9c{word-spacing:1205.438448px;}
.ws6c{word-spacing:1782.266784px;}
._1f{margin-left:-2429.737488px;}
._2d{margin-left:-22.790880px;}
._26{margin-left:-21.578400px;}
._18{margin-left:-15.430464px;}
._17{margin-left:-13.242960px;}
._16{margin-left:-11.794032px;}
._20{margin-left:-9.016272px;}
._5{margin-left:-6.402240px;}
._0{margin-left:-4.545072px;}
._19{margin-left:-3.492720px;}
._6{margin-left:-2.358720px;}
._2{margin-left:-1.010016px;}
._3{width:1.082160px;}
._4{width:2.478096px;}
._28{width:10.143963px;}
._d{width:13.513680px;}
._b{width:15.591360px;}
._a{width:16.946880px;}
._8{width:18.577680px;}
._2e{width:20.297808px;}
._32{width:21.342960px;}
._35{width:23.641056px;}
._7{width:25.035600px;}
._11{width:26.851680px;}
._c{width:28.968672px;}
._12{width:30.189168px;}
._9{width:35.802816px;}
._2f{width:37.499520px;}
._24{width:42.763008px;}
._25{width:44.233632px;}
._31{width:45.919584px;}
._10{width:47.208000px;}
._33{width:48.759120px;}
._21{width:50.661792px;}
._13{width:53.424000px;}
._34{width:56.187120px;}
._15{width:63.822720px;}
._1e{width:106.188228px;}
._14{width:108.444000px;}
._1d{width:109.618209px;}
._1c{width:131.881716px;}
._1b{width:132.979317px;}
._27{width:164.079954px;}
._23{width:195.018338px;}
._22{width:238.315303px;}
._2a{width:340.063731px;}
._2b{width:355.774645px;}
._2c{width:678.407520px;}
._e{width:792.000192px;}
._f{width:907.748160px;}
._1{width:1661.429232px;}
._29{width:1717.972320px;}
._30{width:1863.139296px;}
._1a{width:4677.225840px;}
.fce{color:rgb(0,255,0);}
.fc0{color:rgb(137,137,137);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc5{color:rgb(102,102,102);}
.fc7{color:rgb(26,111,223);}
.fcd{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fcf{color:rgb(255,0,128);}
.fc6{color:rgb(250,60,60);}
.fc3{color:rgb(84,130,53);}
.fc8{color:rgb(255,0,0);}
.fc9{color:rgb(0,112,192);}
.fcc{color:rgb(192,0,0);}
.fca{color:rgb(68,114,196);}
.fc10{color:rgb(53,42,134);}
.fcb{color:rgb(91,155,213);}
.fs6{font-size:40.320000px;}
.fs1a{font-size:45.569655px;}
.fs26{font-size:46.075395px;}
.fs1c{font-size:47.134115px;}
.fs16{font-size:47.917793px;}
.fs1d{font-size:48.448187px;}
.fs1f{font-size:48.552516px;}
.fs17{font-size:53.028115px;}
.fs1e{font-size:53.615075px;}
.fs2c{font-size:54.232678px;}
.fs47{font-size:55.491427px;}
.fs1b{font-size:55.896940px;}
.fs33{font-size:56.025000px;}
.fs4{font-size:56.160000px;}
.fs5{font-size:56.304000px;}
.fs18{font-size:57.436761px;}
.fs19{font-size:58.777229px;}
.fs20{font-size:59.427825px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs11{font-size:60.089961px;}
.fs3b{font-size:63.763155px;}
.fse{font-size:64.080000px;}
.fs28{font-size:65.034659px;}
.fs4b{font-size:66.240000px;}
.fs46{font-size:66.583795px;}
.fs2b{font-size:67.224026px;}
.fs13{font-size:67.494694px;}
.fs25{font-size:68.081044px;}
.fs3f{font-size:69.660625px;}
.fs43{font-size:70.845978px;}
.fs48{font-size:71.357676px;}
.fs15{font-size:72.000000px;}
.fs0{font-size:72.144000px;}
.fs36{font-size:72.853418px;}
.fs4a{font-size:73.684804px;}
.fs3a{font-size:76.508987px;}
.fs39{font-size:76.738244px;}
.fs22{font-size:76.777541px;}
.fs3e{font-size:80.588741px;}
.fs27{font-size:80.613603px;}
.fs34{font-size:81.114522px;}
.fs49{font-size:81.673439px;}
.fs2f{font-size:82.016657px;}
.fs2d{font-size:82.437913px;}
.fs32{font-size:82.458764px;}
.fs14{font-size:82.790772px;}
.fsf{font-size:83.447360px;}
.fs3{font-size:84.240000px;}
.fsc{font-size:84.384000px;}
.fs12{font-size:85.116011px;}
.fs40{font-size:85.444791px;}
.fs41{font-size:85.447560px;}
.fs31{font-size:87.387649px;}
.fs37{font-size:89.355496px;}
.fs38{font-size:89.363925px;}
.fs42{font-size:90.818450px;}
.fs3c{font-size:93.812617px;}
.fs3d{font-size:93.847941px;}
.fs24{font-size:94.177357px;}
.fs23{font-size:94.447904px;}
.fsd{font-size:95.760000px;}
.fs4e{font-size:95.904000px;}
.fs29{font-size:98.882772px;}
.fs10{font-size:107.360817px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs45{font-size:111.352889px;}
.fs44{font-size:111.400307px;}
.fs2e{font-size:118.771208px;}
.fs30{font-size:128.628980px;}
.fs35{font-size:142.519476px;}
.fs4f{font-size:144.000000px;}
.fs4d{font-size:153.504000px;}
.fsb{font-size:167.760000px;}
.fs4c{font-size:192.384000px;}
.fs2a{font-size:216.000000px;}
.fs21{font-size:216.144000px;}
.fs1{font-size:239.760000px;}
.fs2{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y14{bottom:5.652000px;}
.y16{bottom:7.452000px;}
.yf5{bottom:7.956000px;}
.y13{bottom:8.352000px;}
.y73{bottom:9.048899px;}
.ye5{bottom:9.845002px;}
.y10c{bottom:12.975808px;}
.y82{bottom:14.838862px;}
.yd4{bottom:15.289911px;}
.yf2{bottom:15.421564px;}
.y4d{bottom:17.094117px;}
.y101{bottom:17.139413px;}
.y21{bottom:21.960000px;}
.y90{bottom:23.978667px;}
.yb1{bottom:27.407826px;}
.y69{bottom:27.975192px;}
.y31{bottom:28.044960px;}
.y1{bottom:31.392000px;}
.y83{bottom:31.628205px;}
.y77{bottom:36.333794px;}
.yc2{bottom:42.237571px;}
.y6a{bottom:43.069808px;}
.ya0{bottom:44.018128px;}
.yc7{bottom:44.065133px;}
.y104{bottom:44.382979px;}
.yda{bottom:45.933825px;}
.y84{bottom:47.315778px;}
.y40{bottom:48.930954px;}
.ye9{bottom:50.601665px;}
.y78{bottom:55.095030px;}
.y23{bottom:56.415730px;}
.yf7{bottom:59.977924px;}
.yf6{bottom:62.100000px;}
.y85{bottom:62.577473px;}
.ya3{bottom:65.432775px;}
.yb6{bottom:65.652767px;}
.y105{bottom:66.134258px;}
.yc8{bottom:67.014737px;}
.y110{bottom:69.156000px;}
.ydb{bottom:70.034972px;}
.y4e{bottom:70.191002px;}
.y103{bottom:70.560000px;}
.y68{bottom:70.920000px;}
.y95{bottom:74.982980px;}
.y60{bottom:78.264000px;}
.y57{bottom:78.912000px;}
.y41{bottom:79.193194px;}
.y5e{bottom:80.784000px;}
.y138{bottom:81.612000px;}
.yb2{bottom:81.900000px;}
.y24{bottom:82.702539px;}
.y3e{bottom:86.328000px;}
.yb7{bottom:86.829053px;}
.yf8{bottom:88.586705px;}
.ye3{bottom:90.437142px;}
.ya4{bottom:90.826920px;}
.y22{bottom:94.500000px;}
.y79{bottom:99.070031px;}
.y96{bottom:99.168724px;}
.y6b{bottom:99.535680px;}
.ya2{bottom:99.900000px;}
.y127{bottom:100.368000px;}
.y86{bottom:103.354985px;}
.y94{bottom:103.526189px;}
.y76{bottom:104.220000px;}
.yb4{bottom:106.560000px;}
.yc9{bottom:107.206489px;}
.ye2{bottom:109.948565px;}
.y120{bottom:111.060000px;}
.yb0{bottom:114.607287px;}
.y3d{bottom:116.424000px;}
.yb5{bottom:120.894976px;}
.y92{bottom:123.660000px;}
.y42{bottom:124.076685px;}
.y25{bottom:127.348212px;}
.yea{bottom:128.158853px;}
.y118{bottom:129.852000px;}
.y4f{bottom:131.615252px;}
.y81{bottom:132.033309px;}
.yaf{bottom:134.762479px;}
.yd9{bottom:134.820000px;}
.y11f{bottom:136.296000px;}
.ydc{bottom:139.402689px;}
.y7a{bottom:143.047056px;}
.yb8{bottom:143.409673px;}
.ya5{bottom:143.631982px;}
.yc6{bottom:144.000000px;}
.y87{bottom:144.054993px;}
.y106{bottom:144.595969px;}
.y3c{bottom:146.304000px;}
.yca{bottom:147.398241px;}
.y8f{bottom:150.997999px;}
.yae{bottom:154.915879px;}
.y117{bottom:155.055000px;}
.y97{bottom:155.730067px;}
.y6c{bottom:155.919574px;}
.y11e{bottom:161.490000px;}
.y126{bottom:165.165000px;}
.y11{bottom:167.040000px;}
.y43{bottom:169.075647px;}
.y72{bottom:169.097819px;}
.y26{bottom:172.132939px;}
.y3b{bottom:176.370000px;}
.yf9{bottom:177.744482px;}
.y116{bottom:180.255000px;}
.y88{bottom:184.833581px;}
.y11d{bottom:186.690000px;}
.yeb{bottom:186.791840px;}
.y7b{bottom:187.021043px;}
.ycb{bottom:187.711394px;}
.y50{bottom:193.036503px;}
.ya6{bottom:196.299130px;}
.y125{bottom:197.565000px;}
.y10{bottom:199.440000px;}
.yb9{bottom:199.882754px;}
.y10b{bottom:200.306344px;}
.yc1{bottom:202.907298px;}
.y115{bottom:205.455000px;}
.ydd{bottom:208.648014px;}
.y11c{bottom:211.890000px;}
.y98{bottom:212.165176px;}
.y6d{bottom:212.383317px;}
.y44{bottom:213.959139px;}
.y1f{bottom:216.180000px;}
.y27{bottom:216.778612px;}
.yf1{bottom:219.534253px;}
.yd3{bottom:220.740500px;}
.y107{bottom:223.054722px;}
.y89{bottom:225.611092px;}
.ycc{bottom:227.906384px;}
.y114{bottom:230.655000px;}
.y7c{bottom:231.074004px;}
.y3f{bottom:231.787771px;}
.yf{bottom:231.840000px;}
.y11b{bottom:237.090000px;}
.yec{bottom:245.311841px;}
.y1e{bottom:247.890000px;}
.ya7{bottom:249.105983px;}
.y51{bottom:254.348282px;}
.y113{bottom:255.885000px;}
.yba{bottom:256.464868px;}
.y45{bottom:258.847129px;}
.y28{bottom:261.424284px;}
.y11a{bottom:262.290000px;}
.y124{bottom:262.410000px;}
.ye{bottom:264.240000px;}
.y8a{bottom:266.389680px;}
.yfa{bottom:266.902259px;}
.ycd{bottom:268.098136px;}
.y99{bottom:268.726519px;}
.y6e{bottom:268.770405px;}
.y137{bottom:271.410000px;}
.ye4{bottom:273.810185px;}
.y7d{bottom:275.051030px;}
.y80{bottom:275.886322px;}
.yde{bottom:278.017431px;}
.y102{bottom:281.581965px;}
.y71{bottom:288.415337px;}
.y7f{bottom:293.050879px;}
.y9f{bottom:293.168143px;}
.yc{bottom:293.505000px;}
.y136{bottom:300.210000px;}
.y108{bottom:301.402522px;}
.ya8{bottom:301.773131px;}
.y46{bottom:303.843091px;}
.yed{bottom:303.943280px;}
.y8e{bottom:304.503015px;}
.y70{bottom:304.789663px;}
.y29{bottom:306.069957px;}
.y8b{bottom:307.086459px;}
.yce{bottom:308.289888px;}
.y30{bottom:309.129150px;}
.yb{bottom:311.550000px;}
.y1d{bottom:312.690000px;}
.ybb{bottom:313.045488px;}
.y52{bottom:315.768034px;}
.y7e{bottom:319.026030px;}
.y8d{bottom:321.056433px;}
.y9a{bottom:325.156510px;}
.y6f{bottom:325.234148px;}
.ya{bottom:329.550000px;}
.yc4{bottom:333.549645px;}
.y4c{bottom:345.018034px;}
.y1c{bottom:345.090000px;}
.ydf{bottom:347.257656px;}
.y9{bottom:347.550000px;}
.y8c{bottom:347.865047px;}
.ycf{bottom:348.481640px;}
.y47{bottom:348.729582px;}
.y2a{bottom:350.854684px;}
.ya9{bottom:354.574611px;}
.yfb{bottom:355.902645px;}
.y135{bottom:357.840000px;}
.yee{bottom:362.460186px;}
.ybc{bottom:369.627602px;}
.y8{bottom:370.050000px;}
.y4b{bottom:372.915380px;}
.y53{bottom:377.189285px;}
.y1b{bottom:377.535000px;}
.y109{bottom:379.865713px;}
.y9b{bottom:381.719559px;}
.yd0{bottom:388.673393px;}
.y48{bottom:393.725545px;}
.y2b{bottom:395.500357px;}
.y74{bottom:397.110000px;}
.y4a{bottom:398.336862px;}
.yaa{bottom:407.245341px;}
.y134{bottom:415.440000px;}
.ye0{bottom:416.630473px;}
.y20{bottom:418.830000px;}
.y7{bottom:419.010000px;}
.y39{bottom:420.255708px;}
.y67{bottom:420.915000px;}
.yef{bottom:421.091625px;}
.ybd{bottom:426.096202px;}
.y10d{bottom:426.806341px;}
.yc5{bottom:428.896698px;}
.yd1{bottom:428.986545px;}
.yf4{bottom:433.632952px;}
.y9c{bottom:438.280902px;}
.y49{bottom:438.613535px;}
.y38{bottom:438.616426px;}
.y2c{bottom:440.146030px;}
.yd6{bottom:440.762421px;}
.y1a{bottom:442.335000px;}
.yc0{bottom:442.903700px;}
.y6{bottom:444.210000px;}
.y133{bottom:444.240000px;}
.yfc{bottom:445.060423px;}
.y58{bottom:446.040000px;}
.y61{bottom:450.210000px;}
.yf3{bottom:455.110922px;}
.y37{bottom:456.975290px;}
.y10a{bottom:458.324465px;}
.ybf{bottom:459.709706px;}
.yab{bottom:460.046821px;}
.y56{bottom:463.320000px;}
.yd5{bottom:464.322266px;}
.yd2{bottom:469.178298px;}
.y5{bottom:469.440000px;}
.ye6{bottom:471.970636px;}
.y132{bottom:473.040000px;}
.y59{bottom:473.790000px;}
.y36{bottom:475.336008px;}
.yf0{bottom:479.724612px;}
.ybe{bottom:482.678316px;}
.y2d{bottom:484.791703px;}
.ye1{bottom:485.872397px;}
.y35{bottom:493.694873px;}
.y9d{bottom:494.710893px;}
.y55{bottom:495.750000px;}
.y119{bottom:500.655000px;}
.ye7{bottom:500.664905px;}
.y131{bottom:501.870000px;}
.y19{bottom:507.135000px;}
.yc3{bottom:509.122530px;}
.y34{bottom:512.050029px;}
.yac{bottom:512.719343px;}
.y2e{bottom:529.576430px;}
.y33{bottom:530.410747px;}
.y130{bottom:530.670000px;}
.yfd{bottom:534.218200px;}
.y3a{bottom:539.452983px;}
.y18{bottom:539.565000px;}
.y66{bottom:539.925000px;}
.ye8{bottom:545.040730px;}
.y32{bottom:548.769612px;}
.y9e{bottom:551.273942px;}
.y12f{bottom:559.470000px;}
.y100{bottom:563.886340px;}
.yad{bottom:565.520822px;}
.y17{bottom:571.965000px;}
.ya1{bottom:572.003603px;}
.y2f{bottom:574.222102px;}
.y4{bottom:580.290000px;}
.yff{bottom:585.682930px;}
.y12e{bottom:588.270000px;}
.y65{bottom:595.950000px;}
.y128{bottom:606.165000px;}
.y12b{bottom:611.535000px;}
.y12d{bottom:617.070000px;}
.y64{bottom:621.150000px;}
.yfe{bottom:623.371941px;}
.y123{bottom:636.945000px;}
.y12a{bottom:638.970000px;}
.y12c{bottom:645.915000px;}
.y63{bottom:646.350000px;}
.y10f{bottom:649.050000px;}
.y5b{bottom:651.135000px;}
.y3{bottom:652.320000px;}
.yd{bottom:665.025000px;}
.y5d{bottom:665.355000px;}
.y62{bottom:671.550000px;}
.y122{bottom:672.630000px;}
.yd7{bottom:676.080000px;}
.y10e{bottom:681.450000px;}
.y111{bottom:683.640000px;}
.y54{bottom:688.350000px;}
.y5a{bottom:710.130000px;}
.y5c{bottom:712.260000px;}
.y5f{bottom:718.200000px;}
.y2{bottom:724.320000px;}
.y91{bottom:748.905000px;}
.y75{bottom:749.625000px;}
.y15{bottom:750.315000px;}
.y121{bottom:750.855000px;}
.y112{bottom:751.035000px;}
.yd8{bottom:752.370000px;}
.yb3{bottom:752.475000px;}
.y129{bottom:752.760000px;}
.y93{bottom:753.150000px;}
.y12{bottom:770.475000px;}
.h6{height:32.445000px;}
.h2a{height:47.527726px;}
.h8{height:48.088125px;}
.h2c{height:49.159409px;}
.h25{height:49.976760px;}
.h7{height:50.445000px;}
.h2e{height:50.529945px;}
.h30{height:50.638757px;}
.h26{height:55.306667px;}
.h2f{height:55.918848px;}
.h3f{height:56.562989px;}
.h5c{height:57.875824px;}
.h2b{height:58.298762px;}
.h12{height:59.439023px;}
.h27{height:59.904747px;}
.h28{height:61.302813px;}
.h31{height:61.981364px;}
.h16{height:62.671951px;}
.h4c{height:66.502978px;}
.h61{height:67.824844px;}
.h3a{height:67.829117px;}
.h5b{height:69.444817px;}
.h3e{height:70.112558px;}
.h4{height:70.336406px;}
.h1b{height:70.394856px;}
.h5{height:70.572141px;}
.h37{height:71.006402px;}
.h1d{height:71.613281px;}
.h1{height:71.756508px;}
.h51{height:72.653855px;}
.h57{height:73.890142px;}
.h5d{height:74.423826px;}
.h46{height:75.983839px;}
.h5f{height:76.850948px;}
.h4b{height:79.796482px;}
.h49{height:80.035590px;}
.h34{height:80.076576px;}
.h21{height:83.787539px;}
.h22{height:83.930766px;}
.h4f{height:84.051538px;}
.h39{height:84.077469px;}
.h54{height:84.239508px;}
.h5e{height:85.182844px;}
.h40{height:85.980167px;}
.h43{height:86.001914px;}
.h10{height:86.255508px;}
.h1c{height:86.348188px;}
.hd{height:86.402953px;}
.h14{height:87.032989px;}
.h17{height:88.773340px;}
.h52{height:89.116246px;}
.h53{height:89.119135px;}
.h47{height:93.194990px;}
.h48{height:93.203781px;}
.h56{height:94.720806px;}
.he{height:95.245664px;}
.h64{height:95.388891px;}
.h4d{height:97.843628px;}
.h4e{height:97.880470px;}
.h20{height:98.051133px;}
.h36{height:98.224040px;}
.h35{height:98.506212px;}
.h3b{height:103.131641px;}
.ha{height:105.996094px;}
.hb{height:106.137422px;}
.h18{height:107.419922px;}
.h19{height:107.563148px;}
.h11{height:108.843750px;}
.h23{height:110.583984px;}
.h60{height:110.731430px;}
.h15{height:111.973977px;}
.h59{height:116.137584px;}
.h58{height:116.187039px;}
.h9{height:118.083984px;}
.h41{height:123.874659px;}
.h42{height:134.156006px;}
.h65{height:147.445312px;}
.h44{height:148.643359px;}
.h1e{height:149.359922px;}
.hc{height:159.732422px;}
.h63{height:183.178125px;}
.h1f{height:189.763148px;}
.h3c{height:205.664062px;}
.h32{height:205.801172px;}
.hf{height:228.287109px;}
.h62{height:228.424219px;}
.h2{height:250.062187px;}
.h3{height:250.212375px;}
.h24{height:338.940000px;}
.h29{height:341.460000px;}
.h2d{height:372.111795px;}
.h1a{height:475.792229px;}
.h5a{height:481.497596px;}
.h50{height:510.660000px;}
.h45{height:519.120000px;}
.h3d{height:551.585024px;}
.h4a{height:568.800000px;}
.h13{height:605.160000px;}
.h38{height:605.699820px;}
.h33{height:629.973811px;}
.h55{height:657.540000px;}
.h0{height:810.000000px;}
.w5{width:409.674875px;}
.w4{width:411.480000px;}
.w6{width:426.600000px;}
.we{width:559.258264px;}
.w9{width:599.400000px;}
.wc{width:624.952042px;}
.w3{width:631.246235px;}
.wa{width:658.800000px;}
.wb{width:668.859678px;}
.w8{width:719.265680px;}
.w2{width:772.195405px;}
.w7{width:777.161312px;}
.wd{width:806.744374px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x32{left:7.020000px;}
.x13{left:9.900000px;}
.x40{left:20.026268px;}
.x37{left:21.502645px;}
.x6a{left:23.220000px;}
.x35{left:25.794171px;}
.x3b{left:26.912368px;}
.x1d{left:28.655513px;}
.x34{left:32.270478px;}
.x67{left:33.301025px;}
.x15{left:38.621836px;}
.x33{left:39.764265px;}
.x4e{left:40.810281px;}
.x5e{left:41.970892px;}
.x6{left:44.891979px;}
.x3e{left:46.892635px;}
.x7{left:48.275979px;}
.x14{left:49.852250px;}
.x4d{left:51.955388px;}
.x48{left:53.011671px;}
.x6d{left:55.025538px;}
.x1c{left:56.531224px;}
.x71{left:58.852537px;}
.x6b{left:60.017540px;}
.x47{left:62.891338px;}
.x5b{left:66.240000px;}
.x6c{left:67.581178px;}
.x5d{left:72.200076px;}
.x46{left:73.540850px;}
.x55{left:74.685990px;}
.x8{left:82.115979px;}
.x5c{left:86.407484px;}
.x12{left:90.719979px;}
.x45{left:93.946853px;}
.x74{left:97.811979px;}
.x51{left:102.095979px;}
.x4c{left:104.198460px;}
.x7f{left:109.079979px;}
.x2a{left:113.903979px;}
.x31{left:115.523979px;}
.x2{left:119.663979px;}
.x75{left:125.927979px;}
.x26{left:126.971979px;}
.x4f{left:145.565003px;}
.x66{left:149.289825px;}
.x38{left:150.815467px;}
.x41{left:152.815399px;}
.x68{left:159.262751px;}
.x3{left:161.609979px;}
.x56{left:164.964762px;}
.x3c{left:176.481085px;}
.x53{left:180.719979px;}
.x4a{left:205.076421px;}
.x5f{left:216.689979px;}
.x57{left:217.945909px;}
.x72{left:233.249979px;}
.x1f{left:246.924946px;}
.x63{left:248.713475px;}
.x7d{left:250.949979px;}
.x27{left:256.064979px;}
.x44{left:258.554979px;}
.x36{left:271.776193px;}
.x58{left:275.179622px;}
.x64{left:276.754553px;}
.x16{left:287.328356px;}
.x50{left:290.875232px;}
.x52{left:297.569979px;}
.xb{left:298.874979px;}
.x73{left:301.109979px;}
.x78{left:302.969979px;}
.x6f{left:307.842666px;}
.x3f{left:333.668276px;}
.x18{left:347.282239px;}
.x49{left:359.199227px;}
.x23{left:360.389979px;}
.x60{left:382.394979px;}
.x1e{left:389.033939px;}
.x5{left:390.314979px;}
.x42{left:393.869979px;}
.x10{left:399.989979px;}
.x11{left:401.834979px;}
.x59{left:447.561913px;}
.x62{left:451.251379px;}
.x65{left:473.941506px;}
.x2e{left:479.699979px;}
.x5a{left:483.406741px;}
.x7a{left:484.484979px;}
.x6e{left:488.637819px;}
.x2d{left:489.929979px;}
.x3a{left:501.734979px;}
.xf{left:507.494979px;}
.x30{left:512.489979px;}
.x2f{left:520.229979px;}
.x20{left:550.082727px;}
.x80{left:555.554979px;}
.x79{left:567.689979px;}
.x9{left:569.804979px;}
.x4{left:586.439979px;}
.x2b{left:601.274979px;}
.x69{left:604.154979px;}
.x17{left:625.316184px;}
.x1{left:685.769979px;}
.x4b{left:689.220000px;}
.x61{left:705.420000px;}
.x2c{left:746.669979px;}
.x54{left:760.680000px;}
.x1b{left:797.760000px;}
.x24{left:813.599979px;}
.x7e{left:815.969979px;}
.x76{left:819.539979px;}
.x77{left:824.864979px;}
.xd{left:830.519979px;}
.x70{left:831.600000px;}
.x43{left:845.924979px;}
.x19{left:851.864979px;}
.xe{left:864.359979px;}
.x1a{left:885.704979px;}
.x7b{left:920.984979px;}
.x22{left:946.334979px;}
.x21{left:952.949979px;}
.x7c{left:954.824979px;}
.x3d{left:961.560000px;}
.x28{left:1076.969979px;}
.x39{left:1128.599979px;}
.x29{left:1283.399979px;}
.xc{left:1334.909979px;}
.xa{left:1338.659979px;}
.x25{left:1416.599979px;}
@media print{
.vc{vertical-align:-57.226667pt;}
.v11{vertical-align:-42.169546pt;}
.v12{vertical-align:-39.437622pt;}
.v9{vertical-align:-23.680000pt;}
.v2{vertical-align:-22.400000pt;}
.v7{vertical-align:-20.480000pt;}
.vd{vertical-align:-17.920000pt;}
.v3{vertical-align:-16.000000pt;}
.v10{vertical-align:-11.785956pt;}
.v14{vertical-align:-7.306667pt;}
.v13{vertical-align:-6.133333pt;}
.v6{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:6.666667pt;}
.v4{vertical-align:16.000000pt;}
.ve{vertical-align:17.920000pt;}
.vf{vertical-align:19.914690pt;}
.v1{vertical-align:22.400000pt;}
.va{vertical-align:23.680000pt;}
.v8{vertical-align:37.280000pt;}
.vb{vertical-align:73.066667pt;}
.ls18{letter-spacing:-6.186667pt;}
.ls5f{letter-spacing:-3.824000pt;}
.ls64{letter-spacing:-2.912000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls6b{letter-spacing:-0.528000pt;}
.lsf{letter-spacing:-0.489600pt;}
.ls65{letter-spacing:-0.397867pt;}
.ls6a{letter-spacing:-0.355200pt;}
.ls43{letter-spacing:-0.349333pt;}
.ls2a{letter-spacing:-0.342400pt;}
.ls39{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.288533pt;}
.lsb{letter-spacing:-0.272533pt;}
.ls5c{letter-spacing:-0.230933pt;}
.ls5a{letter-spacing:-0.227733pt;}
.ls50{letter-spacing:-0.225279pt;}
.ls27{letter-spacing:-0.206995pt;}
.ls5b{letter-spacing:-0.204267pt;}
.ls3d{letter-spacing:-0.199966pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls3b{letter-spacing:-0.190450pt;}
.ls4d{letter-spacing:-0.189784pt;}
.ls48{letter-spacing:-0.180716pt;}
.ls4e{letter-spacing:-0.172796pt;}
.ls29{letter-spacing:-0.167424pt;}
.ls52{letter-spacing:-0.165164pt;}
.ls47{letter-spacing:-0.163566pt;}
.ls36{letter-spacing:-0.160000pt;}
.ls45{letter-spacing:-0.144979pt;}
.ls67{letter-spacing:-0.140267pt;}
.ls3c{letter-spacing:-0.129191pt;}
.ls66{letter-spacing:-0.125867pt;}
.ls4a{letter-spacing:-0.124890pt;}
.ls38{letter-spacing:-0.120178pt;}
.ls37{letter-spacing:-0.118862pt;}
.ls44{letter-spacing:-0.091342pt;}
.ls10{letter-spacing:-0.086933pt;}
.ls68{letter-spacing:-0.058133pt;}
.ls12{letter-spacing:-0.051840pt;}
.lsd{letter-spacing:-0.049280pt;}
.ls17{letter-spacing:-0.032000pt;}
.ls6d{letter-spacing:-0.004480pt;}
.lsa{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.020950pt;}
.ls2d{letter-spacing:0.021867pt;}
.ls6c{letter-spacing:0.044800pt;}
.ls57{letter-spacing:0.045312pt;}
.ls4c{letter-spacing:0.050397pt;}
.ls49{letter-spacing:0.051222pt;}
.ls5e{letter-spacing:0.056320pt;}
.ls20{letter-spacing:0.064000pt;}
.ls46{letter-spacing:0.064258pt;}
.ls40{letter-spacing:0.090572pt;}
.ls2e{letter-spacing:0.095360pt;}
.ls2c{letter-spacing:0.096000pt;}
.ls34{letter-spacing:0.105600pt;}
.ls3a{letter-spacing:0.128000pt;}
.ls41{letter-spacing:0.134921pt;}
.ls28{letter-spacing:0.146584pt;}
.ls11{letter-spacing:0.147200pt;}
.ls9{letter-spacing:0.150400pt;}
.ls1b{letter-spacing:0.156267pt;}
.ls26{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.174933pt;}
.ls3f{letter-spacing:0.180560pt;}
.ls16{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.203733pt;}
.lsc{letter-spacing:0.208533pt;}
.ls55{letter-spacing:0.215680pt;}
.ls6{letter-spacing:0.216533pt;}
.ls5d{letter-spacing:0.225600pt;}
.ls1{letter-spacing:0.225664pt;}
.ls33{letter-spacing:0.226133pt;}
.ls2b{letter-spacing:0.233771pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls69{letter-spacing:0.262400pt;}
.ls0{letter-spacing:0.290560pt;}
.ls19{letter-spacing:0.384000pt;}
.ls5{letter-spacing:8.069120pt;}
.ls3{letter-spacing:14.469120pt;}
.ls4{letter-spacing:15.749120pt;}
.ls58{letter-spacing:16.126080pt;}
.ls7{letter-spacing:16.389120pt;}
.ls56{letter-spacing:16.469760pt;}
.ls54{letter-spacing:16.766720pt;}
.ls30{letter-spacing:17.283840pt;}
.ls32{letter-spacing:21.312000pt;}
.ls42{letter-spacing:21.952000pt;}
.ls25{letter-spacing:22.052736pt;}
.ls1f{letter-spacing:24.480000pt;}
.ls62{letter-spacing:28.721280pt;}
.ls8{letter-spacing:41.989120pt;}
.ls23{letter-spacing:43.994368pt;}
.ls13{letter-spacing:44.096000pt;}
.ls4b{letter-spacing:48.988139pt;}
.ls21{letter-spacing:72.094720pt;}
.ls1c{letter-spacing:76.293376pt;}
.ls1d{letter-spacing:76.352000pt;}
.ls31{letter-spacing:84.550315pt;}
.ls2f{letter-spacing:84.651947pt;}
.ls59{letter-spacing:86.024960pt;}
.ls53{letter-spacing:86.152960pt;}
.ls3e{letter-spacing:86.675200pt;}
.ls1e{letter-spacing:100.672000pt;}
.ls63{letter-spacing:116.158080pt;}
.ls60{letter-spacing:124.995072pt;}
.ls61{letter-spacing:125.095680pt;}
.ls4f{letter-spacing:125.308550pt;}
.ls24{letter-spacing:127.028165pt;}
.ls22{letter-spacing:158.535073pt;}
.ws0{word-spacing:-58.974827pt;}
.ws17{word-spacing:-39.763200pt;}
.ws4f{word-spacing:-33.701120pt;}
.ws88{word-spacing:-31.694308pt;}
.ws8a{word-spacing:-31.640671pt;}
.ws9f{word-spacing:-30.837248pt;}
.ws7c{word-spacing:-23.339126pt;}
.ws7d{word-spacing:-23.272271pt;}
.ws92{word-spacing:-23.182140pt;}
.ws8e{word-spacing:-22.082819pt;}
.ws90{word-spacing:-21.957929pt;}
.ws67{word-spacing:-21.856000pt;}
.ws6a{word-spacing:-21.792000pt;}
.ws6e{word-spacing:-21.746795pt;}
.ws6d{word-spacing:-21.724928pt;}
.ws61{word-spacing:-21.696000pt;}
.ws89{word-spacing:-21.594459pt;}
.ws72{word-spacing:-21.536000pt;}
.ws95{word-spacing:-21.115042pt;}
.ws8b{word-spacing:-20.440735pt;}
.ws8c{word-spacing:-20.212911pt;}
.ws9a{word-spacing:-20.182414pt;}
.ws93{word-spacing:-19.914373pt;}
.ws8f{word-spacing:-19.858650pt;}
.ws6f{word-spacing:-19.463253pt;}
.ws70{word-spacing:-19.342720pt;}
.wsb9{word-spacing:-19.310848pt;}
.wsa4{word-spacing:-19.266048pt;}
.ws5f{word-spacing:-19.237120pt;}
.wsbb{word-spacing:-19.232640pt;}
.ws63{word-spacing:-18.397949pt;}
.ws4{word-spacing:-16.922880pt;}
.ws9b{word-spacing:-16.718613pt;}
.ws7f{word-spacing:-16.694392pt;}
.ws64{word-spacing:-16.678689pt;}
.ws71{word-spacing:-16.634347pt;}
.ws87{word-spacing:-16.611804pt;}
.ws68{word-spacing:-14.464000pt;}
.ws99{word-spacing:-13.712548pt;}
.ws76{word-spacing:-13.248881pt;}
.ws5e{word-spacing:-12.872960pt;}
.ws7e{word-spacing:-11.385742pt;}
.wsf{word-spacing:-8.099840pt;}
.wsb{word-spacing:-2.276693pt;}
.wse{word-spacing:-2.124160pt;}
.wsa{word-spacing:-1.681920pt;}
.wsd{word-spacing:-1.559040pt;}
.wsc{word-spacing:-1.194240pt;}
.wsa5{word-spacing:-1.168640pt;}
.ws34{word-spacing:-1.139840pt;}
.ws33{word-spacing:-0.995840pt;}
.wsbc{word-spacing:-0.556160pt;}
.wsab{word-spacing:-0.520960pt;}
.ws9{word-spacing:-0.487680pt;}
.wsbe{word-spacing:-0.455680pt;}
.wsb8{word-spacing:-0.415232pt;}
.ws32{word-spacing:-0.224000pt;}
.ws36{word-spacing:-0.126720pt;}
.ws59{word-spacing:-0.096128pt;}
.ws4a{word-spacing:-0.096000pt;}
.wsb7{word-spacing:-0.078080pt;}
.ws14{word-spacing:-0.062080pt;}
.ws18{word-spacing:-0.045760pt;}
.ws37{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.103040pt;}
.wsba{word-spacing:0.146347pt;}
.ws1a{word-spacing:0.170027pt;}
.wsc1{word-spacing:0.184320pt;}
.ws15{word-spacing:0.448000pt;}
.ws83{word-spacing:0.448512pt;}
.ws1d{word-spacing:0.527360pt;}
.ws85{word-spacing:0.572928pt;}
.ws66{word-spacing:0.576000pt;}
.ws79{word-spacing:0.608000pt;}
.ws1c{word-spacing:0.609387pt;}
.ws81{word-spacing:0.736000pt;}
.ws82{word-spacing:0.768000pt;}
.ws1b{word-spacing:0.773120pt;}
.wsbd{word-spacing:0.831040pt;}
.ws77{word-spacing:0.896000pt;}
.ws84{word-spacing:0.907584pt;}
.ws78{word-spacing:0.928000pt;}
.ws19{word-spacing:1.064960pt;}
.ws13{word-spacing:1.069440pt;}
.ws65{word-spacing:1.334144pt;}
.ws16{word-spacing:1.480320pt;}
.wsbf{word-spacing:1.493440pt;}
.ws35{word-spacing:2.926720pt;}
.ws7{word-spacing:3.416320pt;}
.ws12{word-spacing:3.778560pt;}
.ws6{word-spacing:3.944960pt;}
.ws27{word-spacing:3.957888pt;}
.ws10{word-spacing:4.014080pt;}
.ws5{word-spacing:4.078080pt;}
.ws11{word-spacing:4.154880pt;}
.ws8{word-spacing:4.546560pt;}
.ws28{word-spacing:4.591616pt;}
.ws26{word-spacing:4.733952pt;}
.ws2b{word-spacing:4.776960pt;}
.ws2f{word-spacing:5.033728pt;}
.ws2{word-spacing:5.254400pt;}
.ws29{word-spacing:5.255936pt;}
.ws2a{word-spacing:5.267456pt;}
.ws24{word-spacing:5.328640pt;}
.ws2e{word-spacing:5.468160pt;}
.ws31{word-spacing:5.607424pt;}
.ws2d{word-spacing:5.676907pt;}
.ws1{word-spacing:5.959680pt;}
.ws3{word-spacing:5.998080pt;}
.ws2c{word-spacing:6.372736pt;}
.ws30{word-spacing:6.375808pt;}
.ws9d{word-spacing:8.535125pt;}
.wsa7{word-spacing:9.386880pt;}
.wsa6{word-spacing:9.813440pt;}
.wsaa{word-spacing:9.866880pt;}
.wsa8{word-spacing:9.957440pt;}
.wsa9{word-spacing:10.279680pt;}
.ws20{word-spacing:13.370240pt;}
.ws1f{word-spacing:13.378560pt;}
.wsa1{word-spacing:13.416107pt;}
.ws1e{word-spacing:13.438720pt;}
.ws21{word-spacing:13.461760pt;}
.ws25{word-spacing:13.521280pt;}
.ws22{word-spacing:13.853440pt;}
.ws23{word-spacing:13.939840pt;}
.wsa3{word-spacing:14.505216pt;}
.wsa2{word-spacing:14.683776pt;}
.ws9e{word-spacing:15.573376pt;}
.wsa0{word-spacing:18.985728pt;}
.ws4b{word-spacing:22.120747pt;}
.ws40{word-spacing:22.410667pt;}
.ws5b{word-spacing:22.442667pt;}
.ws48{word-spacing:22.720000pt;}
.wsac{word-spacing:22.972587pt;}
.ws4e{word-spacing:23.054080pt;}
.wsad{word-spacing:23.116160pt;}
.wsb0{word-spacing:23.130240pt;}
.ws4c{word-spacing:23.207488pt;}
.ws5a{word-spacing:23.306667pt;}
.wsae{word-spacing:23.479040pt;}
.ws54{word-spacing:24.010667pt;}
.ws55{word-spacing:24.170667pt;}
.ws4d{word-spacing:24.273792pt;}
.wsaf{word-spacing:24.295040pt;}
.ws5d{word-spacing:24.480000pt;}
.ws47{word-spacing:24.768000pt;}
.ws45{word-spacing:25.130667pt;}
.ws42{word-spacing:25.376000pt;}
.ws46{word-spacing:26.304000pt;}
.ws44{word-spacing:26.656000pt;}
.ws43{word-spacing:26.784000pt;}
.ws49{word-spacing:28.064000pt;}
.wsb6{word-spacing:29.559040pt;}
.ws41{word-spacing:38.528000pt;}
.ws3f{word-spacing:39.978667pt;}
.ws3b{word-spacing:40.256000pt;}
.ws39{word-spacing:40.288000pt;}
.ws3c{word-spacing:40.480000pt;}
.ws58{word-spacing:40.487488pt;}
.ws3e{word-spacing:40.672000pt;}
.ws56{word-spacing:41.049984pt;}
.ws38{word-spacing:41.248000pt;}
.ws57{word-spacing:41.343872pt;}
.ws3d{word-spacing:41.696000pt;}
.ws3a{word-spacing:43.530667pt;}
.ws51{word-spacing:45.376000pt;}
.ws52{word-spacing:45.792000pt;}
.ws50{word-spacing:45.930667pt;}
.ws5c{word-spacing:55.616000pt;}
.ws60{word-spacing:56.254510pt;}
.ws62{word-spacing:61.100109pt;}
.wsb5{word-spacing:68.019200pt;}
.wsb3{word-spacing:68.119040pt;}
.wsb2{word-spacing:68.197440pt;}
.wsb4{word-spacing:68.699520pt;}
.wsb1{word-spacing:68.820907pt;}
.ws98{word-spacing:93.017537pt;}
.ws53{word-spacing:95.296000pt;}
.ws73{word-spacing:136.527624pt;}
.ws75{word-spacing:138.038827pt;}
.ws91{word-spacing:155.046125pt;}
.ws7b{word-spacing:155.477295pt;}
.ws80{word-spacing:159.932293pt;}
.ws74{word-spacing:167.096524pt;}
.ws7a{word-spacing:173.763626pt;}
.ws96{word-spacing:200.461650pt;}
.ws86{word-spacing:218.220728pt;}
.ws97{word-spacing:228.059496pt;}
.ws94{word-spacing:275.032838pt;}
.ws8d{word-spacing:289.134116pt;}
.ws69{word-spacing:574.901333pt;}
.ws6b{word-spacing:618.773333pt;}
.ws9c{word-spacing:1071.500843pt;}
.ws6c{word-spacing:1584.237141pt;}
._1f{margin-left:-2159.766656pt;}
._2d{margin-left:-20.258560pt;}
._26{margin-left:-19.180800pt;}
._18{margin-left:-13.715968pt;}
._17{margin-left:-11.771520pt;}
._16{margin-left:-10.483584pt;}
._20{margin-left:-8.014464pt;}
._5{margin-left:-5.690880pt;}
._0{margin-left:-4.040064pt;}
._19{margin-left:-3.104640pt;}
._6{margin-left:-2.096640pt;}
._2{margin-left:-0.897792pt;}
._3{width:0.961920pt;}
._4{width:2.202752pt;}
._28{width:9.016856pt;}
._d{width:12.012160pt;}
._b{width:13.858987pt;}
._a{width:15.063893pt;}
._8{width:16.513493pt;}
._2e{width:18.042496pt;}
._32{width:18.971520pt;}
._35{width:21.014272pt;}
._7{width:22.253867pt;}
._11{width:23.868160pt;}
._c{width:25.749931pt;}
._12{width:26.834816pt;}
._9{width:31.824725pt;}
._2f{width:33.332907pt;}
._24{width:38.011563pt;}
._25{width:39.318784pt;}
._31{width:40.817408pt;}
._10{width:41.962667pt;}
._33{width:43.341440pt;}
._21{width:45.032704pt;}
._13{width:47.488000pt;}
._34{width:49.944107pt;}
._15{width:56.731307pt;}
._1e{width:94.389536pt;}
._14{width:96.394667pt;}
._1d{width:97.438408pt;}
._1c{width:117.228192pt;}
._1b{width:118.203837pt;}
._27{width:145.848848pt;}
._23{width:173.349634pt;}
._22{width:211.835825pt;}
._2a{width:302.278872pt;}
._2b{width:316.244129pt;}
._2c{width:603.028907pt;}
._e{width:704.000171pt;}
._f{width:806.887253pt;}
._1{width:1476.825984pt;}
._29{width:1527.086507pt;}
._30{width:1656.123819pt;}
._1a{width:4157.534080pt;}
.fs6{font-size:35.840000pt;}
.fs1a{font-size:40.506360pt;}
.fs26{font-size:40.955907pt;}
.fs1c{font-size:41.896991pt;}
.fs16{font-size:42.593594pt;}
.fs1d{font-size:43.065055pt;}
.fs1f{font-size:43.157792pt;}
.fs17{font-size:47.136103pt;}
.fs1e{font-size:47.657845pt;}
.fs2c{font-size:48.206825pt;}
.fs47{font-size:49.325713pt;}
.fs1b{font-size:49.686169pt;}
.fs33{font-size:49.800000pt;}
.fs4{font-size:49.920000pt;}
.fs5{font-size:50.048000pt;}
.fs18{font-size:51.054899pt;}
.fs19{font-size:52.246425pt;}
.fs20{font-size:52.824733pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs11{font-size:53.413298pt;}
.fs3b{font-size:56.678360pt;}
.fse{font-size:56.960000pt;}
.fs28{font-size:57.808585pt;}
.fs4b{font-size:58.880000pt;}
.fs46{font-size:59.185595pt;}
.fs2b{font-size:59.754690pt;}
.fs13{font-size:59.995283pt;}
.fs25{font-size:60.516484pt;}
.fs3f{font-size:61.920556pt;}
.fs43{font-size:62.974203pt;}
.fs48{font-size:63.429046pt;}
.fs15{font-size:64.000000pt;}
.fs0{font-size:64.128000pt;}
.fs36{font-size:64.758594pt;}
.fs4a{font-size:65.497603pt;}
.fs3a{font-size:68.007988pt;}
.fs39{font-size:68.211772pt;}
.fs22{font-size:68.246703pt;}
.fs3e{font-size:71.634436pt;}
.fs27{font-size:71.656536pt;}
.fs34{font-size:72.101797pt;}
.fs49{font-size:72.598612pt;}
.fs2f{font-size:72.903695pt;}
.fs2d{font-size:73.278145pt;}
.fs32{font-size:73.296679pt;}
.fs14{font-size:73.591797pt;}
.fsf{font-size:74.175432pt;}
.fs3{font-size:74.880000pt;}
.fsc{font-size:75.008000pt;}
.fs12{font-size:75.658676pt;}
.fs40{font-size:75.950925pt;}
.fs41{font-size:75.953387pt;}
.fs31{font-size:77.677910pt;}
.fs37{font-size:79.427108pt;}
.fs38{font-size:79.434600pt;}
.fs42{font-size:80.727512pt;}
.fs3c{font-size:83.388993pt;}
.fs3d{font-size:83.420392pt;}
.fs24{font-size:83.713206pt;}
.fs23{font-size:83.953692pt;}
.fsd{font-size:85.120000pt;}
.fs4e{font-size:85.248000pt;}
.fs29{font-size:87.895797pt;}
.fs10{font-size:95.431837pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs45{font-size:98.980346pt;}
.fs44{font-size:99.022495pt;}
.fs2e{font-size:105.574407pt;}
.fs30{font-size:114.336871pt;}
.fs35{font-size:126.683978pt;}
.fs4f{font-size:128.000000pt;}
.fs4d{font-size:136.448000pt;}
.fsb{font-size:149.120000pt;}
.fs4c{font-size:171.008000pt;}
.fs2a{font-size:192.000000pt;}
.fs21{font-size:192.128000pt;}
.fs1{font-size:213.120000pt;}
.fs2{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:5.024000pt;}
.y16{bottom:6.624000pt;}
.yf5{bottom:7.072000pt;}
.y13{bottom:7.424000pt;}
.y73{bottom:8.043466pt;}
.ye5{bottom:8.751112pt;}
.y10c{bottom:11.534052pt;}
.y82{bottom:13.190099pt;}
.yd4{bottom:13.591032pt;}
.yf2{bottom:13.708057pt;}
.y4d{bottom:15.194771pt;}
.y101{bottom:15.235034pt;}
.y21{bottom:19.520000pt;}
.y90{bottom:21.314370pt;}
.yb1{bottom:24.362512pt;}
.y69{bottom:24.866837pt;}
.y31{bottom:24.928853pt;}
.y1{bottom:27.904000pt;}
.y83{bottom:28.113960pt;}
.y77{bottom:32.296706pt;}
.yc2{bottom:37.544507pt;}
.y6a{bottom:38.284274pt;}
.ya0{bottom:39.127225pt;}
.yc7{bottom:39.169007pt;}
.y104{bottom:39.451537pt;}
.yda{bottom:40.830067pt;}
.y84{bottom:42.058469pt;}
.y40{bottom:43.494181pt;}
.ye9{bottom:44.979258pt;}
.y78{bottom:48.973360pt;}
.y23{bottom:50.147316pt;}
.yf7{bottom:53.313710pt;}
.yf6{bottom:55.200000pt;}
.y85{bottom:55.624421pt;}
.ya3{bottom:58.162467pt;}
.yb6{bottom:58.358015pt;}
.y105{bottom:58.786007pt;}
.yc8{bottom:59.568655pt;}
.y110{bottom:61.472000pt;}
.ydb{bottom:62.253309pt;}
.y4e{bottom:62.392002pt;}
.y103{bottom:62.720000pt;}
.y68{bottom:63.040000pt;}
.y95{bottom:66.651538pt;}
.y60{bottom:69.568000pt;}
.y57{bottom:70.144000pt;}
.y41{bottom:70.393950pt;}
.y5e{bottom:71.808000pt;}
.y138{bottom:72.544000pt;}
.yb2{bottom:72.800000pt;}
.y24{bottom:73.513368pt;}
.y3e{bottom:76.736000pt;}
.yb7{bottom:77.181380pt;}
.yf8{bottom:78.743737pt;}
.ye3{bottom:80.388571pt;}
.ya4{bottom:80.735040pt;}
.y22{bottom:84.000000pt;}
.y79{bottom:88.062249pt;}
.y96{bottom:88.149977pt;}
.y6b{bottom:88.476160pt;}
.ya2{bottom:88.800000pt;}
.y127{bottom:89.216000pt;}
.y86{bottom:91.871098pt;}
.y94{bottom:92.023279pt;}
.y76{bottom:92.640000pt;}
.yb4{bottom:94.720000pt;}
.yc9{bottom:95.294657pt;}
.ye2{bottom:97.732058pt;}
.y120{bottom:98.720000pt;}
.yb0{bottom:101.873144pt;}
.y3d{bottom:103.488000pt;}
.yb5{bottom:107.462201pt;}
.y92{bottom:109.920000pt;}
.y42{bottom:110.290387pt;}
.y25{bottom:113.198411pt;}
.yea{bottom:113.918981pt;}
.y118{bottom:115.424000pt;}
.y4f{bottom:116.991335pt;}
.y81{bottom:117.362942pt;}
.yaf{bottom:119.788870pt;}
.yd9{bottom:119.840000pt;}
.y11f{bottom:121.152000pt;}
.ydc{bottom:123.913502pt;}
.y7a{bottom:127.152938pt;}
.yb8{bottom:127.475265pt;}
.ya5{bottom:127.672873pt;}
.yc6{bottom:128.000000pt;}
.y87{bottom:128.048883pt;}
.y106{bottom:128.529750pt;}
.y3c{bottom:130.048000pt;}
.yca{bottom:131.020659pt;}
.y8f{bottom:134.220443pt;}
.yae{bottom:137.703004pt;}
.y117{bottom:137.826667pt;}
.y97{bottom:138.426726pt;}
.y6c{bottom:138.595177pt;}
.y11e{bottom:143.546667pt;}
.y126{bottom:146.813333pt;}
.y11{bottom:148.480000pt;}
.y43{bottom:150.289464pt;}
.y72{bottom:150.309172pt;}
.y26{bottom:153.007057pt;}
.y3b{bottom:156.773333pt;}
.yf9{bottom:157.995095pt;}
.y116{bottom:160.226667pt;}
.y88{bottom:164.296516pt;}
.y11d{bottom:165.946667pt;}
.yeb{bottom:166.037191pt;}
.y7b{bottom:166.240927pt;}
.ycb{bottom:166.854573pt;}
.y50{bottom:171.588003pt;}
.ya6{bottom:174.488116pt;}
.y125{bottom:175.613333pt;}
.y10{bottom:177.280000pt;}
.yb9{bottom:177.673559pt;}
.y10b{bottom:178.050083pt;}
.yc1{bottom:180.362042pt;}
.y115{bottom:182.626667pt;}
.ydd{bottom:185.464901pt;}
.y11c{bottom:188.346667pt;}
.y98{bottom:188.591268pt;}
.y6d{bottom:188.785170pt;}
.y44{bottom:190.185901pt;}
.y1f{bottom:192.160000pt;}
.y27{bottom:192.692099pt;}
.yf1{bottom:195.141558pt;}
.yd3{bottom:196.213778pt;}
.y107{bottom:198.270864pt;}
.y89{bottom:200.543193pt;}
.ycc{bottom:202.583452pt;}
.y114{bottom:205.026667pt;}
.y7c{bottom:205.399115pt;}
.y3f{bottom:206.033574pt;}
.yf{bottom:206.080000pt;}
.y11b{bottom:210.746667pt;}
.yec{bottom:218.054970pt;}
.y1e{bottom:220.346667pt;}
.ya7{bottom:221.427541pt;}
.y51{bottom:226.087362pt;}
.y113{bottom:227.453333pt;}
.yba{bottom:227.968771pt;}
.y45{bottom:230.086337pt;}
.y28{bottom:232.377142pt;}
.y11a{bottom:233.146667pt;}
.y124{bottom:233.253333pt;}
.ye{bottom:234.880000pt;}
.y8a{bottom:236.790827pt;}
.yfa{bottom:237.246452pt;}
.ycd{bottom:238.309454pt;}
.y99{bottom:238.868017pt;}
.y6e{bottom:238.907026pt;}
.y137{bottom:241.253333pt;}
.ye4{bottom:243.386831pt;}
.y7d{bottom:244.489804pt;}
.y80{bottom:245.232287pt;}
.yde{bottom:247.126605pt;}
.y102{bottom:250.295080pt;}
.y71{bottom:256.369188pt;}
.y7f{bottom:260.489670pt;}
.y9f{bottom:260.593905pt;}
.yc{bottom:260.893333pt;}
.y136{bottom:266.853333pt;}
.y108{bottom:267.913353pt;}
.ya8{bottom:268.242783pt;}
.y46{bottom:270.082748pt;}
.yed{bottom:270.171805pt;}
.y8e{bottom:270.669347pt;}
.y70{bottom:270.924145pt;}
.y29{bottom:272.062184pt;}
.y8b{bottom:272.965741pt;}
.yce{bottom:274.035456pt;}
.y30{bottom:274.781467pt;}
.yb{bottom:276.933333pt;}
.y1d{bottom:277.946667pt;}
.ybb{bottom:278.262656pt;}
.y52{bottom:280.682697pt;}
.y7e{bottom:283.578693pt;}
.y8d{bottom:285.383496pt;}
.y9a{bottom:289.028009pt;}
.y6f{bottom:289.097020pt;}
.ya{bottom:292.933333pt;}
.yc4{bottom:296.488574pt;}
.y4c{bottom:306.682697pt;}
.y1c{bottom:306.746667pt;}
.ydf{bottom:308.673472pt;}
.y9{bottom:308.933333pt;}
.y8c{bottom:309.213375pt;}
.ycf{bottom:309.761458pt;}
.y47{bottom:309.981851pt;}
.y2a{bottom:311.870830pt;}
.ya9{bottom:315.177432pt;}
.yfb{bottom:316.357907pt;}
.y135{bottom:318.080000pt;}
.yee{bottom:322.186832pt;}
.ybc{bottom:328.557868pt;}
.y8{bottom:328.933333pt;}
.y4b{bottom:331.480338pt;}
.y53{bottom:335.279364pt;}
.y1b{bottom:335.586667pt;}
.y109{bottom:337.658411pt;}
.y9b{bottom:339.306275pt;}
.yd0{bottom:345.487460pt;}
.y48{bottom:349.978262pt;}
.y2b{bottom:351.555873pt;}
.y74{bottom:352.986667pt;}
.y4a{bottom:354.077211pt;}
.yaa{bottom:361.995859pt;}
.y134{bottom:369.280000pt;}
.ye0{bottom:370.338198pt;}
.y20{bottom:372.293333pt;}
.y7{bottom:372.453333pt;}
.y39{bottom:373.560629pt;}
.y67{bottom:374.146667pt;}
.yef{bottom:374.303667pt;}
.ybd{bottom:378.752179pt;}
.y10d{bottom:379.383414pt;}
.yc5{bottom:381.241509pt;}
.yd1{bottom:381.321374pt;}
.yf4{bottom:385.451513pt;}
.y9c{bottom:389.583024pt;}
.y49{bottom:389.878698pt;}
.y38{bottom:389.881267pt;}
.y2c{bottom:391.240915pt;}
.yd6{bottom:391.788819pt;}
.y1a{bottom:393.186667pt;}
.yc0{bottom:393.692178pt;}
.y6{bottom:394.853333pt;}
.y133{bottom:394.880000pt;}
.yfc{bottom:395.609264pt;}
.y58{bottom:396.480000pt;}
.y61{bottom:400.186667pt;}
.yf3{bottom:404.543042pt;}
.y37{bottom:406.200258pt;}
.y10a{bottom:407.399525pt;}
.ybf{bottom:408.630850pt;}
.yab{bottom:408.930508pt;}
.y56{bottom:411.840000pt;}
.yd5{bottom:412.730903pt;}
.yd2{bottom:417.047376pt;}
.y5{bottom:417.280000pt;}
.ye6{bottom:419.529454pt;}
.y132{bottom:420.480000pt;}
.y59{bottom:421.146667pt;}
.y36{bottom:422.520896pt;}
.yf0{bottom:426.421877pt;}
.ybe{bottom:429.047392pt;}
.y2d{bottom:430.925958pt;}
.ye1{bottom:431.886575pt;}
.y35{bottom:438.839887pt;}
.y9d{bottom:439.743016pt;}
.y55{bottom:440.666667pt;}
.y119{bottom:445.026667pt;}
.ye7{bottom:445.035472pt;}
.y131{bottom:446.106667pt;}
.y19{bottom:450.786667pt;}
.yc3{bottom:452.553360pt;}
.y34{bottom:455.155581pt;}
.yac{bottom:455.750527pt;}
.y2e{bottom:470.734604pt;}
.y33{bottom:471.476220pt;}
.y130{bottom:471.706667pt;}
.yfd{bottom:474.860622pt;}
.y3a{bottom:479.513763pt;}
.y18{bottom:479.613333pt;}
.y66{bottom:479.933333pt;}
.ye8{bottom:484.480649pt;}
.y32{bottom:487.795210pt;}
.y9e{bottom:490.021281pt;}
.y12f{bottom:497.306667pt;}
.y100{bottom:501.232303pt;}
.yad{bottom:502.685176pt;}
.y17{bottom:508.413333pt;}
.ya1{bottom:508.447647pt;}
.y2f{bottom:510.419647pt;}
.y4{bottom:515.813333pt;}
.yff{bottom:520.607049pt;}
.y12e{bottom:522.906667pt;}
.y65{bottom:529.733333pt;}
.y128{bottom:538.813333pt;}
.y12b{bottom:543.586667pt;}
.y12d{bottom:548.506667pt;}
.y64{bottom:552.133333pt;}
.yfe{bottom:554.108392pt;}
.y123{bottom:566.173333pt;}
.y12a{bottom:567.973333pt;}
.y12c{bottom:574.146667pt;}
.y63{bottom:574.533333pt;}
.y10f{bottom:576.933333pt;}
.y5b{bottom:578.786667pt;}
.y3{bottom:579.840000pt;}
.yd{bottom:591.133333pt;}
.y5d{bottom:591.426667pt;}
.y62{bottom:596.933333pt;}
.y122{bottom:597.893333pt;}
.yd7{bottom:600.960000pt;}
.y10e{bottom:605.733333pt;}
.y111{bottom:607.680000pt;}
.y54{bottom:611.866667pt;}
.y5a{bottom:631.226667pt;}
.y5c{bottom:633.120000pt;}
.y5f{bottom:638.400000pt;}
.y2{bottom:643.840000pt;}
.y91{bottom:665.693333pt;}
.y75{bottom:666.333333pt;}
.y15{bottom:666.946667pt;}
.y121{bottom:667.426667pt;}
.y112{bottom:667.586667pt;}
.yd8{bottom:668.773333pt;}
.yb3{bottom:668.866667pt;}
.y129{bottom:669.120000pt;}
.y93{bottom:669.466667pt;}
.y12{bottom:684.866667pt;}
.h6{height:28.840000pt;}
.h2a{height:42.246867pt;}
.h8{height:42.745000pt;}
.h2c{height:43.697253pt;}
.h25{height:44.423787pt;}
.h7{height:44.840000pt;}
.h2e{height:44.915507pt;}
.h30{height:45.012228pt;}
.h26{height:49.161482pt;}
.h2f{height:49.705643pt;}
.h3f{height:50.278212pt;}
.h5c{height:51.445177pt;}
.h2b{height:51.821122pt;}
.h12{height:52.834688pt;}
.h27{height:53.248664pt;}
.h28{height:54.491389pt;}
.h31{height:55.094546pt;}
.h16{height:55.708401pt;}
.h4c{height:59.113758pt;}
.h61{height:60.288750pt;}
.h3a{height:60.292548pt;}
.h5b{height:61.728726pt;}
.h3e{height:62.322274pt;}
.h4{height:62.521250pt;}
.h1b{height:62.573206pt;}
.h5{height:62.730792pt;}
.h37{height:63.116802pt;}
.h1d{height:63.656250pt;}
.h1{height:63.783562pt;}
.h51{height:64.581204pt;}
.h57{height:65.680126pt;}
.h5d{height:66.154512pt;}
.h46{height:67.541190pt;}
.h5f{height:68.311953pt;}
.h4b{height:70.930206pt;}
.h49{height:71.142747pt;}
.h34{height:71.179178pt;}
.h21{height:74.477812pt;}
.h22{height:74.605125pt;}
.h4f{height:74.712478pt;}
.h39{height:74.735528pt;}
.h54{height:74.879562pt;}
.h5e{height:75.718084pt;}
.h40{height:76.426816pt;}
.h43{height:76.446145pt;}
.h10{height:76.671562pt;}
.h1c{height:76.753944pt;}
.hd{height:76.802625pt;}
.h14{height:77.362657pt;}
.h17{height:78.909635pt;}
.h52{height:79.214441pt;}
.h53{height:79.217009pt;}
.h47{height:82.839991pt;}
.h48{height:82.847805pt;}
.h56{height:84.196272pt;}
.he{height:84.662813pt;}
.h64{height:84.790125pt;}
.h4d{height:86.972114pt;}
.h4e{height:87.004862pt;}
.h20{height:87.156562pt;}
.h36{height:87.310258pt;}
.h35{height:87.561078pt;}
.h3b{height:91.672569pt;}
.ha{height:94.218750pt;}
.hb{height:94.344375pt;}
.h18{height:95.484375pt;}
.h19{height:95.611688pt;}
.h11{height:96.750000pt;}
.h23{height:98.296875pt;}
.h60{height:98.427937pt;}
.h15{height:99.532424pt;}
.h59{height:103.233408pt;}
.h58{height:103.277368pt;}
.h9{height:104.963542pt;}
.h41{height:110.110808pt;}
.h42{height:119.249783pt;}
.h65{height:131.062500pt;}
.h44{height:132.127431pt;}
.h1e{height:132.764375pt;}
.hc{height:141.984375pt;}
.h63{height:162.825000pt;}
.h1f{height:168.678354pt;}
.h3c{height:182.812500pt;}
.h32{height:182.934375pt;}
.hf{height:202.921875pt;}
.h62{height:203.043750pt;}
.h2{height:222.277500pt;}
.h3{height:222.411000pt;}
.h24{height:301.280000pt;}
.h29{height:303.520000pt;}
.h2d{height:330.766040pt;}
.h1a{height:422.926426pt;}
.h5a{height:427.997863pt;}
.h50{height:453.920000pt;}
.h45{height:461.440000pt;}
.h3d{height:490.297799pt;}
.h4a{height:505.600000pt;}
.h13{height:537.920000pt;}
.h38{height:538.399840pt;}
.h33{height:559.976721pt;}
.h55{height:584.480000pt;}
.h0{height:720.000000pt;}
.w5{width:364.155445pt;}
.w4{width:365.760000pt;}
.w6{width:379.200000pt;}
.we{width:497.118457pt;}
.w9{width:532.800000pt;}
.wc{width:555.512926pt;}
.w3{width:561.107764pt;}
.wa{width:585.600000pt;}
.wb{width:594.541936pt;}
.w8{width:639.347271pt;}
.w2{width:686.395916pt;}
.w7{width:690.810055pt;}
.wd{width:717.106110pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x32{left:6.240000pt;}
.x13{left:8.800000pt;}
.x40{left:17.801127pt;}
.x37{left:19.113462pt;}
.x6a{left:20.640000pt;}
.x35{left:22.928152pt;}
.x3b{left:23.922105pt;}
.x1d{left:25.471567pt;}
.x34{left:28.684869pt;}
.x67{left:29.600912pt;}
.x15{left:34.330521pt;}
.x33{left:35.346013pt;}
.x4e{left:36.275805pt;}
.x5e{left:37.307460pt;}
.x6{left:39.903981pt;}
.x3e{left:41.682343pt;}
.x7{left:42.911981pt;}
.x14{left:44.313111pt;}
.x4d{left:46.182567pt;}
.x48{left:47.121485pt;}
.x6d{left:48.911589pt;}
.x1c{left:50.249977pt;}
.x71{left:52.313366pt;}
.x6b{left:53.348924pt;}
.x47{left:55.903412pt;}
.x5b{left:58.880000pt;}
.x6c{left:60.072158pt;}
.x5d{left:64.177845pt;}
.x46{left:65.369645pt;}
.x55{left:66.387546pt;}
.x8{left:72.991981pt;}
.x5c{left:76.806652pt;}
.x12{left:80.639981pt;}
.x45{left:83.508314pt;}
.x74{left:86.943981pt;}
.x51{left:90.751981pt;}
.x4c{left:92.620854pt;}
.x7f{left:96.959981pt;}
.x2a{left:101.247981pt;}
.x31{left:102.687981pt;}
.x2{left:106.367981pt;}
.x75{left:111.935981pt;}
.x26{left:112.863981pt;}
.x4f{left:129.391114pt;}
.x66{left:132.702067pt;}
.x38{left:134.058193pt;}
.x41{left:135.835911pt;}
.x68{left:141.566890pt;}
.x3{left:143.653314pt;}
.x56{left:146.635344pt;}
.x3c{left:156.872076pt;}
.x53{left:160.639981pt;}
.x4a{left:182.290152pt;}
.x5f{left:192.613314pt;}
.x57{left:193.729697pt;}
.x72{left:207.333314pt;}
.x1f{left:219.488841pt;}
.x63{left:221.078645pt;}
.x7d{left:223.066648pt;}
.x27{left:227.613314pt;}
.x44{left:229.826648pt;}
.x36{left:241.578838pt;}
.x58{left:244.604108pt;}
.x64{left:246.004047pt;}
.x16{left:255.402983pt;}
.x50{left:258.555761pt;}
.x52{left:264.506648pt;}
.xb{left:265.666648pt;}
.x73{left:267.653314pt;}
.x78{left:269.306648pt;}
.x6f{left:273.637925pt;}
.x3f{left:296.594023pt;}
.x18{left:308.695324pt;}
.x49{left:319.288202pt;}
.x23{left:320.346648pt;}
.x60{left:339.906648pt;}
.x1e{left:345.807945pt;}
.x5{left:346.946648pt;}
.x42{left:350.106648pt;}
.x10{left:355.546648pt;}
.x11{left:357.186648pt;}
.x59{left:397.832811pt;}
.x62{left:401.112337pt;}
.x65{left:421.281338pt;}
.x2e{left:426.399981pt;}
.x5a{left:429.694881pt;}
.x7a{left:430.653314pt;}
.x6e{left:434.344728pt;}
.x2d{left:435.493314pt;}
.x3a{left:445.986648pt;}
.xf{left:451.106648pt;}
.x30{left:455.546648pt;}
.x2f{left:462.426648pt;}
.x20{left:488.962424pt;}
.x80{left:493.826648pt;}
.x79{left:504.613314pt;}
.x9{left:506.493314pt;}
.x4{left:521.279981pt;}
.x2b{left:534.466648pt;}
.x69{left:537.026648pt;}
.x17{left:555.836608pt;}
.x1{left:609.573314pt;}
.x4b{left:612.640000pt;}
.x61{left:627.040000pt;}
.x2c{left:663.706648pt;}
.x54{left:676.160000pt;}
.x1b{left:709.120000pt;}
.x24{left:723.199981pt;}
.x7e{left:725.306648pt;}
.x76{left:728.479981pt;}
.x77{left:733.213314pt;}
.xd{left:738.239981pt;}
.x70{left:739.200000pt;}
.x43{left:751.933314pt;}
.x19{left:757.213314pt;}
.xe{left:768.319981pt;}
.x1a{left:787.293314pt;}
.x7b{left:818.653314pt;}
.x22{left:841.186648pt;}
.x21{left:847.066648pt;}
.x7c{left:848.733314pt;}
.x3d{left:854.720000pt;}
.x28{left:957.306648pt;}
.x39{left:1003.199981pt;}
.x29{left:1140.799981pt;}
.xc{left:1186.586648pt;}
.xa{left:1189.919981pt;}
.x25{left:1259.199981pt;}
}




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