
    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_6beaeb64dc0ff80cabcae09b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_80a0910210ca9a09acfc79a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_38dc727221ea849d33421b1c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.060000;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_56e5ad24972ef440683209de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_21e3967b0279074eb829b51a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_cdd14071067c7dd2eeae082f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_34da1dfd1e50da7707bf4853.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.040000;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_6b5e82ff7c39734b55944b2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.943000;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_2f6d7b960b00f030b89b78cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;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_fcfa676c31a2e551625525ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_d7ea0da6854afb36f0ddf2d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.508000;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_838e6dffa4de9004dd1a5fb8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.039000;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_96d24476d2b1dedceb7e2c12.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930000;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_7f6ecaaf8322e73bf91cd767.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.051000;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_3bbde586578322a0ec2779b2.woff2')format("woff");}.fff{font-family:fff;line-height:0.351000;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_e602b337a123b60e021a58da.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.264000;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_36ddeb9bf784b0526bc3c486.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.279000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls56{letter-spacing:-1.900776px;}
.ls57{letter-spacing:-1.876777px;}
.ls58{letter-spacing:-1.804777px;}
.lsc{letter-spacing:-1.572016px;}
.ls49{letter-spacing:-1.569944px;}
.ls10{letter-spacing:-1.566016px;}
.ls41{letter-spacing:-1.505265px;}
.ls12{letter-spacing:-1.500015px;}
.ls15{letter-spacing:-1.488015px;}
.lsf{letter-spacing:-1.482015px;}
.ls14{letter-spacing:-1.476015px;}
.ls9{letter-spacing:-1.464015px;}
.ls44{letter-spacing:-1.446465px;}
.lse{letter-spacing:-1.440014px;}
.ls43{letter-spacing:-1.434705px;}
.ls8{letter-spacing:-1.434014px;}
.ls40{letter-spacing:-1.428825px;}
.ls48{letter-spacing:-1.417066px;}
.lsb{letter-spacing:-1.416014px;}
.ls3f{letter-spacing:-1.411186px;}
.ls11{letter-spacing:-1.410014px;}
.ls45{letter-spacing:-1.399426px;}
.ls47{letter-spacing:-1.393546px;}
.ls46{letter-spacing:-1.381786px;}
.lsa{letter-spacing:-1.380014px;}
.lsd{letter-spacing:-1.374014px;}
.ls4a{letter-spacing:-1.364140px;}
.ls42{letter-spacing:-1.328866px;}
.ls13{letter-spacing:-1.320013px;}
.ls6c{letter-spacing:-1.295983px;}
.ls3e{letter-spacing:-1.246547px;}
.ls26{letter-spacing:-1.206012px;}
.ls28{letter-spacing:-1.188012px;}
.ls20{letter-spacing:-1.176012px;}
.ls6e{letter-spacing:-1.174484px;}
.ls1c{letter-spacing:-1.170012px;}
.ls6d{letter-spacing:-1.165484px;}
.ls3d{letter-spacing:-1.164228px;}
.ls19{letter-spacing:-1.158012px;}
.ls25{letter-spacing:-1.152006px;}
.ls6b{letter-spacing:-1.142985px;}
.ls52{letter-spacing:-1.134828px;}
.ls22{letter-spacing:-1.128011px;}
.ls18{letter-spacing:-1.122011px;}
.ls24{letter-spacing:-1.116005px;}
.ls4f{letter-spacing:-1.111309px;}
.ls1a{letter-spacing:-1.110011px;}
.ls2e{letter-spacing:-1.105429px;}
.ls1d{letter-spacing:-1.104011px;}
.ls51{letter-spacing:-1.099549px;}
.ls16{letter-spacing:-1.098011px;}
.ls34{letter-spacing:-1.093663px;}
.ls2d{letter-spacing:-1.087789px;}
.ls53{letter-spacing:-1.081909px;}
.ls23{letter-spacing:-1.080011px;}
.ls33{letter-spacing:-1.076029px;}
.ls1e{letter-spacing:-1.074011px;}
.ls37{letter-spacing:-1.070149px;}
.ls4b{letter-spacing:-1.064269px;}
.ls17{letter-spacing:-1.062011px;}
.ls38{letter-spacing:-1.058389px;}
.ls3a{letter-spacing:-1.040749px;}
.ls30{letter-spacing:-1.034869px;}
.ls36{letter-spacing:-1.028990px;}
.ls31{letter-spacing:-1.023110px;}
.ls2f{letter-spacing:-1.017230px;}
.ls3b{letter-spacing:-1.011350px;}
.ls27{letter-spacing:-1.008010px;}
.ls4c{letter-spacing:-1.005470px;}
.ls35{letter-spacing:-0.987830px;}
.ls32{letter-spacing:-0.981950px;}
.ls50{letter-spacing:-0.976070px;}
.ls39{letter-spacing:-0.964310px;}
.ls4e{letter-spacing:-0.952550px;}
.ls3c{letter-spacing:-0.917271px;}
.ls1f{letter-spacing:-0.894009px;}
.ls4d{letter-spacing:-0.829072px;}
.ls7{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.044968px;}
.ls67{letter-spacing:0.045032px;}
.ls54{letter-spacing:0.058812px;}
.ls69{letter-spacing:0.090000px;}
.ls60{letter-spacing:0.095996px;}
.ls2c{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.176400px;}
.ls5a{letter-spacing:0.176402px;}
.ls64{letter-spacing:0.225047px;}
.ls61{letter-spacing:7.055053px;}
.ls5b{letter-spacing:7.055107px;}
.ls5c{letter-spacing:9.311876px;}
.ls5e{letter-spacing:9.311936px;}
.ls5f{letter-spacing:9.647876px;}
.ls5d{letter-spacing:9.647936px;}
.ls1b{letter-spacing:10.680107px;}
.ls5{letter-spacing:10.680124px;}
.ls3{letter-spacing:10.740065px;}
.ls1{letter-spacing:10.740125px;}
.ls6a{letter-spacing:10.790856px;}
.ls2{letter-spacing:10.800120px;}
.ls4{letter-spacing:10.800125px;}
.ls21{letter-spacing:11.022110px;}
.ls6{letter-spacing:11.040124px;}
.ls59{letter-spacing:11.642270px;}
.ls63{letter-spacing:13.499777px;}
.ls65{letter-spacing:13.544820px;}
.ls62{letter-spacing:16.200000px;}
.ls2b{letter-spacing:17.875020px;}
.ls29{letter-spacing:18.110231px;}
.ls68{letter-spacing:18.515280px;}
.ls55{letter-spacing:22.990560px;}
.ls0{letter-spacing:43.344181px;}
.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;}
}
.ws142{word-spacing:-18.577080px;}
.ws2b{word-spacing:-11.082111px;}
.ws21{word-spacing:-10.740107px;}
.ws49{word-spacing:-0.061800px;}
.ws1e{word-spacing:-0.060001px;}
.ws4f{word-spacing:-0.058799px;}
.ws47{word-spacing:-0.047999px;}
.ws39{word-spacing:-0.044999px;}
.ws41{word-spacing:-0.041999px;}
.ws48{word-spacing:0.000000px;}
.ws7b{word-spacing:0.770272px;}
.ws61{word-spacing:1.105429px;}
.ws35{word-spacing:1.128011px;}
.ws65{word-spacing:1.446465px;}
.wseb{word-spacing:8.927888px;}
.ws11e{word-spacing:10.422000px;}
.ws111{word-spacing:10.692000px;}
.ws11d{word-spacing:10.800000px;}
.ws38{word-spacing:11.879842px;}
.ws103{word-spacing:11.936278px;}
.ws42{word-spacing:12.305824px;}
.ws3d{word-spacing:12.431822px;}
.ws43{word-spacing:12.515821px;}
.ws44{word-spacing:12.599820px;}
.wsb3{word-spacing:12.641819px;}
.ws40{word-spacing:12.683819px;}
.ws3f{word-spacing:12.809817px;}
.ws3e{word-spacing:12.893816px;}
.ws22{word-spacing:12.918129px;}
.ws23{word-spacing:12.930129px;}
.ws147{word-spacing:12.977827px;}
.ws14b{word-spacing:13.022826px;}
.ws149{word-spacing:13.045326px;}
.ws14c{word-spacing:13.099325px;}
.ws14a{word-spacing:13.184824px;}
.ws148{word-spacing:13.220824px;}
.ws145{word-spacing:13.229824px;}
.ws143{word-spacing:13.274823px;}
.ws2c{word-spacing:13.290133px;}
.ws3c{word-spacing:13.319822px;}
.ws13e{word-spacing:13.364802px;}
.ws3a{word-spacing:13.364822px;}
.ws137{word-spacing:13.409821px;}
.ws141{word-spacing:13.409830px;}
.ws138{word-spacing:13.454821px;}
.ws135{word-spacing:13.499820px;}
.ws144{word-spacing:13.544819px;}
.ws3b{word-spacing:13.589819px;}
.ws139{word-spacing:13.634818px;}
.ws13c{word-spacing:13.679818px;}
.ws136{word-spacing:13.724817px;}
.wsb4{word-spacing:13.727828px;}
.ws140{word-spacing:13.769816px;}
.ws13d{word-spacing:13.814816px;}
.ws13f{word-spacing:13.859815px;}
.wsac{word-spacing:13.871827px;}
.ws13b{word-spacing:13.904815px;}
.ws10a{word-spacing:13.919826px;}
.ws13a{word-spacing:13.949814px;}
.wsb2{word-spacing:13.967825px;}
.wsb1{word-spacing:14.015825px;}
.ws117{word-spacing:14.015842px;}
.ws45{word-spacing:14.063807px;}
.wsae{word-spacing:14.063824px;}
.wsad{word-spacing:14.111824px;}
.wsab{word-spacing:14.159823px;}
.ws113{word-spacing:14.159837px;}
.ws46{word-spacing:14.207822px;}
.wsb5{word-spacing:14.255822px;}
.ws114{word-spacing:14.303821px;}
.ws11b{word-spacing:14.495819px;}
.wsee{word-spacing:14.572618px;}
.wsec{word-spacing:14.764615px;}
.wsed{word-spacing:14.788615px;}
.ws11c{word-spacing:15.876000px;}
.ws10b{word-spacing:16.038000px;}
.wsa9{word-spacing:16.092000px;}
.ws60{word-spacing:16.146315px;}
.ws10c{word-spacing:16.200000px;}
.ws7d{word-spacing:16.240394px;}
.ws110{word-spacing:16.254000px;}
.ws80{word-spacing:16.416792px;}
.ws81{word-spacing:16.457952px;}
.ws8a{word-spacing:16.581431px;}
.ws5e{word-spacing:16.622590px;}
.ws5d{word-spacing:16.828388px;}
.ws4d{word-spacing:16.851908px;}
.ws28{word-spacing:16.854146px;}
.ws36{word-spacing:16.920169px;}
.ws77{word-spacing:16.922467px;}
.ws1c{word-spacing:16.962170px;}
.ws26{word-spacing:16.974170px;}
.ws2f{word-spacing:16.980164px;}
.ws34{word-spacing:16.980170px;}
.ws33{word-spacing:17.088171px;}
.ws12c{word-spacing:17.110625px;}
.ws25{word-spacing:17.214172px;}
.ws27{word-spacing:17.262173px;}
.wse{word-spacing:17.280173px;}
.ws32{word-spacing:17.280198px;}
.ws1b{word-spacing:17.298173px;}
.ws24{word-spacing:17.304173px;}
.ws37{word-spacing:17.316167px;}
.ws1d{word-spacing:17.322173px;}
.ws2e{word-spacing:17.328173px;}
.ws17{word-spacing:17.340173px;}
.ws12f{word-spacing:17.345823px;}
.ws31{word-spacing:17.352168px;}
.ws29{word-spacing:17.358174px;}
.ws20{word-spacing:17.370174px;}
.ws30{word-spacing:17.376168px;}
.ws2d{word-spacing:17.394202px;}
.ws13{word-spacing:17.400174px;}
.wsb6{word-spacing:17.463422px;}
.ws1f{word-spacing:17.478175px;}
.ws10{word-spacing:17.496175px;}
.ws12{word-spacing:17.514175px;}
.ws9d{word-spacing:17.522221px;}
.ws2a{word-spacing:17.556149px;}
.ws16{word-spacing:17.580173px;}
.ws19{word-spacing:17.604176px;}
.ws5b{word-spacing:17.604540px;}
.ws18{word-spacing:17.616176px;}
.wsc{word-spacing:17.634176px;}
.wsbb{word-spacing:17.639820px;}
.wsd{word-spacing:17.664177px;}
.wsf{word-spacing:17.724177px;}
.ws14{word-spacing:17.742177px;}
.wsef{word-spacing:17.757419px;}
.ws1a{word-spacing:17.772141px;}
.ws54{word-spacing:17.780939px;}
.wsf6{word-spacing:17.816218px;}
.ws15{word-spacing:17.826178px;}
.wse5{word-spacing:17.875018px;}
.ws9c{word-spacing:17.875034px;}
.ws11{word-spacing:17.892179px;}
.wsd7{word-spacing:17.933817px;}
.ws9{word-spacing:18.000180px;}
.wsba{word-spacing:18.110215px;}
.wse4{word-spacing:18.169015px;}
.wsb{word-spacing:18.180170px;}
.wsa{word-spacing:18.180182px;}
.ws5f{word-spacing:18.180774px;}
.wsf7{word-spacing:18.227814px;}
.ws79{word-spacing:18.421852px;}
.wsc3{word-spacing:18.521811px;}
.ws96{word-spacing:18.580610px;}
.ws8{word-spacing:18.600220px;}
.wsbd{word-spacing:18.639410px;}
.ws7e{word-spacing:18.651170px;}
.ws105{word-spacing:18.698209px;}
.wsfe{word-spacing:18.757009px;}
.ws106{word-spacing:18.815808px;}
.ws126{word-spacing:18.874607px;}
.wscb{word-spacing:18.933407px;}
.ws6a{word-spacing:19.080405px;}
.ws98{word-spacing:19.109805px;}
.wsa1{word-spacing:19.168604px;}
.ws57{word-spacing:19.180364px;}
.ws68{word-spacing:19.262683px;}
.wse6{word-spacing:19.286203px;}
.wse0{word-spacing:19.345003px;}
.ws7f{word-spacing:19.415562px;}
.ws58{word-spacing:19.462601px;}
.ws95{word-spacing:19.521401px;}
.ws128{word-spacing:19.580200px;}
.ws6{word-spacing:19.602178px;}
.wsf1{word-spacing:19.639000px;}
.wsb7{word-spacing:19.697799px;}
.wsda{word-spacing:19.756598px;}
.ws7{word-spacing:19.800180px;}
.ws50{word-spacing:19.856557px;}
.ws5{word-spacing:19.866181px;}
.wsf3{word-spacing:19.874197px;}
.ws4e{word-spacing:19.897717px;}
.ws71{word-spacing:19.956516px;}
.ws76{word-spacing:20.009436px;}
.ws108{word-spacing:20.168194px;}
.ws89{word-spacing:20.179954px;}
.ws88{word-spacing:20.368112px;}
.wsfd{word-spacing:20.520991px;}
.ws72{word-spacing:20.562150px;}
.wsa3{word-spacing:20.756188px;}
.ws52{word-spacing:20.909061px;}
.ws101{word-spacing:20.932586px;}
.ws129{word-spacing:21.167784px;}
.wsfb{word-spacing:21.226583px;}
.wsc4{word-spacing:21.402982px;}
.wsa7{word-spacing:21.461781px;}
.ws102{word-spacing:21.520580px;}
.wsc6{word-spacing:21.579380px;}
.wsa8{word-spacing:21.638179px;}
.ws51{word-spacing:21.655819px;}
.wsc5{word-spacing:21.755766px;}
.wsff{word-spacing:21.755778px;}
.ws94{word-spacing:21.814577px;}
.ws63{word-spacing:22.067415px;}
.wscc{word-spacing:22.226173px;}
.ws69{word-spacing:22.390812px;}
.ws109{word-spacing:22.402571px;}
.ws91{word-spacing:22.461371px;}
.wsdb{word-spacing:22.578970px;}
.ws9f{word-spacing:22.637769px;}
.wse8{word-spacing:22.814167px;}
.ws93{word-spacing:22.990565px;}
.wse9{word-spacing:23.166964px;}
.wsdc{word-spacing:23.166968px;}
.wsdd{word-spacing:23.225779px;}
.wsde{word-spacing:23.284562px;}
.ws85{word-spacing:23.319842px;}
.ws133{word-spacing:23.343362px;}
.wscf{word-spacing:23.578559px;}
.ws6b{word-spacing:23.619719px;}
.ws0{word-spacing:23.634000px;}
.ws104{word-spacing:23.637359px;}
.ws83{word-spacing:23.672638px;}
.ws6c{word-spacing:23.696158px;}
.wsa0{word-spacing:23.990155px;}
.wsc9{word-spacing:24.048955px;}
.ws4c{word-spacing:24.125394px;}
.ws82{word-spacing:24.143028px;}
.wsa4{word-spacing:24.284152px;}
.wsbc{word-spacing:24.460550px;}
.ws74{word-spacing:24.484070px;}
.ws75{word-spacing:24.531104px;}
.wsbf{word-spacing:24.578149px;}
.wsc0{word-spacing:24.636949px;}
.wsc7{word-spacing:24.754547px;}
.ws84{word-spacing:24.854506px;}
.ws124{word-spacing:24.872146px;}
.wsd8{word-spacing:24.930946px;}
.wsd0{word-spacing:24.989745px;}
.wsd1{word-spacing:25.107344px;}
.wsd9{word-spacing:25.166143px;}
.ws12d{word-spacing:25.283742px;}
.ws97{word-spacing:25.342541px;}
.ws127{word-spacing:25.401341px;}
.ws86{word-spacing:25.418981px;}
.wsd2{word-spacing:25.577739px;}
.ws107{word-spacing:25.636538px;}
.wsf8{word-spacing:25.695338px;}
.ws8b{word-spacing:25.812937px;}
.ws70{word-spacing:25.912896px;}
.ws132{word-spacing:25.930535px;}
.ws56{word-spacing:26.077534px;}
.ws99{word-spacing:26.106934px;}
.ws73{word-spacing:26.142213px;}
.ws9b{word-spacing:26.283332px;}
.ws59{word-spacing:26.295092px;}
.wsc8{word-spacing:26.518529px;}
.ws55{word-spacing:26.553803px;}
.ws12a{word-spacing:26.636128px;}
.wsf0{word-spacing:26.694928px;}
.ws62{word-spacing:26.812526px;}
.wsfa{word-spacing:26.988925px;}
.ws7c{word-spacing:27.000684px;}
.wsa2{word-spacing:27.047724px;}
.ws7a{word-spacing:27.053604px;}
.ws12b{word-spacing:27.341721px;}
.ws4a{word-spacing:27.429920px;}
.ws90{word-spacing:27.518119px;}
.wsf9{word-spacing:27.635718px;}
.ws8f{word-spacing:27.694529px;}
.wse7{word-spacing:27.870916px;}
.ws100{word-spacing:28.047314px;}
.ws92{word-spacing:28.282511px;}
.wsb8{word-spacing:28.341311px;}
.wsa6{word-spacing:28.458910px;}
.ws8d{word-spacing:28.694107px;}
.ws8c{word-spacing:28.988104px;}
.wse2{word-spacing:29.046904px;}
.wsf4{word-spacing:29.458499px;}
.ws6d{word-spacing:29.517299px;}
.ws5c{word-spacing:29.617258px;}
.wsce{word-spacing:29.693697px;}
.ws9e{word-spacing:29.752496px;}
.ws8e{word-spacing:30.105293px;}
.ws125{word-spacing:30.693287px;}
.ws78{word-spacing:30.699167px;}
.wsea{word-spacing:30.752086px;}
.wsfc{word-spacing:31.398880px;}
.ws67{word-spacing:31.422399px;}
.wsc1{word-spacing:31.575278px;}
.wsf2{word-spacing:31.928074px;}
.ws134{word-spacing:32.163272px;}
.ws130{word-spacing:32.457269px;}
.ws4b{word-spacing:32.798305px;}
.wsca{word-spacing:33.868454px;}
.ws12e{word-spacing:33.927254px;}
.ws6f{word-spacing:34.109532px;}
.ws6e{word-spacing:34.221251px;}
.wse1{word-spacing:34.338850px;}
.wsa5{word-spacing:34.515248px;}
.ws87{word-spacing:34.768085px;}
.ws9a{word-spacing:35.514838px;}
.ws120{word-spacing:35.663554px;}
.ws53{word-spacing:35.855874px;}
.wscd{word-spacing:36.573227px;}
.ws66{word-spacing:37.372899px;}
.ws64{word-spacing:37.708055px;}
.wsbe{word-spacing:37.808014px;}
.ws5a{word-spacing:38.043212px;}
.wsb9{word-spacing:38.219610px;}
.wsf5{word-spacing:40.630385px;}
.ws115{word-spacing:41.183429px;}
.ws116{word-spacing:41.183489px;}
.wsc2{word-spacing:42.100370px;}
.ws3{word-spacing:42.912179px;}
.ws4{word-spacing:43.056179px;}
.ws1{word-spacing:43.344181px;}
.ws2{word-spacing:43.632145px;}
.wsdf{word-spacing:43.746754px;}
.wse3{word-spacing:43.864352px;}
.ws146{word-spacing:44.243410px;}
.ws131{word-spacing:45.628334px;}
.wsd6{word-spacing:50.155888px;}
.wsd5{word-spacing:55.859430px;}
.wsd4{word-spacing:55.918229px;}
.wsd3{word-spacing:58.740601px;}
.ws123{word-spacing:58.799265px;}
.ws119{word-spacing:63.983189px;}
.ws11a{word-spacing:73.535129px;}
.ws118{word-spacing:73.871069px;}
.ws122{word-spacing:81.790978px;}
.ws121{word-spacing:109.534631px;}
.ws112{word-spacing:131.998350px;}
.wsaa{word-spacing:215.277309px;}
.wsaf{word-spacing:281.180462px;}
.ws11f{word-spacing:284.108422px;}
.wsb0{word-spacing:312.140075px;}
.ws10d{word-spacing:476.442057px;}
.ws10e{word-spacing:500.585743px;}
.ws10f{word-spacing:528.809402px;}
._36{margin-left:-17.922000px;}
._b{margin-left:-13.068092px;}
._9{margin-left:-11.880119px;}
._38{margin-left:-10.799856px;}
._16{margin-left:-5.468344px;}
._15{margin-left:-3.645563px;}
._e{margin-left:-2.022755px;}
._6{margin-left:-1.020010px;}
._5{width:1.116039px;}
._18{width:2.177877px;}
._c{width:3.893939px;}
._a{width:4.980037px;}
._0{width:8.970000px;}
._7{width:11.700117px;}
._2c{width:13.085837px;}
._d{width:14.129822px;}
._4{width:15.180152px;}
._8{width:17.136194px;}
._3{width:19.380194px;}
._2b{width:20.638589px;}
._f{width:21.696979px;}
._19{width:22.755368px;}
._12{width:24.166553px;}
._11{width:25.874036px;}
._14{width:27.218332px;}
._2d{width:28.517709px;}
._10{width:29.776071px;}
._13{width:31.046083px;}
._1{width:32.682000px;}
._35{width:33.750856px;}
._27{width:34.987943px;}
._17{width:36.632026px;}
._28{width:37.750365px;}
._2e{width:41.985071px;}
._26{width:43.217559px;}
._2a{width:44.865092px;}
._29{width:51.391825px;}
._37{width:65.879122px;}
._32{width:87.646904px;}
._2f{width:123.550456px;}
._30{width:132.046349px;}
._33{width:156.190048px;}
._34{width:164.733941px;}
._22{width:215.373308px;}
._24{width:248.684925px;}
._23{width:281.228439px;}
._1d{width:289.196385px;}
._31{width:294.140296px;}
._1b{width:312.188098px;}
._21{width:335.179847px;}
._20{width:338.011697px;}
._1f{width:526.649384px;}
._1c{width:639.640004px;}
._1e{width:644.439944px;}
._1a{width:654.423820px;}
._25{width:1323.967367px;}
._2{width:1602.275940px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:27.996600px;}
.fs7{font-size:29.995200px;}
.fsc{font-size:31.995000px;}
.fsf{font-size:35.995200px;}
.fse{font-size:39.194400px;}
.fs8{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs6{font-size:44.999400px;}
.fs9{font-size:47.999400px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y2d{bottom:65.394090px;}
.y2c{bottom:77.384925px;}
.y166{bottom:89.285640px;}
.y64{bottom:89.292360px;}
.y1ae{bottom:89.297010px;}
.y2b{bottom:89.375745px;}
.y122{bottom:97.029840px;}
.y115{bottom:97.029900px;}
.y113{bottom:97.034955px;}
.y96{bottom:98.649795px;}
.ycf{bottom:98.652825px;}
.y2a{bottom:101.366580px;}
.y114{bottom:102.387450px;}
.y165{bottom:102.807960px;}
.y1ad{bottom:102.819330px;}
.y63{bottom:107.314380px;}
.y121{bottom:110.553675px;}
.y29{bottom:113.357400px;}
.y95{bottom:113.697600px;}
.yce{bottom:113.700630px;}
.y164{bottom:116.330280px;}
.y1ac{bottom:116.341650px;}
.y112{bottom:118.034700px;}
.y110{bottom:118.039620px;}
.y111{bottom:123.392100px;}
.y62{bottom:125.262900px;}
.ycd{bottom:128.664450px;}
.y163{bottom:129.762600px;}
.y1ab{bottom:129.773970px;}
.y120{bottom:131.553405px;}
.y28{bottom:138.782169px;}
.y10f{bottom:139.039350px;}
.y10d{bottom:139.040640px;}
.y162{bottom:143.284920px;}
.y61{bottom:143.291400px;}
.y1aa{bottom:143.296290px;}
.y10e{bottom:144.396900px;}
.y11f{bottom:144.993240px;}
.y27{bottom:152.304489px;}
.y161{bottom:156.807240px;}
.y1a9{bottom:156.818610px;}
.y10c{bottom:158.768400px;}
.y26{bottom:165.826809px;}
.y11e{bottom:165.992985px;}
.y160{bottom:170.329560px;}
.y1a8{bottom:170.340930px;}
.y25{bottom:170.844159px;}
.y10b{bottom:178.499550px;}
.y24{bottom:179.351889px;}
.y60{bottom:179.460750px;}
.y11d{bottom:179.516805px;}
.y15f{bottom:183.761880px;}
.y1a7{bottom:183.773250px;}
.y23{bottom:192.784209px;}
.y10a{bottom:194.996550px;}
.y15e{bottom:197.284200px;}
.y1a6{bottom:197.295570px;}
.y5f{bottom:197.409270px;}
.y22{bottom:197.801574px;}
.y11c{bottom:199.244565px;}
.y21{bottom:206.305509px;}
.y15d{bottom:210.806520px;}
.y1a5{bottom:210.817890px;}
.y109{bottom:211.493550px;}
.y11a{bottom:212.768400px;}
.y5e{bottom:215.431275px;}
.y11b{bottom:218.040900px;}
.y1eb{bottom:219.841215px;}
.y15c{bottom:224.328840px;}
.y1a4{bottom:224.340210px;}
.y108{bottom:227.990550px;}
.y119{bottom:232.497600px;}
.y117{bottom:232.498200px;}
.y1ea{bottom:233.273535px;}
.y5d{bottom:233.453295px;}
.y15b{bottom:237.761160px;}
.y1a3{bottom:237.772530px;}
.y118{bottom:238.450350px;}
.y1e9{bottom:246.795855px;}
.y116{bottom:248.995200px;}
.y15a{bottom:251.283480px;}
.y1a2{bottom:251.294850px;}
.y5c{bottom:251.401815px;}
.y1e8{bottom:260.318175px;}
.y1a1{bottom:264.817170px;}
.y103{bottom:269.418000px;}
.y5b{bottom:269.423835px;}
.y1e7{bottom:273.840495px;}
.y1a0{bottom:278.339490px;}
.y1e6{bottom:287.272815px;}
.yef{bottom:287.322390px;}
.y102{bottom:287.440005px;}
.y5a{bottom:287.445840px;}
.y159{bottom:288.194235px;}
.y19f{bottom:291.771810px;}
.y1e5{bottom:300.795135px;}
.y158{bottom:301.716555px;}
.y19e{bottom:305.294130px;}
.yee{bottom:305.344410px;}
.y101{bottom:305.388525px;}
.y59{bottom:305.394360px;}
.y1e4{bottom:314.317455px;}
.y157{bottom:315.238875px;}
.y19d{bottom:318.816450px;}
.yed{bottom:323.366430px;}
.y100{bottom:323.410545px;}
.y58{bottom:323.416380px;}
.y1e3{bottom:327.839775px;}
.y19c{bottom:332.338770px;}
.y1e2{bottom:341.272095px;}
.yec{bottom:341.314935px;}
.y7d{bottom:341.321310px;}
.yff{bottom:341.359065px;}
.y57{bottom:341.364885px;}
.y19b{bottom:345.771090px;}
.y156{bottom:352.059630px;}
.y1e1{bottom:354.794415px;}
.y19a{bottom:359.293410px;}
.yeb{bottom:359.336955px;}
.y7c{bottom:359.343315px;}
.yfe{bottom:359.381070px;}
.y56{bottom:359.386905px;}
.y155{bottom:365.581950px;}
.y1e0{bottom:368.316735px;}
.y20{bottom:371.701569px;}
.y199{bottom:372.815730px;}
.yea{bottom:377.358975px;}
.y7b{bottom:377.365335px;}
.yfd{bottom:377.403090px;}
.y55{bottom:377.408925px;}
.y154{bottom:379.104270px;}
.y1df{bottom:381.839055px;}
.y198{bottom:386.338050px;}
.y153{bottom:392.626590px;}
.y1f{bottom:394.156794px;}
.y1de{bottom:395.271375px;}
.ye9{bottom:395.307495px;}
.y7a{bottom:395.313855px;}
.yfc{bottom:395.351610px;}
.y54{bottom:395.357445px;}
.y197{bottom:399.770370px;}
.y152{bottom:406.058910px;}
.y1dd{bottom:408.793695px;}
.y1e{bottom:412.186974px;}
.y196{bottom:413.292690px;}
.ye8{bottom:413.329500px;}
.y79{bottom:413.335860px;}
.yfb{bottom:413.373615px;}
.y53{bottom:413.379450px;}
.y1dc{bottom:422.316015px;}
.y195{bottom:426.815010px;}
.ye7{bottom:431.351520px;}
.y78{bottom:431.357880px;}
.yfa{bottom:431.395635px;}
.y52{bottom:431.401470px;}
.y1db{bottom:435.838335px;}
.y1d{bottom:437.702229px;}
.y194{bottom:440.337330px;}
.y151{bottom:442.969680px;}
.y1da{bottom:449.270655px;}
.ye6{bottom:449.300040px;}
.y77{bottom:449.306400px;}
.yf9{bottom:449.344155px;}
.y51{bottom:449.349990px;}
.y193{bottom:453.769650px;}
.y1c{bottom:455.642409px;}
.y150{bottom:456.491985px;}
.y1d9{bottom:462.792975px;}
.y192{bottom:467.291970px;}
.yac{bottom:467.313600px;}
.ycc{bottom:467.321055px;}
.ye5{bottom:467.322045px;}
.y76{bottom:467.328420px;}
.yf8{bottom:467.366175px;}
.y50{bottom:467.371995px;}
.y14f{bottom:470.014305px;}
.y1b{bottom:473.672589px;}
.y1d8{bottom:476.315295px;}
.y191{bottom:480.814290px;}
.y14e{bottom:483.536625px;}
.yab{bottom:485.335620px;}
.ycb{bottom:485.343075px;}
.ye4{bottom:485.344065px;}
.y75{bottom:485.350425px;}
.yf7{bottom:485.388180px;}
.y4f{bottom:485.394015px;}
.y1d7{bottom:489.837615px;}
.y190{bottom:494.336610px;}
.y1a{bottom:496.202814px;}
.y14d{bottom:496.968945px;}
.y1d6{bottom:503.269935px;}
.yaa{bottom:503.284140px;}
.yca{bottom:503.291595px;}
.ye3{bottom:503.292585px;}
.y74{bottom:503.298945px;}
.yf6{bottom:503.336700px;}
.y4e{bottom:503.342535px;}
.y18f{bottom:507.768930px;}
.y14c{bottom:510.491265px;}
.y19{bottom:514.142994px;}
.y1d5{bottom:516.792255px;}
.y18e{bottom:521.291250px;}
.ya9{bottom:521.306145px;}
.yc9{bottom:521.313600px;}
.ye2{bottom:521.314605px;}
.y73{bottom:521.320965px;}
.yf5{bottom:521.358720px;}
.y4d{bottom:521.364555px;}
.y1d4{bottom:530.314575px;}
.y18{bottom:532.173174px;}
.y18d{bottom:534.812400px;}
.ya8{bottom:539.328165px;}
.yc8{bottom:539.335620px;}
.ye1{bottom:539.336610px;}
.y72{bottom:539.342970px;}
.yf4{bottom:539.380725px;}
.y4c{bottom:539.386560px;}
.y1d3{bottom:543.836895px;}
.y14b{bottom:547.414320px;}
.y17{bottom:550.203354px;}
.y1d2{bottom:557.269215px;}
.ya7{bottom:557.276685px;}
.yc7{bottom:557.284140px;}
.ye0{bottom:557.285130px;}
.y71{bottom:557.291490px;}
.yf3{bottom:557.329245px;}
.y4b{bottom:557.335080px;}
.y14a{bottom:565.436340px;}
.y16{bottom:568.143534px;}
.y1d1{bottom:570.791535px;}
.y18c{bottom:575.291970px;}
.ya6{bottom:575.298690px;}
.yc6{bottom:575.306145px;}
.ydf{bottom:575.307150px;}
.y70{bottom:575.313510px;}
.yf2{bottom:575.351265px;}
.y4a{bottom:575.357100px;}
.y149{bottom:583.384860px;}
.y1d0{bottom:584.313855px;}
.y15{bottom:586.173714px;}
.ya5{bottom:593.320710px;}
.yc5{bottom:593.328165px;}
.yde{bottom:593.329155px;}
.y6f{bottom:593.335515px;}
.yf1{bottom:593.373285px;}
.y49{bottom:593.379105px;}
.y1cf{bottom:597.836175px;}
.y148{bottom:601.406865px;}
.y18b{bottom:602.336610px;}
.y14{bottom:608.703939px;}
.y1ce{bottom:611.268495px;}
.ya4{bottom:611.269230px;}
.yc4{bottom:611.276685px;}
.ydd{bottom:611.277675px;}
.y6e{bottom:611.284035px;}
.yf0{bottom:611.321790px;}
.y48{bottom:611.327625px;}
.y18a{bottom:615.768930px;}
.y147{bottom:619.428885px;}
.y1cd{bottom:624.790815px;}
.y13{bottom:626.644119px;}
.y188{bottom:629.290080px;}
.ya3{bottom:629.291250px;}
.yc3{bottom:629.298690px;}
.ydc{bottom:629.299695px;}
.y6d{bottom:629.306055px;}
.ya1{bottom:629.313465px;}
.y47{bottom:629.349645px;}
.y189{bottom:634.308465px;}
.ya2{bottom:635.839185px;}
.y146{bottom:637.377405px;}
.y1cc{bottom:638.313135px;}
.y185{bottom:642.811365px;}
.y187{bottom:642.812400px;}
.y12{bottom:644.674299px;}
.yc2{bottom:647.320710px;}
.ydb{bottom:647.321715px;}
.y6c{bottom:647.328075px;}
.ya0{bottom:647.335485px;}
.y46{bottom:647.371665px;}
.y186{bottom:647.829765px;}
.y107{bottom:650.221140px;}
.y1cb{bottom:651.835455px;}
.y145{bottom:655.399425px;}
.y184{bottom:656.333685px;}
.y183{bottom:661.265985px;}
.y11{bottom:662.704479px;}
.y1ca{bottom:665.267775px;}
.y106{bottom:665.268960px;}
.yc1{bottom:665.269230px;}
.yda{bottom:665.270220px;}
.y6b{bottom:665.276580px;}
.y9f{bottom:665.283990px;}
.y45{bottom:665.320170px;}
.y182{bottom:669.767760px;}
.y144{bottom:673.421430px;}
.y1c9{bottom:678.790095px;}
.y105{bottom:680.232765px;}
.y10{bottom:680.644659px;}
.y181{bottom:683.290080px;}
.yc0{bottom:683.291250px;}
.yd9{bottom:683.292240px;}
.y6a{bottom:683.298600px;}
.y9e{bottom:683.306010px;}
.y44{bottom:683.342190px;}
.y143{bottom:691.369950px;}
.y1c8{bottom:692.312400px;}
.y104{bottom:695.196585px;}
.y17e{bottom:696.811365px;}
.y180{bottom:696.812400px;}
.yf{bottom:698.674839px;}
.yd8{bottom:701.314260px;}
.ybf{bottom:701.319585px;}
.y69{bottom:701.320620px;}
.y9d{bottom:701.328030px;}
.y43{bottom:701.364210px;}
.y17f{bottom:701.829765px;}
.y1c7{bottom:705.834720px;}
.y142{bottom:709.398285px;}
.y17d{bottom:710.333685px;}
.y17b{bottom:710.337645px;}
.y17c{bottom:715.265985px;}
.yd7{bottom:719.262765px;}
.y1c6{bottom:719.267055px;}
.y68{bottom:719.269140px;}
.y9c{bottom:719.276550px;}
.y42{bottom:719.312715px;}
.ye{bottom:721.130064px;}
.y17a{bottom:723.769965px;}
.y179{bottom:728.787270px;}
.y1c5{bottom:732.789360px;}
.yd6{bottom:737.291100px;}
.y67{bottom:737.291145px;}
.y178{bottom:737.292810px;}
.y9b{bottom:737.298555px;}
.y41{bottom:737.334735px;}
.ybe{bottom:737.349855px;}
.yd{bottom:739.160244px;}
.y1c4{bottom:746.311680px;}
.y66{bottom:755.313165px;}
.y9a{bottom:755.320575px;}
.y141{bottom:755.351475px;}
.y40{bottom:755.356755px;}
.ybd{bottom:755.371860px;}
.yc{bottom:757.190424px;}
.y1c3{bottom:759.834000px;}
.y177{bottom:764.337450px;}
.y65{bottom:773.261685px;}
.y1c2{bottom:773.266320px;}
.y99{bottom:773.269095px;}
.yd5{bottom:773.275455px;}
.y140{bottom:773.299995px;}
.y3f{bottom:773.305275px;}
.ybc{bottom:773.320380px;}
.y176{bottom:777.769770px;}
.yb{bottom:784.147809px;}
.y1c1{bottom:786.788640px;}
.y98{bottom:791.291100px;}
.yd4{bottom:791.297475px;}
.y13f{bottom:791.322000px;}
.y3e{bottom:791.327280px;}
.ybb{bottom:791.342400px;}
.y1c0{bottom:800.310960px;}
.y94{bottom:808.213995px;}
.yd3{bottom:809.319495px;}
.y13e{bottom:809.344020px;}
.y3d{bottom:809.349300px;}
.yba{bottom:809.364405px;}
.y93{bottom:812.891145px;}
.y1bf{bottom:813.833280px;}
.y92{bottom:820.969755px;}
.y91{bottom:825.646905px;}
.y175{bottom:827.264580px;}
.y1be{bottom:827.265600px;}
.y13d{bottom:827.292540px;}
.y3c{bottom:827.297820px;}
.yb9{bottom:827.312925px;}
.yd1{bottom:829.307895px;}
.y90{bottom:840.699000px;}
.y8e{bottom:840.703935px;}
.y174{bottom:840.786900px;}
.y1bd{bottom:840.787920px;}
.y9{bottom:841.889559px;}
.yd0{bottom:844.355715px;}
.y13c{bottom:845.314560px;}
.y3b{bottom:845.319825px;}
.yb8{bottom:845.334945px;}
.y8f{bottom:846.056580px;}
.ya{bottom:849.288039px;}
.y173{bottom:854.309220px;}
.y1bc{bottom:854.310240px;}
.y131{bottom:858.981000px;}
.y8d{bottom:861.703680px;}
.y8b{bottom:861.713820px;}
.y5{bottom:862.894224px;}
.y7{bottom:862.894239px;}
.y13b{bottom:863.336565px;}
.y3a{bottom:863.341845px;}
.yb7{bottom:863.356965px;}
.y8c{bottom:867.061155px;}
.y172{bottom:867.831540px;}
.y1bb{bottom:867.832560px;}
.y6{bottom:870.292689px;}
.y8{bottom:870.292704px;}
.y130{bottom:871.738305px;}
.y171{bottom:881.263860px;}
.y1ba{bottom:881.264880px;}
.y13a{bottom:881.285085px;}
.y39{bottom:881.290365px;}
.yb6{bottom:881.305470px;}
.y8a{bottom:882.713550px;}
.y12f{bottom:891.469905px;}
.y170{bottom:894.786180px;}
.y1b9{bottom:894.787200px;}
.y4{bottom:898.955709px;}
.y139{bottom:899.307105px;}
.y38{bottom:899.312385px;}
.yb5{bottom:899.327490px;}
.y89{bottom:903.713280px;}
.y87{bottom:903.718125px;}
.y12e{bottom:904.993725px;}
.y1b8{bottom:908.309520px;}
.y88{bottom:909.070680px;}
.y138{bottom:917.329110px;}
.y37{bottom:917.334390px;}
.yb4{bottom:917.349510px;}
.y16f{bottom:921.830820px;}
.y1b7{bottom:921.831840px;}
.y86{bottom:924.717870px;}
.y84{bottom:924.734070px;}
.y12d{bottom:925.993470px;}
.y12b{bottom:925.998585px;}
.y85{bottom:930.075255px;}
.y12c{bottom:931.350855px;}
.y16e{bottom:935.263140px;}
.y1b6{bottom:935.264160px;}
.y137{bottom:935.277630px;}
.y36{bottom:935.282910px;}
.yb3{bottom:935.298030px;}
.y3{bottom:937.907874px;}
.y83{bottom:945.733800px;}
.y12a{bottom:946.998315px;}
.y128{bottom:947.003250px;}
.y16d{bottom:948.785460px;}
.y1b5{bottom:948.786480px;}
.y129{bottom:952.355715px;}
.y136{bottom:953.299650px;}
.y35{bottom:953.304930px;}
.yb2{bottom:953.320035px;}
.y1b4{bottom:962.308800px;}
.y82{bottom:966.733545px;}
.y127{bottom:968.002995px;}
.y125{bottom:968.005515px;}
.y135{bottom:971.321655px;}
.y34{bottom:971.326935px;}
.yb1{bottom:971.342055px;}
.y126{bottom:973.360380px;}
.y16c{bottom:975.830100px;}
.y1b3{bottom:975.831120px;}
.y2{bottom:976.932024px;}
.y81{bottom:987.733275px;}
.y16b{bottom:989.262420px;}
.y1b2{bottom:989.263440px;}
.y134{bottom:989.270175px;}
.y33{bottom:989.275455px;}
.yb0{bottom:989.290575px;}
.y16a{bottom:1002.784740px;}
.y1b1{bottom:1002.785760px;}
.y133{bottom:1007.292195px;}
.y32{bottom:1007.297475px;}
.yaf{bottom:1007.312580px;}
.y80{bottom:1007.461035px;}
.y169{bottom:1016.307060px;}
.y1b0{bottom:1016.308080px;}
.y132{bottom:1025.314215px;}
.y31{bottom:1025.319495px;}
.yae{bottom:1025.334600px;}
.y124{bottom:1027.190280px;}
.y7f{bottom:1027.190985px;}
.y168{bottom:1029.829380px;}
.y1af{bottom:1029.830400px;}
.y123{bottom:1033.143030px;}
.y1{bottom:1033.908330px;}
.y167{bottom:1043.261700px;}
.y30{bottom:1043.262720px;}
.yad{bottom:1043.283120px;}
.y7e{bottom:1043.687985px;}
.y2f{bottom:1112.827995px;}
.y1ec{bottom:1127.791811px;}
.y2e{bottom:1127.791815px;}
.yd2{bottom:1127.792175px;}
.y97{bottom:1127.792910px;}
.h10{height:20.185549px;}
.h9{height:21.626539px;}
.hf{height:23.068395px;}
.h12{height:25.952539px;}
.h11{height:28.376746px;}
.ha{height:30.281567px;}
.h5{height:31.721260px;}
.h8{height:32.444567px;}
.hc{height:34.607567px;}
.he{height:38.934000px;}
.hb{height:42.287471px;}
.hd{height:42.570766px;}
.h7{height:43.260433px;}
.h6{height:43.939800px;}
.h4{height:47.586433px;}
.h2{height:55.458000px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039395px;}
.x10{left:89.036295px;}
.x1{left:91.077180px;}
.xf{left:94.818945px;}
.x12{left:97.005045px;}
.x36{left:101.877150px;}
.x35{left:104.003100px;}
.x40{left:107.578980px;}
.x30{left:112.166850px;}
.x31{left:125.092950px;}
.x29{left:140.144850px;}
.x34{left:155.536950px;}
.x2a{left:160.044000px;}
.x2b{left:173.310150px;}
.x3{left:181.984245px;}
.xe{left:188.617395px;}
.x4{left:213.023595px;}
.x2c{left:236.579550px;}
.x1f{left:240.576300px;}
.x20{left:246.103965px;}
.x2d{left:247.634565px;}
.x11{left:270.510150px;}
.x5{left:299.338560px;}
.x32{left:301.634565px;}
.x33{left:306.481800px;}
.x6{left:312.519660px;}
.x2e{left:324.169950px;}
.x25{left:332.758935px;}
.x26{left:348.321150px;}
.x27{left:355.634565px;}
.x28{left:360.481800px;}
.x2f{left:369.661380px;}
.x7{left:416.437860px;}
.x8{left:422.135460px;}
.x13{left:457.077855px;}
.x1d{left:460.828215px;}
.x22{left:462.784200px;}
.x1e{left:466.100700px;}
.x14{left:469.043535px;}
.x23{left:473.924235px;}
.x3f{left:479.626080px;}
.x24{left:492.973065px;}
.x16{left:506.749515px;}
.x17{left:511.086450px;}
.x18{left:518.144715px;}
.x9{left:523.927410px;}
.x19{left:525.798300px;}
.xa{left:537.193680px;}
.x1c{left:544.762065px;}
.x1a{left:553.096065px;}
.x1b{left:561.599850px;}
.x37{left:581.244000px;}
.x38{left:585.240735px;}
.x21{left:621.807765px;}
.xb{left:632.947995px;}
.x3b{left:634.478535px;}
.x3c{left:638.475450px;}
.xc{left:646.129080px;}
.x15{left:673.936935px;}
.x3d{left:687.032865px;}
.x3e{left:691.114785px;}
.x39{left:730.402950px;}
.xd{left:731.933760px;}
.x3a{left:734.399865px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls56{letter-spacing:-1.689579pt;}
.ls57{letter-spacing:-1.668246pt;}
.ls58{letter-spacing:-1.604247pt;}
.lsc{letter-spacing:-1.397347pt;}
.ls49{letter-spacing:-1.395506pt;}
.ls10{letter-spacing:-1.392014pt;}
.ls41{letter-spacing:-1.338013pt;}
.ls12{letter-spacing:-1.333347pt;}
.ls15{letter-spacing:-1.322680pt;}
.lsf{letter-spacing:-1.317347pt;}
.ls14{letter-spacing:-1.312013pt;}
.ls9{letter-spacing:-1.301346pt;}
.ls44{letter-spacing:-1.285747pt;}
.lse{letter-spacing:-1.280013pt;}
.ls43{letter-spacing:-1.275294pt;}
.ls8{letter-spacing:-1.274679pt;}
.ls40{letter-spacing:-1.270067pt;}
.ls48{letter-spacing:-1.259614pt;}
.lsb{letter-spacing:-1.258679pt;}
.ls3f{letter-spacing:-1.254387pt;}
.ls11{letter-spacing:-1.253346pt;}
.ls45{letter-spacing:-1.243934pt;}
.ls47{letter-spacing:-1.238707pt;}
.ls46{letter-spacing:-1.228254pt;}
.lsa{letter-spacing:-1.226679pt;}
.lsd{letter-spacing:-1.221346pt;}
.ls4a{letter-spacing:-1.212569pt;}
.ls42{letter-spacing:-1.181215pt;}
.ls13{letter-spacing:-1.173345pt;}
.ls6c{letter-spacing:-1.151985pt;}
.ls3e{letter-spacing:-1.108042pt;}
.ls26{letter-spacing:-1.072011pt;}
.ls28{letter-spacing:-1.056011pt;}
.ls20{letter-spacing:-1.045344pt;}
.ls6e{letter-spacing:-1.043986pt;}
.ls1c{letter-spacing:-1.040010pt;}
.ls6d{letter-spacing:-1.035986pt;}
.ls3d{letter-spacing:-1.034869pt;}
.ls19{letter-spacing:-1.029344pt;}
.ls25{letter-spacing:-1.024005pt;}
.ls6b{letter-spacing:-1.015986pt;}
.ls52{letter-spacing:-1.008736pt;}
.ls22{letter-spacing:-1.002677pt;}
.ls18{letter-spacing:-0.997343pt;}
.ls24{letter-spacing:-0.992005pt;}
.ls4f{letter-spacing:-0.987830pt;}
.ls1a{letter-spacing:-0.986677pt;}
.ls2e{letter-spacing:-0.982603pt;}
.ls1d{letter-spacing:-0.981343pt;}
.ls51{letter-spacing:-0.977377pt;}
.ls16{letter-spacing:-0.976010pt;}
.ls34{letter-spacing:-0.972145pt;}
.ls2d{letter-spacing:-0.966923pt;}
.ls53{letter-spacing:-0.961697pt;}
.ls23{letter-spacing:-0.960010pt;}
.ls33{letter-spacing:-0.956470pt;}
.ls1e{letter-spacing:-0.954676pt;}
.ls37{letter-spacing:-0.951244pt;}
.ls4b{letter-spacing:-0.946017pt;}
.ls17{letter-spacing:-0.944009pt;}
.ls38{letter-spacing:-0.940790pt;}
.ls3a{letter-spacing:-0.925111pt;}
.ls30{letter-spacing:-0.919884pt;}
.ls36{letter-spacing:-0.914657pt;}
.ls31{letter-spacing:-0.909431pt;}
.ls2f{letter-spacing:-0.904204pt;}
.ls3b{letter-spacing:-0.898977pt;}
.ls27{letter-spacing:-0.896009pt;}
.ls4c{letter-spacing:-0.893751pt;}
.ls35{letter-spacing:-0.878071pt;}
.ls32{letter-spacing:-0.872844pt;}
.ls50{letter-spacing:-0.867618pt;}
.ls39{letter-spacing:-0.857165pt;}
.ls4e{letter-spacing:-0.846711pt;}
.ls3c{letter-spacing:-0.815352pt;}
.ls1f{letter-spacing:-0.794675pt;}
.ls4d{letter-spacing:-0.736952pt;}
.ls7{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.039972pt;}
.ls67{letter-spacing:0.040028pt;}
.ls54{letter-spacing:0.052277pt;}
.ls69{letter-spacing:0.080000pt;}
.ls60{letter-spacing:0.085330pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.156800pt;}
.ls5a{letter-spacing:0.156802pt;}
.ls64{letter-spacing:0.200042pt;}
.ls61{letter-spacing:6.271159pt;}
.ls5b{letter-spacing:6.271206pt;}
.ls5c{letter-spacing:8.277223pt;}
.ls5e{letter-spacing:8.277276pt;}
.ls5f{letter-spacing:8.575890pt;}
.ls5d{letter-spacing:8.575943pt;}
.ls1b{letter-spacing:9.493428pt;}
.ls5{letter-spacing:9.493444pt;}
.ls3{letter-spacing:9.546725pt;}
.ls1{letter-spacing:9.546778pt;}
.ls6a{letter-spacing:9.591872pt;}
.ls2{letter-spacing:9.600107pt;}
.ls4{letter-spacing:9.600111pt;}
.ls21{letter-spacing:9.797431pt;}
.ls6{letter-spacing:9.813444pt;}
.ls59{letter-spacing:10.348684pt;}
.ls63{letter-spacing:11.999802pt;}
.ls65{letter-spacing:12.039840pt;}
.ls62{letter-spacing:14.400000pt;}
.ls2b{letter-spacing:15.888907pt;}
.ls29{letter-spacing:16.097983pt;}
.ls68{letter-spacing:16.458027pt;}
.ls55{letter-spacing:20.436053pt;}
.ls0{letter-spacing:38.528161pt;}
.ws142{word-spacing:-16.512960pt;}
.ws2b{word-spacing:-9.850765pt;}
.ws21{word-spacing:-9.546762pt;}
.ws49{word-spacing:-0.054933pt;}
.ws1e{word-spacing:-0.053334pt;}
.ws4f{word-spacing:-0.052266pt;}
.ws47{word-spacing:-0.042666pt;}
.ws39{word-spacing:-0.039999pt;}
.ws41{word-spacing:-0.037333pt;}
.ws48{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.684686pt;}
.ws61{word-spacing:0.982603pt;}
.ws35{word-spacing:1.002677pt;}
.ws65{word-spacing:1.285747pt;}
.wseb{word-spacing:7.935901pt;}
.ws11e{word-spacing:9.264000pt;}
.ws111{word-spacing:9.504000pt;}
.ws11d{word-spacing:9.600000pt;}
.ws38{word-spacing:10.559859pt;}
.ws103{word-spacing:10.610025pt;}
.ws42{word-spacing:10.938510pt;}
.ws3d{word-spacing:11.050509pt;}
.ws43{word-spacing:11.125174pt;}
.ws44{word-spacing:11.199840pt;}
.wsb3{word-spacing:11.237173pt;}
.ws40{word-spacing:11.274506pt;}
.ws3f{word-spacing:11.386504pt;}
.ws3e{word-spacing:11.461170pt;}
.ws22{word-spacing:11.482781pt;}
.ws23{word-spacing:11.493448pt;}
.ws147{word-spacing:11.535846pt;}
.ws14b{word-spacing:11.575846pt;}
.ws149{word-spacing:11.595845pt;}
.ws14c{word-spacing:11.643845pt;}
.ws14a{word-spacing:11.719844pt;}
.ws148{word-spacing:11.751843pt;}
.ws145{word-spacing:11.759843pt;}
.ws143{word-spacing:11.799843pt;}
.ws2c{word-spacing:11.813451pt;}
.ws3c{word-spacing:11.839842pt;}
.ws13e{word-spacing:11.879824pt;}
.ws3a{word-spacing:11.879842pt;}
.ws137{word-spacing:11.919841pt;}
.ws141{word-spacing:11.919849pt;}
.ws138{word-spacing:11.959841pt;}
.ws135{word-spacing:11.999840pt;}
.ws144{word-spacing:12.039839pt;}
.ws3b{word-spacing:12.079839pt;}
.ws139{word-spacing:12.119838pt;}
.ws13c{word-spacing:12.159838pt;}
.ws136{word-spacing:12.199837pt;}
.wsb4{word-spacing:12.202514pt;}
.ws140{word-spacing:12.239837pt;}
.ws13d{word-spacing:12.279836pt;}
.ws13f{word-spacing:12.319836pt;}
.wsac{word-spacing:12.330513pt;}
.ws13b{word-spacing:12.359835pt;}
.ws10a{word-spacing:12.373179pt;}
.ws13a{word-spacing:12.399835pt;}
.wsb2{word-spacing:12.415845pt;}
.wsb1{word-spacing:12.458511pt;}
.ws117{word-spacing:12.458526pt;}
.ws45{word-spacing:12.501162pt;}
.wsae{word-spacing:12.501177pt;}
.wsad{word-spacing:12.543843pt;}
.wsab{word-spacing:12.586509pt;}
.ws113{word-spacing:12.586522pt;}
.ws46{word-spacing:12.629175pt;}
.wsb5{word-spacing:12.671842pt;}
.ws114{word-spacing:12.714508pt;}
.ws11b{word-spacing:12.885172pt;}
.wsee{word-spacing:12.953438pt;}
.wsec{word-spacing:13.124103pt;}
.wsed{word-spacing:13.145436pt;}
.ws11c{word-spacing:14.112000pt;}
.ws10b{word-spacing:14.256000pt;}
.wsa9{word-spacing:14.304000pt;}
.ws60{word-spacing:14.352280pt;}
.ws10c{word-spacing:14.400000pt;}
.ws7d{word-spacing:14.435906pt;}
.ws110{word-spacing:14.448000pt;}
.ws80{word-spacing:14.592704pt;}
.ws81{word-spacing:14.629291pt;}
.ws8a{word-spacing:14.739050pt;}
.ws5e{word-spacing:14.775636pt;}
.ws5d{word-spacing:14.958567pt;}
.ws4d{word-spacing:14.979474pt;}
.ws28{word-spacing:14.981463pt;}
.ws36{word-spacing:15.040150pt;}
.ws77{word-spacing:15.042193pt;}
.ws1c{word-spacing:15.077484pt;}
.ws26{word-spacing:15.088151pt;}
.ws2f{word-spacing:15.093479pt;}
.ws34{word-spacing:15.093484pt;}
.ws33{word-spacing:15.189485pt;}
.ws12c{word-spacing:15.209445pt;}
.ws25{word-spacing:15.301486pt;}
.ws27{word-spacing:15.344153pt;}
.wse{word-spacing:15.360154pt;}
.ws32{word-spacing:15.360176pt;}
.ws1b{word-spacing:15.376154pt;}
.ws24{word-spacing:15.381487pt;}
.ws37{word-spacing:15.392149pt;}
.ws1d{word-spacing:15.397487pt;}
.ws2e{word-spacing:15.402821pt;}
.ws17{word-spacing:15.413487pt;}
.ws12f{word-spacing:15.418509pt;}
.ws31{word-spacing:15.424149pt;}
.ws29{word-spacing:15.429488pt;}
.ws20{word-spacing:15.440154pt;}
.ws30{word-spacing:15.445482pt;}
.ws2d{word-spacing:15.461512pt;}
.ws13{word-spacing:15.466821pt;}
.wsb6{word-spacing:15.523042pt;}
.ws1f{word-spacing:15.536155pt;}
.ws10{word-spacing:15.552156pt;}
.ws12{word-spacing:15.568156pt;}
.ws9d{word-spacing:15.575308pt;}
.ws2a{word-spacing:15.605465pt;}
.ws16{word-spacing:15.626821pt;}
.ws19{word-spacing:15.648156pt;}
.ws5b{word-spacing:15.648480pt;}
.ws18{word-spacing:15.658823pt;}
.wsc{word-spacing:15.674823pt;}
.wsbb{word-spacing:15.679840pt;}
.wsd{word-spacing:15.701490pt;}
.wsf{word-spacing:15.754824pt;}
.ws14{word-spacing:15.770824pt;}
.wsef{word-spacing:15.784372pt;}
.ws1a{word-spacing:15.797458pt;}
.ws54{word-spacing:15.805279pt;}
.wsf6{word-spacing:15.836638pt;}
.ws15{word-spacing:15.845492pt;}
.wse5{word-spacing:15.888905pt;}
.ws9c{word-spacing:15.888919pt;}
.ws11{word-spacing:15.904159pt;}
.wsd7{word-spacing:15.941171pt;}
.ws9{word-spacing:16.000160pt;}
.wsba{word-spacing:16.097969pt;}
.wse4{word-spacing:16.150235pt;}
.wsb{word-spacing:16.160151pt;}
.wsa{word-spacing:16.160162pt;}
.ws5f{word-spacing:16.160688pt;}
.wsf7{word-spacing:16.202501pt;}
.ws79{word-spacing:16.374980pt;}
.wsc3{word-spacing:16.463832pt;}
.ws96{word-spacing:16.516098pt;}
.ws8{word-spacing:16.533529pt;}
.wsbd{word-spacing:16.568364pt;}
.ws7e{word-spacing:16.578817pt;}
.ws105{word-spacing:16.620630pt;}
.wsfe{word-spacing:16.672897pt;}
.ws106{word-spacing:16.725163pt;}
.ws126{word-spacing:16.777429pt;}
.wscb{word-spacing:16.829695pt;}
.ws6a{word-spacing:16.960360pt;}
.ws98{word-spacing:16.986493pt;}
.wsa1{word-spacing:17.038759pt;}
.ws57{word-spacing:17.049213pt;}
.ws68{word-spacing:17.122385pt;}
.wse6{word-spacing:17.143292pt;}
.wse0{word-spacing:17.195558pt;}
.ws7f{word-spacing:17.258277pt;}
.ws58{word-spacing:17.300090pt;}
.ws95{word-spacing:17.352356pt;}
.ws128{word-spacing:17.404622pt;}
.ws6{word-spacing:17.424158pt;}
.wsf1{word-spacing:17.456889pt;}
.wsb7{word-spacing:17.509155pt;}
.wsda{word-spacing:17.561421pt;}
.ws7{word-spacing:17.600160pt;}
.ws50{word-spacing:17.650273pt;}
.ws5{word-spacing:17.658827pt;}
.wsf3{word-spacing:17.665953pt;}
.ws4e{word-spacing:17.686860pt;}
.ws71{word-spacing:17.739126pt;}
.ws76{word-spacing:17.786165pt;}
.ws108{word-spacing:17.927284pt;}
.ws89{word-spacing:17.937737pt;}
.ws88{word-spacing:18.104989pt;}
.wsfd{word-spacing:18.240881pt;}
.ws72{word-spacing:18.277467pt;}
.wsa3{word-spacing:18.449945pt;}
.ws52{word-spacing:18.585832pt;}
.ws101{word-spacing:18.606743pt;}
.ws129{word-spacing:18.815808pt;}
.wsfb{word-spacing:18.868074pt;}
.wsc4{word-spacing:19.024873pt;}
.wsa7{word-spacing:19.077139pt;}
.ws102{word-spacing:19.129405pt;}
.wsc6{word-spacing:19.181671pt;}
.wsa8{word-spacing:19.233937pt;}
.ws51{word-spacing:19.249617pt;}
.wsc5{word-spacing:19.338459pt;}
.wsff{word-spacing:19.338469pt;}
.ws94{word-spacing:19.390735pt;}
.ws63{word-spacing:19.615480pt;}
.wscc{word-spacing:19.756598pt;}
.ws69{word-spacing:19.902944pt;}
.ws109{word-spacing:19.913397pt;}
.ws91{word-spacing:19.965663pt;}
.wsdb{word-spacing:20.070195pt;}
.ws9f{word-spacing:20.122461pt;}
.wse8{word-spacing:20.279260pt;}
.ws93{word-spacing:20.436058pt;}
.wse9{word-spacing:20.592857pt;}
.wsdc{word-spacing:20.592860pt;}
.wsdd{word-spacing:20.645137pt;}
.wsde{word-spacing:20.697389pt;}
.ws85{word-spacing:20.728748pt;}
.ws133{word-spacing:20.749655pt;}
.wscf{word-spacing:20.958719pt;}
.ws6b{word-spacing:20.995306pt;}
.ws0{word-spacing:21.008000pt;}
.ws104{word-spacing:21.010986pt;}
.ws83{word-spacing:21.042345pt;}
.ws6c{word-spacing:21.063252pt;}
.wsa0{word-spacing:21.324582pt;}
.wsc9{word-spacing:21.376849pt;}
.ws4c{word-spacing:21.444795pt;}
.ws82{word-spacing:21.460469pt;}
.wsa4{word-spacing:21.585913pt;}
.wsbc{word-spacing:21.742711pt;}
.ws74{word-spacing:21.763618pt;}
.ws75{word-spacing:21.805426pt;}
.wsbf{word-spacing:21.847244pt;}
.wsc0{word-spacing:21.899510pt;}
.wsc7{word-spacing:22.004042pt;}
.ws84{word-spacing:22.092895pt;}
.ws124{word-spacing:22.108574pt;}
.wsd8{word-spacing:22.160841pt;}
.wsd0{word-spacing:22.213107pt;}
.wsd1{word-spacing:22.317639pt;}
.wsd9{word-spacing:22.369905pt;}
.ws12d{word-spacing:22.474437pt;}
.ws97{word-spacing:22.526703pt;}
.ws127{word-spacing:22.578970pt;}
.ws86{word-spacing:22.594649pt;}
.wsd2{word-spacing:22.735768pt;}
.ws107{word-spacing:22.788034pt;}
.wsf8{word-spacing:22.840300pt;}
.ws8b{word-spacing:22.944833pt;}
.ws70{word-spacing:23.033685pt;}
.ws132{word-spacing:23.049365pt;}
.ws56{word-spacing:23.180030pt;}
.ws99{word-spacing:23.206163pt;}
.ws73{word-spacing:23.237523pt;}
.ws9b{word-spacing:23.362962pt;}
.ws59{word-spacing:23.373415pt;}
.wsc8{word-spacing:23.572026pt;}
.ws55{word-spacing:23.603381pt;}
.ws12a{word-spacing:23.676558pt;}
.wsf0{word-spacing:23.728825pt;}
.ws62{word-spacing:23.833357pt;}
.wsfa{word-spacing:23.990155pt;}
.ws7c{word-spacing:24.000608pt;}
.wsa2{word-spacing:24.042421pt;}
.ws7a{word-spacing:24.047648pt;}
.ws12b{word-spacing:24.303752pt;}
.ws4a{word-spacing:24.382151pt;}
.ws90{word-spacing:24.460550pt;}
.wsf9{word-spacing:24.565083pt;}
.ws8f{word-spacing:24.617359pt;}
.wse7{word-spacing:24.774147pt;}
.ws100{word-spacing:24.930946pt;}
.ws92{word-spacing:25.140010pt;}
.wsb8{word-spacing:25.192276pt;}
.wsa6{word-spacing:25.296809pt;}
.ws8d{word-spacing:25.505873pt;}
.ws8c{word-spacing:25.767204pt;}
.wse2{word-spacing:25.819470pt;}
.wsf4{word-spacing:26.185333pt;}
.ws6d{word-spacing:26.237599pt;}
.ws5c{word-spacing:26.326451pt;}
.wsce{word-spacing:26.394397pt;}
.ws9e{word-spacing:26.446663pt;}
.ws8e{word-spacing:26.760260pt;}
.ws125{word-spacing:27.282922pt;}
.ws78{word-spacing:27.288148pt;}
.wsea{word-spacing:27.335188pt;}
.wsfc{word-spacing:27.910115pt;}
.ws67{word-spacing:27.931022pt;}
.wsc1{word-spacing:28.066914pt;}
.wsf2{word-spacing:28.380510pt;}
.ws134{word-spacing:28.589575pt;}
.ws130{word-spacing:28.850906pt;}
.ws4b{word-spacing:29.154049pt;}
.wsca{word-spacing:30.105293pt;}
.ws12e{word-spacing:30.157559pt;}
.ws6f{word-spacing:30.319584pt;}
.ws6e{word-spacing:30.418890pt;}
.wse1{word-spacing:30.523422pt;}
.wsa5{word-spacing:30.680220pt;}
.ws87{word-spacing:30.904965pt;}
.ws9a{word-spacing:31.568745pt;}
.ws120{word-spacing:31.700937pt;}
.ws53{word-spacing:31.871888pt;}
.wscd{word-spacing:32.509535pt;}
.ws66{word-spacing:33.220354pt;}
.ws64{word-spacing:33.518271pt;}
.wsbe{word-spacing:33.607124pt;}
.ws5a{word-spacing:33.816188pt;}
.wsb9{word-spacing:33.972987pt;}
.wsf5{word-spacing:36.115898pt;}
.ws115{word-spacing:36.607492pt;}
.ws116{word-spacing:36.607546pt;}
.wsc2{word-spacing:37.422551pt;}
.ws3{word-spacing:38.144159pt;}
.ws4{word-spacing:38.272159pt;}
.ws1{word-spacing:38.528161pt;}
.ws2{word-spacing:38.784128pt;}
.wsdf{word-spacing:38.886003pt;}
.wse3{word-spacing:38.990535pt;}
.ws146{word-spacing:39.327476pt;}
.ws131{word-spacing:40.558519pt;}
.wsd6{word-spacing:44.583012pt;}
.wsd5{word-spacing:49.652827pt;}
.wsd4{word-spacing:49.705093pt;}
.wsd3{word-spacing:52.213867pt;}
.ws123{word-spacing:52.266013pt;}
.ws119{word-spacing:56.873946pt;}
.ws11a{word-spacing:65.364559pt;}
.ws118{word-spacing:65.663172pt;}
.ws122{word-spacing:72.703091pt;}
.ws121{word-spacing:97.364116pt;}
.ws112{word-spacing:117.331867pt;}
.wsaa{word-spacing:191.357608pt;}
.wsaf{word-spacing:249.938189pt;}
.ws11f{word-spacing:252.540819pt;}
.wsb0{word-spacing:277.457845pt;}
.ws10d{word-spacing:423.504051pt;}
.ws10e{word-spacing:444.965105pt;}
.ws10f{word-spacing:470.052802pt;}
._36{margin-left:-15.930667pt;}
._b{margin-left:-11.616082pt;}
._9{margin-left:-10.560106pt;}
._38{margin-left:-9.599872pt;}
._16{margin-left:-4.860750pt;}
._15{margin-left:-3.240500pt;}
._e{margin-left:-1.798004pt;}
._6{margin-left:-0.906676pt;}
._5{width:0.992034pt;}
._18{width:1.935891pt;}
._c{width:3.461279pt;}
._a{width:4.426700pt;}
._0{width:7.973333pt;}
._7{width:10.400104pt;}
._2c{width:11.631855pt;}
._d{width:12.559842pt;}
._4{width:13.493468pt;}
._8{width:15.232172pt;}
._3{width:17.226839pt;}
._2b{width:18.345413pt;}
._f{width:19.286203pt;}
._19{width:20.226994pt;}
._12{width:21.481381pt;}
._11{width:22.999143pt;}
._14{width:24.194073pt;}
._2d{width:25.349075pt;}
._10{width:26.467619pt;}
._13{width:27.596518pt;}
._1{width:29.050667pt;}
._35{width:30.000761pt;}
._27{width:31.100393pt;}
._17{width:32.561801pt;}
._28{width:33.555880pt;}
._2e{width:37.320063pt;}
._26{width:38.415608pt;}
._2a{width:39.880082pt;}
._29{width:45.681623pt;}
._37{width:58.559219pt;}
._32{width:77.908359pt;}
._2f{width:109.822627pt;}
._30{width:117.374533pt;}
._33{width:138.835598pt;}
._34{width:146.430170pt;}
._22{width:191.442940pt;}
._24{width:221.053267pt;}
._23{width:249.980835pt;}
._1d{width:257.063453pt;}
._31{width:261.458041pt;}
._1b{width:277.500531pt;}
._21{width:297.937642pt;}
._20{width:300.454842pt;}
._1f{width:468.132786pt;}
._1c{width:568.568893pt;}
._1e{width:572.835506pt;}
._1a{width:581.710062pt;}
._25{width:1176.859882pt;}
._2{width:1424.245280pt;}
.fsd{font-size:24.885867pt;}
.fs7{font-size:26.662400pt;}
.fsc{font-size:28.440000pt;}
.fsf{font-size:31.995733pt;}
.fse{font-size:34.839467pt;}
.fs8{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs6{font-size:39.999467pt;}
.fs9{font-size:42.666133pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:58.128080pt;}
.y2c{bottom:68.786600pt;}
.y166{bottom:79.365013pt;}
.y64{bottom:79.370987pt;}
.y1ae{bottom:79.375120pt;}
.y2b{bottom:79.445107pt;}
.y122{bottom:86.248747pt;}
.y115{bottom:86.248800pt;}
.y113{bottom:86.253293pt;}
.y96{bottom:87.688707pt;}
.ycf{bottom:87.691400pt;}
.y2a{bottom:90.103627pt;}
.y114{bottom:91.011067pt;}
.y165{bottom:91.384853pt;}
.y1ad{bottom:91.394960pt;}
.y63{bottom:95.390560pt;}
.y121{bottom:98.269933pt;}
.y29{bottom:100.762133pt;}
.y95{bottom:101.064533pt;}
.yce{bottom:101.067227pt;}
.y164{bottom:103.404693pt;}
.y1ac{bottom:103.414800pt;}
.y112{bottom:104.919733pt;}
.y110{bottom:104.924107pt;}
.y111{bottom:109.681867pt;}
.y62{bottom:111.344800pt;}
.ycd{bottom:114.368400pt;}
.y163{bottom:115.344533pt;}
.y1ab{bottom:115.354640pt;}
.y120{bottom:116.936360pt;}
.y28{bottom:123.361928pt;}
.y10f{bottom:123.590533pt;}
.y10d{bottom:123.591680pt;}
.y162{bottom:127.364373pt;}
.y61{bottom:127.370133pt;}
.y1aa{bottom:127.374480pt;}
.y10e{bottom:128.352800pt;}
.y11f{bottom:128.882880pt;}
.y27{bottom:135.381768pt;}
.y161{bottom:139.384213pt;}
.y1a9{bottom:139.394320pt;}
.y10c{bottom:141.127467pt;}
.y26{bottom:147.401608pt;}
.y11e{bottom:147.549320pt;}
.y160{bottom:151.404053pt;}
.y1a8{bottom:151.414160pt;}
.y25{bottom:151.861474pt;}
.y10b{bottom:158.666267pt;}
.y24{bottom:159.423901pt;}
.y60{bottom:159.520667pt;}
.y11d{bottom:159.570493pt;}
.y15f{bottom:163.343893pt;}
.y1a7{bottom:163.354000pt;}
.y23{bottom:171.363741pt;}
.y10a{bottom:173.330267pt;}
.y15e{bottom:175.363733pt;}
.y1a6{bottom:175.373840pt;}
.y5f{bottom:175.474907pt;}
.y22{bottom:175.823621pt;}
.y11c{bottom:177.106280pt;}
.y21{bottom:183.382674pt;}
.y15d{bottom:187.383573pt;}
.y1a5{bottom:187.393680pt;}
.y109{bottom:187.994267pt;}
.y11a{bottom:189.127467pt;}
.y5e{bottom:191.494467pt;}
.y11b{bottom:193.814133pt;}
.y1eb{bottom:195.414413pt;}
.y15c{bottom:199.403413pt;}
.y1a4{bottom:199.413520pt;}
.y108{bottom:202.658267pt;}
.y119{bottom:206.664533pt;}
.y117{bottom:206.665067pt;}
.y1ea{bottom:207.354253pt;}
.y5d{bottom:207.514040pt;}
.y15b{bottom:211.343253pt;}
.y1a3{bottom:211.353360pt;}
.y118{bottom:211.955867pt;}
.y1e9{bottom:219.374093pt;}
.y116{bottom:221.329067pt;}
.y15a{bottom:223.363093pt;}
.y1a2{bottom:223.373200pt;}
.y5c{bottom:223.468280pt;}
.y1e8{bottom:231.393933pt;}
.y1a1{bottom:235.393040pt;}
.y103{bottom:239.482667pt;}
.y5b{bottom:239.487853pt;}
.y1e7{bottom:243.413773pt;}
.y1a0{bottom:247.412880pt;}
.y1e6{bottom:255.353613pt;}
.yef{bottom:255.397680pt;}
.y102{bottom:255.502227pt;}
.y5a{bottom:255.507413pt;}
.y159{bottom:256.172653pt;}
.y19f{bottom:259.352720pt;}
.y1e5{bottom:267.373453pt;}
.y158{bottom:268.192493pt;}
.y19e{bottom:271.372560pt;}
.yee{bottom:271.417253pt;}
.y101{bottom:271.456467pt;}
.y59{bottom:271.461653pt;}
.y1e4{bottom:279.393293pt;}
.y157{bottom:280.212333pt;}
.y19d{bottom:283.392400pt;}
.yed{bottom:287.436827pt;}
.y100{bottom:287.476040pt;}
.y58{bottom:287.481227pt;}
.y1e3{bottom:291.413133pt;}
.y19c{bottom:295.412240pt;}
.y1e2{bottom:303.352973pt;}
.yec{bottom:303.391053pt;}
.y7d{bottom:303.396720pt;}
.yff{bottom:303.430280pt;}
.y57{bottom:303.435453pt;}
.y19b{bottom:307.352080pt;}
.y156{bottom:312.941893pt;}
.y1e1{bottom:315.372813pt;}
.y19a{bottom:319.371920pt;}
.yeb{bottom:319.410627pt;}
.y7c{bottom:319.416280pt;}
.yfe{bottom:319.449840pt;}
.y56{bottom:319.455027pt;}
.y155{bottom:324.961733pt;}
.y1e0{bottom:327.392653pt;}
.y20{bottom:330.401394pt;}
.y199{bottom:331.391760pt;}
.yea{bottom:335.430200pt;}
.y7b{bottom:335.435853pt;}
.yfd{bottom:335.469413pt;}
.y55{bottom:335.474600pt;}
.y154{bottom:336.981573pt;}
.y1df{bottom:339.412493pt;}
.y198{bottom:343.411600pt;}
.y153{bottom:349.001413pt;}
.y1f{bottom:350.361594pt;}
.y1de{bottom:351.352333pt;}
.ye9{bottom:351.384440pt;}
.y7a{bottom:351.390093pt;}
.yfc{bottom:351.423653pt;}
.y54{bottom:351.428840pt;}
.y197{bottom:355.351440pt;}
.y152{bottom:360.941253pt;}
.y1dd{bottom:363.372173pt;}
.y1e{bottom:366.388421pt;}
.y196{bottom:367.371280pt;}
.ye8{bottom:367.404000pt;}
.y79{bottom:367.409653pt;}
.yfb{bottom:367.443213pt;}
.y53{bottom:367.448400pt;}
.y1dc{bottom:375.392013pt;}
.y195{bottom:379.391120pt;}
.ye7{bottom:383.423573pt;}
.y78{bottom:383.429227pt;}
.yfa{bottom:383.462787pt;}
.y52{bottom:383.467973pt;}
.y1db{bottom:387.411853pt;}
.y1d{bottom:389.068648pt;}
.y194{bottom:391.410960pt;}
.y151{bottom:393.750827pt;}
.y1da{bottom:399.351693pt;}
.ye6{bottom:399.377813pt;}
.y77{bottom:399.383467pt;}
.yf9{bottom:399.417027pt;}
.y51{bottom:399.422213pt;}
.y193{bottom:403.350800pt;}
.y1c{bottom:405.015474pt;}
.y150{bottom:405.770653pt;}
.y1d9{bottom:411.371533pt;}
.y192{bottom:415.370640pt;}
.yac{bottom:415.389867pt;}
.ycc{bottom:415.396493pt;}
.ye5{bottom:415.397373pt;}
.y76{bottom:415.403040pt;}
.yf8{bottom:415.436600pt;}
.y50{bottom:415.441773pt;}
.y14f{bottom:417.790493pt;}
.y1b{bottom:421.042301pt;}
.y1d8{bottom:423.391373pt;}
.y191{bottom:427.390480pt;}
.y14e{bottom:429.810333pt;}
.yab{bottom:431.409440pt;}
.ycb{bottom:431.416067pt;}
.ye4{bottom:431.416947pt;}
.y75{bottom:431.422600pt;}
.yf7{bottom:431.456160pt;}
.y4f{bottom:431.461347pt;}
.y1d7{bottom:435.411213pt;}
.y190{bottom:439.410320pt;}
.y1a{bottom:441.069168pt;}
.y14d{bottom:441.750173pt;}
.y1d6{bottom:447.351053pt;}
.yaa{bottom:447.363680pt;}
.yca{bottom:447.370307pt;}
.ye3{bottom:447.371187pt;}
.y74{bottom:447.376840pt;}
.yf6{bottom:447.410400pt;}
.y4e{bottom:447.415587pt;}
.y18f{bottom:451.350160pt;}
.y14c{bottom:453.770013pt;}
.y19{bottom:457.015994pt;}
.y1d5{bottom:459.370893pt;}
.y18e{bottom:463.370000pt;}
.ya9{bottom:463.383240pt;}
.yc9{bottom:463.389867pt;}
.ye2{bottom:463.390760pt;}
.y73{bottom:463.396413pt;}
.yf5{bottom:463.429973pt;}
.y4d{bottom:463.435160pt;}
.y1d4{bottom:471.390733pt;}
.y18{bottom:473.042821pt;}
.y18d{bottom:475.388800pt;}
.ya8{bottom:479.402813pt;}
.yc8{bottom:479.409440pt;}
.ye1{bottom:479.410320pt;}
.y72{bottom:479.415973pt;}
.yf4{bottom:479.449533pt;}
.y4c{bottom:479.454720pt;}
.y1d3{bottom:483.410573pt;}
.y14b{bottom:486.590507pt;}
.y17{bottom:489.069648pt;}
.y1d2{bottom:495.350413pt;}
.ya7{bottom:495.357053pt;}
.yc7{bottom:495.363680pt;}
.ye0{bottom:495.364560pt;}
.y71{bottom:495.370213pt;}
.yf3{bottom:495.403773pt;}
.y4b{bottom:495.408960pt;}
.y14a{bottom:502.610080pt;}
.y16{bottom:505.016474pt;}
.y1d1{bottom:507.370253pt;}
.y18c{bottom:511.370640pt;}
.ya6{bottom:511.376613pt;}
.yc6{bottom:511.383240pt;}
.ydf{bottom:511.384133pt;}
.y70{bottom:511.389787pt;}
.yf2{bottom:511.423347pt;}
.y4a{bottom:511.428533pt;}
.y149{bottom:518.564320pt;}
.y1d0{bottom:519.390093pt;}
.y15{bottom:521.043301pt;}
.ya5{bottom:527.396187pt;}
.yc5{bottom:527.402813pt;}
.yde{bottom:527.403693pt;}
.y6f{bottom:527.409347pt;}
.yf1{bottom:527.442920pt;}
.y49{bottom:527.448093pt;}
.y1cf{bottom:531.409933pt;}
.y148{bottom:534.583880pt;}
.y18b{bottom:535.410320pt;}
.y14{bottom:541.070168pt;}
.y1ce{bottom:543.349773pt;}
.ya4{bottom:543.350427pt;}
.yc4{bottom:543.357053pt;}
.ydd{bottom:543.357933pt;}
.y6e{bottom:543.363587pt;}
.yf0{bottom:543.397147pt;}
.y48{bottom:543.402333pt;}
.y18a{bottom:547.350160pt;}
.y147{bottom:550.603453pt;}
.y1cd{bottom:555.369613pt;}
.y13{bottom:557.016994pt;}
.y188{bottom:559.368960pt;}
.ya3{bottom:559.370000pt;}
.yc3{bottom:559.376613pt;}
.ydc{bottom:559.377507pt;}
.y6d{bottom:559.383160pt;}
.ya1{bottom:559.389747pt;}
.y47{bottom:559.421907pt;}
.y189{bottom:563.829747pt;}
.ya2{bottom:565.190387pt;}
.y146{bottom:566.557693pt;}
.y1cc{bottom:567.389453pt;}
.y185{bottom:571.387880pt;}
.y187{bottom:571.388800pt;}
.y12{bottom:573.043821pt;}
.yc2{bottom:575.396187pt;}
.ydb{bottom:575.397080pt;}
.y6c{bottom:575.402733pt;}
.ya0{bottom:575.409320pt;}
.y46{bottom:575.441480pt;}
.y186{bottom:575.848680pt;}
.y107{bottom:577.974347pt;}
.y1cb{bottom:579.409293pt;}
.y145{bottom:582.577267pt;}
.y184{bottom:583.407720pt;}
.y183{bottom:587.791987pt;}
.y11{bottom:589.070648pt;}
.y1ca{bottom:591.349133pt;}
.y106{bottom:591.350187pt;}
.yc1{bottom:591.350427pt;}
.yda{bottom:591.351307pt;}
.y6b{bottom:591.356960pt;}
.y9f{bottom:591.363547pt;}
.y45{bottom:591.395707pt;}
.y182{bottom:595.349120pt;}
.y144{bottom:598.596827pt;}
.y1c9{bottom:603.368973pt;}
.y105{bottom:604.651347pt;}
.y10{bottom:605.017474pt;}
.y181{bottom:607.368960pt;}
.yc0{bottom:607.370000pt;}
.yd9{bottom:607.370880pt;}
.y6a{bottom:607.376533pt;}
.y9e{bottom:607.383120pt;}
.y44{bottom:607.415280pt;}
.y143{bottom:614.551067pt;}
.y1c8{bottom:615.388800pt;}
.y104{bottom:617.952520pt;}
.y17e{bottom:619.387880pt;}
.y180{bottom:619.388800pt;}
.yf{bottom:621.044301pt;}
.yd8{bottom:623.390453pt;}
.ybf{bottom:623.395187pt;}
.y69{bottom:623.396107pt;}
.y9d{bottom:623.402693pt;}
.y43{bottom:623.434853pt;}
.y17f{bottom:623.848680pt;}
.y1c7{bottom:627.408640pt;}
.y142{bottom:630.576253pt;}
.y17d{bottom:631.407720pt;}
.y17b{bottom:631.411240pt;}
.y17c{bottom:635.791987pt;}
.yd7{bottom:639.344680pt;}
.y1c6{bottom:639.348493pt;}
.y68{bottom:639.350347pt;}
.y9c{bottom:639.356933pt;}
.y42{bottom:639.389080pt;}
.ye{bottom:641.004501pt;}
.y17a{bottom:643.351080pt;}
.y179{bottom:647.810907pt;}
.y1c5{bottom:651.368320pt;}
.yd6{bottom:655.369867pt;}
.y67{bottom:655.369907pt;}
.y178{bottom:655.371387pt;}
.y9b{bottom:655.376493pt;}
.y41{bottom:655.408653pt;}
.ybe{bottom:655.422093pt;}
.yd{bottom:657.031328pt;}
.y1c4{bottom:663.388160pt;}
.y66{bottom:671.389480pt;}
.y9a{bottom:671.396067pt;}
.y141{bottom:671.423533pt;}
.y40{bottom:671.428227pt;}
.ybd{bottom:671.441653pt;}
.yc{bottom:673.058154pt;}
.y1c3{bottom:675.408000pt;}
.y177{bottom:679.411067pt;}
.y65{bottom:687.343720pt;}
.y1c2{bottom:687.347840pt;}
.y99{bottom:687.350307pt;}
.yd5{bottom:687.355960pt;}
.y140{bottom:687.377773pt;}
.y3f{bottom:687.382467pt;}
.ybc{bottom:687.395893pt;}
.y176{bottom:691.350907pt;}
.yb{bottom:697.020274pt;}
.y1c1{bottom:699.367680pt;}
.y98{bottom:703.369867pt;}
.yd4{bottom:703.375533pt;}
.y13f{bottom:703.397333pt;}
.y3e{bottom:703.402027pt;}
.ybb{bottom:703.415467pt;}
.y1c0{bottom:711.387520pt;}
.y94{bottom:718.412440pt;}
.yd3{bottom:719.395107pt;}
.y13e{bottom:719.416907pt;}
.y3d{bottom:719.421600pt;}
.yba{bottom:719.435027pt;}
.y93{bottom:722.569907pt;}
.y1bf{bottom:723.407360pt;}
.y92{bottom:729.750893pt;}
.y91{bottom:733.908360pt;}
.y175{bottom:735.346293pt;}
.y1be{bottom:735.347200pt;}
.y13d{bottom:735.371147pt;}
.y3c{bottom:735.375840pt;}
.yb9{bottom:735.389267pt;}
.yd1{bottom:737.162573pt;}
.y90{bottom:747.288000pt;}
.y8e{bottom:747.292387pt;}
.y174{bottom:747.366133pt;}
.y1bd{bottom:747.367040pt;}
.y9{bottom:748.346274pt;}
.yd0{bottom:750.538413pt;}
.y13c{bottom:751.390720pt;}
.y3b{bottom:751.395400pt;}
.yb8{bottom:751.408840pt;}
.y8f{bottom:752.050293pt;}
.ya{bottom:754.922701pt;}
.y173{bottom:759.385973pt;}
.y1bc{bottom:759.386880pt;}
.y131{bottom:763.538667pt;}
.y8d{bottom:765.958827pt;}
.y8b{bottom:765.967840pt;}
.y5{bottom:767.017088pt;}
.y7{bottom:767.017101pt;}
.y13b{bottom:767.410280pt;}
.y3a{bottom:767.414973pt;}
.yb7{bottom:767.428413pt;}
.y8c{bottom:770.721027pt;}
.y172{bottom:771.405813pt;}
.y1bb{bottom:771.406720pt;}
.y6{bottom:773.593501pt;}
.y8{bottom:773.593514pt;}
.y130{bottom:774.878493pt;}
.y171{bottom:783.345653pt;}
.y1ba{bottom:783.346560pt;}
.y13a{bottom:783.364520pt;}
.y39{bottom:783.369213pt;}
.yb6{bottom:783.382640pt;}
.y8a{bottom:784.634267pt;}
.y12f{bottom:792.417693pt;}
.y170{bottom:795.365493pt;}
.y1b9{bottom:795.366400pt;}
.y4{bottom:799.071741pt;}
.y139{bottom:799.384093pt;}
.y38{bottom:799.388787pt;}
.yb5{bottom:799.402213pt;}
.y89{bottom:803.300693pt;}
.y87{bottom:803.305000pt;}
.y12e{bottom:804.438867pt;}
.y1b8{bottom:807.386240pt;}
.y88{bottom:808.062827pt;}
.y138{bottom:815.403653pt;}
.y37{bottom:815.408347pt;}
.yb4{bottom:815.421787pt;}
.y16f{bottom:819.405173pt;}
.y1b7{bottom:819.406080pt;}
.y86{bottom:821.971440pt;}
.y84{bottom:821.985840pt;}
.y12d{bottom:823.105307pt;}
.y12b{bottom:823.109853pt;}
.y85{bottom:826.733560pt;}
.y12c{bottom:827.867427pt;}
.y16e{bottom:831.345013pt;}
.y1b6{bottom:831.345920pt;}
.y137{bottom:831.357893pt;}
.y36{bottom:831.362587pt;}
.yb3{bottom:831.376027pt;}
.y3{bottom:833.695888pt;}
.y83{bottom:840.652267pt;}
.y12a{bottom:841.776280pt;}
.y128{bottom:841.780667pt;}
.y16d{bottom:843.364853pt;}
.y1b5{bottom:843.365760pt;}
.y129{bottom:846.538413pt;}
.y136{bottom:847.377467pt;}
.y35{bottom:847.382160pt;}
.yb2{bottom:847.395587pt;}
.y1b4{bottom:855.385600pt;}
.y82{bottom:859.318707pt;}
.y127{bottom:860.447107pt;}
.y125{bottom:860.449347pt;}
.y135{bottom:863.397027pt;}
.y34{bottom:863.401720pt;}
.yb1{bottom:863.415160pt;}
.y126{bottom:865.209227pt;}
.y16c{bottom:867.404533pt;}
.y1b3{bottom:867.405440pt;}
.y2{bottom:868.384021pt;}
.y81{bottom:877.985133pt;}
.y16b{bottom:879.344373pt;}
.y1b2{bottom:879.345280pt;}
.y134{bottom:879.351267pt;}
.y33{bottom:879.355960pt;}
.yb0{bottom:879.369400pt;}
.y16a{bottom:891.364213pt;}
.y1b1{bottom:891.365120pt;}
.y133{bottom:895.370840pt;}
.y32{bottom:895.375533pt;}
.yaf{bottom:895.388960pt;}
.y80{bottom:895.520920pt;}
.y169{bottom:903.384053pt;}
.y1b0{bottom:903.384960pt;}
.y132{bottom:911.390413pt;}
.y31{bottom:911.395107pt;}
.yae{bottom:911.408533pt;}
.y124{bottom:913.058027pt;}
.y7f{bottom:913.058653pt;}
.y168{bottom:915.403893pt;}
.y1af{bottom:915.404800pt;}
.y123{bottom:918.349360pt;}
.y1{bottom:919.029627pt;}
.y167{bottom:927.343733pt;}
.y30{bottom:927.344640pt;}
.yad{bottom:927.362773pt;}
.y7e{bottom:927.722653pt;}
.y2f{bottom:989.180440pt;}
.y1ec{bottom:1002.481610pt;}
.y2e{bottom:1002.481613pt;}
.yd2{bottom:1002.481933pt;}
.y97{bottom:1002.482587pt;}
.h10{height:17.942710pt;}
.h9{height:19.223590pt;}
.hf{height:20.505240pt;}
.h12{height:23.068924pt;}
.h11{height:25.223774pt;}
.ha{height:26.916949pt;}
.h5{height:28.196676pt;}
.h8{height:28.839615pt;}
.hc{height:30.762282pt;}
.he{height:34.608000pt;}
.hb{height:37.588863pt;}
.hd{height:37.840681pt;}
.h7{height:38.453718pt;}
.h6{height:39.057600pt;}
.h4{height:42.299051pt;}
.h2{height:49.296000pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590573pt;}
.x10{left:79.143373pt;}
.x1{left:80.957493pt;}
.xf{left:84.283507pt;}
.x12{left:86.226707pt;}
.x36{left:90.557467pt;}
.x35{left:92.447200pt;}
.x40{left:95.625760pt;}
.x30{left:99.703867pt;}
.x31{left:111.193733pt;}
.x29{left:124.573200pt;}
.x34{left:138.255067pt;}
.x2a{left:142.261333pt;}
.x2b{left:154.053467pt;}
.x3{left:161.763773pt;}
.xe{left:167.659907pt;}
.x4{left:189.354307pt;}
.x2c{left:210.292933pt;}
.x1f{left:213.845600pt;}
.x20{left:218.759080pt;}
.x2d{left:220.119613pt;}
.x11{left:240.453467pt;}
.x5{left:266.078720pt;}
.x32{left:268.119613pt;}
.x33{left:272.428267pt;}
.x6{left:277.795253pt;}
.x2e{left:288.151067pt;}
.x25{left:295.785720pt;}
.x26{left:309.618800pt;}
.x27{left:316.119613pt;}
.x28{left:320.428267pt;}
.x2f{left:328.587893pt;}
.x7{left:370.166987pt;}
.x8{left:375.231520pt;}
.x13{left:406.291427pt;}
.x1d{left:409.625080pt;}
.x22{left:411.363733pt;}
.x1e{left:414.311733pt;}
.x14{left:416.927587pt;}
.x23{left:421.265987pt;}
.x3f{left:426.334293pt;}
.x24{left:438.198280pt;}
.x16{left:450.444013pt;}
.x17{left:454.299067pt;}
.x18{left:460.573080pt;}
.x9{left:465.713253pt;}
.x19{left:467.376267pt;}
.xa{left:477.505493pt;}
.x1c{left:484.232947pt;}
.x1a{left:491.640947pt;}
.x1b{left:499.199867pt;}
.x37{left:516.661333pt;}
.x38{left:520.213987pt;}
.x21{left:552.718013pt;}
.xb{left:562.620440pt;}
.x3b{left:563.980920pt;}
.x3c{left:567.533733pt;}
.xc{left:574.336960pt;}
.x15{left:599.055053pt;}
.x3d{left:610.695880pt;}
.x3e{left:614.324253pt;}
.x39{left:649.247067pt;}
.xd{left:650.607787pt;}
.x3a{left:652.799880pt;}
}




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