
    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_571ccdc73dcd0daa6f6e2f0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_3ea3106d15b2e8d0f07bf966.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_be066cde776eb7c9883a5547.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.825195;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_6462409efde63e3b6d1f8180.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_45d05eadeacf4634c1869d97.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_eee8973b16ebd42a6fa30e3a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_6ecd493f21580ff4a9556f77.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_29019720b2e29ffb2ff57265.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.268000;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_b47064b586b47e34dab4e000.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1a539a19b4b76fb54b5e7d4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.200885;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_64466a6f9c28d0ef621c3db1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bfdfeb406a0834054e3a2625.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.291000;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_77636fc849cf9bde46ead3b4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1a06b6d5150d698301920615.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.392000;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_15d0ca8efb4b3b2a5045db1b.woff2')format("woff");}.fff{font-family:fff;line-height:1.225182;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_b62fca4dcbb6e1a15e0a7b44.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.258000;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_89d6575142396c6f862ae371.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{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);}
.vd{vertical-align:-43.175810px;}
.v4{vertical-align:-18.359985px;}
.v8{vertical-align:-17.339996px;}
.va{vertical-align:-14.382000px;}
.v5{vertical-align:-10.806022px;}
.vf{vertical-align:-9.509939px;}
.vb{vertical-align:-5.196096px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:10.800018px;}
.v9{vertical-align:14.382000px;}
.v2{vertical-align:16.799929px;}
.v3{vertical-align:18.251985px;}
.v1{vertical-align:20.399963px;}
.v6{vertical-align:29.168098px;}
.vc{vertical-align:34.556543px;}
.ve{vertical-align:38.016000px;}
.ls1c{letter-spacing:-9.180000px;}
.lsc4{letter-spacing:-1.350000px;}
.ls1f{letter-spacing:-1.242000px;}
.lsb8{letter-spacing:-1.035000px;}
.lsb3{letter-spacing:-0.990000px;}
.ls5d{letter-spacing:-0.803520px;}
.ls9b{letter-spacing:-0.772200px;}
.lsb4{letter-spacing:-0.765000px;}
.lsc2{letter-spacing:-0.720000px;}
.lsa7{letter-spacing:-0.702000px;}
.lsa9{letter-spacing:-0.696384px;}
.lsc1{letter-spacing:-0.675000px;}
.ls33{letter-spacing:-0.648000px;}
.lsa5{letter-spacing:-0.646272px;}
.ls94{letter-spacing:-0.642816px;}
.lsb1{letter-spacing:-0.594000px;}
.lsaa{letter-spacing:-0.589248px;}
.lsb9{letter-spacing:-0.585000px;}
.ls5e{letter-spacing:-0.540000px;}
.lsbd{letter-spacing:-0.495000px;}
.lsa6{letter-spacing:-0.491400px;}
.ls20{letter-spacing:-0.486000px;}
.ls98{letter-spacing:-0.456300px;}
.lsbc{letter-spacing:-0.405000px;}
.ls4c{letter-spacing:-0.378000px;}
.ls9a{letter-spacing:-0.324000px;}
.lsb2{letter-spacing:-0.315000px;}
.ls7d{letter-spacing:-0.270000px;}
.ls34{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.204000px;}
.lsb6{letter-spacing:-0.180000px;}
.ls42{letter-spacing:-0.175500px;}
.ls35{letter-spacing:-0.162000px;}
.ls37{letter-spacing:-0.140400px;}
.lsba{letter-spacing:-0.135000px;}
.ls73{letter-spacing:-0.120000px;}
.ls41{letter-spacing:-0.108000px;}
.ls36{letter-spacing:-0.105300px;}
.lsbe{letter-spacing:-0.090000px;}
.ls93{letter-spacing:-0.060000px;}
.ls23{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.000084px;}
.ls83{letter-spacing:0.006559px;}
.ls4b{letter-spacing:0.009705px;}
.ls7{letter-spacing:0.011634px;}
.ls8{letter-spacing:0.011725px;}
.ls5{letter-spacing:0.012183px;}
.ls77{letter-spacing:0.012226px;}
.ls6{letter-spacing:0.012275px;}
.ls4{letter-spacing:0.013040px;}
.ls2{letter-spacing:0.013223px;}
.ls3{letter-spacing:0.013956px;}
.ls5b{letter-spacing:0.015557px;}
.ls49{letter-spacing:0.035099px;}
.ls84{letter-spacing:0.036063px;}
.ls4a{letter-spacing:0.052510px;}
.ls2b{letter-spacing:0.054000px;}
.ls2c{letter-spacing:0.060000px;}
.ls75{letter-spacing:0.063621px;}
.ls43{letter-spacing:0.070200px;}
.ls3f{letter-spacing:0.074044px;}
.ls3d{letter-spacing:0.074228px;}
.ls88{letter-spacing:0.074512px;}
.ls3e{letter-spacing:0.085045px;}
.ls3b{letter-spacing:0.085228px;}
.lsbb{letter-spacing:0.090000px;}
.ls74{letter-spacing:0.097208px;}
.ls3c{letter-spacing:0.105300px;}
.ls65{letter-spacing:0.105722px;}
.ls1d{letter-spacing:0.108000px;}
.ls81{letter-spacing:0.109772px;}
.ls12{letter-spacing:0.110963px;}
.ls13{letter-spacing:0.111695px;}
.ls47{letter-spacing:0.122990px;}
.ls46{letter-spacing:0.123631px;}
.ls82{letter-spacing:0.133696px;}
.ls78{letter-spacing:0.134343px;}
.ls5f{letter-spacing:0.138336px;}
.ls45{letter-spacing:0.140400px;}
.ls52{letter-spacing:0.141724px;}
.ls5a{letter-spacing:0.147949px;}
.ls68{letter-spacing:0.151428px;}
.ls69{letter-spacing:0.151977px;}
.ls7e{letter-spacing:0.156529px;}
.ls60{letter-spacing:0.158020px;}
.ls1e{letter-spacing:0.162000px;}
.ls80{letter-spacing:0.165069px;}
.ls59{letter-spacing:0.175500px;}
.ls44{letter-spacing:0.176272px;}
.lsc6{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.200318px;}
.ls27{letter-spacing:0.210600px;}
.ls7c{letter-spacing:0.212403px;}
.ls8c{letter-spacing:0.214272px;}
.lsa{letter-spacing:0.216000px;}
.lsbf{letter-spacing:0.225000px;}
.ls76{letter-spacing:0.240000px;}
.ls29{letter-spacing:0.241334px;}
.ls7b{letter-spacing:0.241883px;}
.ls28{letter-spacing:0.245698px;}
.ls10{letter-spacing:0.265905px;}
.ls32{letter-spacing:0.270000px;}
.ls6b{letter-spacing:0.279038px;}
.ls57{letter-spacing:0.280800px;}
.ls79{letter-spacing:0.281975px;}
.ls30{letter-spacing:0.283489px;}
.ls3a{letter-spacing:0.297630px;}
.lse{letter-spacing:0.312786px;}
.lsf{letter-spacing:0.313335px;}
.ls91{letter-spacing:0.315000px;}
.lsd{letter-spacing:0.315900px;}
.ls62{letter-spacing:0.320132px;}
.ls11{letter-spacing:0.324000px;}
.ls71{letter-spacing:0.325685px;}
.ls56{letter-spacing:0.325900px;}
.ls55{letter-spacing:0.326083px;}
.ls53{letter-spacing:0.338563px;}
.ls40{letter-spacing:0.342042px;}
.ls97{letter-spacing:0.342144px;}
.ls21{letter-spacing:0.351000px;}
.lsb7{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.367493px;}
.ls9{letter-spacing:0.378000px;}
.lsb0{letter-spacing:0.380160px;}
.ls54{letter-spacing:0.386099px;}
.ls4d{letter-spacing:0.386100px;}
.ls61{letter-spacing:0.405000px;}
.ls18{letter-spacing:0.416901px;}
.ls38{letter-spacing:0.421200px;}
.ls6f{letter-spacing:0.428367px;}
.ls24{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.432212px;}
.ls4f{letter-spacing:0.442192px;}
.ls51{letter-spacing:0.447558px;}
.ls2e{letter-spacing:0.456300px;}
.ls7a{letter-spacing:0.471864px;}
.ls15{letter-spacing:0.477418px;}
.ls96{letter-spacing:0.482112px;}
.lsb{letter-spacing:0.486000px;}
.ls4e{letter-spacing:0.487794px;}
.ls50{letter-spacing:0.491400px;}
.ls8e{letter-spacing:0.495000px;}
.ls48{letter-spacing:0.499238px;}
.ls72{letter-spacing:0.539999px;}
.ls22{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.561371px;}
.lsc3{letter-spacing:0.585000px;}
.ls9e{letter-spacing:0.589248px;}
.ls31{letter-spacing:0.594000px;}
.ls6a{letter-spacing:0.600000px;}
.lsb5{letter-spacing:0.630000px;}
.ls2d{letter-spacing:0.648000px;}
.ls17{letter-spacing:0.663000px;}
.lsc{letter-spacing:0.702000px;}
.ls67{letter-spacing:0.705506px;}
.ls90{letter-spacing:0.720000px;}
.ls64{letter-spacing:0.756000px;}
.ls16{letter-spacing:0.765000px;}
.lsc0{letter-spacing:0.855000px;}
.ls19{letter-spacing:0.867000px;}
.ls6d{letter-spacing:0.918000px;}
.ls8f{letter-spacing:0.931506px;}
.ls70{letter-spacing:0.939602px;}
.lsc5{letter-spacing:0.945000px;}
.ls66{letter-spacing:0.972000px;}
.ls6c{letter-spacing:1.025998px;}
.ls5c{letter-spacing:1.026000px;}
.ls6e{letter-spacing:1.047611px;}
.ls58{letter-spacing:1.080000px;}
.lsac{letter-spacing:1.285632px;}
.lsc7{letter-spacing:1.944000px;}
.ls0{letter-spacing:2.592000px;}
.ls26{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls63{letter-spacing:3.942000px;}
.ls92{letter-spacing:6.120000px;}
.ls9c{letter-spacing:14.256000px;}
.ls8b{letter-spacing:15.748992px;}
.ls99{letter-spacing:15.748993px;}
.lsa2{letter-spacing:15.966719px;}
.lsa1{letter-spacing:19.498753px;}
.lsa0{letter-spacing:21.587905px;}
.ls86{letter-spacing:23.516351px;}
.ls95{letter-spacing:23.516354px;}
.ls89{letter-spacing:33.533567px;}
.ls9d{letter-spacing:43.015105px;}
.lsab{letter-spacing:44.032899px;}
.lsaf{letter-spacing:49.116674px;}
.lsa4{letter-spacing:71.508097px;}
.lsa3{letter-spacing:76.716283px;}
.lsae{letter-spacing:92.083396px;}
.lsad{letter-spacing:100.707845px;}
.lsa8{letter-spacing:101.725639px;}
.ls8a{letter-spacing:101.882879px;}
.ls85{letter-spacing:113.832012px;}
.ls7f{letter-spacing:146.703746px;}
.ls87{letter-spacing:151.873928px;}
.ls9f{letter-spacing:186.738061px;}
.ls8d{letter-spacing:733.185230px;}
.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;}
}
.ws74{word-spacing:-199.005133px;}
.ws84{word-spacing:-104.243332px;}
.ws83{word-spacing:-95.618876px;}
.ws94{word-spacing:-76.716283px;}
.ws95{word-spacing:-71.508097px;}
.ws85{word-spacing:-57.822338px;}
.ws72{word-spacing:-56.407105px;}
.ws9{word-spacing:-51.000000px;}
.ws75{word-spacing:-33.854978px;}
.ws92{word-spacing:-19.498753px;}
.ws93{word-spacing:-15.966719px;}
.ws8f{word-spacing:-15.748993px;}
.ws2{word-spacing:-15.067500px;}
.ws25{word-spacing:-14.700000px;}
.ws91{word-spacing:-14.256000px;}
.ws87{word-spacing:-13.596000px;}
.ws4a{word-spacing:-13.500000px;}
.ws6b{word-spacing:-13.392001px;}
.ws55{word-spacing:-13.284000px;}
.ws5c{word-spacing:-12.798000px;}
.ws47{word-spacing:-12.744000px;}
.ws2c{word-spacing:-12.690000px;}
.ws6d{word-spacing:-12.642049px;}
.ws2d{word-spacing:-12.582000px;}
.ws79{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.480000px;}
.ws69{word-spacing:-12.420000px;}
.ws81{word-spacing:-12.374209px;}
.ws61{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.360000px;}
.ws76{word-spacing:-12.267073px;}
.ws2a{word-spacing:-12.258000px;}
.ws2f{word-spacing:-12.096000px;}
.ws4f{word-spacing:-11.988000px;}
.wsaf{word-spacing:-11.718000px;}
.ws7c{word-spacing:-11.664000px;}
.ws27{word-spacing:-11.610000px;}
.ws56{word-spacing:-11.356417px;}
.wsab{word-spacing:-10.530000px;}
.ws8b{word-spacing:-10.305000px;}
.ws8a{word-spacing:-10.215000px;}
.ws88{word-spacing:-9.990000px;}
.wsa6{word-spacing:-9.900000px;}
.wsa3{word-spacing:-9.765000px;}
.wsa4{word-spacing:-9.675000px;}
.ws1{word-spacing:-9.600000px;}
.wsae{word-spacing:-9.585000px;}
.ws7{word-spacing:-8.775000px;}
.ws71{word-spacing:-8.705664px;}
.ws50{word-spacing:-8.424000px;}
.ws2b{word-spacing:-8.388900px;}
.ws51{word-spacing:-8.353800px;}
.ws6{word-spacing:-8.318700px;}
.ws2e{word-spacing:-8.283600px;}
.ws57{word-spacing:-8.248500px;}
.ws26{word-spacing:-8.178300px;}
.ws49{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws5{word-spacing:-7.967700px;}
.ws7b{word-spacing:-7.897500px;}
.ws28{word-spacing:-7.862400px;}
.ws29{word-spacing:-7.827300px;}
.ws48{word-spacing:-7.792200px;}
.ws6f{word-spacing:-7.581600px;}
.ws7a{word-spacing:-7.546500px;}
.ws70{word-spacing:-7.265700px;}
.ws89{word-spacing:-6.639750px;}
.ws8{word-spacing:-6.630000px;}
.ws8c{word-spacing:-6.120000px;}
.ws78{word-spacing:-6.080832px;}
.ws16{word-spacing:-5.508000px;}
.wsc{word-spacing:-3.276000px;}
.ws54{word-spacing:-1.998000px;}
.ws1e{word-spacing:-1.890000px;}
.ws1d{word-spacing:-1.836000px;}
.ws67{word-spacing:-1.800000px;}
.ws46{word-spacing:-1.728000px;}
.ws3f{word-spacing:-1.674000px;}
.ws60{word-spacing:-1.620000px;}
.ws5d{word-spacing:-1.566000px;}
.ws99{word-spacing:-1.530000px;}
.ws18{word-spacing:-1.512000px;}
.ws66{word-spacing:-1.458000px;}
.ws34{word-spacing:-1.404000px;}
.ws3c{word-spacing:-1.386000px;}
.ws65{word-spacing:-1.350000px;}
.ws64{word-spacing:-1.296000px;}
.ws96{word-spacing:-1.275000px;}
.wsd{word-spacing:-1.260000px;}
.ws19{word-spacing:-1.242000px;}
.wsaa{word-spacing:-1.215000px;}
.ws3e{word-spacing:-1.188000px;}
.ws24{word-spacing:-1.171800px;}
.wsf{word-spacing:-1.134000px;}
.ws63{word-spacing:-1.080000px;}
.ws97{word-spacing:-1.035000px;}
.ws58{word-spacing:-1.026000px;}
.ws5a{word-spacing:-0.972000px;}
.wsb{word-spacing:-0.960000px;}
.ws22{word-spacing:-0.867000px;}
.ws33{word-spacing:-0.864000px;}
.ws9c{word-spacing:-0.855000px;}
.ws45{word-spacing:-0.810000px;}
.wsa9{word-spacing:-0.765000px;}
.ws38{word-spacing:-0.756000px;}
.ws41{word-spacing:-0.702000px;}
.ws20{word-spacing:-0.663000px;}
.ws11{word-spacing:-0.648000px;}
.ws3d{word-spacing:-0.600000px;}
.ws1a{word-spacing:-0.594000px;}
.ws32{word-spacing:-0.540000px;}
.wsa2{word-spacing:-0.495000px;}
.ws17{word-spacing:-0.486000px;}
.ws9f{word-spacing:-0.450000px;}
.ws4c{word-spacing:-0.432000px;}
.ws13{word-spacing:-0.378000px;}
.ws90{word-spacing:-0.342144px;}
.ws42{word-spacing:-0.324000px;}
.wsad{word-spacing:-0.315000px;}
.ws39{word-spacing:-0.270000px;}
.ws6a{word-spacing:-0.240000px;}
.wsa8{word-spacing:-0.225000px;}
.ws10{word-spacing:-0.216000px;}
.ws31{word-spacing:-0.210600px;}
.ws9d{word-spacing:-0.180000px;}
.ws37{word-spacing:-0.162000px;}
.ws15{word-spacing:-0.108000px;}
.ws44{word-spacing:-0.054000px;}
.ws98{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.wsa7{word-spacing:0.045000px;}
.ws12{word-spacing:0.054000px;}
.ws8d{word-spacing:0.060000px;}
.ws35{word-spacing:0.105300px;}
.ws3b{word-spacing:0.108000px;}
.ws36{word-spacing:0.140400px;}
.ws4b{word-spacing:0.162000px;}
.ws23{word-spacing:0.204000px;}
.ws4d{word-spacing:0.216000px;}
.wsa1{word-spacing:0.225000px;}
.ws30{word-spacing:0.270000px;}
.wsa0{word-spacing:0.315000px;}
.ws3a{word-spacing:0.324000px;}
.wsb1{word-spacing:0.360000px;}
.wsb5{word-spacing:0.378000px;}
.ws43{word-spacing:0.432000px;}
.ws40{word-spacing:0.486000px;}
.wsb0{word-spacing:0.495000px;}
.ws53{word-spacing:0.540000px;}
.ws9b{word-spacing:0.585000px;}
.ws14{word-spacing:0.594000px;}
.ws21{word-spacing:0.612000px;}
.ws8e{word-spacing:0.642816px;}
.ws5f{word-spacing:0.648000px;}
.wsa5{word-spacing:0.720000px;}
.ws1b{word-spacing:0.810000px;}
.ws1f{word-spacing:0.867000px;}
.ws9a{word-spacing:0.900000px;}
.ws59{word-spacing:0.972000px;}
.ws9e{word-spacing:1.035000px;}
.ws1c{word-spacing:1.080000px;}
.ws68{word-spacing:1.134000px;}
.ws52{word-spacing:1.188000px;}
.ws62{word-spacing:1.242000px;}
.wsb2{word-spacing:1.260000px;}
.wsb3{word-spacing:1.404000px;}
.ws5b{word-spacing:1.458000px;}
.wsac{word-spacing:1.620000px;}
.wsb4{word-spacing:3.618000px;}
.ws5e{word-spacing:8.694000px;}
.wse{word-spacing:9.180000px;}
.ws4e{word-spacing:14.742000px;}
.ws6e{word-spacing:24.330238px;}
.ws82{word-spacing:27.266111px;}
.ws80{word-spacing:57.049928px;}
.ws7e{word-spacing:66.210057px;}
.ws86{word-spacing:103.897724px;}
.ws7d{word-spacing:140.669553px;}
.ws73{word-spacing:182.881157px;}
.ws7f{word-spacing:208.486667px;}
.ws77{word-spacing:231.253068px;}
.ws6c{word-spacing:1007.024919px;}
._13{margin-left:-672.385578px;}
._14{margin-left:-541.572517px;}
._12{margin-left:-464.006015px;}
._f{margin-left:-230.717383px;}
._10{margin-left:-165.900118px;}
._e{margin-left:-121.170820px;}
._15{margin-left:-91.219894px;}
._16{margin-left:-49.648899px;}
._11{margin-left:-21.159364px;}
._c{margin-left:-14.256016px;}
._1c{margin-left:-11.115000px;}
._1d{margin-left:-9.630000px;}
._3{margin-left:-8.483983px;}
._4{margin-left:-7.241983px;}
._9{margin-left:-6.067696px;}
._1{margin-left:-4.380000px;}
._2{margin-left:-3.004244px;}
._0{margin-left:-1.776017px;}
._5{width:1.279217px;}
._8{width:2.790659px;}
._6{width:4.735785px;}
._7{width:6.157854px;}
._1e{width:7.356015px;}
._1b{width:8.547025px;}
._18{width:9.810002px;}
._19{width:11.745000px;}
._17{width:12.960000px;}
._b{width:15.281992px;}
._1a{width:17.190002px;}
._a{width:47.761219px;}
._d{width:49.861824px;}
.fc5{color:transparent;}
.fc4{color:rgb(58,107,159);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fs11{font-size:29.250000px;}
.fsf{font-size:29.375999px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fsc{font-size:38.016000px;}
.fs4{font-size:39.000000px;}
.fs10{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsd{font-size:53.568003px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:55.800001px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsb{font-size:66.000000px;}
.fse{font-size:86.399998px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y16c{bottom:2.160095px;}
.y162{bottom:2.160278px;}
.y184{bottom:2.160324px;}
.y175{bottom:3.024353px;}
.y16a{bottom:4.320099px;}
.y173{bottom:4.320282px;}
.yaf{bottom:4.751862px;}
.yc3{bottom:4.753349px;}
.y160{bottom:5.611150px;}
.y183{bottom:5.616302px;}
.yae{bottom:10.799835px;}
.ye9{bottom:10.799858px;}
.yc2{bottom:10.801369px;}
.y168{bottom:25.056244px;}
.y15f{bottom:25.056335px;}
.y17d{bottom:26.352264px;}
.y171{bottom:26.784302px;}
.y1{bottom:27.197851px;}
.y2{bottom:27.253801px;}
.y2d{bottom:68.307899px;}
.y116{bottom:69.547799px;}
.yce{bottom:70.144949px;}
.y89{bottom:70.296298px;}
.y67{bottom:71.794803px;}
.y1af{bottom:73.532547px;}
.y138{bottom:73.894800px;}
.yf6{bottom:78.261311px;}
.y2c{bottom:83.307899px;}
.y115{bottom:84.546298px;}
.ycd{bottom:85.147950px;}
.y88{bottom:85.294798px;}
.y1ae{bottom:86.278797px;}
.y66{bottom:86.794798px;}
.y137{bottom:88.896301px;}
.yf5{bottom:93.259810px;}
.ya4{bottom:98.047799px;}
.y2b{bottom:98.307899px;}
.y1ad{bottom:99.025047px;}
.y114{bottom:99.544798px;}
.ycc{bottom:100.146449px;}
.y87{bottom:100.294798px;}
.y65{bottom:101.797799px;}
.y136{bottom:103.894800px;}
.y156{bottom:104.737798px;}
.yf4{bottom:108.258309px;}
.y1ac{bottom:111.898782px;}
.ya3{bottom:113.046298px;}
.y2a{bottom:113.307899px;}
.y113{bottom:114.555303px;}
.ycb{bottom:115.144949px;}
.y86{bottom:115.296298px;}
.y64{bottom:116.796298px;}
.y135{bottom:118.906818px;}
.y155{bottom:119.736297px;}
.yf3{bottom:123.256809px;}
.y1ab{bottom:124.645032px;}
.ya2{bottom:128.044798px;}
.y112{bottom:129.553802px;}
.yca{bottom:130.152453px;}
.y85{bottom:130.294798px;}
.y63{bottom:131.794798px;}
.y29{bottom:132.636898px;}
.y134{bottom:133.905317px;}
.y154{bottom:134.734796px;}
.y1aa{bottom:137.391282px;}
.yf2{bottom:138.255308px;}
.ya1{bottom:143.055303px;}
.y111{bottom:144.552302px;}
.yc9{bottom:145.150952px;}
.y84{bottom:145.294798px;}
.y62{bottom:146.797799px;}
.y133{bottom:148.903816px;}
.y153{bottom:149.734796px;}
.y1a9{bottom:150.137533px;}
.yf1{bottom:153.253807px;}
.ya0{bottom:158.053802px;}
.y110{bottom:159.550801px;}
.yc8{bottom:160.149451px;}
.y83{bottom:160.296298px;}
.y61{bottom:161.796298px;}
.y1a8{bottom:162.883783px;}
.y132{bottom:163.902315px;}
.y152{bottom:164.736308px;}
.yf0{bottom:168.252306px;}
.y28{bottom:170.187313px;}
.y9f{bottom:173.052302px;}
.y10f{bottom:174.549300px;}
.yc7{bottom:175.147950px;}
.y82{bottom:175.294798px;}
.y1a7{bottom:175.630033px;}
.y60{bottom:176.794798px;}
.y131{bottom:178.900815px;}
.y151{bottom:179.734808px;}
.yef{bottom:183.250805px;}
.y27{bottom:185.185812px;}
.y9e{bottom:188.050801px;}
.y1a6{bottom:188.376283px;}
.y10e{bottom:189.547799px;}
.yc6{bottom:190.146449px;}
.y81{bottom:190.293297px;}
.y5f{bottom:191.796298px;}
.y130{bottom:193.899314px;}
.y150{bottom:194.734808px;}
.yee{bottom:198.249305px;}
.y26{bottom:200.185812px;}
.y1a5{bottom:201.122533px;}
.y9d{bottom:203.049300px;}
.y10d{bottom:204.546298px;}
.yc5{bottom:205.144949px;}
.y80{bottom:205.293297px;}
.y5e{bottom:206.794798px;}
.y12f{bottom:208.897813px;}
.y14f{bottom:209.746814px;}
.yed{bottom:213.247804px;}
.y1a4{bottom:213.868783px;}
.yc1{bottom:215.141991px;}
.y25{bottom:215.185812px;}
.y9c{bottom:218.047799px;}
.y10c{bottom:219.544798px;}
.yc4{bottom:220.143448px;}
.yc0{bottom:220.144792px;}
.y5d{bottom:221.806804px;}
.y12e{bottom:223.896312px;}
.y14e{bottom:224.745313px;}
.y1a3{bottom:226.615033px;}
.yec{bottom:228.246303px;}
.y24{bottom:230.185812px;}
.y9b{bottom:233.046298px;}
.y10b{bottom:234.543297px;}
.ybf{bottom:236.344793px;}
.y5c{bottom:236.805303px;}
.y7f{bottom:238.296298px;}
.y12d{bottom:238.894811px;}
.y1a2{bottom:239.361283px;}
.y14d{bottom:239.743813px;}
.yeb{bottom:243.244802px;}
.y23{bottom:245.190314px;}
.y9a{bottom:248.044798px;}
.y10a{bottom:249.543297px;}
.ybe{bottom:251.352297px;}
.y5b{bottom:251.803802px;}
.y1a1{bottom:252.107533px;}
.ye8{bottom:253.243492px;}
.y7e{bottom:253.294798px;}
.y12c{bottom:253.893311px;}
.y14c{bottom:254.742312px;}
.yea{bottom:258.243301px;}
.ye7{bottom:258.246307px;}
.y22{bottom:260.188813px;}
.y99{bottom:263.044798px;}
.y1a0{bottom:264.853784px;}
.ybd{bottom:266.350796px;}
.y5a{bottom:266.802302px;}
.y7d{bottom:268.300801px;}
.y14b{bottom:269.740811px;}
.ye6{bottom:274.446308px;}
.y21{bottom:275.187313px;}
.y19f{bottom:277.600034px;}
.y98{bottom:278.046298px;}
.ybc{bottom:281.349295px;}
.y59{bottom:281.800801px;}
.y109{bottom:282.555326px;}
.y7c{bottom:283.299300px;}
.y14a{bottom:284.739310px;}
.y12b{bottom:286.897813px;}
.ye5{bottom:289.444807px;}
.y20{bottom:290.185812px;}
.y19e{bottom:290.346284px;}
.y97{bottom:293.044798px;}
.ybb{bottom:296.347795px;}
.y58{bottom:296.799300px;}
.y108{bottom:297.553825px;}
.y7b{bottom:298.297799px;}
.y149{bottom:299.737809px;}
.y12a{bottom:301.896312px;}
.y19d{bottom:303.092534px;}
.ye4{bottom:304.444807px;}
.y1f{bottom:305.185812px;}
.y96{bottom:308.044798px;}
.yba{bottom:311.346294px;}
.y57{bottom:311.797799px;}
.y107{bottom:312.552325px;}
.y7a{bottom:313.296298px;}
.y148{bottom:314.736308px;}
.y19c{bottom:315.838784px;}
.y129{bottom:316.894811px;}
.ye3{bottom:319.447808px;}
.y1e{bottom:320.196316px;}
.y95{bottom:323.044798px;}
.yb9{bottom:326.344793px;}
.y56{bottom:326.796298px;}
.y106{bottom:327.550824px;}
.y79{bottom:328.294798px;}
.y19b{bottom:328.585034px;}
.y147{bottom:329.734808px;}
.y128{bottom:331.896312px;}
.ye2{bottom:334.446308px;}
.y1d{bottom:335.194815px;}
.y94{bottom:338.046298px;}
.y19a{bottom:341.331284px;}
.yb8{bottom:341.346294px;}
.y55{bottom:341.794798px;}
.y105{bottom:342.549323px;}
.y78{bottom:343.296298px;}
.y146{bottom:344.734808px;}
.y127{bottom:346.894811px;}
.ye1{bottom:349.444807px;}
.y1c{bottom:350.193314px;}
.y93{bottom:353.044798px;}
.y199{bottom:354.077534px;}
.yb7{bottom:356.344793px;}
.y54{bottom:356.797822px;}
.y104{bottom:357.547822px;}
.y77{bottom:358.294798px;}
.y145{bottom:359.745313px;}
.y126{bottom:361.896312px;}
.ye0{bottom:364.447786px;}
.y1b{bottom:365.191813px;}
.y198{bottom:366.823784px;}
.y92{bottom:368.047822px;}
.yb6{bottom:371.344793px;}
.y53{bottom:371.796321px;}
.y103{bottom:372.546321px;}
.y76{bottom:373.296321px;}
.y144{bottom:374.743813px;}
.y125{bottom:376.894811px;}
.ydf{bottom:379.446285px;}
.y197{bottom:379.570035px;}
.y1a{bottom:380.190313px;}
.y91{bottom:383.046321px;}
.y1dc{bottom:385.306827px;}
.yb5{bottom:386.349295px;}
.y52{bottom:386.794821px;}
.y102{bottom:387.544821px;}
.y75{bottom:388.294821px;}
.y143{bottom:389.742312px;}
.y124{bottom:391.908319px;}
.y196{bottom:392.316285px;}
.yde{bottom:394.444784px;}
.y19{bottom:395.188812px;}
.y90{bottom:398.044821px;}
.y1db{bottom:400.305326px;}
.yb4{bottom:401.347795px;}
.y51{bottom:401.793320px;}
.y101{bottom:402.552325px;}
.y74{bottom:403.299323px;}
.y142{bottom:404.740811px;}
.y195{bottom:405.062535px;}
.y123{bottom:406.906818px;}
.ydd{bottom:409.447786px;}
.y18{bottom:410.187311px;}
.y8f{bottom:413.046321px;}
.y1da{bottom:415.303825px;}
.yb3{bottom:416.346294px;}
.y50{bottom:416.793320px;}
.y100{bottom:417.550824px;}
.y194{bottom:417.808785px;}
.y73{bottom:418.297822px;}
.y141{bottom:419.739310px;}
.y122{bottom:421.905317px;}
.ydc{bottom:424.446285px;}
.y8e{bottom:428.044821px;}
.y1d9{bottom:430.302325px;}
.y193{bottom:430.555035px;}
.yb2{bottom:431.344793px;}
.yff{bottom:432.549323px;}
.y72{bottom:433.296321px;}
.y140{bottom:434.737809px;}
.y121{bottom:436.903816px;}
.ydb{bottom:439.444784px;}
.y8d{bottom:443.043320px;}
.y192{bottom:443.301285px;}
.y1d8{bottom:445.300824px;}
.yb1{bottom:446.344793px;}
.yfe{bottom:447.547822px;}
.y71{bottom:448.294821px;}
.y13f{bottom:449.736308px;}
.y4f{bottom:449.803825px;}
.y120{bottom:451.902315px;}
.yda{bottom:454.444784px;}
.y191{bottom:456.047535px;}
.yad{bottom:456.343506px;}
.y17{bottom:457.437311px;}
.y1d7{bottom:460.299323px;}
.yb0{bottom:461.343292px;}
.yac{bottom:461.343319px;}
.yfd{bottom:462.546321px;}
.y70{bottom:463.302325px;}
.y13e{bottom:464.734808px;}
.y4e{bottom:464.802325px;}
.y11f{bottom:466.900815px;}
.y190{bottom:468.793785px;}
.yd9{bottom:469.446285px;}
.y16{bottom:473.937311px;}
.y1d6{bottom:475.297822px;}
.yfc{bottom:477.544821px;}
.yab{bottom:477.546321px;}
.y6f{bottom:478.300824px;}
.y13d{bottom:479.733307px;}
.y4d{bottom:479.800824px;}
.y18f{bottom:481.540035px;}
.y11e{bottom:481.899314px;}
.yd8{bottom:484.444784px;}
.y1d5{bottom:490.296321px;}
.y15{bottom:490.437311px;}
.yaa{bottom:492.544821px;}
.yfb{bottom:492.547822px;}
.y6e{bottom:493.299323px;}
.y18e{bottom:494.286286px;}
.y4c{bottom:494.799323px;}
.ya6{bottom:496.500448px;}
.y11d{bottom:496.897813px;}
.yd7{bottom:499.450787px;}
.y1d4{bottom:505.294821px;}
.y14{bottom:506.961311px;}
.y18d{bottom:507.032536px;}
.ya9{bottom:507.544821px;}
.yfa{bottom:507.546321px;}
.y6d{bottom:508.297822px;}
.y4b{bottom:509.797822px;}
.ya5{bottom:511.498947px;}
.y11c{bottom:511.896312px;}
.y13c{bottom:512.734808px;}
.yd6{bottom:514.449286px;}
.y18c{bottom:519.778786px;}
.y1d3{bottom:520.293320px;}
.ya8{bottom:522.544821px;}
.y6c{bottom:523.296321px;}
.y13{bottom:523.458311px;}
.y4a{bottom:524.796321px;}
.y11b{bottom:526.894811px;}
.y13b{bottom:527.733307px;}
.yd5{bottom:529.447786px;}
.y18b{bottom:532.525036px;}
.ya7{bottom:537.543320px;}
.y6b{bottom:538.294821px;}
.y49{bottom:539.794821px;}
.y12{bottom:539.955311px;}
.y11a{bottom:541.893311px;}
.y1d2{bottom:542.049323px;}
.yd4{bottom:544.446285px;}
.y18a{bottom:545.271286px;}
.y6a{bottom:553.293320px;}
.y48{bottom:554.796321px;}
.y11{bottom:556.452311px;}
.y119{bottom:556.893311px;}
.y1d1{bottom:557.047822px;}
.y189{bottom:558.021286px;}
.yd3{bottom:559.444784px;}
.y47{bottom:569.794821px;}
.y10{bottom:572.949311px;}
.yd2{bottom:574.443283px;}
.y1d0{bottom:578.796321px;}
.y15a{bottom:582.961971px;}
.y46{bottom:584.796321px;}
.y118{bottom:587.040472px;}
.yf{bottom:589.446311px;}
.y188{bottom:591.027286px;}
.y159{bottom:597.960470px;}
.yd1{bottom:599.040472px;}
.y45{bottom:599.794821px;}
.y1cf{bottom:600.544821px;}
.y117{bottom:602.038971px;}
.ye{bottom:605.943311px;}
.y187{bottom:606.021286px;}
.y13a{bottom:608.640463px;}
.y8c{bottom:612.361934px;}
.y158{bottom:612.960470px;}
.yd0{bottom:614.040472px;}
.y44{bottom:614.799323px;}
.y1ce{bottom:622.293320px;}
.yd{bottom:622.440311px;}
.y139{bottom:623.638962px;}
.y8b{bottom:627.360433px;}
.y157{bottom:627.958969px;}
.ycf{bottom:629.038971px;}
.y43{bottom:629.797822px;}
.y186{bottom:633.772787px;}
.y1cd{bottom:637.293320px;}
.yf9{bottom:638.100439px;}
.yc{bottom:638.937311px;}
.y8a{bottom:642.358932px;}
.y42{bottom:644.796321px;}
.y185{bottom:648.771286px;}
.yf8{bottom:653.100439px;}
.yb{bottom:655.434311px;}
.y41{bottom:659.794821px;}
.yf7{bottom:668.098938px;}
.y182{bottom:668.881485px;}
.y1cc{bottom:671.043320px;}
.y40{bottom:674.796321px;}
.ya{bottom:685.434310px;}
.y1cb{bottom:686.043320px;}
.y3f{bottom:689.794821px;}
.y181{bottom:700.572307px;}
.y9{bottom:703.434311px;}
.y3e{bottom:704.794821px;}
.y1ca{bottom:713.049277px;}
.y180{bottom:715.570806px;}
.y3d{bottom:719.794821px;}
.y1c9{bottom:728.047776px;}
.y17f{bottom:730.569305px;}
.y3c{bottom:734.794821px;}
.y8{bottom:736.410259px;}
.y1c8{bottom:743.046276px;}
.y3b{bottom:749.797776px;}
.y17b{bottom:750.679504px;}
.y17c{bottom:755.431778px;}
.y1c7{bottom:758.044775px;}
.y179{bottom:760.183823px;}
.y3a{bottom:764.796276px;}
.y17a{bottom:765.367813px;}
.y1c6{bottom:773.043274px;}
.y17e{bottom:774.439819px;}
.y39{bottom:779.794775px;}
.y7{bottom:781.416260px;}
.y1c5{bottom:788.043274px;}
.y38{bottom:794.794775px;}
.y178{bottom:800.512792px;}
.y37{bottom:809.797776px;}
.y1c4{bottom:815.046276px;}
.y177{bottom:815.511291px;}
.y36{bottom:824.796276px;}
.y6{bottom:826.422262px;}
.y1c3{bottom:830.044775px;}
.y170{bottom:835.621490px;}
.y35{bottom:839.794775px;}
.y172{bottom:842.101776px;}
.y1c2{bottom:845.043274px;}
.y174{bottom:849.445770px;}
.y16f{bottom:852.901794px;}
.y34{bottom:854.796276px;}
.y176{bottom:858.949768px;}
.y1c1{bottom:860.043274px;}
.y33{bottom:869.794775px;}
.y5{bottom:871.428264px;}
.y32{bottom:884.794775px;}
.y1c0{bottom:887.103272px;}
.y16e{bottom:887.182836px;}
.y31{bottom:899.793274px;}
.y1bf{bottom:899.849522px;}
.y16d{bottom:902.181335px;}
.y1be{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y167{bottom:922.291534px;}
.y1bd{bottom:925.342022px;}
.y2e{bottom:926.409576px;}
.y169{bottom:927.907837px;}
.y16b{bottom:935.251831px;}
.y1bc{bottom:938.088273px;}
.y166{bottom:938.707672px;}
.y1bb{bottom:950.834523px;}
.y69{bottom:955.680486px;}
.y2f{bottom:960.414459px;}
.y1ba{bottom:963.580773px;}
.y68{bottom:970.678986px;}
.y165{bottom:972.988805px;}
.y1b9{bottom:976.327023px;}
.y164{bottom:987.988805px;}
.y1b8{bottom:989.073273px;}
.y1b7{bottom:1001.819523px;}
.y163{bottom:1002.987305px;}
.y1b6{bottom:1014.565773px;}
.y15e{bottom:1023.097504px;}
.y1b5{bottom:1027.312023px;}
.y161{bottom:1036.057800px;}
.y15d{bottom:1039.513824px;}
.y1b4{bottom:1040.058273px;}
.y1b3{bottom:1052.804524px;}
.y1b2{bottom:1065.550774px;}
.y15c{bottom:1073.794775px;}
.y1b1{bottom:1078.297024px;}
.y15b{bottom:1088.793274px;}
.y1b0{bottom:1091.043274px;}
.y30{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.h17{height:14.688000px;}
.h28{height:16.848001px;}
.he{height:23.842749px;}
.h27{height:29.434751px;}
.h3{height:34.523438px;}
.h26{height:34.991999px;}
.h29{height:35.394000px;}
.h1d{height:35.855999px;}
.h18{height:36.115200px;}
.h11{height:36.681152px;}
.h22{height:36.719999px;}
.h24{height:37.597824px;}
.h20{height:38.092032px;}
.h8{height:38.826000px;}
.h9{height:38.838867px;}
.hf{height:41.158746px;}
.h2{height:43.140000px;}
.h4{height:44.218500px;}
.h2b{height:44.505000px;}
.h2c{height:45.090000px;}
.h2a{height:46.080000px;}
.h14{height:47.454000px;}
.h1a{height:47.469727px;}
.h6{height:48.450256px;}
.h21{height:50.889603px;}
.ha{height:51.947985px;}
.hb{height:52.043985px;}
.h10{height:52.608000px;}
.h19{height:52.978755px;}
.hc{height:53.406000px;}
.h1e{height:53.675139px;}
.hd{height:54.059981px;}
.h15{height:54.108000px;}
.h1c{height:55.282179px;}
.h1b{height:55.289997px;}
.h16{height:55.296000px;}
.h13{height:56.525401px;}
.h7{height:61.799929px;}
.h1f{height:72.648574px;}
.h23{height:76.108032px;}
.h12{height:77.652000px;}
.h25{height:82.079998px;}
.h5{height:112.164000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w2{width:20.736001px;}
.w3{width:598.751999px;}
.w4{width:599.183990px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:13.824142px;}
.x2{left:61.191450px;}
.x6{left:140.952747px;}
.x26{left:202.175674px;}
.x4{left:233.456406px;}
.x5{left:251.458465px;}
.x13{left:290.305847px;}
.x19{left:292.031708px;}
.x1c{left:296.351715px;}
.x12{left:298.943687px;}
.x22{left:300.239685px;}
.x24{left:303.695709px;}
.xc{left:306.232498px;}
.x1e{left:308.015717px;}
.xd{left:327.012749px;}
.xe{left:461.629486px;}
.x20{left:468.122681px;}
.xf{left:482.458054px;}
.x15{left:486.049418px;}
.x18{left:492.746704px;}
.x14{left:496.850693px;}
.x1b{left:500.954681px;}
.x11{left:508.082703px;}
.x1f{left:519.962723px;}
.x16{left:523.634720px;}
.x1a{left:525.146713px;}
.x21{left:527.738708px;}
.x23{left:531.194687px;}
.x1d{left:541.130722px;}
.x25{left:546.314713px;}
.x17{left:582.767693px;}
.x3{left:584.586594px;}
.x9{left:587.466019px;}
.xb{left:608.320221px;}
.x7{left:619.078491px;}
.x10{left:816.003571px;}
.x8{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.vd{vertical-align:-38.378498pt;}
.v4{vertical-align:-16.319987pt;}
.v8{vertical-align:-15.413330pt;}
.va{vertical-align:-12.784000pt;}
.v5{vertical-align:-9.605352pt;}
.vf{vertical-align:-8.453279pt;}
.vb{vertical-align:-4.618752pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:9.600016pt;}
.v9{vertical-align:12.784000pt;}
.v2{vertical-align:14.933270pt;}
.v3{vertical-align:16.223987pt;}
.v1{vertical-align:18.133301pt;}
.v6{vertical-align:25.927199pt;}
.vc{vertical-align:30.716927pt;}
.ve{vertical-align:33.792000pt;}
.ls1c{letter-spacing:-8.160000pt;}
.lsc4{letter-spacing:-1.200000pt;}
.ls1f{letter-spacing:-1.104000pt;}
.lsb8{letter-spacing:-0.920000pt;}
.lsb3{letter-spacing:-0.880000pt;}
.ls5d{letter-spacing:-0.714240pt;}
.ls9b{letter-spacing:-0.686400pt;}
.lsb4{letter-spacing:-0.680000pt;}
.lsc2{letter-spacing:-0.640000pt;}
.lsa7{letter-spacing:-0.624000pt;}
.lsa9{letter-spacing:-0.619008pt;}
.lsc1{letter-spacing:-0.600000pt;}
.ls33{letter-spacing:-0.576000pt;}
.lsa5{letter-spacing:-0.574464pt;}
.ls94{letter-spacing:-0.571392pt;}
.lsb1{letter-spacing:-0.528000pt;}
.lsaa{letter-spacing:-0.523776pt;}
.lsb9{letter-spacing:-0.520000pt;}
.ls5e{letter-spacing:-0.480000pt;}
.lsbd{letter-spacing:-0.440000pt;}
.lsa6{letter-spacing:-0.436800pt;}
.ls20{letter-spacing:-0.432000pt;}
.ls98{letter-spacing:-0.405600pt;}
.lsbc{letter-spacing:-0.360000pt;}
.ls4c{letter-spacing:-0.336000pt;}
.ls9a{letter-spacing:-0.288000pt;}
.lsb2{letter-spacing:-0.280000pt;}
.ls7d{letter-spacing:-0.240000pt;}
.ls34{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.181333pt;}
.lsb6{letter-spacing:-0.160000pt;}
.ls42{letter-spacing:-0.156000pt;}
.ls35{letter-spacing:-0.144000pt;}
.ls37{letter-spacing:-0.124800pt;}
.lsba{letter-spacing:-0.120000pt;}
.ls73{letter-spacing:-0.106667pt;}
.ls41{letter-spacing:-0.096000pt;}
.ls36{letter-spacing:-0.093600pt;}
.lsbe{letter-spacing:-0.080000pt;}
.ls93{letter-spacing:-0.053333pt;}
.ls23{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.000074pt;}
.ls83{letter-spacing:0.005831pt;}
.ls4b{letter-spacing:0.008627pt;}
.ls7{letter-spacing:0.010341pt;}
.ls8{letter-spacing:0.010423pt;}
.ls5{letter-spacing:0.010829pt;}
.ls77{letter-spacing:0.010868pt;}
.ls6{letter-spacing:0.010911pt;}
.ls4{letter-spacing:0.011591pt;}
.ls2{letter-spacing:0.011754pt;}
.ls3{letter-spacing:0.012405pt;}
.ls5b{letter-spacing:0.013828pt;}
.ls49{letter-spacing:0.031199pt;}
.ls84{letter-spacing:0.032056pt;}
.ls4a{letter-spacing:0.046675pt;}
.ls2b{letter-spacing:0.048000pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls75{letter-spacing:0.056552pt;}
.ls43{letter-spacing:0.062400pt;}
.ls3f{letter-spacing:0.065817pt;}
.ls3d{letter-spacing:0.065980pt;}
.ls88{letter-spacing:0.066233pt;}
.ls3e{letter-spacing:0.075595pt;}
.ls3b{letter-spacing:0.075758pt;}
.lsbb{letter-spacing:0.080000pt;}
.ls74{letter-spacing:0.086407pt;}
.ls3c{letter-spacing:0.093600pt;}
.ls65{letter-spacing:0.093975pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls81{letter-spacing:0.097575pt;}
.ls12{letter-spacing:0.098633pt;}
.ls13{letter-spacing:0.099284pt;}
.ls47{letter-spacing:0.109325pt;}
.ls46{letter-spacing:0.109894pt;}
.ls82{letter-spacing:0.118841pt;}
.ls78{letter-spacing:0.119416pt;}
.ls5f{letter-spacing:0.122965pt;}
.ls45{letter-spacing:0.124800pt;}
.ls52{letter-spacing:0.125977pt;}
.ls5a{letter-spacing:0.131510pt;}
.ls68{letter-spacing:0.134603pt;}
.ls69{letter-spacing:0.135091pt;}
.ls7e{letter-spacing:0.139137pt;}
.ls60{letter-spacing:0.140462pt;}
.ls1e{letter-spacing:0.144000pt;}
.ls80{letter-spacing:0.146728pt;}
.ls59{letter-spacing:0.156000pt;}
.ls44{letter-spacing:0.156686pt;}
.lsc6{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.178061pt;}
.ls27{letter-spacing:0.187200pt;}
.ls7c{letter-spacing:0.188803pt;}
.ls8c{letter-spacing:0.190464pt;}
.lsa{letter-spacing:0.192000pt;}
.lsbf{letter-spacing:0.200000pt;}
.ls76{letter-spacing:0.213333pt;}
.ls29{letter-spacing:0.214519pt;}
.ls7b{letter-spacing:0.215007pt;}
.ls28{letter-spacing:0.218398pt;}
.ls10{letter-spacing:0.236360pt;}
.ls32{letter-spacing:0.240000pt;}
.ls6b{letter-spacing:0.248033pt;}
.ls57{letter-spacing:0.249600pt;}
.ls79{letter-spacing:0.250644pt;}
.ls30{letter-spacing:0.251990pt;}
.ls3a{letter-spacing:0.264560pt;}
.lse{letter-spacing:0.278032pt;}
.lsf{letter-spacing:0.278520pt;}
.ls91{letter-spacing:0.280000pt;}
.lsd{letter-spacing:0.280800pt;}
.ls62{letter-spacing:0.284562pt;}
.ls11{letter-spacing:0.288000pt;}
.ls71{letter-spacing:0.289498pt;}
.ls56{letter-spacing:0.289689pt;}
.ls55{letter-spacing:0.289851pt;}
.ls53{letter-spacing:0.300945pt;}
.ls40{letter-spacing:0.304037pt;}
.ls97{letter-spacing:0.304128pt;}
.ls21{letter-spacing:0.312000pt;}
.lsb7{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.326661pt;}
.ls9{letter-spacing:0.336000pt;}
.lsb0{letter-spacing:0.337920pt;}
.ls54{letter-spacing:0.343199pt;}
.ls4d{letter-spacing:0.343200pt;}
.ls61{letter-spacing:0.360000pt;}
.ls18{letter-spacing:0.370579pt;}
.ls38{letter-spacing:0.374400pt;}
.ls6f{letter-spacing:0.380771pt;}
.ls24{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.384189pt;}
.ls4f{letter-spacing:0.393060pt;}
.ls51{letter-spacing:0.397829pt;}
.ls2e{letter-spacing:0.405600pt;}
.ls7a{letter-spacing:0.419434pt;}
.ls15{letter-spacing:0.424371pt;}
.ls96{letter-spacing:0.428544pt;}
.lsb{letter-spacing:0.432000pt;}
.ls4e{letter-spacing:0.433594pt;}
.ls50{letter-spacing:0.436800pt;}
.ls8e{letter-spacing:0.440000pt;}
.ls48{letter-spacing:0.443767pt;}
.ls72{letter-spacing:0.479999pt;}
.ls22{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.498997pt;}
.lsc3{letter-spacing:0.520000pt;}
.ls9e{letter-spacing:0.523776pt;}
.ls31{letter-spacing:0.528000pt;}
.ls6a{letter-spacing:0.533333pt;}
.lsb5{letter-spacing:0.560000pt;}
.ls2d{letter-spacing:0.576000pt;}
.ls17{letter-spacing:0.589333pt;}
.lsc{letter-spacing:0.624000pt;}
.ls67{letter-spacing:0.627117pt;}
.ls90{letter-spacing:0.640000pt;}
.ls64{letter-spacing:0.672000pt;}
.ls16{letter-spacing:0.680000pt;}
.lsc0{letter-spacing:0.760000pt;}
.ls19{letter-spacing:0.770667pt;}
.ls6d{letter-spacing:0.816000pt;}
.ls8f{letter-spacing:0.828006pt;}
.ls70{letter-spacing:0.835201pt;}
.lsc5{letter-spacing:0.840000pt;}
.ls66{letter-spacing:0.864000pt;}
.ls6c{letter-spacing:0.911999pt;}
.ls5c{letter-spacing:0.912000pt;}
.ls6e{letter-spacing:0.931210pt;}
.ls58{letter-spacing:0.960000pt;}
.lsac{letter-spacing:1.142784pt;}
.lsc7{letter-spacing:1.728000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls26{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls63{letter-spacing:3.504000pt;}
.ls92{letter-spacing:5.440000pt;}
.ls9c{letter-spacing:12.672000pt;}
.ls8b{letter-spacing:13.999104pt;}
.ls99{letter-spacing:13.999105pt;}
.lsa2{letter-spacing:14.192639pt;}
.lsa1{letter-spacing:17.332225pt;}
.lsa0{letter-spacing:19.189249pt;}
.ls86{letter-spacing:20.903423pt;}
.ls95{letter-spacing:20.903426pt;}
.ls89{letter-spacing:29.807615pt;}
.ls9d{letter-spacing:38.235648pt;}
.lsab{letter-spacing:39.140355pt;}
.lsaf{letter-spacing:43.659265pt;}
.lsa4{letter-spacing:63.562753pt;}
.lsa3{letter-spacing:68.192252pt;}
.lsae{letter-spacing:81.851907pt;}
.lsad{letter-spacing:89.518085pt;}
.lsa8{letter-spacing:90.422790pt;}
.ls8a{letter-spacing:90.562559pt;}
.ls85{letter-spacing:101.184010pt;}
.ls7f{letter-spacing:130.403330pt;}
.ls87{letter-spacing:134.999047pt;}
.ls9f{letter-spacing:165.989387pt;}
.ls8d{letter-spacing:651.720205pt;}
.ws74{word-spacing:-176.893452pt;}
.ws84{word-spacing:-92.660740pt;}
.ws83{word-spacing:-84.994557pt;}
.ws94{word-spacing:-68.192252pt;}
.ws95{word-spacing:-63.562753pt;}
.ws85{word-spacing:-51.397633pt;}
.ws72{word-spacing:-50.139649pt;}
.ws9{word-spacing:-45.333333pt;}
.ws75{word-spacing:-30.093314pt;}
.ws92{word-spacing:-17.332225pt;}
.ws93{word-spacing:-14.192639pt;}
.ws8f{word-spacing:-13.999105pt;}
.ws2{word-spacing:-13.393333pt;}
.ws25{word-spacing:-13.066667pt;}
.ws91{word-spacing:-12.672000pt;}
.ws87{word-spacing:-12.085333pt;}
.ws4a{word-spacing:-12.000000pt;}
.ws6b{word-spacing:-11.904001pt;}
.ws55{word-spacing:-11.808000pt;}
.ws5c{word-spacing:-11.376000pt;}
.ws47{word-spacing:-11.328000pt;}
.ws2c{word-spacing:-11.280000pt;}
.ws6d{word-spacing:-11.237377pt;}
.ws2d{word-spacing:-11.184000pt;}
.ws79{word-spacing:-11.136000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws69{word-spacing:-11.040000pt;}
.ws81{word-spacing:-10.999297pt;}
.ws61{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws76{word-spacing:-10.904065pt;}
.ws2a{word-spacing:-10.896000pt;}
.ws2f{word-spacing:-10.752000pt;}
.ws4f{word-spacing:-10.656000pt;}
.wsaf{word-spacing:-10.416000pt;}
.ws7c{word-spacing:-10.368000pt;}
.ws27{word-spacing:-10.320000pt;}
.ws56{word-spacing:-10.094593pt;}
.wsab{word-spacing:-9.360000pt;}
.ws8b{word-spacing:-9.160000pt;}
.ws8a{word-spacing:-9.080000pt;}
.ws88{word-spacing:-8.880000pt;}
.wsa6{word-spacing:-8.800000pt;}
.wsa3{word-spacing:-8.680000pt;}
.wsa4{word-spacing:-8.600000pt;}
.ws1{word-spacing:-8.533333pt;}
.wsae{word-spacing:-8.520000pt;}
.ws7{word-spacing:-7.800000pt;}
.ws71{word-spacing:-7.738368pt;}
.ws50{word-spacing:-7.488000pt;}
.ws2b{word-spacing:-7.456800pt;}
.ws51{word-spacing:-7.425600pt;}
.ws6{word-spacing:-7.394400pt;}
.ws2e{word-spacing:-7.363200pt;}
.ws57{word-spacing:-7.332000pt;}
.ws26{word-spacing:-7.269600pt;}
.ws49{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws5{word-spacing:-7.082400pt;}
.ws7b{word-spacing:-7.020000pt;}
.ws28{word-spacing:-6.988800pt;}
.ws29{word-spacing:-6.957600pt;}
.ws48{word-spacing:-6.926400pt;}
.ws6f{word-spacing:-6.739200pt;}
.ws7a{word-spacing:-6.708000pt;}
.ws70{word-spacing:-6.458400pt;}
.ws89{word-spacing:-5.902000pt;}
.ws8{word-spacing:-5.893333pt;}
.ws8c{word-spacing:-5.440000pt;}
.ws78{word-spacing:-5.405184pt;}
.ws16{word-spacing:-4.896000pt;}
.wsc{word-spacing:-2.912000pt;}
.ws54{word-spacing:-1.776000pt;}
.ws1e{word-spacing:-1.680000pt;}
.ws1d{word-spacing:-1.632000pt;}
.ws67{word-spacing:-1.600000pt;}
.ws46{word-spacing:-1.536000pt;}
.ws3f{word-spacing:-1.488000pt;}
.ws60{word-spacing:-1.440000pt;}
.ws5d{word-spacing:-1.392000pt;}
.ws99{word-spacing:-1.360000pt;}
.ws18{word-spacing:-1.344000pt;}
.ws66{word-spacing:-1.296000pt;}
.ws34{word-spacing:-1.248000pt;}
.ws3c{word-spacing:-1.232000pt;}
.ws65{word-spacing:-1.200000pt;}
.ws64{word-spacing:-1.152000pt;}
.ws96{word-spacing:-1.133333pt;}
.wsd{word-spacing:-1.120000pt;}
.ws19{word-spacing:-1.104000pt;}
.wsaa{word-spacing:-1.080000pt;}
.ws3e{word-spacing:-1.056000pt;}
.ws24{word-spacing:-1.041600pt;}
.wsf{word-spacing:-1.008000pt;}
.ws63{word-spacing:-0.960000pt;}
.ws97{word-spacing:-0.920000pt;}
.ws58{word-spacing:-0.912000pt;}
.ws5a{word-spacing:-0.864000pt;}
.wsb{word-spacing:-0.853333pt;}
.ws22{word-spacing:-0.770667pt;}
.ws33{word-spacing:-0.768000pt;}
.ws9c{word-spacing:-0.760000pt;}
.ws45{word-spacing:-0.720000pt;}
.wsa9{word-spacing:-0.680000pt;}
.ws38{word-spacing:-0.672000pt;}
.ws41{word-spacing:-0.624000pt;}
.ws20{word-spacing:-0.589333pt;}
.ws11{word-spacing:-0.576000pt;}
.ws3d{word-spacing:-0.533333pt;}
.ws1a{word-spacing:-0.528000pt;}
.ws32{word-spacing:-0.480000pt;}
.wsa2{word-spacing:-0.440000pt;}
.ws17{word-spacing:-0.432000pt;}
.ws9f{word-spacing:-0.400000pt;}
.ws4c{word-spacing:-0.384000pt;}
.ws13{word-spacing:-0.336000pt;}
.ws90{word-spacing:-0.304128pt;}
.ws42{word-spacing:-0.288000pt;}
.wsad{word-spacing:-0.280000pt;}
.ws39{word-spacing:-0.240000pt;}
.ws6a{word-spacing:-0.213333pt;}
.wsa8{word-spacing:-0.200000pt;}
.ws10{word-spacing:-0.192000pt;}
.ws31{word-spacing:-0.187200pt;}
.ws9d{word-spacing:-0.160000pt;}
.ws37{word-spacing:-0.144000pt;}
.ws15{word-spacing:-0.096000pt;}
.ws44{word-spacing:-0.048000pt;}
.ws98{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.040000pt;}
.ws12{word-spacing:0.048000pt;}
.ws8d{word-spacing:0.053333pt;}
.ws35{word-spacing:0.093600pt;}
.ws3b{word-spacing:0.096000pt;}
.ws36{word-spacing:0.124800pt;}
.ws4b{word-spacing:0.144000pt;}
.ws23{word-spacing:0.181333pt;}
.ws4d{word-spacing:0.192000pt;}
.wsa1{word-spacing:0.200000pt;}
.ws30{word-spacing:0.240000pt;}
.wsa0{word-spacing:0.280000pt;}
.ws3a{word-spacing:0.288000pt;}
.wsb1{word-spacing:0.320000pt;}
.wsb5{word-spacing:0.336000pt;}
.ws43{word-spacing:0.384000pt;}
.ws40{word-spacing:0.432000pt;}
.wsb0{word-spacing:0.440000pt;}
.ws53{word-spacing:0.480000pt;}
.ws9b{word-spacing:0.520000pt;}
.ws14{word-spacing:0.528000pt;}
.ws21{word-spacing:0.544000pt;}
.ws8e{word-spacing:0.571392pt;}
.ws5f{word-spacing:0.576000pt;}
.wsa5{word-spacing:0.640000pt;}
.ws1b{word-spacing:0.720000pt;}
.ws1f{word-spacing:0.770667pt;}
.ws9a{word-spacing:0.800000pt;}
.ws59{word-spacing:0.864000pt;}
.ws9e{word-spacing:0.920000pt;}
.ws1c{word-spacing:0.960000pt;}
.ws68{word-spacing:1.008000pt;}
.ws52{word-spacing:1.056000pt;}
.ws62{word-spacing:1.104000pt;}
.wsb2{word-spacing:1.120000pt;}
.wsb3{word-spacing:1.248000pt;}
.ws5b{word-spacing:1.296000pt;}
.wsac{word-spacing:1.440000pt;}
.wsb4{word-spacing:3.216000pt;}
.ws5e{word-spacing:7.728000pt;}
.wse{word-spacing:8.160000pt;}
.ws4e{word-spacing:13.104000pt;}
.ws6e{word-spacing:21.626878pt;}
.ws82{word-spacing:24.236543pt;}
.ws80{word-spacing:50.711047pt;}
.ws7e{word-spacing:58.853384pt;}
.ws86{word-spacing:92.353533pt;}
.ws7d{word-spacing:125.039603pt;}
.ws73{word-spacing:162.561029pt;}
.ws7f{word-spacing:185.321482pt;}
.ws77{word-spacing:205.558282pt;}
.ws6c{word-spacing:895.133261pt;}
._13{margin-left:-597.676070pt;}
._14{margin-left:-481.397793pt;}
._12{margin-left:-412.449791pt;}
._f{margin-left:-205.082119pt;}
._10{margin-left:-147.466771pt;}
._e{margin-left:-107.707396pt;}
._15{margin-left:-81.084350pt;}
._16{margin-left:-44.132355pt;}
._11{margin-left:-18.808323pt;}
._c{margin-left:-12.672014pt;}
._1c{margin-left:-9.880000pt;}
._1d{margin-left:-8.560000pt;}
._3{margin-left:-7.541318pt;}
._4{margin-left:-6.437318pt;}
._9{margin-left:-5.393508pt;}
._1{margin-left:-3.893333pt;}
._2{margin-left:-2.670439pt;}
._0{margin-left:-1.578682pt;}
._5{width:1.137082pt;}
._8{width:2.480586pt;}
._6{width:4.209587pt;}
._7{width:5.473648pt;}
._1e{width:6.538680pt;}
._1b{width:7.597355pt;}
._18{width:8.720002pt;}
._19{width:10.440000pt;}
._17{width:11.520000pt;}
._b{width:13.583993pt;}
._1a{width:15.280002pt;}
._a{width:42.454417pt;}
._d{width:44.321621pt;}
.fs11{font-size:26.000000pt;}
.fsf{font-size:26.111999pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fsc{font-size:33.792000pt;}
.fs4{font-size:34.666667pt;}
.fs10{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsd{font-size:47.616002pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:49.600001pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsb{font-size:58.666667pt;}
.fse{font-size:76.799998pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:1.920085pt;}
.y162{bottom:1.920247pt;}
.y184{bottom:1.920288pt;}
.y175{bottom:2.688314pt;}
.y16a{bottom:3.840088pt;}
.y173{bottom:3.840251pt;}
.yaf{bottom:4.223877pt;}
.yc3{bottom:4.225199pt;}
.y160{bottom:4.987689pt;}
.y183{bottom:4.992269pt;}
.yae{bottom:9.599854pt;}
.ye9{bottom:9.599874pt;}
.yc2{bottom:9.601217pt;}
.y168{bottom:22.272217pt;}
.y15f{bottom:22.272298pt;}
.y17d{bottom:23.424235pt;}
.y171{bottom:23.808268pt;}
.y1{bottom:24.175868pt;}
.y2{bottom:24.225601pt;}
.y2d{bottom:60.718132pt;}
.y116{bottom:61.820266pt;}
.yce{bottom:62.351065pt;}
.y89{bottom:62.485599pt;}
.y67{bottom:63.817603pt;}
.y1af{bottom:65.362264pt;}
.y138{bottom:65.684267pt;}
.yf6{bottom:69.565610pt;}
.y2c{bottom:74.051466pt;}
.y115{bottom:75.152265pt;}
.ycd{bottom:75.687067pt;}
.y88{bottom:75.817598pt;}
.y1ae{bottom:76.692264pt;}
.y66{bottom:77.150931pt;}
.y137{bottom:79.018934pt;}
.yf5{bottom:82.897609pt;}
.ya4{bottom:87.153599pt;}
.y2b{bottom:87.384799pt;}
.y1ad{bottom:88.022264pt;}
.y114{bottom:88.484265pt;}
.ycc{bottom:89.019066pt;}
.y87{bottom:89.150931pt;}
.y65{bottom:90.486933pt;}
.y136{bottom:92.350933pt;}
.y156{bottom:93.100265pt;}
.yf4{bottom:96.229608pt;}
.y1ac{bottom:99.465584pt;}
.ya3{bottom:100.485599pt;}
.y2a{bottom:100.718132pt;}
.y113{bottom:101.826936pt;}
.ycb{bottom:102.351065pt;}
.y86{bottom:102.485599pt;}
.y64{bottom:103.818932pt;}
.y135{bottom:105.694949pt;}
.y155{bottom:106.432264pt;}
.yf3{bottom:109.561608pt;}
.y1ab{bottom:110.795584pt;}
.ya2{bottom:113.817598pt;}
.y112{bottom:115.158936pt;}
.yca{bottom:115.691069pt;}
.y85{bottom:115.817598pt;}
.y63{bottom:117.150931pt;}
.y29{bottom:117.899465pt;}
.y134{bottom:119.026948pt;}
.y154{bottom:119.764263pt;}
.y1aa{bottom:122.125584pt;}
.yf2{bottom:122.893607pt;}
.ya1{bottom:127.160270pt;}
.y111{bottom:128.490935pt;}
.yc9{bottom:129.023068pt;}
.y84{bottom:129.150931pt;}
.y62{bottom:130.486933pt;}
.y133{bottom:132.358948pt;}
.y153{bottom:133.097597pt;}
.y1a9{bottom:133.455584pt;}
.yf1{bottom:136.225606pt;}
.ya0{bottom:140.492269pt;}
.y110{bottom:141.822934pt;}
.yc8{bottom:142.355068pt;}
.y83{bottom:142.485599pt;}
.y61{bottom:143.818932pt;}
.y1a8{bottom:144.785585pt;}
.y132{bottom:145.690947pt;}
.y152{bottom:146.432274pt;}
.yf0{bottom:149.557606pt;}
.y28{bottom:151.277611pt;}
.y9f{bottom:153.824268pt;}
.y10f{bottom:155.154933pt;}
.yc7{bottom:155.687067pt;}
.y82{bottom:155.817598pt;}
.y1a7{bottom:156.115585pt;}
.y60{bottom:157.150931pt;}
.y131{bottom:159.022946pt;}
.y151{bottom:159.764273pt;}
.yef{bottom:162.889605pt;}
.y27{bottom:164.609610pt;}
.y9e{bottom:167.156267pt;}
.y1a6{bottom:167.445585pt;}
.y10e{bottom:168.486933pt;}
.yc6{bottom:169.019066pt;}
.y81{bottom:169.149597pt;}
.y5f{bottom:170.485599pt;}
.y130{bottom:172.354946pt;}
.y150{bottom:173.097607pt;}
.yee{bottom:176.221604pt;}
.y26{bottom:177.942944pt;}
.y1a5{bottom:178.775585pt;}
.y9d{bottom:180.488267pt;}
.y10d{bottom:181.818932pt;}
.yc5{bottom:182.351065pt;}
.y80{bottom:182.482930pt;}
.y5e{bottom:183.817598pt;}
.y12f{bottom:185.686945pt;}
.y14f{bottom:186.441613pt;}
.yed{bottom:189.553603pt;}
.y1a4{bottom:190.105585pt;}
.yc1{bottom:191.237325pt;}
.y25{bottom:191.276277pt;}
.y9c{bottom:193.820266pt;}
.y10c{bottom:195.150931pt;}
.yc4{bottom:195.683065pt;}
.yc0{bottom:195.684260pt;}
.y5d{bottom:197.161604pt;}
.y12e{bottom:199.018944pt;}
.y14e{bottom:199.773612pt;}
.y1a3{bottom:201.435585pt;}
.yec{bottom:202.885603pt;}
.y24{bottom:204.609610pt;}
.y9b{bottom:207.152265pt;}
.y10b{bottom:208.482930pt;}
.ybf{bottom:210.084260pt;}
.y5c{bottom:210.493603pt;}
.y7f{bottom:211.818932pt;}
.y12d{bottom:212.350943pt;}
.y1a2{bottom:212.765585pt;}
.y14d{bottom:213.105611pt;}
.yeb{bottom:216.217602pt;}
.y23{bottom:217.946946pt;}
.y9a{bottom:220.484265pt;}
.y10a{bottom:221.816264pt;}
.ybe{bottom:223.424264pt;}
.y5b{bottom:223.825602pt;}
.y1a1{bottom:224.095585pt;}
.ye8{bottom:225.105326pt;}
.y7e{bottom:225.150931pt;}
.y12c{bottom:225.682943pt;}
.y14c{bottom:226.437610pt;}
.yea{bottom:229.549601pt;}
.ye7{bottom:229.552273pt;}
.y22{bottom:231.278945pt;}
.y99{bottom:233.817598pt;}
.y1a0{bottom:235.425585pt;}
.ybd{bottom:236.756263pt;}
.y5a{bottom:237.157601pt;}
.y7d{bottom:238.489601pt;}
.y14b{bottom:239.769610pt;}
.ye6{bottom:243.952273pt;}
.y21{bottom:244.610944pt;}
.y19f{bottom:246.755585pt;}
.y98{bottom:247.152265pt;}
.ybc{bottom:250.088263pt;}
.y59{bottom:250.489601pt;}
.y109{bottom:251.160290pt;}
.y7c{bottom:251.821600pt;}
.y14a{bottom:253.101609pt;}
.y12b{bottom:255.020278pt;}
.ye5{bottom:257.284273pt;}
.y20{bottom:257.942944pt;}
.y19e{bottom:258.085586pt;}
.y97{bottom:260.484265pt;}
.ybb{bottom:263.420262pt;}
.y58{bottom:263.821600pt;}
.y108{bottom:264.492289pt;}
.y7b{bottom:265.153599pt;}
.y149{bottom:266.433608pt;}
.y12a{bottom:268.352277pt;}
.y19d{bottom:269.415586pt;}
.ye4{bottom:270.617606pt;}
.y1f{bottom:271.276277pt;}
.y96{bottom:273.817598pt;}
.yba{bottom:276.752261pt;}
.y57{bottom:277.153599pt;}
.y107{bottom:277.824288pt;}
.y7a{bottom:278.485599pt;}
.y148{bottom:279.765608pt;}
.y19c{bottom:280.745586pt;}
.y129{bottom:281.684277pt;}
.ye3{bottom:283.953607pt;}
.y1e{bottom:284.618947pt;}
.y95{bottom:287.150931pt;}
.yb9{bottom:290.084260pt;}
.y56{bottom:290.485599pt;}
.y106{bottom:291.156288pt;}
.y79{bottom:291.817598pt;}
.y19b{bottom:292.075586pt;}
.y147{bottom:293.097607pt;}
.y128{bottom:295.018944pt;}
.ye2{bottom:297.285607pt;}
.y1d{bottom:297.950947pt;}
.y94{bottom:300.485599pt;}
.y19a{bottom:303.405586pt;}
.yb8{bottom:303.418928pt;}
.y55{bottom:303.817598pt;}
.y105{bottom:304.488287pt;}
.y78{bottom:305.152265pt;}
.y146{bottom:306.430940pt;}
.y127{bottom:308.350943pt;}
.ye1{bottom:310.617606pt;}
.y1c{bottom:311.282946pt;}
.y93{bottom:313.817598pt;}
.y199{bottom:314.735586pt;}
.yb7{bottom:316.750927pt;}
.y54{bottom:317.153620pt;}
.y104{bottom:317.820286pt;}
.y77{bottom:318.484265pt;}
.y145{bottom:319.773612pt;}
.y126{bottom:321.685611pt;}
.ye0{bottom:323.953587pt;}
.y1b{bottom:324.614945pt;}
.y198{bottom:326.065586pt;}
.y92{bottom:327.153620pt;}
.yb6{bottom:330.084260pt;}
.y53{bottom:330.485619pt;}
.y103{bottom:331.152286pt;}
.y76{bottom:331.818952pt;}
.y144{bottom:333.105611pt;}
.y125{bottom:335.017610pt;}
.ydf{bottom:337.285586pt;}
.y197{bottom:337.395586pt;}
.y1a{bottom:337.946944pt;}
.y91{bottom:340.485619pt;}
.y1dc{bottom:342.494957pt;}
.yb5{bottom:343.421596pt;}
.y52{bottom:343.817618pt;}
.y102{bottom:344.484285pt;}
.y75{bottom:345.150952pt;}
.y143{bottom:346.437610pt;}
.y124{bottom:348.362950pt;}
.y196{bottom:348.725586pt;}
.yde{bottom:350.617586pt;}
.y19{bottom:351.278944pt;}
.y90{bottom:353.817618pt;}
.y1db{bottom:355.826957pt;}
.yb4{bottom:356.753595pt;}
.y51{bottom:357.149618pt;}
.y101{bottom:357.824288pt;}
.y74{bottom:358.488287pt;}
.y142{bottom:359.769610pt;}
.y195{bottom:360.055586pt;}
.y123{bottom:361.694949pt;}
.ydd{bottom:363.953587pt;}
.y18{bottom:364.610943pt;}
.y8f{bottom:367.152286pt;}
.y1da{bottom:369.158956pt;}
.yb3{bottom:370.085595pt;}
.y50{bottom:370.482951pt;}
.y100{bottom:371.156288pt;}
.y194{bottom:371.385587pt;}
.y73{bottom:371.820286pt;}
.y141{bottom:373.101609pt;}
.y122{bottom:375.026948pt;}
.ydc{bottom:377.285586pt;}
.y8e{bottom:380.484285pt;}
.y1d9{bottom:382.490955pt;}
.y193{bottom:382.715587pt;}
.yb2{bottom:383.417594pt;}
.yff{bottom:384.488287pt;}
.y72{bottom:385.152286pt;}
.y140{bottom:386.433608pt;}
.y121{bottom:388.358948pt;}
.ydb{bottom:390.617586pt;}
.y8d{bottom:393.816284pt;}
.y192{bottom:394.045587pt;}
.y1d8{bottom:395.822954pt;}
.yb1{bottom:396.750927pt;}
.yfe{bottom:397.820286pt;}
.y71{bottom:398.484285pt;}
.y13f{bottom:399.765608pt;}
.y4f{bottom:399.825623pt;}
.y120{bottom:401.690947pt;}
.yda{bottom:403.950919pt;}
.y191{bottom:405.375587pt;}
.yad{bottom:405.638672pt;}
.y17{bottom:406.610943pt;}
.y1d7{bottom:409.154954pt;}
.yb0{bottom:410.082926pt;}
.yac{bottom:410.082950pt;}
.yfd{bottom:411.152286pt;}
.y70{bottom:411.824288pt;}
.y13e{bottom:413.097607pt;}
.y4e{bottom:413.157622pt;}
.y11f{bottom:415.022946pt;}
.y190{bottom:416.705587pt;}
.yd9{bottom:417.285586pt;}
.y16{bottom:421.277610pt;}
.y1d6{bottom:422.486953pt;}
.yfc{bottom:424.484285pt;}
.yab{bottom:424.485619pt;}
.y6f{bottom:425.156288pt;}
.y13d{bottom:426.429606pt;}
.y4d{bottom:426.489621pt;}
.y18f{bottom:428.035587pt;}
.y11e{bottom:428.354946pt;}
.yd8{bottom:430.617586pt;}
.y1d5{bottom:435.818952pt;}
.y15{bottom:435.944276pt;}
.yaa{bottom:437.817618pt;}
.yfb{bottom:437.820286pt;}
.y6e{bottom:438.488287pt;}
.y18e{bottom:439.365587pt;}
.y4c{bottom:439.821620pt;}
.ya6{bottom:441.333732pt;}
.y11d{bottom:441.686945pt;}
.yd7{bottom:443.956255pt;}
.y1d4{bottom:449.150952pt;}
.y14{bottom:450.632276pt;}
.y18d{bottom:450.695587pt;}
.ya9{bottom:451.150952pt;}
.yfa{bottom:451.152286pt;}
.y6d{bottom:451.820286pt;}
.y4b{bottom:453.153620pt;}
.ya5{bottom:454.665731pt;}
.y11c{bottom:455.018944pt;}
.y13c{bottom:455.764273pt;}
.yd6{bottom:457.288255pt;}
.y18c{bottom:462.025587pt;}
.y1d3{bottom:462.482951pt;}
.ya8{bottom:464.484285pt;}
.y6c{bottom:465.152286pt;}
.y13{bottom:465.296276pt;}
.y4a{bottom:466.485619pt;}
.y11b{bottom:468.350943pt;}
.y13b{bottom:469.096273pt;}
.yd5{bottom:470.620254pt;}
.y18b{bottom:473.355587pt;}
.ya7{bottom:477.816284pt;}
.y6b{bottom:478.484285pt;}
.y49{bottom:479.817618pt;}
.y12{bottom:479.960276pt;}
.y11a{bottom:481.682943pt;}
.y1d2{bottom:481.821620pt;}
.yd4{bottom:483.952253pt;}
.y18a{bottom:484.685588pt;}
.y6a{bottom:491.816284pt;}
.y48{bottom:493.152286pt;}
.y11{bottom:494.624276pt;}
.y119{bottom:495.016276pt;}
.y1d1{bottom:495.153620pt;}
.y189{bottom:496.018921pt;}
.yd3{bottom:497.284252pt;}
.y47{bottom:506.484285pt;}
.y10{bottom:509.288276pt;}
.yd2{bottom:510.616252pt;}
.y1d0{bottom:514.485619pt;}
.y15a{bottom:518.188418pt;}
.y46{bottom:519.818952pt;}
.y118{bottom:521.813753pt;}
.yf{bottom:523.952276pt;}
.y188{bottom:525.357588pt;}
.y159{bottom:531.520418pt;}
.yd1{bottom:532.480419pt;}
.y45{bottom:533.150952pt;}
.y1cf{bottom:533.817618pt;}
.y117{bottom:535.145752pt;}
.ye{bottom:538.616276pt;}
.y187{bottom:538.685588pt;}
.y13a{bottom:541.013745pt;}
.y8c{bottom:544.321719pt;}
.y158{bottom:544.853751pt;}
.yd0{bottom:545.813753pt;}
.y44{bottom:546.488287pt;}
.y1ce{bottom:553.149618pt;}
.yd{bottom:553.280276pt;}
.y139{bottom:554.345744pt;}
.y8b{bottom:557.653718pt;}
.y157{bottom:558.185750pt;}
.ycf{bottom:559.145752pt;}
.y43{bottom:559.820286pt;}
.y186{bottom:563.353588pt;}
.y1cd{bottom:566.482951pt;}
.yf9{bottom:567.200390pt;}
.yc{bottom:567.944276pt;}
.y8a{bottom:570.985718pt;}
.y42{bottom:573.152286pt;}
.y185{bottom:576.685588pt;}
.yf8{bottom:580.533723pt;}
.yb{bottom:582.608276pt;}
.y41{bottom:586.484285pt;}
.yf7{bottom:593.865723pt;}
.y182{bottom:594.561320pt;}
.y1cc{bottom:596.482951pt;}
.y40{bottom:599.818952pt;}
.ya{bottom:609.274942pt;}
.y1cb{bottom:609.816284pt;}
.y3f{bottom:613.150952pt;}
.y181{bottom:622.730940pt;}
.y9{bottom:625.274943pt;}
.y3e{bottom:626.484285pt;}
.y1ca{bottom:633.821580pt;}
.y180{bottom:636.062939pt;}
.y3d{bottom:639.817618pt;}
.y1c9{bottom:647.153579pt;}
.y17f{bottom:649.394938pt;}
.y3c{bottom:653.150952pt;}
.y8{bottom:654.586897pt;}
.y1c8{bottom:660.485578pt;}
.y3b{bottom:666.486912pt;}
.y17b{bottom:667.270671pt;}
.y17c{bottom:671.494914pt;}
.y1c7{bottom:673.817578pt;}
.y179{bottom:675.718953pt;}
.y3a{bottom:679.818912pt;}
.y17a{bottom:680.326945pt;}
.y1c6{bottom:687.149577pt;}
.y17e{bottom:688.390951pt;}
.y39{bottom:693.150911pt;}
.y7{bottom:694.592232pt;}
.y1c5{bottom:700.482910pt;}
.y38{bottom:706.484244pt;}
.y178{bottom:711.566926pt;}
.y37{bottom:719.820246pt;}
.y1c4{bottom:724.485578pt;}
.y177{bottom:724.898926pt;}
.y36{bottom:733.152245pt;}
.y6{bottom:734.597566pt;}
.y1c3{bottom:737.817578pt;}
.y170{bottom:742.774658pt;}
.y35{bottom:746.484244pt;}
.y172{bottom:748.534912pt;}
.y1c2{bottom:751.149577pt;}
.y174{bottom:755.062907pt;}
.y16f{bottom:758.134928pt;}
.y34{bottom:759.818912pt;}
.y176{bottom:763.510905pt;}
.y1c1{bottom:764.482910pt;}
.y33{bottom:773.150911pt;}
.y5{bottom:774.602901pt;}
.y32{bottom:786.484244pt;}
.y1c0{bottom:788.536242pt;}
.y16e{bottom:788.606966pt;}
.y31{bottom:799.816243pt;}
.y1bf{bottom:799.866242pt;}
.y16d{bottom:801.938965pt;}
.y1be{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y167{bottom:819.814697pt;}
.y1bd{bottom:822.526242pt;}
.y2e{bottom:823.475179pt;}
.y169{bottom:824.806966pt;}
.y16b{bottom:831.334961pt;}
.y1bc{bottom:833.856242pt;}
.y166{bottom:834.406820pt;}
.y1bb{bottom:845.186242pt;}
.y69{bottom:849.493766pt;}
.y2f{bottom:853.701742pt;}
.y1ba{bottom:856.516242pt;}
.y68{bottom:862.825765pt;}
.y165{bottom:864.878938pt;}
.y1b9{bottom:867.846243pt;}
.y164{bottom:878.212272pt;}
.y1b8{bottom:879.176243pt;}
.y1b7{bottom:890.506243pt;}
.y163{bottom:891.544271pt;}
.y1b6{bottom:901.836243pt;}
.y15e{bottom:909.420003pt;}
.y1b5{bottom:913.166243pt;}
.y161{bottom:920.940267pt;}
.y15d{bottom:924.012288pt;}
.y1b4{bottom:924.496243pt;}
.y1b3{bottom:935.826243pt;}
.y1b2{bottom:947.156243pt;}
.y15c{bottom:954.484244pt;}
.y1b1{bottom:958.486243pt;}
.y15b{bottom:967.816243pt;}
.y1b0{bottom:969.816243pt;}
.y30{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.h17{height:13.056000pt;}
.h28{height:14.976000pt;}
.he{height:21.193555pt;}
.h27{height:26.164223pt;}
.h3{height:30.687500pt;}
.h26{height:31.103999pt;}
.h29{height:31.461333pt;}
.h1d{height:31.871999pt;}
.h18{height:32.102400pt;}
.h11{height:32.605469pt;}
.h22{height:32.639999pt;}
.h24{height:33.420288pt;}
.h20{height:33.859584pt;}
.h8{height:34.512000pt;}
.h9{height:34.523438pt;}
.hf{height:36.585552pt;}
.h2{height:38.346667pt;}
.h4{height:39.305333pt;}
.h2b{height:39.560000pt;}
.h2c{height:40.080000pt;}
.h2a{height:40.960000pt;}
.h14{height:42.181333pt;}
.h1a{height:42.195312pt;}
.h6{height:43.066895pt;}
.h21{height:45.235202pt;}
.ha{height:46.175986pt;}
.hb{height:46.261320pt;}
.h10{height:46.762667pt;}
.h19{height:47.092226pt;}
.hc{height:47.472000pt;}
.h1e{height:47.711234pt;}
.hd{height:48.053316pt;}
.h15{height:48.096000pt;}
.h1c{height:49.139714pt;}
.h1b{height:49.146664pt;}
.h16{height:49.152000pt;}
.h13{height:50.244801pt;}
.h7{height:54.933270pt;}
.h1f{height:64.576511pt;}
.h23{height:67.651584pt;}
.h12{height:69.024000pt;}
.h25{height:72.959998pt;}
.h5{height:99.701333pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w2{width:18.432000pt;}
.w3{width:532.223999pt;}
.w4{width:532.607992pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:12.288127pt;}
.x2{left:54.392400pt;}
.x6{left:125.291331pt;}
.x26{left:179.711711pt;}
.x4{left:207.516805pt;}
.x5{left:223.518636pt;}
.x13{left:258.049642pt;}
.x19{left:259.583740pt;}
.x1c{left:263.423747pt;}
.x12{left:265.727722pt;}
.x22{left:266.879720pt;}
.x24{left:269.951742pt;}
.xc{left:272.206665pt;}
.x1e{left:273.791748pt;}
.xd{left:290.677999pt;}
.xe{left:410.337321pt;}
.x20{left:416.109049pt;}
.xf{left:428.851603pt;}
.x15{left:432.043927pt;}
.x18{left:437.997070pt;}
.x14{left:441.645060pt;}
.x1b{left:445.293050pt;}
.x11{left:451.629069pt;}
.x1f{left:462.189087pt;}
.x16{left:465.453084pt;}
.x1a{left:466.797078pt;}
.x21{left:469.101074pt;}
.x23{left:472.173055pt;}
.x1d{left:481.005086pt;}
.x25{left:485.613078pt;}
.x17{left:518.015727pt;}
.x3{left:519.632528pt;}
.x9{left:522.192017pt;}
.xb{left:540.729085pt;}
.x7{left:550.291992pt;}
.x10{left:725.336507pt;}
.x8{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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