
    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_be42ba52ea3775fa7fa8059c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8d7dd67f24be874fe0f9c0e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_38b2c6e8c6d557e55685c839.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_065b60a24371069e24507b27.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0758c434db6b92a94f6e32d0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_eb43632e1d0d94ca8a49ae4a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.728000;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_1a53d6c469d958add5768355.woff')format("woff");}.ff7{font-family:ff7;line-height:1.416000;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_579394cd4271fbdaa8b6154d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.450000;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_4f919653d1f49989a0059982.woff')format("woff");}.ff9{font-family:ff9;line-height:1.468000;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_0d9cc6ae1ef03b9556204f3a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.362000;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_be55f6b9fe4e536cb272ce37.woff')format("woff");}.ffb{font-family:ffb;line-height:1.342000;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_6ac076295c577946ff7fdd2a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.295000;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_bc018ecbd784ce1d661f254e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.305000;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_4b46be2e050220992ab3c5e5.woff')format("woff");}.ffe{font-family:ffe;line-height:1.349000;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_5de4ec0335caa53bac59a744.woff')format("woff");}.fff{font-family:fff;line-height:1.362000;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_977d11cca220ee396063aa88.woff')format("woff");}.ff10{font-family:ff10;line-height:1.362000;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_5ae68bc30733c442a5620453.woff')format("woff");}.ff11{font-family:ff11;line-height:1.393000;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_3bf6087fa944d9807d7b2cbd.woff')format("woff");}.ff12{font-family:ff12;line-height:1.650000;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_259e7947418bfbe7f02641a4.woff')format("woff");}.ff13{font-family:ff13;line-height:1.650000;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_d1d9d8fd29dc643adb042b74.woff')format("woff");}.ff14{font-family:ff14;line-height:1.650000;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_e33b8de6ceecc396abb3fdb8.woff')format("woff");}.ff15{font-family:ff15;line-height:1.355000;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_e738f6b0d7814e78e661e5aa.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_e23a5a03a7c10c9f836148b1.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_72fdc0d11626031e87edad05.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_1fd73f3ac836a2b20751aaa3.woff')format("woff");}.ff19{font-family:ff19;line-height:1.349000;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_3f732e29a6fd44d2467d6b42.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.384000;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_468446cbf55b6b209ec83518.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_c1734c881b9a18c319b92225.woff')format("woff");}.ff1c{font-family:ff1c;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;}
.m1{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc{vertical-align:-63.000000px;}
.v14{vertical-align:-20.298000px;}
.v13{vertical-align:-18.948000px;}
.v4{vertical-align:-17.946000px;}
.v6{vertical-align:-16.866000px;}
.vd{vertical-align:-15.744000px;}
.va{vertical-align:-12.300000px;}
.v2{vertical-align:-9.432000px;}
.v10{vertical-align:-8.418000px;}
.v7{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.694000px;}
.v5{vertical-align:17.970000px;}
.vf{vertical-align:20.646000px;}
.v3{vertical-align:23.946000px;}
.vb{vertical-align:25.368000px;}
.ve{vertical-align:26.946000px;}
.v8{vertical-align:35.496000px;}
.v9{vertical-align:37.668000px;}
.v11{vertical-align:49.896000px;}
.v12{vertical-align:64.614000px;}
.ls2{letter-spacing:0.000000px;}
.ls65{letter-spacing:0.000180px;}
.ls5e{letter-spacing:0.000480px;}
.ls5d{letter-spacing:0.000600px;}
.ls1d{letter-spacing:0.001200px;}
.ls59{letter-spacing:0.001800px;}
.ls3f{letter-spacing:0.002400px;}
.ls5a{letter-spacing:0.003600px;}
.ls61{letter-spacing:0.007800px;}
.ls48{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.864000px;}
.ls43{letter-spacing:1.344000px;}
.ls3e{letter-spacing:1.512000px;}
.ls49{letter-spacing:1.632000px;}
.ls5b{letter-spacing:1.836000px;}
.ls72{letter-spacing:2.984998px;}
.ls6b{letter-spacing:2.985000px;}
.ls30{letter-spacing:2.987400px;}
.lse{letter-spacing:2.988000px;}
.ls60{letter-spacing:2.988480px;}
.ls34{letter-spacing:2.989200px;}
.ls71{letter-spacing:2.989256px;}
.ls5f{letter-spacing:2.991000px;}
.ls22{letter-spacing:2.993400px;}
.ls13{letter-spacing:2.994000px;}
.ls2a{letter-spacing:4.483200px;}
.ls53{letter-spacing:4.483800px;}
.ls55{letter-spacing:4.486200px;}
.ls7{letter-spacing:5.130000px;}
.ls6{letter-spacing:5.193000px;}
.ls64{letter-spacing:5.976000px;}
.ls63{letter-spacing:5.982000px;}
.ls1{letter-spacing:6.972660px;}
.ls1a{letter-spacing:7.176000px;}
.ls57{letter-spacing:8.220000px;}
.ls25{letter-spacing:9.568200px;}
.ls26{letter-spacing:9.576000px;}
.ls47{letter-spacing:10.069200px;}
.ls44{letter-spacing:10.074000px;}
.ls45{letter-spacing:10.075200px;}
.ls4a{letter-spacing:10.734000px;}
.ls4b{letter-spacing:10.740000px;}
.ls29{letter-spacing:10.944000px;}
.ls2c{letter-spacing:10.945200px;}
.ls1c{letter-spacing:10.954200px;}
.ls1f{letter-spacing:10.960200px;}
.ls1b{letter-spacing:10.962000px;}
.ls5{letter-spacing:11.430000px;}
.ls38{letter-spacing:11.480400px;}
.ls70{letter-spacing:12.258000px;}
.ls4c{letter-spacing:12.372000px;}
.ls28{letter-spacing:12.589200px;}
.ls39{letter-spacing:12.746400px;}
.ls3a{letter-spacing:12.803400px;}
.ls4f{letter-spacing:12.906600px;}
.ls56{letter-spacing:13.698000px;}
.ls3d{letter-spacing:13.700400px;}
.ls69{letter-spacing:13.701600px;}
.ls6a{letter-spacing:13.944480px;}
.ls21{letter-spacing:13.950600px;}
.ls52{letter-spacing:14.257200px;}
.ls24{letter-spacing:14.314200px;}
.ls4d{letter-spacing:14.350800px;}
.ls58{letter-spacing:14.356200px;}
.ls2b{letter-spacing:14.364000px;}
.ls27{letter-spacing:14.370000px;}
.ls74{letter-spacing:15.246000px;}
.ls42{letter-spacing:15.576000px;}
.ls41{letter-spacing:15.582000px;}
.ls3b{letter-spacing:15.792000px;}
.ls46{letter-spacing:16.050000px;}
.ls50{letter-spacing:16.050600px;}
.ls3{letter-spacing:16.198560px;}
.ls4e{letter-spacing:16.685400px;}
.ls5c{letter-spacing:16.686000px;}
.ls6d{letter-spacing:16.686600px;}
.ls3c{letter-spacing:16.691400px;}
.ls68{letter-spacing:16.692000px;}
.ls18{letter-spacing:16.692600px;}
.ls20{letter-spacing:16.932000px;}
.ls1e{letter-spacing:16.938000px;}
.ls8{letter-spacing:17.010000px;}
.ls11{letter-spacing:17.262000px;}
.ls12{letter-spacing:17.264400px;}
.ls14{letter-spacing:17.268000px;}
.ls15{letter-spacing:17.274000px;}
.ls54{letter-spacing:17.348400px;}
.ls33{letter-spacing:17.369400px;}
.ls32{letter-spacing:17.370000px;}
.lsa{letter-spacing:17.586000px;}
.ls9{letter-spacing:18.198000px;}
.ls75{letter-spacing:18.228000px;}
.ls67{letter-spacing:18.990000px;}
.ls31{letter-spacing:19.446000px;}
.ls37{letter-spacing:19.608000px;}
.ls40{letter-spacing:20.076000px;}
.ls2e{letter-spacing:20.334000px;}
.ls19{letter-spacing:20.870400px;}
.ls6e{letter-spacing:20.876400px;}
.ls2f{letter-spacing:21.024000px;}
.ls51{letter-spacing:21.840600px;}
.ls36{letter-spacing:21.924000px;}
.lsb{letter-spacing:23.526000px;}
.lsc{letter-spacing:23.904000px;}
.ls35{letter-spacing:23.940000px;}
.lsd{letter-spacing:25.524000px;}
.ls10{letter-spacing:26.125200px;}
.lsf{letter-spacing:27.066000px;}
.ls17{letter-spacing:27.972600px;}
.ls2d{letter-spacing:29.814000px;}
.ls0{letter-spacing:41.784889px;}
.ls4{letter-spacing:107.032500px;}
.ls6f{letter-spacing:244.674000px;}
.ls6c{letter-spacing:259.554000px;}
.ls23{letter-spacing:283.344000px;}
.ls66{letter-spacing:383.694000px;}
.ls73{letter-spacing:400.170000px;}
.ls62{letter-spacing:404.526000px;}
.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;}
}
.ws18{word-spacing:-32.076000px;}
.wsb6{word-spacing:-28.512000px;}
.ws103{word-spacing:-24.948000px;}
.ws83{word-spacing:-23.581800px;}
.wsec{word-spacing:-22.453200px;}
.ws0{word-spacing:-15.497826px;}
.ws1{word-spacing:-13.560597px;}
.ws19{word-spacing:-12.258000px;}
.wsb5{word-spacing:-10.944000px;}
.ws11b{word-spacing:-10.215000px;}
.ws11f{word-spacing:-9.000000px;}
.wsee{word-spacing:-8.580600px;}
.ws10a{word-spacing:-1.296000px;}
.ws23{word-spacing:-1.188000px;}
.wsa7{word-spacing:-1.134000px;}
.wsb2{word-spacing:-1.080000px;}
.wscf{word-spacing:-0.972000px;}
.ws3b{word-spacing:-0.918000px;}
.ws52{word-spacing:-0.864000px;}
.wscb{word-spacing:-0.816000px;}
.wsfa{word-spacing:-0.812950px;}
.wse4{word-spacing:-0.540000px;}
.ws11c{word-spacing:-0.495000px;}
.wsaf{word-spacing:-0.486000px;}
.ws7c{word-spacing:-0.432000px;}
.wsea{word-spacing:-0.324000px;}
.ws3f{word-spacing:-0.270000px;}
.wsca{word-spacing:-0.222000px;}
.ws9d{word-spacing:-0.216000px;}
.wsc8{word-spacing:-0.192000px;}
.ws4b{word-spacing:-0.108000px;}
.ws127{word-spacing:-0.090000px;}
.ws5{word-spacing:-0.054000px;}
.ws42{word-spacing:-0.048000px;}
.ws10d{word-spacing:-0.045000px;}
.wsed{word-spacing:-0.037800px;}
.ws9{word-spacing:-0.031500px;}
.wsf0{word-spacing:-0.027000px;}
.ws109{word-spacing:-0.024000px;}
.ws101{word-spacing:-0.018000px;}
.ws108{word-spacing:-0.012000px;}
.ws41{word-spacing:-0.006000px;}
.ws116{word-spacing:-0.003000px;}
.ws2{word-spacing:0.000000px;}
.ws100{word-spacing:0.006000px;}
.ws102{word-spacing:0.012000px;}
.ws128{word-spacing:0.045000px;}
.ws12a{word-spacing:0.090000px;}
.wsad{word-spacing:0.108000px;}
.ws110{word-spacing:0.180000px;}
.wsa{word-spacing:0.270000px;}
.ws130{word-spacing:0.315000px;}
.wse9{word-spacing:0.378000px;}
.ws3a{word-spacing:0.432000px;}
.ws105{word-spacing:0.526027px;}
.ws39{word-spacing:0.540000px;}
.ws113{word-spacing:0.585000px;}
.ws88{word-spacing:0.648000px;}
.ws5c{word-spacing:0.702000px;}
.wsd6{word-spacing:0.756000px;}
.ws10f{word-spacing:0.765000px;}
.wsc7{word-spacing:0.768000px;}
.wsce{word-spacing:0.786000px;}
.ws64{word-spacing:0.810000px;}
.ws3d{word-spacing:0.864000px;}
.ws86{word-spacing:0.972000px;}
.ws1b{word-spacing:1.080000px;}
.ws17{word-spacing:1.086000px;}
.ws11d{word-spacing:1.125000px;}
.wsd8{word-spacing:1.134000px;}
.ws38{word-spacing:1.188000px;}
.wsc5{word-spacing:1.200000px;}
.ws9e{word-spacing:1.350000px;}
.ws2f{word-spacing:1.458000px;}
.ws112{word-spacing:1.530000px;}
.wsb8{word-spacing:1.536000px;}
.wsa4{word-spacing:1.566000px;}
.ws6b{word-spacing:1.674000px;}
.wsb{word-spacing:1.728000px;}
.wsef{word-spacing:1.890000px;}
.wsb7{word-spacing:1.920000px;}
.ws4e{word-spacing:1.998000px;}
.ws87{word-spacing:2.052000px;}
.wsac{word-spacing:2.106000px;}
.wsab{word-spacing:2.118000px;}
.ws36{word-spacing:2.160000px;}
.ws5f{word-spacing:2.214000px;}
.ws12c{word-spacing:2.250000px;}
.ws22{word-spacing:2.322000px;}
.ws12d{word-spacing:2.385000px;}
.ws12f{word-spacing:2.430000px;}
.wscd{word-spacing:2.484000px;}
.ws89{word-spacing:2.538000px;}
.ws44{word-spacing:2.592000px;}
.ws46{word-spacing:2.646000px;}
.wsc{word-spacing:2.808000px;}
.ws1f{word-spacing:2.970000px;}
.ws96{word-spacing:3.024000px;}
.wsf5{word-spacing:3.078000px;}
.ws111{word-spacing:3.105000px;}
.ws77{word-spacing:3.120000px;}
.wsc4{word-spacing:3.156000px;}
.wsc3{word-spacing:3.168000px;}
.ws40{word-spacing:3.186000px;}
.ws114{word-spacing:3.240000px;}
.ws10e{word-spacing:3.285000px;}
.wse8{word-spacing:3.294000px;}
.ws123{word-spacing:3.375000px;}
.ws4a{word-spacing:3.564000px;}
.ws9c{word-spacing:3.618000px;}
.ws48{word-spacing:3.726000px;}
.ws106{word-spacing:3.730007px;}
.wsf1{word-spacing:3.750000px;}
.ws3c{word-spacing:3.780000px;}
.ws33{word-spacing:3.888000px;}
.wsaa{word-spacing:3.942000px;}
.ws12b{word-spacing:4.005000px;}
.ws2e{word-spacing:4.158000px;}
.ws66{word-spacing:4.212000px;}
.wsf7{word-spacing:4.266000px;}
.ws129{word-spacing:4.275000px;}
.wsfc{word-spacing:4.351675px;}
.wsd2{word-spacing:4.362000px;}
.ws4d{word-spacing:4.374000px;}
.wsae{word-spacing:4.536000px;}
.ws126{word-spacing:4.545000px;}
.ws81{word-spacing:4.590000px;}
.wscc{word-spacing:4.698000px;}
.wsd5{word-spacing:4.752000px;}
.ws35{word-spacing:4.806000px;}
.ws12e{word-spacing:4.815000px;}
.ws90{word-spacing:4.848000px;}
.wsc6{word-spacing:4.896000px;}
.ws2a{word-spacing:4.968000px;}
.ws7e{word-spacing:5.022000px;}
.wsd4{word-spacing:5.052000px;}
.ws32{word-spacing:5.076000px;}
.ws3e{word-spacing:5.130000px;}
.ws6c{word-spacing:5.184000px;}
.ws94{word-spacing:5.238000px;}
.ws43{word-spacing:5.292000px;}
.wsb4{word-spacing:5.376000px;}
.ws14{word-spacing:5.400000px;}
.wsfd{word-spacing:5.451548px;}
.ws50{word-spacing:5.508000px;}
.ws4f{word-spacing:5.670000px;}
.ws76{word-spacing:5.712000px;}
.ws6d{word-spacing:5.724000px;}
.wsa8{word-spacing:5.778000px;}
.wsa9{word-spacing:5.784000px;}
.ws1c{word-spacing:5.796000px;}
.ws1e{word-spacing:5.832000px;}
.wsbe{word-spacing:5.886000px;}
.ws58{word-spacing:5.940000px;}
.ws117{word-spacing:6.075000px;}
.ws5d{word-spacing:6.102000px;}
.ws79{word-spacing:6.144000px;}
.wse3{word-spacing:6.156000px;}
.ws51{word-spacing:6.210000px;}
.ws63{word-spacing:6.264000px;}
.wsd{word-spacing:6.372000px;}
.ws99{word-spacing:6.426000px;}
.ws121{word-spacing:6.435000px;}
.wseb{word-spacing:6.480000px;}
.wsd0{word-spacing:6.534000px;}
.ws78{word-spacing:6.576000px;}
.ws49{word-spacing:6.588000px;}
.ws84{word-spacing:6.642000px;}
.ws26{word-spacing:6.696000px;}
.ws8e{word-spacing:6.750000px;}
.ws5a{word-spacing:6.801600px;}
.ws7b{word-spacing:6.804000px;}
.wsf6{word-spacing:6.858000px;}
.ws9a{word-spacing:6.912000px;}
.wsba{word-spacing:6.966000px;}
.ws61{word-spacing:7.020000px;}
.ws2b{word-spacing:7.074000px;}
.ws8a{word-spacing:7.128000px;}
.ws24{word-spacing:7.290000px;}
.wsb0{word-spacing:7.344000px;}
.ws10c{word-spacing:7.380000px;}
.wsbf{word-spacing:7.452000px;}
.ws29{word-spacing:7.506000px;}
.wsa1{word-spacing:7.668000px;}
.ws1a{word-spacing:7.755000px;}
.ws53{word-spacing:7.776000px;}
.wsc0{word-spacing:7.884000px;}
.wsc1{word-spacing:7.938000px;}
.ws11a{word-spacing:8.055000px;}
.ws118{word-spacing:8.100000px;}
.wsd1{word-spacing:8.107200px;}
.ws30{word-spacing:8.115000px;}
.ws85{word-spacing:8.154000px;}
.ws125{word-spacing:8.175000px;}
.ws124{word-spacing:8.190000px;}
.ws25{word-spacing:8.262000px;}
.ws120{word-spacing:8.325000px;}
.ws20{word-spacing:8.424000px;}
.ws6a{word-spacing:8.505600px;}
.ws27{word-spacing:8.640000px;}
.ws28{word-spacing:8.694000px;}
.wsb9{word-spacing:8.748000px;}
.wsd7{word-spacing:8.856000px;}
.ws69{word-spacing:8.910000px;}
.ws67{word-spacing:8.964000px;}
.wsf8{word-spacing:9.018000px;}
.ws60{word-spacing:9.039600px;}
.ws34{word-spacing:9.126000px;}
.ws82{word-spacing:9.180000px;}
.wse5{word-spacing:9.234000px;}
.ws45{word-spacing:9.285000px;}
.ws47{word-spacing:9.291000px;}
.ws57{word-spacing:9.450000px;}
.ws37{word-spacing:9.558000px;}
.ws62{word-spacing:9.666000px;}
.wsfb{word-spacing:9.707582px;}
.wsf2{word-spacing:9.828000px;}
.wsf3{word-spacing:9.882000px;}
.ws9f{word-spacing:9.936000px;}
.ws132{word-spacing:9.939000px;}
.ws131{word-spacing:9.945000px;}
.ws122{word-spacing:10.080000px;}
.wsa6{word-spacing:10.152000px;}
.ws11e{word-spacing:10.173000px;}
.ws72{word-spacing:10.260000px;}
.ws71{word-spacing:10.284000px;}
.wsa0{word-spacing:10.368000px;}
.ws65{word-spacing:10.584000px;}
.wsf4{word-spacing:10.638000px;}
.ws70{word-spacing:10.692000px;}
.wsa2{word-spacing:10.746000px;}
.ws104{word-spacing:10.836000px;}
.ws10b{word-spacing:10.845000px;}
.wsf9{word-spacing:10.848000px;}
.ws7d{word-spacing:10.854000px;}
.wsbb{word-spacing:10.962000px;}
.wsbc{word-spacing:11.016000px;}
.wsd3{word-spacing:11.053200px;}
.wsbd{word-spacing:11.070000px;}
.ws7f{word-spacing:11.124000px;}
.ws93{word-spacing:11.178000px;}
.wsb1{word-spacing:11.232000px;}
.wse7{word-spacing:11.286000px;}
.ws11{word-spacing:11.394000px;}
.ws8{word-spacing:11.472000px;}
.ws95{word-spacing:11.772000px;}
.ws54{word-spacing:11.880000px;}
.ws4c{word-spacing:12.042000px;}
.ws5e{word-spacing:12.096000px;}
.ws9b{word-spacing:12.204000px;}
.ws7{word-spacing:12.288000px;}
.wsf{word-spacing:12.312000px;}
.ws6e{word-spacing:12.366000px;}
.wsa5{word-spacing:12.420000px;}
.ws1d{word-spacing:12.485400px;}
.ws8c{word-spacing:12.528000px;}
.wsc9{word-spacing:12.540000px;}
.ws8d{word-spacing:12.636000px;}
.ws10{word-spacing:12.744000px;}
.ws15{word-spacing:13.176000px;}
.ws59{word-spacing:13.230000px;}
.ws5b{word-spacing:13.392000px;}
.ws91{word-spacing:13.446000px;}
.ws12{word-spacing:13.716000px;}
.ws2c{word-spacing:13.875600px;}
.ws8b{word-spacing:13.911600px;}
.ws68{word-spacing:13.986000px;}
.wsc2{word-spacing:14.040000px;}
.ws92{word-spacing:14.580000px;}
.ws73{word-spacing:14.796000px;}
.ws74{word-spacing:14.814000px;}
.ws98{word-spacing:15.012000px;}
.ws21{word-spacing:15.087000px;}
.ws56{word-spacing:15.174000px;}
.ws97{word-spacing:15.228000px;}
.ws7a{word-spacing:15.390000px;}
.ws8f{word-spacing:15.708000px;}
.ws13{word-spacing:15.714000px;}
.ws2d{word-spacing:15.984000px;}
.wsdd{word-spacing:16.200000px;}
.wsb3{word-spacing:16.272000px;}
.ws16{word-spacing:16.416000px;}
.ws75{word-spacing:16.596000px;}
.ws31{word-spacing:16.740000px;}
.wse{word-spacing:16.956000px;}
.wsa3{word-spacing:17.535600px;}
.ws80{word-spacing:17.937600px;}
.ws119{word-spacing:18.405000px;}
.ws55{word-spacing:18.681600px;}
.wsdf{word-spacing:18.684000px;}
.ws6f{word-spacing:19.173600px;}
.wse2{word-spacing:19.440000px;}
.ws3{word-spacing:19.869542px;}
.wse1{word-spacing:20.358000px;}
.wse0{word-spacing:21.168000px;}
.wse6{word-spacing:22.410000px;}
.ws115{word-spacing:25.110000px;}
.wsdc{word-spacing:26.352000px;}
.wsda{word-spacing:27.756000px;}
.wsdb{word-spacing:35.046000px;}
.wsd9{word-spacing:37.206000px;}
.wsde{word-spacing:64.044000px;}
.ws6{word-spacing:97.578000px;}
.ws107{word-spacing:182.790000px;}
.ws4{word-spacing:197.202000px;}
.wsff{word-spacing:235.466400px;}
.wsfe{word-spacing:298.050000px;}
._6{margin-left:-6.000000px;}
._4{margin-left:-4.657518px;}
._3{margin-left:-3.111800px;}
._0{margin-left:-1.007767px;}
._1{width:2.789065px;}
._b{width:8.217600px;}
._8{width:9.666000px;}
._9{width:10.800000px;}
._7{width:11.901416px;}
._2{width:23.682526px;}
._c{width:82.134000px;}
._10{width:88.074000px;}
._d{width:94.554000px;}
._13{width:106.704000px;}
._11{width:108.450000px;}
._e{width:116.640000px;}
._16{width:119.664000px;}
._14{width:124.434000px;}
._12{width:133.002000px;}
._f{width:152.550000px;}
._15{width:158.922000px;}
._18{width:191.862000px;}
._17{width:215.244000px;}
._19{width:456.192000px;}
._5{width:1553.954707px;}
._a{width:1939.146000px;}
.fc7{color:rgb(83,172,228);}
.fc6{color:rgb(247,146,84);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(26,26,26);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(29,27,27);}
.fc1{color:rgb(100,98,98);}
.fc0{color:rgb(0,102,204);}
.fs12{font-size:24.000000px;}
.fs10{font-size:27.000000px;}
.fs13{font-size:29.887800px;}
.fs15{font-size:30.000000px;}
.fsb{font-size:31.500000px;}
.fs11{font-size:33.600000px;}
.fs6{font-size:36.000000px;}
.fsf{font-size:37.200000px;}
.fse{font-size:37.800000px;}
.fs4{font-size:41.835958px;}
.fs14{font-size:42.000000px;}
.fs16{font-size:45.000000px;}
.fsd{font-size:47.820600px;}
.fsc{font-size:48.000000px;}
.fs2{font-size:48.808618px;}
.fsa{font-size:53.798400px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:55.781278px;}
.fs5{font-size:62.753937px;}
.fs7{font-size:71.731200px;}
.fs3{font-size:83.671917px;}
.fs9{font-size:120.000000px;}
.fs0{font-size:174.316493px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.949272px;}
.y3f{bottom:61.180500px;}
.y3e{bottom:80.710500px;}
.y11d{bottom:147.529500px;}
.y148{bottom:150.519000px;}
.y17a{bottom:155.776500px;}
.yf0{bottom:156.282000px;}
.y11c{bottom:163.279500px;}
.y179{bottom:165.963000px;}
.y147{bottom:166.269000px;}
.yef{bottom:169.782000px;}
.y3d{bottom:173.578500px;}
.yc1{bottom:177.669000px;}
.yda{bottom:177.702000px;}
.y11b{bottom:179.029500px;}
.y178{bottom:179.730000px;}
.y146{bottom:182.019000px;}
.ya0{bottom:182.350500px;}
.y78{bottom:182.715000px;}
.yee{bottom:183.282000px;}
.y3c{bottom:189.328500px;}
.yc0{bottom:193.419000px;}
.yd9{bottom:193.452000px;}
.y11a{bottom:194.779500px;}
.yed{bottom:196.782000px;}
.y145{bottom:197.769000px;}
.y9f{bottom:198.100500px;}
.y77{bottom:198.465000px;}
.y177{bottom:198.573000px;}
.y3b{bottom:205.078500px;}
.y176{bottom:208.759500px;}
.ybf{bottom:209.169000px;}
.yd8{bottom:209.202000px;}
.yec{bottom:210.282000px;}
.y119{bottom:210.529500px;}
.y144{bottom:213.519000px;}
.y9e{bottom:213.850500px;}
.y76{bottom:214.215000px;}
.y3a{bottom:220.828500px;}
.y175{bottom:222.528000px;}
.yeb{bottom:223.782000px;}
.ybe{bottom:225.666000px;}
.yd7{bottom:225.699000px;}
.y118{bottom:226.279500px;}
.y143{bottom:229.269000px;}
.y9d{bottom:229.600500px;}
.y75{bottom:229.965000px;}
.y174{bottom:236.295000px;}
.y39{bottom:236.578500px;}
.yea{bottom:237.282000px;}
.yd6{bottom:240.702000px;}
.ybd{bottom:241.416000px;}
.y117{bottom:242.029500px;}
.y142{bottom:245.019000px;}
.y9c{bottom:245.350500px;}
.y74{bottom:245.715000px;}
.y38{bottom:252.328500px;}
.y173{bottom:255.136500px;}
.yd5{bottom:256.452000px;}
.y116{bottom:257.779500px;}
.y141{bottom:260.769000px;}
.y73{bottom:261.465000px;}
.y9b{bottom:261.847500px;}
.y172{bottom:265.324500px;}
.y37{bottom:268.078500px;}
.ybc{bottom:272.916000px;}
.yd4{bottom:272.949000px;}
.y115{bottom:273.529500px;}
.y140{bottom:276.519000px;}
.y72{bottom:277.215000px;}
.y9a{bottom:277.597500px;}
.y36{bottom:283.828500px;}
.y171{bottom:284.166000px;}
.yd3{bottom:288.699000px;}
.ybb{bottom:289.414500px;}
.y71{bottom:292.965000px;}
.y99{bottom:293.347500px;}
.y170{bottom:294.352500px;}
.y114{bottom:298.246500px;}
.y35{bottom:299.578500px;}
.y13f{bottom:301.236000px;}
.yba{bottom:305.164500px;}
.yd2{bottom:305.196000px;}
.y70{bottom:308.715000px;}
.y98{bottom:309.097500px;}
.y16f{bottom:313.195500px;}
.y34{bottom:315.328500px;}
.y13e{bottom:316.236000px;}
.yb9{bottom:320.914500px;}
.yd1{bottom:321.693000px;}
.y16e{bottom:323.382000px;}
.y6f{bottom:324.465000px;}
.y97{bottom:324.847500px;}
.y33{bottom:331.078500px;}
.y16d{bottom:337.149000px;}
.yb8{bottom:337.411500px;}
.yd0{bottom:337.443000px;}
.y113{bottom:337.545000px;}
.y6e{bottom:340.215000px;}
.y96{bottom:340.597500px;}
.y32{bottom:346.828500px;}
.y13d{bottom:352.197000px;}
.ycf{bottom:353.193000px;}
.yb7{bottom:353.908500px;}
.y6d{bottom:355.965000px;}
.y16c{bottom:355.992000px;}
.y95{bottom:356.347500px;}
.y112{bottom:362.262000px;}
.y31{bottom:362.578500px;}
.y16b{bottom:366.178500px;}
.yb6{bottom:369.658500px;}
.yce{bottom:370.801500px;}
.y6c{bottom:371.715000px;}
.y94{bottom:372.097500px;}
.y13c{bottom:376.647000px;}
.y30{bottom:378.328500px;}
.y16a{bottom:379.945500px;}
.yb5{bottom:385.408500px;}
.y13b{bottom:386.062500px;}
.y111{bottom:386.229000px;}
.ycd{bottom:386.551500px;}
.y6b{bottom:387.465000px;}
.y93{bottom:387.847500px;}
.y2f{bottom:394.078500px;}
.y169{bottom:398.788500px;}
.yb4{bottom:401.905500px;}
.ycc{bottom:402.301500px;}
.y6a{bottom:403.215000px;}
.y92{bottom:403.597500px;}
.y168{bottom:408.975000px;}
.y2e{bottom:409.828500px;}
.yb3{bottom:417.655500px;}
.ycb{bottom:418.051500px;}
.y69{bottom:418.965000px;}
.y91{bottom:419.347500px;}
.y13a{bottom:422.194500px;}
.y167{bottom:422.742000px;}
.y2d{bottom:425.578500px;}
.y110{bottom:431.116500px;}
.yca{bottom:433.801500px;}
.yb2{bottom:434.152500px;}
.y68{bottom:434.715000px;}
.y139{bottom:437.944500px;}
.y2c{bottom:441.328500px;}
.y166{bottom:441.585000px;}
.y10f{bottom:446.866500px;}
.yc9{bottom:449.551500px;}
.yb1{bottom:449.902500px;}
.y67{bottom:450.465000px;}
.y165{bottom:451.771500px;}
.y138{bottom:453.694500px;}
.y2b{bottom:457.078500px;}
.y90{bottom:460.981500px;}
.y10e{bottom:462.616500px;}
.yc8{bottom:465.301500px;}
.y164{bottom:465.538500px;}
.yb0{bottom:465.652500px;}
.y66{bottom:466.215000px;}
.y137{bottom:469.444500px;}
.y8f{bottom:470.398500px;}
.y2a{bottom:472.828500px;}
.y10d{bottom:478.366500px;}
.yaf{bottom:481.402500px;}
.y65{bottom:481.965000px;}
.yc7{bottom:482.896500px;}
.y163{bottom:484.381500px;}
.y29{bottom:488.578500px;}
.y10c{bottom:494.116500px;}
.y136{bottom:494.614500px;}
.yae{bottom:497.152500px;}
.y64{bottom:497.715000px;}
.yc6{bottom:498.646500px;}
.y162{bottom:502.041000px;}
.y135{bottom:504.030000px;}
.y28{bottom:504.328500px;}
.y10b{bottom:509.866500px;}
.yad{bottom:512.902500px;}
.y63{bottom:513.465000px;}
.yc5{bottom:514.396500px;}
.y8e{bottom:523.452000px;}
.y10a{bottom:525.616500px;}
.yac{bottom:528.652500px;}
.y62{bottom:529.215000px;}
.yc4{bottom:529.399500px;}
.y134{bottom:538.374000px;}
.y8d{bottom:539.202000px;}
.y109{bottom:541.366500px;}
.yab{bottom:544.402500px;}
.y61{bottom:544.965000px;}
.yc3{bottom:545.149500px;}
.y161{bottom:549.916500px;}
.y133{bottom:554.124000px;}
.y8c{bottom:554.952000px;}
.y108{bottom:557.116500px;}
.yaa{bottom:560.152500px;}
.y60{bottom:560.715000px;}
.yc2{bottom:560.899500px;}
.y160{bottom:565.666500px;}
.y132{bottom:569.874000px;}
.y8b{bottom:570.702000px;}
.y27{bottom:572.764500px;}
.y107{bottom:572.866500px;}
.y5f{bottom:576.465000px;}
.ya9{bottom:576.649500px;}
.y8a{bottom:586.452000px;}
.y26{bottom:588.514500px;}
.y106{bottom:588.616500px;}
.y5e{bottom:592.215000px;}
.ya8{bottom:592.399500px;}
.y15f{bottom:597.166500px;}
.y131{bottom:599.134500px;}
.y89{bottom:602.202000px;}
.y5d{bottom:607.965000px;}
.ya7{bottom:608.149500px;}
.y25{bottom:610.851000px;}
.y15e{bottom:612.916500px;}
.y105{bottom:617.815500px;}
.y88{bottom:617.952000px;}
.y5c{bottom:623.715000px;}
.ya6{bottom:623.899500px;}
.y24{bottom:626.601000px;}
.y15d{bottom:628.666500px;}
.y130{bottom:631.906500px;}
.ye9{bottom:633.462000px;}
.y104{bottom:633.565500px;}
.y87{bottom:633.702000px;}
.y5b{bottom:639.465000px;}
.ya5{bottom:639.649500px;}
.y23{bottom:642.351000px;}
.y15c{bottom:644.416500px;}
.y40{bottom:647.505000px;}
.y12f{bottom:647.656500px;}
.ye8{bottom:649.212000px;}
.y86{bottom:649.452000px;}
.y5a{bottom:655.215000px;}
.ya4{bottom:655.399500px;}
.y22{bottom:658.101000px;}
.ye7{bottom:664.962000px;}
.y85{bottom:665.202000px;}
.y103{bottom:667.248000px;}
.y59{bottom:670.965000px;}
.ya3{bottom:671.149500px;}
.y12{bottom:671.990080px;}
.y21{bottom:673.851000px;}
.y12e{bottom:676.917000px;}
.ye6{bottom:680.712000px;}
.y84{bottom:680.952000px;}
.y102{bottom:682.998000px;}
.y13{bottom:685.005000px;}
.y58{bottom:686.715000px;}
.y11{bottom:694.651224px;}
.y20{bottom:696.157500px;}
.ye5{bottom:696.462000px;}
.y83{bottom:696.702000px;}
.y101{bottom:698.748000px;}
.y57{bottom:702.465000px;}
.y15b{bottom:707.577000px;}
.y12d{bottom:710.178000px;}
.ye4{bottom:712.212000px;}
.y82{bottom:714.297000px;}
.y100{bottom:714.498000px;}
.y56{bottom:718.215000px;}
.y10{bottom:719.055533px;}
.y15a{bottom:723.327000px;}
.y12c{bottom:725.928000px;}
.ye3{bottom:727.962000px;}
.y81{bottom:730.047000px;}
.yff{bottom:730.248000px;}
.ya2{bottom:731.641500px;}
.y55{bottom:733.965000px;}
.y159{bottom:739.077000px;}
.y12b{bottom:741.678000px;}
.yf{bottom:741.716677px;}
.ye2{bottom:743.712000px;}
.y1f{bottom:744.111000px;}
.ya1{bottom:745.141500px;}
.y80{bottom:745.797000px;}
.yfe{bottom:745.998000px;}
.y54{bottom:749.715000px;}
.y12a{bottom:757.428000px;}
.ye1{bottom:759.462000px;}
.y7f{bottom:761.547000px;}
.yfd{bottom:761.748000px;}
.y53{bottom:765.465000px;}
.y158{bottom:765.646500px;}
.ye{bottom:766.120986px;}
.y18f{bottom:769.513500px;}
.y129{bottom:773.178000px;}
.y1e{bottom:774.198000px;}
.y7e{bottom:777.297000px;}
.yfc{bottom:777.498000px;}
.y52{bottom:781.215000px;}
.y18e{bottom:782.962500px;}
.yd{bottom:788.782130px;}
.y128{bottom:788.928000px;}
.y157{bottom:792.033000px;}
.y1d{bottom:792.187500px;}
.yfb{bottom:793.248000px;}
.y51{bottom:796.965000px;}
.y18d{bottom:801.487500px;}
.y127{bottom:804.678000px;}
.y156{bottom:805.482000px;}
.yc{bottom:807.956944px;}
.yfa{bottom:808.998000px;}
.y1c{bottom:810.175500px;}
.y18c{bottom:811.356000px;}
.y50{bottom:812.715000px;}
.y155{bottom:818.931000px;}
.y126{bottom:820.428000px;}
.ye0{bottom:821.052000px;}
.yf9{bottom:824.748000px;}
.y18b{bottom:824.806500px;}
.y4f{bottom:828.465000px;}
.y1b{bottom:829.359000px;}
.ydf{bottom:834.552000px;}
.y125{bottom:836.178000px;}
.yf8{bottom:840.498000px;}
.y7d{bottom:841.014000px;}
.yb{bottom:841.077077px;}
.y18a{bottom:843.330000px;}
.y4e{bottom:844.215000px;}
.yde{bottom:848.052000px;}
.y124{bottom:851.928000px;}
.y189{bottom:853.200000px;}
.y7c{bottom:854.514000px;}
.yf7{bottom:856.248000px;}
.y4d{bottom:859.965000px;}
.y1a{bottom:861.078000px;}
.ydd{bottom:861.552000px;}
.y154{bottom:861.694500px;}
.y197{bottom:866.649000px;}
.y123{bottom:867.678000px;}
.y7b{bottom:868.014000px;}
.y188{bottom:871.723500px;}
.yf6{bottom:871.998000px;}
.y153{bottom:875.193000px;}
.y4c{bottom:875.715000px;}
.ydc{bottom:877.507500px;}
.y7a{bottom:881.514000px;}
.y187{bottom:881.593500px;}
.y122{bottom:883.428000px;}
.y196{bottom:885.172500px;}
.yf5{bottom:887.748000px;}
.ydb{bottom:891.007500px;}
.y4b{bottom:891.465000px;}
.y4{bottom:892.500443px;}
.y79{bottom:895.014000px;}
.y186{bottom:895.042500px;}
.y152{bottom:895.792500px;}
.y19{bottom:896.683500px;}
.yf4{bottom:903.498000px;}
.y3{bottom:906.445762px;}
.y4a{bottom:907.215000px;}
.y121{bottom:908.145000px;}
.y195{bottom:908.491500px;}
.y151{bottom:913.114500px;}
.y185{bottom:913.566000px;}
.y18{bottom:914.617500px;}
.y2{bottom:920.391082px;}
.yf3{bottom:921.106500px;}
.y49{bottom:922.965000px;}
.y184{bottom:923.436000px;}
.y194{bottom:927.016500px;}
.y150{bottom:930.436500px;}
.y17{bottom:931.578000px;}
.yf2{bottom:936.856500px;}
.y183{bottom:936.885000px;}
.y193{bottom:937.633500px;}
.y48{bottom:938.715000px;}
.y120{bottom:944.065500px;}
.y192{bottom:951.082500px;}
.yf1{bottom:952.606500px;}
.y47{bottom:954.465000px;}
.y182{bottom:955.410000px;}
.y14f{bottom:957.004500px;}
.y11f{bottom:959.815500px;}
.y181{bottom:965.278500px;}
.y191{bottom:969.606000px;}
.y46{bottom:970.215000px;}
.y190{bottom:980.223000px;}
.y11e{bottom:981.543000px;}
.y14e{bottom:983.391000px;}
.y180{bottom:983.803500px;}
.y45{bottom:985.965000px;}
.y16{bottom:987.507000px;}
.ya{bottom:992.732426px;}
.y17f{bottom:993.672000px;}
.y14d{bottom:996.840000px;}
.y44{bottom:1001.715000px;}
.y9{bottom:1009.292493px;}
.y14c{bottom:1010.290500px;}
.y17e{bottom:1012.197000px;}
.y43{bottom:1017.465000px;}
.y17d{bottom:1022.065500px;}
.y15{bottom:1023.507000px;}
.y14b{bottom:1023.739500px;}
.y42{bottom:1033.215000px;}
.y17c{bottom:1035.516000px;}
.y14a{bottom:1037.188500px;}
.y41{bottom:1048.965000px;}
.y149{bottom:1050.639000px;}
.y17b{bottom:1054.039500px;}
.y8{bottom:1061.587441px;}
.y7{bottom:1085.991750px;}
.y6{bottom:1112.139224px;}
.y14{bottom:1119.328500px;}
.y5{bottom:1139.158280px;}
.h9{height:26.226562px;}
.h21{height:29.559034px;}
.h7{height:30.478149px;}
.hf{height:33.894000px;}
.h22{height:34.800000px;}
.h4{height:35.557841px;}
.h10{height:37.591896px;}
.h3{height:40.637532px;}
.h23{height:44.505000px;}
.h25{height:45.090000px;}
.h8{height:45.686582px;}
.h6{height:45.758079px;}
.h24{height:46.080000px;}
.h20{height:51.933172px;}
.h17{height:52.128000px;}
.h16{height:53.232000px;}
.h12{height:53.406000px;}
.h13{height:54.108000px;}
.h15{height:54.760800px;}
.h1b{height:55.296000px;}
.h18{height:58.212000px;}
.h5{height:60.915443px;}
.h14{height:61.330200px;}
.h11{height:62.406144px;}
.he{height:62.640000px;}
.hd{height:63.072000px;}
.h1c{height:64.821600px;}
.hb{height:65.580000px;}
.h19{height:88.902000px;}
.h1d{height:88.908000px;}
.h1f{height:95.874000px;}
.h1a{height:95.880000px;}
.h1e{height:102.489600px;}
.hc{height:139.200000px;}
.h2{height:163.421712px;}
.ha{height:1188.000000px;}
.h1{height:1262.050728px;}
.h0{height:1263.000000px;}
.w1{width:891.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xf{left:43.741500px;}
.xb{left:52.707000px;}
.xc{left:66.157500px;}
.x15{left:72.135000px;}
.xd{left:93.055500px;}
.x1a{left:152.382000px;}
.x18{left:156.102000px;}
.x6{left:179.545988px;}
.x7{left:181.289152px;}
.x17{left:187.137000px;}
.x19{left:189.265500px;}
.x16{left:192.345000px;}
.x8{left:194.362889px;}
.x9{left:196.106054px;}
.xe{left:459.157500px;}
.x11{left:465.135000px;}
.x14{left:486.055500px;}
.x12{left:545.755500px;}
.x1b{left:552.700500px;}
.x13{left:572.770500px;}
.x1c{left:607.198500px;}
.x1{left:667.632167px;}
.x3{left:669.266384px;}
.x2{left:674.427791px;}
.x4{left:728.642940px;}
.x5{left:730.277157px;}
.x10{left:869.250000px;}
.xa{left:870.750000px;}
@media print{
.vc{vertical-align:-56.000000pt;}
.v14{vertical-align:-18.042667pt;}
.v13{vertical-align:-16.842667pt;}
.v4{vertical-align:-15.952000pt;}
.v6{vertical-align:-14.992000pt;}
.vd{vertical-align:-13.994667pt;}
.va{vertical-align:-10.933333pt;}
.v2{vertical-align:-8.384000pt;}
.v10{vertical-align:-7.482667pt;}
.v7{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.061333pt;}
.v5{vertical-align:15.973333pt;}
.vf{vertical-align:18.352000pt;}
.v3{vertical-align:21.285333pt;}
.vb{vertical-align:22.549333pt;}
.ve{vertical-align:23.952000pt;}
.v8{vertical-align:31.552000pt;}
.v9{vertical-align:33.482667pt;}
.v11{vertical-align:44.352000pt;}
.v12{vertical-align:57.434667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls65{letter-spacing:0.000160pt;}
.ls5e{letter-spacing:0.000427pt;}
.ls5d{letter-spacing:0.000533pt;}
.ls1d{letter-spacing:0.001067pt;}
.ls59{letter-spacing:0.001600pt;}
.ls3f{letter-spacing:0.002133pt;}
.ls5a{letter-spacing:0.003200pt;}
.ls61{letter-spacing:0.006933pt;}
.ls48{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.768000pt;}
.ls43{letter-spacing:1.194667pt;}
.ls3e{letter-spacing:1.344000pt;}
.ls49{letter-spacing:1.450667pt;}
.ls5b{letter-spacing:1.632000pt;}
.ls72{letter-spacing:2.653331pt;}
.ls6b{letter-spacing:2.653333pt;}
.ls30{letter-spacing:2.655467pt;}
.lse{letter-spacing:2.656000pt;}
.ls60{letter-spacing:2.656427pt;}
.ls34{letter-spacing:2.657067pt;}
.ls71{letter-spacing:2.657116pt;}
.ls5f{letter-spacing:2.658667pt;}
.ls22{letter-spacing:2.660800pt;}
.ls13{letter-spacing:2.661333pt;}
.ls2a{letter-spacing:3.985067pt;}
.ls53{letter-spacing:3.985600pt;}
.ls55{letter-spacing:3.987733pt;}
.ls7{letter-spacing:4.560000pt;}
.ls6{letter-spacing:4.616000pt;}
.ls64{letter-spacing:5.312000pt;}
.ls63{letter-spacing:5.317333pt;}
.ls1{letter-spacing:6.197920pt;}
.ls1a{letter-spacing:6.378667pt;}
.ls57{letter-spacing:7.306667pt;}
.ls25{letter-spacing:8.505067pt;}
.ls26{letter-spacing:8.512000pt;}
.ls47{letter-spacing:8.950400pt;}
.ls44{letter-spacing:8.954667pt;}
.ls45{letter-spacing:8.955733pt;}
.ls4a{letter-spacing:9.541333pt;}
.ls4b{letter-spacing:9.546667pt;}
.ls29{letter-spacing:9.728000pt;}
.ls2c{letter-spacing:9.729067pt;}
.ls1c{letter-spacing:9.737067pt;}
.ls1f{letter-spacing:9.742400pt;}
.ls1b{letter-spacing:9.744000pt;}
.ls5{letter-spacing:10.160000pt;}
.ls38{letter-spacing:10.204800pt;}
.ls70{letter-spacing:10.896000pt;}
.ls4c{letter-spacing:10.997333pt;}
.ls28{letter-spacing:11.190400pt;}
.ls39{letter-spacing:11.330133pt;}
.ls3a{letter-spacing:11.380800pt;}
.ls4f{letter-spacing:11.472533pt;}
.ls56{letter-spacing:12.176000pt;}
.ls3d{letter-spacing:12.178133pt;}
.ls69{letter-spacing:12.179200pt;}
.ls6a{letter-spacing:12.395093pt;}
.ls21{letter-spacing:12.400533pt;}
.ls52{letter-spacing:12.673067pt;}
.ls24{letter-spacing:12.723733pt;}
.ls4d{letter-spacing:12.756267pt;}
.ls58{letter-spacing:12.761067pt;}
.ls2b{letter-spacing:12.768000pt;}
.ls27{letter-spacing:12.773333pt;}
.ls74{letter-spacing:13.552000pt;}
.ls42{letter-spacing:13.845333pt;}
.ls41{letter-spacing:13.850667pt;}
.ls3b{letter-spacing:14.037333pt;}
.ls46{letter-spacing:14.266667pt;}
.ls50{letter-spacing:14.267200pt;}
.ls3{letter-spacing:14.398720pt;}
.ls4e{letter-spacing:14.831467pt;}
.ls5c{letter-spacing:14.832000pt;}
.ls6d{letter-spacing:14.832533pt;}
.ls3c{letter-spacing:14.836800pt;}
.ls68{letter-spacing:14.837333pt;}
.ls18{letter-spacing:14.837867pt;}
.ls20{letter-spacing:15.050667pt;}
.ls1e{letter-spacing:15.056000pt;}
.ls8{letter-spacing:15.120000pt;}
.ls11{letter-spacing:15.344000pt;}
.ls12{letter-spacing:15.346133pt;}
.ls14{letter-spacing:15.349333pt;}
.ls15{letter-spacing:15.354667pt;}
.ls54{letter-spacing:15.420800pt;}
.ls33{letter-spacing:15.439467pt;}
.ls32{letter-spacing:15.440000pt;}
.lsa{letter-spacing:15.632000pt;}
.ls9{letter-spacing:16.176000pt;}
.ls75{letter-spacing:16.202667pt;}
.ls67{letter-spacing:16.880000pt;}
.ls31{letter-spacing:17.285333pt;}
.ls37{letter-spacing:17.429333pt;}
.ls40{letter-spacing:17.845333pt;}
.ls2e{letter-spacing:18.074667pt;}
.ls19{letter-spacing:18.551467pt;}
.ls6e{letter-spacing:18.556800pt;}
.ls2f{letter-spacing:18.688000pt;}
.ls51{letter-spacing:19.413867pt;}
.ls36{letter-spacing:19.488000pt;}
.lsb{letter-spacing:20.912000pt;}
.lsc{letter-spacing:21.248000pt;}
.ls35{letter-spacing:21.280000pt;}
.lsd{letter-spacing:22.688000pt;}
.ls10{letter-spacing:23.222400pt;}
.lsf{letter-spacing:24.058667pt;}
.ls17{letter-spacing:24.864533pt;}
.ls2d{letter-spacing:26.501333pt;}
.ls0{letter-spacing:37.142124pt;}
.ls4{letter-spacing:95.140000pt;}
.ls6f{letter-spacing:217.488000pt;}
.ls6c{letter-spacing:230.714667pt;}
.ls23{letter-spacing:251.861333pt;}
.ls66{letter-spacing:341.061333pt;}
.ls73{letter-spacing:355.706667pt;}
.ls62{letter-spacing:359.578667pt;}
.ws18{word-spacing:-28.512000pt;}
.wsb6{word-spacing:-25.344000pt;}
.ws103{word-spacing:-22.176000pt;}
.ws83{word-spacing:-20.961600pt;}
.wsec{word-spacing:-19.958400pt;}
.ws0{word-spacing:-13.775845pt;}
.ws1{word-spacing:-12.053864pt;}
.ws19{word-spacing:-10.896000pt;}
.wsb5{word-spacing:-9.728000pt;}
.ws11b{word-spacing:-9.080000pt;}
.ws11f{word-spacing:-8.000000pt;}
.wsee{word-spacing:-7.627200pt;}
.ws10a{word-spacing:-1.152000pt;}
.ws23{word-spacing:-1.056000pt;}
.wsa7{word-spacing:-1.008000pt;}
.wsb2{word-spacing:-0.960000pt;}
.wscf{word-spacing:-0.864000pt;}
.ws3b{word-spacing:-0.816000pt;}
.ws52{word-spacing:-0.768000pt;}
.wscb{word-spacing:-0.725333pt;}
.wsfa{word-spacing:-0.722622pt;}
.wse4{word-spacing:-0.480000pt;}
.ws11c{word-spacing:-0.440000pt;}
.wsaf{word-spacing:-0.432000pt;}
.ws7c{word-spacing:-0.384000pt;}
.wsea{word-spacing:-0.288000pt;}
.ws3f{word-spacing:-0.240000pt;}
.wsca{word-spacing:-0.197333pt;}
.ws9d{word-spacing:-0.192000pt;}
.wsc8{word-spacing:-0.170667pt;}
.ws4b{word-spacing:-0.096000pt;}
.ws127{word-spacing:-0.080000pt;}
.ws5{word-spacing:-0.048000pt;}
.ws42{word-spacing:-0.042667pt;}
.ws10d{word-spacing:-0.040000pt;}
.wsed{word-spacing:-0.033600pt;}
.ws9{word-spacing:-0.028000pt;}
.wsf0{word-spacing:-0.024000pt;}
.ws109{word-spacing:-0.021333pt;}
.ws101{word-spacing:-0.016000pt;}
.ws108{word-spacing:-0.010667pt;}
.ws41{word-spacing:-0.005333pt;}
.ws116{word-spacing:-0.002667pt;}
.ws2{word-spacing:0.000000pt;}
.ws100{word-spacing:0.005333pt;}
.ws102{word-spacing:0.010667pt;}
.ws128{word-spacing:0.040000pt;}
.ws12a{word-spacing:0.080000pt;}
.wsad{word-spacing:0.096000pt;}
.ws110{word-spacing:0.160000pt;}
.wsa{word-spacing:0.240000pt;}
.ws130{word-spacing:0.280000pt;}
.wse9{word-spacing:0.336000pt;}
.ws3a{word-spacing:0.384000pt;}
.ws105{word-spacing:0.467579pt;}
.ws39{word-spacing:0.480000pt;}
.ws113{word-spacing:0.520000pt;}
.ws88{word-spacing:0.576000pt;}
.ws5c{word-spacing:0.624000pt;}
.wsd6{word-spacing:0.672000pt;}
.ws10f{word-spacing:0.680000pt;}
.wsc7{word-spacing:0.682667pt;}
.wsce{word-spacing:0.698667pt;}
.ws64{word-spacing:0.720000pt;}
.ws3d{word-spacing:0.768000pt;}
.ws86{word-spacing:0.864000pt;}
.ws1b{word-spacing:0.960000pt;}
.ws17{word-spacing:0.965333pt;}
.ws11d{word-spacing:1.000000pt;}
.wsd8{word-spacing:1.008000pt;}
.ws38{word-spacing:1.056000pt;}
.wsc5{word-spacing:1.066667pt;}
.ws9e{word-spacing:1.200000pt;}
.ws2f{word-spacing:1.296000pt;}
.ws112{word-spacing:1.360000pt;}
.wsb8{word-spacing:1.365333pt;}
.wsa4{word-spacing:1.392000pt;}
.ws6b{word-spacing:1.488000pt;}
.wsb{word-spacing:1.536000pt;}
.wsef{word-spacing:1.680000pt;}
.wsb7{word-spacing:1.706667pt;}
.ws4e{word-spacing:1.776000pt;}
.ws87{word-spacing:1.824000pt;}
.wsac{word-spacing:1.872000pt;}
.wsab{word-spacing:1.882667pt;}
.ws36{word-spacing:1.920000pt;}
.ws5f{word-spacing:1.968000pt;}
.ws12c{word-spacing:2.000000pt;}
.ws22{word-spacing:2.064000pt;}
.ws12d{word-spacing:2.120000pt;}
.ws12f{word-spacing:2.160000pt;}
.wscd{word-spacing:2.208000pt;}
.ws89{word-spacing:2.256000pt;}
.ws44{word-spacing:2.304000pt;}
.ws46{word-spacing:2.352000pt;}
.wsc{word-spacing:2.496000pt;}
.ws1f{word-spacing:2.640000pt;}
.ws96{word-spacing:2.688000pt;}
.wsf5{word-spacing:2.736000pt;}
.ws111{word-spacing:2.760000pt;}
.ws77{word-spacing:2.773333pt;}
.wsc4{word-spacing:2.805333pt;}
.wsc3{word-spacing:2.816000pt;}
.ws40{word-spacing:2.832000pt;}
.ws114{word-spacing:2.880000pt;}
.ws10e{word-spacing:2.920000pt;}
.wse8{word-spacing:2.928000pt;}
.ws123{word-spacing:3.000000pt;}
.ws4a{word-spacing:3.168000pt;}
.ws9c{word-spacing:3.216000pt;}
.ws48{word-spacing:3.312000pt;}
.ws106{word-spacing:3.315562pt;}
.wsf1{word-spacing:3.333333pt;}
.ws3c{word-spacing:3.360000pt;}
.ws33{word-spacing:3.456000pt;}
.wsaa{word-spacing:3.504000pt;}
.ws12b{word-spacing:3.560000pt;}
.ws2e{word-spacing:3.696000pt;}
.ws66{word-spacing:3.744000pt;}
.wsf7{word-spacing:3.792000pt;}
.ws129{word-spacing:3.800000pt;}
.wsfc{word-spacing:3.868155pt;}
.wsd2{word-spacing:3.877333pt;}
.ws4d{word-spacing:3.888000pt;}
.wsae{word-spacing:4.032000pt;}
.ws126{word-spacing:4.040000pt;}
.ws81{word-spacing:4.080000pt;}
.wscc{word-spacing:4.176000pt;}
.wsd5{word-spacing:4.224000pt;}
.ws35{word-spacing:4.272000pt;}
.ws12e{word-spacing:4.280000pt;}
.ws90{word-spacing:4.309333pt;}
.wsc6{word-spacing:4.352000pt;}
.ws2a{word-spacing:4.416000pt;}
.ws7e{word-spacing:4.464000pt;}
.wsd4{word-spacing:4.490667pt;}
.ws32{word-spacing:4.512000pt;}
.ws3e{word-spacing:4.560000pt;}
.ws6c{word-spacing:4.608000pt;}
.ws94{word-spacing:4.656000pt;}
.ws43{word-spacing:4.704000pt;}
.wsb4{word-spacing:4.778667pt;}
.ws14{word-spacing:4.800000pt;}
.wsfd{word-spacing:4.845821pt;}
.ws50{word-spacing:4.896000pt;}
.ws4f{word-spacing:5.040000pt;}
.ws76{word-spacing:5.077333pt;}
.ws6d{word-spacing:5.088000pt;}
.wsa8{word-spacing:5.136000pt;}
.wsa9{word-spacing:5.141333pt;}
.ws1c{word-spacing:5.152000pt;}
.ws1e{word-spacing:5.184000pt;}
.wsbe{word-spacing:5.232000pt;}
.ws58{word-spacing:5.280000pt;}
.ws117{word-spacing:5.400000pt;}
.ws5d{word-spacing:5.424000pt;}
.ws79{word-spacing:5.461333pt;}
.wse3{word-spacing:5.472000pt;}
.ws51{word-spacing:5.520000pt;}
.ws63{word-spacing:5.568000pt;}
.wsd{word-spacing:5.664000pt;}
.ws99{word-spacing:5.712000pt;}
.ws121{word-spacing:5.720000pt;}
.wseb{word-spacing:5.760000pt;}
.wsd0{word-spacing:5.808000pt;}
.ws78{word-spacing:5.845333pt;}
.ws49{word-spacing:5.856000pt;}
.ws84{word-spacing:5.904000pt;}
.ws26{word-spacing:5.952000pt;}
.ws8e{word-spacing:6.000000pt;}
.ws5a{word-spacing:6.045867pt;}
.ws7b{word-spacing:6.048000pt;}
.wsf6{word-spacing:6.096000pt;}
.ws9a{word-spacing:6.144000pt;}
.wsba{word-spacing:6.192000pt;}
.ws61{word-spacing:6.240000pt;}
.ws2b{word-spacing:6.288000pt;}
.ws8a{word-spacing:6.336000pt;}
.ws24{word-spacing:6.480000pt;}
.wsb0{word-spacing:6.528000pt;}
.ws10c{word-spacing:6.560000pt;}
.wsbf{word-spacing:6.624000pt;}
.ws29{word-spacing:6.672000pt;}
.wsa1{word-spacing:6.816000pt;}
.ws1a{word-spacing:6.893333pt;}
.ws53{word-spacing:6.912000pt;}
.wsc0{word-spacing:7.008000pt;}
.wsc1{word-spacing:7.056000pt;}
.ws11a{word-spacing:7.160000pt;}
.ws118{word-spacing:7.200000pt;}
.wsd1{word-spacing:7.206400pt;}
.ws30{word-spacing:7.213333pt;}
.ws85{word-spacing:7.248000pt;}
.ws125{word-spacing:7.266667pt;}
.ws124{word-spacing:7.280000pt;}
.ws25{word-spacing:7.344000pt;}
.ws120{word-spacing:7.400000pt;}
.ws20{word-spacing:7.488000pt;}
.ws6a{word-spacing:7.560533pt;}
.ws27{word-spacing:7.680000pt;}
.ws28{word-spacing:7.728000pt;}
.wsb9{word-spacing:7.776000pt;}
.wsd7{word-spacing:7.872000pt;}
.ws69{word-spacing:7.920000pt;}
.ws67{word-spacing:7.968000pt;}
.wsf8{word-spacing:8.016000pt;}
.ws60{word-spacing:8.035200pt;}
.ws34{word-spacing:8.112000pt;}
.ws82{word-spacing:8.160000pt;}
.wse5{word-spacing:8.208000pt;}
.ws45{word-spacing:8.253333pt;}
.ws47{word-spacing:8.258667pt;}
.ws57{word-spacing:8.400000pt;}
.ws37{word-spacing:8.496000pt;}
.ws62{word-spacing:8.592000pt;}
.wsfb{word-spacing:8.628962pt;}
.wsf2{word-spacing:8.736000pt;}
.wsf3{word-spacing:8.784000pt;}
.ws9f{word-spacing:8.832000pt;}
.ws132{word-spacing:8.834667pt;}
.ws131{word-spacing:8.840000pt;}
.ws122{word-spacing:8.960000pt;}
.wsa6{word-spacing:9.024000pt;}
.ws11e{word-spacing:9.042667pt;}
.ws72{word-spacing:9.120000pt;}
.ws71{word-spacing:9.141333pt;}
.wsa0{word-spacing:9.216000pt;}
.ws65{word-spacing:9.408000pt;}
.wsf4{word-spacing:9.456000pt;}
.ws70{word-spacing:9.504000pt;}
.wsa2{word-spacing:9.552000pt;}
.ws104{word-spacing:9.632000pt;}
.ws10b{word-spacing:9.640000pt;}
.wsf9{word-spacing:9.642667pt;}
.ws7d{word-spacing:9.648000pt;}
.wsbb{word-spacing:9.744000pt;}
.wsbc{word-spacing:9.792000pt;}
.wsd3{word-spacing:9.825067pt;}
.wsbd{word-spacing:9.840000pt;}
.ws7f{word-spacing:9.888000pt;}
.ws93{word-spacing:9.936000pt;}
.wsb1{word-spacing:9.984000pt;}
.wse7{word-spacing:10.032000pt;}
.ws11{word-spacing:10.128000pt;}
.ws8{word-spacing:10.197333pt;}
.ws95{word-spacing:10.464000pt;}
.ws54{word-spacing:10.560000pt;}
.ws4c{word-spacing:10.704000pt;}
.ws5e{word-spacing:10.752000pt;}
.ws9b{word-spacing:10.848000pt;}
.ws7{word-spacing:10.922667pt;}
.wsf{word-spacing:10.944000pt;}
.ws6e{word-spacing:10.992000pt;}
.wsa5{word-spacing:11.040000pt;}
.ws1d{word-spacing:11.098133pt;}
.ws8c{word-spacing:11.136000pt;}
.wsc9{word-spacing:11.146667pt;}
.ws8d{word-spacing:11.232000pt;}
.ws10{word-spacing:11.328000pt;}
.ws15{word-spacing:11.712000pt;}
.ws59{word-spacing:11.760000pt;}
.ws5b{word-spacing:11.904000pt;}
.ws91{word-spacing:11.952000pt;}
.ws12{word-spacing:12.192000pt;}
.ws2c{word-spacing:12.333867pt;}
.ws8b{word-spacing:12.365867pt;}
.ws68{word-spacing:12.432000pt;}
.wsc2{word-spacing:12.480000pt;}
.ws92{word-spacing:12.960000pt;}
.ws73{word-spacing:13.152000pt;}
.ws74{word-spacing:13.168000pt;}
.ws98{word-spacing:13.344000pt;}
.ws21{word-spacing:13.410667pt;}
.ws56{word-spacing:13.488000pt;}
.ws97{word-spacing:13.536000pt;}
.ws7a{word-spacing:13.680000pt;}
.ws8f{word-spacing:13.962667pt;}
.ws13{word-spacing:13.968000pt;}
.ws2d{word-spacing:14.208000pt;}
.wsdd{word-spacing:14.400000pt;}
.wsb3{word-spacing:14.464000pt;}
.ws16{word-spacing:14.592000pt;}
.ws75{word-spacing:14.752000pt;}
.ws31{word-spacing:14.880000pt;}
.wse{word-spacing:15.072000pt;}
.wsa3{word-spacing:15.587200pt;}
.ws80{word-spacing:15.944533pt;}
.ws119{word-spacing:16.360000pt;}
.ws55{word-spacing:16.605867pt;}
.wsdf{word-spacing:16.608000pt;}
.ws6f{word-spacing:17.043200pt;}
.wse2{word-spacing:17.280000pt;}
.ws3{word-spacing:17.661815pt;}
.wse1{word-spacing:18.096000pt;}
.wse0{word-spacing:18.816000pt;}
.wse6{word-spacing:19.920000pt;}
.ws115{word-spacing:22.320000pt;}
.wsdc{word-spacing:23.424000pt;}
.wsda{word-spacing:24.672000pt;}
.wsdb{word-spacing:31.152000pt;}
.wsd9{word-spacing:33.072000pt;}
.wsde{word-spacing:56.928000pt;}
.ws6{word-spacing:86.736000pt;}
.ws107{word-spacing:162.480000pt;}
.ws4{word-spacing:175.290667pt;}
.wsff{word-spacing:209.303467pt;}
.wsfe{word-spacing:264.933333pt;}
._6{margin-left:-5.333333pt;}
._4{margin-left:-4.140016pt;}
._3{margin-left:-2.766045pt;}
._0{margin-left:-0.895793pt;}
._1{width:2.479169pt;}
._b{width:7.304533pt;}
._8{width:8.592000pt;}
._9{width:9.600000pt;}
._7{width:10.579037pt;}
._2{width:21.051134pt;}
._c{width:73.008000pt;}
._10{width:78.288000pt;}
._d{width:84.048000pt;}
._13{width:94.848000pt;}
._11{width:96.400000pt;}
._e{width:103.680000pt;}
._16{width:106.368000pt;}
._14{width:110.608000pt;}
._12{width:118.224000pt;}
._f{width:135.600000pt;}
._15{width:141.264000pt;}
._18{width:170.544000pt;}
._17{width:191.328000pt;}
._19{width:405.504000pt;}
._5{width:1381.293073pt;}
._a{width:1723.685333pt;}
.fs12{font-size:21.333333pt;}
.fs10{font-size:24.000000pt;}
.fs13{font-size:26.566933pt;}
.fs15{font-size:26.666667pt;}
.fsb{font-size:28.000000pt;}
.fs11{font-size:29.866667pt;}
.fs6{font-size:32.000000pt;}
.fsf{font-size:33.066667pt;}
.fse{font-size:33.600000pt;}
.fs4{font-size:37.187518pt;}
.fs14{font-size:37.333333pt;}
.fs16{font-size:40.000000pt;}
.fsd{font-size:42.507200pt;}
.fsc{font-size:42.666667pt;}
.fs2{font-size:43.385438pt;}
.fsa{font-size:47.820800pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:49.583358pt;}
.fs5{font-size:55.781278pt;}
.fs7{font-size:63.761067pt;}
.fs3{font-size:74.375037pt;}
.fs9{font-size:106.666667pt;}
.fs0{font-size:154.947994pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.843797pt;}
.y3f{bottom:54.382667pt;}
.y3e{bottom:71.742667pt;}
.y11d{bottom:131.137333pt;}
.y148{bottom:133.794667pt;}
.y17a{bottom:138.468000pt;}
.yf0{bottom:138.917333pt;}
.y11c{bottom:145.137333pt;}
.y179{bottom:147.522667pt;}
.y147{bottom:147.794667pt;}
.yef{bottom:150.917333pt;}
.y3d{bottom:154.292000pt;}
.yc1{bottom:157.928000pt;}
.yda{bottom:157.957333pt;}
.y11b{bottom:159.137333pt;}
.y178{bottom:159.760000pt;}
.y146{bottom:161.794667pt;}
.ya0{bottom:162.089333pt;}
.y78{bottom:162.413333pt;}
.yee{bottom:162.917333pt;}
.y3c{bottom:168.292000pt;}
.yc0{bottom:171.928000pt;}
.yd9{bottom:171.957333pt;}
.y11a{bottom:173.137333pt;}
.yed{bottom:174.917333pt;}
.y145{bottom:175.794667pt;}
.y9f{bottom:176.089333pt;}
.y77{bottom:176.413333pt;}
.y177{bottom:176.509333pt;}
.y3b{bottom:182.292000pt;}
.y176{bottom:185.564000pt;}
.ybf{bottom:185.928000pt;}
.yd8{bottom:185.957333pt;}
.yec{bottom:186.917333pt;}
.y119{bottom:187.137333pt;}
.y144{bottom:189.794667pt;}
.y9e{bottom:190.089333pt;}
.y76{bottom:190.413333pt;}
.y3a{bottom:196.292000pt;}
.y175{bottom:197.802667pt;}
.yeb{bottom:198.917333pt;}
.ybe{bottom:200.592000pt;}
.yd7{bottom:200.621333pt;}
.y118{bottom:201.137333pt;}
.y143{bottom:203.794667pt;}
.y9d{bottom:204.089333pt;}
.y75{bottom:204.413333pt;}
.y174{bottom:210.040000pt;}
.y39{bottom:210.292000pt;}
.yea{bottom:210.917333pt;}
.yd6{bottom:213.957333pt;}
.ybd{bottom:214.592000pt;}
.y117{bottom:215.137333pt;}
.y142{bottom:217.794667pt;}
.y9c{bottom:218.089333pt;}
.y74{bottom:218.413333pt;}
.y38{bottom:224.292000pt;}
.y173{bottom:226.788000pt;}
.yd5{bottom:227.957333pt;}
.y116{bottom:229.137333pt;}
.y141{bottom:231.794667pt;}
.y73{bottom:232.413333pt;}
.y9b{bottom:232.753333pt;}
.y172{bottom:235.844000pt;}
.y37{bottom:238.292000pt;}
.ybc{bottom:242.592000pt;}
.yd4{bottom:242.621333pt;}
.y115{bottom:243.137333pt;}
.y140{bottom:245.794667pt;}
.y72{bottom:246.413333pt;}
.y9a{bottom:246.753333pt;}
.y36{bottom:252.292000pt;}
.y171{bottom:252.592000pt;}
.yd3{bottom:256.621333pt;}
.ybb{bottom:257.257333pt;}
.y71{bottom:260.413333pt;}
.y99{bottom:260.753333pt;}
.y170{bottom:261.646667pt;}
.y114{bottom:265.108000pt;}
.y35{bottom:266.292000pt;}
.y13f{bottom:267.765333pt;}
.yba{bottom:271.257333pt;}
.yd2{bottom:271.285333pt;}
.y70{bottom:274.413333pt;}
.y98{bottom:274.753333pt;}
.y16f{bottom:278.396000pt;}
.y34{bottom:280.292000pt;}
.y13e{bottom:281.098667pt;}
.yb9{bottom:285.257333pt;}
.yd1{bottom:285.949333pt;}
.y16e{bottom:287.450667pt;}
.y6f{bottom:288.413333pt;}
.y97{bottom:288.753333pt;}
.y33{bottom:294.292000pt;}
.y16d{bottom:299.688000pt;}
.yb8{bottom:299.921333pt;}
.yd0{bottom:299.949333pt;}
.y113{bottom:300.040000pt;}
.y6e{bottom:302.413333pt;}
.y96{bottom:302.753333pt;}
.y32{bottom:308.292000pt;}
.y13d{bottom:313.064000pt;}
.ycf{bottom:313.949333pt;}
.yb7{bottom:314.585333pt;}
.y6d{bottom:316.413333pt;}
.y16c{bottom:316.437333pt;}
.y95{bottom:316.753333pt;}
.y112{bottom:322.010667pt;}
.y31{bottom:322.292000pt;}
.y16b{bottom:325.492000pt;}
.yb6{bottom:328.585333pt;}
.yce{bottom:329.601333pt;}
.y6c{bottom:330.413333pt;}
.y94{bottom:330.753333pt;}
.y13c{bottom:334.797333pt;}
.y30{bottom:336.292000pt;}
.y16a{bottom:337.729333pt;}
.yb5{bottom:342.585333pt;}
.y13b{bottom:343.166667pt;}
.y111{bottom:343.314667pt;}
.ycd{bottom:343.601333pt;}
.y6b{bottom:344.413333pt;}
.y93{bottom:344.753333pt;}
.y2f{bottom:350.292000pt;}
.y169{bottom:354.478667pt;}
.yb4{bottom:357.249333pt;}
.ycc{bottom:357.601333pt;}
.y6a{bottom:358.413333pt;}
.y92{bottom:358.753333pt;}
.y168{bottom:363.533333pt;}
.y2e{bottom:364.292000pt;}
.yb3{bottom:371.249333pt;}
.ycb{bottom:371.601333pt;}
.y69{bottom:372.413333pt;}
.y91{bottom:372.753333pt;}
.y13a{bottom:375.284000pt;}
.y167{bottom:375.770667pt;}
.y2d{bottom:378.292000pt;}
.y110{bottom:383.214667pt;}
.yca{bottom:385.601333pt;}
.yb2{bottom:385.913333pt;}
.y68{bottom:386.413333pt;}
.y139{bottom:389.284000pt;}
.y2c{bottom:392.292000pt;}
.y166{bottom:392.520000pt;}
.y10f{bottom:397.214667pt;}
.yc9{bottom:399.601333pt;}
.yb1{bottom:399.913333pt;}
.y67{bottom:400.413333pt;}
.y165{bottom:401.574667pt;}
.y138{bottom:403.284000pt;}
.y2b{bottom:406.292000pt;}
.y90{bottom:409.761333pt;}
.y10e{bottom:411.214667pt;}
.yc8{bottom:413.601333pt;}
.y164{bottom:413.812000pt;}
.yb0{bottom:413.913333pt;}
.y66{bottom:414.413333pt;}
.y137{bottom:417.284000pt;}
.y8f{bottom:418.132000pt;}
.y2a{bottom:420.292000pt;}
.y10d{bottom:425.214667pt;}
.yaf{bottom:427.913333pt;}
.y65{bottom:428.413333pt;}
.yc7{bottom:429.241333pt;}
.y163{bottom:430.561333pt;}
.y29{bottom:434.292000pt;}
.y10c{bottom:439.214667pt;}
.y136{bottom:439.657333pt;}
.yae{bottom:441.913333pt;}
.y64{bottom:442.413333pt;}
.yc6{bottom:443.241333pt;}
.y162{bottom:446.258667pt;}
.y135{bottom:448.026667pt;}
.y28{bottom:448.292000pt;}
.y10b{bottom:453.214667pt;}
.yad{bottom:455.913333pt;}
.y63{bottom:456.413333pt;}
.yc5{bottom:457.241333pt;}
.y8e{bottom:465.290667pt;}
.y10a{bottom:467.214667pt;}
.yac{bottom:469.913333pt;}
.y62{bottom:470.413333pt;}
.yc4{bottom:470.577333pt;}
.y134{bottom:478.554667pt;}
.y8d{bottom:479.290667pt;}
.y109{bottom:481.214667pt;}
.yab{bottom:483.913333pt;}
.y61{bottom:484.413333pt;}
.yc3{bottom:484.577333pt;}
.y161{bottom:488.814667pt;}
.y133{bottom:492.554667pt;}
.y8c{bottom:493.290667pt;}
.y108{bottom:495.214667pt;}
.yaa{bottom:497.913333pt;}
.y60{bottom:498.413333pt;}
.yc2{bottom:498.577333pt;}
.y160{bottom:502.814667pt;}
.y132{bottom:506.554667pt;}
.y8b{bottom:507.290667pt;}
.y27{bottom:509.124000pt;}
.y107{bottom:509.214667pt;}
.y5f{bottom:512.413333pt;}
.ya9{bottom:512.577333pt;}
.y8a{bottom:521.290667pt;}
.y26{bottom:523.124000pt;}
.y106{bottom:523.214667pt;}
.y5e{bottom:526.413333pt;}
.ya8{bottom:526.577333pt;}
.y15f{bottom:530.814667pt;}
.y131{bottom:532.564000pt;}
.y89{bottom:535.290667pt;}
.y5d{bottom:540.413333pt;}
.ya7{bottom:540.577333pt;}
.y25{bottom:542.978667pt;}
.y15e{bottom:544.814667pt;}
.y105{bottom:549.169333pt;}
.y88{bottom:549.290667pt;}
.y5c{bottom:554.413333pt;}
.ya6{bottom:554.577333pt;}
.y24{bottom:556.978667pt;}
.y15d{bottom:558.814667pt;}
.y130{bottom:561.694667pt;}
.ye9{bottom:563.077333pt;}
.y104{bottom:563.169333pt;}
.y87{bottom:563.290667pt;}
.y5b{bottom:568.413333pt;}
.ya5{bottom:568.577333pt;}
.y23{bottom:570.978667pt;}
.y15c{bottom:572.814667pt;}
.y40{bottom:575.560000pt;}
.y12f{bottom:575.694667pt;}
.ye8{bottom:577.077333pt;}
.y86{bottom:577.290667pt;}
.y5a{bottom:582.413333pt;}
.ya4{bottom:582.577333pt;}
.y22{bottom:584.978667pt;}
.ye7{bottom:591.077333pt;}
.y85{bottom:591.290667pt;}
.y103{bottom:593.109333pt;}
.y59{bottom:596.413333pt;}
.ya3{bottom:596.577333pt;}
.y12{bottom:597.324515pt;}
.y21{bottom:598.978667pt;}
.y12e{bottom:601.704000pt;}
.ye6{bottom:605.077333pt;}
.y84{bottom:605.290667pt;}
.y102{bottom:607.109333pt;}
.y13{bottom:608.893333pt;}
.y58{bottom:610.413333pt;}
.y11{bottom:617.467754pt;}
.y20{bottom:618.806667pt;}
.ye5{bottom:619.077333pt;}
.y83{bottom:619.290667pt;}
.y101{bottom:621.109333pt;}
.y57{bottom:624.413333pt;}
.y15b{bottom:628.957333pt;}
.y12d{bottom:631.269333pt;}
.ye4{bottom:633.077333pt;}
.y82{bottom:634.930667pt;}
.y100{bottom:635.109333pt;}
.y56{bottom:638.413333pt;}
.y10{bottom:639.160473pt;}
.y15a{bottom:642.957333pt;}
.y12c{bottom:645.269333pt;}
.ye3{bottom:647.077333pt;}
.y81{bottom:648.930667pt;}
.yff{bottom:649.109333pt;}
.ya2{bottom:650.348000pt;}
.y55{bottom:652.413333pt;}
.y159{bottom:656.957333pt;}
.y12b{bottom:659.269333pt;}
.yf{bottom:659.303713pt;}
.ye2{bottom:661.077333pt;}
.y1f{bottom:661.432000pt;}
.ya1{bottom:662.348000pt;}
.y80{bottom:662.930667pt;}
.yfe{bottom:663.109333pt;}
.y54{bottom:666.413333pt;}
.y12a{bottom:673.269333pt;}
.ye1{bottom:675.077333pt;}
.y7f{bottom:676.930667pt;}
.yfd{bottom:677.109333pt;}
.y53{bottom:680.413333pt;}
.y158{bottom:680.574667pt;}
.ye{bottom:680.996432pt;}
.y18f{bottom:684.012000pt;}
.y129{bottom:687.269333pt;}
.y1e{bottom:688.176000pt;}
.y7e{bottom:690.930667pt;}
.yfc{bottom:691.109333pt;}
.y52{bottom:694.413333pt;}
.y18e{bottom:695.966667pt;}
.yd{bottom:701.139671pt;}
.y128{bottom:701.269333pt;}
.y157{bottom:704.029333pt;}
.y1d{bottom:704.166667pt;}
.yfb{bottom:705.109333pt;}
.y51{bottom:708.413333pt;}
.y18d{bottom:712.433333pt;}
.y127{bottom:715.269333pt;}
.y156{bottom:715.984000pt;}
.yc{bottom:718.183950pt;}
.yfa{bottom:719.109333pt;}
.y1c{bottom:720.156000pt;}
.y18c{bottom:721.205333pt;}
.y50{bottom:722.413333pt;}
.y155{bottom:727.938667pt;}
.y126{bottom:729.269333pt;}
.ye0{bottom:729.824000pt;}
.yf9{bottom:733.109333pt;}
.y18b{bottom:733.161333pt;}
.y4f{bottom:736.413333pt;}
.y1b{bottom:737.208000pt;}
.ydf{bottom:741.824000pt;}
.y125{bottom:743.269333pt;}
.yf8{bottom:747.109333pt;}
.y7d{bottom:747.568000pt;}
.yb{bottom:747.624069pt;}
.y18a{bottom:749.626667pt;}
.y4e{bottom:750.413333pt;}
.yde{bottom:753.824000pt;}
.y124{bottom:757.269333pt;}
.y189{bottom:758.400000pt;}
.y7c{bottom:759.568000pt;}
.yf7{bottom:761.109333pt;}
.y4d{bottom:764.413333pt;}
.y1a{bottom:765.402667pt;}
.ydd{bottom:765.824000pt;}
.y154{bottom:765.950667pt;}
.y197{bottom:770.354667pt;}
.y123{bottom:771.269333pt;}
.y7b{bottom:771.568000pt;}
.y188{bottom:774.865333pt;}
.yf6{bottom:775.109333pt;}
.y153{bottom:777.949333pt;}
.y4c{bottom:778.413333pt;}
.ydc{bottom:780.006667pt;}
.y7a{bottom:783.568000pt;}
.y187{bottom:783.638667pt;}
.y122{bottom:785.269333pt;}
.y196{bottom:786.820000pt;}
.yf5{bottom:789.109333pt;}
.ydb{bottom:792.006667pt;}
.y4b{bottom:792.413333pt;}
.y4{bottom:793.333727pt;}
.y79{bottom:795.568000pt;}
.y186{bottom:795.593333pt;}
.y152{bottom:796.260000pt;}
.y19{bottom:797.052000pt;}
.yf4{bottom:803.109333pt;}
.y3{bottom:805.729566pt;}
.y4a{bottom:806.413333pt;}
.y121{bottom:807.240000pt;}
.y195{bottom:807.548000pt;}
.y151{bottom:811.657333pt;}
.y185{bottom:812.058667pt;}
.y18{bottom:812.993333pt;}
.y2{bottom:818.125406pt;}
.yf3{bottom:818.761333pt;}
.y49{bottom:820.413333pt;}
.y184{bottom:820.832000pt;}
.y194{bottom:824.014667pt;}
.y150{bottom:827.054667pt;}
.y17{bottom:828.069333pt;}
.yf2{bottom:832.761333pt;}
.y183{bottom:832.786667pt;}
.y193{bottom:833.452000pt;}
.y48{bottom:834.413333pt;}
.y120{bottom:839.169333pt;}
.y192{bottom:845.406667pt;}
.yf1{bottom:846.761333pt;}
.y47{bottom:848.413333pt;}
.y182{bottom:849.253333pt;}
.y14f{bottom:850.670667pt;}
.y11f{bottom:853.169333pt;}
.y181{bottom:858.025333pt;}
.y191{bottom:861.872000pt;}
.y46{bottom:862.413333pt;}
.y190{bottom:871.309333pt;}
.y11e{bottom:872.482667pt;}
.y14e{bottom:874.125333pt;}
.y180{bottom:874.492000pt;}
.y45{bottom:876.413333pt;}
.y16{bottom:877.784000pt;}
.ya{bottom:882.428823pt;}
.y17f{bottom:883.264000pt;}
.y14d{bottom:886.080000pt;}
.y44{bottom:890.413333pt;}
.y9{bottom:897.148883pt;}
.y14c{bottom:898.036000pt;}
.y17e{bottom:899.730667pt;}
.y43{bottom:904.413333pt;}
.y17d{bottom:908.502667pt;}
.y15{bottom:909.784000pt;}
.y14b{bottom:909.990667pt;}
.y42{bottom:918.413333pt;}
.y17c{bottom:920.458667pt;}
.y14a{bottom:921.945333pt;}
.y41{bottom:932.413333pt;}
.y149{bottom:933.901333pt;}
.y17b{bottom:936.924000pt;}
.y8{bottom:943.633281pt;}
.y7{bottom:965.326000pt;}
.y6{bottom:988.568199pt;}
.y14{bottom:994.958667pt;}
.y5{bottom:1012.585138pt;}
.h9{height:23.312500pt;}
.h21{height:26.274697pt;}
.h7{height:27.091688pt;}
.hf{height:30.128000pt;}
.h22{height:30.933333pt;}
.h4{height:31.606970pt;}
.h10{height:33.415019pt;}
.h3{height:36.122251pt;}
.h23{height:39.560000pt;}
.h25{height:40.080000pt;}
.h8{height:40.610295pt;}
.h6{height:40.673848pt;}
.h24{height:40.960000pt;}
.h20{height:46.162819pt;}
.h17{height:46.336000pt;}
.h16{height:47.317333pt;}
.h12{height:47.472000pt;}
.h13{height:48.096000pt;}
.h15{height:48.676267pt;}
.h1b{height:49.152000pt;}
.h18{height:51.744000pt;}
.h5{height:54.147061pt;}
.h14{height:54.515733pt;}
.h11{height:55.472128pt;}
.he{height:55.680000pt;}
.hd{height:56.064000pt;}
.h1c{height:57.619200pt;}
.hb{height:58.293333pt;}
.h19{height:79.024000pt;}
.h1d{height:79.029333pt;}
.h1f{height:85.221333pt;}
.h1a{height:85.226667pt;}
.h1e{height:91.101867pt;}
.hc{height:123.733333pt;}
.h2{height:145.263744pt;}
.ha{height:1056.000000pt;}
.h1{height:1121.822869pt;}
.h0{height:1122.666667pt;}
.w1{width:792.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xf{left:38.881333pt;}
.xb{left:46.850667pt;}
.xc{left:58.806667pt;}
.x15{left:64.120000pt;}
.xd{left:82.716000pt;}
.x1a{left:135.450667pt;}
.x18{left:138.757333pt;}
.x6{left:159.596433pt;}
.x7{left:161.145913pt;}
.x17{left:166.344000pt;}
.x19{left:168.236000pt;}
.x16{left:170.973333pt;}
.x8{left:172.767013pt;}
.x9{left:174.316493pt;}
.xe{left:408.140000pt;}
.x11{left:413.453333pt;}
.x14{left:432.049333pt;}
.x12{left:485.116000pt;}
.x1b{left:491.289333pt;}
.x13{left:509.129333pt;}
.x1c{left:539.732000pt;}
.x1{left:593.450815pt;}
.x3{left:594.903453pt;}
.x2{left:599.491370pt;}
.x4{left:647.682613pt;}
.x5{left:649.135250pt;}
.x10{left:772.666667pt;}
.xa{left:774.000000pt;}
}




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