
    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_2a65631d5fcbd7a137ed74f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_6a77a8bed2dda911b9ad0176.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_696a30cf473f26f6214b1d7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_6cc9cc1ced2f5d457a24ec64.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b1da0811f928d83f73223a37.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.810000;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_32d341d46181a7ec65856ded.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_14ed6298770e26ffd3f2bb15.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690000;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_a50014eda59811a57e9c8b8b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694000;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_32d341d46181a7ec65856ded.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;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_6e5a0607b6345a4368ec3c35.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.804000;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_97209a76515bd1f88f1b03a1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.906000;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_f466b27b850d5a216e51d3ab.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_851243dd5f074c214887cf91.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_667469e6ee03343aa7eaad15.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.836426;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_2de17c16ea44e404a12a20ca.woff2')format("woff");}.fff{font-family:fff;line-height:0.717285;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_d0e40d7b557bd2a52b1e7a38.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.836426;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_26b33eb31333a545211c1825.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2de17c16ea44e404a12a20ca.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.717285;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_40e3ed2168e250f7828fe212.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910000;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_748f693717e35998463185bb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.999000;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_eb8a5b610ab0b2c86fba3bc5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.741699;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_7fbc5d31e0ed62a8585c15a3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2de17c16ea44e404a12a20ca.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.717285;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_9d9442fd4afbcccdaa0f2f9f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.918000;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_97209a76515bd1f88f1b03a1.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.906000;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_d78627c9284fcebd0b0720a7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.947000;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_97209a76515bd1f88f1b03a1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.906000;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_d78627c9284fcebd0b0720a7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.947000;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_d78627c9284fcebd0b0720a7.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.947000;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_97209a76515bd1f88f1b03a1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.906000;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_97209a76515bd1f88f1b03a1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.906000;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;}
.m5{transform:matrix(0.000000,-0.258039,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.258039,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.258039,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.239735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239735,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242211,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.243663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243663,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);}
.m2{transform:matrix(0.265839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265839,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-14.596638px;}
.v4{vertical-align:-5.976000px;}
.v3{vertical-align:-1.911525px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.596638px;}
.v5{vertical-align:22.854000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.001037px;}
.ls30{letter-spacing:0.001242px;}
.ls7{letter-spacing:0.001739px;}
.ls0{letter-spacing:0.002236px;}
.ls2e{letter-spacing:0.003065px;}
.ls2c{letter-spacing:0.003254px;}
.ls14{letter-spacing:0.003866px;}
.ls8{letter-spacing:1.443866px;}
.ls5{letter-spacing:1.449866px;}
.lsc{letter-spacing:1.573760px;}
.ls39{letter-spacing:1.579760px;}
.lsb{letter-spacing:1.933037px;}
.ls15{letter-spacing:2.983219px;}
.ls25{letter-spacing:2.986138px;}
.ls18{letter-spacing:2.989219px;}
.ls1e{letter-spacing:2.992138px;}
.ls17{letter-spacing:3.086300px;}
.ls28{letter-spacing:3.777478px;}
.ls2a{letter-spacing:3.783478px;}
.ls27{letter-spacing:3.786480px;}
.ls29{letter-spacing:5.359760px;}
.ls11{letter-spacing:9.199116px;}
.ls36{letter-spacing:12.055760px;}
.ls38{letter-spacing:12.475760px;}
.ls19{letter-spacing:13.449000px;}
.ls23{letter-spacing:13.450304px;}
.ls13{letter-spacing:13.513760px;}
.ls33{letter-spacing:14.911760px;}
.ls26{letter-spacing:15.025760px;}
.ls1a{letter-spacing:15.356236px;}
.ls22{letter-spacing:15.357478px;}
.ls1f{letter-spacing:15.362236px;}
.ls21{letter-spacing:15.363947px;}
.ls2b{letter-spacing:15.505760px;}
.ls2{letter-spacing:15.591866px;}
.ls12{letter-spacing:15.883739px;}
.ls35{letter-spacing:15.985760px;}
.ls3{letter-spacing:16.159037px;}
.ls1c{letter-spacing:16.435219px;}
.ls6{letter-spacing:16.575866px;}
.ls3b{letter-spacing:16.933760px;}
.lsd{letter-spacing:17.167760px;}
.ls37{letter-spacing:17.233760px;}
.ls3a{letter-spacing:17.389760px;}
.ls31{letter-spacing:17.419760px;}
.lsf{letter-spacing:18.871219px;}
.ls32{letter-spacing:18.985760px;}
.ls10{letter-spacing:19.989947px;}
.ls34{letter-spacing:21.025760px;}
.lse{letter-spacing:22.147760px;}
.ls2d{letter-spacing:22.211731px;}
.ls4{letter-spacing:23.829866px;}
.ls2f{letter-spacing:24.158905px;}
.ls1b{letter-spacing:27.645000px;}
.lsa{letter-spacing:28.911866px;}
.ls9{letter-spacing:29.401037px;}
.ls1d{letter-spacing:112.977000px;}
.ls20{letter-spacing:198.303000px;}
.ls24{letter-spacing:283.635000px;}
.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;}
}
.ws3{word-spacing:-55.291529px;}
.ws16{word-spacing:-13.449000px;}
.ws144{word-spacing:-11.955000px;}
.ws54{word-spacing:-9.579043px;}
.ws89{word-spacing:-9.252912px;}
.wsad{word-spacing:-3.173964px;}
.wsb1{word-spacing:-3.120168px;}
.wsd9{word-spacing:-3.012576px;}
.wsda{word-spacing:-2.958780px;}
.wse{word-spacing:-2.904984px;}
.ws114{word-spacing:-2.869200px;}
.wsf3{word-spacing:-2.773560px;}
.wsd8{word-spacing:-2.689800px;}
.wsdc{word-spacing:-2.582208px;}
.ws111{word-spacing:-2.534460px;}
.ws9{word-spacing:-2.528412px;}
.ws7f{word-spacing:-2.474616px;}
.ws44{word-spacing:-2.420820px;}
.wsee{word-spacing:-2.391000px;}
.ws1a{word-spacing:-2.367024px;}
.ws8c{word-spacing:-2.259432px;}
.ws4f{word-spacing:-2.205636px;}
.ws3f{word-spacing:-2.098044px;}
.ws135{word-spacing:-2.056260px;}
.ws39{word-spacing:-1.990452px;}
.ws13f{word-spacing:-1.817160px;}
.ws105{word-spacing:-1.721520px;}
.ws48{word-spacing:-1.721472px;}
.wsb{word-spacing:-1.667676px;}
.ws12d{word-spacing:-1.625880px;}
.ws46{word-spacing:-1.560084px;}
.ws8b{word-spacing:-1.506288px;}
.wsf{word-spacing:-1.452492px;}
.ws29{word-spacing:-1.398696px;}
.ws22{word-spacing:-1.344900px;}
.ws42{word-spacing:-1.237308px;}
.wsce{word-spacing:-1.183512px;}
.wsef{word-spacing:-1.147680px;}
.wsb3{word-spacing:-1.075920px;}
.ws7e{word-spacing:-1.022124px;}
.ws51{word-spacing:-0.968328px;}
.ws2f{word-spacing:-0.914532px;}
.ws134{word-spacing:-0.860760px;}
.wsa9{word-spacing:-0.860736px;}
.ws101{word-spacing:-0.812940px;}
.wsbb{word-spacing:-0.753144px;}
.ws132{word-spacing:-0.717300px;}
.ws37{word-spacing:-0.699348px;}
.wsae{word-spacing:-0.645552px;}
.ws11b{word-spacing:-0.575520px;}
.ws10{word-spacing:-0.484164px;}
.ws38{word-spacing:-0.430368px;}
.wsf9{word-spacing:-0.334740px;}
.ws4e{word-spacing:-0.322776px;}
.ws81{word-spacing:-0.268980px;}
.ws2b{word-spacing:-0.215184px;}
.wsd2{word-spacing:-0.119712px;}
.wsac{word-spacing:-0.107592px;}
.ws6d{word-spacing:-0.053796px;}
.wsf5{word-spacing:-0.047820px;}
.ws52{word-spacing:-0.045000px;}
.ws53{word-spacing:-0.038316px;}
.ws7a{word-spacing:-0.038231px;}
.ws58{word-spacing:-0.037364px;}
.ws55{word-spacing:-0.036492px;}
.wsf7{word-spacing:-0.001740px;}
.ws56{word-spacing:-0.001200px;}
.ws142{word-spacing:-0.000840px;}
.ws0{word-spacing:0.000000px;}
.ws94{word-spacing:0.000408px;}
.ws95{word-spacing:0.001644px;}
.ws59{word-spacing:0.002880px;}
.ws93{word-spacing:0.006408px;}
.ws96{word-spacing:0.007068px;}
.ws92{word-spacing:0.009780px;}
.ws64{word-spacing:0.053796px;}
.wsa7{word-spacing:0.107592px;}
.ws107{word-spacing:0.143460px;}
.wsc9{word-spacing:0.161388px;}
.ws104{word-spacing:0.191280px;}
.ws11{word-spacing:0.215184px;}
.ws60{word-spacing:0.268980px;}
.wsab{word-spacing:0.322776px;}
.ws113{word-spacing:0.334740px;}
.ws4{word-spacing:0.376572px;}
.ws34{word-spacing:0.430368px;}
.ws9a{word-spacing:0.477576px;}
.ws9b{word-spacing:0.484164px;}
.ws47{word-spacing:0.537960px;}
.ws49{word-spacing:0.591756px;}
.ws115{word-spacing:0.593040px;}
.wse9{word-spacing:0.621660px;}
.wsaf{word-spacing:0.645552px;}
.ws28{word-spacing:0.699348px;}
.ws5e{word-spacing:0.753144px;}
.ws137{word-spacing:0.765120px;}
.ws50{word-spacing:0.806940px;}
.wsc3{word-spacing:0.860736px;}
.wsd{word-spacing:0.968328px;}
.ws36{word-spacing:1.022124px;}
.wsdd{word-spacing:1.075920px;}
.wsd7{word-spacing:1.237308px;}
.wsd4{word-spacing:1.291104px;}
.wse4{word-spacing:1.344900px;}
.wse5{word-spacing:1.398696px;}
.ws26{word-spacing:1.452492px;}
.ws9c{word-spacing:1.506288px;}
.ws33{word-spacing:1.560084px;}
.wsb9{word-spacing:1.613880px;}
.wsf6{word-spacing:1.625880px;}
.ws6b{word-spacing:1.667676px;}
.ws35{word-spacing:1.775268px;}
.ws13b{word-spacing:1.817160px;}
.wsbf{word-spacing:1.829064px;}
.ws79{word-spacing:1.882860px;}
.ws3b{word-spacing:1.936656px;}
.ws62{word-spacing:1.990452px;}
.ws8{word-spacing:2.044248px;}
.ws106{word-spacing:2.104080px;}
.ws84{word-spacing:2.145576px;}
.ws85{word-spacing:2.151840px;}
.wsf8{word-spacing:2.199720px;}
.wsdb{word-spacing:2.205636px;}
.ws121{word-spacing:2.247540px;}
.wscb{word-spacing:2.259432px;}
.ws18{word-spacing:2.313228px;}
.wsd0{word-spacing:2.367024px;}
.wscf{word-spacing:2.392356px;}
.ws2a{word-spacing:2.420820px;}
.ws8a{word-spacing:2.433576px;}
.ws87{word-spacing:2.440356px;}
.wsb7{word-spacing:2.474616px;}
.wsfb{word-spacing:2.486640px;}
.ws77{word-spacing:2.528412px;}
.ws6c{word-spacing:2.568864px;}
.ws1b{word-spacing:2.582208px;}
.wsa5{word-spacing:2.636004px;}
.ws136{word-spacing:2.725740px;}
.ws27{word-spacing:2.743596px;}
.wsb8{word-spacing:2.797392px;}
.ws4b{word-spacing:2.851188px;}
.ws120{word-spacing:2.869200px;}
.ws9e{word-spacing:2.904984px;}
.ws13e{word-spacing:2.917020px;}
.wsba{word-spacing:2.958780px;}
.ws5f{word-spacing:3.012576px;}
.ws45{word-spacing:3.120168px;}
.ws141{word-spacing:3.156120px;}
.wse8{word-spacing:3.173964px;}
.ws19{word-spacing:3.227760px;}
.ws23{word-spacing:3.281556px;}
.ws5d{word-spacing:3.335352px;}
.ws8e{word-spacing:3.337284px;}
.ws9d{word-spacing:3.389148px;}
.wsf2{word-spacing:3.490860px;}
.ws78{word-spacing:3.550536px;}
.wsa{word-spacing:3.711924px;}
.ws110{word-spacing:3.729960px;}
.wsa6{word-spacing:3.765720px;}
.wsfe{word-spacing:3.777780px;}
.ws3e{word-spacing:3.819516px;}
.ws100{word-spacing:3.825600px;}
.ws143{word-spacing:3.873420px;}
.ws4a{word-spacing:3.927108px;}
.wsc{word-spacing:3.980904px;}
.ws14{word-spacing:4.196088px;}
.wsc1{word-spacing:4.249884px;}
.ws127{word-spacing:4.253040px;}
.ws20{word-spacing:4.303680px;}
.ws40{word-spacing:4.357476px;}
.ws145{word-spacing:4.399440px;}
.ws21{word-spacing:4.411272px;}
.wsc2{word-spacing:4.465068px;}
.wsa8{word-spacing:4.572660px;}
.wsb2{word-spacing:4.626456px;}
.ws25{word-spacing:4.680252px;}
.ws3a{word-spacing:4.734048px;}
.ws125{word-spacing:4.734180px;}
.wsb6{word-spacing:4.787844px;}
.wscd{word-spacing:4.841640px;}
.ws13{word-spacing:4.895436px;}
.ws12e{word-spacing:4.925460px;}
.ws5a{word-spacing:4.949232px;}
.ws24{word-spacing:5.003028px;}
.ws12f{word-spacing:5.021100px;}
.ws8d{word-spacing:5.033282px;}
.wsd1{word-spacing:5.056824px;}
.ws10c{word-spacing:5.212380px;}
.ws2e{word-spacing:5.218212px;}
.ws15{word-spacing:5.272008px;}
.ws4d{word-spacing:5.325804px;}
.ws12{word-spacing:5.433396px;}
.ws2c{word-spacing:5.487192px;}
.ws31{word-spacing:5.540988px;}
.ws30{word-spacing:5.648580px;}
.ws91{word-spacing:5.756172px;}
.wsb4{word-spacing:5.774748px;}
.ws130{word-spacing:5.881860px;}
.wsa4{word-spacing:5.917560px;}
.wsd3{word-spacing:5.971356px;}
.ws12a{word-spacing:5.977500px;}
.ws5{word-spacing:6.132744px;}
.ws41{word-spacing:6.186540px;}
.wse7{word-spacing:6.240336px;}
.ws7{word-spacing:6.294132px;}
.wsfa{word-spacing:6.551340px;}
.wsde{word-spacing:6.563112px;}
.ws11d{word-spacing:6.646980px;}
.wsb5{word-spacing:6.670704px;}
.ws32{word-spacing:6.832092px;}
.ws1e{word-spacing:6.885888px;}
.ws3d{word-spacing:6.939684px;}
.ws86{word-spacing:7.101072px;}
.wsca{word-spacing:7.208664px;}
.ws61{word-spacing:7.262460px;}
.wsbe{word-spacing:7.316256px;}
.ws126{word-spacing:7.364280px;}
.ws82{word-spacing:7.423848px;}
.wsf0{word-spacing:7.507740px;}
.wse6{word-spacing:7.531440px;}
.ws3c{word-spacing:7.692828px;}
.ws1f{word-spacing:7.746624px;}
.wsb0{word-spacing:7.854216px;}
.ws109{word-spacing:7.890300px;}
.ws146{word-spacing:8.368500px;}
.ws10e{word-spacing:8.496240px;}
.ws2d{word-spacing:8.499768px;}
.ws6{word-spacing:8.553564px;}
.wsc5{word-spacing:8.607360px;}
.ws1d{word-spacing:8.714952px;}
.ws69{word-spacing:8.822544px;}
.wsc6{word-spacing:8.876340px;}
.ws68{word-spacing:8.930136px;}
.ws67{word-spacing:8.939736px;}
.wsf4{word-spacing:9.133620px;}
.ws6e{word-spacing:9.145320px;}
.ws124{word-spacing:9.277080px;}
.ws112{word-spacing:9.372720px;}
.wsed{word-spacing:9.516180px;}
.wsbd{word-spacing:9.575688px;}
.ws1c{word-spacing:9.683280px;}
.ws10d{word-spacing:9.755280px;}
.ws129{word-spacing:9.803100px;}
.ws43{word-spacing:9.898464px;}
.ws13c{word-spacing:9.994380px;}
.ws140{word-spacing:10.042200px;}
.wseb{word-spacing:10.470060px;}
.ws11a{word-spacing:10.711680px;}
.ws11e{word-spacing:11.046420px;}
.ws102{word-spacing:11.094240px;}
.ws98{word-spacing:11.158178px;}
.ws11c{word-spacing:11.333340px;}
.wsea{word-spacing:11.811540px;}
.ws57{word-spacing:11.907180px;}
.ws103{word-spacing:12.050640px;}
.ws72{word-spacing:12.265488px;}
.ws71{word-spacing:12.319284px;}
.ws116{word-spacing:12.481020px;}
.wsbc{word-spacing:12.642060px;}
.ws138{word-spacing:12.672300px;}
.wsfd{word-spacing:12.959220px;}
.ws6a{word-spacing:13.180020px;}
.ws5c{word-spacing:13.395204px;}
.wsc7{word-spacing:13.420134px;}
.ws12c{word-spacing:13.437420px;}
.ws99{word-spacing:13.900134px;}
.ws74{word-spacing:13.986960px;}
.ws75{word-spacing:14.019576px;}
.ws73{word-spacing:14.039136px;}
.wsaa{word-spacing:14.094552px;}
.ws108{word-spacing:14.106900px;}
.wsc8{word-spacing:14.122134px;}
.ws122{word-spacing:14.154720px;}
.wsfc{word-spacing:14.393820px;}
.ws117{word-spacing:14.585100px;}
.wsa0{word-spacing:15.009084px;}
.ws63{word-spacing:15.022301px;}
.ws65{word-spacing:15.025451px;}
.ws70{word-spacing:15.224268px;}
.ws6f{word-spacing:15.278064px;}
.wse2{word-spacing:15.331860px;}
.wsff{word-spacing:15.684960px;}
.wscc{word-spacing:15.694134px;}
.ws80{word-spacing:15.844134px;}
.ws4c{word-spacing:15.869820px;}
.ws128{word-spacing:16.163160px;}
.ws9f{word-spacing:16.300188px;}
.wsc0{word-spacing:17.650134px;}
.ws131{word-spacing:17.789040px;}
.ws1{word-spacing:17.860770px;}
.ws133{word-spacing:18.123780px;}
.ws97{word-spacing:18.309996px;}
.ws5b{word-spacing:18.344436px;}
.wsc4{word-spacing:18.352134px;}
.wsdf{word-spacing:19.312764px;}
.wsf1{word-spacing:19.414920px;}
.ws90{word-spacing:19.748862px;}
.ws10a{word-spacing:19.797480px;}
.ws88{word-spacing:19.904520px;}
.wse1{word-spacing:20.334888px;}
.ws10f{word-spacing:20.419140px;}
.ws83{word-spacing:20.866134px;}
.ws123{word-spacing:21.184260px;}
.ws139{word-spacing:21.375540px;}
.ws8f{word-spacing:21.827282px;}
.ws13d{word-spacing:21.901560px;}
.ws118{word-spacing:21.997200px;}
.wsec{word-spacing:22.379760px;}
.ws66{word-spacing:22.636301px;}
.ws12b{word-spacing:22.666680px;}
.ws11f{word-spacing:22.953600px;}
.ws10b{word-spacing:23.623080px;}
.ws17{word-spacing:25.105500px;}
.ws2{word-spacing:32.223804px;}
.wse0{word-spacing:32.707968px;}
.ws119{word-spacing:33.904380px;}
.ws76{word-spacing:41.960880px;}
.ws7c{word-spacing:57.946354px;}
.wsa1{word-spacing:58.261068px;}
.ws7d{word-spacing:59.230646px;}
.ws13a{word-spacing:67.474020px;}
.wse3{word-spacing:71.710068px;}
.ws7b{word-spacing:91.692941px;}
.wsa3{word-spacing:123.999780px;}
.wsa2{word-spacing:124.026000px;}
.wsd5{word-spacing:124.032000px;}
.wsd6{word-spacing:137.448780px;}
._17{margin-left:-1630.809000px;}
._3{margin-left:-9.468360px;}
._1e{margin-left:-8.360344px;}
._4{margin-left:-6.670890px;}
._3e{margin-left:-5.492484px;}
._0{margin-left:-4.303800px;}
._2{margin-left:-3.012660px;}
._1{margin-left:-1.549368px;}
._1a{width:1.470188px;}
._19{width:3.066372px;}
._18{width:5.185660px;}
._1b{width:6.612444px;}
._2e{width:10.845360px;}
._c{width:12.620628px;}
._20{width:13.685946px;}
._a{width:14.847696px;}
._b{width:16.515372px;}
._8{width:18.183048px;}
._15{width:19.312764px;}
._10{width:21.034236px;}
._7{width:22.755708px;}
._11{width:23.939220px;}
._6{width:25.015224px;}
._d{width:26.360040px;}
._16{width:27.435960px;}
._9{width:28.512000px;}
._14{width:30.071964px;}
._e{width:31.567536px;}
._12{width:32.976948px;}
._3d{width:34.537032px;}
._29{width:35.666832px;}
._13{width:36.957852px;}
._1f{width:38.840712px;}
._f{width:40.454592px;}
._5{width:42.337452px;}
._3f{width:47.819880px;}
._38{width:55.343592px;}
._2b{width:66.933706px;}
._30{width:83.652780px;}
._2a{width:90.628450px;}
._2c{width:93.824499px;}
._36{width:111.328308px;}
._3b{width:123.987689px;}
._34{width:125.483193px;}
._32{width:129.271788px;}
._24{width:137.448780px;}
._35{width:139.385436px;}
._37{width:141.775346px;}
._1c{width:144.906447px;}
._3a{width:150.326085px;}
._2d{width:152.104167px;}
._33{width:157.299504px;}
._21{width:163.260144px;}
._28{width:171.394056px;}
._31{width:173.707284px;}
._2f{width:175.202856px;}
._27{width:186.295548px;}
._39{width:199.142076px;}
._3c{width:204.526248px;}
._23{width:210.987912px;}
._26{width:214.377060px;}
._25{width:239.015628px;}
._1d{width:252.618948px;}
._22{width:255.423408px;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:21.894956px;}
.fsb{font-size:22.418623px;}
.fsc{font-size:22.938316px;}
.fs13{font-size:31.975160px;}
.fs10{font-size:35.527068px;}
.fse{font-size:35.868000px;}
.fs5{font-size:36.491594px;}
.fsf{font-size:37.362000px;}
.fsa{font-size:37.364372px;}
.fs12{font-size:37.863879px;}
.fsd{font-size:38.230527px;}
.fs6{font-size:38.316174px;}
.fs11{font-size:39.081462px;}
.fs4{font-size:45.000000px;}
.fs8{font-size:45.614492px;}
.fs9{font-size:47.820000px;}
.fs2{font-size:53.796000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:71.730000px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y71{bottom:1.368445px;}
.y7c{bottom:1.401162px;}
.yb2{bottom:2.867284px;}
.y111{bottom:5.551243px;}
.yb1{bottom:5.734574px;}
.y70{bottom:12.315923px;}
.y7b{bottom:12.610474px;}
.y110{bottom:18.430127px;}
.ya5{bottom:26.283478px;}
.y112{bottom:27.645191px;}
.yaf{bottom:28.195005px;}
.ya2{bottom:29.150775px;}
.y67{bottom:34.500000px;}
.y7a{bottom:44.370198px;}
.y113{bottom:54.419147px;}
.y79{bottom:55.579510px;}
.yab{bottom:79.328338px;}
.yae{bottom:85.062918px;}
.ya1{bottom:86.018676px;}
.y6d{bottom:87.123687px;}
.ya9{bottom:88.885971px;}
.y118{bottom:88.930915px;}
.y114{bottom:94.580304px;}
.ya8{bottom:100.355129px;}
.y77{bottom:102.284972px;}
.ya4{bottom:105.611824px;}
.yb3{bottom:109.912760px;}
.y72{bottom:109.930929px;}
.y78{bottom:111.626066px;}
.yad{bottom:111.824283px;}
.ya7{bottom:111.824287px;}
.ya0{bottom:112.780048px;}
.y76{bottom:113.494284px;}
.y6f{bottom:123.615279px;}
.y115{bottom:130.262984px;}
.y73{bottom:132.282032px;}
.ya3{bottom:133.806837px;}
.y6e{bottom:134.562757px;}
.yac{bottom:135.240482px;}
.y9f{bottom:136.196246px;}
.yb0{bottom:152.444219px;}
.y37{bottom:152.632500px;}
.y7d{bottom:153.193928px;}
.yaa{bottom:153.877864px;}
.ya6{bottom:155.311508px;}
.y1d9{bottom:166.120500px;}
.y36{bottom:168.249000px;}
.y6c{bottom:169.229770px;}
.y116{bottom:173.472084px;}
.y1d8{bottom:179.607000px;}
.y6b{bottom:180.177248px;}
.y9d{bottom:181.514700px;}
.y35{bottom:183.865500px;}
.y151{bottom:185.855620px;}
.y11f{bottom:186.521769px;}
.y149{bottom:190.018650px;}
.y1d7{bottom:193.093500px;}
.y176{bottom:194.270550px;}
.y150{bottom:196.180932px;}
.y11e{bottom:196.847081px;}
.y9c{bottom:197.131200px;}
.y66{bottom:199.482000px;}
.y34{bottom:199.905000px;}
.y148{bottom:205.635150px;}
.y14f{bottom:206.506244px;}
.y11d{bottom:207.172393px;}
.y175{bottom:209.887050px;}
.y1d6{bottom:212.452500px;}
.y9b{bottom:212.747700px;}
.y65{bottom:215.098500px;}
.y33{bottom:215.521500px;}
.y14e{bottom:216.831556px;}
.y11c{bottom:217.497706px;}
.y179{bottom:220.495377px;}
.y147{bottom:221.251650px;}
.y10e{bottom:223.416600px;}
.y174{bottom:225.503550px;}
.y1d5{bottom:225.939000px;}
.y14d{bottom:227.156869px;}
.y11b{bottom:227.823018px;}
.y9a{bottom:228.364200px;}
.y64{bottom:230.715000px;}
.y178{bottom:230.820689px;}
.y32{bottom:231.138000px;}
.y117{bottom:231.251199px;}
.y198{bottom:233.323050px;}
.y146{bottom:236.868150px;}
.y14c{bottom:237.482181px;}
.y11a{bottom:238.148330px;}
.y10d{bottom:239.033100px;}
.y1d4{bottom:239.425500px;}
.y177{bottom:241.146001px;}
.y173{bottom:243.508050px;}
.y99{bottom:243.980700px;}
.y63{bottom:246.330000px;}
.y31{bottom:246.754500px;}
.y14b{bottom:247.807493px;}
.y119{bottom:248.473642px;}
.y145{bottom:252.484650px;}
.y1d3{bottom:252.912000px;}
.y10c{bottom:254.649600px;}
.y172{bottom:259.124550px;}
.y98{bottom:259.597200px;}
.y62{bottom:261.946500px;}
.y30{bottom:262.369500px;}
.y144{bottom:268.101150px;}
.y197{bottom:268.825050px;}
.y10b{bottom:270.266100px;}
.y1d2{bottom:272.271000px;}
.y171{bottom:274.741050px;}
.y97{bottom:275.213700px;}
.y61{bottom:277.563000px;}
.y2f{bottom:277.986000px;}
.y143{bottom:283.717650px;}
.y196{bottom:284.440050px;}
.y1d1{bottom:285.757500px;}
.y10a{bottom:285.882600px;}
.y170{bottom:290.357550px;}
.y96{bottom:290.830200px;}
.y60{bottom:293.179500px;}
.y2e{bottom:293.602500px;}
.yda{bottom:293.998200px;}
.y1d0{bottom:299.244000px;}
.y142{bottom:299.334150px;}
.y195{bottom:300.056550px;}
.y109{bottom:301.499100px;}
.y16f{bottom:305.974050px;}
.y5f{bottom:308.796000px;}
.y2d{bottom:309.219000px;}
.yd9{bottom:309.662700px;}
.y95{bottom:309.935700px;}
.y1cf{bottom:312.732000px;}
.y141{bottom:314.950650px;}
.y194{bottom:315.673050px;}
.y108{bottom:317.115600px;}
.y16e{bottom:321.590550px;}
.y2c{bottom:324.835500px;}
.yd8{bottom:325.279200px;}
.y94{bottom:325.552200px;}
.y193{bottom:331.289550px;}
.y1ce{bottom:332.089500px;}
.y107{bottom:332.732100px;}
.y140{bottom:332.881650px;}
.y5e{bottom:335.413500px;}
.y16d{bottom:337.207050px;}
.y2b{bottom:340.452000px;}
.yd7{bottom:340.895700px;}
.y93{bottom:341.168700px;}
.y1cd{bottom:345.576000px;}
.y192{bottom:346.906050px;}
.y106{bottom:348.348600px;}
.y13f{bottom:348.498150px;}
.y16c{bottom:352.823550px;}
.y2a{bottom:356.068500px;}
.y92{bottom:356.783700px;}
.yd6{bottom:358.006200px;}
.y1cc{bottom:359.064000px;}
.y191{bottom:362.522550px;}
.y105{bottom:363.965100px;}
.y13e{bottom:364.114650px;}
.y16b{bottom:368.440050px;}
.y29{bottom:371.685000px;}
.y91{bottom:372.400200px;}
.y1cb{bottom:372.550500px;}
.yd5{bottom:373.622700px;}
.y5d{bottom:374.097000px;}
.y190{bottom:378.139050px;}
.y104{bottom:379.581600px;}
.y13d{bottom:379.731150px;}
.y16a{bottom:384.056550px;}
.y28{bottom:387.301500px;}
.y90{bottom:388.016700px;}
.yd4{bottom:389.239200px;}
.y5c{bottom:389.713500px;}
.y1ca{bottom:391.908000px;}
.y18f{bottom:393.755550px;}
.y13c{bottom:395.347650px;}
.y169{bottom:399.673050px;}
.y27{bottom:402.918000px;}
.y8f{bottom:403.633200px;}
.y103{bottom:404.739600px;}
.yd3{bottom:404.855700px;}
.y5b{bottom:405.330000px;}
.y1c9{bottom:405.396000px;}
.y18e{bottom:409.372050px;}
.y13b{bottom:410.964150px;}
.y168{bottom:415.289550px;}
.y1c8{bottom:418.882500px;}
.y26{bottom:418.957500px;}
.y8e{bottom:419.249700px;}
.y102{bottom:420.356100px;}
.yd2{bottom:420.470700px;}
.y5a{bottom:420.946500px;}
.y18d{bottom:424.988550px;}
.y13a{bottom:426.580650px;}
.y167{bottom:433.294050px;}
.y25{bottom:434.572500px;}
.y8d{bottom:434.866200px;}
.y101{bottom:435.972600px;}
.yd1{bottom:436.087200px;}
.y59{bottom:436.563000px;}
.y1c7{bottom:438.240000px;}
.y18c{bottom:440.605050px;}
.y139{bottom:442.195650px;}
.y166{bottom:448.910550px;}
.y24{bottom:450.189000px;}
.y100{bottom:451.587600px;}
.yd0{bottom:451.703700px;}
.y1c6{bottom:451.728000px;}
.y58{bottom:452.179500px;}
.y18b{bottom:456.221550px;}
.y138{bottom:457.812150px;}
.y8c{bottom:461.779200px;}
.y165{bottom:464.527050px;}
.y1c5{bottom:465.214500px;}
.y23{bottom:465.805500px;}
.yff{bottom:467.204100px;}
.ycf{bottom:467.320200px;}
.y57{bottom:470.988000px;}
.y18a{bottom:471.838050px;}
.y137{bottom:473.428650px;}
.y1c4{bottom:478.701000px;}
.y164{bottom:480.143550px;}
.y22{bottom:481.422000px;}
.yfe{bottom:482.820600px;}
.yce{bottom:486.577200px;}
.y56{bottom:486.604500px;}
.y189{bottom:487.454550px;}
.y136{bottom:489.045150px;}
.y163{bottom:495.758550px;}
.y8b{bottom:496.501200px;}
.y21{bottom:497.038500px;}
.y1c3{bottom:498.060000px;}
.yfd{bottom:498.437100px;}
.ycd{bottom:502.193700px;}
.y55{bottom:502.221000px;}
.y188{bottom:503.069550px;}
.y135{bottom:504.661650px;}
.y162{bottom:511.375050px;}
.y1c2{bottom:511.546500px;}
.y8a{bottom:512.117700px;}
.y20{bottom:512.655000px;}
.yfc{bottom:514.053600px;}
.y54{bottom:517.837500px;}
.y187{bottom:518.686050px;}
.y134{bottom:522.592650px;}
.y1c1{bottom:525.033000px;}
.y161{bottom:526.991550px;}
.y89{bottom:527.734200px;}
.y1f{bottom:528.271500px;}
.yfb{bottom:529.670100px;}
.y53{bottom:533.454000px;}
.y186{bottom:534.302550px;}
.y133{bottom:538.209150px;}
.ycc{bottom:538.496250px;}
.y160{bottom:542.608050px;}
.y88{bottom:543.350700px;}
.y1e{bottom:543.888000px;}
.y1c0{bottom:544.392000px;}
.yfa{bottom:545.286600px;}
.y52{bottom:549.070500px;}
.y132{bottom:553.825650px;}
.ycb{bottom:554.112750px;}
.y185{bottom:557.738550px;}
.y1bf{bottom:557.878500px;}
.y15f{bottom:558.224550px;}
.y87{bottom:558.967200px;}
.y1d{bottom:559.504500px;}
.yf9{bottom:560.903100px;}
.y51{bottom:564.687000px;}
.y131{bottom:569.442150px;}
.yca{bottom:569.729250px;}
.y1be{bottom:571.365000px;}
.y15e{bottom:573.841050px;}
.y86{bottom:574.583700px;}
.y1c{bottom:575.121000px;}
.yf8{bottom:576.519600px;}
.y1ff{bottom:578.112000px;}
.y50{bottom:580.303500px;}
.y1bd{bottom:584.851500px;}
.y130{bottom:585.058650px;}
.yc9{bottom:585.345750px;}
.y85{bottom:590.200200px;}
.y1b{bottom:590.737500px;}
.y1fe{bottom:591.598500px;}
.yf7{bottom:592.136100px;}
.y184{bottom:593.240550px;}
.y4f{bottom:595.920000px;}
.y12f{bottom:600.675150px;}
.yc8{bottom:600.962250px;}
.y1bc{bottom:604.210500px;}
.y1fd{bottom:605.085000px;}
.y84{bottom:605.816700px;}
.yf6{bottom:607.752600px;}
.y183{bottom:608.855550px;}
.y4e{bottom:611.536500px;}
.y1a{bottom:614.584500px;}
.y12e{bottom:616.291650px;}
.yc7{bottom:616.578750px;}
.y1bb{bottom:617.697000px;}
.y1fc{bottom:618.571500px;}
.y83{bottom:621.431700px;}
.yf5{bottom:623.369100px;}
.y182{bottom:624.472050px;}
.y4d{bottom:627.153000px;}
.y15d{bottom:628.112850px;}
.y1ba{bottom:631.185000px;}
.y12d{bottom:631.908150px;}
.yc6{bottom:632.195250px;}
.y1fb{bottom:638.037000px;}
.yf4{bottom:638.985600px;}
.y181{bottom:640.088550px;}
.y82{bottom:640.537200px;}
.y4c{bottom:642.769500px;}
.y1b9{bottom:644.671500px;}
.y15c{bottom:646.199850px;}
.y12c{bottom:647.524650px;}
.yc5{bottom:647.811750px;}
.y19{bottom:650.499000px;}
.yf3{bottom:654.602100px;}
.y180{bottom:655.705050px;}
.y81{bottom:656.153700px;}
.y1fa{bottom:657.501000px;}
.y1b8{bottom:658.158000px;}
.y4b{bottom:658.384500px;}
.y12b{bottom:663.141150px;}
.yc4{bottom:663.428250px;}
.y15b{bottom:664.288350px;}
.y18{bottom:666.115500px;}
.yf2{bottom:670.218600px;}
.y1f9{bottom:670.987500px;}
.y4a{bottom:674.001000px;}
.y1b7{bottom:677.517000px;}
.y12a{bottom:678.757650px;}
.yc3{bottom:679.044750px;}
.y17{bottom:682.153500px;}
.y15a{bottom:682.376850px;}
.yf1{bottom:685.833600px;}
.y49{bottom:689.617500px;}
.y1f8{bottom:690.453000px;}
.y1b6{bottom:691.003500px;}
.y129{bottom:694.374150px;}
.yc2{bottom:697.674750px;}
.y16{bottom:697.770000px;}
.y80{bottom:699.892350px;}
.y159{bottom:700.463850px;}
.y1f7{bottom:703.939500px;}
.y1b5{bottom:704.490000px;}
.y17f{bottom:705.220350px;}
.y48{bottom:705.234000px;}
.y128{bottom:709.990650px;}
.yf0{bottom:710.296650px;}
.yc1{bottom:713.291250px;}
.y15{bottom:713.386500px;}
.y7f{bottom:715.508850px;}
.y1f6{bottom:717.426000px;}
.y158{bottom:718.552350px;}
.y47{bottom:720.850500px;}
.y17e{bottom:723.308850px;}
.y1b4{bottom:723.849000px;}
.y127{bottom:725.607150px;}
.yc0{bottom:728.907750px;}
.y14{bottom:729.003000px;}
.y1f5{bottom:730.912500px;}
.y46{bottom:736.467000px;}
.y157{bottom:736.640850px;}
.y1b3{bottom:737.335500px;}
.y7e{bottom:737.808000px;}
.y126{bottom:741.222150px;}
.y17d{bottom:741.395850px;}
.ybf{bottom:744.524250px;}
.y13{bottom:744.619500px;}
.y1f4{bottom:750.378000px;}
.y1b2{bottom:750.822000px;}
.y45{bottom:752.083500px;}
.y75{bottom:754.353728px;}
.y156{bottom:754.727850px;}
.yef{bottom:755.329650px;}
.y125{bottom:756.838650px;}
.y17c{bottom:759.484350px;}
.y12{bottom:760.236000px;}
.ybe{bottom:763.154250px;}
.y1f3{bottom:763.864500px;}
.y44{bottom:767.700000px;}
.y1b1{bottom:770.181000px;}
.yee{bottom:770.946150px;}
.y124{bottom:772.455150px;}
.y11{bottom:775.852500px;}
.y1f2{bottom:777.351000px;}
.ybd{bottom:778.770750px;}
.y43{bottom:783.316500px;}
.y1b0{bottom:783.667500px;}
.y155{bottom:785.133450px;}
.yed{bottom:786.562650px;}
.y123{bottom:788.071650px;}
.y17b{bottom:789.889950px;}
.y10{bottom:791.469000px;}
.ybc{bottom:794.387250px;}
.y1f1{bottom:796.815000px;}
.y1af{bottom:797.154000px;}
.y154{bottom:800.749950px;}
.y42{bottom:802.125000px;}
.yec{bottom:802.179150px;}
.y17a{bottom:805.506450px;}
.yf{bottom:807.085500px;}
.ybb{bottom:810.003750px;}
.y1f0{bottom:810.303000px;}
.y122{bottom:813.811650px;}
.y1ae{bottom:816.513000px;}
.y41{bottom:817.741500px;}
.yeb{bottom:817.795650px;}
.ye{bottom:822.702000px;}
.y1ef{bottom:823.789500px;}
.yba{bottom:825.620250px;}
.y1ad{bottom:829.999500px;}
.y40{bottom:833.358000px;}
.yea{bottom:833.412150px;}
.y1ee{bottom:837.276000px;}
.yd{bottom:838.318500px;}
.y153{bottom:839.076450px;}
.yb9{bottom:841.236750px;}
.y1ac{bottom:843.486000px;}
.y3f{bottom:848.974500px;}
.ye9{bottom:849.028650px;}
.yc{bottom:853.935000px;}
.y152{bottom:854.692950px;}
.y121{bottom:855.202650px;}
.y1ed{bottom:856.740000px;}
.yb8{bottom:856.851750px;}
.y1ab{bottom:862.845000px;}
.y3e{bottom:864.591000px;}
.ye8{bottom:864.645150px;}
.yb{bottom:869.551500px;}
.y1ec{bottom:870.228000px;}
.y120{bottom:870.819150px;}
.y14a{bottom:872.064011px;}
.yb7{bottom:872.468250px;}
.y1aa{bottom:876.331500px;}
.y3d{bottom:880.207500px;}
.ye7{bottom:880.261650px;}
.y1eb{bottom:883.714500px;}
.ya{bottom:885.168000px;}
.y10f{bottom:888.190269px;}
.y1a9{bottom:889.818000px;}
.y3c{bottom:895.824000px;}
.yb6{bottom:898.907250px;}
.y9{bottom:900.783000px;}
.ye6{bottom:902.598750px;}
.y1ea{bottom:903.178500px;}
.y1a8{bottom:903.304500px;}
.y3b{bottom:911.440500px;}
.y8{bottom:916.399500px;}
.y1e9{bottom:916.666500px;}
.y1a7{bottom:922.663500px;}
.y3a{bottom:927.057000px;}
.y1e8{bottom:930.153000px;}
.y7{bottom:932.016000px;}
.y1a6{bottom:936.150000px;}
.yb5{bottom:937.444350px;}
.y74{bottom:941.575500px;}
.y39{bottom:942.673500px;}
.y1e7{bottom:943.639500px;}
.y1a5{bottom:949.636500px;}
.ye5{bottom:953.286600px;}
.y6a{bottom:957.528617px;}
.y38{bottom:958.288500px;}
.y6{bottom:958.290000px;}
.yb4{bottom:962.860500px;}
.y1e6{bottom:963.103500px;}
.y1a4{bottom:968.995500px;}
.ye4{bottom:971.375100px;}
.y1e5{bottom:976.591500px;}
.y1a3{bottom:982.482000px;}
.y9e{bottom:987.454415px;}
.ye3{bottom:989.462100px;}
.y1e4{bottom:990.078000px;}
.y1a2{bottom:995.968500px;}
.y1e3{bottom:1003.564500px;}
.y5{bottom:1004.989500px;}
.ye2{bottom:1007.550600px;}
.y1a1{bottom:1015.327500px;}
.y1e2{bottom:1017.051000px;}
.y4{bottom:1025.089500px;}
.ye1{bottom:1025.639100px;}
.y1a0{bottom:1028.814000px;}
.y1e1{bottom:1036.516500px;}
.y19f{bottom:1042.300500px;}
.ye0{bottom:1043.726100px;}
.y3{bottom:1044.964500px;}
.y1e0{bottom:1050.003000px;}
.y19e{bottom:1061.659500px;}
.ydf{bottom:1061.814600px;}
.y1df{bottom:1063.489500px;}
.y19d{bottom:1075.146000px;}
.y1de{bottom:1076.976000px;}
.yde{bottom:1079.903100px;}
.y2{bottom:1081.278000px;}
.y19c{bottom:1088.632500px;}
.y1dd{bottom:1096.441500px;}
.y19b{bottom:1102.120500px;}
.ydd{bottom:1109.682000px;}
.y1dc{bottom:1109.928000px;}
.y19a{bottom:1115.607000px;}
.y1{bottom:1122.075000px;}
.y1db{bottom:1123.414500px;}
.ydc{bottom:1125.298500px;}
.y1da{bottom:1136.901000px;}
.y199{bottom:1136.902500px;}
.ydb{bottom:1140.915000px;}
.y69{bottom:1195.335000px;}
.y68{bottom:1217.835000px;}
.h15{height:16.610119px;}
.h1c{height:23.309892px;}
.hc{height:24.731608px;}
.h11{height:25.323120px;}
.h19{height:25.899232px;}
.h16{height:26.544829px;}
.h1b{height:27.602768px;}
.h1a{height:28.490386px;}
.he{height:30.825419px;}
.h1e{height:32.804520px;}
.hf{height:32.900160px;}
.h1d{height:33.140160px;}
.h12{height:36.904056px;}
.h7{height:37.011648px;}
.h8{height:37.334424px;}
.h13{height:37.926180px;}
.h5{height:40.347000px;}
.hd{height:40.489989px;}
.ha{height:40.560000px;}
.h9{height:41.280000px;}
.h17{height:48.463752px;}
.h3{height:49.206780px;}
.h4{height:49.350240px;}
.h6{height:49.780620px;}
.h2{height:59.736744px;}
.h14{height:164.391259px;}
.h10{height:166.738513px;}
.hb{height:194.317741px;}
.h18{height:279.782653px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:339.661043px;}
.w3{width:339.705229px;}
.w4{width:346.902042px;}
.w5{width:361.421361px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:5.536441px;}
.x14{left:6.828509px;}
.x1b{left:12.835170px;}
.x1a{left:14.519107px;}
.x24{left:33.703517px;}
.x35{left:45.930631px;}
.x34{left:51.093794px;}
.xc{left:54.000000px;}
.x32{left:67.121110px;}
.x29{left:71.789136px;}
.x38{left:75.769501px;}
.x7{left:86.400000px;}
.x43{left:92.377500px;}
.x30{left:99.133500px;}
.x8{left:108.816000px;}
.x44{left:113.790000px;}
.x33{left:115.203059px;}
.x2f{left:116.248500px;}
.x28{left:118.989816px;}
.x12{left:120.356821px;}
.x11{left:122.086524px;}
.x20{left:124.722000px;}
.x3b{left:136.678500px;}
.x1{left:140.514000px;}
.x3a{left:142.636500px;}
.x18{left:146.489933px;}
.x25{left:155.586093px;}
.x19{left:157.885500px;}
.x26{left:160.168683px;}
.x3c{left:172.965937px;}
.x3{left:174.579000px;}
.x5{left:194.779500px;}
.x36{left:200.072539px;}
.x42{left:202.717500px;}
.xf{left:205.668038px;}
.x39{left:207.817283px;}
.x15{left:211.968601px;}
.xe{left:214.073426px;}
.x16{left:220.818572px;}
.x6{left:223.116000px;}
.x27{left:239.046509px;}
.x1e{left:244.543362px;}
.x1f{left:248.772605px;}
.x17{left:249.855361px;}
.x4{left:253.572000px;}
.x10{left:278.600394px;}
.x2{left:286.504500px;}
.x1d{left:292.384236px;}
.x1c{left:294.316495px;}
.x22{left:331.922715px;}
.x23{left:334.063628px;}
.x2e{left:431.457900px;}
.x31{left:458.446495px;}
.x21{left:465.679504px;}
.x9{left:469.077000px;}
.x3e{left:478.044000px;}
.x2b{left:480.285000px;}
.x3f{left:487.012500px;}
.xa{left:491.493000px;}
.x45{left:496.467000px;}
.x2a{left:507.808500px;}
.x3d{left:510.084000px;}
.xd{left:515.160150px;}
.x2d{left:519.736500px;}
.x2c{left:541.189500px;}
.x41{left:552.927000px;}
.xb{left:560.217000px;}
.x40{left:580.714500px;}
.x37{left:599.157000px;}
.x46{left:616.218000px;}
.x47{left:789.760500px;}
@media print{
.v2{vertical-align:-12.974789pt;}
.v4{vertical-align:-5.312000pt;}
.v3{vertical-align:-1.699134pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.974789pt;}
.v5{vertical-align:20.314667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000922pt;}
.ls30{letter-spacing:0.001104pt;}
.ls7{letter-spacing:0.001546pt;}
.ls0{letter-spacing:0.001987pt;}
.ls2e{letter-spacing:0.002724pt;}
.ls2c{letter-spacing:0.002893pt;}
.ls14{letter-spacing:0.003437pt;}
.ls8{letter-spacing:1.283437pt;}
.ls5{letter-spacing:1.288770pt;}
.lsc{letter-spacing:1.398898pt;}
.ls39{letter-spacing:1.404231pt;}
.lsb{letter-spacing:1.718255pt;}
.ls15{letter-spacing:2.651750pt;}
.ls25{letter-spacing:2.654345pt;}
.ls18{letter-spacing:2.657084pt;}
.ls1e{letter-spacing:2.659678pt;}
.ls17{letter-spacing:2.743378pt;}
.ls28{letter-spacing:3.357758pt;}
.ls2a{letter-spacing:3.363091pt;}
.ls27{letter-spacing:3.365760pt;}
.ls29{letter-spacing:4.764231pt;}
.ls11{letter-spacing:8.176992pt;}
.ls36{letter-spacing:10.716231pt;}
.ls38{letter-spacing:11.089565pt;}
.ls19{letter-spacing:11.954667pt;}
.ls23{letter-spacing:11.955826pt;}
.ls13{letter-spacing:12.012231pt;}
.ls33{letter-spacing:13.254898pt;}
.ls26{letter-spacing:13.356231pt;}
.ls1a{letter-spacing:13.649987pt;}
.ls22{letter-spacing:13.651091pt;}
.ls1f{letter-spacing:13.655321pt;}
.ls21{letter-spacing:13.656842pt;}
.ls2b{letter-spacing:13.782898pt;}
.ls2{letter-spacing:13.859437pt;}
.ls12{letter-spacing:14.118879pt;}
.ls35{letter-spacing:14.209565pt;}
.ls3{letter-spacing:14.363588pt;}
.ls1c{letter-spacing:14.609084pt;}
.ls6{letter-spacing:14.734103pt;}
.ls3b{letter-spacing:15.052231pt;}
.lsd{letter-spacing:15.260231pt;}
.ls37{letter-spacing:15.318898pt;}
.ls3a{letter-spacing:15.457565pt;}
.ls31{letter-spacing:15.484231pt;}
.lsf{letter-spacing:16.774417pt;}
.ls32{letter-spacing:16.876231pt;}
.ls10{letter-spacing:17.768842pt;}
.ls34{letter-spacing:18.689565pt;}
.lse{letter-spacing:19.686898pt;}
.ls2d{letter-spacing:19.743761pt;}
.ls4{letter-spacing:21.182103pt;}
.ls2f{letter-spacing:21.474582pt;}
.ls1b{letter-spacing:24.573333pt;}
.lsa{letter-spacing:25.699437pt;}
.ls9{letter-spacing:26.134255pt;}
.ls1d{letter-spacing:100.424000pt;}
.ls20{letter-spacing:176.269333pt;}
.ls24{letter-spacing:252.120000pt;}
.ws3{word-spacing:-49.148026pt;}
.ws16{word-spacing:-11.954667pt;}
.ws144{word-spacing:-10.626667pt;}
.ws54{word-spacing:-8.514705pt;}
.ws89{word-spacing:-8.224811pt;}
.wsad{word-spacing:-2.821301pt;}
.wsb1{word-spacing:-2.773483pt;}
.wsd9{word-spacing:-2.677845pt;}
.wsda{word-spacing:-2.630027pt;}
.wse{word-spacing:-2.582208pt;}
.ws114{word-spacing:-2.550400pt;}
.wsf3{word-spacing:-2.465387pt;}
.wsd8{word-spacing:-2.390933pt;}
.wsdc{word-spacing:-2.295296pt;}
.ws111{word-spacing:-2.252853pt;}
.ws9{word-spacing:-2.247477pt;}
.ws7f{word-spacing:-2.199659pt;}
.ws44{word-spacing:-2.151840pt;}
.wsee{word-spacing:-2.125333pt;}
.ws1a{word-spacing:-2.104021pt;}
.ws8c{word-spacing:-2.008384pt;}
.ws4f{word-spacing:-1.960565pt;}
.ws3f{word-spacing:-1.864928pt;}
.ws135{word-spacing:-1.827787pt;}
.ws39{word-spacing:-1.769291pt;}
.ws13f{word-spacing:-1.615253pt;}
.ws105{word-spacing:-1.530240pt;}
.ws48{word-spacing:-1.530197pt;}
.wsb{word-spacing:-1.482379pt;}
.ws12d{word-spacing:-1.445227pt;}
.ws46{word-spacing:-1.386741pt;}
.ws8b{word-spacing:-1.338923pt;}
.wsf{word-spacing:-1.291104pt;}
.ws29{word-spacing:-1.243285pt;}
.ws22{word-spacing:-1.195467pt;}
.ws42{word-spacing:-1.099829pt;}
.wsce{word-spacing:-1.052011pt;}
.wsef{word-spacing:-1.020160pt;}
.wsb3{word-spacing:-0.956373pt;}
.ws7e{word-spacing:-0.908555pt;}
.ws51{word-spacing:-0.860736pt;}
.ws2f{word-spacing:-0.812917pt;}
.ws134{word-spacing:-0.765120pt;}
.wsa9{word-spacing:-0.765099pt;}
.ws101{word-spacing:-0.722613pt;}
.wsbb{word-spacing:-0.669461pt;}
.ws132{word-spacing:-0.637600pt;}
.ws37{word-spacing:-0.621643pt;}
.wsae{word-spacing:-0.573824pt;}
.ws11b{word-spacing:-0.511573pt;}
.ws10{word-spacing:-0.430368pt;}
.ws38{word-spacing:-0.382549pt;}
.wsf9{word-spacing:-0.297547pt;}
.ws4e{word-spacing:-0.286912pt;}
.ws81{word-spacing:-0.239093pt;}
.ws2b{word-spacing:-0.191275pt;}
.wsd2{word-spacing:-0.106411pt;}
.wsac{word-spacing:-0.095637pt;}
.ws6d{word-spacing:-0.047819pt;}
.wsf5{word-spacing:-0.042507pt;}
.ws52{word-spacing:-0.040000pt;}
.ws53{word-spacing:-0.034059pt;}
.ws7a{word-spacing:-0.033983pt;}
.ws58{word-spacing:-0.033213pt;}
.ws55{word-spacing:-0.032437pt;}
.wsf7{word-spacing:-0.001547pt;}
.ws56{word-spacing:-0.001067pt;}
.ws142{word-spacing:-0.000747pt;}
.ws0{word-spacing:0.000000pt;}
.ws94{word-spacing:0.000363pt;}
.ws95{word-spacing:0.001461pt;}
.ws59{word-spacing:0.002560pt;}
.ws93{word-spacing:0.005696pt;}
.ws96{word-spacing:0.006283pt;}
.ws92{word-spacing:0.008693pt;}
.ws64{word-spacing:0.047819pt;}
.wsa7{word-spacing:0.095637pt;}
.ws107{word-spacing:0.127520pt;}
.wsc9{word-spacing:0.143456pt;}
.ws104{word-spacing:0.170027pt;}
.ws11{word-spacing:0.191275pt;}
.ws60{word-spacing:0.239093pt;}
.wsab{word-spacing:0.286912pt;}
.ws113{word-spacing:0.297547pt;}
.ws4{word-spacing:0.334731pt;}
.ws34{word-spacing:0.382549pt;}
.ws9a{word-spacing:0.424512pt;}
.ws9b{word-spacing:0.430368pt;}
.ws47{word-spacing:0.478187pt;}
.ws49{word-spacing:0.526005pt;}
.ws115{word-spacing:0.527147pt;}
.wse9{word-spacing:0.552587pt;}
.wsaf{word-spacing:0.573824pt;}
.ws28{word-spacing:0.621643pt;}
.ws5e{word-spacing:0.669461pt;}
.ws137{word-spacing:0.680107pt;}
.ws50{word-spacing:0.717280pt;}
.wsc3{word-spacing:0.765099pt;}
.wsd{word-spacing:0.860736pt;}
.ws36{word-spacing:0.908555pt;}
.wsdd{word-spacing:0.956373pt;}
.wsd7{word-spacing:1.099829pt;}
.wsd4{word-spacing:1.147648pt;}
.wse4{word-spacing:1.195467pt;}
.wse5{word-spacing:1.243285pt;}
.ws26{word-spacing:1.291104pt;}
.ws9c{word-spacing:1.338923pt;}
.ws33{word-spacing:1.386741pt;}
.wsb9{word-spacing:1.434560pt;}
.wsf6{word-spacing:1.445227pt;}
.ws6b{word-spacing:1.482379pt;}
.ws35{word-spacing:1.578016pt;}
.ws13b{word-spacing:1.615253pt;}
.wsbf{word-spacing:1.625835pt;}
.ws79{word-spacing:1.673653pt;}
.ws3b{word-spacing:1.721472pt;}
.ws62{word-spacing:1.769291pt;}
.ws8{word-spacing:1.817109pt;}
.ws106{word-spacing:1.870293pt;}
.ws84{word-spacing:1.907179pt;}
.ws85{word-spacing:1.912747pt;}
.wsf8{word-spacing:1.955307pt;}
.wsdb{word-spacing:1.960565pt;}
.ws121{word-spacing:1.997813pt;}
.wscb{word-spacing:2.008384pt;}
.ws18{word-spacing:2.056203pt;}
.wsd0{word-spacing:2.104021pt;}
.wscf{word-spacing:2.126539pt;}
.ws2a{word-spacing:2.151840pt;}
.ws8a{word-spacing:2.163179pt;}
.ws87{word-spacing:2.169205pt;}
.wsb7{word-spacing:2.199659pt;}
.wsfb{word-spacing:2.210347pt;}
.ws77{word-spacing:2.247477pt;}
.ws6c{word-spacing:2.283435pt;}
.ws1b{word-spacing:2.295296pt;}
.wsa5{word-spacing:2.343115pt;}
.ws136{word-spacing:2.422880pt;}
.ws27{word-spacing:2.438752pt;}
.wsb8{word-spacing:2.486571pt;}
.ws4b{word-spacing:2.534389pt;}
.ws120{word-spacing:2.550400pt;}
.ws9e{word-spacing:2.582208pt;}
.ws13e{word-spacing:2.592907pt;}
.wsba{word-spacing:2.630027pt;}
.ws5f{word-spacing:2.677845pt;}
.ws45{word-spacing:2.773483pt;}
.ws141{word-spacing:2.805440pt;}
.wse8{word-spacing:2.821301pt;}
.ws19{word-spacing:2.869120pt;}
.ws23{word-spacing:2.916939pt;}
.ws5d{word-spacing:2.964757pt;}
.ws8e{word-spacing:2.966475pt;}
.ws9d{word-spacing:3.012576pt;}
.wsf2{word-spacing:3.102987pt;}
.ws78{word-spacing:3.156032pt;}
.wsa{word-spacing:3.299488pt;}
.ws110{word-spacing:3.315520pt;}
.wsa6{word-spacing:3.347307pt;}
.wsfe{word-spacing:3.358027pt;}
.ws3e{word-spacing:3.395125pt;}
.ws100{word-spacing:3.400533pt;}
.ws143{word-spacing:3.443040pt;}
.ws4a{word-spacing:3.490763pt;}
.wsc{word-spacing:3.538581pt;}
.ws14{word-spacing:3.729856pt;}
.wsc1{word-spacing:3.777675pt;}
.ws127{word-spacing:3.780480pt;}
.ws20{word-spacing:3.825493pt;}
.ws40{word-spacing:3.873312pt;}
.ws145{word-spacing:3.910613pt;}
.ws21{word-spacing:3.921131pt;}
.wsc2{word-spacing:3.968949pt;}
.wsa8{word-spacing:4.064587pt;}
.wsb2{word-spacing:4.112405pt;}
.ws25{word-spacing:4.160224pt;}
.ws3a{word-spacing:4.208043pt;}
.ws125{word-spacing:4.208160pt;}
.wsb6{word-spacing:4.255861pt;}
.wscd{word-spacing:4.303680pt;}
.ws13{word-spacing:4.351499pt;}
.ws12e{word-spacing:4.378187pt;}
.ws5a{word-spacing:4.399317pt;}
.ws24{word-spacing:4.447136pt;}
.ws12f{word-spacing:4.463200pt;}
.ws8d{word-spacing:4.474029pt;}
.wsd1{word-spacing:4.494955pt;}
.ws10c{word-spacing:4.633227pt;}
.ws2e{word-spacing:4.638411pt;}
.ws15{word-spacing:4.686229pt;}
.ws4d{word-spacing:4.734048pt;}
.ws12{word-spacing:4.829685pt;}
.ws2c{word-spacing:4.877504pt;}
.ws31{word-spacing:4.925323pt;}
.ws30{word-spacing:5.020960pt;}
.ws91{word-spacing:5.116597pt;}
.wsb4{word-spacing:5.133109pt;}
.ws130{word-spacing:5.228320pt;}
.wsa4{word-spacing:5.260053pt;}
.wsd3{word-spacing:5.307872pt;}
.ws12a{word-spacing:5.313333pt;}
.ws5{word-spacing:5.451328pt;}
.ws41{word-spacing:5.499147pt;}
.wse7{word-spacing:5.546965pt;}
.ws7{word-spacing:5.594784pt;}
.wsfa{word-spacing:5.823413pt;}
.wsde{word-spacing:5.833877pt;}
.ws11d{word-spacing:5.908427pt;}
.wsb5{word-spacing:5.929515pt;}
.ws32{word-spacing:6.072971pt;}
.ws1e{word-spacing:6.120789pt;}
.ws3d{word-spacing:6.168608pt;}
.ws86{word-spacing:6.312064pt;}
.wsca{word-spacing:6.407701pt;}
.ws61{word-spacing:6.455520pt;}
.wsbe{word-spacing:6.503339pt;}
.ws126{word-spacing:6.546027pt;}
.ws82{word-spacing:6.598976pt;}
.wsf0{word-spacing:6.673547pt;}
.wse6{word-spacing:6.694613pt;}
.ws3c{word-spacing:6.838069pt;}
.ws1f{word-spacing:6.885888pt;}
.wsb0{word-spacing:6.981525pt;}
.ws109{word-spacing:7.013600pt;}
.ws146{word-spacing:7.438667pt;}
.ws10e{word-spacing:7.552213pt;}
.ws2d{word-spacing:7.555349pt;}
.ws6{word-spacing:7.603168pt;}
.wsc5{word-spacing:7.650987pt;}
.ws1d{word-spacing:7.746624pt;}
.ws69{word-spacing:7.842261pt;}
.wsc6{word-spacing:7.890080pt;}
.ws68{word-spacing:7.937899pt;}
.ws67{word-spacing:7.946432pt;}
.wsf4{word-spacing:8.118773pt;}
.ws6e{word-spacing:8.129173pt;}
.ws124{word-spacing:8.246293pt;}
.ws112{word-spacing:8.331307pt;}
.wsed{word-spacing:8.458827pt;}
.wsbd{word-spacing:8.511723pt;}
.ws1c{word-spacing:8.607360pt;}
.ws10d{word-spacing:8.671360pt;}
.ws129{word-spacing:8.713867pt;}
.ws43{word-spacing:8.798635pt;}
.ws13c{word-spacing:8.883893pt;}
.ws140{word-spacing:8.926400pt;}
.wseb{word-spacing:9.306720pt;}
.ws11a{word-spacing:9.521493pt;}
.ws11e{word-spacing:9.819040pt;}
.ws102{word-spacing:9.861547pt;}
.ws98{word-spacing:9.918381pt;}
.ws11c{word-spacing:10.074080pt;}
.wsea{word-spacing:10.499147pt;}
.ws57{word-spacing:10.584160pt;}
.ws103{word-spacing:10.711680pt;}
.ws72{word-spacing:10.902656pt;}
.ws71{word-spacing:10.950475pt;}
.ws116{word-spacing:11.094240pt;}
.wsbc{word-spacing:11.237387pt;}
.ws138{word-spacing:11.264267pt;}
.wsfd{word-spacing:11.519307pt;}
.ws6a{word-spacing:11.715573pt;}
.ws5c{word-spacing:11.906848pt;}
.wsc7{word-spacing:11.929008pt;}
.ws12c{word-spacing:11.944373pt;}
.ws99{word-spacing:12.355675pt;}
.ws74{word-spacing:12.432853pt;}
.ws75{word-spacing:12.461845pt;}
.ws73{word-spacing:12.479232pt;}
.wsaa{word-spacing:12.528491pt;}
.ws108{word-spacing:12.539467pt;}
.wsc8{word-spacing:12.553008pt;}
.ws122{word-spacing:12.581973pt;}
.wsfc{word-spacing:12.794507pt;}
.ws117{word-spacing:12.964533pt;}
.wsa0{word-spacing:13.341408pt;}
.ws63{word-spacing:13.353156pt;}
.ws65{word-spacing:13.355956pt;}
.ws70{word-spacing:13.532683pt;}
.ws6f{word-spacing:13.580501pt;}
.wse2{word-spacing:13.628320pt;}
.wsff{word-spacing:13.942187pt;}
.wscc{word-spacing:13.950341pt;}
.ws80{word-spacing:14.083675pt;}
.ws4c{word-spacing:14.106507pt;}
.ws128{word-spacing:14.367253pt;}
.ws9f{word-spacing:14.489056pt;}
.wsc0{word-spacing:15.689008pt;}
.ws131{word-spacing:15.812480pt;}
.ws1{word-spacing:15.876240pt;}
.ws133{word-spacing:16.110027pt;}
.ws97{word-spacing:16.275552pt;}
.ws5b{word-spacing:16.306165pt;}
.wsc4{word-spacing:16.313008pt;}
.wsdf{word-spacing:17.166901pt;}
.wsf1{word-spacing:17.257707pt;}
.ws90{word-spacing:17.554544pt;}
.ws10a{word-spacing:17.597760pt;}
.ws88{word-spacing:17.692907pt;}
.wse1{word-spacing:18.075456pt;}
.ws10f{word-spacing:18.150347pt;}
.ws83{word-spacing:18.547675pt;}
.ws123{word-spacing:18.830453pt;}
.ws139{word-spacing:19.000480pt;}
.ws8f{word-spacing:19.402029pt;}
.ws13d{word-spacing:19.468053pt;}
.ws118{word-spacing:19.553067pt;}
.wsec{word-spacing:19.893120pt;}
.ws66{word-spacing:20.121156pt;}
.ws12b{word-spacing:20.148160pt;}
.ws11f{word-spacing:20.403200pt;}
.ws10b{word-spacing:20.998293pt;}
.ws17{word-spacing:22.316000pt;}
.ws2{word-spacing:28.643381pt;}
.wse0{word-spacing:29.073749pt;}
.ws119{word-spacing:30.137227pt;}
.ws76{word-spacing:37.298560pt;}
.ws7c{word-spacing:51.507870pt;}
.wsa1{word-spacing:51.787616pt;}
.ws7d{word-spacing:52.649463pt;}
.ws13a{word-spacing:59.976907pt;}
.wse3{word-spacing:63.742283pt;}
.ws7b{word-spacing:81.504837pt;}
.wsa3{word-spacing:110.222027pt;}
.wsa2{word-spacing:110.245333pt;}
.wsd5{word-spacing:110.250667pt;}
.wsd6{word-spacing:122.176693pt;}
._17{margin-left:-1449.608000pt;}
._3{margin-left:-8.416320pt;}
._1e{margin-left:-7.431417pt;}
._4{margin-left:-5.929680pt;}
._3e{margin-left:-4.882208pt;}
._0{margin-left:-3.825600pt;}
._2{margin-left:-2.677920pt;}
._1{margin-left:-1.377216pt;}
._1a{width:1.306834pt;}
._19{width:2.725664pt;}
._18{width:4.609475pt;}
._1b{width:5.877728pt;}
._2e{width:9.640320pt;}
._c{width:11.218336pt;}
._20{width:12.165285pt;}
._a{width:13.197952pt;}
._b{width:14.680331pt;}
._8{width:16.162709pt;}
._15{width:17.166901pt;}
._10{width:18.697099pt;}
._7{width:20.227296pt;}
._11{width:21.279307pt;}
._6{width:22.235755pt;}
._d{width:23.431147pt;}
._16{width:24.387520pt;}
._9{width:25.344000pt;}
._14{width:26.730635pt;}
._e{width:28.060032pt;}
._12{width:29.312843pt;}
._3d{width:30.699584pt;}
._29{width:31.703851pt;}
._13{width:32.851424pt;}
._1f{width:34.525077pt;}
._f{width:35.959637pt;}
._5{width:37.633291pt;}
._3f{width:42.506560pt;}
._38{width:49.194304pt;}
._2b{width:59.496628pt;}
._30{width:74.358027pt;}
._2a{width:80.558622pt;}
._2c{width:83.399555pt;}
._36{width:98.958496pt;}
._3b{width:110.211279pt;}
._34{width:111.540616pt;}
._32{width:114.908256pt;}
._24{width:122.176693pt;}
._35{width:123.898165pt;}
._37{width:126.022530pt;}
._1c{width:128.805730pt;}
._3a{width:133.623187pt;}
._2d{width:135.203704pt;}
._33{width:139.821781pt;}
._21{width:145.120128pt;}
._28{width:152.350272pt;}
._31{width:154.406475pt;}
._2f{width:155.735872pt;}
._27{width:165.596043pt;}
._39{width:177.015179pt;}
._3c{width:181.801109pt;}
._23{width:187.544811pt;}
._26{width:190.557387pt;}
._25{width:212.458336pt;}
._1d{width:224.550176pt;}
._22{width:227.043029pt;}
.fs7{font-size:19.462183pt;}
.fsb{font-size:19.927665pt;}
.fsc{font-size:20.389614pt;}
.fs13{font-size:28.422365pt;}
.fs10{font-size:31.579616pt;}
.fse{font-size:31.882667pt;}
.fs5{font-size:32.436972pt;}
.fsf{font-size:33.210667pt;}
.fsa{font-size:33.212775pt;}
.fs12{font-size:33.656781pt;}
.fsd{font-size:33.982691pt;}
.fs6{font-size:34.058821pt;}
.fs11{font-size:34.739077pt;}
.fs4{font-size:40.000000pt;}
.fs8{font-size:40.546215pt;}
.fs9{font-size:42.506667pt;}
.fs2{font-size:47.818667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:63.760000pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:1.216395pt;}
.y7c{bottom:1.245477pt;}
.yb2{bottom:2.548697pt;}
.y111{bottom:4.934438pt;}
.yb1{bottom:5.097399pt;}
.y70{bottom:10.947487pt;}
.y7b{bottom:11.209310pt;}
.y110{bottom:16.382335pt;}
.ya5{bottom:23.363091pt;}
.y112{bottom:24.573503pt;}
.yaf{bottom:25.062227pt;}
.ya2{bottom:25.911800pt;}
.y67{bottom:30.666667pt;}
.y7a{bottom:39.440176pt;}
.y113{bottom:48.372575pt;}
.y79{bottom:49.404009pt;}
.yab{bottom:70.514079pt;}
.yae{bottom:75.611483pt;}
.ya1{bottom:76.461045pt;}
.y6d{bottom:77.443277pt;}
.ya9{bottom:79.009752pt;}
.y118{bottom:79.049702pt;}
.y114{bottom:84.071381pt;}
.ya8{bottom:89.204559pt;}
.y77{bottom:90.919975pt;}
.ya4{bottom:93.877177pt;}
.yb3{bottom:97.700231pt;}
.y72{bottom:97.716381pt;}
.y78{bottom:99.223170pt;}
.yad{bottom:99.399363pt;}
.ya7{bottom:99.399366pt;}
.ya0{bottom:100.248931pt;}
.y76{bottom:100.883808pt;}
.y6f{bottom:109.880248pt;}
.y115{bottom:115.789319pt;}
.y73{bottom:117.584029pt;}
.ya3{bottom:118.939410pt;}
.y6e{bottom:119.611340pt;}
.yac{bottom:120.213762pt;}
.y9f{bottom:121.063330pt;}
.yb0{bottom:135.505973pt;}
.y37{bottom:135.673333pt;}
.y7d{bottom:136.172381pt;}
.yaa{bottom:136.780323pt;}
.ya6{bottom:138.054674pt;}
.y1d9{bottom:147.662667pt;}
.y36{bottom:149.554667pt;}
.y6c{bottom:150.426462pt;}
.y116{bottom:154.197408pt;}
.y1d8{bottom:159.650667pt;}
.y6b{bottom:160.157554pt;}
.y9d{bottom:161.346400pt;}
.y35{bottom:163.436000pt;}
.y151{bottom:165.204995pt;}
.y11f{bottom:165.797128pt;}
.y149{bottom:168.905467pt;}
.y1d7{bottom:171.638667pt;}
.y176{bottom:172.684933pt;}
.y150{bottom:174.383051pt;}
.y11e{bottom:174.975183pt;}
.y9c{bottom:175.227733pt;}
.y66{bottom:177.317333pt;}
.y34{bottom:177.693333pt;}
.y148{bottom:182.786800pt;}
.y14f{bottom:183.561106pt;}
.y11d{bottom:184.153239pt;}
.y175{bottom:186.566267pt;}
.y1d6{bottom:188.846667pt;}
.y9b{bottom:189.109067pt;}
.y65{bottom:191.198667pt;}
.y33{bottom:191.574667pt;}
.y14e{bottom:192.739161pt;}
.y11c{bottom:193.331294pt;}
.y179{bottom:195.995891pt;}
.y147{bottom:196.668133pt;}
.y10e{bottom:198.592533pt;}
.y174{bottom:200.447600pt;}
.y1d5{bottom:200.834667pt;}
.y14d{bottom:201.917217pt;}
.y11b{bottom:202.509349pt;}
.y9a{bottom:202.990400pt;}
.y64{bottom:205.080000pt;}
.y178{bottom:205.173946pt;}
.y32{bottom:205.456000pt;}
.y117{bottom:205.556621pt;}
.y198{bottom:207.398267pt;}
.y146{bottom:210.549467pt;}
.y14c{bottom:211.095272pt;}
.y11a{bottom:211.687404pt;}
.y10d{bottom:212.473867pt;}
.y1d4{bottom:212.822667pt;}
.y177{bottom:214.352001pt;}
.y173{bottom:216.451600pt;}
.y99{bottom:216.871733pt;}
.y63{bottom:218.960000pt;}
.y31{bottom:219.337333pt;}
.y14b{bottom:220.273327pt;}
.y119{bottom:220.865460pt;}
.y145{bottom:224.430800pt;}
.y1d3{bottom:224.810667pt;}
.y10c{bottom:226.355200pt;}
.y172{bottom:230.332933pt;}
.y98{bottom:230.753067pt;}
.y62{bottom:232.841333pt;}
.y30{bottom:233.217333pt;}
.y144{bottom:238.312133pt;}
.y197{bottom:238.955600pt;}
.y10b{bottom:240.236533pt;}
.y1d2{bottom:242.018667pt;}
.y171{bottom:244.214267pt;}
.y97{bottom:244.634400pt;}
.y61{bottom:246.722667pt;}
.y2f{bottom:247.098667pt;}
.y143{bottom:252.193467pt;}
.y196{bottom:252.835600pt;}
.y1d1{bottom:254.006667pt;}
.y10a{bottom:254.117867pt;}
.y170{bottom:258.095600pt;}
.y96{bottom:258.515733pt;}
.y60{bottom:260.604000pt;}
.y2e{bottom:260.980000pt;}
.yda{bottom:261.331733pt;}
.y1d0{bottom:265.994667pt;}
.y142{bottom:266.074800pt;}
.y195{bottom:266.716933pt;}
.y109{bottom:267.999200pt;}
.y16f{bottom:271.976933pt;}
.y5f{bottom:274.485333pt;}
.y2d{bottom:274.861333pt;}
.yd9{bottom:275.255733pt;}
.y95{bottom:275.498400pt;}
.y1cf{bottom:277.984000pt;}
.y141{bottom:279.956133pt;}
.y194{bottom:280.598267pt;}
.y108{bottom:281.880533pt;}
.y16e{bottom:285.858267pt;}
.y2c{bottom:288.742667pt;}
.yd8{bottom:289.137067pt;}
.y94{bottom:289.379733pt;}
.y193{bottom:294.479600pt;}
.y1ce{bottom:295.190667pt;}
.y107{bottom:295.761867pt;}
.y140{bottom:295.894800pt;}
.y5e{bottom:298.145333pt;}
.y16d{bottom:299.739600pt;}
.y2b{bottom:302.624000pt;}
.yd7{bottom:303.018400pt;}
.y93{bottom:303.261067pt;}
.y1cd{bottom:307.178667pt;}
.y192{bottom:308.360933pt;}
.y106{bottom:309.643200pt;}
.y13f{bottom:309.776133pt;}
.y16c{bottom:313.620933pt;}
.y2a{bottom:316.505333pt;}
.y92{bottom:317.141067pt;}
.yd6{bottom:318.227733pt;}
.y1cc{bottom:319.168000pt;}
.y191{bottom:322.242267pt;}
.y105{bottom:323.524533pt;}
.y13e{bottom:323.657467pt;}
.y16b{bottom:327.502267pt;}
.y29{bottom:330.386667pt;}
.y91{bottom:331.022400pt;}
.y1cb{bottom:331.156000pt;}
.yd5{bottom:332.109067pt;}
.y5d{bottom:332.530667pt;}
.y190{bottom:336.123600pt;}
.y104{bottom:337.405867pt;}
.y13d{bottom:337.538800pt;}
.y16a{bottom:341.383600pt;}
.y28{bottom:344.268000pt;}
.y90{bottom:344.903733pt;}
.yd4{bottom:345.990400pt;}
.y5c{bottom:346.412000pt;}
.y1ca{bottom:348.362667pt;}
.y18f{bottom:350.004933pt;}
.y13c{bottom:351.420133pt;}
.y169{bottom:355.264933pt;}
.y27{bottom:358.149333pt;}
.y8f{bottom:358.785067pt;}
.y103{bottom:359.768533pt;}
.yd3{bottom:359.871733pt;}
.y5b{bottom:360.293333pt;}
.y1c9{bottom:360.352000pt;}
.y18e{bottom:363.886267pt;}
.y13b{bottom:365.301467pt;}
.y168{bottom:369.146267pt;}
.y1c8{bottom:372.340000pt;}
.y26{bottom:372.406667pt;}
.y8e{bottom:372.666400pt;}
.y102{bottom:373.649867pt;}
.yd2{bottom:373.751733pt;}
.y5a{bottom:374.174667pt;}
.y18d{bottom:377.767600pt;}
.y13a{bottom:379.182800pt;}
.y167{bottom:385.150267pt;}
.y25{bottom:386.286667pt;}
.y8d{bottom:386.547733pt;}
.y101{bottom:387.531200pt;}
.yd1{bottom:387.633067pt;}
.y59{bottom:388.056000pt;}
.y1c7{bottom:389.546667pt;}
.y18c{bottom:391.648933pt;}
.y139{bottom:393.062800pt;}
.y166{bottom:399.031600pt;}
.y24{bottom:400.168000pt;}
.y100{bottom:401.411200pt;}
.yd0{bottom:401.514400pt;}
.y1c6{bottom:401.536000pt;}
.y58{bottom:401.937333pt;}
.y18b{bottom:405.530267pt;}
.y138{bottom:406.944133pt;}
.y8c{bottom:410.470400pt;}
.y165{bottom:412.912933pt;}
.y1c5{bottom:413.524000pt;}
.y23{bottom:414.049333pt;}
.yff{bottom:415.292533pt;}
.ycf{bottom:415.395733pt;}
.y57{bottom:418.656000pt;}
.y18a{bottom:419.411600pt;}
.y137{bottom:420.825467pt;}
.y1c4{bottom:425.512000pt;}
.y164{bottom:426.794267pt;}
.y22{bottom:427.930667pt;}
.yfe{bottom:429.173867pt;}
.yce{bottom:432.513067pt;}
.y56{bottom:432.537333pt;}
.y189{bottom:433.292933pt;}
.y136{bottom:434.706800pt;}
.y163{bottom:440.674267pt;}
.y8b{bottom:441.334400pt;}
.y21{bottom:441.812000pt;}
.y1c3{bottom:442.720000pt;}
.yfd{bottom:443.055200pt;}
.ycd{bottom:446.394400pt;}
.y55{bottom:446.418667pt;}
.y188{bottom:447.172933pt;}
.y135{bottom:448.588133pt;}
.y162{bottom:454.555600pt;}
.y1c2{bottom:454.708000pt;}
.y8a{bottom:455.215733pt;}
.y20{bottom:455.693333pt;}
.yfc{bottom:456.936533pt;}
.y54{bottom:460.300000pt;}
.y187{bottom:461.054267pt;}
.y134{bottom:464.526800pt;}
.y1c1{bottom:466.696000pt;}
.y161{bottom:468.436933pt;}
.y89{bottom:469.097067pt;}
.y1f{bottom:469.574667pt;}
.yfb{bottom:470.817867pt;}
.y53{bottom:474.181333pt;}
.y186{bottom:474.935600pt;}
.y133{bottom:478.408133pt;}
.ycc{bottom:478.663333pt;}
.y160{bottom:482.318267pt;}
.y88{bottom:482.978400pt;}
.y1e{bottom:483.456000pt;}
.y1c0{bottom:483.904000pt;}
.yfa{bottom:484.699200pt;}
.y52{bottom:488.062667pt;}
.y132{bottom:492.289467pt;}
.ycb{bottom:492.544667pt;}
.y185{bottom:495.767600pt;}
.y1bf{bottom:495.892000pt;}
.y15f{bottom:496.199600pt;}
.y87{bottom:496.859733pt;}
.y1d{bottom:497.337333pt;}
.yf9{bottom:498.580533pt;}
.y51{bottom:501.944000pt;}
.y131{bottom:506.170800pt;}
.yca{bottom:506.426000pt;}
.y1be{bottom:507.880000pt;}
.y15e{bottom:510.080933pt;}
.y86{bottom:510.741067pt;}
.y1c{bottom:511.218667pt;}
.yf8{bottom:512.461867pt;}
.y1ff{bottom:513.877333pt;}
.y50{bottom:515.825333pt;}
.y1bd{bottom:519.868000pt;}
.y130{bottom:520.052133pt;}
.yc9{bottom:520.307333pt;}
.y85{bottom:524.622400pt;}
.y1b{bottom:525.100000pt;}
.y1fe{bottom:525.865333pt;}
.yf7{bottom:526.343200pt;}
.y184{bottom:527.324933pt;}
.y4f{bottom:529.706667pt;}
.y12f{bottom:533.933467pt;}
.yc8{bottom:534.188667pt;}
.y1bc{bottom:537.076000pt;}
.y1fd{bottom:537.853333pt;}
.y84{bottom:538.503733pt;}
.yf6{bottom:540.224533pt;}
.y183{bottom:541.204933pt;}
.y4e{bottom:543.588000pt;}
.y1a{bottom:546.297333pt;}
.y12e{bottom:547.814800pt;}
.yc7{bottom:548.070000pt;}
.y1bb{bottom:549.064000pt;}
.y1fc{bottom:549.841333pt;}
.y83{bottom:552.383733pt;}
.yf5{bottom:554.105867pt;}
.y182{bottom:555.086267pt;}
.y4d{bottom:557.469333pt;}
.y15d{bottom:558.322533pt;}
.y1ba{bottom:561.053333pt;}
.y12d{bottom:561.696133pt;}
.yc6{bottom:561.951333pt;}
.y1fb{bottom:567.144000pt;}
.yf4{bottom:567.987200pt;}
.y181{bottom:568.967600pt;}
.y82{bottom:569.366400pt;}
.y4c{bottom:571.350667pt;}
.y1b9{bottom:573.041333pt;}
.y15c{bottom:574.399867pt;}
.y12c{bottom:575.577467pt;}
.yc5{bottom:575.832667pt;}
.y19{bottom:578.221333pt;}
.yf3{bottom:581.868533pt;}
.y180{bottom:582.848933pt;}
.y81{bottom:583.247733pt;}
.y1fa{bottom:584.445333pt;}
.y1b8{bottom:585.029333pt;}
.y4b{bottom:585.230667pt;}
.y12b{bottom:589.458800pt;}
.yc4{bottom:589.714000pt;}
.y15b{bottom:590.478533pt;}
.y18{bottom:592.102667pt;}
.yf2{bottom:595.749867pt;}
.y1f9{bottom:596.433333pt;}
.y4a{bottom:599.112000pt;}
.y1b7{bottom:602.237333pt;}
.y12a{bottom:603.340133pt;}
.yc3{bottom:603.595333pt;}
.y17{bottom:606.358667pt;}
.y15a{bottom:606.557200pt;}
.yf1{bottom:609.629867pt;}
.y49{bottom:612.993333pt;}
.y1f8{bottom:613.736000pt;}
.y1b6{bottom:614.225333pt;}
.y129{bottom:617.221467pt;}
.yc2{bottom:620.155333pt;}
.y16{bottom:620.240000pt;}
.y80{bottom:622.126533pt;}
.y159{bottom:622.634533pt;}
.y1f7{bottom:625.724000pt;}
.y1b5{bottom:626.213333pt;}
.y17f{bottom:626.862533pt;}
.y48{bottom:626.874667pt;}
.y128{bottom:631.102800pt;}
.yf0{bottom:631.374800pt;}
.yc1{bottom:634.036667pt;}
.y15{bottom:634.121333pt;}
.y7f{bottom:636.007867pt;}
.y1f6{bottom:637.712000pt;}
.y158{bottom:638.713200pt;}
.y47{bottom:640.756000pt;}
.y17e{bottom:642.941200pt;}
.y1b4{bottom:643.421333pt;}
.y127{bottom:644.984133pt;}
.yc0{bottom:647.918000pt;}
.y14{bottom:648.002667pt;}
.y1f5{bottom:649.700000pt;}
.y46{bottom:654.637333pt;}
.y157{bottom:654.791867pt;}
.y1b3{bottom:655.409333pt;}
.y7e{bottom:655.829333pt;}
.y126{bottom:658.864133pt;}
.y17d{bottom:659.018533pt;}
.ybf{bottom:661.799333pt;}
.y13{bottom:661.884000pt;}
.y1f4{bottom:667.002667pt;}
.y1b2{bottom:667.397333pt;}
.y45{bottom:668.518667pt;}
.y75{bottom:670.536647pt;}
.y156{bottom:670.869200pt;}
.yef{bottom:671.404133pt;}
.y125{bottom:672.745467pt;}
.y17c{bottom:675.097200pt;}
.y12{bottom:675.765333pt;}
.ybe{bottom:678.359333pt;}
.y1f3{bottom:678.990667pt;}
.y44{bottom:682.400000pt;}
.y1b1{bottom:684.605333pt;}
.yee{bottom:685.285467pt;}
.y124{bottom:686.626800pt;}
.y11{bottom:689.646667pt;}
.y1f2{bottom:690.978667pt;}
.ybd{bottom:692.240667pt;}
.y43{bottom:696.281333pt;}
.y1b0{bottom:696.593333pt;}
.y155{bottom:697.896400pt;}
.yed{bottom:699.166800pt;}
.y123{bottom:700.508133pt;}
.y17b{bottom:702.124400pt;}
.y10{bottom:703.528000pt;}
.ybc{bottom:706.122000pt;}
.y1f1{bottom:708.280000pt;}
.y1af{bottom:708.581333pt;}
.y154{bottom:711.777733pt;}
.y42{bottom:713.000000pt;}
.yec{bottom:713.048133pt;}
.y17a{bottom:716.005733pt;}
.yf{bottom:717.409333pt;}
.ybb{bottom:720.003333pt;}
.y1f0{bottom:720.269333pt;}
.y122{bottom:723.388133pt;}
.y1ae{bottom:725.789333pt;}
.y41{bottom:726.881333pt;}
.yeb{bottom:726.929467pt;}
.ye{bottom:731.290667pt;}
.y1ef{bottom:732.257333pt;}
.yba{bottom:733.884667pt;}
.y1ad{bottom:737.777333pt;}
.y40{bottom:740.762667pt;}
.yea{bottom:740.810800pt;}
.y1ee{bottom:744.245333pt;}
.yd{bottom:745.172000pt;}
.y153{bottom:745.845733pt;}
.yb9{bottom:747.766000pt;}
.y1ac{bottom:749.765333pt;}
.y3f{bottom:754.644000pt;}
.ye9{bottom:754.692133pt;}
.yc{bottom:759.053333pt;}
.y152{bottom:759.727067pt;}
.y121{bottom:760.180133pt;}
.y1ed{bottom:761.546667pt;}
.yb8{bottom:761.646000pt;}
.y1ab{bottom:766.973333pt;}
.y3e{bottom:768.525333pt;}
.ye8{bottom:768.573467pt;}
.yb{bottom:772.934667pt;}
.y1ec{bottom:773.536000pt;}
.y120{bottom:774.061467pt;}
.y14a{bottom:775.168009pt;}
.yb7{bottom:775.527333pt;}
.y1aa{bottom:778.961333pt;}
.y3d{bottom:782.406667pt;}
.ye7{bottom:782.454800pt;}
.y1eb{bottom:785.524000pt;}
.ya{bottom:786.816000pt;}
.y10f{bottom:789.502462pt;}
.y1a9{bottom:790.949333pt;}
.y3c{bottom:796.288000pt;}
.yb6{bottom:799.028667pt;}
.y9{bottom:800.696000pt;}
.ye6{bottom:802.310000pt;}
.y1ea{bottom:802.825333pt;}
.y1a8{bottom:802.937333pt;}
.y3b{bottom:810.169333pt;}
.y8{bottom:814.577333pt;}
.y1e9{bottom:814.814667pt;}
.y1a7{bottom:820.145333pt;}
.y3a{bottom:824.050667pt;}
.y1e8{bottom:826.802667pt;}
.y7{bottom:828.458667pt;}
.y1a6{bottom:832.133333pt;}
.yb5{bottom:833.283867pt;}
.y74{bottom:836.956000pt;}
.y39{bottom:837.932000pt;}
.y1e7{bottom:838.790667pt;}
.y1a5{bottom:844.121333pt;}
.ye5{bottom:847.365867pt;}
.y6a{bottom:851.136548pt;}
.y38{bottom:851.812000pt;}
.y6{bottom:851.813333pt;}
.yb4{bottom:855.876000pt;}
.y1e6{bottom:856.092000pt;}
.y1a4{bottom:861.329333pt;}
.ye4{bottom:863.444533pt;}
.y1e5{bottom:868.081333pt;}
.y1a3{bottom:873.317333pt;}
.y9e{bottom:877.737258pt;}
.ye3{bottom:879.521867pt;}
.y1e4{bottom:880.069333pt;}
.y1a2{bottom:885.305333pt;}
.y1e3{bottom:892.057333pt;}
.y5{bottom:893.324000pt;}
.ye2{bottom:895.600533pt;}
.y1a1{bottom:902.513333pt;}
.y1e2{bottom:904.045333pt;}
.y4{bottom:911.190667pt;}
.ye1{bottom:911.679200pt;}
.y1a0{bottom:914.501333pt;}
.y1e1{bottom:921.348000pt;}
.y19f{bottom:926.489333pt;}
.ye0{bottom:927.756533pt;}
.y3{bottom:928.857333pt;}
.y1e0{bottom:933.336000pt;}
.y19e{bottom:943.697333pt;}
.ydf{bottom:943.835200pt;}
.y1df{bottom:945.324000pt;}
.y19d{bottom:955.685333pt;}
.y1de{bottom:957.312000pt;}
.yde{bottom:959.913867pt;}
.y2{bottom:961.136000pt;}
.y19c{bottom:967.673333pt;}
.y1dd{bottom:974.614667pt;}
.y19b{bottom:979.662667pt;}
.ydd{bottom:986.384000pt;}
.y1dc{bottom:986.602667pt;}
.y19a{bottom:991.650667pt;}
.y1{bottom:997.400000pt;}
.y1db{bottom:998.590667pt;}
.ydc{bottom:1000.265333pt;}
.y1da{bottom:1010.578667pt;}
.y199{bottom:1010.580000pt;}
.ydb{bottom:1014.146667pt;}
.y69{bottom:1062.520000pt;}
.y68{bottom:1082.520000pt;}
.h15{height:14.764550pt;}
.h1c{height:20.719904pt;}
.hc{height:21.983651pt;}
.h11{height:22.509440pt;}
.h19{height:23.021540pt;}
.h16{height:23.595403pt;}
.h1b{height:24.535793pt;}
.h1a{height:25.324787pt;}
.he{height:27.400372pt;}
.h1e{height:29.159573pt;}
.hf{height:29.244587pt;}
.h1d{height:29.457920pt;}
.h12{height:32.803605pt;}
.h7{height:32.899243pt;}
.h8{height:33.186155pt;}
.h13{height:33.712160pt;}
.h5{height:35.864000pt;}
.hd{height:35.991102pt;}
.ha{height:36.053333pt;}
.h9{height:36.693333pt;}
.h17{height:43.078891pt;}
.h3{height:43.739360pt;}
.h4{height:43.866880pt;}
.h6{height:44.249440pt;}
.h2{height:53.099328pt;}
.h14{height:146.125563pt;}
.h10{height:148.212012pt;}
.hb{height:172.726881pt;}
.h18{height:248.695692pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:301.920927pt;}
.w3{width:301.960203pt;}
.w4{width:308.357370pt;}
.w5{width:321.263432pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:4.921281pt;}
.x14{left:6.069786pt;}
.x1b{left:11.409040pt;}
.x1a{left:12.905873pt;}
.x24{left:29.958682pt;}
.x35{left:40.827228pt;}
.x34{left:45.416705pt;}
.xc{left:48.000000pt;}
.x32{left:59.663209pt;}
.x29{left:63.812565pt;}
.x38{left:67.350667pt;}
.x7{left:76.800000pt;}
.x43{left:82.113333pt;}
.x30{left:88.118667pt;}
.x8{left:96.725333pt;}
.x44{left:101.146667pt;}
.x33{left:102.402719pt;}
.x2f{left:103.332000pt;}
.x28{left:105.768725pt;}
.x12{left:106.983840pt;}
.x11{left:108.521355pt;}
.x20{left:110.864000pt;}
.x3b{left:121.492000pt;}
.x1{left:124.901333pt;}
.x3a{left:126.788000pt;}
.x18{left:130.213274pt;}
.x25{left:138.298750pt;}
.x19{left:140.342667pt;}
.x26{left:142.372163pt;}
.x3c{left:153.747500pt;}
.x3{left:155.181333pt;}
.x5{left:173.137333pt;}
.x36{left:177.842257pt;}
.x42{left:180.193333pt;}
.xf{left:182.816034pt;}
.x39{left:184.726473pt;}
.x15{left:188.416534pt;}
.xe{left:190.287490pt;}
.x16{left:196.283175pt;}
.x6{left:198.325333pt;}
.x27{left:212.485786pt;}
.x1e{left:217.371877pt;}
.x1f{left:221.131204pt;}
.x17{left:222.093654pt;}
.x4{left:225.397333pt;}
.x10{left:247.644795pt;}
.x2{left:254.670667pt;}
.x1d{left:259.897098pt;}
.x1c{left:261.614662pt;}
.x22{left:295.042413pt;}
.x23{left:296.945447pt;}
.x2e{left:383.518133pt;}
.x31{left:407.507996pt;}
.x21{left:413.937337pt;}
.x9{left:416.957333pt;}
.x3e{left:424.928000pt;}
.x2b{left:426.920000pt;}
.x3f{left:432.900000pt;}
.xa{left:436.882667pt;}
.x45{left:441.304000pt;}
.x2a{left:451.385333pt;}
.x3d{left:453.408000pt;}
.xd{left:457.920133pt;}
.x2d{left:461.988000pt;}
.x2c{left:481.057333pt;}
.x41{left:491.490667pt;}
.xb{left:497.970667pt;}
.x40{left:516.190667pt;}
.x37{left:532.584000pt;}
.x46{left:547.749333pt;}
.x47{left:702.009333pt;}
}




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